diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9c7d493..d56a884 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -12,24 +12,22 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip + sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable + sudo apt-get update + sudo apt-get install gdal-bin libgdal-dev + pip install GDAL==3.2.3 pip install .[test] - name: Test with pytest run: | pytest - - name: "Convert coverage" - run: "python -m coverage xml" - - name: "Upload coverage to Codecov" - uses: "codecov/codecov-action@v1" - with: - fail_ci_if_error: true diff --git a/README.md b/README.md index b29e176..0ed99da 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,91 @@ # pydplace -A Python library to access [D-PLACE](https://d-place.org) data. +A Python library to curate [D-PLACE](https://d-place.org) data. [![Build Status](https://github.com/D-PLACE/pydplace/workflows/tests/badge.svg)](https://github.com/D-PLACE/pydplace/actions?query=workflow%3Atests) -[![codecov](https://codecov.io/gh/D-PLACE/pydplace/branch/master/graph/badge.svg)](https://codecov.io/gh/D-PLACE/pydplace) [![PyPI](https://img.shields.io/pypi/v/pydplace.svg)](https://pypi.org/project/pydplace) -To install `pydplace` you need a python installation on your system, running python 2.7 or >3.4. Run +To install `pydplace` run ``` pip install pydplace ``` -to install the requirements, `pydplace` and the command line interface `dplace`. +## Usage -`pydplace` is built to access data in a local clone or export of D-PLACE's data repository https://github.com/D-PLACE/dplace-data +### Bootstrapping a `pydplace`-curated dataset +`pydplace` provides a `cldfbench` dataset template to create the skeleton of files and directories for a +D-PLACE dataset, to be run with [cldfbench new](https://github.com/cldf/cldfbench/#creating-a-skeleton-for-a-new-dataset-directory). -## CLI +Running -Command line functionality is implemented via sub-commands of `dplace`. The list of -available sub-commands can be inspected running +```shell +cldfbench new --template dplace_dataset ``` -$ dplace --help -usage: deplace [-h] [--verbosity VERBOSITY] [--log-level LOG_LEVEL] - [--repos REPOS] - command ... -... -Use 'dplace help ' to get help about individual commands. +will create a dataset skeleton looking as follows +```shell +$ tree testtree/ ``` -## Python API -D-PLACE data can also be accessed programmatically. All functionality is mediated through an instance of `pydplace.api.Repos`, e.g. +### Implementing CLDF creation -```python ->>> from pydplace.api import Repos ->>> api = Repos('.') +Implementing CLDF creation means - as for any other `cldfbench`-curated dataset - filling in the +`cmd_makecldf` method of the `Dataset` subclass in `cldfbench_.py`. + +### Running CLDF creation + +With `cmd_makecldf` implemented, CLDF creation can be triggered running +```shell +cldfbench makecldf cldfbench_.py +``` + +The resulting CLDF dataset can be validated running +```shell +pytest +``` + + +### Release workflow + +```shell +cldfbench makecldf --glottolog-version v4.8 --with-cldfreadme cldfbench_.py +pytest +cldfbench zenodo --communities dplace cldfbench_.py +cldfbench cldfviz.map cldf --pacific-centered --format png --width 20 --output map.png --with-ocean --no-legend +cldfbench readme cldfbench_.py +dplace check cldfbench_.py +git commit -a -m"release vX.Y" +git push origin +``` + +Then create a release on GitHub, thereby pushing the repos to Zenodo. + + +### Using the datasets + +```shell +$ csvgrep -c Var_ID -m AnnualMeanTemperature cldf/data.csv | csvstat -c Value + 4. "Value" + + Type of data: Number + Contains null values: False + Unique values: 1649 + Smallest value: -19,45 + Largest value: 29,153 + Sum: 32.700,717 + Mean: 16,449 + Median: 19,721 + StDev: 9,684 + Most common values: 14,392 (9x) + 21,66 (6x) + 6,96 (6x) + 23,335 (5x) + 21,619 (5x) + +Row count: 1988 +``` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fed528d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg index f8e3657..9b7cbff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,82 @@ +[metadata] +name = pydplace +version = 3.0.0.dev0 +author = Robert Forkel +author_email = robert_forkel@eva.mpg.de +description = A cldfbench plugin to curate D-PLACE datasets +long_description = file: README.md +long_description_content_type = text/markdown +keywords = linguistics +license = Apache 2.0 +license_files = LICENSE +url = https://github.com/D-PLACE/pydplace +project_urls = + Bug Tracker = https://github.com/D-PLACE/pydplace/issues +platforms = any +classifiers = + Development Status :: 5 - Production/Stable + Intended Audience :: Developers + Intended Audience :: Science/Research + Natural Language :: English + Operating System :: OS Independent + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: Implementation :: CPython + Programming Language :: Python :: Implementation :: PyPy + License :: OSI Approved :: Apache Software License + +[options] +zip_safe = False +packages = find: +package_dir = + = src +python_requires = >=3.8 +install_requires = + pybtex + attrs>=19.1 + cldfbench + clldutils>=3.5.0 + csvw>=1.6 + pyglottolog>=3.0 + pycldf>=1.14 + fiona + shapely +include_package_data = True + +[options.packages.find] +where = src + +[options.package_data] +pycldf = + dataset_template/* + *.json + *.geojson + +[options.entry_points] +console_scripts = + dplace = pydplace.__main__:main +cldfbench.scaffold = + dplace_dataset = pydplace.scaffold:DatasetTemplate + +[options.extras_require] +dev = + tox + flake8 + wheel>=0.36 + twine +test = + pytest>=5 + pytest-mock + pytest-cov + coverage>=4.2 + [easy_install] zip_ok = false -[metadata] -description-file = README.md -license_file = LICENSE - [bdist_wheel] universal = 1 @@ -26,3 +98,12 @@ source = [coverage:report] show_missing = true skip_covered = true + +[tox:tox] +envlist = py38, py39, py310, py311, py312 +isolated_build = true +skip_missing_interpreter = true + +[testenv] +deps = .[test] +commands = pytest {posargs} diff --git a/setup.py b/setup.py index c14cd62..b024da8 100644 --- a/setup.py +++ b/setup.py @@ -1,63 +1,4 @@ -from setuptools import setup, find_packages +from setuptools import setup -setup( - name='pydplace', - version='2.4.1.dev0', - license='Apache 2.0', - description='programmatic access to D-PLACE/dplace-data', - long_description=open('README.md').read(), - long_description_content_type='text/markdown', - classifiers=[ - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - ], - author='Robert Forkel', - author_email='forkel@shh.mpg.de', - url='https://d-place.org', - keywords='data', - packages=find_packages(where='src'), - package_dir={'': 'src'}, - include_package_data=True, - zip_safe=False, - platforms='any', - python_requires='>=3.6', - install_requires=[ - 'pybtex', - 'attrs>=19.1', - 'clldutils>=3.5.0', - 'cldfcatalog', - 'csvw>=1.6', - 'pyglottolog>=3.0', - 'python-nexus>=2.2.0', - 'pycldf>=1.14', - # ete3 doesn't install its dependencies properly, so we have to: - 'six', - 'numpy', - 'ete3>=3.1.2', - #'pygdal>=1.11.3.3', - #'fiona', - #'shapely', - ], - extras_require={ - 'dev': ['flake8', 'wheel', 'twine'], - 'test': [ - 'pytest>=5', - 'pytest-mock', - 'pytest-cov', - 'coverage>=4.2', - ], - }, - entry_points={ - 'console_scripts': [ - 'dplace=pydplace.__main__:main', - ], - 'cldfbench.commands': [ - 'dplace=pydplace.cldfbench_commands', - ], - }, -) +setup() diff --git a/src/pydplace/__init__.py b/src/pydplace/__init__.py index d2156c8..b4fc6cc 100644 --- a/src/pydplace/__init__.py +++ b/src/pydplace/__init__.py @@ -1,5 +1,6 @@ # -from pydplace.api import Repos as API +from .dataset import DatasetWithSocieties, DatasetWithoutSocieties -DPLACE = API # provide a more specific alias for the API class __version__ = "2.4.1.dev0" +assert DatasetWithSocieties +assert DatasetWithoutSocieties diff --git a/src/pydplace/__main__.py b/src/pydplace/__main__.py index f12c981..b71ce66 100644 --- a/src/pydplace/__main__.py +++ b/src/pydplace/__main__.py @@ -1,22 +1,15 @@ import sys -import pathlib import contextlib from clldutils.loglib import Logging -from clldutils.clilib import get_parser_and_subparsers, register_subcommands, PathType +from clldutils.clilib import get_parser_and_subparsers, register_subcommands import pydplace -from pydplace.api import Repos import pydplace.commands def main(args=None, catch_all=False, parsed_args=None, log=None): parser, subparsers = get_parser_and_subparsers('dplace') - parser.add_argument( - '--repos', - type=PathType(type='dir'), - default=pathlib.Path('dplace-data'), - help='Location of clone of D_PLACE/dplace-data') register_subcommands(subparsers, pydplace.commands) args = parsed_args or parser.parse_args(args=args) @@ -30,7 +23,6 @@ def main(args=None, catch_all=False, parsed_args=None, log=None): stack.enter_context(Logging(args.log, level=args.log_level)) else: args.log = log - args.repos = Repos(args.repos) try: return args.main(args) or 0 except KeyboardInterrupt: # pragma: no cover diff --git a/src/pydplace/api.py b/src/pydplace/api.py deleted file mode 100644 index 71b07e8..0000000 --- a/src/pydplace/api.py +++ /dev/null @@ -1,522 +0,0 @@ -import re -import itertools -import collections - -import attr -from csvw.dsv import UnicodeWriter -from csvw.dsv import reader as base_reader -from clldutils.misc import lazyproperty -from clldutils.apilib import API -from clldutils.attrlib import valid_range -from clldutils import jsonlib -from nexus import NexusReader -from newick import loads as newick_loads -from pyglottolog.references import BibFile -from ete3 import Tree -from ete3.parser.newick import NewickError - -from pydplace.util import comma_split, semicolon_split, comma_join, semicolon_join, format_float - -__all__ = ['Variable', 'Reference', 'Data', 'Society', 'RelatedSociety', 'Dataset', - 'Taxon', 'Phylogeny', 'Repos', 'HRAF'] - -ID_PATTERN = re.compile(r'[A-Za-z.0-9_]+([0-9]+)?') - - -def reader(*args, **kw): - for row in base_reader(*args, **kw): - if isinstance(row, dict) and None in row: - raise ValueError('too many columns in row {0}'.format(row)) - yield row - - -@attr.s -class Object(object): - @classmethod - def fields(cls): - return [f.name for f in attr.fields(cls)] - - def astuple(self): - return attr.astuple(self) - - -@attr.s -class Variable(Object): - id = attr.ib(validator=attr.validators.matches_re(ID_PATTERN)) - category = attr.ib(converter=comma_split) - title = attr.ib() - definition = attr.ib() - - type = attr.ib(validator=attr.validators.in_(['Continuous', 'Categorical', 'Ordinal'])) - units = attr.ib() - source = attr.ib() - changes = attr.ib() - notes = attr.ib() - codes = attr.ib(default=attr.Factory(list)) - - @classmethod - def fields(cls): - return [f.name for f in attr.fields(cls)][:-1] - - def astuple(self): - return ( - self.id, - comma_join(self.category), - self.title, - self.definition, - self.type, - self.units, - self.source, - self.changes, - self.notes, - ) - - -@attr.s -class Code(Object): - var_id = attr.ib(validator=attr.validators.matches_re(ID_PATTERN)) - code = attr.ib() - description = attr.ib(converter=lambda s: s.strip()) - name = attr.ib() - - -@attr.s -class Reference(object): - key = attr.ib() - pages = attr.ib() - - def __str__(self): - res = self.key - if self.pages: - res += ':{0}'.format(self.pages) - return res - - def format_cldf(self): - res = self.key - if self.pages: - res += '[{}]'.format(self.pages) - return res - - @classmethod - def from_string(cls, s): - if ':' in s: - k, _, p = s.partition(':') - elif '[' in s: - k, _, p = s[:-1].partition('[') - else: - k, p = s, '' - return cls(k.strip(), p.strip()) - - -@attr.s -class Data(Object): - soc_id = attr.ib() - sub_case = attr.ib() - year = attr.ib() - var_id = attr.ib() - code = attr.ib() - comment = attr.ib() - references = attr.ib( - converter=lambda s: [Reference.from_string(ss) for ss in semicolon_split(s)]) - source_coded_data = attr.ib() - admin_comment = attr.ib() - - def astuple(self): - return ( - self.soc_id, - self.sub_case, - self.year, - self.var_id, - self.code, - self.comment, - semicolon_join('{0}'.format(ref) for ref in self.references), - self.source_coded_data, - self.admin_comment, - ) - - -@attr.s -class ObjectWithSource(object): - id = attr.ib() - name = attr.ib() - year = attr.ib() - author = attr.ib() - reference = attr.ib() - base_dir = attr.ib() - url = attr.ib() - - @property - def dir(self): - return self.base_dir.joinpath(self.id) - - def __str__(self): - return '{0.name} ({0.id})'.format(self) - - -@attr.s -class RelatedSociety(object): - dataset = attr.ib(converter=lambda s: s.strip()) - name = attr.ib(converter=lambda s: s.strip()) - id = attr.ib(converter=lambda s: s.strip()) - - def __attrs_post_init__(self): - if self.dataset == 'WNAI' and self.id.startswith('J'): - self.id = self.id.replace('J', 'WNAI') # pragma: no cover - - def __str__(self): - return '{0.dataset}: {0.name} [{0.id}]'.format(self) - - @classmethod - def from_string(cls, s): - match = re.match(r'([A-Za-z]+):\s*([^\[]+)\[([^\]]+)\]$', s) - if not match: - raise ValueError(s) - return cls(*match.groups()) - - -@attr.s -class RelatedSocieties(Object): - id = attr.ib() - related = attr.ib(converter=lambda s: [ - RelatedSociety.from_string(ss) for ss in semicolon_split(s)]) - - def astuple(self): - return (self.id, semicolon_join('{0}'.format(rs) for rs in self.related)) - - -@attr.s -class HRAF(object): - name = attr.ib() - id = attr.ib() - - @classmethod - def fromstring(cls, s): - if s: - name, _, id_ = s.strip().partition('(') - assert id_.endswith(')') - return cls(name.strip(), id_[:-1]) - - def __str__(self): - return '{0.name} ({0.id})'.format(self) - - @property - def url(self): - return 'http://ehrafworldcultures.yale.edu/collection?owc={0}'.format(self.id) - - -@attr.s -class Society(Object): - id = attr.ib(validator=attr.validators.matches_re('[A-Za-z][A-Za-z0-9]+')) - xd_id = attr.ib(validator=attr.validators.matches_re('xd[0-9]+')) - pref_name_for_society = attr.ib() - glottocode = attr.ib( - validator=attr.validators.optional(attr.validators.matches_re('[a-z0-9]{4}[0-9]{4}$'))) - ORIG_name_and_ID_in_this_dataset = attr.ib() - alt_names_by_society = attr.ib(converter=comma_split) - main_focal_year = attr.ib() - HRAF_name_ID = attr.ib(converter=HRAF.fromstring) - HRAF_link = attr.ib( - converter=lambda s: s.strip() or None, - validator=attr.validators.optional(attr.validators.matches_re( - r'http://ehrafworldcultures\.yale\.edu/collection\?owc=[A-Z0-9]+|in process', - ))) - origLat = attr.ib(converter=float) - origLong = attr.ib(converter=float) - Lat = attr.ib(converter=float, validator=valid_range(-90, 90)) - Long = attr.ib(converter=float, validator=valid_range(-180, 180)) - Comment = attr.ib() - glottocode_comment = attr.ib() - - def __str__(self): - return '{0.pref_name_for_society} ({0.id})'.format(self) - - def astuple(self): - return ( - self.id, - self.xd_id, - self.pref_name_for_society, - self.glottocode, - self.ORIG_name_and_ID_in_this_dataset, - comma_join(self.alt_names_by_society), - self.main_focal_year, - '{0}'.format(self.HRAF_name_ID or ''), - self.HRAF_link, - format_float(self.origLat), - format_float(self.origLong), - format_float(self.Lat), - format_float(self.Long), - self.Comment, - self.glottocode_comment, - ) - - -@attr.s -class Dataset(ObjectWithSource): - type = attr.ib(validator=attr.validators.in_(['cultural', 'environmental'])) - description = attr.ib() - - def _path(self, what): - return self.dir.joinpath('{0}.csv'.format(what)) - - def _read_items(self, what, **kw): - fname = self._path(what) - return list(reader(fname, **kw)) if fname.exists() else [] - - def _write_items(self, what, attr=None, items=None): - items = items if items is not None else getattr(self, attr or what) - if items: - with UnicodeWriter(self._path(what)) as writer: - writer.writerow(items[0].__class__.fields()) - for item in items: - writer.writerow(item.astuple()) - - @lazyproperty - def data(self): - return [Data(**d) for d in self._read_items('data', dicts=True)] - - @lazyproperty - def societies(self): - return [Society(**d) for d in self._read_items('societies', dicts=True)] - - @lazyproperty - def _society_dict(self): - return {soc.id: soc for soc in self.societies} - - def society(self, id_): - return self._society_dict[id_] - - @lazyproperty - def society_relations(self): - return [ - RelatedSocieties(**d) for d in self._read_items('societies_mapping', dicts=True)] - - @lazyproperty - def variables(self): - codes = {vid: list(c) for vid, c in itertools.groupby( - sorted(self._read_items('codes', dicts=True), key=lambda c: c['var_id']), - lambda c: c['var_id'])} - res = [] - for v in self._read_items('variables', dicts=True): - v.setdefault('units', '') - res.append(Variable(codes=[Code(**c) for c in codes.get(v['id'], [])], **v)) - return res - - def write(self): - self._write_items('societies') - self._write_items('data') - self._write_items('variables') - self._write_items('codes', items=list( - itertools.chain(*[var.codes for var in self.variables]))) - self._write_items('societies_mapping', attr='society_relations') - - -@attr.s -class Taxon(object): - taxon = attr.ib() - glottocode = attr.ib() - xd_ids = attr.ib(converter=comma_split) - soc_ids = attr.ib(converter=comma_split) - isocode = attr.ib(default=None) - properties = attr.ib(default=dict) - - @classmethod - def from_dict(cls, d): - kw = {'properties': {}} - fields = set(f.name for f in attr.fields(cls)) - for k, v in d.items(): - if k in fields: - kw[k] = v - else: - kw['properties'][k] = v - return cls(**kw) - - -@attr.s -class Phylogeny(ObjectWithSource): - scaling = attr.ib() - source_id = attr.ib() - - @property - def nexus(self): - return NexusReader(self.trees.as_posix()) - - @property - def newick(self): - nexus = self.nexus - nexus.trees.detranslate() - newick = re.sub(r'\[.*?\]', '', nexus.trees.trees[0]) - try: - return newick[newick.index('=') + 1:] - except ValueError: # pragma: no cover - return newick - - @property - def newick_tree(self): - return newick_loads(self.newick)[0] - - @property - def is_glottolog(self): - return self.id.startswith('glottolog_') - - @property - def trees(self): - return self.dir.joinpath('summary.trees') - - @property - def taxa(self): - return [Taxon.from_dict(d) for d in reader(self.dir.joinpath('taxa.csv'), dicts=True)] - - -class Repos(API): - @lazyproperty - def datasets(self): - res = [ - Dataset(base_dir=self.path('datasets'), **r) for r in - reader(self.path('datasets', 'index.csv'), dicts=True)] - for ds in res: - if not ds.description: - readme = ds.base_dir / ds.id / 'README.md' - if readme.exists(): - ds.description = readme.read_text(encoding='utf-8') - return res - - @lazyproperty - def _dataset_dict(self): - return {ds.id: ds for ds in self.datasets} - - def dataset(self, id_): - return self._dataset_dict[id_] - - @property - def phylogenies(self): - return [ - Phylogeny(base_dir=self.path('phylogenies'), **r) for r in - reader(self.path('phylogenies', 'index.csv'), dicts=True)] - - @property - def societies(self): - return { - s.id: s for s in itertools.chain.from_iterable(d.societies for d in self.datasets) - } - - @property - def variables(self): - return { - v.id: v for v in itertools.chain.from_iterable(d.variables for d in self.datasets) - } - - @property - def sources(self): - return BibFile(self.path('sources.bib')) - - def write(self): - for ds in self.datasets: - ds.write() - - def read_csv(self, *comps, **kw): - return list(reader(self.path(*comps), **kw)) - - def read_json(self, *comps): - return jsonlib.load(self.path(*comps)) - - def iter_data(self, datasets=None, variables=None, societies=None): - for ds in self.datasets: - if (datasets is None) or (datasets and ds.id in datasets): - for record in ds.data: - if variables and record.var_id not in variables: - continue - if societies and record.soc_id not in societies: - continue - yield record - - def check(self): - glottolog = {lng.id: lng for lng in - self.read_csv('csv', 'glottolog.csv', namedtuples=True)} - msgs = {'error': [], 'warning': []} - - def _msg(type_, msg, obj=None): # pragma: no cover - obj = '{0.__class__.__name__} {0.id}: '.format(obj) if obj else '' - msgs[type_].append('%s:%s%s' % (type_.upper(), obj, msg)) - - def error(msg, obj=None): # pragma: no cover - _msg('error', msg, obj=obj) - - def warning(msg, obj=None): # pragma: no cover - _msg('warning', msg, obj=obj) - - sources = set(e.key for e in self.sources.iterentries()) - socids, xdids, gcs, varids = \ - set(), collections.defaultdict(set), collections.defaultdict(set), {} - for ds in self.datasets: - for soc in ds.societies: - if soc.id in socids: # pragma: no cover - error('duplicate society ID: {0}'.format(soc.id), ds) - xdids[soc.xd_id].add(soc.glottocode) - gcs[soc.glottocode].add(soc.xd_id) - socids.add(soc.id) - if soc.glottocode not in glottolog: # pragma: no cover - warning('{0} without valid glottocode {0.glottocode}'.format(soc), ds) - elif glottolog[soc.glottocode].family_name == 'Bookkeeping': # pragma: no cover - warning('{0} mapped to Bookkeeping language: {0.glottocode}'.format(soc), ds) - # are there duplicate variables? - for var in ds.variables: - if var.id in varids: # pragma: no cover - error('duplicate variable ID: {0}'.format(var.id), ds) - varids[var.id] = [ - c.code for c in var.codes] if var.type in ['Categorical', 'Ordinal'] else [] - - # are there undefined variables? - undefined = set([r.var_id for r in ds.data if r.var_id not in varids]) - for u in undefined: # pragma: no cover - error('undefined variable ID: {0}'.format(u), ds) - - for d in ds.data: - if d.var_id not in varids: # pragma: no cover - error('undefined variable ID: {0}'.format(d.var_id), ds) - elif len(varids[d.var_id]) > 1 \ - and d.code not in varids[d.var_id]: # pragma: no cover - error('undefined code for variable {0} and society {1}:{2}'.format( - d.var_id, d.soc_id, d.code), ds) - for ref in d.references: - if ref.key not in sources: - error('undefined source key "{0}" referenced in {1}'.format( - ref.key, ds.id), ds) - - for xdid, glottocodes in xdids.items(): - if len(glottocodes - {None}) > 1: # pragma: no cover - # No xd_id can be linked to more than one Glottocode! - error('xd_id {0} mapped to multiple glottocodes {1}'.format(xdid, glottocodes)) - - for p in self.phylogenies: - if p.source_id: - if p.source_id not in sources: # pragma: no cover - error('{0}: invalid source_id {1}'.format(p.id, p.source_id), p) - taxa = set() - for taxon in p.taxa: - taxa.add(taxon.taxon) - if taxon.glottocode and taxon.glottocode not in glottolog: - error('{0}: invalid glottocode {1}'.format(p.id, taxon.glottocode), p) - for socid in taxon.soc_ids: - if socid not in socids: - error('{0}: invalid soc_id {1}'.format(p.id, socid), p) - for xdid in taxon.xd_ids: - if xdid not in xdids: - error('{0}: invalid xd_id {1}'.format(p.id, xdid), p) - - if not p.nexus: # pragma: no cover - error('{0}: unable to load summary.trees'.format(p.id), p) - - try: - Tree(p.newick, format=1) - except NewickError as e: # pragma: no cover - error('{0}: invalid newick tree from summary.trees: {1}'.format(p.id, e), p) - - if not p.is_glottolog: - for node in p.newick_tree.walk(): - if node.name and node.is_leaf and node.name not in taxa: # pragma: no cover - warning('Leaf label missing in taxa.csv: {0}'.format(node.name), obj=p) - - for key in ['warning', 'error']: - for msg in msgs[key]: - print(msg) - return not bool(msgs['error']) diff --git a/src/pydplace/cldfbench_commands/printtree.py b/src/pydplace/cldfbench_commands/printtree.py deleted file mode 100644 index fee0501..0000000 --- a/src/pydplace/cldfbench_commands/printtree.py +++ /dev/null @@ -1,16 +0,0 @@ -""" - -""" -import nexus - -from cldfbench.cli_util import add_dataset_spec, get_dataset - - -def register(parser): - add_dataset_spec(parser) - - -def run(args): - ds = get_dataset(args) - p = ds.cldf_dir / ds.cldf_reader().properties['dc:hasPart']['summary']['dc:relation'] - print(nexus.NexusReader(p).trees.trees[0].newick_tree.ascii_art()) diff --git a/src/pydplace/commands/check.py b/src/pydplace/commands/check.py index c59e40c..1f65d94 100644 --- a/src/pydplace/commands/check.py +++ b/src/pydplace/commands/check.py @@ -1,7 +1,54 @@ """ """ +import subprocess + +from termcolor import colored +from cldfbench.cli_util import add_dataset_spec, get_dataset + +from pydplace import DatasetWithoutSocieties, DatasetWithSocieties + + +def register(parser): + add_dataset_spec(parser) def run(args): - args.repos.check() + ds = get_dataset(args) + passed = True + assert ds.id.startswith('dplace-dataset_with_societies-') + if subprocess.check_call(['cldf', 'validate', str(ds.cldf_dir)]) != 0: + passed = False + + cldf = ds.cldf_reader() + if not cldf.properties.get('dc:title', '').startswith( + 'D-PLACE dataset_with_societies derived from'): + print(colored( + 'Invalid dataset_with_societies title in CLDF: {}'.format( + cldf.properties.get('dc:title')), + 'red')) + passed = False + + if issubclass(ds.__class__, DatasetWithoutSocieties): + if not ds.__society_sets__: + print(colored( + 'Dataset without societies must reference at lease one society set', + 'red')) + passed = False + elif not cldf.properties.get('dc:references'): + print(colored( + 'Referenced society sets not yet in CLDF. Re-run makecldf', + 'red')) + passed = False + else: + assert issubclass(ds.__class__, DatasetWithSocieties) + if not ds.dir.joinpath('map.png').exists(): + print(colored('map.png not found', 'red')) + passed = False + + for fname in ['metadata.json', 'CONTRIBUTORS.md', '.zenodo.json']: + if not ds.dir.joinpath(fname).exists(): + print(colored('{} not found'.format(fname), 'red')) + passed = False + + print(colored('OK' if passed else 'FAIL', 'green' if passed else 'red', attrs={'bold'})) diff --git a/src/pydplace/commands/cldf.py b/src/pydplace/commands/cldf.py deleted file mode 100644 index 2066c82..0000000 --- a/src/pydplace/commands/cldf.py +++ /dev/null @@ -1,246 +0,0 @@ -""" -Serialize the core D-PLACE data (without the phylogenies) as CLDF StructureDataset. -""" -import sys -import shutil -import collections - -from clldutils.clilib import PathType -from cldfcatalog import Catalog, Repository -from pycldf import StructureDataset, Sources - - -def register(parser): - parser.add_argument( - 'glottolog', - metavar='GLOTTOLOG', - help="clone of glottolog/glottolog", - type=PathType(type='dir'), - ) - parser.add_argument( - 'glottolog_version', - help="tag to checkout glottolog/glottolog to", - ) - parser.add_argument( - '--cldf-repos', - help="clone of d-place/dplace-cldf", - default='../dplace-cldf', - type=PathType(type='dir')) - parser.add_argument('--dev', action='store_true', default=False) - parser.add_argument('--fix-code-id', action='store_true', default=False) - - -def run(args): - cldf = StructureDataset.in_dir(args.cldf_repos / 'cldf') - if args.glottolog_version != 'test': # pragma: no cover - with Catalog(args.glottolog, args.glottolog_version) as glottolog: - write_metadata(cldf, args, glottolog) - else: - write_metadata(cldf, args, None) - write_schema(cldf) - cldf.write(**get_data(cldf, args)) - shutil.copy(str(args.repos.path('LICENSE.txt')), str(args.cldf_repos)) - if not args.dev: - cldf.validate(log=args.log) - - -def write_metadata(cldf, args, glottolog): - cldf.properties['dc:bibliographicCitation'] = \ - 'Kathryn R. Kirby, Russell D. Gray, Simon J. Greenhill, Fiona M. Jordan, ' \ - 'Stephanie Gomes-Ng, Hans-Jörg Bibiko, Damián E. Blasi, Carlos A. Botero, ' \ - 'Claire Bowern, Carol R. Ember, Dan Leehr, Bobbi S. Low, Joe McCarter, ' \ - 'William Divale, and Michael C. Gavin. (2016). ' \ - 'D-PLACE: A Global Database of Cultural, Linguistic and Environmental Diversity. ' \ - 'PLoS ONE, 11(7): e0158391. doi:10.1371/journal.pone.0158391.' - cldf.properties['dc:title'] = 'CLDF Dataset derived from D-PLACE' - cldf.properties['dc:description'] = \ - 'This dataset contains the data from D-PLACE, ' \ - 'the Database of Places, Language, Culture and Environment, ' \ - 'serialized as CLDF StructureDataset. ' \ - 'D-PLACE societies are formally treated as languages, i.e. society metadata is ' \ - 'written to the CLDF LanguageTable and the data on language phylogenies ' \ - 'aggregated in D-PLACE is excluded.' - cldf.properties['dc:related'] = 'https://d-place.org' - cldf.properties['rdf:type'] = 'http://www.w3.org/ns/dcat#Distribution' - if glottolog: # pragma: no cover - cldf.properties['dcat:accessURL'] = Repository(args.cldf_repos).url - cldf.add_provenance(wasDerivedFrom=[ - Repository(args.repos.repos).json_ld(), - glottolog.json_ld(), - ]) - cldf.add_provenance(wasGeneratedBy=[ - collections.OrderedDict([ - ('dc:title', "python"), - ('dc:description', sys.version.split()[0])])]) - - -def write_schema(cldf): - cldf.add_component( - 'LanguageTable', - 'xd_id', - 'ORIG_name_and_ID_in_this_dataset', - { - "name": "alt_names_by_society", - "separator": ";" - }, - 'Dataset_ID', - 'main_focal_year', - 'HRAF_Name' - 'HRAF_ID', - 'HRAF_Link', - 'origLat', - 'origLong', - 'Comment', - 'Glottocode_Comment', - ) - cldf.add_component( - 'ParameterTable', - 'Dataset_ID', - { - "name": "Category", - "separator": "," - }, - { - "name": "Type", - "datatype": {"base": "string", "format": "|".join( - ['Continuous', 'Categorical', 'Ordinal'])}, - }, - "Units", - "Source", - "Changes", - "Notes", - ) - cldf.add_component('CodeTable') - cldf.add_columns( - 'ValueTable', - 'Sub_Case', - 'Year', - 'Source_Coded_Data', - 'Admin_Comment', - 'Dataset_ID', - ) - cldf['ValueTable', 'value'].null = ['NA'] - cldf.add_table( - 'datasets.csv', - {'name': 'ID', 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#id'}, - {'name': 'Name', 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#name'}, - {'name': 'Description', 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#description'}, - {'name': 'Type', 'datatype': {'base': 'string', 'format': 'environmental|cultural'}}, - {'name': 'Year', 'propertyUrl': 'http://purl.org/dc/terms/date'}, - {'name': 'Author', 'propertyUrl': 'http://purl.org/dc/elements/1.1/creator'}, - {'name': 'Reference', 'propertyUrl': 'http://purl.org/dc/terms/bibliographicCitation'}, - 'URL', - ) - cldf.add_table( - 'society_relations.csv', - {'name': 'ID', 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#id'}, - 'Society_ID', - 'Related_Society_ID', - 'Related_Society_External_ID', - 'Related_Society_Name', - 'Related_Society_Dataset', - ) - cldf.add_foreign_key('society_relations.csv', 'Society_ID', 'LanguageTable', 'ID') - cldf.add_foreign_key('society_relations.csv', 'Related_Society_ID', 'LanguageTable', 'ID') - cldf.add_foreign_key('ParameterTable', 'Dataset_ID', 'datasets.csv', 'ID') - cldf.add_foreign_key('LanguageTable', 'Dataset_ID', 'datasets.csv', 'ID') - cldf.add_foreign_key('ValueTable', 'Dataset_ID', 'datasets.csv', 'ID') - - -def get_data(cldf, args): - relscount = 0 - cldf.sources = Sources.from_file(args.repos.path('sources.bib')) - categorical_variables = set() - data = collections.defaultdict(list) - dsids = [ds.id for ds in args.repos.datasets] - for ds in args.repos.datasets: - data['datasets.csv'].append({ - 'ID': ds.id, - 'Name': ds.name, - 'Description': ds.description, - 'Type': ds.type, - 'Year': ds.year, - 'Author': ds.author, - 'Reference': ds.reference, - 'URL': ds.url, - }) - for soc in ds.societies: - data['LanguageTable'].append({ - 'ID': soc.id, - 'Dataset_ID': ds.id, - 'Name': soc.pref_name_for_society, - 'Glottocode': soc.glottocode, - 'Latitude': soc.Lat, - 'Longitude': soc.Long, - 'Comment': soc.Comment, - 'Glottocode_Comment': soc.glottocode_comment, - 'xd_id': soc.xd_id, - 'ORIG_name_and_ID_in_this_dataset': soc.ORIG_name_and_ID_in_this_dataset, - 'alt_names_by_society': soc.alt_names_by_society, - 'main_focal_year': soc.main_focal_year, - 'HRAF_ID': soc.HRAF_name_ID.id if soc.HRAF_name_ID else None, - 'HRAF_Name': soc.HRAF_name_ID.name if soc.HRAF_name_ID else None, - 'HRAF_Link': soc.HRAF_link, - 'origLat': soc.origLat, - 'origLong': soc.origLong, - }) - for soc in ds.society_relations: - for rel in soc.related: - relscount += 1 - data['society_relations.csv'].append({ - 'ID': str(relscount), - 'Society_ID': soc.id, - 'Related_Society_ID': rel.id if rel.dataset in dsids else None, - 'Related_Society_External_ID': rel.id if rel.dataset not in dsids else None, - 'Related_Society_Name': rel.name, - 'Related_Society_Dataset': rel.dataset, - }) - for param in ds.variables: - data['ParameterTable'].append({ - 'ID': param.id.replace('.', '_'), - 'Dataset_ID': ds.id, - 'Name': param.title, - 'Description': param.definition, - "Category": param.category, - "Type": param.type, - "Units": param.units, - "Source": param.source, - "Changes": param.changes, - "Notes": param.notes, - }) - for code in param.codes: - if code.code == 'NA': - continue - categorical_variables.add(code.var_id) - data['CodeTable'].append({ - 'ID': '{}-{}'.format(code.var_id, code.code).replace('.', '_'), - 'Parameter_ID': code.var_id.replace('.', '_'), - 'Name': code.name, - 'Description': code.description, - }) - - codes = set(c['ID'] for c in data['CodeTable']) - for i, d in enumerate(ds.data, start=1): - code_id = None \ - if (d.var_id not in categorical_variables) or d.code == 'NA' \ - else '{}-{}'.format(d.var_id, d.code).replace('.', '_') - if code_id and (code_id not in codes) and args.fix_code_id: - # This is a backwards compatibility fix. New releases should not have references - # to undefined codes! - code_id = None # pragma: no cover - - data['ValueTable'].append({ - 'ID': '{}-{}'.format(ds.id, i), - 'Language_ID': d.soc_id, - 'Parameter_ID': d.var_id.replace('.', '_'), - 'Dataset_ID': ds.id, - 'Code_ID': code_id, - 'Value': d.code, - 'Comment': d.comment, - 'Sub_Case': d.sub_case, - 'Year': d.year, - 'Source': [ref.format_cldf() for ref in d.references], - 'Source_Coded_Data': d.source_coded_data, - 'Admin_Comment': d.admin_comment, - }) - return data diff --git a/src/pydplace/commands/denormalise.py b/src/pydplace/commands/denormalise.py deleted file mode 100644 index 0c418f8..0000000 --- a/src/pydplace/commands/denormalise.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -# - iterate over datasets -# - group in society sets and others -# - aggregate data grouped by society set -# - write out package per society set -""" - - -def run(args): - raise NotImplementedError() diff --git a/src/pydplace/commands/extract.py b/src/pydplace/commands/extract.py deleted file mode 100644 index fbfde34..0000000 --- a/src/pydplace/commands/extract.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -Extracts subsets of data for further processing. - -To filter societies: - -> dplace %(prog)s --society Cj4,Cj5,Cj6 output.csv - -To filter societies on a given tree: - -> dplace %(prog)s --tree gray_et_al2009 output.csv - -To filter societies only from a given dataset: - -> dplace %(prog)s --dataset EA output.csv -""" -from csvw.dsv import UnicodeWriter - - -def register(parser): - parser.add_argument('filename', help='filename', default=None) - parser.add_argument('--society', help='restrict to these society ids (x,y,z)', default=None) - parser.add_argument('--tree', help='restrict to this tree', default=None) - parser.add_argument('--dataset', help='restrict to these datasets (x,y,z)', default=None) - parser.add_argument('--variable', help='restrict to thes dataset (x,y,z)', default=None) - - -def run(args): - datasets = args.dataset.split(",") if args.dataset else None - variables = args.variable.split(",") if args.variable else None - societies = args.society.split(",") if args.society else None - - if args.tree: - for tree in args.repos.phylogenies: - if args.tree == tree.id: - break - else: - raise SystemExit("Failed to find Tree %s" % args.tree) - societies = [s for sublist in [t.soc_ids for t in tree.taxa] for s in sublist] - - with UnicodeWriter(f=args.filename) as out: - header = [ - 'ID', - 'XD_ID', - 'Glottocode', - 'Name', - 'OriginalName', - 'FocalYear', - 'Latitude', - 'Longitude', - 'Variable', - 'Value' - ] - out.writerow(header) - - socs = args.repos.societies - for record in args.repos.iter_data( - datasets=datasets, variables=variables, societies=societies): - s = socs.get(record.soc_id, None) - row = [ - s.id, - s.xd_id, - s.glottocode, - s.pref_name_for_society, - s.ORIG_name_and_ID_in_this_dataset, - s.main_focal_year, - s.Lat, - s.Long, - record.var_id, - record.code - ] - out.writerow(row) diff --git a/src/pydplace/commands/glottolog.py b/src/pydplace/commands/glottolog.py index 3b38d32..74f59d1 100644 --- a/src/pydplace/commands/glottolog.py +++ b/src/pydplace/commands/glottolog.py @@ -4,18 +4,12 @@ import datetime import contextlib -from clldutils.clilib import PathType from cldfcatalog import Catalog from pydplace import glottolog -def register(parser): - parser.add_argument('glottolog', help='clone of glottolog/glottolog', type=PathType(type='dir')) - parser.add_argument('--glottolog-version', default=None) - - -def run(args): +def run(args): # pragma: no cover with contextlib.ExitStack() as stack: if args.glottolog_version: # pragma: no cover stack.enter_context(Catalog(args.glottolog, tag=args.glottolog_version)) diff --git a/src/pydplace/commands/glottologbib.py b/src/pydplace/commands/glottologbib.py index c070bad..7414df5 100644 --- a/src/pydplace/commands/glottologbib.py +++ b/src/pydplace/commands/glottologbib.py @@ -4,7 +4,7 @@ import collections -def run(args): +def run(args): # pragma: no cover refs = collections.defaultdict(set) socs = {} diff --git a/src/pydplace/commands/index.py b/src/pydplace/commands/index.py deleted file mode 100644 index fb3cb7b..0000000 --- a/src/pydplace/commands/index.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -Create SOURCES.md -""" -from clldutils.markup import Table - - -def run(args): - md = ['# Sources', ''] - for datatype in ['datasets', 'phylogenies']: - md.append('\n## {0}\n'.format(datatype.capitalize())) - t = Table('Name', 'Reference') - for obj in getattr(args.repos, datatype): - if not obj.id.startswith('glottolog_') or obj.id == 'glottolog_global': - t.append([ - '[{0}]({1}/{2})'.format(obj.name, datatype, obj.id), - obj.reference]) - md.append(t.render(condensed=False)) - args.repos.path('SOURCES.md').write_text('\n'.join(md), encoding='utf-8') diff --git a/src/pydplace/commands/ls.py b/src/pydplace/commands/ls.py deleted file mode 100644 index 4c9ff46..0000000 --- a/src/pydplace/commands/ls.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -List datasets -""" -from clldutils.clilib import Table, add_format - - -def register(parser): - add_format(parser, default='simple') - - -def run(args): - with Table(args, 'id', 'name', 'type', 'variables', 'societies') as t: - for ds in args.repos.datasets: - t.append([ds.id, ds.name, ds.type, len(ds.variables), len(ds.societies)]) diff --git a/src/pydplace/commands/tdwg.py b/src/pydplace/commands/tdwg.py deleted file mode 100644 index b638572..0000000 --- a/src/pydplace/commands/tdwg.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -Assign socities to TDWG regions -""" -import math - -from clldutils.jsonlib import update_ordered - -from pydplace import geo - -try: - import fiona -except ImportError: # pragma: no cover - fiona = None - - -def run(args): - if fiona is None: # pragma: no cover - raise SystemExit('fiona and shapely must be installed for this command') - - with fiona.collection(str(args.repos.path("geo", "level2-shape/level2.shp")), "r") as source: - regions = [f for f in source] - - with update_ordered(args.repos.path("geo", "societies_tdwg.json"), indent=4) as soc_tdwg: - for ds in args.repos.datasets: - for soc in ds.societies: - spec = soc_tdwg.get( - soc.id, dict(lat=soc.Lat, lon=soc.Long, name=None, code=None)) - if math.isclose(spec['lat'], soc.Lat) \ - and math.isclose(spec['lon'], soc.Long) \ - and spec['code']: - continue - - region, dist = geo.match(spec['lon'], spec['lat'], regions) - spec['name'] = region['properties']['REGION_NAM'] - spec['code'] = str(region['properties']['TDWG_CODE']) - - if dist == 0: # pragma: no cover - args.log.info('{0} contained in region {1}'.format(soc, spec['name'])) - else: - args.log.warning( - 'assigning {0} to nearest region {1}, distance {2}'.format( - soc, region['properties']['REGION_NAM'], dist)) - - soc_tdwg[soc.id] = spec diff --git a/src/pydplace/cross_dataset_ids.json b/src/pydplace/cross_dataset_ids.json new file mode 100644 index 0000000..84d12a7 --- /dev/null +++ b/src/pydplace/cross_dataset_ids.json @@ -0,0 +1,4846 @@ +{ + "xd1": [ + "Aa1", + "B72", + "SCCS2" + ], + "xd2": [ + "Aa2", + "B70" + ], + "xd3": [ + "Aa3", + "SCCS1" + ], + "xd4": [ + "Aa4" + ], + "xd5": [ + "Aa5", + "B65", + "SCCS13" + ], + "xd6": [ + "Aa6" + ], + "xd7": [ + "Aa7", + "B73" + ], + "xd8": [ + "Aa8", + "B79" + ], + "xd9": [ + "Aa9", + "B69", + "SCCS9" + ], + "xd10": [ + "Ab1" + ], + "xd11": [ + "Ab10" + ], + "xd12": [ + "Ab11" + ], + "xd13": [ + "Ab12" + ], + "xd14": [ + "Ab13" + ], + "xd15": [ + "Ab14" + ], + "xd16": [ + "Ab15" + ], + "xd17": [ + "Ab16" + ], + "xd18": [ + "Ab17" + ], + "xd19": [ + "Ab18" + ], + "xd20": [ + "Ab19" + ], + "xd21": [ + "Ab2" + ], + "xd22": [ + "Ab20" + ], + "xd23": [ + "Ab21a" + ], + "xd24": [ + "Ab21b" + ], + "xd25": [ + "Ab22" + ], + "xd26": [ + "Ab3", + "SCCS4" + ], + "xd27": [ + "Ab4", + "SCCS3" + ], + "xd28": [ + "Ab5", + "SCCS5" + ], + "xd29": [ + "Ab6" + ], + "xd30": [ + "Ab7" + ], + "xd31": [ + "Ab8" + ], + "xd32": [ + "Ab9" + ], + "xd33": [ + "Ac1" + ], + "xd34": [ + "Ac10" + ], + "xd35": [ + "Ac11" + ], + "xd36": [ + "Ac12" + ], + "xd37": [ + "Ac13" + ], + "xd38": [ + "Ac14" + ], + "xd39": [ + "Ac15" + ], + "xd40": [ + "Ac16" + ], + "xd41": [ + "Ac17", + "SCCS6" + ], + "xd42": [ + "Ac18" + ], + "xd43": [ + "Ac19" + ], + "xd44": [ + "Ac2" + ], + "xd45": [ + "Ac20" + ], + "xd46": [ + "Ac21" + ], + "xd47": [ + "Ac22" + ], + "xd48": [ + "Ac23" + ], + "xd49": [ + "Ac24" + ], + "xd50": [ + "Ac25" + ], + "xd51": [ + "Ac26" + ], + "xd52": [ + "Ac27" + ], + "xd53": [ + "Ac28" + ], + "xd54": [ + "Ac29" + ], + "xd55": [ + "Ac3", + "SCCS7" + ], + "xd56": [ + "Ac30" + ], + "xd57": [ + "Ac31" + ], + "xd58": [ + "Ac32" + ], + "xd59": [ + "Ac33" + ], + "xd60": [ + "Ac34" + ], + "xd61": [ + "Ac35" + ], + "xd62": [ + "Ac36" + ], + "xd63": [ + "Ac37" + ], + "xd64": [ + "Ac38" + ], + "xd65": [ + "Ac39" + ], + "xd66": [ + "Ac4" + ], + "xd67": [ + "Ac40" + ], + "xd68": [ + "Ac41" + ], + "xd69": [ + "Ac42" + ], + "xd70": [ + "Ac43" + ], + "xd71": [ + "Ac5" + ], + "xd72": [ + "Ac6" + ], + "xd73": [ + "Ac7" + ], + "xd74": [ + "Ac8" + ], + "xd75": [ + "Ac9" + ], + "xd76": [ + "Ad1" + ], + "xd77": [ + "Ad10" + ], + "xd78": [ + "Ad11" + ], + "xd79": [ + "Ad12" + ], + "xd80": [ + "Ad13" + ], + "xd81": [ + "Ad14", + "SCCS10" + ], + "xd82": [ + "Ad15" + ], + "xd83": [ + "Ad16" + ], + "xd84": [ + "Ad17" + ], + "xd85": [ + "Ad18" + ], + "xd86": [ + "Ad19" + ], + "xd87": [ + "Ad2" + ], + "xd88": [ + "Ad20" + ], + "xd89": [ + "Ad21" + ], + "xd90": [ + "Ad22" + ], + "xd91": [ + "Ad23" + ], + "xd92": [ + "Ad24" + ], + "xd93": [ + "Ad25" + ], + "xd94": [ + "Ad26" + ], + "xd95": [ + "Ad27" + ], + "xd96": [ + "Ad28" + ], + "xd97": [ + "Ad29" + ], + "xd98": [ + "Ad3" + ], + "xd99": [ + "Ad30" + ], + "xd100": [ + "Ad31" + ], + "xd101": [ + "Ad32" + ], + "xd102": [ + "Ad33" + ], + "xd103": [ + "Ad34" + ], + "xd104": [ + "Ad35" + ], + "xd105": [ + "Ad36" + ], + "xd106": [ + "Ad37" + ], + "xd107": [ + "Ad38" + ], + "xd108": [ + "Ad39" + ], + "xd109": [ + "Ad4", + "SCCS11" + ], + "xd110": [ + "Ad40" + ], + "xd111": [ + "Ad41" + ], + "xd112": [ + "Ad42" + ], + "xd113": [ + "Ad43" + ], + "xd114": [ + "Ad44" + ], + "xd115": [ + "Ad45" + ], + "xd116": [ + "Ad46" + ], + "xd117": [ + "Ad47" + ], + "xd118": [ + "Ad48" + ], + "xd119": [ + "Ad49" + ], + "xd120": [ + "Ad5" + ], + "xd121": [ + "Ad50" + ], + "xd122": [ + "Ad51" + ], + "xd123": [ + "Ad6", + "SCCS8" + ], + "xd124": [ + "Ad7", + "SCCS12" + ], + "xd125": [ + "Ad8" + ], + "xd126": [ + "Ad9" + ], + "xd127": [ + "Ae1" + ], + "xd128": [ + "Ae10" + ], + "xd129": [ + "Ae11" + ], + "xd130": [ + "Ae12" + ], + "xd131": [ + "Ae13" + ], + "xd132": [ + "Ae14" + ], + "xd133": [ + "Ae15" + ], + "xd134": [ + "Ae16" + ], + "xd135": [ + "Ae17" + ], + "xd136": [ + "Ae18" + ], + "xd137": [ + "Ae19" + ], + "xd138": [ + "Ae2" + ], + "xd139": [ + "Ae20" + ], + "xd140": [ + "Ae21" + ], + "xd141": [ + "Ae22" + ], + "xd142": [ + "Ae23" + ], + "xd143": [ + "Ae24" + ], + "xd144": [ + "Ae25" + ], + "xd145": [ + "Ae26" + ], + "xd146": [ + "Ae27" + ], + "xd147": [ + "Ae28" + ], + "xd148": [ + "Ae29" + ], + "xd149": [ + "Ae3" + ], + "xd150": [ + "Ae30" + ], + "xd151": [ + "Ae31" + ], + "xd152": [ + "Ae32" + ], + "xd153": [ + "Ae33" + ], + "xd154": [ + "Ae34" + ], + "xd155": [ + "Ae35" + ], + "xd156": [ + "Ae36" + ], + "xd157": [ + "Ae37" + ], + "xd158": [ + "Ae38" + ], + "xd159": [ + "Ae39" + ], + "xd160": [ + "Ae4", + "SCCS14" + ], + "xd161": [ + "Ae40" + ], + "xd162": [ + "Ae41" + ], + "xd163": [ + "Ae42" + ], + "xd164": [ + "Ae43" + ], + "xd165": [ + "Ae44" + ], + "xd166": [ + "Ae45" + ], + "xd167": [ + "Ae46" + ], + "xd168": [ + "Ae47" + ], + "xd169": [ + "Ae48" + ], + "xd170": [ + "Ae49" + ], + "xd171": [ + "Ae5" + ], + "xd172": [ + "Ae50" + ], + "xd173": [ + "Ae51", + "SCCS15" + ], + "xd174": [ + "Ae52" + ], + "xd175": [ + "Ae53" + ], + "xd176": [ + "Ae54" + ], + "xd177": [ + "Ae55" + ], + "xd178": [ + "Ae56" + ], + "xd179": [ + "Ae57" + ], + "xd180": [ + "Ae58" + ], + "xd181": [ + "Ae59" + ], + "xd182": [ + "Ae6" + ], + "xd183": [ + "Ae7" + ], + "xd184": [ + "Ae8" + ], + "xd185": [ + "Ae9" + ], + "xd186": [ + "Af1", + "SCCS18" + ], + "xd187": [ + "Af10", + "SCCS17" + ], + "xd188": [ + "Af11" + ], + "xd189": [ + "Af12" + ], + "xd190": [ + "Af13" + ], + "xd191": [ + "Af14" + ], + "xd192": [ + "Af15" + ], + "xd193": [ + "Af16" + ], + "xd194": [ + "Af17" + ], + "xd195": [ + "Af18" + ], + "xd196": [ + "Af19" + ], + "xd197": [ + "Af2" + ], + "xd198": [ + "Af20" + ], + "xd199": [ + "Af21" + ], + "xd200": [ + "Af22" + ], + "xd201": [ + "Af23" + ], + "xd202": [ + "Af24" + ], + "xd203": [ + "Af25" + ], + "xd204": [ + "Af26" + ], + "xd205": [ + "Af27" + ], + "xd206": [ + "Af28" + ], + "xd207": [ + "Af29" + ], + "xd208": [ + "Af3", + "SCCS19" + ], + "xd209": [ + "Af30" + ], + "xd210": [ + "Af31" + ], + "xd211": [ + "Af32" + ], + "xd212": [ + "Af33" + ], + "xd213": [ + "Af34" + ], + "xd214": [ + "Af35" + ], + "xd215": [ + "Af36" + ], + "xd216": [ + "Af37" + ], + "xd217": [ + "Af38" + ], + "xd218": [ + "Af39" + ], + "xd219": [ + "Af4" + ], + "xd220": [ + "Af40" + ], + "xd221": [ + "Af41" + ], + "xd222": [ + "Af42" + ], + "xd223": [ + "Af43" + ], + "xd224": [ + "Af44" + ], + "xd225": [ + "Af45" + ], + "xd226": [ + "Af46" + ], + "xd227": [ + "Af47" + ], + "xd228": [ + "Af48" + ], + "xd229": [ + "Af49" + ], + "xd230": [ + "Af5", + "SCCS20" + ], + "xd231": [ + "Af50" + ], + "xd232": [ + "Af51" + ], + "xd233": [ + "Af52" + ], + "xd234": [ + "Af53" + ], + "xd235": [ + "Af54" + ], + "xd236": [ + "Af55" + ], + "xd237": [ + "Af56" + ], + "xd238": [ + "Af57" + ], + "xd239": [ + "Af58" + ], + "xd240": [ + "Af6" + ], + "xd241": [ + "Af7" + ], + "xd242": [ + "Af8" + ], + "xd243": [ + "Af9" + ], + "xd244": [ + "Ag1", + "SCCS22" + ], + "xd245": [ + "Ag10" + ], + "xd246": [ + "Ag11" + ], + "xd247": [ + "Ag12" + ], + "xd248": [ + "Ag13" + ], + "xd249": [ + "Ag14" + ], + "xd250": [ + "Ag15" + ], + "xd251": [ + "Ag16" + ], + "xd252": [ + "Ag17" + ], + "xd253": [ + "Ag18" + ], + "xd254": [ + "Ag19" + ], + "xd255": [ + "Ag2" + ], + "xd256": [ + "Ag20" + ], + "xd257": [ + "Ag21" + ], + "xd258": [ + "Ag22" + ], + "xd259": [ + "Ag23" + ], + "xd260": [ + "Ag24" + ], + "xd261": [ + "Ag25" + ], + "xd262": [ + "Ag26" + ], + "xd263": [ + "Ag27" + ], + "xd264": [ + "Ag28" + ], + "xd265": [ + "Ag29" + ], + "xd266": [ + "Ag3" + ], + "xd267": [ + "Ag30" + ], + "xd268": [ + "Ag31" + ], + "xd269": [ + "Ag32" + ], + "xd270": [ + "Ag33" + ], + "xd271": [ + "Ag34" + ], + "xd272": [ + "Ag35" + ], + "xd273": [ + "Ag36" + ], + "xd274": [ + "Ag37" + ], + "xd275": [ + "Ag38" + ], + "xd276": [ + "Ag39" + ], + "xd277": [ + "Ag4", + "SCCS23" + ], + "xd278": [ + "Ag40" + ], + "xd279": [ + "Ag41" + ], + "xd280": [ + "Ag42" + ], + "xd281": [ + "Ag43" + ], + "xd282": [ + "Ag44" + ], + "xd283": [ + "Ag45" + ], + "xd284": [ + "Ag46" + ], + "xd285": [ + "Ag47" + ], + "xd286": [ + "Ag48" + ], + "xd287": [ + "Ag49" + ], + "xd288": [ + "Ag5" + ], + "xd289": [ + "Ag50" + ], + "xd290": [ + "Ag51" + ], + "xd291": [ + "Ag52" + ], + "xd292": [ + "Ag53" + ], + "xd293": [ + "Ag54" + ], + "xd294": [ + "Ag6" + ], + "xd295": [ + "Ag7" + ], + "xd296": [ + "Ag8" + ], + "xd297": [ + "Ag9" + ], + "xd298": [ + "Ah1" + ], + "xd299": [ + "Ah10" + ], + "xd300": [ + "Ah11" + ], + "xd301": [ + "Ah12" + ], + "xd302": [ + "Ah13" + ], + "xd303": [ + "Ah14" + ], + "xd304": [ + "Ah15" + ], + "xd305": [ + "Ah16" + ], + "xd306": [ + "Ah17" + ], + "xd307": [ + "Ah18" + ], + "xd308": [ + "Ah19" + ], + "xd309": [ + "Ah2" + ], + "xd310": [ + "Ah20" + ], + "xd311": [ + "Ah21" + ], + "xd312": [ + "Ah22" + ], + "xd313": [ + "Ah23" + ], + "xd314": [ + "Ah24" + ], + "xd315": [ + "Ah25" + ], + "xd316": [ + "Ah26" + ], + "xd317": [ + "Ah27" + ], + "xd318": [ + "Ah28" + ], + "xd319": [ + "Ah29" + ], + "xd320": [ + "Ah3", + "SCCS16" + ], + "xd321": [ + "Ah30" + ], + "xd322": [ + "Ah31" + ], + "xd323": [ + "Ah32" + ], + "xd324": [ + "Ah33" + ], + "xd325": [ + "Ah34" + ], + "xd326": [ + "Ah35" + ], + "xd327": [ + "Ah36" + ], + "xd328": [ + "Ah37" + ], + "xd329": [ + "Ah38" + ], + "xd330": [ + "Ah39" + ], + "xd331": [ + "Ah4" + ], + "xd332": [ + "Ah5" + ], + "xd333": [ + "Ah6" + ], + "xd334": [ + "Ah7" + ], + "xd335": [ + "Ah8" + ], + "xd336": [ + "Ah9" + ], + "xd337": [ + "Ai1" + ], + "xd338": [ + "Ai10", + "SCCS30" + ], + "xd339": [ + "Ai11" + ], + "xd340": [ + "Ai12" + ], + "xd341": [ + "Ai13" + ], + "xd342": [ + "Ai14" + ], + "xd343": [ + "Ai15" + ], + "xd344": [ + "Ai16" + ], + "xd345": [ + "Ai17" + ], + "xd346": [ + "Ai18" + ], + "xd347": [ + "Ai19" + ], + "xd348": [ + "Ai2" + ], + "xd349": [ + "Ai20" + ], + "xd350": [ + "Ai21" + ], + "xd351": [ + "Ai22" + ], + "xd352": [ + "Ai23" + ], + "xd353": [ + "Ai24" + ], + "xd354": [ + "Ai25" + ], + "xd355": [ + "Ai26" + ], + "xd356": [ + "Ai27" + ], + "xd357": [ + "Ai28" + ], + "xd358": [ + "Ai29" + ], + "xd359": [ + "Ai3", + "SCCS28" + ], + "xd360": [ + "Ai30" + ], + "xd361": [ + "Ai31" + ], + "xd362": [ + "Ai32" + ], + "xd363": [ + "Ai33" + ], + "xd364": [ + "Ai34" + ], + "xd365": [ + "Ai35" + ], + "xd366": [ + "Ai36" + ], + "xd367": [ + "Ai37" + ], + "xd368": [ + "Ai38" + ], + "xd369": [ + "Ai39" + ], + "xd370": [ + "Ai4" + ], + "xd371": [ + "Ai40" + ], + "xd372": [ + "Ai41" + ], + "xd373": [ + "Ai42" + ], + "xd374": [ + "Ai43" + ], + "xd375": [ + "Ai44" + ], + "xd376": [ + "Ai45" + ], + "xd377": [ + "Ai46" + ], + "xd378": [ + "Ai47", + "SCCS32" + ], + "xd379": [ + "Ai5" + ], + "xd380": [ + "Ai6", + "SCCS31" + ], + "xd381": [ + "Ai7" + ], + "xd382": [ + "Ai8" + ], + "xd383": [ + "Ai9", + "SCCS27" + ], + "xd384": [ + "Aj1" + ], + "xd385": [ + "Aj10" + ], + "xd386": [ + "Aj11" + ], + "xd387": [ + "Aj12" + ], + "xd388": [ + "Aj13" + ], + "xd389": [ + "Aj14" + ], + "xd390": [ + "Aj15" + ], + "xd391": [ + "Aj16" + ], + "xd392": [ + "Aj17" + ], + "xd393": [ + "Aj18" + ], + "xd394": [ + "Aj19" + ], + "xd395": [ + "Aj2", + "SCCS34" + ], + "xd396": [ + "Aj20" + ], + "xd397": [ + "Aj21" + ], + "xd398": [ + "Aj22" + ], + "xd399": [ + "Aj23" + ], + "xd400": [ + "Aj24" + ], + "xd401": [ + "Aj25" + ], + "xd402": [ + "Aj26" + ], + "xd403": [ + "Aj27" + ], + "xd404": [ + "Aj28" + ], + "xd405": [ + "Aj29" + ], + "xd406": [ + "Aj3" + ], + "xd407": [ + "Aj30" + ], + "xd408": [ + "Aj31" + ], + "xd409": [ + "Aj4" + ], + "xd410": [ + "Aj5" + ], + "xd411": [ + "Aj6" + ], + "xd412": [ + "Aj7" + ], + "xd413": [ + "Aj8" + ], + "xd414": [ + "Aj9" + ], + "xd415": [ + "Ca1", + "SCCS35" + ], + "xd416": [ + "Ca10" + ], + "xd417": [ + "Ca11" + ], + "xd418": [ + "Ca12" + ], + "xd419": [ + "Ca13" + ], + "xd420": [ + "Ca14" + ], + "xd421": [ + "Ca15" + ], + "xd422": [ + "Ca16" + ], + "xd423": [ + "Ca17" + ], + "xd424": [ + "Ca18" + ], + "xd425": [ + "Ca19" + ], + "xd426": [ + "Ca2", + "SCCS36" + ], + "xd427": [ + "Ca20" + ], + "xd428": [ + "Ca21" + ], + "xd429": [ + "Ca22" + ], + "xd430": [ + "Ca23" + ], + "xd431": [ + "Ca24" + ], + "xd432": [ + "Ca25" + ], + "xd433": [ + "Ca26" + ], + "xd434": [ + "Ca27" + ], + "xd435": [ + "Ca28" + ], + "xd436": [ + "Ca29" + ], + "xd437": [ + "Ca3" + ], + "xd438": [ + "Ca30", + "SCCS33" + ], + "xd439": [ + "Ca31" + ], + "xd440": [ + "Ca32" + ], + "xd441": [ + "Ca33" + ], + "xd442": [ + "Ca34" + ], + "xd443": [ + "Ca35" + ], + "xd444": [ + "Ca36" + ], + "xd445": [ + "Ca37", + "SCCS38" + ], + "xd446": [ + "Ca38" + ], + "xd447": [ + "Ca39" + ], + "xd448": [ + "Ca4" + ], + "xd449": [ + "Ca40" + ], + "xd450": [ + "Ca41" + ], + "xd451": [ + "Ca42" + ], + "xd452": [ + "Ca43" + ], + "xd453": [ + "Ca5" + ], + "xd454": [ + "Ca6" + ], + "xd455": [ + "Ca7", + "SCCS37" + ], + "xd456": [ + "Ca8" + ], + "xd457": [ + "Ca9" + ], + "xd458": [ + "Cb1" + ], + "xd459": [ + "Cb10" + ], + "xd460": [ + "Cb11" + ], + "xd461": [ + "Cb12" + ], + "xd462": [ + "Cb13" + ], + "xd463": [ + "Cb14" + ], + "xd464": [ + "Cb15" + ], + "xd465": [ + "Cb16" + ], + "xd466": [ + "Cb17", + "SCCS29" + ], + "xd467": [ + "Cb18" + ], + "xd468": [ + "Cb19" + ], + "xd469": [ + "Cb2", + "SCCS21" + ], + "xd470": [ + "Cb20" + ], + "xd471": [ + "Cb21" + ], + "xd472": [ + "Cb22" + ], + "xd473": [ + "Cb23" + ], + "xd474": [ + "Cb24", + "SCCS25" + ], + "xd475": [ + "Cb25" + ], + "xd476": [ + "Cb26", + "SCCS26" + ], + "xd477": [ + "Cb27" + ], + "xd478": [ + "Cb28" + ], + "xd479": [ + "Cb29" + ], + "xd480": [ + "Cb3", + "SCCS24" + ], + "xd481": [ + "Cb4" + ], + "xd482": [ + "Cb5" + ], + "xd483": [ + "Cb6" + ], + "xd484": [ + "Cb7" + ], + "xd485": [ + "Cb8" + ], + "xd486": [ + "Cb9" + ], + "xd487": [ + "Cc1" + ], + "xd488": [ + "Cc10" + ], + "xd489": [ + "Cc11" + ], + "xd490": [ + "Cc12" + ], + "xd491": [ + "Cc13" + ], + "xd492": [ + "Cc14" + ], + "xd493": [ + "Cc15" + ], + "xd494": [ + "Cc16" + ], + "xd495": [ + "Cc17" + ], + "xd496": [ + "Cc18" + ], + "xd497": [ + "Cc19" + ], + "xd498": [ + "Cc2", + "SCCS40" + ], + "xd499": [ + "Cc20" + ], + "xd500": [ + "Cc3" + ], + "xd501": [ + "Cc4" + ], + "xd502": [ + "Cc5" + ], + "xd503": [ + "Cc6" + ], + "xd504": [ + "Cc7" + ], + "xd505": [ + "Cc8" + ], + "xd506": [ + "Cc9", + "SCCS41" + ], + "xd507": [ + "Cd1", + "SCCS39" + ], + "xd508": [ + "Cd10" + ], + "xd509": [ + "Cd11" + ], + "xd510": [ + "Cd12" + ], + "xd511": [ + "Cd13" + ], + "xd512": [ + "Cd14" + ], + "xd513": [ + "Cd15" + ], + "xd514": [ + "Cd16" + ], + "xd515": [ + "Cd17" + ], + "xd516": [ + "Cd18" + ], + "xd517": [ + "Cd19" + ], + "xd518": [ + "Cd2", + "SCCS43" + ], + "xd519": [ + "Cd20" + ], + "xd520": [ + "Cd21" + ], + "xd521": [ + "Cd3", + "SCCS42" + ], + "xd522": [ + "Cd4" + ], + "xd523": [ + "Cd5" + ], + "xd524": [ + "Cd6" + ], + "xd525": [ + "Cd7" + ], + "xd526": [ + "Cd8" + ], + "xd527": [ + "Cd9" + ], + "xd528": [ + "Ce1", + "SCCS48" + ], + "xd529": [ + "Ce2" + ], + "xd530": [ + "Ce3", + "SCCS49" + ], + "xd531": [ + "Ce4" + ], + "xd532": [ + "Ce5" + ], + "xd533": [ + "Ce6" + ], + "xd534": [ + "Ce7" + ], + "xd535": [ + "Ce8", + "SCCS50" + ], + "xd536": [ + "Cf1" + ], + "xd537": [ + "Cf2" + ], + "xd538": [ + "Cf3" + ], + "xd539": [ + "Cf4" + ], + "xd540": [ + "Cf5" + ], + "xd541": [ + "Cg1" + ], + "xd542": [ + "Cg2" + ], + "xd543": [ + "Cg3", + "SCCS51" + ], + "xd544": [ + "Cg4", + "SCCS52" + ], + "xd545": [ + "Cg5" + ], + "xd546": [ + "Ch1" + ], + "xd547": [ + "Ch10" + ], + "xd548": [ + "Ch11", + "SCCS54" + ], + "xd549": [ + "ch12" + ], + "xd550": [ + "ch13" + ], + "xd551": [ + "ch14" + ], + "xd552": [ + "ch15" + ], + "xd553": [ + "ch16" + ], + "xd554": [ + "ch17" + ], + "xd555": [ + "ch18" + ], + "xd556": [ + "ch19" + ], + "xd557": [ + "Ch2" + ], + "xd558": [ + "ch20" + ], + "xd559": [ + "ch21" + ], + "xd560": [ + "ch22" + ], + "xd561": [ + "ch23" + ], + "xd562": [ + "ch24" + ], + "xd563": [ + "ch25" + ], + "xd564": [ + "ch26" + ], + "xd565": [ + "ch27" + ], + "xd566": [ + "ch28" + ], + "xd567": [ + "Ch3" + ], + "xd568": [ + "Ch4" + ], + "xd569": [ + "Ch5" + ], + "xd570": [ + "Ch6" + ], + "xd571": [ + "Ch7" + ], + "xd572": [ + "Ch8" + ], + "xd573": [ + "Ch9" + ], + "xd574": [ + "Ci1" + ], + "xd575": [ + "Ci10", + "SCCS56" + ], + "xd576": [ + "Ci11", + "SCCS57" + ], + "xd577": [ + "Ci12", + "SCCS55" + ], + "xd578": [ + "Ci2" + ], + "xd579": [ + "Ci3" + ], + "xd580": [ + "Ci4" + ], + "xd581": [ + "Ci5", + "SCCS47" + ], + "xd582": [ + "Ci6" + ], + "xd583": [ + "Ci7" + ], + "xd584": [ + "Ci8" + ], + "xd585": [ + "Ci9" + ], + "xd586": [ + "Cj1" + ], + "xd587": [ + "Cj10" + ], + "xd588": [ + "Cj2", + "SCCS46" + ], + "xd589": [ + "Cj3", + "SCCS44" + ], + "xd590": [ + "Cj4", + "SCCS45" + ], + "xd591": [ + "Cj5" + ], + "xd592": [ + "Cj6" + ], + "xd593": [ + "Cj7" + ], + "xd594": [ + "Cj8" + ], + "xd595": [ + "Cj9" + ], + "xd596": [ + "Ea1" + ], + "xd597": [ + "Ea10" + ], + "xd598": [ + "Ea11" + ], + "xd599": [ + "Ea12" + ], + "xd600": [ + "Ea13", + "SCCS59" + ], + "xd601": [ + "Ea2" + ], + "xd602": [ + "Ea3" + ], + "xd603": [ + "Ea4" + ], + "xd604": [ + "Ea5" + ], + "xd605": [ + "Ea6", + "SCCS58" + ], + "xd606": [ + "Ea7" + ], + "xd607": [ + "Ea8" + ], + "xd608": [ + "Ea9" + ], + "xd609": [ + "Eb1", + "SCCS65" + ], + "xd610": [ + "Eb2" + ], + "xd611": [ + "Eb3", + "SCCS66" + ], + "xd612": [ + "Eb4" + ], + "xd613": [ + "Eb5" + ], + "xd614": [ + "Eb6" + ], + "xd615": [ + "Eb7" + ], + "xd616": [ + "Eb8" + ], + "xd617": [ + "B25", + "Ec1", + "SCCS119" + ], + "xd618": [ + "Ec10" + ], + "xd619": [ + "Ec11" + ], + "xd620": [ + "B27", + "ec12" + ], + "xd621": [ + "ec13" + ], + "xd622": [ + "B28", + "ec14" + ], + "xd623": [ + "ec15" + ], + "xd624": [ + "ec16" + ], + "xd625": [ + "ec17" + ], + "xd626": [ + "ec18" + ], + "xd627": [ + "ec19" + ], + "xd628": [ + "Ec2" + ], + "xd629": [ + "ec20" + ], + "xd630": [ + "ec21" + ], + "xd631": [ + "Ec3", + "SCCS121" + ], + "xd632": [ + "Ec4", + "SCCS53" + ], + "xd633": [ + "Ec5" + ], + "xd634": [ + "B26", + "Ec6", + "SCCS120" + ], + "xd635": [ + "B22", + "Ec7", + "SCCS118" + ], + "xd636": [ + "B24", + "Ec8" + ], + "xd637": [ + "Ec9" + ], + "xd638": [ + "Ed1", + "SCCS116" + ], + "xd639": [ + "Ed10" + ], + "xd640": [ + "Ed13" + ], + "xd641": [ + "Ed14" + ], + "xd642": [ + "Ed15a" + ], + "xd643": [ + "Ed15b", + "SCCS114" + ], + "xd644": [ + "Ed16" + ], + "xd645": [ + "Ed2", + "SCCS67" + ], + "xd646": [ + "Ed3", + "SCCS115" + ], + "xd647": [ + "Ed4" + ], + "xd648": [ + "Ed5", + "SCCS117" + ], + "xd649": [ + "Ed6" + ], + "xd650": [ + "Ed7" + ], + "xd651": [ + "Ed8" + ], + "xd652": [ + "Ed9" + ], + "xd653": [ + "Ee1" + ], + "xd654": [ + "Ee2", + "SCCS64" + ], + "xd655": [ + "Ee3", + "SCCS68" + ], + "xd656": [ + "Ee4" + ], + "xd657": [ + "Ee5" + ], + "xd658": [ + "Ee6" + ], + "xd659": [ + "Ee7" + ], + "xd660": [ + "Ee8" + ], + "xd661": [ + "Ef1", + "SCCS62" + ], + "xd662": [ + "Ef10" + ], + "xd663": [ + "Ef11", + "SCCS63" + ], + "xd664": [ + "Ef2" + ], + "xd665": [ + "Ef3" + ], + "xd666": [ + "Ef4" + ], + "xd667": [ + "Ef5" + ], + "xd668": [ + "Ef6" + ], + "xd669": [ + "Ef7" + ], + "xd670": [ + "Ef8" + ], + "xd671": [ + "Ef9" + ], + "xd672": [ + "B15", + "Eg1" + ], + "xd673": [ + "Eg10" + ], + "xd674": [ + "Eg11" + ], + "xd675": [ + "Eg12" + ], + "xd676": [ + "Eg13" + ], + "xd677": [ + "Eg14" + ], + "xd678": [ + "Eg2" + ], + "xd679": [ + "Eg3", + "SCCS60" + ], + "xd680": [ + "Eg4", + "SCCS61" + ], + "xd681": [ + "Eg5" + ], + "xd682": [ + "Eg6" + ], + "xd683": [ + "Eg7" + ], + "xd684": [ + "Eg8" + ], + "xd685": [ + "Eg9" + ], + "xd686": [ + "B8", + "Eh1", + "SCCS79" + ], + "xd687": [ + "Eh10" + ], + "xd688": [ + "Eh2" + ], + "xd689": [ + "Eh3", + "SCCS81" + ], + "xd690": [ + "B10", + "Eh4", + "SCCS80" + ], + "xd691": [ + "Eh5", + "SCCS78" + ], + "xd692": [ + "Eh6" + ], + "xd693": [ + "Eh7" + ], + "xd694": [ + "Eh8" + ], + "xd695": [ + "Eh9" + ], + "xd696": [ + "Ei1", + "SCCS69" + ], + "xd697": [ + "Ei10" + ], + "xd698": [ + "Ei11" + ], + "xd699": [ + "Ei12" + ], + "xd700": [ + "Ei13" + ], + "xd701": [ + "Ei14" + ], + "xd702": [ + "Ei15" + ], + "xd703": [ + "Ei16" + ], + "xd704": [ + "Ei17" + ], + "xd705": [ + "Ei18" + ], + "xd706": [ + "Ei19" + ], + "xd707": [ + "Ei2" + ], + "xd708": [ + "Ei20" + ], + "xd709": [ + "Ei3", + "SCCS71" + ], + "xd710": [ + "Ei4", + "SCCS70" + ], + "xd711": [ + "Ei5" + ], + "xd712": [ + "Ei6" + ], + "xd713": [ + "Ei7" + ], + "xd714": [ + "Ei8" + ], + "xd715": [ + "Ei9" + ], + "xd716": [ + "Ej1", + "SCCS72" + ], + "xd717": [ + "Ej10", + "SCCS74" + ], + "xd718": [ + "Ej11" + ], + "xd719": [ + "Ej12" + ], + "xd720": [ + "Ej13" + ], + "xd721": [ + "Ej14" + ], + "xd722": [ + "Ej15", + "SCCS75" + ], + "xd723": [ + "Ej16", + "SCCS82" + ], + "xd724": [ + "Ej2" + ], + "xd725": [ + "B9", + "Ej3", + "SCCS77" + ], + "xd726": [ + "Ej4", + "SCCS73" + ], + "xd727": [ + "Ej5" + ], + "xd728": [ + "Ej6" + ], + "xd729": [ + "Ej7" + ], + "xd730": [ + "Ej8" + ], + "xd731": [ + "Ej9", + "SCCS76" + ], + "xd732": [ + "Ia1", + "SCCS113" + ], + "xd733": [ + "Ia10" + ], + "xd734": [ + "Ia11" + ], + "xd735": [ + "Ia12" + ], + "xd736": [ + "Ia13", + "SCCS86" + ], + "xd737": [ + "Ia14" + ], + "xd738": [ + "Ia15" + ], + "xd739": [ + "Ia16" + ], + "xd740": [ + "Ia17" + ], + "xd741": [ + "Ia18" + ], + "xd742": [ + "Ia2" + ], + "xd743": [ + "Ia3", + "SCCS112" + ], + "xd744": [ + "Ia4" + ], + "xd745": [ + "Ia5" + ], + "xd746": [ + "Ia6" + ], + "xd747": [ + "Ia7" + ], + "xd748": [ + "Ia8" + ], + "xd749": [ + "Ia9" + ], + "xd750": [ + "Ib1", + "SCCS85" + ], + "xd751": [ + "Ib2", + "SCCS83" + ], + "xd752": [ + "Ib3", + "SCCS84" + ], + "xd753": [ + "Ib4" + ], + "xd754": [ + "Ib5" + ], + "xd755": [ + "Ib6" + ], + "xd756": [ + "Ib7" + ], + "xd757": [ + "B3", + "Ib8" + ], + "xd758": [ + "Ib9" + ], + "xd759": [ + "Ic1" + ], + "xd760": [ + "Ic10", + "SCCS88" + ], + "xd761": [ + "Ic11" + ], + "xd762": [ + "Ic12" + ], + "xd763": [ + "Ic13" + ], + "xd764": [ + "Ic2", + "SCCS89" + ], + "xd765": [ + "Ic3" + ], + "xd766": [ + "Ic4" + ], + "xd767": [ + "Ic5", + "SCCS87" + ], + "xd768": [ + "Ic6" + ], + "xd769": [ + "Ic7" + ], + "xd770": [ + "Ic8" + ], + "xd771": [ + "Ic9" + ], + "xd772": [ + "B124", + "Id1", + "SCCS91" + ], + "xd773": [ + "B109", + "Id10" + ], + "xd774": [ + "B87", + "Id11" + ], + "xd775": [ + "B94", + "Id12" + ], + "xd776": [ + "B97", + "Id13" + ], + "xd777": [ + "B88", + "Id2" + ], + "xd778": [ + "B95", + "Id3", + "SCCS90" + ], + "xd779": [ + "B121", + "Id4" + ], + "xd780": [ + "B106", + "Id5" + ], + "xd781": [ + "B90", + "Id6" + ], + "xd782": [ + "Id7" + ], + "xd783": [ + "B137", + "Id8" + ], + "xd784": [ + "B130", + "Id9" + ], + "xd785": [ + "Ie1", + "SCCS94" + ], + "xd786": [ + "Ie10" + ], + "xd787": [ + "Ie11" + ], + "xd788": [ + "Ie12", + "SCCS95" + ], + "xd789": [ + "Ie13" + ], + "xd790": [ + "Ie14" + ], + "xd791": [ + "Ie15" + ], + "xd792": [ + "Ie16" + ], + "xd793": [ + "Ie17" + ], + "xd794": [ + "Ie18", + "SCCS93" + ], + "xd795": [ + "Ie19" + ], + "xd796": [ + "Ie2" + ], + "xd797": [ + "Ie20" + ], + "xd798": [ + "Ie21" + ], + "xd799": [ + "Ie22" + ], + "xd800": [ + "Ie23" + ], + "xd801": [ + "Ie24" + ], + "xd802": [ + "Ie25" + ], + "xd803": [ + "Ie26" + ], + "xd804": [ + "Ie27" + ], + "xd805": [ + "Ie28" + ], + "xd806": [ + "Ie29" + ], + "xd807": [ + "Ie3" + ], + "xd808": [ + "Ie30" + ], + "xd809": [ + "Ie31" + ], + "xd810": [ + "Ie32" + ], + "xd811": [ + "Ie33" + ], + "xd812": [ + "Ie34" + ], + "xd813": [ + "Ie35" + ], + "xd814": [ + "Ie36" + ], + "xd815": [ + "Ie37" + ], + "xd816": [ + "Ie38" + ], + "xd817": [ + "Ie39" + ], + "xd818": [ + "Ie4" + ], + "xd819": [ + "Ie5" + ], + "xd820": [ + "Ie6" + ], + "xd821": [ + "Ie7" + ], + "xd822": [ + "Ie8" + ], + "xd823": [ + "Ie9", + "SCCS92" + ], + "xd824": [ + "If1", + "SCCS111" + ], + "xd825": [ + "If10" + ], + "xd826": [ + "If11" + ], + "xd827": [ + "If12" + ], + "xd828": [ + "If13" + ], + "xd829": [ + "If14", + "SCCS107" + ], + "xd830": [ + "If15" + ], + "xd831": [ + "If16" + ], + "xd832": [ + "If17", + "SCCS108" + ], + "xd833": [ + "If2", + "SCCS109" + ], + "xd834": [ + "If3" + ], + "xd835": [ + "If4" + ], + "xd836": [ + "If5" + ], + "xd837": [ + "If6", + "SCCS110" + ], + "xd838": [ + "If7" + ], + "xd839": [ + "If8" + ], + "xd840": [ + "If9" + ], + "xd841": [ + "Ig1", + "SCCS99" + ], + "xd842": [ + "Ig10" + ], + "xd843": [ + "Ig11" + ], + "xd844": [ + "Ig12" + ], + "xd845": [ + "Ig13" + ], + "xd846": [ + "Ig14" + ], + "xd847": [ + "Ig15" + ], + "xd848": [ + "Ig16" + ], + "xd849": [ + "Ig17" + ], + "xd850": [ + "Ig18" + ], + "xd851": [ + "Ig19" + ], + "xd852": [ + "Ig2", + "SCCS98" + ], + "xd853": [ + "Ig20" + ], + "xd854": [ + "Ig21" + ], + "xd855": [ + "Ig3" + ], + "xd856": [ + "Ig4", + "SCCS97" + ], + "xd857": [ + "Ig5" + ], + "xd858": [ + "Ig6" + ], + "xd859": [ + "Ig7" + ], + "xd860": [ + "Ig8" + ], + "xd861": [ + "Ig9", + "SCCS96" + ], + "xd862": [ + "Ih1" + ], + "xd863": [ + "Ih10" + ], + "xd864": [ + "Ih11" + ], + "xd865": [ + "Ih12" + ], + "xd866": [ + "Ih13" + ], + "xd867": [ + "Ih14", + "SCCS102" + ], + "xd868": [ + "Ih2" + ], + "xd869": [ + "Ih3", + "SCCS101" + ], + "xd870": [ + "Ih4" + ], + "xd871": [ + "Ih5", + "SCCS103" + ], + "xd872": [ + "Ih6" + ], + "xd873": [ + "Ih7" + ], + "xd874": [ + "Ih8" + ], + "xd875": [ + "Ih9" + ], + "xd876": [ + "Ii1" + ], + "xd877": [ + "Ii10" + ], + "xd878": [ + "Ii12" + ], + "xd879": [ + "Ii13" + ], + "xd880": [ + "Ii14", + "SCCS106" + ], + "xd881": [ + "Ii2", + "SCCS100" + ], + "xd882": [ + "Ii3" + ], + "xd883": [ + "Ii4" + ], + "xd884": [ + "Ii5" + ], + "xd885": [ + "Ii6" + ], + "xd886": [ + "Ii7" + ], + "xd887": [ + "Ii8" + ], + "xd888": [ + "Ii9" + ], + "xd889": [ + "Ij1" + ], + "xd890": [ + "Ij10" + ], + "xd891": [ + "Ij2", + "SCCS104" + ], + "xd892": [ + "Ij3", + "SCCS105" + ], + "xd893": [ + "Ij4" + ], + "xd894": [ + "Ij5" + ], + "xd895": [ + "Ij6" + ], + "xd896": [ + "Ij7" + ], + "xd897": [ + "Ij8" + ], + "xd898": [ + "Ij9" + ], + "xd900": [ + "B2" + ], + "xd901": [ + "B4" + ], + "xd902": [ + "B5" + ], + "xd903": [ + "B6" + ], + "xd904": [ + "B7" + ], + "xd905": [ + "B11" + ], + "xd906": [ + "B12" + ], + "xd907": [ + "B13" + ], + "xd908": [ + "B14" + ], + "xd909": [ + "B16" + ], + "xd910": [ + "B17" + ], + "xd911": [ + "B18" + ], + "xd912": [ + "B19" + ], + "xd913": [ + "B20" + ], + "xd914": [ + "B21" + ], + "xd915": [ + "B23" + ], + "xd916": [ + "B37" + ], + "xd917": [ + "B40" + ], + "xd918": [ + "B44" + ], + "xd919": [ + "B46" + ], + "xd920": [ + "B47" + ], + "xd921": [ + "B49" + ], + "xd922": [ + "B52" + ], + "xd923": [ + "B60" + ], + "xd924": [ + "B61" + ], + "xd925": [ + "B62" + ], + "xd926": [ + "B63" + ], + "xd927": [ + "B64" + ], + "xd928": [ + "B66" + ], + "xd929": [ + "B67" + ], + "xd930": [ + "B68" + ], + "xd931": [ + "B71" + ], + "xd932": [ + "B74" + ], + "xd933": [ + "B75" + ], + "xd934": [ + "B76" + ], + "xd935": [ + "B77" + ], + "xd936": [ + "B78" + ], + "xd937": [ + "B82" + ], + "xd938": [ + "B83" + ], + "xd939": [ + "B84" + ], + "xd940": [ + "B85" + ], + "xd941": [ + "B86" + ], + "xd942": [ + "B89" + ], + "xd943": [ + "B91" + ], + "xd944": [ + "B92" + ], + "xd945": [ + "B93" + ], + "xd946": [ + "B96" + ], + "xd947": [ + "B98" + ], + "xd948": [ + "B99" + ], + "xd949": [ + "B100" + ], + "xd950": [ + "B101" + ], + "xd951": [ + "B102" + ], + "xd952": [ + "B103" + ], + "xd953": [ + "B104" + ], + "xd954": [ + "B105" + ], + "xd955": [ + "B107" + ], + "xd956": [ + "B108" + ], + "xd957": [ + "B110" + ], + "xd958": [ + "B111" + ], + "xd959": [ + "B112" + ], + "xd960": [ + "B113" + ], + "xd961": [ + "B114" + ], + "xd962": [ + "B115" + ], + "xd963": [ + "B116" + ], + "xd964": [ + "B117" + ], + "xd965": [ + "B118" + ], + "xd966": [ + "B119" + ], + "xd967": [ + "B120" + ], + "xd968": [ + "B122" + ], + "xd969": [ + "B123" + ], + "xd970": [ + "B125" + ], + "xd971": [ + "B126" + ], + "xd972": [ + "B127" + ], + "xd973": [ + "B128" + ], + "xd974": [ + "B129" + ], + "xd975": [ + "B131" + ], + "xd976": [ + "B132" + ], + "xd977": [ + "B133" + ], + "xd978": [ + "B134" + ], + "xd979": [ + "B135" + ], + "xd980": [ + "B136" + ], + "xd983": [ + "B168" + ], + "xd985": [ + "B190" + ], + "xd988": [ + "B203" + ], + "xd989": [ + "B205" + ], + "xd991": [ + "B209" + ], + "xd992": [ + "B212", + "Nd26" + ], + "xd993": [ + "B219", + "WNAI71" + ], + "xd994": [ + "B223" + ], + "xd995": [ + "B215", + "B224", + "Nd39", + "WNAI121" + ], + "xd997": [ + "B272" + ], + "xd998": [ + "B293", + "WNAI6" + ], + "xd999": [ + "B294" + ], + "xd1000": [ + "B296" + ], + "xd1001": [ + "B322", + "WNAI99" + ], + "xd1003": [ + "B335" + ], + "xd1004": [ + "B339" + ], + "xd1005": [ + "B340" + ], + "xd1006": [ + "B341" + ], + "xd1007": [ + "B350" + ], + "xd1008": [ + "B351" + ], + "xd1009": [ + "B352" + ], + "xd1010": [ + "B354" + ], + "xd1011": [ + "B360" + ], + "xd1012": [ + "B363" + ], + "xd1013": [ + "B364" + ], + "xd1014": [ + "B369" + ], + "xd1015": [ + "B370" + ], + "xd1016": [ + "B371" + ], + "xd1017": [ + "B373" + ], + "xd1018": [ + "B375" + ], + "xd1019": [ + "B378" + ], + "xd1021": [ + "B380" + ], + "xd1022": [ + "B381", + "Na3", + "SCCS124" + ], + "xd1023": [ + "B382" + ], + "xd1024": [ + "B383" + ], + "xd1025": [ + "B384", + "Na22" + ], + "xd1026": [ + "B359", + "Na1" + ], + "xd1027": [ + "B297", + "Na10" + ], + "xd1028": [ + "B379", + "Na11" + ], + "xd1029": [ + "B377", + "Na12" + ], + "xd1030": [ + "B386", + "Na13" + ], + "xd1031": [ + "B390", + "Na14" + ], + "xd1032": [ + "B361", + "Na15" + ], + "xd1033": [ + "B358", + "Na16" + ], + "xd1034": [ + "B345", + "Na17", + "SCCS128" + ], + "xd1035": [ + "B349", + "Na19", + "WNAI93", + "WNAI94" + ], + "xd1036": [ + "B389", + "Na2" + ], + "xd1037": [ + "B356", + "Na20" + ], + "xd1038": [ + "B374", + "Na21" + ], + "xd1039": [ + "B372", + "Na23" + ], + "xd1040": [ + "B388", + "Na24" + ], + "xd1041": [ + "B385", + "Na25" + ], + "xd1042": [ + "B362", + "Na26" + ], + "xd1043": [ + "B347", + "Na27" + ], + "xd1044": [ + "B343", + "Na28" + ], + "xd1045": [ + "B344", + "Na29" + ], + "xd1046": [ + "B355", + "Na30" + ], + "xd1047": [ + "Na31" + ], + "xd1048": [ + "B342", + "Na32", + "SCCS125" + ], + "xd1049": [ + "B332", + "Na33", + "SCCS127" + ], + "xd1050": [ + "B334", + "Na34" + ], + "xd1051": [ + "B337", + "Na35" + ], + "xd1052": [ + "Na36" + ], + "xd1053": [ + "B331", + "Na37" + ], + "xd1054": [ + "B328", + "Na38" + ], + "xd1055": [ + "B327", + "Na39" + ], + "xd1056": [ + "B346", + "Na4", + "SCCS129" + ], + "xd1057": [ + "Na40" + ], + "xd1058": [ + "B329", + "Na41", + "SCCS126" + ], + "xd1059": [ + "Na42" + ], + "xd1060": [ + "B387", + "Na43" + ], + "xd1061": [ + "Na44" + ], + "xd1062": [ + "B338", + "Na45" + ], + "xd1063": [ + "B365", + "Na5" + ], + "xd1064": [ + "B299", + "Na6" + ], + "xd1065": [ + "B353", + "Na7" + ], + "xd1066": [ + "B357", + "Na8", + "SCCS122" + ], + "xd1067": [ + "B298", + "Na9", + "SCCS123" + ], + "xd1068": [ + "B290", + "Nb1", + "SCCS131", + "WNAI3" + ], + "xd1069": [ + "B336", + "Nb10" + ], + "xd1070": [ + "B273", + "Nb11", + "WNAI12" + ], + "xd1071": [ + "Nb12", + "WNAI14" + ], + "xd1072": [ + "B268", + "Nb13", + "WNAI16" + ], + "xd1073": [ + "B282", + "Nb14" + ], + "xd1074": [ + "B277", + "Nb15", + "WNAI21" + ], + "xd1075": [ + "B285", + "Nb16", + "WNAI22" + ], + "xd1076": [ + "B270", + "Nb17", + "WNAI25" + ], + "xd1077": [ + "B284", + "Nb18", + "WNAI26" + ], + "xd1078": [ + "B274", + "Nb19", + "WNAI27" + ], + "xd1079": [ + "B271", + "Nb2", + "SCCS133", + "WNAI23" + ], + "xd1080": [ + "B281", + "Nb20", + "WNAI28" + ], + "xd1081": [ + "B275", + "Nb21", + "WNAI31" + ], + "xd1082": [ + "B292", + "Nb22", + "WNAI2" + ], + "xd1083": [ + "B283", + "Nb23", + "WNAI9" + ], + "xd1084": [ + "B286", + "Nb24", + "WNAI13" + ], + "xd1085": [ + "B278", + "Nb25", + "WNAI24" + ], + "xd1086": [ + "B280", + "Nb26", + "WNAI17" + ], + "xd1087": [ + "B279", + "Nb27", + "WNAI19" + ], + "xd1088": [ + "B269", + "Nb28", + "WNAI29" + ], + "xd1089": [ + "Nb29", + "WNAI30" + ], + "xd1090": [ + "B288", + "Nb3", + "WNAI10" + ], + "xd1091": [ + "B176", + "Nb30" + ], + "xd1092": [ + "B181", + "Nb31", + "WNAI32" + ], + "xd1093": [ + "B179", + "Nb32", + "WNAI44", + "WNAI45" + ], + "xd1094": [ + "B162", + "Nb33", + "WNAI46" + ], + "xd1095": [ + "B182", + "Nb34", + "WNAI37" + ], + "xd1096": [ + "B180", + "Nb35", + "WNAI38" + ], + "xd1097": [ + "B184", + "Nb36", + "WNAI39" + ], + "xd1098": [ + "B167", + "Nb37" + ], + "xd1099": [ + "B169", + "Nb38", + "WNAI41" + ], + "xd1100": [ + "B166", + "Nb39", + "WNAI40" + ], + "xd1101": [ + "B186", + "Nb4", + "SCCS134", + "WNAI36" + ], + "xd1102": [ + "B295", + "Nb5", + "SCCS130" + ], + "xd1103": [ + "B178", + "Nb6", + "WNAI35" + ], + "xd1104": [ + "B289", + "Nb7", + "WNAI5" + ], + "xd1105": [ + "B287", + "Nb8", + "WNAI7" + ], + "xd1106": [ + "B291", + "Nb9", + "SCCS132", + "WNAI11" + ], + "xd1107": [ + "B153", + "Nc1", + "WNAI50" + ], + "xd1108": [ + "B187", + "Nc10", + "WNAI51", + "WNAI52" + ], + "xd1109": [ + "B174", + "Nc11", + "WNAI62" + ], + "xd1110": [ + "B185", + "Nc12", + "WNAI56" + ], + "xd1111": [ + "B163", + "Nc13", + "WNAI57", + "WNAI58", + "WNAI59" + ], + "xd1112": [ + "B160", + "Nc14", + "WNAI47", + "WNAI48", + "WNAI49" + ], + "xd1113": [ + "B177", + "Nc15", + "WNAI60" + ], + "xd1114": [ + "Nc16" + ], + "xd1115": [ + "B173", + "Nc17", + "WNAI63" + ], + "xd1116": [ + "B158", + "B159", + "Nc18", + "SCCS135", + "WNAI64" + ], + "xd1117": [ + "Nc19", + "WNAI65" + ], + "xd1118": [ + "B152", + "Nc2", + "WNAI78" + ], + "xd1119": [ + "B172", + "Nc20", + "WNAI66" + ], + "xd1120": [ + "B170", + "Nc21" + ], + "xd1121": [ + "B155", + "Nc22", + "WNAI67" + ], + "xd1122": [ + "B157", + "Nc23", + "WNAI72" + ], + "xd1123": [ + "B148", + "Nc24", + "SCCS136", + "WNAI76", + "WNAI77" + ], + "xd1124": [ + "B151", + "Nc25", + "WNAI75" + ], + "xd1125": [ + "B164", + "Nc26", + "WNAI80" + ], + "xd1126": [ + "B199", + "Nc27", + "WNAI79" + ], + "xd1127": [ + "B161", + "Nc28" + ], + "xd1128": [ + "B156", + "Nc29", + "WNAI81" + ], + "xd1129": [ + "B154", + "Nc3", + "WNAI73" + ], + "xd1130": [ + "B149", + "Nc30", + "WNAI84" + ], + "xd1131": [ + "B144", + "Nc31", + "WNAI85" + ], + "xd1132": [ + "B145", + "Nc32", + "WNAI83" + ], + "xd1133": [ + "B150", + "Nc33", + "WNAI82" + ], + "xd1134": [ + "B146", + "Nc34", + "WNAI91" + ], + "xd1135": [ + "B183", + "Nc4", + "WNAI53" + ], + "xd1136": [ + "B175", + "Nc5", + "WNAI69" + ], + "xd1137": [ + "B147", + "Nc6", + "WNAI89", + "WNAI90" + ], + "xd1138": [ + "B171", + "Nc7", + "WNAI61" + ], + "xd1139": [ + "B189", + "Nc8", + "SCCS138", + "WNAI112" + ], + "xd1140": [ + "B188", + "Nc9", + "WNAI113" + ], + "xd1141": [ + "B315", + "Nd1", + "WNAI111" + ], + "xd1142": [ + "B325", + "Nd10", + "WNAI98" + ], + "xd1143": [ + "B333", + "Nd11", + "WNAI96" + ], + "xd1144": [ + "B330", + "Nd12", + "WNAI105" + ], + "xd1145": [ + "B326", + "Nd13", + "WNAI104" + ], + "xd1146": [ + "B320", + "Nd14", + "WNAI103" + ], + "xd1147": [ + "B321", + "Nd15" + ], + "xd1148": [ + "B317", + "Nd16", + "WNAI102" + ], + "xd1149": [ + "B318", + "Nd17" + ], + "xd1150": [ + "B319", + "Nd18", + "WNAI110" + ], + "xd1151": [ + "B316", + "Nd19", + "WNAI108" + ], + "xd1152": [ + "B222", + "Nd2", + "WNAI131" + ], + "xd1153": [ + "B324", + "Nd20", + "WNAI107" + ], + "xd1154": [ + "Nd21" + ], + "xd1155": [ + "B231", + "Nd22", + "SCCS137", + "WNAI114" + ], + "xd1156": [ + "Nd23" + ], + "xd1157": [ + "B226", + "Nd24", + "WNAI115" + ], + "xd1158": [ + "Nd25" + ], + "xd1160": [ + "B208", + "Nd27", + "WNAI116" + ], + "xd1161": [ + "B210", + "Nd28" + ], + "xd1162": [ + "B206", + "B211", + "Nd29" + ], + "xd1163": [ + "Nd3", + "SCCS150", + "WNAI136" + ], + "xd1164": [ + "B202", + "Nd30", + "WNAI117" + ], + "xd1165": [ + "B197", + "Nd31" + ], + "xd1166": [ + "B192", + "B195", + "B200", + "Nd32", + "WNAI118" + ], + "xd1167": [ + "Nd33" + ], + "xd1168": [ + "Nd34" + ], + "xd1169": [ + "B218", + "Nd35", + "WNAI120" + ], + "xd1170": [ + "B233", + "Nd36" + ], + "xd1171": [ + "B217", + "Nd37" + ], + "xd1172": [ + "Nd38" + ], + "xd1174": [ + "B323", + "Nd4", + "WNAI100" + ], + "xd1175": [ + "B221", + "Nd40" + ], + "xd1176": [ + "B228", + "Nd41", + "WNAI122" + ], + "xd1177": [ + "Nd42" + ], + "xd1178": [ + "B216", + "Nd43", + "WNAI123" + ], + "xd1179": [ + "Nd44" + ], + "xd1180": [ + "B229", + "Nd45", + "WNAI125" + ], + "xd1181": [ + "B232", + "Nd47" + ], + "xd1182": [ + "B207", + "Nd46", + "WNAI126" + ], + "xd1183": [ + "B214", + "Nd48", + "WNAI124" + ], + "xd1184": [ + "B201", + "Nd49" + ], + "xd1185": [ + "B213", + "Nd5", + "WNAI127" + ], + "xd1186": [ + "Nd50" + ], + "xd1187": [ + "Nd51" + ], + "xd1188": [ + "Nd52", + "WNAI132" + ], + "xd1189": [ + "B204", + "Nd53", + "Nd55", + "WNAI133" + ], + "xd1190": [ + "Nd54", + "WNAI135" + ], + "xd1192": [ + "Nd56", + "WNAI134" + ], + "xd1193": [ + "Nd57" + ], + "xd1194": [ + "B230", + "Nd58", + "WNAI129" + ], + "xd1195": [ + "Nd59" + ], + "xd1196": [ + "B225", + "Nd6", + "WNAI119" + ], + "xd1197": [ + "Nd60" + ], + "xd1198": [ + "Nd61" + ], + "xd1199": [ + "B234", + "Nd62", + "WNAI130" + ], + "xd1200": [ + "B252", + "Nd63" + ], + "xd1201": [ + "B227", + "Nd64", + "WNAI128" + ], + "xd1202": [ + "B198", + "Nd65", + "WNAI137" + ], + "xd1203": [ + "B196", + "Nd66", + "WNAI138", + "WNAI139" + ], + "xd1204": [ + "Nd67" + ], + "xd1205": [ + "B250", + "Nd7", + "SCCS139", + "WNAI106" + ], + "xd1206": [ + "B348", + "Nd8", + "WNAI95" + ], + "xd1207": [ + "B276", + "Nd9", + "WNAI97" + ], + "xd1208": [ + "B253", + "Ne1", + "SCCS140" + ], + "xd1209": [ + "Ne10" + ], + "xd1210": [ + "B257", + "Ne11" + ], + "xd1211": [ + "B256", + "Ne12" + ], + "xd1212": [ + "B259", + "Ne13" + ], + "xd1213": [ + "B254", + "Ne14" + ], + "xd1214": [ + "Ne15", + "SCCS141" + ], + "xd1215": [ + "B193", + "Ne16" + ], + "xd1216": [ + "B243", + "Ne17" + ], + "xd1217": [ + "B255", + "Ne18" + ], + "xd1218": [ + "B258", + "Ne19" + ], + "xd1219": [ + "B244", + "Ne2" + ], + "xd1220": [ + "Ne20" + ], + "xd1221": [ + "B194", + "Ne21" + ], + "xd1222": [ + "B241", + "Ne3", + "SCCS147" + ], + "xd1223": [ + "B248", + "Ne4" + ], + "xd1224": [ + "B245", + "Ne5" + ], + "xd1225": [ + "Ne6" + ], + "xd1226": [ + "B260", + "Ne7" + ], + "xd1227": [ + "B249", + "Ne8" + ], + "xd1228": [ + "B246", + "Ne9" + ], + "xd1230": [ + "Nf10" + ], + "xd1231": [ + "Nf11" + ], + "xd1232": [ + "Nf12" + ], + "xd1233": [ + "Nf13" + ], + "xd1234": [ + "Nf14" + ], + "xd1235": [ + "Nf15" + ], + "xd1236": [ + "Nf2" + ], + "xd1237": [ + "Nf3", + "SCCS143" + ], + "xd1238": [ + "Nf4" + ], + "xd1239": [ + "Nf5" + ], + "xd1240": [ + "Nf6", + "SCCS142" + ], + "xd1241": [ + "Nf7" + ], + "xd1242": [ + "Nf8" + ], + "xd1243": [ + "Nf9" + ], + "xd1244": [ + "Ng1", + "SCCS144" + ], + "xd1245": [ + "Ng10" + ], + "xd1246": [ + "Ng11" + ], + "xd1247": [ + "Ng12" + ], + "xd1248": [ + "Ng13" + ], + "xd1249": [ + "Ng14" + ], + "xd1250": [ + "Ng15" + ], + "xd1251": [ + "Ng2" + ], + "xd1252": [ + "Ng3", + "SCCS145" + ], + "xd1253": [ + "Ng4" + ], + "xd1254": [ + "Ng5" + ], + "xd1255": [ + "Ng6" + ], + "xd1256": [ + "Ng7", + "SCCS146" + ], + "xd1257": [ + "Ng8" + ], + "xd1258": [ + "Ng9" + ], + "xd1259": [ + "B242", + "Nh1", + "SCCS148", + "WNAI152", + "WNAI153" + ], + "xd1260": [ + "Nh10", + "WNAI171" + ], + "xd1261": [ + "Nh11", + "WNAI167" + ], + "xd1262": [ + "Nh12", + "WNAI163" + ], + "xd1263": [ + "Nh13", + "WNAI161" + ], + "xd1264": [ + "Nh14" + ], + "xd1265": [ + "Nh15", + "WNAI154" + ], + "xd1266": [ + "Nh16", + "WNAI156" + ], + "xd1267": [ + "Nh17", + "WNAI147", + "WNAI148", + "WNAI149", + "WNAI150", + "WNAI151" + ], + "xd1268": [ + "Nh18", + "WNAI159" + ], + "xd1269": [ + "Nh19", + "WNAI143" + ], + "xd1270": [ + "Nh2" + ], + "xd1271": [ + "Nh20", + "WNAI142" + ], + "xd1272": [ + "Nh21", + "WNAI140" + ], + "xd1273": [ + "Nh22", + "WNAI141" + ], + "xd1274": [ + "Nh23" + ], + "xd1275": [ + "B240", + "Nh24", + "WNAI155" + ], + "xd1276": [ + "Nh25", + "WNAI162" + ], + "xd1277": [ + "Nh26", + "WNAI168" + ], + "xd1278": [ + "Nh27", + "WNAI164" + ], + "xd1279": [ + "Nh3", + "WNAI157", + "WNAI158" + ], + "xd1280": [ + "Nh4", + "SCCS149", + "WNAI160" + ], + "xd1281": [ + "Nh5", + "WNAI144" + ], + "xd1282": [ + "Nh6", + "WNAI170" + ], + "xd1283": [ + "Nh7", + "WNAI165" + ], + "xd1284": [ + "Nh8", + "WNAI172" + ], + "xd1285": [ + "Nh9" + ], + "xd1286": [ + "Ni1" + ], + "xd1287": [ + "Ni2", + "SCCS151", + "WNAI146" + ], + "xd1288": [ + "Ni3", + "SCCS152" + ], + "xd1289": [ + "B143", + "Ni4" + ], + "xd1290": [ + "B191", + "Ni5" + ], + "xd1291": [ + "Ni6", + "WNAI145" + ], + "xd1292": [ + "Ni7" + ], + "xd1293": [ + "Ni8" + ], + "xd1294": [ + "Ni9" + ], + "xd1295": [ + "Nj1" + ], + "xd1296": [ + "Nj10" + ], + "xd1297": [ + "Nj11" + ], + "xd1298": [ + "Nj12" + ], + "xd1299": [ + "Nj13" + ], + "xd1300": [ + "Nj14" + ], + "xd1301": [ + "Nj2", + "SCCS153" + ], + "xd1302": [ + "Nj3", + "SCCS154" + ], + "xd1303": [ + "Nj4" + ], + "xd1304": [ + "Nj5" + ], + "xd1305": [ + "Nj6" + ], + "xd1306": [ + "Nj7" + ], + "xd1307": [ + "Nj8" + ], + "xd1308": [ + "Nj9" + ], + "xd1309": [ + "SCCS158", + "Sa1" + ], + "xd1310": [ + "Sa10" + ], + "xd1311": [ + "Sa11" + ], + "xd1312": [ + "Sa12" + ], + "xd1313": [ + "SCCS155", + "Sa13" + ], + "xd1314": [ + "Sa14" + ], + "xd1315": [ + "Sa15" + ], + "xd1316": [ + "Sa16" + ], + "xd1317": [ + "Sa17" + ], + "xd1318": [ + "Sa2" + ], + "xd1319": [ + "Sa3" + ], + "xd1320": [ + "Sa4" + ], + "xd1321": [ + "SCCS157", + "Sa5" + ], + "xd1322": [ + "Sa6" + ], + "xd1323": [ + "Sa7" + ], + "xd1324": [ + "Sa8" + ], + "xd1325": [ + "SCCS156", + "Sa9" + ], + "xd1326": [ + "SCCS161", + "Sb1" + ], + "xd1327": [ + "Sb2" + ], + "xd1328": [ + "Sb3" + ], + "xd1329": [ + "Sb4" + ], + "xd1330": [ + "B35", + "Sb5" + ], + "xd1331": [ + "SCCS159", + "Sb6" + ], + "xd1332": [ + "Sb7" + ], + "xd1333": [ + "Sb8" + ], + "xd1334": [ + "SCCS160", + "Sb9" + ], + "xd1335": [ + "SCCS162", + "Sc1" + ], + "xd1336": [ + "Sc10" + ], + "xd1337": [ + "Sc11" + ], + "xd1338": [ + "Sc12" + ], + "xd1339": [ + "Sc13" + ], + "xd1340": [ + "Sc14" + ], + "xd1341": [ + "Sc15" + ], + "xd1342": [ + "Sc16" + ], + "xd1343": [ + "Sc17" + ], + "xd1344": [ + "Sc18" + ], + "xd1345": [ + "B38", + "Sc2" + ], + "xd1346": [ + "SCCS164", + "Sc3" + ], + "xd1347": [ + "B39", + "Sc4" + ], + "xd1348": [ + "Sc5" + ], + "xd1349": [ + "SCCS165", + "Sc6" + ], + "xd1350": [ + "Sc7" + ], + "xd1351": [ + "Sc8" + ], + "xd1352": [ + "Sc9" + ], + "xd1353": [ + "SCCS166", + "Sd1" + ], + "xd1354": [ + "Sd2" + ], + "xd1355": [ + "Sd3" + ], + "xd1356": [ + "Sd4" + ], + "xd1357": [ + "Sd5" + ], + "xd1358": [ + "B36", + "Sd6" + ], + "xd1359": [ + "Sd7" + ], + "xd1360": [ + "Sd8" + ], + "xd1361": [ + "SCCS163", + "Sd9" + ], + "xd1362": [ + "B43", + "SCCS173", + "Se1" + ], + "xd1363": [ + "Se10" + ], + "xd1364": [ + "Se11" + ], + "xd1365": [ + "Se12" + ], + "xd1366": [ + "Se2" + ], + "xd1367": [ + "SCCS169", + "Se3" + ], + "xd1368": [ + "Se4" + ], + "xd1369": [ + "SCCS167", + "Se5" + ], + "xd1370": [ + "Se6" + ], + "xd1371": [ + "Se7" + ], + "xd1372": [ + "SCCS170", + "Se8" + ], + "xd1373": [ + "Se9" + ], + "xd1374": [ + "SCCS171", + "Sf1" + ], + "xd1375": [ + "SCCS172", + "Sf2" + ], + "xd1376": [ + "SCCS168", + "Sf3" + ], + "xd1377": [ + "Sf4" + ], + "xd1378": [ + "Sf5" + ], + "xd1379": [ + "Sf6" + ], + "xd1380": [ + "Sf7" + ], + "xd1381": [ + "Sf8" + ], + "xd1382": [ + "Sf9" + ], + "xd1383": [ + "B55", + "SCCS186", + "Sg1" + ], + "xd1384": [ + "SCCS184", + "Sg2" + ], + "xd1385": [ + "B54", + "Sg3" + ], + "xd1386": [ + "B51", + "SCCS185", + "Sg4" + ], + "xd1387": [ + "B53", + "Sg5" + ], + "xd1388": [ + "Sh1" + ], + "xd1389": [ + "Sh2" + ], + "xd1390": [ + "SCCS183", + "Sh3" + ], + "xd1391": [ + "Sh4" + ], + "xd1392": [ + "Sh5" + ], + "xd1393": [ + "Sh6" + ], + "xd1394": [ + "Sh7" + ], + "xd1395": [ + "Sh8" + ], + "xd1396": [ + "SCCS182", + "Sh9" + ], + "xd1397": [ + "B41", + "Si1" + ], + "xd1398": [ + "Si10" + ], + "xd1399": [ + "SCCS175", + "Si2" + ], + "xd1400": [ + "Si3" + ], + "xd1401": [ + "B45", + "SCCS174", + "Si4" + ], + "xd1402": [ + "Si5" + ], + "xd1403": [ + "B42", + "Si6" + ], + "xd1404": [ + "Si7" + ], + "xd1405": [ + "Si8" + ], + "xd1406": [ + "Si9" + ], + "xd1407": [ + "Sj1" + ], + "xd1408": [ + "SCCS181", + "Sj10" + ], + "xd1409": [ + "SCCS179", + "Sj11" + ], + "xd1410": [ + "Sj2" + ], + "xd1411": [ + "B50", + "SCCS180", + "Sj3" + ], + "xd1412": [ + "SCCS176", + "Sj4" + ], + "xd1413": [ + "B48", + "SCCS178", + "Sj5" + ], + "xd1414": [ + "Sj6" + ], + "xd1415": [ + "Sj7" + ], + "xd1416": [ + "SCCS177", + "Sj8" + ], + "xd1417": [ + "Sj9" + ], + "xd1418": [ + "B165" + ], + "xd1419": [ + "WNAI101" + ], + "xd1420": [ + "WNAI68" + ], + "xd1421": [ + "WNAI70" + ], + "xd1422": [ + "WNAI33" + ], + "xd1423": [ + "WNAI34" + ], + "xd1424": [ + "WNAI8" + ], + "xd1425": [ + "WNAI43" + ], + "xd1426": [ + "WNAI92" + ], + "xd1427": [ + "WNAI15" + ], + "xd1428": [ + "WNAI18" + ], + "xd1429": [ + "WNAI166" + ], + "xd1430": [ + "WNAI169" + ], + "xd1431": [ + "WNAI1" + ], + "xd1432": [ + "WNAI54" + ], + "xd1433": [ + "WNAI55" + ], + "xd1434": [ + "WNAI42" + ], + "xd1435": [ + "WNAI109" + ], + "xd1436": [ + "WNAI74" + ], + "xd1437": [ + "WNAI88" + ], + "xd1438": [ + "WNAI4" + ], + "xd1439": [ + "WNAI86" + ], + "xd1440": [ + "WNAI87" + ], + "xd1441": [ + "WNAI20" + ], + "xd1442": [ + "B1" + ] +} \ No newline at end of file diff --git a/src/pydplace/dataset.py b/src/pydplace/dataset.py new file mode 100644 index 0000000..df8edfa --- /dev/null +++ b/src/pydplace/dataset.py @@ -0,0 +1,342 @@ +import re +import pathlib + +from pycldf.sources import Sources +from cldfbench import Dataset as BaseDataset, CLDFSpec +from clldutils import jsonlib +from clldutils.markup import add_markdown_text + +from .util import comma_split, semicolon_split, split +from .geo import Regions + +XD_IDS = pathlib.Path(__file__).parent / 'cross_dataset_ids.json' + + +def hraf_id(name_and_id): + match = re.search(r'\((?P[A-Z]+[0-9]+)(/[A-Z0-9]+)?\)', name_and_id) + if match: + return match.group('id') + + +def valid_id(s): + return s.replace('.', '_') + + +def add_data(raw_dir, writer): + continuous = set() + for row in raw_dir.read_csv('variables.csv', dicts=True): + writer.objects['ParameterTable'].append(dict( + ID=valid_id(row['id']), + Name=row['title'], + Description=row['definition'], + category=comma_split(row['category']), + type=row['type'], + unit=row['units'], + source_comment=row['source'], + changes=row['changes'], + comment=row['notes'], + ColumnSpec=dict(datatype='decimal') if row['type'] == 'Continuous' else None, + )) + if row['type'] == 'Continuous': + continuous.add(row['id']) + + codes = {} + if raw_dir.joinpath('codes.csv').exists(): + for row in raw_dir.read_csv('codes.csv', dicts=True): + if row['var_id'] not in continuous: + writer.objects['CodeTable'].append(dict( + ID='{}-{}'.format(valid_id(row['var_id']), row['code'].replace('.', '')), + Var_ID=valid_id(row['var_id']), + Name=row['name'], + Description=row['description'], + ord=int(row['code'].replace('.', '')) if row['code'] != 'NA' else 99, + )) + codes[(row['var_id'], row['code'])] = ( + row)['name'] if row['name'].lower() != 'missing data' else None + + refs = set() + sources = Sources.from_file(raw_dir / 'sources.bib') + + for i, row in enumerate(raw_dir.read_csv('data.csv', dicts=True)): + ref = [] + for src in semicolon_split(row['references']): + src, _, pages = src.partition(':') + if src not in refs: + writer.cldf.add_sources(sources[src]) + refs.add(src) + r = src + if pages: + r += '[{}]'.format(pages) + ref.append(r) + val = codes.get((row['var_id'], row['code']), row['code']) + if val in {'NA', '?'}: + val = None + writer.objects['ValueTable'].append(dict( + ID=str(i + 1), + Var_ID=valid_id(row['var_id']), + Code_ID='{}-{}'.format(valid_id(row['var_id']), row['code'].replace('.', '')) + if (row['var_id'], row['code']) in codes else None, + Soc_ID=row['soc_id'], + Value=val, + Comment=row['comment'], + Source=ref, + sub_case=row['sub_case'], + source_coded_data=row['source_coded_data'], + admin_comment=row['admin_comment'], + year=None if row['year'] == 'NA' else row['year'], + )) + + +def data_schema(cldf, with_codes=True): + cldf.add_columns( + 'ValueTable', + { + 'name': 'sub_case', + 'dc:description': + 'More specific description of the population the data refer to in terms of ' + 'society or area.', + }, + { + 'name': 'year', + 'datatype': {'base': 'string', 'format': '-?[0-9]{1,4}(-[0-9]{4})?'}, + 'dc:description': 'Focal year, i.e. the time period to which the data refer.', + }, + { + 'name': 'source_coded_data', + 'dc:description': + 'The source of the coded data, which was aggregated in this dataset_with_societies.', + }, + { + 'name': 'admin_comment', + }, + ) + cldf['ValueTable'].common_props['dc:description'] = \ + ("Values are coded datapoints, i.e. measurements of a variable for a society." + "\n\n**Note:** Missing data is signaled by an empty Value column.") + cldf['ValueTable', 'Value'].null = [""] + cldf['ValueTable', 'Value'].common_props['dc:description'] = \ + ("Values for categorical and ordinal variables reference the corresponding code via " + "the Code_ID column. Values for continuous variables have the measured number in the " + "Value column and an empty Code_ID.") + cldf.rename_column('ValueTable', 'languageReference', 'Soc_ID') + cldf.rename_column('ValueTable', 'parameterReference', 'Var_ID') + cldf.add_columns( + 'ParameterTable', + { + 'name': 'category', + 'dc:description': "", + 'separator': ', '}, + { + 'name': 'type', + 'datatype': {'base': 'string', 'format': 'Continuous|Categorical|Ordinal'}, + 'dc:description': + "Variables may be categorical (and then must be accompanied by a list of " + "possible ‘codes’, i.e. rows in Codetable. " + "Variables can also be continuous (e.g. Population size) or ordinal. " + "Ordinal variables are accompanied by a list of codes (like categorical " + "variables). The order of codes is encoded as `ord` column in CodeTable.", + }, + { + 'name': 'unit', + 'dc:description': 'The unit of measurement', + }, + { + 'name': 'source_comment', + 'dc:description': 'A note about the source of this variable.', + }, + { + 'name': 'changes', + 'dc:description': + 'Notes about how a variable may have been derived from the source.', + }, + { + "name": "comment", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + }, + ) + cldf['ParameterTable'].common_props['dc:description'] = \ + "Variables are cultural features or practices, or environmental descriptors." + cldf['ParameterTable', 'ID'].datatype.format = '[A-Za-z.0-9_]+([0-9]+)?' + if with_codes: + cldf.add_component( + 'CodeTable', + { + 'name': 'ord', + 'datatype': 'integer', + }, + #var_id, code, description, name + ) + cldf.rename_column('CodeTable', 'parameterReference', 'Var_ID') + + +class WithPrefix: + @classmethod + def with_prefix(cls, s): + id_ = getattr(cls, 'id', None) + assert id_ + return '{}{}'.format(id_.split('-')[-1].upper(), s) + + +class DatasetWithSocieties(BaseDataset, WithPrefix): + def __init__(self): + BaseDataset.__init__(self) + # We enrich data with the cross-dataset_with_societies ID and a WGSRPD region. + self.xd_ids = {} + for xd_id, ext in jsonlib.load(XD_IDS).items(): + for lid in ext: + self.xd_ids[lid] = xd_id + self.regions = Regions() + + def cldf_specs(self): + return CLDFSpec( + data_fnames={ + 'LanguageTable': 'societies.csv', + 'ParameterTable': 'variables.csv', + 'ValueTable': 'data.csv', + }, + dir=self.cldf_dir, + module="StructureDataset") + + def schema(self, cldf): + cldf.remove_columns('LanguageTable', 'Macroarea', 'ISO639P3code') + cldf.add_columns( + 'LanguageTable', + { + 'name': 'Name_and_ID_in_source', + 'dc:description': + 'Society names identified as pejorative have been replaced with a preferred, ' + 'English-language ethnonym. The name (and ID) as given in the source dataset_with_societies ' + 'is kept in this field.', + }, + { + 'name': "xd_id", + 'dc:description': + '“cross-data-set” identifier, used to link societies present in different ' + 'datasets, if they share a focal location. Note: If this field is empty, other ' + 'fields such as Name, Glottocode, focal year and location may be used to ' + 'identify societies across datasets if appropriate.', + }, + { + 'name': 'alt_names_by_society', + 'separator': '; ', + 'dc:description': + "A list of ‘alternate’ names for the society; includes, where available, one " + "or more autonyms in the society’s own language, as well as other commonly " + "encountered ethnonyms.", + }, + { + 'name': 'main_focal_year', + 'datatype': 'integer', + 'dc:description': + 'Focal year specifying the time period to which the data refer, given as ' + 'number of years BCE - if negative - or CE.', + }, + { + 'name': 'HRAF_name_ID', + 'dc:description': + 'Name(s) and ID(s) of the corresponding society in HRAF ' + '(the Human Relations Area Files)', + }, + { + 'name': 'HRAF_ID', + 'valueUrl': 'https://ehrafworldcultures.yale.edu/cultures/{HRAF_ID}/description', + 'dc:description': 'ID of the corresponding society in HRAF', + }, + { + 'name': 'origLat', + 'datatype': {'base': 'decimal', 'minimum': -90, 'maximum': 90}, + 'dc:description': 'Uncorrected latitude as given in the source.', + }, + { + 'name': 'origLong', + # Original longitudes sometimes are simply extended in the pacific. + 'datatype': {'base': 'decimal', 'minimum': -270, 'maximum': 180}, + 'dc:description': 'Uncorrected longitude as given in the source.', + }, + { + "name": "comment", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + }, + { + 'name': 'glottocode_comment', + 'dc:description': 'Comment on the Glottocode assignment.', + }, + { + 'name': 'region', + 'dc:description': + 'World Geographical Scheme for Recording Plant Distributions level2 region', + }, + ) + cldf['LanguageTable'].common_props['dc:description'] = \ + ("We use the term “society” to refer to cultural groups. In most cases, a society can " + "be understood to represent a group of people at a focal location with a shared " + "language that differs from that of their neighbors. However, in some cases multiple " + "societies share a language.") + + def add_society(self, writer, **props): + """ + Enrich and add the data of a society for the CLDF dataset_with_societies. + + :param props: + """ + props.update( + region=self.regions.match(props['Longitude'], props['Latitude'])[0], + xd_id=self.xd_ids.get(props['ID']), + ) + writer.objects['LanguageTable'].append(props) + + def cmd_makecldf(self, args): + data_schema(args.writer.cldf) + self.schema(args.writer.cldf) + + add_data(self.raw_dir, args.writer) + + for row in self.raw_dir.read_csv('societies.csv', dicts=True): + self.add_society( + args.writer, + ID=row['id'], + Name=row['pref_name_for_society'], + Glottocode=row['glottocode'], + Latitude=row['Lat'], + Longitude=row['Long'], + Name_and_ID_in_source=row['ORIG_name_and_ID_in_this_dataset'], + alt_names_by_society=split(row['alt_names_by_society']), + main_focal_year=None if row['main_focal_year'] == 'NA' else row['main_focal_year'], + HRAF_name_ID=row['HRAF_name_ID'], + HRAF_ID=hraf_id(row['HRAF_name_ID']), + origLat=row['origLat'], + origLong=row['origLong'], + comment=row['Comment'], + glottocode_comment=row['glottocode_comment'], + ) + + def cmd_readme(self, args): + print('gh repo edit --description "{}" --add-topic "ethnology"'.format(self.metadata.title)) + if self.metadata.url: # pragma: no cover + print('gh repo edit --homepage "{}"'.format(self.metadata.url)) + return add_markdown_text( + super().cmd_readme(args), "\n\n![](map.png)\n\n", section='Description') + + +class DatasetWithoutSocieties(BaseDataset, WithPrefix): + __society_sets__ = [] + + def cldf_specs(self): + return CLDFSpec( + data_fnames={ + 'ParameterTable': 'variables.csv', + 'ValueTable': 'data.csv', + }, + dir=self.cldf_dir, + module="StructureDataset") + + def cmd_makecldf(self, args): + data_schema(args.writer.cldf, with_codes=self.raw_dir.joinpath('codes.csv').exists()) + add_data(self.raw_dir, args.writer) + args.writer.cldf.properties['dc:references'] = self.__society_sets__ + + def cmd_readme(self, args): + print('gh repo edit --description "{}" --add-topic "ethnology"'.format(self.metadata.title)) + if self.metadata.url: # pragma: no cover + print('gh repo edit --homepage "{}"'.format(self.metadata.url)) + return super().cmd_readme(args) diff --git a/src/pydplace/dataset_template/.github/workflows/cldf-validation.yml b/src/pydplace/dataset_template/.github/workflows/cldf-validation.yml new file mode 100644 index 0000000..3db1ad3 --- /dev/null +++ b/src/pydplace/dataset_template/.github/workflows/cldf-validation.yml @@ -0,0 +1,29 @@ +name: CLDF-validation + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install .[test] + - name: Test with pytest + run: | + pytest --cldf-metadata=cldf/StructureDataset-metadata.json test.py diff --git a/src/pydplace/cldfbench_commands/__init__.py b/src/pydplace/dataset_template/CONTRIBUTORS.md_tmpl similarity index 100% rename from src/pydplace/cldfbench_commands/__init__.py rename to src/pydplace/dataset_template/CONTRIBUTORS.md_tmpl diff --git a/src/pydplace/dataset_template/RELEASING.md_tmpl b/src/pydplace/dataset_template/RELEASING.md_tmpl new file mode 100644 index 0000000..e69de29 diff --git a/src/pydplace/dataset_template/cldfbench_+id+.py_tmpl b/src/pydplace/dataset_template/cldfbench_+id+.py_tmpl new file mode 100644 index 0000000..b457ead --- /dev/null +++ b/src/pydplace/dataset_template/cldfbench_+id+.py_tmpl @@ -0,0 +1,8 @@ +import pathlib + +from pydplace.dataset import DatasetWithSocieties + + +class Dataset(DatasetWithSocieties): + dir = pathlib.Path(__file__).parent + id = "{id}" diff --git a/src/pydplace/dataset_template/setup.cfg b/src/pydplace/dataset_template/setup.cfg new file mode 100644 index 0000000..e5a4905 --- /dev/null +++ b/src/pydplace/dataset_template/setup.cfg @@ -0,0 +1,4 @@ +[tool:pytest] +testpaths = test.py +addopts = + --cldf-metadata=cldf/StructureDataset-metadata.json diff --git a/src/pydplace/dataset_template/setup.py_tmpl b/src/pydplace/dataset_template/setup.py_tmpl new file mode 100644 index 0000000..ffadc66 --- /dev/null +++ b/src/pydplace/dataset_template/setup.py_tmpl @@ -0,0 +1,30 @@ +from setuptools import setup +import json + + +with open('metadata.json', encoding='utf-8') as fp: + metadata = json.load(fp) + + +setup( + name='cldfbench_{id}', + description=metadata['title'], + license=metadata.get('license', ''), + url=metadata.get('url', ''), + py_modules=['cldfbench_{id}'], + include_package_data=True, + zip_safe=False, + entry_points={{ + 'cldfbench.dataset': [ + '{id}=cldfbench_{id}:Dataset', + ] + }}, + install_requires=[ + 'phlorest', + ], + extras_require={{ + 'test': [ + 'pytest-cldf', + ], + }}, +) diff --git a/src/pydplace/dataset_template/test.py b/src/pydplace/dataset_template/test.py new file mode 100644 index 0000000..0d9585f --- /dev/null +++ b/src/pydplace/dataset_template/test.py @@ -0,0 +1,8 @@ +def test_valid(cldf_dataset, cldf_logger): + assert cldf_dataset.validate(log=cldf_logger) + + +def test_dplace_check(cldf_dataset, cldf_logger): + #from phlorest.check import run_checks + #assert run_checks(cldf_dataset, cldf_logger) + pass diff --git a/src/pydplace/geo.py b/src/pydplace/geo.py index f80f022..a6e161c 100644 --- a/src/pydplace/geo.py +++ b/src/pydplace/geo.py @@ -1,22 +1,33 @@ -try: - from shapely.geometry import shape, Point -except ImportError: # pragma: no cover - shape, Point = None, None - - -def match(lon, lat, features): - if not shape: - return None, None # pragma no cover - point = Point(lon, lat) - mindist, nearest = None, None - for feature in features: - polygon = shape(feature['geometry']) - if polygon.contains(point): - return feature, 0 - - dist = point.distance(polygon) - if mindist is None or mindist > dist: - mindist, nearest = dist, feature - - assert mindist is not None - return nearest, mindist +""" +Assign socities to TDWG's World Geographical Scheme for Recording Plant Distributions (WGSRPD) +level 2 (regional or subcontinental) units. + +See https://www.tdwg.org/standards/wgsrpd/ +""" +import pathlib + +import fiona +from shapely.geometry import shape, Point + +GEOJSON = pathlib.Path(__file__).parent / 'wgsrpd_level2.geojson' + + +class Regions: + def __init__(self): + self.regions = [ + (dict(f.properties.items()), shape(f['geometry'])) + for f in fiona.collection(str(GEOJSON))] + + def match(self, lon, lat): + point = Point(lon, lat) + mindist, nearest = None, None + for feature, polygon in self.regions: + if polygon.contains(point): + return feature['LEVEL2_NAM'], 0 + + dist = point.distance(polygon) + if mindist is None or mindist > dist: + mindist, nearest = dist, feature + + assert mindist is not None + return nearest['LEVEL2_NAM'], mindist diff --git a/src/pydplace/glottolog.py b/src/pydplace/glottolog.py index 00167e4..8009c9c 100644 --- a/src/pydplace/glottolog.py +++ b/src/pydplace/glottolog.py @@ -5,7 +5,6 @@ import itertools from csvw.dsv import UnicodeWriter, reader -from ete3 import Tree from pyglottolog.api import Glottolog try: # Compatibility with pyglottolog < 2.x @@ -13,7 +12,7 @@ except ImportError: Level = None -from pydplace.util import comma_join, remove_subdirs +from pydplace.util import remove_subdirs __all__ = ['update'] diff --git a/src/pydplace/phlorest.py b/src/pydplace/phlorest.py deleted file mode 100644 index ff604df..0000000 --- a/src/pydplace/phlorest.py +++ /dev/null @@ -1,320 +0,0 @@ -import copy -import gzip -import uuid -import shlex -import shutil -import pathlib -import tempfile -import subprocess -import xml.etree.cElementTree as ElementTree - -import attr -import cldfbench -import nexus - -SCALING = [ - 'none', # no branch lengths - 'change', # parsimony steps - 'substitutions', # change - 'years', # years - 'centuries', # centuries - 'millennia', # millennia -] - - -def check_tree(tree, lids, log): - lids = copy.copy(lids) - for node in tree.newick_tree.walk(): - if node.name == 'root': - continue - if node.is_leaf: - assert node.name - if node.name: - try: - lids.remove(node.name) - except KeyError: - if node.is_leaf: - log.error('{} references undefined leaf {}'.format(tree.name, node.name)) - else: - log.warning( - '{} references undefined inner node {}'.format(tree.name, node.name)) - - if lids: - log.warning('extra taxa specified in LanguageTable: {}'.format(lids)) - - -def format_tree(tree, default_label='tree'): - rooting = '' if tree.rooted is None else '[&{}] '.format('R' if tree.rooted else 'U') - return 'tree {} = {}{}'.format(tree.name or default_label, rooting, tree.newick_string) - - -class NexusFile: - def __init__(self, path): - self.path = path - self._trees = [] - - def append(self, tree): - self._trees.append(tree) - - def __enter__(self): - return self - - def __exit__(self, exc_type, exc_val, exc_tb): - nex = nexus.NexusWriter() - for i, tree in enumerate(self._trees, start=1): - nex.trees.append(format_tree(tree, default_label='tree{}'.format(i))) - nex.write_to_file(self.path) - - -@attr.s -class Metadata(cldfbench.Metadata): - name = attr.ib(default=None) - author = attr.ib(default=None) - year = attr.ib(default=None) - scaling = attr.ib(default=None, validator=attr.validators.in_(SCALING)) - analysis = attr.ib(default=None) - family = attr.ib(default=None) - cldf = attr.ib(default=None) - data = attr.ib(default=None) - missing = attr.ib(default=attr.Factory(dict)) - - -class Dataset(cldfbench.Dataset): - metadata_cls = Metadata - - def __init__(self): - cldfbench.Dataset.__init__(self) - self._lids = set() - - def cldf_specs(self): # A dataset must declare all CLDF sets it creates. - return super().cldf_specs() - - def cmd_download(self, args): - pass - - def read_gzipped_text(self, p): - with gzip.open(p) as fp: - return fp.read().decode('utf8') - - def read_trees(self, p, detranslate=False): - nex = nexus.NexusReader(p) - if detranslate: - nex.trees.detranslate() - return nex.trees.trees - - def read_tree(self, p, detranslate=False): - return self.read_trees(p, detranslate=detranslate)[0] - - def nexus_summary(self): - return NexusFile(self.cldf_dir / 'summary.trees') - - def nexus_posterior(self): - return NexusFile(self.cldf_dir / 'posterior.trees') - - def run_nexus(self, cmd, input): - with tempfile.TemporaryDirectory() as d: - d = pathlib.Path(d) - if isinstance(input, str): - d.joinpath('in.nex').write_text(input, encoding='utf8') - else: - shutil.copy(input, d / 'in.nex') - cmd = shlex.split(cmd) - if cmd[0] != 'nexus': - cmd = ['nexus'] + cmd - fcmd = cmd + [str(d / 'in.nex'), '-o', str(d / 'out.nex')] - try: - subprocess.check_call(fcmd) - except: - i = '{}.nex'.format(uuid.uuid1()) - shutil.copy(d / 'in.nex', i) - raise ValueError('Running "{} {}" failed'.format(' '.join(cmd), i)) - return d.joinpath('out.nex').read_text(encoding='utf8') - - def remove_burnin(self, input, amount): - return self.run_nexus('--log-level WARNING trees -d 1-{}'.format(amount), input) - - def sample(self, input, seed=12345, detranslate=False): - return self.run_nexus( - 'trees {} -n 1000 --random-seed {}'.format('-t' if detranslate else '', seed), - input) - - def init(self, args): - self.add_schema(args) - self.add_taxa(args) - if self.raw_dir.joinpath('source.bib').exists(): - args.writer.cldf.sources.add( - self.raw_dir.joinpath('source.bib').read_text(encoding='utf8')) - - def add_schema(self, args): - args.writer.cldf.add_component('LanguageTable') - args.writer.cldf.add_table( - 'trees.csv', - { - 'name': 'ID', - 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#id', - }, - { - 'name': 'Name', - 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#name', - }, - { - 'name': 'Nexus_File', - 'dc:description': 'The newick representation of the tree, labeled with identifiers ' - 'as described in LanguageTable, is stored in the TREES ' - 'block of the Nexus file specified here. ' - '(See https://en.wikipedia.org/wiki/Nexus_file)', - 'propertyUrl': 'http://purl.org/dc/terms/relation', - }, - { - 'name': 'rooted', # bool or None - 'datatype': 'boolean', - 'dc:description': "Whether the tree is rooted (true) or unrooted (false) (or no " - "info is available (null))" - }, - { - 'name': 'type', # summary or sample - 'datatype': {'base': 'string', 'format': 'summary|sample'}, - 'dc:description': "Whether the tree is a summary (or consensus) tree, i.e. can be " - "analysed in isolation, or whether it is a sample, resulting " - "from a method that creates multiple trees", - }, - { - 'name': 'method', - 'dc:description': 'Specifies the method that was used to create the tree' - }, - { - 'name': 'scaling', - 'datatype': {'base': 'string', 'format': '|'.join(SCALING)}, - }, - { - 'name': 'Source', - 'separator': ';', - 'propertyUrl': 'http://cldf.clld.org/v1.0/terms.rdf#source', - }, - ) - - def add_tree(self, args, tree, nex, tid, type_=None, source=None): - if self._lids: - check_tree(tree, self._lids, args.log) - nex.append(tree) - if type_ is None: - if nex.path.stem == 'summary': - type_ = 'summary' - elif nex.path.stem == 'posterior': - type_ = 'sample' - - if source is None: - bibkeys = list(args.writer.cldf.sources.keys()) - if len(bibkeys) == 1: - source = bibkeys[0] - - args.writer.objects['trees.csv'].append(dict( - ID=tid, - Name=tree.name, - Nexus_File=nex.path.name, - rooted=tree.rooted, - type=type_, - method=self.metadata.analysis, - scaling=self.metadata.scaling, - Source=[source] if isinstance(source, str) else source, - )) - - def add_data(self, args, input): - nex = input if isinstance(input, (nexus.NexusReader, nexus.NexusWriter)) \ - else nexus.NexusReader(input) - assert all(t in self._lids for t in nex.data.taxa) - assert all(t in self._lids for t in nex.data.matrix) - # - # FIXME: more validation! E.g. whether number of charstatelabels matches number of sites in matrix. - # - nex.write_to_file(self.cldf_dir / 'data.nex') - # - # FIXME: handle the case when there already is a "dc:hasPart" property! - # - args.writer.cldf.properties['dc:hasPart'] = { - 'dc:relation': 'data.nex', - 'dc:description': 'The data underlying the analysis which created the phylogeny', - 'dc:format': 'https://en.wikipedia.org/wiki/Nexus_file', - } - - def add_taxa(self, args): - glangs = {lg.id: lg for lg in args.glottolog.api.languoids()} - # - # FIXME: add metadata from Glottolog, put in dplace-tree-specific Dataset base class. - # FIXME: log warnings if taxa are mapped to bookkeeping languoids! - # - for row in self.etc_dir.read_csv('taxa.csv', dicts=True): - self._lids.add(row['taxon']) - glang = None - if row['glottocode']: - glang = glangs[row['glottocode']] - args.writer.objects['LanguageTable'].append(dict( - ID=row['taxon'], - Name=row['taxon'], - Glottocode=row['glottocode'] or None, - Latitude=glang.latitude if glang else None, - Longitude=glang.longitude if glang else None, - )) - - -def beast_to_nexus(filename, valid_states="01?"): - nex = nexus.NexusWriter() - xml = ElementTree.parse(str(filename)) - for seq in xml.findall('./data/sequence'): - for i, state in enumerate([s for s in seq.get('value') if s != ' '], start=1): - assert state in valid_states, 'Invalid State %s' % state - nex.add(seq.get('taxon'), i, state) - # - # Now serialze and hack in the charstatelabel block! - # - new = [] - for line in nex.write().split('\n'): - if line.strip().lower() == 'matrix': - # here's where we should put the charstatelabels! - chars = sorted(list(beast2chars(xml))) - if chars: - new.append('\tcharstatelabels') - for i, (n, label) in enumerate(chars, start=1): - new.append('\t\t{} {}{}'.format(n, label, ',' if i != len(chars) else '')) - new.append('\t;') - new.append(line) - return nexus.NexusReader.from_string('\n'.join(new)) - - -def beast2chars(xml): - def find_filter(node): # note recursive - for child in node: - find_filter(child) - (p, x, y) = get_partition(node) - if p and x and y: - return (p, x, y) - - def get_partition(p): - x, y = [int(_) for _ in p.get('filter').split("-")] - return (p.get('id'), x, y) - - def printchar(p, x, y, ascertained=False): - n = 1 - for i in range(x, y + 1): - label = "%s-%s" % (p, 'ascertained' if n == 1 and ascertained else str(n)) - yield i, label - n += 1 - - def get_by_id(data_id): - if data_id.startswith("@"): - data_id = data_id.lstrip("@") - return xml.find(".//alignment[@id='%s']" % data_id) - - for treelh in xml.findall(".//distribution[@spec='TreeLikelihood']"): - if treelh.get('data'): - data = get_by_id(treelh.get('data')) - ascertained = data.get('ascertained') == 'true' - yield from printchar(*get_partition(data.find('./data')), ascertained=ascertained) - else: - data = treelh.find('./data') - ascertained = data.get('ascertained') == 'true' - if data.get('data'): - datadata = get_by_id(data.get('data')) - else: - datadata = treelh.find('./data/data') - yield from printchar(*get_partition(datadata), ascertained=ascertained) diff --git a/src/pydplace/scaffold.py b/src/pydplace/scaffold.py new file mode 100644 index 0000000..389a861 --- /dev/null +++ b/src/pydplace/scaffold.py @@ -0,0 +1,11 @@ +import pathlib + +from cldfbench.scaffold import Template + +import pydplace + + +class DatasetTemplate(Template): + package = 'pydplace' + + dirs = Template.dirs + [pathlib.Path(pydplace.__file__).parent / 'dataset_template'] diff --git a/src/pydplace/util.py b/src/pydplace/util.py index f8fdf46..51b9f04 100644 --- a/src/pydplace/util.py +++ b/src/pydplace/util.py @@ -1,29 +1,15 @@ -import types import shutil import pathlib import functools from clldutils.text import split_text -__all__ = ['comma_split', 'semicolon_split', 'remove_subdirs', 'comma_join'] +__all__ = ['split', 'comma_split', 'semicolon_split', 'remove_subdirs'] comma_split = functools.partial(split_text, separators=',', strip=True, brackets={}) semicolon_split = functools.partial(split_text, separators=';', strip=True, brackets={}) - - -def _join(sep, *args): - if len(args) == 1 and isinstance(args[0], (list, tuple, set, types.GeneratorType)): - args = args[0] - return sep.join(args) - - -comma_join = functools.partial(_join, ', ') -semicolon_join = functools.partial(_join, '; ') - - -def format_float(f): - return format(float(f), '.6f').rstrip('0').rstrip('.') +split = functools.partial(split_text, separators=';,', strip=True, brackets={}) def remove_subdirs(d, pattern='*'): diff --git a/src/pydplace/wgsrpd_level2.geojson b/src/pydplace/wgsrpd_level2.geojson new file mode 100644 index 0000000..310df5b --- /dev/null +++ b/src/pydplace/wgsrpd_level2.geojson @@ -0,0 +1,57 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "LEVEL2_COD": 10, "LEVEL1_COD": 1, "LEVEL1_NAM": "EUROPE", "LEVEL2_NAM": "Northern Europe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.290855380000096, 49.912205155634737 ], [ -6.317255380000091, 49.911905155634756 ], [ -6.317555380000101, 49.915305155634755 ], [ -6.295055380000093, 49.933905155634747 ], [ -6.290855380000096, 49.912205155634737 ] ] ], [ [ [ -1.059755380000098, 50.687505155634753 ], [ -1.282555380000105, 50.578905155634757 ], [ -1.570055380000099, 50.660505155634738 ], [ -1.296955380000099, 50.771905155634741 ], [ -1.059755380000098, 50.687505155634753 ] ] ], [ [ [ -0.938355380000104, 50.777505155634756 ], [ -0.960555380000102, 50.774405155634739 ], [ -1.022555380000085, 50.785805155634748 ], [ -0.970855380000103, 50.830805155634735 ], [ -0.938355380000104, 50.777505155634756 ] ] ], [ [ [ -4.651655380000079, 51.159405155634758 ], [ -4.673355380000089, 51.161405155634739 ], [ -4.665555380000086, 51.195005155634746 ], [ -4.656455380000097, 51.192205155634738 ], [ -4.651655380000079, 51.159405155634758 ] ] ], [ [ [ 0.904644619999914, 51.358005155634757 ], [ 0.766044619999917, 51.375805155634751 ], [ 0.740544619999895, 51.42970515563475 ], [ 0.908844619999911, 51.416905155634751 ], [ 0.904644619999914, 51.358005155634757 ] ] ], [ [ [ -9.656455380000097, 53.22220515563474 ], [ -9.703955380000082, 53.226905155634753 ], [ -9.72475538000009, 53.268005155634754 ], [ -9.6608553800001, 53.280005155634754 ], [ -9.656455380000097, 53.22220515563474 ] ] ], [ [ [ -4.571455380000089, 53.238605155634744 ], [ -4.676955380000095, 53.280305155634736 ], [ -4.693955380000091, 53.301405155634754 ], [ -4.621655380000078, 53.321405155634736 ], [ -4.571455380000089, 53.238605155634744 ] ] ], [ [ [ -4.153555380000086, 53.226005155634752 ], [ -4.402255380000099, 53.125805155634751 ], [ -4.569155380000097, 53.388005155634758 ], [ -4.04665538000009, 53.30330515563476 ], [ -4.153555380000086, 53.226005155634752 ] ] ], [ [ [ -9.964155380000079, 54.018605155634745 ], [ -9.95505538000009, 53.876705155634752 ], [ -10.268655380000098, 53.975005155634747 ], [ -10.196655380000095, 54.008305155634744 ], [ -9.964155380000079, 54.018605155634745 ] ] ], [ [ [ -4.550555380000105, 54.097805155634759 ], [ -4.78865538000008, 54.063005155634741 ], [ -4.360355380000101, 54.416105155634753 ], [ -4.309455380000088, 54.293305155634741 ], [ -4.550555380000105, 54.097805155634759 ] ] ], [ [ [ 11.513844619999901, 54.829705155634755 ], [ 11.656944619999905, 54.903905155634746 ], [ 11.856044619999921, 54.683305155634756 ], [ 11.455544619999898, 54.619405155634738 ], [ 10.9898446199999, 54.790805155634743 ], [ 11.164444619999898, 54.956705155634737 ], [ 11.513844619999901, 54.829705155634755 ] ] ], [ [ [ -8.436955380000086, 54.944405155634755 ], [ -8.448955380000086, 54.945305155634756 ], [ -8.453955380000082, 54.955005155634737 ], [ -8.438655380000085, 54.955305155634747 ], [ -8.436955380000086, 54.944405155634755 ] ] ], [ [ [ 12.038044619999908, 54.892505155634737 ], [ 12.169444619999922, 54.839205155634758 ], [ 11.964444619999909, 54.561705155634755 ], [ 11.708544619999913, 54.936705155634755 ], [ 12.038044619999908, 54.892505155634737 ] ] ], [ [ [ 10.432744619999909, 54.841705155634756 ], [ 10.248344619999898, 54.904205155634756 ], [ 10.184144619999898, 54.973605155634758 ], [ 10.440844619999922, 54.863905155634754 ], [ 10.432744619999909, 54.841705155634756 ] ] ], [ [ [ -8.518655380000098, 54.964205155634758 ], [ -8.564455380000084, 54.972805155634759 ], [ -8.546955380000099, 55.01190515563475 ], [ -8.490555380000103, 54.994705155634747 ], [ -8.518655380000098, 54.964205155634758 ] ] ], [ [ [ 12.557444619999899, 54.964205155634758 ], [ 12.183544619999907, 54.880305155634758 ], [ 12.115844619999905, 54.904205155634756 ], [ 12.311944619999906, 55.035305155634759 ], [ 12.557444619999899, 54.964205155634758 ] ] ], [ [ [ 10.614944619999903, 54.950305155634751 ], [ 10.549144619999907, 54.950005155634742 ], [ 10.498544619999905, 55.006405155634738 ], [ 10.631944619999899, 55.043305155634741 ], [ 10.614944619999903, 54.950305155634751 ] ] ], [ [ [ 9.792444619999912, 55.075005155634742 ], [ 9.971944619999903, 55.008905155634736 ], [ 10.071044619999896, 54.874705155634743 ], [ 9.6305446199999, 55.049405155634744 ], [ 9.792444619999912, 55.075005155634742 ] ] ], [ [ [ 10.756944619999899, 54.777205155634746 ], [ 10.681944619999911, 54.90860515563476 ], [ 10.949144619999913, 55.161105155634758 ], [ 10.897744619999912, 55.001105155634761 ], [ 10.756944619999899, 54.777205155634746 ] ] ], [ [ [ 15.051644619999905, 54.995005155634757 ], [ 14.6796446199999, 55.099705155634737 ], [ 14.746344619999917, 55.295505155634757 ], [ 15.141044619999917, 55.13860515563475 ], [ 15.051644619999905, 54.995005155634757 ] ] ], [ [ [ -6.172755380000098, 55.293005155634759 ], [ -6.188355380000104, 55.259705155634762 ], [ -6.282455380000101, 55.292205155634761 ], [ -6.238855380000103, 55.308605155634737 ], [ -6.172755380000098, 55.293005155634759 ] ] ], [ [ [ -7.251155380000085, 55.046105155634748 ], [ -6.103855380000084, 55.210305155634742 ], [ -5.688055380000094, 54.806105155634739 ], [ -5.908355380000103, 54.604705155634761 ], [ -5.576955380000101, 54.67800515563475 ], [ -5.430555380000101, 54.487205155634754 ], [ -5.508055380000087, 54.363605155634744 ], [ -5.698655380000105, 54.574205155634743 ], [ -5.562255380000096, 54.28300515563474 ], [ -6.043855380000082, 54.031405155634744 ], [ -6.270855380000086, 54.097805155634759 ], [ -6.138055380000083, 53.975005155634747 ], [ -6.358955380000083, 54.009405155634752 ], [ -6.081155380000098, 53.563605155634761 ], [ -6.224555380000083, 53.352805155634755 ], [ -6.013055380000083, 52.945005155634746 ], [ -6.211155380000093, 52.538305155634745 ], [ -6.498955380000098, 52.356105155634751 ], [ -6.357855380000103, 52.180505155634748 ], [ -6.995455380000095, 52.282505155634752 ], [ -7.005355380000083, 52.136105155634752 ], [ -7.578955380000082, 52.100305155634757 ], [ -8.166455380000087, 51.792205155634761 ], [ -8.210555380000102, 51.884405155634752 ], [ -8.421155380000101, 51.883905155634736 ], [ -8.313055380000094, 51.738605155634744 ], [ -9.23415538000009, 51.480505155634759 ], [ -9.817555380000101, 51.445505155634734 ], [ -9.591955380000087, 51.610005155634738 ], [ -9.844755380000095, 51.547805155634748 ], [ -9.451655380000091, 51.688005155634741 ], [ -9.535555380000091, 51.750005155634753 ], [ -10.132555380000099, 51.593305155634752 ], [ -9.57835538000009, 51.871105155634737 ], [ -10.338655380000091, 51.782905155634737 ], [ -10.263655380000102, 51.988005155634752 ], [ -9.75785538000008, 52.148605155634741 ], [ -10.464755380000099, 52.17970515563475 ], [ -9.740855380000085, 52.244705155634747 ], [ -9.839755380000099, 52.379705155634738 ], [ -9.651655380000079, 52.561905155634761 ], [ -9.331655380000086, 52.571105155634754 ], [ -8.818355380000099, 52.665505155634762 ], [ -9.936455380000098, 52.555805155634758 ], [ -9.485855380000089, 52.800505155634752 ], [ -9.266655380000088, 53.149405155634739 ], [ -8.938055380000094, 53.140505155634756 ], [ -8.941155380000083, 53.264205155634741 ], [ -9.608055380000081, 53.232205155634759 ], [ -9.563355380000104, 53.383305155634744 ], [ -10.175855380000087, 53.407805155634762 ], [ -10.186155380000088, 53.550305155634746 ], [ -9.699155380000093, 53.59580515563475 ], [ -9.906455380000097, 53.758605155634754 ], [ -9.561455380000098, 53.859705155634757 ], [ -9.940555380000092, 53.86690515563474 ], [ -9.787855380000082, 53.941905155634757 ], [ -10.006155380000081, 54.218905155634744 ], [ -10.124455380000086, 54.096405155634741 ], [ -10.112255380000079, 54.230005155634743 ], [ -8.471655380000101, 54.27390515563475 ], [ -8.668355380000094, 54.349405155634756 ], [ -8.188355380000104, 54.633605155634754 ], [ -8.800855380000087, 54.69170515563475 ], [ -8.315855380000102, 54.869705155634747 ], [ -8.459755380000104, 54.938305155634751 ], [ -8.3851553800001, 54.94200515563476 ], [ -8.317555380000101, 55.108905155634758 ], [ -7.7935553800001, 55.243105155634751 ], [ -7.810855380000106, 55.176505155634757 ], [ -7.696655380000095, 55.093005155634742 ], [ -7.791755380000097, 55.212005155634742 ], [ -7.657555380000105, 55.274405155634739 ], [ -7.525355380000093, 55.120505155634746 ], [ -7.681455380000102, 54.948305155634742 ], [ -7.446955380000105, 55.053605155634742 ], [ -7.550555380000105, 55.208905155634753 ], [ -7.393955380000079, 55.379405155634757 ], [ -6.93165538000008, 55.235805155634736 ], [ -7.251155380000085, 55.046105155634748 ] ] ], [ [ [ 8.463544619999908, 55.334205155634734 ], [ 8.403044619999918, 55.379405155634757 ], [ 8.360244619999918, 55.457805155634745 ], [ 8.458344619999906, 55.426405155634754 ], [ 8.463544619999908, 55.334205155634734 ] ] ], [ [ [ 10.745244619999909, 55.482205155634759 ], [ 10.782744619999903, 55.122505155634755 ], [ 10.497744619999906, 55.028905155634746 ], [ 10.152744619999908, 55.084405155634741 ], [ 9.675544619999897, 55.499205155634755 ], [ 10.309644619999915, 55.61690515563474 ], [ 10.478544619999894, 55.438005155634741 ], [ 10.619144619999901, 55.619205155634759 ], [ 10.745244619999909, 55.482205155634759 ] ] ], [ [ [ 12.579444619999919, 55.551405155634754 ], [ 12.511944619999895, 55.609705155634757 ], [ 12.606044619999921, 55.696105155634754 ], [ 12.678544619999911, 55.590505155634744 ], [ 12.579444619999919, 55.551405155634754 ] ] ], [ [ [ -5.103655380000106, 55.438605155634761 ], [ -5.340355380000091, 55.475005155634747 ], [ -5.381155380000081, 55.668605155634751 ], [ -5.160355380000084, 55.679205155634762 ], [ -5.103655380000106, 55.438605155634761 ] ] ], [ [ [ -5.016455380000082, 55.721905155634758 ], [ -5.118955380000102, 55.777205155634746 ], [ -5.206455380000079, 55.899405155634739 ], [ -5.036455380000092, 55.83780515563474 ], [ -5.016455380000082, 55.721905155634758 ] ] ], [ [ [ -6.121655380000078, 55.87890515563474 ], [ -6.076655380000091, 55.650005155634759 ], [ -6.325555380000083, 55.58670515563476 ], [ -6.265355380000102, 55.777805155634738 ], [ -6.509155380000095, 55.682205155634747 ], [ -6.4416553800001, 55.853605155634753 ], [ -6.121655380000078, 55.87890515563474 ] ] ], [ [ [ 10.6305446199999, 55.86550515563475 ], [ 10.527444619999898, 55.765805155634737 ], [ 10.5235446199999, 55.981405155634761 ], [ 10.562444619999894, 55.996105155634737 ], [ 10.6305446199999, 55.86550515563475 ] ] ], [ [ [ -6.193955380000091, 56.029205155634756 ], [ -6.263055380000083, 56.036105155634758 ], [ -6.130855380000099, 56.120805155634756 ], [ -6.178055380000103, 56.039205155634747 ], [ -6.193955380000091, 56.029205155634756 ] ] ], [ [ [ 12.567144619999908, 55.99220515563475 ], [ 12.600244619999899, 55.704205155634739 ], [ 12.190844619999922, 55.478605155634753 ], [ 12.461644619999902, 55.286405155634739 ], [ 12.014944619999909, 55.161405155634739 ], [ 12.181044619999909, 55.11720515563475 ], [ 12.071944619999897, 54.968605155634762 ], [ 11.730544619999904, 55.060505155634743 ], [ 11.730844619999914, 55.203605155634747 ], [ 11.246644619999898, 55.19970515563476 ], [ 11.0891446199999, 55.662805155634757 ], [ 10.873544619999905, 55.73250515563474 ], [ 11.2110446199999, 55.698905155634762 ], [ 11.506344619999908, 55.86720515563475 ], [ 11.273344619999904, 55.991705155634762 ], [ 11.763844619999901, 55.964705155634746 ], [ 11.670544619999902, 55.814205155634752 ], [ 11.794444619999922, 55.661705155634749 ], [ 11.914144619999917, 55.92970515563475 ], [ 12.056944619999911, 55.74220515563475 ], [ 11.935844619999898, 55.653305155634754 ], [ 12.057144619999917, 55.653305155634754 ], [ 12.093844619999913, 55.711105155634741 ], [ 12.039644619999905, 55.924205155634738 ], [ 11.8594446199999, 55.966705155634756 ], [ 12.290544619999906, 56.12890515563474 ], [ 12.567144619999908, 55.99220515563475 ] ] ], [ [ [ -5.946955380000105, 55.830005155634737 ], [ -6.078955380000082, 55.905505155634742 ], [ -5.694455380000079, 56.147205155634751 ], [ -5.690855380000102, 56.106705155634742 ], [ -5.946955380000105, 55.830005155634737 ] ] ], [ [ [ -5.735055380000091, 56.15800515563474 ], [ -5.735555380000079, 56.177805155634744 ], [ -5.675355380000099, 56.191905155634757 ], [ -5.675855380000087, 56.169405155634749 ], [ -5.735055380000091, 56.15800515563474 ] ] ], [ [ [ -5.630055380000101, 56.196905155634752 ], [ -5.665355380000079, 56.215805155634754 ], [ -5.641955380000098, 56.260305155634754 ], [ -5.606455380000085, 56.254405155634757 ], [ -5.630055380000101, 56.196905155634752 ] ] ], [ [ [ -5.616655380000083, 56.268905155634755 ], [ -5.645555380000104, 56.301105155634744 ], [ -5.583955380000106, 56.319705155634736 ], [ -5.603055380000086, 56.279205155634756 ], [ -5.616655380000083, 56.268905155634755 ] ] ], [ [ [ -6.404755380000097, 56.303605155634742 ], [ -6.436455380000098, 56.310505155634743 ], [ -6.381955380000079, 56.340805155634754 ], [ -6.393355380000088, 56.315805155634749 ], [ -6.404755380000097, 56.303605155634742 ] ] ], [ [ [ -5.543655380000104, 56.382805155634756 ], [ -5.584455380000094, 56.382205155634736 ], [ -5.587855380000093, 56.389205155634741 ], [ -5.510055380000097, 56.411105155634758 ], [ -5.543655380000104, 56.382805155634756 ] ] ], [ [ [ -6.165855380000096, 56.464705155634746 ], [ -6.198955380000086, 56.458605155634743 ], [ -6.260055380000097, 56.481905155634749 ], [ -6.215555380000097, 56.497805155634737 ], [ -6.165855380000096, 56.464705155634746 ] ] ], [ [ [ -6.739155380000085, 56.515805155634737 ], [ -6.8928553800001, 56.438605155634761 ], [ -6.990855380000085, 56.494405155634738 ], [ -6.758055380000087, 56.549205155634738 ], [ -6.739155380000085, 56.515805155634737 ] ] ], [ [ [ -5.783655380000084, 56.508905155634736 ], [ -5.648355380000083, 56.435805155634753 ], [ -5.80865538000009, 56.317505155634748 ], [ -6.366155380000095, 56.308905155634747 ], [ -6.0178553800001, 56.374705155634743 ], [ -6.193655380000081, 56.361405155634756 ], [ -6.002855380000085, 56.494205155634759 ], [ -6.320055380000099, 56.603005155634762 ], [ -5.783655380000084, 56.508905155634736 ] ] ], [ [ [ -6.589155380000079, 56.580005155634737 ], [ -6.698955380000086, 56.580005155634737 ], [ -6.454455380000098, 56.686105155634735 ], [ -6.493355380000082, 56.630005155634748 ], [ -6.589155380000079, 56.580005155634737 ] ] ], [ [ [ 11.565844619999922, 56.670805155634739 ], [ 11.503344619999922, 56.707805155634745 ], [ 11.648044619999922, 56.723305155634748 ], [ 11.6485446199999, 56.720005155634752 ], [ 11.565844619999922, 56.670805155634739 ] ] ], [ [ [ -6.144755380000106, 56.870005155634757 ], [ -6.211455380000103, 56.88720515563476 ], [ -6.2130553800001, 56.90690515563476 ], [ -6.113655380000097, 56.932505155634757 ], [ -6.144755380000106, 56.870005155634757 ] ] ], [ [ [ 8.924644619999896, 56.918605155634751 ], [ 8.766944619999919, 56.692205155634738 ], [ 8.510044619999917, 56.734605155634753 ], [ 8.6499446199999, 56.889405155634748 ], [ 8.924644619999896, 56.918605155634751 ] ] ], [ [ [ -6.317555380000101, 56.934205155634757 ], [ -6.361955380000097, 56.946405155634736 ], [ -6.451655380000091, 57.006105155634756 ], [ -6.261655380000093, 57.037805155634757 ], [ -6.317555380000101, 56.934205155634757 ] ] ], [ [ [ -7.466955380000087, 56.940805155634749 ], [ -7.56005538000008, 56.960305155634742 ], [ -7.439755380000094, 57.05440515563474 ], [ -7.376155380000085, 56.978605155634753 ], [ -7.466955380000087, 56.940805155634749 ] ] ], [ [ [ -6.499155380000104, 57.052205155634752 ], [ -6.581155380000098, 57.043905155634761 ], [ -6.602555380000098, 57.046405155634758 ], [ -6.549455380000097, 57.068005155634737 ], [ -6.499155380000104, 57.052205155634752 ] ] ], [ [ [ 9.974244619999922, 57.071705155634746 ], [ 10.179444619999913, 56.994205155634759 ], [ 10.311844619999903, 56.981305155634757 ], [ 10.305244619999911, 56.748005155634743 ], [ 9.866344619999921, 56.65030515563474 ], [ 10.338544619999908, 56.695305155634756 ], [ 10.363544619999914, 56.63890515563476 ], [ 10.218844619999913, 56.55300515563475 ], [ 10.187744619999904, 56.468605155634762 ], [ 10.7869446199999, 56.534205155634751 ], [ 10.9213446199999, 56.343605155634762 ], [ 10.545844619999912, 56.098905155634739 ], [ 10.4005446199999, 56.290805155634743 ], [ 10.216044619999906, 56.146105155634743 ], [ 10.189144619999894, 55.828005155634756 ], [ 9.865544619999895, 55.846405155634741 ], [ 10.048544619999916, 55.814405155634759 ], [ 9.992744619999911, 55.705005155634737 ], [ 9.549944619999906, 55.705805155634735 ], [ 9.819144619999918, 55.604705155634761 ], [ 9.704144619999909, 55.531105155634762 ], [ 9.588344619999901, 55.42170515563474 ], [ 9.688544619999902, 55.196905155634752 ], [ 9.459144619999904, 55.123905155634745 ], [ 9.742744619999911, 54.831405155634755 ], [ 8.686044619999905, 54.89890515563475 ], [ 8.676044619999914, 55.114205155634735 ], [ 8.456944619999916, 55.123905155634745 ], [ 8.688844619999912, 55.136405155634762 ], [ 8.623844619999915, 55.427505155634762 ], [ 8.087144619999918, 55.548905155634756 ], [ 8.126644619999894, 55.984305155634743 ], [ 8.186344619999915, 55.810005155634755 ], [ 8.397144619999921, 55.897505155634761 ], [ 8.254944619999918, 56.082805155634745 ], [ 8.113844619999895, 56.000805155634751 ], [ 8.156044619999903, 56.637805155634751 ], [ 8.728344619999916, 56.482205155634759 ], [ 8.681044619999909, 56.620005155634757 ], [ 9.075544619999903, 56.807405155634754 ], [ 9.058544619999907, 56.566905155634757 ], [ 9.321644619999915, 56.525505155634747 ], [ 9.178144619999898, 56.91600515563475 ], [ 9.974244619999922, 57.071705155634746 ] ] ], [ [ [ -5.939155380000102, 57.278005155634744 ], [ -5.9964553800001, 57.288305155634745 ], [ -6.0178553800001, 57.311705155634755 ], [ -5.9339553800001, 57.311705155634755 ], [ -5.939155380000102, 57.278005155634744 ] ] ], [ [ [ 11.195844619999917, 57.310805155634753 ], [ 10.997444619999897, 57.223305155634748 ], [ 10.854744619999906, 57.26190515563475 ], [ 11.025844619999901, 57.320305155634756 ], [ 11.195844619999917, 57.310805155634753 ] ] ], [ [ [ 16.836644619999902, 56.826905155634748 ], [ 16.496044619999907, 56.24080515563476 ], [ 16.420844619999912, 56.211105155634741 ], [ 16.4202446199999, 56.58640515563475 ], [ 17.105544619999904, 57.348305155634748 ], [ 16.836644619999902, 56.826905155634748 ] ] ], [ [ [ -7.223055380000091, 57.337505155634759 ], [ -7.215355380000091, 57.110305155634748 ], [ -7.381455380000091, 57.108605155634748 ], [ -7.425055380000089, 57.382205155634736 ], [ -7.223055380000091, 57.337505155634759 ] ] ], [ [ [ -7.268955380000079, 57.39890515563475 ], [ -7.388055380000083, 57.423905155634756 ], [ -7.406455380000097, 57.464205155634758 ], [ -7.20475538000008, 57.460805155634759 ], [ -7.268955380000079, 57.39890515563475 ] ] ], [ [ [ -6.026955380000089, 57.328605155634747 ], [ -6.07835538000009, 57.394205155634737 ], [ -6.003055380000092, 57.508605155634754 ], [ -5.990055380000086, 57.350005155634747 ], [ -6.026955380000089, 57.328605155634747 ] ] ], [ [ [ -5.967855380000088, 57.522805155634742 ], [ -5.990855380000085, 57.540805155634743 ], [ -5.961655380000082, 57.575005155634742 ], [ -5.95335538000009, 57.567205155634738 ], [ -5.967855380000088, 57.522805155634742 ] ] ], [ [ [ -6.143955380000079, 57.568005155634737 ], [ -6.127255380000094, 57.306105155634739 ], [ -5.66395538000009, 57.205005155634737 ], [ -6.011955380000103, 57.022205155634751 ], [ -6.030555380000095, 57.177505155634762 ], [ -6.314455380000084, 57.157505155634752 ], [ -6.481455380000085, 57.30300515563475 ], [ -6.309755380000098, 57.304205155634762 ], [ -6.7858553800001, 57.446105155634754 ], [ -6.637555380000094, 57.605505155634759 ], [ -6.375555380000094, 57.52420515563476 ], [ -6.345555380000093, 57.684705155634745 ], [ -6.143955380000079, 57.568005155634737 ] ] ], [ [ [ -7.188655380000085, 57.687205155634743 ], [ -7.065855380000102, 57.633305155634744 ], [ -7.153955380000099, 57.509405155634752 ], [ -7.543355380000094, 57.590805155634754 ], [ -7.188655380000085, 57.687205155634743 ] ] ], [ [ [ -7.196655380000095, 57.702205155634758 ], [ -7.219155380000103, 57.707805155634745 ], [ -7.144755380000106, 57.723605155634758 ], [ -7.150055380000083, 57.716705155634756 ], [ -7.196655380000095, 57.702205155634758 ] ] ], [ [ [ 10.432444619999899, 57.592205155634744 ], [ 10.542144619999902, 57.230005155634743 ], [ 10.336544619999898, 56.991705155634762 ], [ 10.006644619999918, 57.090005155634756 ], [ 9.115544619999895, 57.052805155634744 ], [ 8.670844619999912, 56.945305155634756 ], [ 8.415744619999913, 56.678105155634753 ], [ 8.591344619999916, 56.686105155634735 ], [ 8.554944619999901, 56.582505155634735 ], [ 8.240244619999913, 56.707205155634753 ], [ 8.6171446199999, 57.121705155634757 ], [ 9.389944619999909, 57.151105155634738 ], [ 9.949644619999901, 57.583605155634743 ], [ 10.645444619999921, 57.736905155634744 ], [ 10.432444619999899, 57.592205155634744 ] ] ], [ [ [ -8.555355380000094, 57.810805155634753 ], [ -8.582555380000088, 57.798905155634756 ], [ -8.6214553800001, 57.822805155634754 ], [ -8.583655380000096, 57.823905155634762 ], [ -8.555355380000094, 57.810805155634753 ] ] ], [ [ [ -7.006455380000091, 57.881405155634738 ], [ -7.073655380000105, 57.877805155634761 ], [ -7.077855380000102, 57.880005155634748 ], [ -6.993655380000092, 57.918605155634751 ], [ -7.006455380000091, 57.881405155634738 ] ] ], [ [ [ 18.206044619999915, 56.911905155634756 ], [ 18.119144619999901, 57.531105155634762 ], [ 18.681944619999911, 57.913605155634755 ], [ 19.004644619999908, 57.90860515563476 ], [ 18.711944619999912, 57.241705155634762 ], [ 18.206044619999915, 56.911905155634756 ] ] ], [ [ [ 19.334444619999914, 57.955805155634735 ], [ 19.126044619999902, 57.839705155634746 ], [ 19.034444619999903, 57.901105155634738 ], [ 19.104644619999902, 57.975305155634757 ], [ 19.334444619999914, 57.955805155634735 ] ] ], [ [ [ 11.594444619999905, 57.932505155634757 ], [ 11.501944619999904, 58.036705155634749 ], [ 11.735844619999909, 58.041705155634745 ], [ 11.729144619999914, 57.993905155634749 ], [ 11.594444619999905, 57.932505155634757 ] ] ], [ [ [ 16.8166446199999, 58.116105155634742 ], [ 16.783344619999895, 58.096705155634751 ], [ 16.778544619999906, 58.100505155634735 ], [ 16.801044619999914, 58.123305155634753 ], [ 16.8166446199999, 58.116105155634742 ] ] ], [ [ [ -6.802255380000105, 58.203005155634756 ], [ -6.86915538000008, 58.203905155634757 ], [ -6.889755380000082, 58.252505155634751 ], [ -6.809755380000098, 58.228605155634753 ], [ -6.802255380000105, 58.203005155634756 ] ] ], [ [ [ 11.806344619999919, 58.120505155634746 ], [ 11.464944619999898, 58.066105155634759 ], [ 11.401044619999908, 58.130305155634758 ], [ 11.677444619999903, 58.286705155634749 ], [ 11.806344619999919, 58.120505155634746 ] ] ], [ [ [ 19.236944619999917, 58.337205155634749 ], [ 19.186644619999896, 58.391405155634757 ], [ 19.331044619999915, 58.366105155634742 ], [ 19.294144619999912, 58.343605155634762 ], [ 19.236944619999917, 58.337205155634749 ] ] ], [ [ [ 8.743544619999909, 58.40970515563474 ], [ 8.7338446199999, 58.42970515563475 ], [ 8.761344619999903, 58.436705155634755 ], [ 8.761344619999903, 58.421405155634758 ], [ 8.743544619999909, 58.40970515563474 ] ] ], [ [ [ -6.204155380000088, 58.356105155634751 ], [ -6.32805538000008, 58.234405155634747 ], [ -6.172255380000081, 58.206905155634743 ], [ -6.620355380000092, 58.081905155634743 ], [ -6.396155380000096, 58.104705155634761 ], [ -6.473955380000092, 57.940305155634761 ], [ -6.66225538000009, 57.924205155634738 ], [ -6.684455380000088, 58.057505155634757 ], [ -6.735355380000101, 57.82580515563474 ], [ -7.123055380000096, 57.817505155634748 ], [ -6.8303553800001, 57.900805155634757 ], [ -7.112855380000099, 57.983905155634758 ], [ -7.040555380000086, 58.233305155634739 ], [ -6.861955380000097, 58.103905155634735 ], [ -6.7447553800001, 58.197205155634762 ], [ -6.797855380000101, 58.302205155634752 ], [ -6.266955380000098, 58.512505155634742 ], [ -6.204155380000088, 58.356105155634751 ] ] ], [ [ [ -4.153555380000086, 53.226005155634752 ], [ -3.336455380000103, 53.34720515563474 ], [ -3.102255380000088, 53.247805155634737 ], [ -3.192255380000091, 53.38550515563476 ], [ -3.069255380000101, 53.410205155634756 ], [ -2.882555380000099, 53.285305155634759 ], [ -2.702555380000092, 53.346405155634741 ], [ -2.953955380000082, 53.360305155634748 ], [ -3.107555380000093, 53.551705155634735 ], [ -2.898955380000103, 53.723005155634738 ], [ -3.053055380000103, 53.905805155634752 ], [ -2.813655380000085, 54.222805155634759 ], [ -3.22615538000008, 54.098605155634758 ], [ -3.634155380000095, 54.51190515563475 ], [ -3.381155380000081, 54.884405155634752 ], [ -3.023055380000102, 54.97050515563474 ], [ -3.571155380000079, 54.99080515563476 ], [ -3.965055380000081, 54.765305155634749 ], [ -4.393055380000078, 54.90800515563474 ], [ -4.387255380000084, 54.675505155634752 ], [ -4.852255380000088, 54.868605155634739 ], [ -4.941155380000083, 54.64890515563475 ], [ -5.174155380000087, 55.000505155634741 ], [ -4.613355380000087, 55.495005155634757 ], [ -4.915855380000096, 55.696905155634752 ], [ -4.879755380000091, 55.936105155634735 ], [ -4.481655380000092, 55.921105155634748 ], [ -4.854655380000082, 55.986505155634759 ], [ -4.8286553800001, 56.113205155634759 ], [ -4.978955380000087, 55.866105155634742 ], [ -5.173355380000089, 55.929205155634762 ], [ -5.303355380000085, 55.850505155634735 ], [ -5.3089553800001, 56.006405155634738 ], [ -4.918055380000084, 56.271105155634743 ], [ -5.032255380000095, 56.23250515563474 ], [ -5.43195538000009, 56.007805155634756 ], [ -5.514755380000082, 55.361705155634738 ], [ -5.777555380000081, 55.29670515563474 ], [ -5.573655380000105, 56.32470515563476 ], [ -5.420555380000081, 56.433005155634746 ], [ -5.220855380000103, 56.435805155634753 ], [ -5.107855380000103, 56.507805155634756 ], [ -5.398655380000093, 56.478705155634756 ], [ -5.120055380000082, 56.81670515563475 ], [ -5.676955380000095, 56.493905155634749 ], [ -6.008355380000097, 56.637505155634742 ], [ -5.546955380000099, 56.691905155634757 ], [ -6.235055380000091, 56.719205155634754 ], [ -5.6608553800001, 56.868905155634749 ], [ -5.921955380000099, 56.888005155634758 ], [ -5.821955380000105, 57.006105155634756 ], [ -5.643355380000088, 56.971705155634751 ], [ -5.520355380000098, 56.996405155634747 ], [ -5.72475538000009, 57.113005155634752 ], [ -5.399755380000101, 57.105805155634741 ], [ -5.648955380000103, 57.160605155634741 ], [ -5.406155380000087, 57.229405155634751 ], [ -5.598855380000089, 57.330505155634754 ], [ -5.450355380000104, 57.42030515563475 ], [ -5.819155380000097, 57.363905155634754 ], [ -5.839755380000099, 57.572805155634754 ], [ -5.6505553800001, 57.508005155634734 ], [ -5.508655380000079, 57.53470515563474 ], [ -5.81035538000009, 57.637805155634751 ], [ -5.8166553800001, 57.821705155634746 ], [ -5.102855380000079, 57.850805155634745 ], [ -5.4553553800001, 58.07640515563476 ], [ -5.279755380000097, 58.079705155634755 ], [ -5.39225538000008, 58.259405155634752 ], [ -5.071655380000095, 58.264705155634758 ], [ -5.174755380000079, 58.350005155634747 ], [ -5.004755380000091, 58.623305155634753 ], [ -4.701655380000091, 58.558605155634737 ], [ -4.756655380000097, 58.442505155634748 ], [ -4.565055380000103, 58.57610515563475 ], [ -3.0255553800001, 58.647505155634761 ], [ -3.208655380000096, 58.30440515563474 ], [ -4.015055380000092, 57.867805155634741 ], [ -4.39225538000008, 57.905305155634736 ], [ -4.04325538000009, 57.814405155634759 ], [ -3.773055380000102, 57.851105155634755 ], [ -3.977855380000079, 57.698305155634742 ], [ -4.29665538000009, 57.674405155634744 ], [ -4.435855380000106, 57.575005155634742 ], [ -4.04665538000009, 57.642805155634747 ], [ -4.196655380000095, 57.485805155634736 ], [ -3.488055380000105, 57.709405155634741 ], [ -2.075555380000083, 57.69940515563475 ], [ -1.773355380000083, 57.458005155634751 ], [ -2.527255380000099, 56.578605155634747 ], [ -3.278055380000097, 56.35750515563474 ], [ -2.884455380000105, 56.45140515563476 ], [ -2.582855380000098, 56.268005155634754 ], [ -3.725355380000082, 56.027505155634756 ], [ -3.053055380000103, 55.943605155634756 ], [ -2.631155380000081, 56.05470515563475 ], [ -1.633955380000089, 55.580805155634735 ], [ -1.297555380000091, 54.76360515563475 ], [ -0.075055380000094, 54.111905155634744 ], [ -0.215055380000081, 54.015005155634739 ], [ 0.141044619999917, 53.627205155634741 ], [ 0.151944619999909, 53.591905155634734 ], [ 0.118044619999921, 53.564405155634759 ], [ -0.272555380000085, 53.735505155634755 ], [ -0.718955380000097, 53.69970515563476 ], [ -0.297855380000101, 53.71280515563474 ], [ 0.235544619999899, 53.399405155634739 ], [ 0.341644619999897, 53.09580515563475 ], [ 0.000044619999898, 52.87950515563476 ], [ 0.363344619999907, 52.780305155634736 ], [ 0.545844619999912, 52.966105155634736 ], [ 1.282144619999912, 52.927505155634762 ], [ 1.675244619999916, 52.748005155634743 ], [ 1.749444619999906, 52.455805155634735 ], [ 1.579644619999897, 52.07640515563476 ], [ 1.328544619999917, 51.92830515563476 ], [ 1.160244619999901, 52.023305155634759 ], [ 1.223544619999899, 51.808905155634747 ], [ 0.699644619999901, 51.71940515563476 ], [ 0.931644619999901, 51.738605155634744 ], [ 0.950544619999903, 51.606405155634761 ], [ 0.789444619999898, 51.52420515563476 ], [ 0.6488446199999, 51.536705155634749 ], [ 0.464944619999898, 51.503005155634739 ], [ 0.382744619999897, 51.450505155634758 ], [ 0.904944619999895, 51.340805155634754 ], [ 1.385544619999905, 51.387805155634751 ], [ 1.390244619999919, 51.154205155634756 ], [ 0.974944619999917, 50.931905155634738 ], [ 0.2421446199999, 50.738005155634752 ], [ -0.796455380000083, 50.725305155634757 ], [ -0.926955380000095, 50.839405155634736 ], [ -1.154755380000097, 50.844205155634754 ], [ -2.434455380000088, 50.541805155634748 ], [ -2.924755380000079, 50.731905155634749 ], [ -3.437255380000096, 50.605005155634743 ], [ -3.716655380000105, 50.206705155634737 ], [ -4.380055380000101, 50.363905155634754 ], [ -5.048055380000079, 50.171105155634748 ], [ -5.193055380000089, 49.955305155634747 ], [ -5.470555380000093, 50.125005155634753 ], [ -5.712555380000083, 50.053605155634742 ], [ -4.781455380000097, 50.59440515563476 ], [ -4.22645538000009, 51.189205155634752 ], [ -3.028355380000079, 51.206105155634745 ], [ -2.380055380000101, 51.755505155634737 ], [ -3.346155380000084, 51.378605155634759 ], [ -3.840355380000091, 51.620805155634756 ], [ -4.277855380000091, 51.556705155634759 ], [ -4.074755380000084, 51.677205155634752 ], [ -4.574455380000103, 51.73420515563474 ], [ -4.941455380000093, 51.594205155634754 ], [ -5.051455380000078, 51.620305155634739 ], [ -4.861155380000099, 51.713305155634757 ], [ -4.884455380000105, 51.746705155634757 ], [ -5.246955380000088, 51.730305155634753 ], [ -5.101955380000078, 51.778905155634746 ], [ -5.239155380000085, 51.916405155634735 ], [ -4.130855380000099, 52.334705155634751 ], [ -4.133655380000079, 52.914405155634753 ], [ -4.760855380000095, 52.78900515563474 ], [ -4.153555380000086, 53.226005155634752 ] ] ], [ [ [ -2.918355380000094, 58.731905155634749 ], [ -2.970555380000093, 58.74190515563474 ], [ -3.03695538000008, 58.818005155634737 ], [ -2.886455380000086, 58.831905155634743 ], [ -2.918355380000094, 58.731905155634749 ] ] ], [ [ [ -3.231455380000085, 58.775505155634747 ], [ -3.300855380000087, 58.778005155634744 ], [ -3.418055380000084, 58.904205155634756 ], [ -3.134755380000087, 58.800805155634762 ], [ -3.231455380000085, 58.775505155634747 ] ] ], [ [ [ 5.778344619999899, 58.947505155634744 ], [ 5.760844619999915, 58.945805155634744 ], [ 5.754944619999918, 58.956405155634755 ], [ 5.769644619999895, 58.956705155634737 ], [ 5.778344619999899, 58.947505155634744 ] ] ], [ [ [ 5.961944619999912, 58.97220515563474 ], [ 5.944444619999899, 58.97050515563474 ], [ 5.944944619999916, 58.977505155634745 ], [ 5.959444619999914, 58.982905155634754 ], [ 5.961944619999912, 58.97220515563474 ] ] ], [ [ [ 17.6913446199999, 58.916905155634751 ], [ 17.639144619999911, 58.97110515563476 ], [ 17.675844619999907, 59.05470515563475 ], [ 17.721644619999921, 59.007805155634756 ], [ 17.6913446199999, 58.916905155634751 ] ] ], [ [ [ 18.405844619999897, 59.02390515563475 ], [ 18.3571446199999, 59.035005155634749 ], [ 18.479144619999914, 59.120005155634757 ], [ 18.490544619999895, 59.098005155634738 ], [ 18.405844619999897, 59.02390515563475 ] ] ], [ [ [ 5.726344619999907, 59.078005155634756 ], [ 5.694444619999899, 59.080005155634737 ], [ 5.548344619999909, 59.130505155634737 ], [ 5.688844619999912, 59.12920515563475 ], [ 5.726344619999907, 59.078005155634756 ] ] ], [ [ [ -2.793055380000084, 58.95140515563476 ], [ -3.195055380000099, 58.911105155634758 ], [ -3.35145538000009, 59.106405155634761 ], [ -3.076955380000101, 59.121705155634757 ], [ -2.793055380000084, 58.95140515563476 ] ] ], [ [ [ 5.952744619999919, 59.228305155634743 ], [ 5.909644619999909, 59.27420515563476 ], [ 6.059144619999898, 59.260805155634742 ], [ 6.045844619999912, 59.248005155634743 ], [ 5.952744619999919, 59.228305155634743 ] ] ], [ [ [ 18.537144619999907, 59.223905155634739 ], [ 18.435544619999916, 59.253605155634759 ], [ 18.389444619999921, 59.28470515563474 ], [ 18.610244619999918, 59.25420515563475 ], [ 18.537144619999907, 59.223905155634739 ] ] ], [ [ [ -2.681455380000102, 59.195805155634744 ], [ -2.555555380000101, 59.30300515563475 ], [ -2.390355380000102, 59.28300515563474 ], [ -2.620555380000098, 59.236105155634746 ], [ -2.681455380000102, 59.195805155634744 ] ] ], [ [ [ -2.890055380000092, 59.29530515563475 ], [ -2.84975538000009, 59.268005155634754 ], [ -2.877555380000103, 59.228605155634753 ], [ -3.076455380000084, 59.331405155634755 ], [ -2.890055380000092, 59.29530515563475 ] ] ], [ [ [ 5.287744619999899, 59.218905155634744 ], [ 5.155244619999905, 59.146905155634741 ], [ 5.183544619999907, 59.411905155634756 ], [ 5.285544619999911, 59.321405155634736 ], [ 5.287744619999899, 59.218905155634744 ] ] ], [ [ [ 17.7869446199999, 59.310505155634743 ], [ 17.6719446199999, 59.334705155634751 ], [ 17.605544619999904, 59.416705155634745 ], [ 17.7738446199999, 59.372805155634737 ], [ 17.7869446199999, 59.310505155634743 ] ] ], [ [ [ 17.734644619999898, 59.296105155634748 ], [ 17.817444619999918, 59.277805155634738 ], [ 17.622744619999906, 59.305305155634741 ], [ 17.520244619999914, 59.418305155634741 ], [ 17.734644619999898, 59.296105155634748 ] ] ], [ [ [ 17.266344619999899, 59.374405155634761 ], [ 17.147144619999921, 59.386705155634743 ], [ 17.069944619999916, 59.459405155634741 ], [ 17.266944619999919, 59.444205155634748 ], [ 17.266344619999899, 59.374405155634761 ] ] ], [ [ [ 18.575544619999903, 59.448305155634742 ], [ 18.570244619999897, 59.526405155634748 ], [ 18.746944619999908, 59.54500515563474 ], [ 18.591344619999916, 59.501105155634761 ], [ 18.575544619999903, 59.448305155634742 ] ] ], [ [ [ 5.263344619999913, 59.798605155634746 ], [ 5.345244619999903, 59.704205155634739 ], [ 5.192144619999908, 59.741405155634752 ], [ 5.1488446199999, 59.581105155634745 ], [ 5.1074446199999, 59.864405155634742 ], [ 5.263344619999913, 59.798605155634746 ] ] ], [ [ [ 23.705844619999908, 59.927205155634752 ], [ 23.402144619999916, 59.900805155634757 ], [ 23.369944619999899, 59.911405155634739 ], [ 23.538344619999918, 59.960305155634742 ], [ 23.705844619999908, 59.927205155634752 ] ] ], [ [ [ 5.413044619999908, 59.751705155634752 ], [ 5.305244619999911, 59.793005155634759 ], [ 5.276344619999918, 59.966905155634734 ], [ 5.468344619999897, 59.886405155634762 ], [ 5.413044619999908, 59.751705155634752 ] ] ], [ [ [ 22.833544619999913, 59.956405155634755 ], [ 23.001944619999904, 59.960505155634749 ], [ 23.072444619999914, 59.95110515563475 ], [ 22.917444619999912, 59.898305155634759 ], [ 22.833544619999913, 59.956405155634755 ] ] ], [ [ [ 5.5249446199999, 59.893305155634735 ], [ 5.3577446199999, 59.986905155634744 ], [ 5.658044619999913, 60.075305155634751 ], [ 5.659644619999909, 59.993905155634749 ], [ 5.5249446199999, 59.893305155634735 ] ] ], [ [ [ 22.438844619999912, 59.995805155634756 ], [ 22.373344619999898, 59.990005155634762 ], [ 22.351944619999898, 60.066905155634757 ], [ 22.440544619999912, 60.072505155634744 ], [ 22.438844619999912, 59.995805155634756 ] ] ], [ [ [ 20.210844619999904, 59.980005155634743 ], [ 20.137144619999901, 59.991705155634762 ], [ 19.999144619999896, 60.055305155634741 ], [ 20.205244619999917, 60.063605155634761 ], [ 20.210844619999904, 59.980005155634743 ] ] ], [ [ [ 5.268044619999898, 60.005005155634748 ], [ 5.168044619999904, 60.031405155634744 ], [ 5.172744619999918, 60.121705155634757 ], [ 5.259644619999904, 60.060805155634753 ], [ 5.268044619999898, 60.005005155634748 ] ] ], [ [ [ 20.270544619999896, 60.057505155634757 ], [ 20.200244619999921, 60.085805155634759 ], [ 20.215544619999918, 60.139205155634741 ], [ 20.292144619999902, 60.125305155634734 ], [ 20.270544619999896, 60.057505155634757 ] ] ], [ [ [ 5.954644619999897, 60.089405155634736 ], [ 5.924144619999907, 60.145305155634745 ], [ 6.016944619999919, 60.146705155634734 ], [ 6.017744619999917, 60.112805155634746 ], [ 5.954644619999897, 60.089405155634736 ] ] ], [ [ [ 21.598044619999911, 60.098005155634738 ], [ 21.520544619999896, 60.093605155634762 ], [ 21.485244619999918, 60.113905155634754 ], [ 21.655544619999915, 60.155505155634742 ], [ 21.598044619999911, 60.098005155634738 ] ] ], [ [ [ 21.748844619999915, 60.111405155634756 ], [ 21.715544619999918, 60.183005155634746 ], [ 21.885244619999895, 60.177205155634752 ], [ 21.864644619999922, 60.155005155634754 ], [ 21.748844619999915, 60.111405155634756 ] ] ], [ [ [ 21.396644619999904, 60.178605155634742 ], [ 21.385244619999895, 60.156705155634754 ], [ 21.268344619999908, 60.188005155634741 ], [ 21.350244619999899, 60.204705155634755 ], [ 21.396644619999904, 60.178605155634742 ] ] ], [ [ [ 22.000844619999896, 60.129405155634757 ], [ 21.937444619999894, 60.17000515563474 ], [ 22.060844619999898, 60.203905155634757 ], [ 22.070244619999897, 60.190805155634749 ], [ 22.000844619999896, 60.129405155634757 ] ] ], [ [ [ 25.848544619999899, 60.195505155634734 ], [ 25.829944619999907, 60.192505155634748 ], [ 25.810544619999916, 60.204205155634739 ], [ 25.874944619999894, 60.211105155634741 ], [ 25.848544619999899, 60.195505155634734 ] ] ], [ [ [ 22.824444619999895, 60.227205155634735 ], [ 22.736044619999916, 60.003005155634739 ], [ 22.469444619999905, 60.000005155634753 ], [ 22.449644619999901, 60.218305155634752 ], [ 22.5877446199999, 60.202505155634739 ], [ 22.824444619999895, 60.227205155634735 ] ] ], [ [ [ 22.2421446199999, 60.181105155634739 ], [ 22.217744619999905, 60.218605155634762 ], [ 22.294444619999922, 60.248605155634735 ], [ 22.302744619999913, 60.217805155634736 ], [ 22.2421446199999, 60.181105155634739 ] ] ], [ [ [ 19.676644619999905, 60.15690515563476 ], [ 19.562744619999904, 60.122805155634737 ], [ 19.510544619999905, 60.175305155634746 ], [ 19.601944619999898, 60.255805155634746 ], [ 19.676644619999905, 60.15690515563476 ] ] ], [ [ [ 5.216944619999907, 60.24190515563474 ], [ 5.199644619999901, 60.251105155634761 ], [ 5.233344619999912, 60.254705155634738 ], [ 5.231344619999902, 60.248605155634735 ], [ 5.216944619999907, 60.24190515563474 ] ] ], [ [ [ 20.397144619999921, 60.195005155634746 ], [ 20.341944619999907, 60.235305155634748 ], [ 20.366044619999911, 60.265505155634756 ], [ 20.4410446199999, 60.253005155634739 ], [ 20.397144619999921, 60.195005155634746 ] ] ], [ [ [ 20.847144619999909, 60.247805155634737 ], [ 20.797144619999898, 60.228305155634743 ], [ 20.776044619999908, 60.277205155634746 ], [ 20.797144619999898, 60.286405155634739 ], [ 20.847144619999909, 60.247805155634737 ] ] ], [ [ [ 25.677144619999922, 60.235005155634738 ], [ 25.634944619999914, 60.19800515563476 ], [ 25.561044619999905, 60.265805155634737 ], [ 25.595244619999903, 60.291905155634751 ], [ 25.677144619999922, 60.235005155634738 ] ] ], [ [ [ 22.342144619999914, 60.28300515563474 ], [ 22.213344619999901, 60.241705155634762 ], [ 22.068844619999908, 60.268605155634745 ], [ 22.096044619999901, 60.307805155634739 ], [ 22.342144619999914, 60.28300515563474 ] ] ], [ [ [ 22.383344619999917, 60.288305155634745 ], [ 22.325244619999921, 60.334705155634751 ], [ 22.476944619999898, 60.323605155634752 ], [ 22.452744619999919, 60.306405155634749 ], [ 22.383344619999917, 60.288305155634745 ] ] ], [ [ [ 20.084644619999921, 60.350305155634757 ], [ 20.277444619999898, 60.27420515563476 ], [ 20.092144619999914, 60.17030515563475 ], [ 20.0252446199999, 60.310505155634743 ], [ 19.943844619999908, 60.042805155634753 ], [ 19.648344619999904, 60.256705155634748 ], [ 19.809144619999898, 60.185005155634755 ], [ 19.937144619999913, 60.288905155634737 ], [ 19.824944619999911, 60.392205155634755 ], [ 20.084644619999921, 60.350305155634757 ] ] ], [ [ [ 5.111944619999917, 60.185805155634753 ], [ 4.946944619999897, 60.249205155634755 ], [ 4.942444619999918, 60.427505155634762 ], [ 5.089444619999909, 60.32610515563475 ], [ 5.111944619999917, 60.185805155634753 ] ] ], [ [ [ 21.9827446199999, 60.324205155634743 ], [ 21.789944619999915, 60.372505155634755 ], [ 21.807444619999899, 60.465505155634744 ], [ 21.9333446199999, 60.416705155634745 ], [ 21.9827446199999, 60.324205155634743 ] ] ], [ [ [ 18.569944619999916, 60.307805155634739 ], [ 18.401044619999908, 60.365305155634744 ], [ 18.374144619999896, 60.499705155634743 ], [ 18.422444619999908, 60.486705155634738 ], [ 18.569944619999916, 60.307805155634739 ] ] ], [ [ [ 21.751644619999894, 60.498305155634753 ], [ 21.6916446199999, 60.450305155634751 ], [ 21.684444619999908, 60.452805155634749 ], [ 21.729944619999912, 60.520305155634745 ], [ 21.751644619999894, 60.498305155634753 ] ] ], [ [ [ 5.195244619999897, 60.408905155634741 ], [ 5.138544619999919, 60.396105155634743 ], [ 5.000844619999896, 60.531105155634762 ], [ 5.179444619999913, 60.48280515563475 ], [ 5.195244619999897, 60.408905155634741 ] ] ], [ [ [ 21.328844619999899, 60.481105155634751 ], [ 21.275844619999901, 60.478005155634762 ], [ 21.226944619999898, 60.552505155634762 ], [ 21.278044619999918, 60.540305155634755 ], [ 21.328844619999899, 60.481105155634751 ] ] ], [ [ [ 21.483344619999912, 60.520305155634745 ], [ 21.432444619999899, 60.469705155634742 ], [ 21.321944619999897, 60.543005155634759 ], [ 21.392744619999917, 60.556705155634759 ], [ 21.483344619999912, 60.520305155634745 ] ] ], [ [ [ 5.185244619999906, 60.506105155634756 ], [ 4.987144619999896, 60.561105155634735 ], [ 4.926944619999915, 60.605305155634753 ], [ 5.121644619999898, 60.578005155634756 ], [ 5.185244619999906, 60.506105155634756 ] ] ], [ [ [ -1.296155380000101, 60.491105155634742 ], [ -1.03725538000009, 60.444205155634748 ], [ -1.268655380000098, 59.851105155634755 ], [ -1.378055380000092, 59.902205155634746 ], [ -1.291455380000087, 60.241405155634752 ], [ -1.448655380000105, 60.151105155634738 ], [ -1.693055380000089, 60.279705155634744 ], [ -1.32035538000008, 60.356405155634761 ], [ -1.546955380000099, 60.535805155634748 ], [ -1.301955380000095, 60.636705155634743 ], [ -1.296155380000101, 60.491105155634742 ] ] ], [ [ [ 21.290244619999896, 60.612205155634754 ], [ 21.289144619999917, 60.561405155634745 ], [ 21.2141446199999, 60.619705155634747 ], [ 21.266644619999909, 60.643605155634745 ], [ 21.290244619999896, 60.612205155634754 ] ] ], [ [ [ 5.549944619999906, 60.431405155634749 ], [ 5.359944619999908, 60.52390515563475 ], [ 5.675844619999907, 60.683005155634746 ], [ 5.681644619999901, 60.472805155634759 ], [ 5.549944619999906, 60.431405155634749 ] ] ], [ [ [ -1.029455380000087, 60.495805155634756 ], [ -1.170355380000103, 60.527205155634746 ], [ -1.098655380000082, 60.730005155634743 ], [ -0.991155380000095, 60.720005155634752 ], [ -1.029455380000087, 60.495805155634756 ] ] ], [ [ [ 5.158344619999895, 60.581705155634737 ], [ 5.007744619999897, 60.620005155634757 ], [ 4.854444619999896, 60.73250515563474 ], [ 4.979944619999912, 60.714705155634746 ], [ 5.158344619999895, 60.581705155634737 ] ] ], [ [ [ -0.819755380000089, 60.688905155634743 ], [ -0.965555380000097, 60.688005155634741 ], [ -0.878355380000102, 60.84440515563476 ], [ -0.758055380000087, 60.817805155634758 ], [ -0.819755380000089, 60.688905155634743 ] ] ], [ [ [ 21.327444619999909, 60.877205155634741 ], [ 21.263844619999901, 60.87920515563475 ], [ 21.2541446199999, 60.958905155634753 ], [ 21.3571446199999, 60.921905155634747 ], [ 21.327444619999909, 60.877205155634741 ] ] ], [ [ [ 4.696344619999905, 60.987205155634754 ], [ 4.6308446199999, 61.006705155634748 ], [ 4.628044619999912, 61.064405155634759 ], [ 4.676344619999895, 61.062505155634753 ], [ 4.696344619999905, 60.987205155634754 ] ] ], [ [ [ 4.986344619999898, 61.104405155634751 ], [ 4.8046446199999, 61.044405155634749 ], [ 4.788044619999908, 61.146405155634753 ], [ 4.938844619999912, 61.188305155634751 ], [ 4.986344619999898, 61.104405155634751 ] ] ], [ [ [ -6.655255380000085, 61.389405155634748 ], [ -6.845855380000103, 61.468005155634742 ], [ -6.96275538000009, 61.619205155634759 ], [ -6.72445538000008, 61.573305155634742 ], [ -6.655255380000085, 61.389405155634748 ] ] ], [ [ [ 4.934144619999898, 61.77420515563476 ], [ 4.804144619999903, 61.840505155634744 ], [ 5.221944619999903, 61.84550515563474 ], [ 5.174944619999906, 61.822205155634762 ], [ 4.934144619999898, 61.77420515563476 ] ] ], [ [ [ -6.604155380000094, 61.821705155634746 ], [ -6.652255380000099, 61.742805155634741 ], [ -6.908355380000103, 61.904705155634744 ], [ -6.776955380000089, 61.895305155634745 ], [ -6.604155380000094, 61.821705155634746 ] ] ], [ [ [ 5.0680446199999, 61.923005155634755 ], [ 5.059144619999898, 61.920505155634757 ], [ 5.009644619999904, 62.01360515563475 ], [ 5.1271446199999, 61.99250515563476 ], [ 5.0680446199999, 61.923005155634755 ] ] ], [ [ [ -7.049755380000079, 62.067805155634758 ], [ -7.201655380000091, 62.018605155634745 ], [ -7.434955380000105, 62.140305155634749 ], [ -7.2233553800001, 62.159405155634758 ], [ -7.049755380000079, 62.067805155634758 ] ] ], [ [ [ 5.647744619999912, 62.187505155634753 ], [ 5.506044619999898, 62.224405155634756 ], [ 5.808044619999919, 62.273005155634749 ], [ 5.788844619999907, 62.209405155634741 ], [ 5.647744619999912, 62.187505155634753 ] ] ], [ [ [ -6.706955380000096, 61.937505155634753 ], [ -7.232255380000083, 62.172505155634738 ], [ -7.210855380000083, 62.28470515563474 ], [ -7.065855380000102, 62.282205155634742 ], [ -6.990855380000085, 62.193005155634737 ], [ -6.72475538000009, 62.035005155634749 ], [ -6.706955380000096, 61.937505155634753 ] ] ], [ [ [ -6.619955380000079, 62.229705155634761 ], [ -6.685855380000106, 62.245005155634757 ], [ -6.720855380000103, 62.331405155634755 ], [ -6.625555380000094, 62.253305155634749 ], [ -6.619955380000079, 62.229705155634761 ] ] ], [ [ [ -6.657455380000101, 62.092505155634754 ], [ -6.921955380000099, 62.167205155634761 ], [ -7.060255380000086, 62.313605155634761 ], [ -6.60115538000008, 62.196905155634752 ], [ -6.657455380000101, 62.092505155634754 ] ] ], [ [ [ -6.418655380000104, 62.183905155634747 ], [ -6.572455380000093, 62.21170515563476 ], [ -6.548955380000081, 62.300905155634737 ], [ -6.5743553800001, 62.349905155634744 ], [ -6.418655380000104, 62.183905155634747 ] ] ], [ [ [ -6.585855380000083, 62.256405155634738 ], [ -6.664455380000078, 62.322505155634744 ], [ -6.6608553800001, 62.372505155634755 ], [ -6.56635538000009, 62.296405155634758 ], [ -6.585855380000083, 62.256405155634738 ] ] ], [ [ [ -6.406155380000087, 62.284405155634758 ], [ -6.480255380000102, 62.297805155634748 ], [ -6.5452553800001, 62.38690515563475 ], [ -6.489155380000085, 62.381405155634738 ], [ -6.406155380000087, 62.284405155634758 ] ] ], [ [ [ 5.840544619999918, 62.240005155634762 ], [ 5.804944619999901, 62.36690515563474 ], [ 5.977444619999915, 62.411105155634758 ], [ 6.0238446199999, 62.327205155634758 ], [ 5.840544619999918, 62.240005155634762 ] ] ], [ [ [ 6.2538446199999, 62.391705155634739 ], [ 6.096344619999911, 62.393905155634755 ], [ 6.023044619999922, 62.435505155634743 ], [ 6.333544619999913, 62.413305155634745 ], [ 6.2538446199999, 62.391705155634739 ] ] ], [ [ [ 17.509144619999915, 62.363305155634762 ], [ 17.422144619999898, 62.372505155634755 ], [ 17.3671446199999, 62.471705155634751 ], [ 17.472144619999909, 62.458305155634761 ], [ 17.509144619999915, 62.363305155634762 ] ] ], [ [ [ 6.736644619999907, 62.667205155634761 ], [ 6.649644619999918, 62.681405155634749 ], [ 6.919444619999922, 62.709205155634734 ], [ 6.892744619999917, 62.689205155634752 ], [ 6.736644619999907, 62.667205155634761 ] ] ], [ [ [ 18.060844619999898, 62.670805155634739 ], [ 18.039144619999917, 62.735505155634755 ], [ 18.153044619999918, 62.728905155634735 ], [ 18.154944619999895, 62.712205155634749 ], [ 18.060844619999898, 62.670805155634739 ] ] ], [ [ [ 6.886344619999903, 62.776905155634736 ], [ 6.782744619999903, 62.805305155634741 ], [ 6.775844619999901, 62.84550515563474 ], [ 6.940544619999912, 62.84440515563476 ], [ 6.886344619999903, 62.776905155634736 ] ] ], [ [ [ 7.548344619999909, 62.948305155634742 ], [ 7.510244619999895, 62.938605155634761 ], [ 7.365544619999895, 62.996405155634747 ], [ 7.711944619999912, 63.002505155634751 ], [ 7.548344619999909, 62.948305155634742 ] ] ], [ [ [ 7.809644619999915, 63.023305155634759 ], [ 7.778344619999899, 63.017505155634737 ], [ 7.679444619999913, 63.056105155634739 ], [ 7.915244619999896, 63.079205155634739 ], [ 7.809644619999915, 63.023305155634759 ] ] ], [ [ [ 8.268544619999915, 63.158905155634741 ], [ 8.208844619999894, 63.159205155634751 ], [ 8.179444619999913, 63.216905155634734 ], [ 8.309144619999898, 63.163005155634735 ], [ 8.268544619999915, 63.158905155634741 ] ] ], [ [ [ 8.060244619999906, 63.141705155634739 ], [ 7.979144619999914, 63.141105155634747 ], [ 7.926344619999895, 63.171905155634747 ], [ 8.186344619999915, 63.153005155634744 ], [ 8.060244619999906, 63.141705155634739 ] ] ], [ [ [ 21.080244619999917, 63.281405155634744 ], [ 21.413344619999918, 63.251405155634743 ], [ 21.427144619999922, 63.196905155634752 ], [ 21.246944619999908, 63.144705155634753 ], [ 21.080244619999917, 63.281405155634744 ] ] ], [ [ [ 8.391044619999917, 63.159205155634751 ], [ 8.269644619999895, 63.266105155634747 ], [ 8.576044619999919, 63.189405155634759 ], [ 8.5235446199999, 63.163905155634737 ], [ 8.391044619999917, 63.159205155634751 ] ] ], [ [ [ 22.180844619999903, 63.265305155634749 ], [ 22.0783446199999, 63.279405155634734 ], [ 22.040844619999916, 63.306905155634738 ], [ 22.192444619999918, 63.321905155634752 ], [ 22.180844619999903, 63.265305155634749 ] ] ], [ [ [ 21.323344619999915, 63.289205155634747 ], [ 21.315544619999912, 63.287205155634737 ], [ 21.231944619999922, 63.325505155634758 ], [ 21.381044619999898, 63.341105155634736 ], [ 21.323344619999915, 63.289205155634747 ] ] ], [ [ [ 8.511944619999895, 63.319205155634748 ], [ 8.431044619999909, 63.331905155634743 ], [ 8.675844619999907, 63.346705155634751 ], [ 8.646044619999913, 63.327805155634749 ], [ 8.511944619999895, 63.319205155634748 ] ] ], [ [ [ 8.162144619999907, 63.361405155634756 ], [ 7.985244619999918, 63.308905155634747 ], [ 7.778344619999899, 63.405805155634752 ], [ 8.091644619999897, 63.466705155634756 ], [ 8.162144619999907, 63.361405155634756 ] ] ], [ [ [ 8.494144619999901, 63.42830515563476 ], [ 8.279944619999895, 63.464705155634746 ], [ 8.944644619999906, 63.653905155634746 ], [ 9.176344619999895, 63.564705155634741 ], [ 8.494144619999901, 63.42830515563476 ] ] ], [ [ [ 20.885544619999905, 63.751705155634752 ], [ 20.840844619999899, 63.763005155634758 ], [ 20.8380446199999, 63.773305155634759 ], [ 20.928544619999911, 63.773305155634759 ], [ 20.885544619999905, 63.751705155634752 ] ] ], [ [ [ 8.8083446199999, 63.810305155634737 ], [ 8.794444619999922, 63.697505155634744 ], [ 8.269944619999904, 63.678905155634752 ], [ 8.528844619999916, 63.71940515563476 ], [ 8.8083446199999, 63.810305155634737 ] ] ], [ [ [ 11.062744619999904, 63.759705155634762 ], [ 11.014144619999911, 63.75420515563475 ], [ 11.0546446199999, 63.797805155634748 ], [ 11.229444619999896, 63.80300515563475 ], [ 11.062744619999904, 63.759705155634762 ] ] ], [ [ [ 22.873544619999905, 63.800005155634736 ], [ 22.868344619999903, 63.770505155634751 ], [ 22.6713446199999, 63.794405155634749 ], [ 22.806044619999909, 63.876905155634759 ], [ 22.873544619999905, 63.800005155634736 ] ] ], [ [ [ 11.453544619999917, 64.514205155634741 ], [ 11.175544619999897, 64.506905155634755 ], [ 11.038544619999897, 64.62890515563474 ], [ 11.086944619999912, 64.650005155634759 ], [ 11.453544619999917, 64.514205155634741 ] ] ], [ [ [ 11.351344619999907, 64.650005155634759 ], [ 11.318844619999908, 64.596905155634758 ], [ 11.176044619999914, 64.644405155634743 ], [ 11.279144619999897, 64.684405155634735 ], [ 11.351344619999907, 64.650005155634759 ] ] ], [ [ [ 11.261644619999913, 64.884705155634762 ], [ 11.1288446199999, 64.829405155634745 ], [ 10.824944619999911, 64.845005155634752 ], [ 11.106044619999921, 64.950305155634751 ], [ 11.261644619999913, 64.884705155634762 ] ] ], [ [ [ 11.110844619999909, 64.965805155634754 ], [ 10.815544619999912, 64.863605155634744 ], [ 10.731344619999902, 64.860305155634748 ], [ 10.777744619999908, 64.918905155634761 ], [ 11.110844619999909, 64.965805155634754 ] ] ], [ [ [ 24.734944619999908, 64.944405155634755 ], [ 24.551644619999905, 65.025005155634759 ], [ 25.034944619999919, 65.036105155634758 ], [ 24.846644619999921, 65.003605155634759 ], [ 24.734944619999908, 64.944405155634755 ] ] ], [ [ [ 11.636644619999913, 65.065305155634761 ], [ 11.531344619999913, 65.060805155634753 ], [ 11.772744619999912, 65.113605155634744 ], [ 11.749144619999896, 65.096405155634741 ], [ 11.636644619999913, 65.065305155634761 ] ] ], [ [ [ 12.156344619999913, 65.051405155634754 ], [ 12.129644619999908, 65.050305155634746 ], [ 11.981644619999912, 65.07640515563476 ], [ 12.183544619999907, 65.208305155634761 ], [ 12.315244619999902, 65.110005155634738 ], [ 12.156344619999913, 65.051405155634754 ] ] ], [ [ [ 12.075244619999921, 65.21140515563475 ], [ 12.258044619999907, 65.57610515563475 ], [ 12.502744619999902, 65.391905155634745 ], [ 12.188044619999914, 65.245505155634746 ], [ 12.075244619999921, 65.21140515563475 ] ] ], [ [ [ 11.974144619999919, 65.626905155634759 ], [ 11.9005446199999, 65.583005155634751 ], [ 11.758544619999896, 65.61690515563474 ], [ 11.894444619999916, 65.704405155634745 ], [ 11.974144619999919, 65.626905155634759 ] ] ], [ [ [ 24.462144619999918, 65.76390515563476 ], [ 24.436944619999906, 65.769705155634753 ], [ 24.503044619999912, 65.780505155634742 ], [ 24.499944619999894, 65.776705155634758 ], [ 24.462144619999918, 65.76390515563476 ] ] ], [ [ [ 12.542444619999912, 65.896905155634741 ], [ 12.414944619999915, 65.893605155634745 ], [ 12.573844619999903, 66.01050515563476 ], [ 12.903544619999906, 66.008605155634754 ], [ 12.542444619999912, 65.896905155634741 ] ] ], [ [ [ 12.352444619999915, 66.022505155634761 ], [ 12.563344619999896, 66.217805155634736 ], [ 12.657144619999912, 66.104705155634761 ], [ 12.531944619999905, 66.05470515563475 ], [ 12.352444619999915, 66.022505155634761 ] ] ], [ [ [ 12.986644619999907, 66.228305155634743 ], [ 12.930844619999903, 66.226405155634737 ], [ 13.158344619999895, 66.277505155634756 ], [ 13.087144619999918, 66.255505155634737 ], [ 12.986644619999907, 66.228305155634743 ] ] ], [ [ [ 12.7966446199999, 66.214405155634736 ], [ 12.715844619999899, 66.247505155634755 ], [ 12.8708446199999, 66.277505155634756 ], [ 12.860544619999899, 66.236905155634744 ], [ 12.7966446199999, 66.214405155634736 ] ] ], [ [ [ -16.021955380000094, 66.536105155634758 ], [ -15.381955380000079, 66.142805155634747 ], [ -14.943655380000081, 66.37890515563474 ], [ -14.710855380000083, 66.36720515563475 ], [ -15.178355380000085, 66.111905155634744 ], [ -14.618955380000102, 65.994405155634738 ], [ -14.8483553800001, 65.731405155634761 ], [ -14.340355380000091, 65.786105155634758 ], [ -14.563655380000085, 65.495005155634757 ], [ -14.292555380000096, 65.656105155634762 ], [ -13.680555380000101, 65.548005155634755 ], [ -13.739455380000095, 65.314405155634759 ], [ -13.567255380000091, 65.262505155634742 ], [ -14.034755380000092, 65.193005155634737 ], [ -13.499455380000086, 65.069105155634745 ], [ -13.988055380000105, 65.063905155634743 ], [ -13.700055380000094, 64.922505155634738 ], [ -14.050855380000087, 64.933905155634747 ], [ -13.765355380000102, 64.861405155634756 ], [ -14.018055380000078, 64.723605155634758 ], [ -14.511155380000105, 64.797505155634738 ], [ -14.365955380000088, 64.674105155634734 ], [ -14.584155380000084, 64.586605155634757 ], [ -14.459955380000082, 64.54700515563475 ], [ -14.539155380000096, 64.406105155634762 ], [ -14.925055380000089, 64.264205155634741 ], [ -15.383355380000097, 64.371905155634735 ], [ -16.488655380000097, 63.895805155634761 ], [ -17.8697553800001, 63.731905155634749 ], [ -17.93335538000008, 63.528305155634754 ], [ -18.775055380000083, 63.391405155634757 ], [ -20.196955380000105, 63.542505155634743 ], [ -20.541155380000106, 63.70710515563475 ], [ -20.361955380000097, 63.761705155634743 ], [ -21.18365538000009, 63.880805155634746 ], [ -21.053655380000095, 63.945005155634746 ], [ -22.689155380000102, 63.805505155634748 ], [ -22.70335538000009, 64.080805155634735 ], [ -22.045555380000081, 64.04670515563474 ], [ -21.699455380000103, 64.178905155634752 ], [ -21.880055380000101, 64.232205155634759 ], [ -21.759155380000095, 64.340305155634738 ], [ -21.362855380000099, 64.385005155634744 ], [ -22.102555380000098, 64.314405155634759 ], [ -21.978955380000087, 64.500805155634751 ], [ -21.508055380000087, 64.645505155634751 ], [ -22.170855380000091, 64.453905155634757 ], [ -22.407255380000095, 64.812505155634753 ], [ -23.840355380000091, 64.726105155634755 ], [ -24.059555380000091, 64.890905155634741 ], [ -21.835855380000083, 65.030305155634736 ], [ -21.736955380000097, 65.19940515563475 ], [ -22.561455380000098, 65.171105155634748 ], [ -21.704855380000083, 65.447805155634754 ], [ -22.335455380000099, 65.480905155634744 ], [ -22.159155380000101, 65.541605155634741 ], [ -22.108655380000101, 65.595005155634752 ], [ -23.879455380000081, 65.402505155634756 ], [ -24.542255380000086, 65.497805155634737 ], [ -24.317855380000083, 65.637505155634742 ], [ -23.89225538000008, 65.518005155634754 ], [ -23.805955380000086, 65.531505155634747 ], [ -24.067855380000083, 65.62890515563474 ], [ -23.803855380000101, 65.609105155634737 ], [ -24.105855380000094, 65.806605155634756 ], [ -23.527255380000099, 65.627805155634761 ], [ -23.22645538000009, 65.741605155634758 ], [ -23.873055380000096, 65.866605155634758 ], [ -23.213155380000103, 65.838605155634738 ], [ -23.818955380000091, 66.01330515563474 ], [ -23.37115538000009, 65.986705155634738 ], [ -23.665555380000086, 66.111105155634746 ], [ -23.473655380000082, 66.199205155634743 ], [ -22.677855380000096, 66.04500515563474 ], [ -22.652855380000091, 65.827505155634739 ], [ -22.499755380000096, 65.966105155634736 ], [ -22.424755380000079, 65.847505155634749 ], [ -22.500055380000106, 66.077005155634751 ], [ -22.972255380000092, 66.221405155634741 ], [ -22.434155380000078, 66.267805155634747 ], [ -23.188655380000085, 66.349705155634737 ], [ -22.937555380000106, 66.466405155634746 ], [ -22.42165538000009, 66.433305155634756 ], [ -21.651455380000101, 66.018905155634755 ], [ -21.399455380000092, 66.027205155634746 ], [ -21.603055380000086, 65.953305155634737 ], [ -21.28865538000008, 65.925305155634746 ], [ -21.337855380000093, 65.733305155634739 ], [ -21.777855380000091, 65.765805155634737 ], [ -21.3089553800001, 65.596905155634758 ], [ -21.084455380000094, 65.159205155634751 ], [ -21.094755380000095, 65.452505155634739 ], [ -20.927255380000105, 65.588905155634748 ], [ -20.664155380000096, 65.690805155634749 ], [ -20.47445538000008, 65.487805155634746 ], [ -20.325555380000083, 65.628605155634759 ], [ -20.420855380000091, 66.085805155634759 ], [ -20.094755380000095, 66.124705155634743 ], [ -19.451655380000091, 65.725805155634745 ], [ -19.45305538000008, 66.056405155634749 ], [ -18.791455380000087, 66.192805155634758 ], [ -18.069455380000079, 65.643305155634735 ], [ -18.299455380000097, 66.174705155634754 ], [ -17.60915538000009, 65.987505155634736 ], [ -17.131155380000081, 66.210505155634749 ], [ -16.594755380000095, 66.091105155634736 ], [ -16.688655380000085, 66.159405155634758 ], [ -16.416455380000087, 66.275005155634759 ], [ -16.563655380000085, 66.495305155634739 ], [ -16.021955380000094, 66.536105155634758 ] ] ], [ [ [ 14.257744619999897, 67.133005155634734 ], [ 14.191944619999902, 66.999405155634761 ], [ 13.991044619999911, 67.078605155634747 ], [ 14.058544619999907, 67.11720515563475 ], [ 14.257744619999897, 67.133005155634734 ] ] ], [ [ [ 14.253044619999912, 67.358605155634748 ], [ 14.216644619999897, 67.358305155634739 ], [ 14.374944619999894, 67.422205155634757 ], [ 14.346644619999921, 67.373305155634753 ], [ 14.253044619999912, 67.358605155634748 ] ] ], [ [ [ 15.202144619999899, 67.90030515563474 ], [ 14.976644619999917, 67.905805155634752 ], [ 14.931644619999901, 67.923905155634756 ], [ 15.303544619999911, 67.92030515563475 ], [ 15.202144619999899, 67.90030515563474 ] ] ], [ [ [ 15.903344619999899, 67.978905155634735 ], [ 15.613844619999895, 67.975505155634735 ], [ 15.498844619999915, 67.987805155634746 ], [ 15.851044619999897, 68.01360515563475 ], [ 15.903344619999899, 67.978905155634735 ] ] ], [ [ [ 12.841944619999907, 67.808605155634737 ], [ 12.943844619999908, 68.006105155634756 ], [ 13.155844619999897, 68.081105155634745 ], [ 13.134444619999897, 67.952505155634739 ], [ 12.841944619999907, 67.808605155634737 ] ] ], [ [ [ 13.438044619999914, 68.112805155634746 ], [ 13.382444619999916, 68.028605155634736 ], [ 13.163044619999908, 68.011405155634762 ], [ 13.299144619999907, 68.149705155634749 ], [ 13.438044619999914, 68.112805155634746 ] ] ], [ [ [ 14.870544619999919, 68.211605155634757 ], [ 14.826044619999919, 68.254405155634757 ], [ 14.940544619999912, 68.268005155634754 ], [ 14.926944619999915, 68.241105155634742 ], [ 14.870544619999919, 68.211605155634757 ] ] ], [ [ [ 13.968344619999897, 68.238305155634762 ], [ 14.135844619999915, 68.239405155634742 ], [ 13.449644619999901, 68.067505155634748 ], [ 13.572744619999895, 68.264405155634748 ], [ 13.968344619999897, 68.238305155634762 ] ] ], [ [ [ 13.973344619999921, 68.253305155634749 ], [ 13.889444619999921, 68.287205155634737 ], [ 13.883344619999917, 68.302205155634752 ], [ 13.990544619999895, 68.310005155634755 ], [ 13.973344619999921, 68.253305155634749 ] ] ], [ [ [ 14.203544619999917, 68.239205155634735 ], [ 14.054944619999901, 68.286905155634756 ], [ 14.049444619999917, 68.30330515563476 ], [ 14.2141446199999, 68.301105155634744 ], [ 14.203544619999917, 68.239205155634735 ] ] ], [ [ [ 15.026344619999918, 68.355005155634743 ], [ 14.771344619999894, 68.257505155634746 ], [ 14.199644619999901, 68.152205155634746 ], [ 14.542144619999902, 68.400805155634757 ], [ 15.168844619999902, 68.450505155634758 ], [ 15.026344619999918, 68.355005155634743 ] ] ], [ [ [ 16.405544619999915, 68.411105155634758 ], [ 16.121044619999907, 68.376405155634743 ], [ 16.094444619999905, 68.396605155634759 ], [ 16.326944619999921, 68.53360515563476 ], [ 16.405544619999915, 68.411105155634758 ] ] ], [ [ [ 17.116344619999921, 68.752505155634751 ], [ 16.825244619999921, 68.719705155634742 ], [ 16.813044619999914, 68.728305155634743 ], [ 17.000544619999914, 68.854405155634751 ], [ 17.116344619999921, 68.752505155634751 ] ] ], [ [ [ 17.241644619999903, 68.788605155634755 ], [ 17.083544619999913, 68.910305155634759 ], [ 17.437744619999904, 68.865305155634744 ], [ 17.413044619999908, 68.845005155634752 ], [ 17.241644619999903, 68.788605155634755 ] ] ], [ [ [ 14.954444619999919, 68.872805155634737 ], [ 14.8588446199999, 68.875005155634753 ], [ 14.839644619999916, 68.88690515563475 ], [ 14.951044619999919, 68.926105155634744 ], [ 14.954444619999919, 68.872805155634737 ] ] ], [ [ [ 15.988044619999897, 68.751905155634759 ], [ 15.766944619999919, 68.621105155634737 ], [ 15.739444619999915, 68.526105155634738 ], [ 16.178844619999921, 68.851605155634743 ], [ 16.446044619999896, 68.843905155634744 ], [ 16.5649446199999, 68.651905155634736 ], [ 15.933044619999919, 68.369405155634738 ], [ 15.327744619999919, 68.330305155634747 ], [ 15.5891446199999, 68.478305155634743 ], [ 15.542144619999902, 68.507505155634746 ], [ 14.986644619999907, 68.247505155634755 ], [ 15.451644619999911, 68.730005155634743 ], [ 15.713544619999908, 68.698605155634752 ], [ 15.451644619999911, 68.76220515563476 ], [ 15.636044619999922, 68.946605155634742 ], [ 15.908744619999908, 68.956705155634737 ], [ 15.988044619999897, 68.751905155634759 ] ] ], [ [ [ 16.537144619999907, 68.879705155634738 ], [ 16.376044619999902, 68.906705155634754 ], [ 16.261044619999922, 68.966705155634756 ], [ 16.601644619999917, 68.945505155634734 ], [ 16.537144619999907, 68.879705155634738 ] ] ], [ [ [ 15.382744619999897, 68.845305155634762 ], [ 15.395844619999906, 68.676705155634735 ], [ 15.059144619999898, 68.572505155634744 ], [ 14.803544619999911, 68.618005155634748 ], [ 15.1499446199999, 68.749205155634755 ], [ 14.371044619999907, 68.683605155634737 ], [ 15.1485446199999, 68.812205155634743 ], [ 15.0877446199999, 69.008005155634734 ], [ 15.382744619999897, 68.845305155634762 ] ] ], [ [ [ 17.416944619999896, 68.995805155634756 ], [ 17.352744619999896, 69.024105155634757 ], [ 17.561344619999915, 69.095005155634752 ], [ 17.522744619999912, 69.047505155634738 ], [ 17.416944619999896, 68.995805155634756 ] ] ], [ [ [ 15.522444619999902, 68.906105155634762 ], [ 15.421044619999918, 68.973005155634738 ], [ 15.560244619999906, 69.094705155634742 ], [ 16.148044619999922, 69.286405155634739 ], [ 15.522444619999902, 68.906105155634762 ] ] ], [ [ [ 17.6365446199999, 69.516005155634744 ], [ 17.844144619999895, 69.589205155634758 ], [ 18.074144619999913, 69.430805155634758 ], [ 17.875844619999896, 69.239705155634752 ], [ 18.0035446199999, 69.190305155634761 ], [ 16.7752446199999, 69.064405155634759 ], [ 17.173844619999898, 69.195805155634744 ], [ 16.875844619999896, 69.221405155634741 ], [ 17.142744619999917, 69.249405155634761 ], [ 16.930844619999903, 69.392505155634737 ], [ 17.609344619999916, 69.474305155634752 ], [ 17.469144619999895, 69.597805155634759 ], [ 17.6365446199999, 69.516005155634744 ] ] ], [ [ [ 30.155544619999887, 69.781705155634754 ], [ 30.115544619999923, 69.782805155634762 ], [ 30.110544619999928, 69.787205155634737 ], [ 30.126044619999902, 69.797505155634738 ], [ 30.155544619999887, 69.781705155634754 ] ] ], [ [ [ 18.889944619999909, 69.691905155634757 ], [ 18.738344619999907, 69.557805155634739 ], [ 17.996944619999908, 69.588305155634757 ], [ 18.632144619999906, 69.689705155634741 ], [ 18.387144619999901, 69.794405155634749 ], [ 18.751344619999912, 69.682805155634739 ], [ 18.6930446199999, 69.884405155634752 ], [ 19.057744619999909, 69.787205155634737 ], [ 18.889944619999909, 69.691905155634757 ] ] ], [ [ [ 20.680244619999911, 69.808605155634737 ], [ 20.573344619999915, 69.798305155634736 ], [ 20.556344619999919, 69.851105155634755 ], [ 20.739144619999905, 69.905305155634736 ], [ 20.680244619999911, 69.808605155634737 ] ] ], [ [ [ 29.826644619999911, 69.756905155634755 ], [ 29.716344619999916, 69.766905155634745 ], [ 29.841944619999936, 69.910305155634759 ], [ 30.048044619999928, 69.827505155634739 ], [ 29.826644619999911, 69.756905155634755 ] ] ], [ [ [ 21.730244619999894, 69.931105155634739 ], [ 21.694144619999918, 69.925505155634752 ], [ 21.668544619999921, 69.941905155634757 ], [ 21.717144619999914, 69.94970515563476 ], [ 21.730244619999894, 69.931105155634739 ] ] ], [ [ [ 19.567144619999908, 69.851605155634743 ], [ 19.459444619999914, 69.842505155634754 ], [ 19.897744619999912, 69.97220515563474 ], [ 19.783344619999895, 69.868005155634748 ], [ 19.567144619999908, 69.851605155634743 ] ] ], [ [ [ 19.959144619999904, 70.005505155634737 ], [ 19.915844619999916, 70.008005155634734 ], [ 19.899144619999902, 70.016105155634747 ], [ 19.996044619999907, 70.012805155634751 ], [ 19.959144619999904, 70.005505155634737 ] ] ], [ [ [ 20.8925446199999, 70.030805155634752 ], [ 20.947444619999914, 70.001805155634756 ], [ 21.102444619999915, 70.004705155634738 ], [ 20.757744619999897, 69.990005155634762 ], [ 20.8925446199999, 70.030805155634752 ] ] ], [ [ [ 21.000844619999896, 70.019705155634753 ], [ 20.951944619999921, 70.025805155634757 ], [ 21.049144619999907, 70.049705155634754 ], [ 21.036644619999919, 70.027505155634756 ], [ 21.000844619999896, 70.019705155634753 ] ] ], [ [ [ 19.300544619999897, 70.026105155634738 ], [ 19.691944619999902, 69.994705155634747 ], [ 19.1796446199999, 69.791905155634751 ], [ 18.721044619999901, 69.934205155634757 ], [ 19.300544619999897, 70.026105155634738 ] ] ], [ [ [ 18.784944619999919, 70.111405155634756 ], [ 18.936644619999896, 70.120305155634739 ], [ 19.002744619999902, 70.084105155634759 ], [ 18.684444619999908, 69.996705155634757 ], [ 18.784944619999919, 70.111405155634756 ] ] ], [ [ [ 20.9196446199999, 70.079405155634745 ], [ 20.865544619999895, 70.076905155634748 ], [ 20.8146446199999, 70.116105155634742 ], [ 20.861344619999898, 70.149105155634757 ], [ 20.9196446199999, 70.079405155634745 ] ] ], [ [ [ 19.6074446199999, 70.101905155634753 ], [ 19.531944619999905, 70.098305155634748 ], [ 19.349644619999907, 70.131405155634738 ], [ 19.431344619999919, 70.177805155634744 ], [ 19.6074446199999, 70.101905155634753 ] ] ], [ [ [ 20.831944619999916, 70.193905155634738 ], [ 20.783844619999911, 70.056405155634749 ], [ 20.385244619999895, 70.098905155634739 ], [ 20.577744619999919, 70.231105155634751 ], [ 20.831944619999916, 70.193905155634738 ] ] ], [ [ [ 19.185244619999906, 70.122505155634755 ], [ 19.141344619999899, 70.119405155634738 ], [ 19.033544619999901, 70.161105155634758 ], [ 19.233544619999918, 70.254405155634757 ], [ 19.185244619999906, 70.122505155634755 ] ] ], [ [ [ 20.112744619999916, 70.104705155634761 ], [ 19.769944619999904, 70.065305155634761 ], [ 19.536044619999899, 70.248305155634753 ], [ 19.673544619999916, 70.287805155634757 ], [ 20.112744619999916, 70.104705155634761 ] ] ], [ [ [ 21.772744619999912, 70.266705155634739 ], [ 21.697144619999904, 70.288605155634755 ], [ 21.697744619999895, 70.381905155634755 ], [ 21.841344619999916, 70.350305155634757 ], [ 21.772744619999912, 70.266705155634739 ] ] ], [ [ [ 22.834644619999921, 70.332205155634753 ], [ 23.022744619999912, 70.259405155634752 ], [ 22.368544619999909, 70.334405155634741 ], [ 22.664444619999898, 70.391405155634757 ], [ 22.834644619999921, 70.332205155634753 ] ] ], [ [ [ 23.595844619999895, 70.578005155634756 ], [ 23.643844619999896, 70.438305155634751 ], [ 23.230544619999904, 70.278305155634754 ], [ 22.851044619999897, 70.405805155634752 ], [ 23.595844619999895, 70.578005155634756 ] ] ], [ [ [ 23.871044619999907, 70.51220515563476 ], [ 23.708044619999896, 70.547805155634748 ], [ 23.634144619999915, 70.696405155634736 ], [ 24.125844619999896, 70.615305155634744 ], [ 23.871044619999907, 70.51220515563476 ] ] ], [ [ [ 23.451644619999911, 70.78360515563476 ], [ 22.784144619999921, 70.519705155634753 ], [ 22.149444619999912, 70.464405155634736 ], [ 22.267744619999917, 70.59720515563474 ], [ 21.949644619999901, 70.646105155634743 ], [ 23.451644619999911, 70.78360515563476 ] ] ], [ [ [ 24.061944619999906, 70.908905155634741 ], [ 23.909444619999903, 70.95080515563474 ], [ 23.8808446199999, 70.993605155634739 ], [ 24.243844619999919, 70.951905155634748 ], [ 24.061944619999906, 70.908905155634741 ] ] ], [ [ [ 24.799444619999917, 71.02390515563475 ], [ 24.667744619999894, 71.043905155634761 ], [ 24.639444619999921, 71.060805155634753 ], [ 24.853544619999894, 71.090005155634756 ], [ 24.799444619999917, 71.02390515563475 ] ] ], [ [ [ 5.337044619999915, 61.592905155634739 ], [ 4.938044619999914, 61.676405155634754 ], [ 5.409944619999919, 61.911405155634739 ], [ 5.744644619999917, 61.842205155634744 ], [ 6.469144619999895, 61.800805155634762 ], [ 6.763544619999919, 61.868005155634748 ], [ 6.490844619999905, 61.825005155634742 ], [ 5.433544619999907, 61.935005155634755 ], [ 5.148044619999922, 61.892205155634755 ], [ 5.403544619999906, 62.016105155634747 ], [ 5.0863446199999, 62.186705155634755 ], [ 5.464444619999909, 62.005505155634737 ], [ 5.431644619999901, 62.181705155634759 ], [ 6.3571446199999, 62.055305155634741 ], [ 5.918044619999904, 62.215805155634754 ], [ 6.306644619999901, 62.371705155634757 ], [ 6.538044619999908, 62.104705155634761 ], [ 6.388344619999913, 62.369705155634747 ], [ 6.696644619999915, 62.445305155634756 ], [ 6.883044619999907, 62.411405155634739 ], [ 6.940244619999902, 62.112205155634754 ], [ 7.043044619999904, 62.08640515563475 ], [ 7.027744619999908, 62.269705155634753 ], [ 7.415544619999906, 62.23250515563474 ], [ 6.781344619999913, 62.478305155634743 ], [ 6.257144619999906, 62.448905155634762 ], [ 6.649644619999918, 62.497205155634745 ], [ 6.246944619999908, 62.57470515563476 ], [ 7.089944619999898, 62.647805155634742 ], [ 7.539144619999917, 62.499205155634755 ], [ 7.779644619999914, 62.571905155634752 ], [ 7.409444619999903, 62.622805155634737 ], [ 8.145244619999914, 62.690005155634751 ], [ 6.958844619999894, 62.722505155634749 ], [ 7.036344619999909, 62.967505155634754 ], [ 7.460544619999922, 62.911105155634758 ], [ 7.786644619999919, 62.966705155634756 ], [ 7.676944619999915, 62.90830515563475 ], [ 7.991344619999921, 62.971905155634758 ], [ 8.161644619999919, 62.809705155634745 ], [ 8.548344619999909, 62.653905155634746 ], [ 8.141344619999899, 62.952205155634758 ], [ 7.8791446199999, 63.01050515563476 ], [ 8.089444619999909, 63.106905155634749 ], [ 8.530844619999897, 62.841405155634746 ], [ 8.415244619999896, 62.953005155634756 ], [ 8.664144619999917, 62.981905155634749 ], [ 8.159144619999921, 63.120305155634739 ], [ 8.938344619999896, 63.206705155634737 ], [ 8.477744619999896, 63.293605155634751 ], [ 8.763544619999919, 63.345305155634762 ], [ 8.652744619999908, 63.409205155634751 ], [ 9.004944619999918, 63.467505155634754 ], [ 9.231344619999902, 63.353905155634735 ], [ 9.427744619999913, 63.376905155634759 ], [ 9.149644619999918, 63.48420515563474 ], [ 9.647444619999902, 63.623905155634745 ], [ 9.976044619999897, 63.356105155634751 ], [ 10.256644619999918, 63.261105155634752 ], [ 10.047144619999898, 63.406105155634762 ], [ 10.910244619999901, 63.45110515563475 ], [ 10.759944619999914, 63.509705155634762 ], [ 10.9216446199999, 63.598305155634748 ], [ 10.658844619999911, 63.550005155634736 ], [ 11.455844619999908, 63.787205155634737 ], [ 11.090544619999918, 63.878305155634749 ], [ 11.492744619999911, 64.019405155634743 ], [ 11.305844619999903, 64.116405155634752 ], [ 10.574144619999913, 63.80500515563476 ], [ 11.077144619999899, 63.837505155634759 ], [ 10.941944619999902, 63.738005155634752 ], [ 10.047744619999918, 63.496105155634737 ], [ 9.789144619999917, 63.662505155634747 ], [ 10.098344619999921, 63.76190515563475 ], [ 9.560244619999906, 63.659205155634751 ], [ 9.543844619999902, 63.76360515563475 ], [ 10.1896446199999, 63.930505155634748 ], [ 9.9821446199999, 63.99050515563475 ], [ 10.652144619999916, 64.353005155634762 ], [ 10.495244619999909, 64.423805155634753 ], [ 10.845844619999895, 64.368605155634739 ], [ 10.658044619999913, 64.450005155634742 ], [ 10.972144619999909, 64.601405155634737 ], [ 11.273344619999904, 64.451705155634741 ], [ 11.221644619999921, 64.316105155634759 ], [ 11.728044619999906, 64.579705155634755 ], [ 11.438344619999896, 64.711105155634741 ], [ 12.2244446199999, 64.937205155634743 ], [ 11.244444619999911, 64.730805155634741 ], [ 11.700544619999903, 64.90030515563474 ], [ 11.297144619999898, 64.883605155634754 ], [ 12.624644619999913, 65.133605155634754 ], [ 12.9396446199999, 65.308305155634756 ], [ 12.477144619999905, 65.133305155634744 ], [ 12.366044619999911, 65.161105155634758 ], [ 12.679844619999898, 65.250605155634744 ], [ 12.248844619999915, 65.228605155634753 ], [ 12.638044619999903, 65.418905155634761 ], [ 12.360844619999909, 65.647805155634742 ], [ 12.788544619999897, 65.636405155634762 ], [ 12.551044619999914, 65.748905155634745 ], [ 12.674144619999907, 65.921405155634758 ], [ 13.174944619999906, 65.849105155634746 ], [ 12.959444619999914, 66.042205155634761 ], [ 12.673844619999898, 66.066905155634757 ], [ 13.549944619999906, 66.235805155634736 ], [ 13.549644619999896, 66.100505155634735 ], [ 14.146644619999904, 66.321605155634742 ], [ 13.027144619999916, 66.186105155634735 ], [ 13.536344619999909, 66.303605155634742 ], [ 13.023344619999904, 66.322205155634762 ], [ 13.1713446199999, 66.406105155634762 ], [ 12.969944619999922, 66.518305155634735 ], [ 13.213544619999908, 66.507205155634736 ], [ 13.725544619999908, 66.601905155634753 ], [ 13.2341446199999, 66.545505155634757 ], [ 13.195844619999917, 66.663005155634735 ], [ 13.535844619999921, 66.634705155634762 ], [ 13.228044619999906, 66.712505155634759 ], [ 13.990844619999905, 66.78360515563476 ], [ 13.5469446199999, 66.926705155634735 ], [ 14.595544619999913, 67.029705155634744 ], [ 14.265244619999919, 67.078605155634747 ], [ 14.350544619999908, 67.151105155634738 ], [ 14.7555446199999, 67.121705155634757 ], [ 14.574144619999913, 67.194705155634736 ], [ 15.495544619999919, 67.065305155634761 ], [ 15.382144619999906, 67.20140515563476 ], [ 15.739644619999922, 67.172505155634738 ], [ 15.063844619999912, 67.248005155634743 ], [ 15.151944619999909, 67.308905155634747 ], [ 14.361644619999907, 67.233905155634758 ], [ 15.035844619999921, 67.570505155634734 ], [ 15.157144619999912, 67.535005155634749 ], [ 14.936244619999911, 67.470405155634737 ], [ 15.441944619999902, 67.472505155634749 ], [ 15.639944619999909, 67.266405155634757 ], [ 15.541044619999894, 67.476905155634753 ], [ 15.899144619999902, 67.558905155634747 ], [ 15.251944619999904, 67.523005155634749 ], [ 15.299144619999907, 67.716905155634734 ], [ 15.834944619999902, 67.690005155634751 ], [ 15.3791446199999, 67.797205155634757 ], [ 14.761644619999913, 67.643005155634754 ], [ 15.036044619999899, 67.740305155634744 ], [ 14.758044619999907, 67.805305155634741 ], [ 15.871044619999907, 67.923305155634736 ], [ 15.9610446199999, 68.013005155634758 ], [ 15.283044619999913, 68.035505155634738 ], [ 15.851944619999898, 68.091405155634746 ], [ 15.972144619999909, 68.245505155634746 ], [ 16.217144619999914, 67.888005155634758 ], [ 16.4958446199999, 67.794205155634742 ], [ 16.207444619999904, 68.001705155634752 ], [ 16.715244619999908, 68.06670515563475 ], [ 16.342444619999895, 68.071605155634742 ], [ 16.486944619999917, 68.186705155634755 ], [ 16.103344619999916, 68.276905155634736 ], [ 16.805844619999903, 68.131405155634738 ], [ 16.219444619999905, 68.345005155634752 ], [ 16.317144619999908, 68.36690515563474 ], [ 17.139944619999909, 68.36690515563474 ], [ 17.354644619999902, 68.173905155634756 ], [ 17.200844619999913, 68.36690515563474 ], [ 17.574644619999901, 68.357205155634759 ], [ 17.367444619999901, 68.411405155634739 ], [ 17.552744619999913, 68.52390515563475 ], [ 16.459444619999914, 68.508005155634734 ], [ 16.964944619999898, 68.70140515563476 ], [ 17.680244619999911, 68.654405155634734 ], [ 17.236044619999916, 68.754705155634738 ], [ 17.792444619999912, 68.756905155634755 ], [ 17.469944619999922, 68.830305155634747 ], [ 17.841044619999906, 68.879405155634757 ], [ 17.425844619999907, 68.905005155634754 ], [ 17.637144619999901, 69.105505155634759 ], [ 18.152144619999916, 69.152205155634746 ], [ 17.996344619999917, 69.280305155634736 ], [ 18.256944619999899, 69.486405155634756 ], [ 18.679444619999913, 69.260005155634744 ], [ 19.007144619999906, 69.28300515563474 ], [ 18.453844619999899, 69.449205155634743 ], [ 18.856044619999921, 69.550305155634746 ], [ 19.011944619999895, 69.395005155634735 ], [ 19.381344619999908, 69.313305155634751 ], [ 19.1716446199999, 69.248605155634735 ], [ 19.440544619999912, 69.225805155634745 ], [ 19.417444619999912, 69.348905155634739 ], [ 18.995544619999919, 69.46140515563475 ], [ 19.226644619999917, 69.564405155634759 ], [ 18.944144619999918, 69.613005155634752 ], [ 19.758844619999905, 69.810305155634737 ], [ 19.529144619999897, 69.39890515563475 ], [ 19.679144619999903, 69.42940515563474 ], [ 19.828044619999901, 69.714405155634736 ], [ 20.281944619999905, 69.973905155634739 ], [ 20.424944619999906, 69.869405155634738 ], [ 20.280544619999915, 69.475805155634745 ], [ 19.918344619999914, 69.260305155634754 ], [ 20.469644619999912, 69.57610515563475 ], [ 20.853044619999906, 69.489205155634735 ], [ 20.481344619999902, 69.63890515563476 ], [ 20.565844619999922, 69.761405155634762 ], [ 21.089644619999916, 69.945305155634756 ], [ 20.893544619999915, 69.849405155634756 ], [ 21.0449446199999, 69.786105155634758 ], [ 21.307144619999917, 70.019705155634753 ], [ 22.101644619999917, 69.74080515563476 ], [ 21.797144619999898, 70.03360515563476 ], [ 22.021944619999914, 70.060305155634737 ], [ 22.096644619999921, 70.113305155634762 ], [ 21.204444619999919, 70.202205155634758 ], [ 21.516344619999899, 70.303905155634752 ], [ 21.729944619999912, 70.237505155634736 ], [ 22.298544619999916, 70.283905155634741 ], [ 22.278544619999906, 70.181405155634749 ], [ 22.344144619999895, 70.144405155634743 ], [ 22.550244619999916, 70.118905155634749 ], [ 22.3283446199999, 70.171105155634748 ], [ 22.964444619999909, 70.202805155634749 ], [ 22.287744619999899, 70.038905155634737 ], [ 22.879444619999902, 70.103605155634753 ], [ 23.311944619999906, 69.940805155634749 ], [ 23.536644619999919, 70.016905155634745 ], [ 23.175544619999897, 70.088905155634748 ], [ 23.659944619999919, 70.42000515563474 ], [ 24.355844619999914, 70.453905155634757 ], [ 24.155244619999905, 70.568005155634737 ], [ 24.363044619999897, 70.688605155634761 ], [ 24.729144619999914, 70.621905155634735 ], [ 24.245544619999919, 70.777205155634746 ], [ 24.634644619999904, 70.775805155634757 ], [ 24.659644619999909, 70.972505155634749 ], [ 25.277744619999908, 70.802805155634744 ], [ 25.358044619999902, 70.96940515563476 ], [ 25.541344619999904, 70.904705155634744 ], [ 25.927444619999903, 70.863005155634752 ], [ 25.080544619999898, 70.506405155634738 ], [ 25.274644619999918, 70.404705155634744 ], [ 25.083344619999906, 70.355305155634753 ], [ 25.003044619999912, 70.060005155634755 ], [ 26.570244619999897, 70.938905155634743 ], [ 26.726344619999907, 70.921405155634758 ], [ 26.690244619999902, 70.735805155634736 ], [ 26.342744619999905, 70.640305155634749 ], [ 26.653044619999918, 70.639405155634748 ], [ 26.504944619999918, 70.363005155634752 ], [ 27.029444619999907, 70.474105155634746 ], [ 27.0583446199999, 70.610505155634755 ], [ 27.267744619999917, 70.578605155634747 ], [ 27.132444619999916, 70.738005155634752 ], [ 27.565544619999912, 70.80470515563475 ], [ 27.136044619999922, 70.958305155634761 ], [ 27.6516446199999, 71.113005155634752 ], [ 28.550844619999907, 70.968305155634752 ], [ 28.2521446199999, 70.787505155634747 ], [ 27.772144619999921, 70.788905155634737 ], [ 28.131644619999918, 70.730805155634741 ], [ 27.647444619999902, 70.605305155634753 ], [ 28.2949446199999, 70.71280515563474 ], [ 27.851644619999917, 70.478905155634735 ], [ 28.335544619999922, 70.505505155634737 ], [ 28.153844619999916, 70.369405155634738 ], [ 28.185844619999898, 70.159405155634758 ], [ 28.038844619999907, 70.061905155634761 ], [ 28.2321446199999, 70.165505155634762 ], [ 28.2244446199999, 70.389205155634741 ], [ 28.480244619999894, 70.629705155634738 ], [ 28.527444619999898, 70.726605155634743 ], [ 28.853844619999904, 70.880505155634737 ], [ 29.253844619999882, 70.841905155634734 ], [ 29.346944619999931, 70.664105155634743 ], [ 29.781644619999895, 70.731705155634742 ], [ 29.689444619999904, 70.613605155634744 ], [ 30.101944619999927, 70.709105155634759 ], [ 30.348544619999927, 70.596405155634741 ], [ 30.002444619999892, 70.535305155634759 ], [ 30.584144619999904, 70.541105155634753 ], [ 31.078044619999901, 70.289105155634743 ], [ 30.094444619999933, 70.068605155634756 ], [ 28.748344619999898, 70.176705155634735 ], [ 28.594644619999912, 70.163905155634737 ], [ 29.671644619999881, 69.967505155634754 ], [ 29.365544619999923, 69.855305155634753 ], [ 29.737444619999906, 69.905305155634736 ], [ 29.486644619999936, 69.655505155634742 ], [ 30.188544619999902, 69.687205155634743 ], [ 30.166944619999924, 69.873605155634735 ], [ 30.294144619999884, 69.880805155634746 ], [ 30.33714461999989, 69.668305155634741 ], [ 30.455244619999917, 69.812805155634734 ], [ 30.854844619999881, 69.792305155634736 ], [ 30.950244619999921, 69.603605155634753 ], [ 30.103344619999916, 69.663005155634735 ], [ 30.097744619999901, 69.503305155634749 ], [ 29.309944619999897, 69.315305155634761 ], [ 29.129644619999908, 69.048005155634755 ], [ 28.432144619999917, 68.886405155634762 ], [ 28.820544619999907, 68.84440515563476 ], [ 28.457444619999904, 68.53190515563476 ], [ 28.696644619999915, 68.193305155634746 ], [ 29.356944619999922, 68.082505155634735 ], [ 30.028544619999934, 67.694705155634736 ], [ 29.074944619999911, 66.880005155634748 ], [ 29.910244619999901, 66.126905155634759 ], [ 30.134144619999915, 65.719205155634754 ], [ 29.818844619999936, 65.653305155634754 ], [ 29.596344619999911, 65.248905155634745 ], [ 29.873844619999886, 65.120805155634756 ], [ 29.628844619999882, 65.063005155634741 ], [ 29.636644619999913, 64.92800515563475 ], [ 30.140844619999882, 64.774105155634757 ], [ 30.199144619999913, 64.65030515563474 ], [ 29.974944619999917, 64.581105155634745 ], [ 30.053544619999911, 64.405005155634754 ], [ 30.578044619999901, 64.221405155634741 ], [ 30.595244619999903, 64.046905155634747 ], [ 29.993344619999903, 63.743605155634739 ], [ 31.524144619999902, 62.978305155634743 ], [ 31.259644619999904, 62.507805155634756 ], [ 27.738044619999897, 60.511405155634762 ], [ 27.215244619999908, 60.585505155634749 ], [ 26.497144619999915, 60.446905155634752 ], [ 26.7538446199999, 60.571705155634746 ], [ 26.659144619999921, 60.647505155634761 ], [ 26.4216446199999, 60.391905155634745 ], [ 26.051344619999895, 60.427505155634762 ], [ 26.111644619999907, 60.330305155634747 ], [ 26.041944619999896, 60.293005155634759 ], [ 26.040544619999906, 60.322505155634744 ], [ 25.8380446199999, 60.401105155634738 ], [ 25.9199446199999, 60.241705155634762 ], [ 25.662144619999907, 60.362205155634754 ], [ 24.4821446199999, 59.991405155634752 ], [ 24.333044619999896, 60.071905155634752 ], [ 23.426644619999905, 59.953905155634757 ], [ 23.538344619999918, 60.069705155634736 ], [ 23.2524446199999, 59.839205155634758 ], [ 22.889644619999899, 59.806405155634749 ], [ 23.257144619999906, 59.919405155634749 ], [ 23.338344619999901, 60.020005155634735 ], [ 23.1071446199999, 59.922505155634738 ], [ 23.259644619999904, 60.035505155634738 ], [ 22.874444619999906, 60.145505155634751 ], [ 23.086944619999912, 60.346905155634758 ], [ 22.555944619999906, 60.213305155634757 ], [ 22.447144619999904, 60.244405155634738 ], [ 22.632144619999906, 60.391905155634745 ], [ 21.358544619999918, 60.653605155634736 ], [ 21.554444619999913, 61.309405155634735 ], [ 21.465244619999908, 61.550505155634752 ], [ 21.668044619999904, 61.546905155634747 ], [ 21.253344619999922, 62.005505155634737 ], [ 21.389944619999909, 62.203605155634747 ], [ 21.111644619999907, 62.451705155634741 ], [ 21.101944619999898, 62.762805155634751 ], [ 21.439144619999894, 63.042505155634743 ], [ 21.686044619999905, 63.025005155634759 ], [ 21.534144619999921, 63.228605155634753 ], [ 22.337144619999918, 63.273605155634741 ], [ 22.188044619999914, 63.463005155634747 ], [ 23.318844619999908, 63.896705155634734 ], [ 24.343344619999897, 64.523605155634741 ], [ 24.542144619999902, 64.802505155634762 ], [ 25.359644619999898, 64.826905155634748 ], [ 25.188344619999896, 64.966105155634736 ], [ 25.447144619999904, 64.954705155634755 ], [ 25.267444619999907, 65.17000515563474 ], [ 25.353344619999916, 65.476905155634753 ], [ 24.669144619999912, 65.654705155634744 ], [ 24.553844619999921, 65.775505155634747 ], [ 24.689144619999894, 65.896105155634743 ], [ 23.081044619999915, 65.698905155634762 ], [ 22.644644619999895, 65.905505155634742 ], [ 22.659944619999919, 65.751905155634759 ], [ 22.329144619999909, 65.829705155634755 ], [ 22.249044619999921, 65.632505155634746 ], [ 22.405844619999897, 65.535305155634759 ], [ 21.766944619999919, 65.722505155634749 ], [ 22.199144619999913, 65.54530515563475 ], [ 21.468344619999897, 65.380805155634746 ], [ 21.654644619999914, 65.244105155634756 ], [ 21.3380446199999, 65.369705155634747 ], [ 21.260544619999905, 65.337505155634759 ], [ 21.621344619999917, 65.142205155634755 ], [ 21.036044619999899, 64.82440515563475 ], [ 21.302144619999922, 64.765505155634756 ], [ 21.111944619999917, 64.691105155634759 ], [ 21.584944619999902, 64.439705155634741 ], [ 20.957444619999904, 64.139405155634748 ], [ 20.777744619999908, 63.869205155634759 ], [ 19.704944619999907, 63.431905155634738 ], [ 19.428044619999895, 63.549405155634744 ], [ 19.0666446199999, 63.178605155634742 ], [ 18.889644619999899, 63.273605155634741 ], [ 18.289144619999917, 62.997205155634745 ], [ 18.580244619999917, 62.955505155634754 ], [ 18.208544619999913, 62.778605155634736 ], [ 17.696644619999915, 62.99190515563474 ], [ 18.048044619999899, 62.601405155634737 ], [ 17.6713446199999, 62.437805155634734 ], [ 17.328844619999899, 62.486905155634744 ], [ 17.375844619999896, 62.32440515563475 ], [ 17.654644619999914, 62.231105155634751 ], [ 17.349644619999907, 61.945305155634756 ], [ 17.498844619999915, 61.635805155634742 ], [ 17.339444619999909, 61.712505155634759 ], [ 17.140244619999919, 61.719705155634742 ], [ 17.271644619999904, 61.683005155634746 ], [ 17.098544619999899, 61.602805155634755 ], [ 17.222744619999901, 61.441905155634757 ], [ 17.102744619999896, 61.396905155634741 ], [ 17.213544619999908, 61.325505155634758 ], [ 17.1505446199999, 60.945005155634746 ], [ 17.377044619999907, 60.619005155634753 ], [ 17.731044619999921, 60.491705155634762 ], [ 17.949644619999901, 60.59720515563474 ], [ 18.227744619999896, 60.330305155634747 ], [ 18.431944619999911, 60.343905155634744 ], [ 18.6077446199999, 60.237205155634754 ], [ 18.313544619999902, 60.307205155634747 ], [ 18.8163446199999, 60.096405155634741 ], [ 19.070544619999907, 59.889705155634758 ], [ 18.864644619999922, 59.798005155634755 ], [ 19.075244619999921, 59.74050515563475 ], [ 18.270544619999896, 59.475005155634747 ], [ 18.331344619999896, 59.392505155634737 ], [ 18.115544619999895, 59.453005155634756 ], [ 18.091344619999916, 59.334405155634741 ], [ 17.764444619999921, 59.400505155634747 ], [ 17.845244619999903, 59.53300515563474 ], [ 17.717544619999899, 59.663905155634737 ], [ 17.592144619999914, 59.656105155634762 ], [ 17.654144619999897, 59.718005155634742 ], [ 17.594144619999895, 59.806905155634738 ], [ 17.444644619999906, 59.676105155634744 ], [ 17.543144619999907, 59.57300515563476 ], [ 17.513044619999903, 59.706405155634755 ], [ 17.618344619999903, 59.731405155634761 ], [ 17.561144619999908, 59.668405155634744 ], [ 17.786644619999919, 59.535805155634748 ], [ 17.731044619999921, 59.442805155634758 ], [ 17.383544619999896, 59.655005155634754 ], [ 17.409944619999919, 59.469205155634754 ], [ 16.551944619999915, 59.610505155634755 ], [ 16.020244619999914, 59.495005155634757 ], [ 16.889944619999909, 59.383305155634744 ], [ 16.6927446199999, 59.471405155634741 ], [ 16.840244619999908, 59.489405155634742 ], [ 17.375844619999896, 59.247505155634755 ], [ 17.350844619999918, 59.32440515563475 ], [ 17.847144619999909, 59.264405155634748 ], [ 18.289444619999898, 59.368605155634739 ], [ 18.466644619999897, 59.330305155634747 ], [ 18.434444619999908, 59.433605155634737 ], [ 18.6502446199999, 59.319205155634748 ], [ 18.277144619999916, 59.310805155634753 ], [ 18.311344619999915, 59.132505155634746 ], [ 17.894644619999895, 58.858905155634758 ], [ 17.663844619999907, 59.168305155634741 ], [ 17.578844619999899, 58.84550515563474 ], [ 17.032744619999903, 58.750505155634741 ], [ 17.145544619999896, 58.700305155634751 ], [ 17.034444619999903, 58.63720515563476 ], [ 16.233544619999918, 58.663005155634735 ], [ 16.938544619999902, 58.48420515563474 ], [ 16.413344619999918, 58.474705155634737 ], [ 16.769944619999904, 58.36720515563475 ], [ 16.824644619999901, 58.19940515563475 ], [ 16.613844619999895, 57.986905155634744 ], [ 16.770544619999896, 57.884405155634752 ], [ 16.495544619999919, 57.985505155634755 ], [ 16.700644619999906, 57.740105155634737 ], [ 16.418544619999921, 57.893305155634735 ], [ 16.7124446199999, 57.700005155634742 ], [ 16.6713446199999, 57.410805155634748 ], [ 16.464644619999916, 57.264405155634748 ], [ 16.584644619999921, 57.043905155634761 ], [ 15.865544619999895, 56.092205155634744 ], [ 14.696644619999915, 56.161105155634758 ], [ 14.738344619999907, 56.010805155634742 ], [ 14.330244619999917, 55.936905155634761 ], [ 14.1910446199999, 55.731405155634761 ], [ 14.372744619999906, 55.537805155634757 ], [ 14.193544619999898, 55.386105155634752 ], [ 12.9821446199999, 55.400505155634747 ], [ 12.914644619999905, 55.565505155634739 ], [ 13.059644619999915, 55.693005155634737 ], [ 12.451644619999911, 56.297805155634748 ], [ 12.813344619999896, 56.23280515563475 ], [ 12.622144619999915, 56.411905155634756 ], [ 12.901044619999908, 56.457205155634753 ], [ 12.887444619999911, 56.63830515563474 ], [ 12.350244619999899, 56.914405155634753 ], [ 12.094944619999922, 57.426905155634742 ], [ 11.904144619999897, 57.421905155634747 ], [ 11.887744619999921, 57.693905155634738 ], [ 11.698844619999903, 57.697205155634762 ], [ 11.886044619999922, 58.211905155634739 ], [ 11.798044619999899, 58.318305155634746 ], [ 11.723344619999921, 58.328905155634757 ], [ 11.5158446199999, 58.231905155634749 ], [ 11.201344619999901, 58.399405155634739 ], [ 11.113344619999907, 59.003605155634759 ], [ 11.3149446199999, 59.101405155634737 ], [ 11.434444619999908, 58.997205155634745 ], [ 11.356044619999921, 59.107205155634759 ], [ 10.764644619999899, 59.220305155634762 ], [ 10.659144619999921, 59.363905155634754 ], [ 10.691444619999913, 59.479305155634748 ], [ 10.557744619999909, 59.728605155634753 ], [ 10.7421446199999, 59.890805155634737 ], [ 10.474144619999919, 59.847805155634759 ], [ 10.611344619999898, 59.601405155634737 ], [ 10.513044619999903, 59.525005155634759 ], [ 10.3805446199999, 59.698905155634762 ], [ 10.222144619999909, 59.727505155634745 ], [ 10.516344619999899, 59.310805155634753 ], [ 10.231044619999921, 59.038605155634755 ], [ 9.8774446199999, 58.955005155634737 ], [ 9.540844619999916, 59.114705155634752 ], [ 9.6930446199999, 58.983005155634757 ], [ 8.248044619999916, 58.201905155634748 ], [ 8.2110446199999, 58.11550515563475 ], [ 7.001344619999912, 57.988005155634752 ], [ 6.558844619999917, 58.097505155634749 ], [ 6.752744619999902, 58.249705155634743 ], [ 5.625844619999896, 58.555505155634748 ], [ 5.457744619999914, 58.744405155634738 ], [ 5.552744619999913, 59.032805155634762 ], [ 6.168544619999921, 58.832205155634753 ], [ 6.116344619999921, 58.956705155634737 ], [ 6.623344619999898, 59.051705155634735 ], [ 6.154644619999914, 58.993605155634739 ], [ 6.035244619999901, 58.89890515563475 ], [ 5.963844619999918, 59.012905155634755 ], [ 5.866344619999921, 59.072205155634762 ], [ 6.465244619999908, 59.317805155634758 ], [ 5.995544619999919, 59.329705155634755 ], [ 6.468844619999913, 59.555305155634741 ], [ 6.258044619999907, 59.582205155634753 ], [ 6.153344619999899, 59.454705155634755 ], [ 5.933844619999917, 59.350005155634747 ], [ 5.889644619999899, 59.443905155634738 ], [ 6.151344619999918, 59.476705155634747 ], [ 5.807744619999909, 59.469205155634754 ], [ 5.7130446199999, 59.436705155634755 ], [ 5.659944619999919, 59.401405155634748 ], [ 5.856644619999912, 59.34550515563474 ], [ 5.511044619999922, 59.275005155634759 ], [ 5.1796446199999, 59.514405155634748 ], [ 5.4821446199999, 59.729205155634745 ], [ 5.459744619999896, 59.519205155634737 ], [ 5.562444619999894, 59.675305155634746 ], [ 6.0666446199999, 59.743905155634749 ], [ 6.306344619999919, 59.843305155634752 ], [ 5.698344619999915, 59.832805155634745 ], [ 5.973044619999911, 59.958905155634753 ], [ 6.204644619999897, 60.295505155634757 ], [ 6.640544619999901, 60.410305155634759 ], [ 6.531644619999895, 60.258905155634736 ], [ 6.504444619999902, 60.113605155634744 ], [ 6.521044619999913, 60.076705155634741 ], [ 6.654644619999914, 60.375305155634734 ], [ 7.108044619999902, 60.494205155634759 ], [ 7.0021446199999, 60.58780515563474 ], [ 6.220844619999895, 60.412505155634747 ], [ 5.747144619999915, 59.986705155634738 ], [ 5.646044619999913, 60.147205155634751 ], [ 5.544144619999912, 60.150505155634747 ], [ 5.7344446199999, 60.38690515563475 ], [ 5.411044619999899, 60.129705155634738 ], [ 5.142144619999897, 60.346405155634741 ], [ 5.2524446199999, 60.42800515563475 ], [ 5.292744619999894, 60.525005155634759 ], [ 5.494444619999911, 60.419405155634749 ], [ 5.6408446199999, 60.418605155634751 ], [ 5.713544619999908, 60.470005155634752 ], [ 5.719944619999922, 60.674405155634744 ], [ 5.627744619999902, 60.713005155634747 ], [ 5.360244619999918, 60.565005155634751 ], [ 5.2324446199999, 60.559705155634745 ], [ 4.928844619999921, 60.798905155634756 ], [ 5.433544619999907, 60.627205155634741 ], [ 5.236344619999898, 60.77390515563475 ], [ 5.533544619999901, 60.872505155634755 ], [ 5.063844619999912, 60.831105155634745 ], [ 5.007744619999897, 61.037205155634737 ], [ 6.372144619999915, 61.061905155634761 ], [ 6.812444619999894, 61.142505155634737 ], [ 7.113844619999895, 60.860305155634748 ], [ 7.000844619999896, 61.09610515563476 ], [ 7.428544619999911, 61.181405155634749 ], [ 7.303844619999921, 61.294405155634749 ], [ 7.574444619999895, 61.479405155634751 ], [ 7.279444619999907, 61.325505155634758 ], [ 7.353844619999904, 61.190005155634751 ], [ 6.966944619999907, 61.109705155634757 ], [ 6.564144619999894, 61.218305155634752 ], [ 6.703544619999917, 61.401405155634748 ], [ 6.423344619999909, 61.112205155634754 ], [ 5.049944619999906, 61.15860515563476 ], [ 5.2458446199999, 61.180305155634741 ], [ 4.9533446199999, 61.258605155634754 ], [ 5.634144619999915, 61.360505155634755 ], [ 4.963544619999908, 61.419405155634749 ], [ 5.804444619999913, 61.447205155634762 ], [ 5.1308446199999, 61.526705155634758 ], [ 5.337044619999915, 61.592905155634739 ] ] ], [ [ [ 25.828044619999901, 71.098605155634758 ], [ 26.219644619999912, 71.03360515563476 ], [ 25.585244619999912, 70.922205155634757 ], [ 25.286044619999899, 71.020805155634761 ], [ 25.828044619999901, 71.098605155634758 ] ] ], [ [ [ -8.290955380000099, 70.974105155634746 ], [ -9.005655380000093, 70.808005155634746 ], [ -9.120055380000082, 70.85780515563475 ], [ -7.927055380000098, 71.150805155634757 ], [ -8.290955380000099, 70.974105155634746 ] ] ], [ [ [ 19.181944619999911, 74.359705155634757 ], [ 19.069144619999918, 74.343005155634742 ], [ 18.791944619999896, 74.481705155634742 ], [ 19.299644619999896, 74.475005155634747 ], [ 19.181944619999911, 74.359705155634757 ] ] ], [ [ [ 25.016044619999917, 76.466405155634746 ], [ 24.936344619999915, 76.448905155634762 ], [ 25.447444619999914, 76.698905155634762 ], [ 25.582144619999895, 76.706605155634762 ], [ 25.016044619999917, 76.466405155634746 ] ] ], [ [ [ 23.285544619999911, 77.264705155634758 ], [ 23.135244619999895, 77.235305155634748 ], [ 23.036344619999909, 77.260005155634744 ], [ 23.293344619999914, 77.275505155634747 ], [ 23.285544619999911, 77.264705155634758 ] ] ], [ [ [ 23.3360446199999, 78.197505155634744 ], [ 23.459644619999921, 78.155805155634752 ], [ 23.059644619999915, 78.016105155634747 ], [ 24.910244619999901, 77.749705155634743 ], [ 22.641044619999917, 77.253005155634739 ], [ 22.423544619999916, 77.257205155634736 ], [ 22.407444619999922, 77.420805155634739 ], [ 22.778344619999899, 77.547805155634748 ], [ 20.8588446199999, 77.462505155634759 ], [ 21.644944619999904, 77.912505155634747 ], [ 20.903044619999918, 78.115005155634762 ], [ 23.3360446199999, 78.197505155634744 ] ] ], [ [ [ 21.501644619999894, 78.565505155634739 ], [ 22.028844619999916, 78.580805155634735 ], [ 22.239944619999903, 78.483305155634739 ], [ 22.271944619999914, 78.26360515563475 ], [ 20.671044619999918, 78.187505155634753 ], [ 20.779944619999895, 78.284405155634758 ], [ 20.469144619999895, 78.313605155634761 ], [ 20.663844619999907, 78.38720515563476 ], [ 20.124644619999913, 78.47220515563474 ], [ 21.501644619999894, 78.565505155634739 ] ] ], [ [ [ 26.847444619999919, 78.707505155634735 ], [ 27.017444619999907, 78.693005155634737 ], [ 26.735844619999909, 78.623905155634745 ], [ 26.396344619999894, 78.770805155634761 ], [ 26.847444619999919, 78.707505155634735 ] ] ], [ [ [ 11.271944619999914, 78.606905155634749 ], [ 11.8805446199999, 78.414105155634743 ], [ 12.163544619999897, 78.19970515563476 ], [ 11.073344619999915, 78.455805155634735 ], [ 10.488544619999914, 78.896405155634753 ], [ 10.994144619999901, 78.833905155634753 ], [ 11.271944619999914, 78.606905155634749 ] ] ], [ [ [ 29.030544619999915, 78.916105155634753 ], [ 29.708044619999896, 78.896405155634753 ], [ 28.019644619999895, 78.86750515563476 ], [ 28.428844619999921, 78.951905155634748 ], [ 29.030544619999915, 78.916105155634753 ] ] ], [ [ [ 30.209444619999886, 78.976405155634737 ], [ 30.127444619999892, 78.968905155634744 ], [ 30.066944619999902, 79.001105155634761 ], [ 30.336044619999882, 78.988905155634754 ], [ 30.209444619999886, 78.976405155634737 ] ] ], [ [ [ 21.226044619999897, 79.037505155634747 ], [ 20.9824446199999, 79.014205155634741 ], [ 20.923544619999916, 79.030005155634754 ], [ 21.173344619999909, 79.045805155634739 ], [ 21.226044619999897, 79.037505155634747 ] ] ], [ [ [ 20.833044619999896, 79.054105155634758 ], [ 20.342444619999895, 78.99080515563476 ], [ 20.046044619999918, 79.037505155634747 ], [ 20.199644619999901, 79.124705155634743 ], [ 20.833044619999896, 79.054105155634758 ] ] ], [ [ [ 20.007444619999916, 79.24220515563475 ], [ 19.954644619999897, 79.226605155634743 ], [ 20.168844619999902, 79.319105155634745 ], [ 20.165544619999906, 79.313005155634741 ], [ 20.007444619999916, 79.24220515563475 ] ] ], [ [ [ 20.1094446199999, 79.36580515563476 ], [ 20.180244619999911, 79.338905155634748 ], [ 19.628344619999922, 79.38830515563474 ], [ 19.763844619999901, 79.403905155634746 ], [ 20.1094446199999, 79.36580515563476 ] ] ], [ [ [ 10.922744619999918, 79.651105155634738 ], [ 10.781644619999895, 79.65030515563474 ], [ 10.712144619999918, 79.713605155634738 ], [ 11.076044619999919, 79.662805155634757 ], [ 10.922744619999918, 79.651105155634738 ] ] ], [ [ [ 11.000544619999914, 79.740305155634744 ], [ 11.013544619999919, 79.735505155634755 ], [ 10.639144619999911, 79.750005155634753 ], [ 10.756044619999898, 79.78330515563475 ], [ 11.000544619999914, 79.740305155634744 ] ] ], [ [ [ 16.819144619999918, 79.872205155634745 ], [ 17.280544619999915, 79.936105155634735 ], [ 18.098344619999921, 79.720305155634762 ], [ 17.635544619999905, 79.372505155634755 ], [ 18.356944619999922, 79.628305155634749 ], [ 18.859644619999898, 79.450505155634758 ], [ 18.920544619999902, 79.164105155634743 ], [ 19.723544619999899, 79.151105155634738 ], [ 19.906644619999895, 79.01390515563476 ], [ 21.549144619999907, 78.767805155634747 ], [ 18.965544619999918, 78.456105155634745 ], [ 19.092144619999914, 78.09550515563474 ], [ 18.410844619999921, 78.021605155634759 ], [ 18.292744619999894, 77.506405155634738 ], [ 17.738344619999907, 77.47110515563476 ], [ 17.346344619999911, 77.051905155634742 ], [ 17.094444619999905, 77.050805155634762 ], [ 17.318544619999898, 76.965505155634744 ], [ 16.919144619999912, 76.799705155634754 ], [ 17.198344619999915, 76.694705155634736 ], [ 16.612744619999916, 76.570505155634734 ], [ 15.498044619999916, 76.880005155634748 ], [ 16.519644619999895, 76.998605155634735 ], [ 14.467144619999914, 77.171605155634737 ], [ 13.914144619999917, 77.527805155634738 ], [ 16.223044619999911, 77.435005155634755 ], [ 14.739144619999905, 77.65860515563476 ], [ 16.800544619999897, 77.806905155634738 ], [ 17.006044619999898, 77.931405155634749 ], [ 13.941944619999902, 77.716705155634756 ], [ 13.724944619999917, 77.75420515563475 ], [ 13.8180446199999, 77.801605155634761 ], [ 13.588844619999918, 78.049405155634744 ], [ 14.355844619999914, 77.96280515563474 ], [ 14.219644619999912, 78.089405155634736 ], [ 17.301644619999905, 78.42030515563475 ], [ 16.328844619999899, 78.452205155634758 ], [ 16.831044619999915, 78.671905155634747 ], [ 15.4641446199999, 78.451705155634741 ], [ 15.1933446199999, 78.588005155634747 ], [ 15.452744619999919, 78.635805155634742 ], [ 15.379944619999918, 78.844705155634742 ], [ 15.020844619999906, 78.596905155634758 ], [ 14.531644619999895, 78.682705155634736 ], [ 14.385544619999905, 78.497805155634737 ], [ 14.726344619999907, 78.383905155634736 ], [ 13.006644619999918, 78.197505155634744 ], [ 12.360544619999899, 78.480305155634753 ], [ 13.198544619999922, 78.540805155634743 ], [ 11.925544619999897, 78.627205155634741 ], [ 11.641044619999917, 78.741405155634752 ], [ 11.931644619999901, 78.827805155634749 ], [ 11.333344619999906, 78.960505155634749 ], [ 12.5055446199999, 78.90800515563474 ], [ 11.7552446199999, 79.07580515563474 ], [ 12.113044619999897, 79.295805155634739 ], [ 11.638544619999919, 79.319405155634755 ], [ 11.714944619999898, 79.166105155634753 ], [ 11.236344619999898, 79.093005155634742 ], [ 10.676944619999915, 79.54500515563474 ], [ 11.180244619999911, 79.559405155634735 ], [ 10.851644619999917, 79.594705155634742 ], [ 11.366044619999911, 79.635005155634744 ], [ 11.192444619999918, 79.772205155634751 ], [ 11.696344619999905, 79.835005155634761 ], [ 12.311344619999915, 79.661905155634756 ], [ 12.163544619999897, 79.809105155634754 ], [ 13.824644619999901, 79.875305155634734 ], [ 13.965544619999918, 79.766905155634745 ], [ 12.447744619999895, 79.56640515563474 ], [ 13.4844446199999, 79.580805155634735 ], [ 13.257144619999906, 79.471405155634741 ], [ 14.058844619999917, 79.260305155634754 ], [ 14.155844619999897, 79.338305155634757 ], [ 13.886944619999895, 79.541405155634735 ], [ 14.584944619999902, 79.804105155634758 ], [ 15.291644619999914, 79.600505155634735 ], [ 15.790844619999916, 79.224105155634746 ], [ 15.714444619999909, 79.110805155634736 ], [ 16.449944619999911, 78.903905155634746 ], [ 15.638044619999903, 79.827205155634758 ], [ 16.1308446199999, 79.863605155634744 ], [ 15.949944619999911, 79.937505155634753 ], [ 16.307744619999909, 80.062805155634734 ], [ 16.819144619999918, 79.872205155634745 ] ] ], [ [ [ 27.8377446199999, 80.110305155634748 ], [ 27.674144619999907, 80.122805155634737 ], [ 28.074444619999895, 80.144105155634762 ], [ 27.9821446199999, 80.125505155634741 ], [ 27.8377446199999, 80.110305155634748 ] ] ], [ [ [ 32.366344619999893, 80.09440515563476 ], [ 31.449444619999895, 80.085805155634759 ], [ 33.637444619999883, 80.213305155634757 ], [ 33.508844619999934, 80.191905155634757 ], [ 32.366344619999893, 80.09440515563476 ] ] ], [ [ [ 18.553344619999905, 80.245505155634746 ], [ 18.456644619999906, 80.238005155634752 ], [ 18.119444619999911, 80.28470515563474 ], [ 18.758544619999896, 80.301905155634742 ], [ 18.553344619999905, 80.245505155634746 ] ] ], [ [ [ 24.335844619999904, 80.384105155634742 ], [ 24.197744619999895, 80.383305155634744 ], [ 24.1285446199999, 80.393005155634754 ], [ 24.196944619999897, 80.454205155634739 ], [ 24.335844619999904, 80.384105155634742 ] ] ], [ [ [ 19.9333446199999, 80.47710515563476 ], [ 20.826644619999911, 80.213905155634748 ], [ 21.860544619999899, 80.267805155634747 ], [ 21.598544619999899, 80.118305155634758 ], [ 22.226344619999907, 79.979105155634741 ], [ 22.578544619999917, 80.298605155634746 ], [ 22.361044619999916, 80.410305155634759 ], [ 22.749144619999896, 80.324205155634743 ], [ 22.886944619999895, 80.490305155634744 ], [ 23.360844619999909, 80.42940515563474 ], [ 23.123344619999898, 80.385305155634754 ], [ 23.350244619999899, 80.336105155634741 ], [ 23.047444619999908, 80.245005155634757 ], [ 23.101344619999907, 80.120805155634756 ], [ 24.8363446199999, 80.350805155634745 ], [ 24.779644619999914, 80.246605155634754 ], [ 27.221644619999921, 80.100005155634747 ], [ 27.101044619999897, 79.967505155634754 ], [ 27.244944619999899, 79.905005155634754 ], [ 25.803844619999921, 79.614405155634742 ], [ 25.976944619999898, 79.510805155634742 ], [ 25.714644619999916, 79.405805155634752 ], [ 23.511644619999913, 79.178905155634752 ], [ 22.641044619999917, 79.313005155634741 ], [ 22.8374446199999, 79.407505155634752 ], [ 20.7949446199999, 79.373905155634745 ], [ 19.635544619999905, 79.603905155634735 ], [ 21.123044619999916, 79.559405155634735 ], [ 20.476644619999917, 79.68000515563476 ], [ 21.8391446199999, 79.702805155634749 ], [ 22.312444619999894, 79.796905155634747 ], [ 18.771344619999894, 79.717505155634754 ], [ 18.154144619999897, 79.910005155634749 ], [ 18.809444619999908, 79.994705155634747 ], [ 17.783044619999913, 80.127805155634761 ], [ 19.340544619999918, 80.08640515563475 ], [ 19.584144619999904, 80.151405155634748 ], [ 18.979944619999912, 80.336605155634757 ], [ 19.8377446199999, 80.213905155634748 ], [ 19.916944619999896, 80.375305155634734 ], [ 19.463344619999901, 80.454705155634755 ], [ 19.9333446199999, 80.47710515563476 ] ] ], [ [ [ 24.264944619999909, 80.47110515563476 ], [ 24.159444619999903, 80.47050515563474 ], [ 23.9744446199999, 80.49050515563475 ], [ 24.174944619999906, 80.509105155634742 ], [ 24.264944619999909, 80.47110515563476 ] ] ], [ [ [ 19.9333446199999, 80.47710515563476 ], [ 19.844644619999912, 80.503005155634739 ], [ 20.1302446199999, 80.512805155634751 ], [ 20.126044619999902, 80.505805155634746 ], [ 19.9333446199999, 80.47710515563476 ] ] ], [ [ [ 20.7535446199999, 80.621405155634747 ], [ 20.726644619999917, 80.619105155634756 ], [ 20.499144619999896, 80.657805155634762 ], [ 20.793344619999914, 80.647505155634761 ], [ 20.7535446199999, 80.621405155634747 ] ] ], [ [ [ 21.330244619999917, 80.700305155634751 ], [ 21.364944619999903, 80.678905155634752 ], [ 21.026344619999918, 80.681605155634756 ], [ 21.215844619999899, 80.706905155634743 ], [ 21.330244619999917, 80.700305155634751 ] ] ], [ [ [ 20.819144619999918, 80.71910515563475 ], [ 21.006644619999918, 80.70140515563476 ], [ 20.833544619999913, 80.674105155634734 ], [ 20.518344619999908, 80.760005155634744 ], [ 20.819144619999918, 80.71910515563475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 11, "LEVEL1_COD": 1, "LEVEL1_NAM": "EUROPE", "LEVEL2_NAM": "Middle Europe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.763844619999901, 52.415305155634755 ], [ 5.573044619999905, 52.368005155634748 ], [ 5.428544619999911, 52.264205155634741 ], [ 5.135544619999905, 52.380305155634758 ], [ 5.451144619999894, 52.509405155634752 ], [ 5.478044619999906, 52.548905155634756 ], [ 5.643544619999915, 52.601105155634755 ], [ 5.855544619999904, 52.544205155634742 ], [ 5.763844619999901, 52.415305155634755 ] ] ], [ [ [ 5.048044619999899, 52.565205155634757 ], [ 5.039444619999898, 52.633605155634754 ], [ 5.149344619999908, 52.61690515563474 ], [ 5.225744619999915, 52.643005155634754 ], [ 5.2963446199999, 52.691105155634759 ], [ 5.486044619999916, 52.568905155634738 ], [ 5.133944619999909, 52.383105155634738 ], [ 5.051144619999917, 52.395405155634748 ], [ 5.083144619999899, 52.415205155634752 ], [ 5.105844619999914, 52.444405155634755 ], [ 5.111644619999907, 52.474205155634749 ], [ 5.071544619999912, 52.54700515563475 ], [ 5.048044619999899, 52.565205155634757 ] ] ], [ [ [ 4.764644619999899, 52.990305155634744 ], [ 4.713844619999918, 53.056105155634739 ], [ 4.883344619999917, 53.184205155634757 ], [ 4.908844619999911, 53.090505155634744 ], [ 4.764644619999899, 52.990305155634744 ] ] ], [ [ [ 4.957144619999895, 53.237805155634746 ], [ 4.879944619999918, 53.214405155634736 ], [ 5.106344619999902, 53.30330515563476 ], [ 5.103844619999904, 53.300005155634736 ], [ 4.957144619999895, 53.237805155634746 ] ] ], [ [ [ 5.2130446199999, 53.350005155634747 ], [ 5.168844619999902, 53.373905155634745 ], [ 5.581944619999916, 53.447805155634754 ], [ 5.561044619999905, 53.430305155634741 ], [ 5.2130446199999, 53.350005155634747 ] ] ], [ [ [ 5.699144619999913, 53.46280515563474 ], [ 5.937144619999913, 53.47050515563474 ], [ 5.956044619999915, 53.46280515563474 ], [ 5.633044619999907, 53.44170515563475 ], [ 5.699144619999913, 53.46280515563474 ] ] ], [ [ [ 6.134944619999914, 53.453605155634747 ], [ 6.1488446199999, 53.497505155634755 ], [ 6.340644619999921, 53.501605155634749 ], [ 6.163044619999908, 53.471705155634751 ], [ 6.134944619999914, 53.453605155634747 ] ] ], [ [ [ 6.804144619999903, 53.604405155634751 ], [ 6.746944619999908, 53.560305155634737 ], [ 6.658344619999895, 53.586105155634741 ], [ 6.747444619999897, 53.618605155634739 ], [ 6.804144619999903, 53.604405155634751 ] ] ], [ [ [ 6.939444619999904, 53.669405155634749 ], [ 6.876344619999912, 53.67030515563475 ], [ 7.088344619999901, 53.683005155634746 ], [ 7.084144619999904, 53.68000515563476 ], [ 6.939444619999904, 53.669405155634749 ] ] ], [ [ [ 7.242444619999901, 53.704405155634745 ], [ 7.158544619999901, 53.698905155634762 ], [ 7.135844619999915, 53.706105155634745 ], [ 7.346944619999903, 53.72110515563476 ], [ 7.242444619999901, 53.704405155634745 ] ] ], [ [ [ 8.192244619999911, 53.72540515563476 ], [ 8.124144619999896, 53.708905155634753 ], [ 8.119944619999899, 53.713005155634747 ], [ 8.142744619999917, 53.733605155634748 ], [ 8.192244619999911, 53.72540515563476 ] ] ], [ [ [ 7.622144619999915, 53.754405155634757 ], [ 7.628744619999907, 53.743305155634758 ], [ 7.467744619999905, 53.733005155634757 ], [ 7.485844619999909, 53.757505155634746 ], [ 7.622144619999915, 53.754405155634757 ] ] ], [ [ [ 7.758844619999905, 53.76050515563476 ], [ 7.6696446199999, 53.754705155634738 ], [ 7.664444619999898, 53.761705155634743 ], [ 7.812744619999904, 53.775505155634747 ], [ 7.758844619999905, 53.76050515563476 ] ] ], [ [ [ 8.425244619999916, 53.92800515563475 ], [ 8.411644619999919, 53.955505155634754 ], [ 8.454944619999907, 53.963005155634747 ], [ 8.457144619999895, 53.960805155634759 ], [ 8.425244619999916, 53.92800515563475 ] ] ], [ [ [ 11.459144619999904, 53.961105155634741 ], [ 11.388544619999919, 53.969205155634754 ], [ 11.373844619999915, 53.988605155634744 ], [ 11.488544619999914, 54.023005155634749 ], [ 11.459144619999904, 53.961105155634741 ] ] ], [ [ [ 13.940244619999902, 54.025005155634759 ], [ 13.930844619999903, 54.016405155634757 ], [ 13.925844619999907, 54.018305155634735 ], [ 13.934444619999908, 54.027805155634738 ], [ 13.940244619999902, 54.025005155634759 ] ] ], [ [ [ 8.695544619999907, 54.041105155634753 ], [ 8.673044619999899, 54.049405155634744 ], [ 8.6713446199999, 54.077805155634749 ], [ 8.6933446199999, 54.082505155634735 ], [ 8.695544619999907, 54.041105155634753 ] ] ], [ [ [ 11.544144619999912, 54.061405155634745 ], [ 11.511044619999922, 54.048605155634746 ], [ 11.612344619999902, 54.104605155634758 ], [ 11.5680446199999, 54.07470515563476 ], [ 11.544144619999912, 54.061405155634745 ] ] ], [ [ [ 11.013344619999913, 54.377505155634751 ], [ 10.986044619999916, 54.378005155634739 ], [ 10.979444619999896, 54.380505155634737 ], [ 11.017344619999903, 54.37950515563476 ], [ 11.013344619999913, 54.377505155634751 ] ] ], [ [ [ 12.727944619999903, 54.423505155634743 ], [ 12.729644619999902, 54.416705155634745 ], [ 12.686044619999905, 54.418305155634741 ], [ 12.702744619999919, 54.429005155634755 ], [ 12.727944619999903, 54.423505155634743 ] ] ], [ [ [ 8.893044619999898, 54.461905155634739 ], [ 8.8149446199999, 54.500805155634751 ], [ 8.960544619999922, 54.519205155634737 ], [ 8.917744619999894, 54.467805155634736 ], [ 8.893044619999898, 54.461905155634739 ] ] ], [ [ [ 11.312744619999904, 54.40690515563476 ], [ 11.123844619999915, 54.40690515563476 ], [ 11.006344619999908, 54.46170515563476 ], [ 11.184144619999898, 54.520005155634735 ], [ 11.312744619999904, 54.40690515563476 ] ] ], [ [ [ 8.662744619999899, 54.494205155634759 ], [ 8.612444619999906, 54.493905155634749 ], [ 8.591044619999906, 54.527805155634738 ], [ 8.710844619999904, 54.551705155634735 ], [ 8.662744619999899, 54.494205155634759 ] ] ], [ [ [ 13.073544619999922, 54.488605155634744 ], [ 13.096644619999921, 54.590505155634744 ], [ 13.151344619999918, 54.602805155634755 ], [ 13.158044619999913, 54.581105155634745 ], [ 13.073544619999922, 54.488605155634744 ] ] ], [ [ [ 13.383044619999907, 54.63890515563476 ], [ 13.676644619999905, 54.565305155634761 ], [ 13.577744619999919, 54.453905155634757 ], [ 13.713844619999918, 54.377805155634761 ], [ 13.730844619999914, 54.275805155634757 ], [ 13.118344619999903, 54.333905155634753 ], [ 13.267444619999907, 54.382505155634746 ], [ 13.146944619999914, 54.54560515563476 ], [ 13.503044619999912, 54.493105155634751 ], [ 13.245344619999912, 54.558505155634762 ], [ 13.383044619999907, 54.63890515563476 ] ] ], [ [ [ 8.364444619999915, 54.613305155634762 ], [ 8.294444619999922, 54.666705155634745 ], [ 8.353844619999904, 54.71170515563476 ], [ 8.3999446199999, 54.627805155634761 ], [ 8.364444619999915, 54.613305155634762 ] ] ], [ [ [ 8.5677446199999, 54.685305155634737 ], [ 8.478344619999916, 54.686905155634761 ], [ 8.396944619999914, 54.713905155634748 ], [ 8.551044619999914, 54.75390515563474 ], [ 8.5677446199999, 54.685305155634737 ] ] ], [ [ [ 12.727944619999903, 54.423505155634743 ], [ 12.712844619999913, 54.42970515563475 ], [ 12.694644619999906, 54.42970515563475 ], [ 12.462144619999918, 54.394405155634743 ], [ 12.369644619999917, 54.265005155634739 ], [ 13.0238446199999, 54.399705155634749 ], [ 13.455844619999908, 54.09610515563476 ], [ 13.718344619999897, 54.169705155634759 ], [ 13.813044619999914, 53.845305155634762 ], [ 14.5249446199999, 53.660505155634738 ], [ 14.5583446199999, 53.857205155634759 ], [ 13.826944619999921, 53.850805155634745 ], [ 14.055944619999906, 53.984905155634735 ], [ 13.759144619999915, 54.160005155634749 ], [ 14.383044619999907, 53.913005155634735 ], [ 16.174644619999896, 54.259205155634746 ], [ 16.543544619999921, 54.544705155634759 ], [ 18.033544619999901, 54.833605155634743 ], [ 18.349944619999917, 54.833605155634743 ], [ 18.372744619999906, 54.816105155634759 ], [ 18.703844619999899, 54.700305155634751 ], [ 18.774644619999918, 54.666405155634735 ], [ 18.405244619999905, 54.743005155634748 ], [ 18.757744619999897, 54.370805155634756 ], [ 19.651044619999908, 54.455805155634735 ], [ 19.256044619999898, 54.277505155634756 ], [ 19.7969446199999, 54.437505155634753 ], [ 22.856044619999921, 54.40860515563476 ], [ 23.456344619999896, 54.175505155634752 ], [ 23.940844619999922, 52.732205155634759 ], [ 23.1653446199999, 52.282305155634745 ], [ 23.638544619999919, 52.079405155634745 ], [ 23.539144619999917, 51.592805155634736 ], [ 24.144444619999916, 50.849405155634756 ], [ 23.956944619999916, 50.815005155634751 ], [ 24.108344619999912, 50.625905155634754 ], [ 23.999444619999906, 50.411705155634749 ], [ 23.703844619999899, 50.378305155634749 ], [ 22.676044619999914, 49.56640515563474 ], [ 22.700244619999921, 49.165505155634762 ], [ 22.886044619999922, 49.002905155634735 ], [ 22.562744619999904, 49.085005155634761 ], [ 22.157144619999912, 48.576705155634741 ], [ 22.151444619999921, 48.411905155634756 ], [ 22.894744619999898, 47.954505155634749 ], [ 22.0238446199999, 47.522505155634761 ], [ 21.080844619999908, 46.246905155634735 ], [ 19.559944619999897, 46.171905155634747 ], [ 18.424144619999907, 45.749205155634755 ], [ 17.351044619999897, 45.953305155634737 ], [ 16.529444619999907, 46.510305155634754 ], [ 16.293344619999914, 46.870805155634756 ], [ 14.870544619999919, 46.61580515563476 ], [ 14.5449446199999, 46.407505155634752 ], [ 12.440544619999912, 46.690805155634749 ], [ 12.160244619999901, 46.92800515563475 ], [ 12.189144619999894, 47.094705155634742 ], [ 11.1713446199999, 46.966705155634756 ], [ 11.014644619999899, 46.772505155634761 ], [ 10.471244619999908, 46.871305155634744 ], [ 10.465244619999908, 46.546405155634758 ], [ 10.050244619999916, 46.540005155634745 ], [ 10.129944619999918, 46.227205155634735 ], [ 9.949944619999911, 46.37920515563475 ], [ 9.542444619999912, 46.306905155634738 ], [ 9.2969446199999, 46.50390515563474 ], [ 9.036644619999919, 45.83780515563474 ], [ 8.445544619999907, 46.245805155634756 ], [ 8.436344619999915, 46.463305155634757 ], [ 7.855744619999911, 45.919005155634736 ], [ 7.104944619999912, 45.882205155634736 ], [ 6.783844619999911, 46.148005155634749 ], [ 6.791344619999904, 46.434205155634757 ], [ 6.311044619999905, 46.401405155634748 ], [ 6.152144619999916, 46.153605155634736 ], [ 5.966644619999897, 46.209405155634741 ], [ 6.119144619999901, 46.264405155634748 ], [ 6.129944619999918, 46.593305155634752 ], [ 6.971644619999921, 47.291905155634751 ], [ 6.990544619999895, 47.497205155634745 ], [ 7.382444619999916, 47.432505155634757 ], [ 7.587944619999917, 47.584705155634751 ], [ 7.578844619999899, 48.119705155634747 ], [ 7.802144619999922, 48.57580515563474 ], [ 8.226044619999897, 48.964405155634736 ], [ 7.423544619999916, 49.177205155634752 ], [ 6.730844619999914, 49.166105155634753 ], [ 6.416044619999894, 49.475805155634745 ], [ 5.477444619999915, 49.50420515563475 ], [ 4.873044619999916, 49.797205155634757 ], [ 4.832444619999904, 50.168605155634751 ], [ 4.510544619999905, 49.947505155634744 ], [ 4.149244619999905, 49.978405155634746 ], [ 4.164944619999915, 50.28300515563474 ], [ 3.298544619999916, 50.523005155634749 ], [ 3.149644619999918, 50.790005155634745 ], [ 2.898044619999922, 50.703005155634756 ], [ 2.6505446199999, 50.816105155634759 ], [ 2.541644619999914, 51.091105155634736 ], [ 3.519444619999916, 51.411405155634739 ], [ 4.309644619999915, 51.262005155634753 ], [ 4.202444619999909, 51.405005155634754 ], [ 3.440844619999922, 51.535805155634748 ], [ 3.837144619999918, 51.606705155634742 ], [ 4.286044619999899, 51.448605155634752 ], [ 3.989944619999903, 51.584705155634751 ], [ 4.186144619999908, 51.617005155634743 ], [ 3.687444619999894, 51.709705155634751 ], [ 4.167744619999894, 51.685605155634747 ], [ 3.865544619999895, 51.815005155634751 ], [ 4.584444619999914, 52.461505155634754 ], [ 5.424444619999917, 52.248605155634735 ], [ 5.819644619999906, 52.432505155634757 ], [ 5.878044619999912, 52.509405155634752 ], [ 5.854944619999912, 52.606905155634749 ], [ 5.5994446199999, 52.65860515563476 ], [ 5.717944619999912, 52.838805155634745 ], [ 5.374144619999896, 52.872205155634745 ], [ 5.375544619999914, 53.070505155634734 ], [ 5.100244619999899, 52.94800515563476 ], [ 5.304144619999903, 52.706905155634743 ], [ 5.033344619999895, 52.634205155634746 ], [ 5.028344619999899, 52.375805155634751 ], [ 4.579944619999907, 52.471705155634751 ], [ 4.7341446199999, 52.955505155634754 ], [ 5.085844619999904, 52.955305155634747 ], [ 5.599144619999919, 53.300305155634746 ], [ 6.741944619999913, 53.465805155634754 ], [ 7.201044619999919, 53.239705155634752 ], [ 7.364444619999915, 53.299205155634738 ], [ 7.024144619999902, 53.365005155634762 ], [ 7.096044619999901, 53.591905155634734 ], [ 7.907444619999922, 53.71940515563476 ], [ 8.208544619999913, 53.403005155634744 ], [ 8.272744619999912, 53.610005155634738 ], [ 8.494444619999911, 53.55500515563476 ], [ 8.518344619999908, 53.51360515563475 ], [ 8.4827446199999, 53.453905155634757 ], [ 8.503044619999912, 53.354205155634745 ], [ 8.5683446199999, 53.53330515563475 ], [ 8.483344619999912, 53.690305155634761 ], [ 8.665544619999906, 53.893905155634755 ], [ 9.279944619999895, 53.85780515563475 ], [ 9.573044619999905, 53.591105155634736 ], [ 9.832444619999904, 53.536405155634739 ], [ 9.327744619999919, 53.857205155634759 ], [ 8.899644619999918, 53.940805155634749 ], [ 8.8360446199999, 54.031105155634762 ], [ 9.017144619999897, 54.085005155634761 ], [ 8.824944619999911, 54.155305155634736 ], [ 8.883544619999896, 54.294205155634742 ], [ 8.5994446199999, 54.333905155634753 ], [ 9.019444619999916, 54.493005155634748 ], [ 8.580544619999898, 54.867905155634745 ], [ 8.302444619999903, 54.860005155634738 ], [ 8.288344619999918, 54.737505155634736 ], [ 8.291044619999894, 54.894705155634753 ], [ 8.393344619999908, 55.05300515563475 ], [ 8.4567446199999, 54.90060515563475 ], [ 9.916644619999914, 54.791105155634753 ], [ 10.032444619999922, 54.555305155634741 ], [ 9.870244619999909, 54.454405155634745 ], [ 11.073844619999903, 54.376405155634743 ], [ 11.093044619999915, 54.197505155634744 ], [ 10.754944619999918, 54.04670515563474 ], [ 10.818544619999898, 53.890005155634739 ], [ 11.094644619999912, 54.01360515563475 ], [ 11.412744619999899, 53.919705155634759 ], [ 12.526944619999909, 54.474205155634749 ], [ 12.924144619999907, 54.426905155634742 ], [ 12.727944619999903, 54.423505155634743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 12, "LEVEL1_COD": 1, "LEVEL1_NAM": "EUROPE", "LEVEL2_NAM": "Southwestern Europe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.036155380000082, 35.912805155634757 ], [ -3.046455380000083, 35.907805155634762 ], [ -3.051155380000097, 35.90970515563474 ], [ -3.027255380000099, 35.924405155634744 ], [ -3.036155380000082, 35.912805155634757 ] ] ], [ [ [ -6.925055380000089, 37.170805155634739 ], [ -6.954155380000088, 37.180305155634741 ], [ -6.973055380000091, 37.210305155634742 ], [ -6.948655380000105, 37.203305155634737 ], [ -6.925055380000089, 37.170805155634739 ] ] ], [ [ [ 1.577744619999919, 38.687805155634734 ], [ 1.390244619999919, 38.643305155634735 ], [ 1.383044619999907, 38.72050515563474 ], [ 1.445244619999897, 38.741105155634742 ], [ 1.577744619999919, 38.687805155634734 ] ] ], [ [ [ 1.531644619999895, 38.951905155634748 ], [ 1.371944619999908, 38.830805155634735 ], [ 1.211944619999912, 38.898305155634759 ], [ 1.519744619999898, 39.118305155634758 ], [ 1.531644619999895, 38.951905155634748 ] ] ], [ [ [ 8.292244619999906, 39.093605155634762 ], [ 8.251144619999906, 39.105805155634741 ], [ 8.223844619999909, 39.164705155634735 ], [ 8.302744619999913, 39.190005155634751 ], [ 8.292244619999906, 39.093605155634762 ] ] ], [ [ [ 3.247744619999906, 39.734705155634757 ], [ 3.479744619999906, 39.711105155634741 ], [ 3.063644619999906, 39.26360515563475 ], [ 2.694444619999899, 39.551905155634742 ], [ 2.364144619999905, 39.555805155634758 ], [ 2.987744619999916, 39.911105155634758 ], [ 3.247744619999906, 39.734705155634757 ] ] ], [ [ [ 4.273344619999904, 39.96140515563475 ], [ 4.276344619999918, 39.806405155634749 ], [ 3.7969446199999, 40.017205155634755 ], [ 4.174444619999917, 40.050305155634746 ], [ 4.273344619999904, 39.96140515563475 ] ] ], [ [ [ 8.3391446199999, 41.062505155634753 ], [ 8.2675446199999, 41.05470515563475 ], [ 8.215244619999908, 40.99250515563476 ], [ 8.321144619999899, 41.121405155634747 ], [ 8.3391446199999, 41.062505155634753 ] ] ], [ [ [ 9.513344619999913, 41.146705155634734 ], [ 9.633844619999905, 40.989205155634735 ], [ 9.503644619999903, 40.918005155634759 ], [ 9.825844619999913, 40.526105155634738 ], [ 9.623044619999916, 40.255505155634737 ], [ 9.713644619999911, 40.040505155634762 ], [ 9.569144619999918, 39.150505155634747 ], [ 9.018344619999908, 39.266405155634757 ], [ 9.043344619999914, 39.04500515563474 ], [ 8.8591446199999, 38.87920515563475 ], [ 8.508644619999899, 39.06100515563476 ], [ 8.406944619999905, 38.958605155634743 ], [ 8.3711446199999, 39.374705155634743 ], [ 8.556644619999901, 39.866105155634742 ], [ 8.394744619999898, 39.902505155634756 ], [ 8.367244619999894, 40.492805155634741 ], [ 8.144444619999916, 40.592205155634744 ], [ 8.192544619999921, 40.913605155634755 ], [ 8.600844619999918, 40.846705155634751 ], [ 9.175544619999897, 41.245805155634756 ], [ 9.513344619999913, 41.146705155634734 ] ] ], [ [ [ 9.485844619999909, 42.615305155634744 ], [ 9.495144619999905, 42.603905155634735 ], [ 9.457744619999914, 42.643305155634735 ], [ 9.485844619999909, 42.615305155634744 ] ] ], [ [ [ 9.446644619999915, 42.678905155634752 ], [ 9.553344619999905, 42.11550515563475 ], [ 9.180844619999903, 41.364705155634752 ], [ 8.789144619999917, 41.558005155634746 ], [ 8.9213446199999, 41.688005155634741 ], [ 8.588644619999911, 41.963005155634747 ], [ 8.745044619999902, 42.051405155634754 ], [ 8.575844619999913, 42.383605155634754 ], [ 8.721644619999921, 42.57440515563475 ], [ 9.293844619999902, 42.675505155634752 ], [ 9.353044619999906, 43.00390515563474 ], [ 9.446644619999915, 42.678905155634752 ] ] ], [ [ [ -1.194455380000079, 45.822505155634744 ], [ -1.373655380000088, 45.958005155634751 ], [ -1.401655380000079, 46.050505155634752 ], [ -1.233055380000081, 45.964705155634746 ], [ -1.194455380000079, 45.822505155634744 ] ] ], [ [ [ -1.260855380000095, 46.156405155634744 ], [ -1.506955380000079, 46.204205155634739 ], [ -1.553055380000103, 46.245005155634757 ], [ -1.47445538000008, 46.255805155634746 ], [ -1.260855380000095, 46.156405155634744 ] ] ], [ [ [ -2.270855380000086, 46.693305155634746 ], [ -2.363955380000078, 46.69800515563476 ], [ -2.385055380000097, 46.725505155634735 ], [ -2.333655380000096, 46.730505155634759 ], [ -2.270855380000086, 46.693305155634746 ] ] ], [ [ [ -2.196955380000105, 47.017205155634755 ], [ -2.137255380000084, 46.943905155634738 ], [ -2.145055380000088, 46.905805155634752 ], [ -2.284755380000092, 47.020505155634751 ], [ -2.196955380000105, 47.017205155634755 ] ] ], [ [ [ -3.0666553800001, 47.306705155634759 ], [ -3.211155380000093, 47.300805155634762 ], [ -3.258655380000079, 47.376105155634761 ], [ -3.243355380000082, 47.391705155634739 ], [ -3.0666553800001, 47.306705155634759 ] ] ], [ [ [ -5.055055380000084, 48.454205155634739 ], [ -5.10145538000009, 48.442205155634738 ], [ -5.134755380000087, 48.458305155634761 ], [ -5.064755380000094, 48.483005155634757 ], [ -5.055055380000084, 48.454205155634739 ] ] ], [ [ [ -3.576655380000091, 48.803905155634752 ], [ -3.575555380000083, 48.812505155634753 ], [ -3.563355380000104, 48.808605155634737 ], [ -3.566155380000083, 48.805805155634758 ], [ -3.576655380000091, 48.803905155634752 ] ] ], [ [ [ -2.015055380000092, 49.214205155634758 ], [ -2.2053553800001, 49.180805155634758 ], [ -2.247255380000098, 49.253005155634739 ], [ -2.041455380000087, 49.243905155634749 ], [ -2.015055380000092, 49.214205155634758 ] ] ], [ [ [ -2.590855380000079, 49.422505155634738 ], [ -2.670355380000103, 49.434205155634757 ], [ -2.501655380000102, 49.507805155634756 ], [ -2.526655380000079, 49.427505155634762 ], [ -2.590855380000079, 49.422505155634738 ] ] ], [ [ [ 2.541644619999914, 51.091105155634736 ], [ 2.6505446199999, 50.816105155634759 ], [ 2.898044619999922, 50.703005155634756 ], [ 3.149644619999918, 50.790005155634745 ], [ 3.298544619999916, 50.523005155634749 ], [ 4.164944619999915, 50.28300515563474 ], [ 4.149244619999905, 49.978405155634746 ], [ 4.510544619999905, 49.947505155634744 ], [ 4.832444619999904, 50.168605155634751 ], [ 4.873044619999916, 49.797205155634757 ], [ 5.477444619999915, 49.50420515563475 ], [ 6.416044619999894, 49.475805155634745 ], [ 6.730844619999914, 49.166105155634753 ], [ 7.423544619999916, 49.177205155634752 ], [ 8.226044619999897, 48.964405155634736 ], [ 7.802144619999922, 48.57580515563474 ], [ 7.578844619999899, 48.119705155634747 ], [ 7.587644619999907, 47.584805155634754 ], [ 7.382444619999916, 47.432505155634757 ], [ 6.990544619999895, 47.497205155634745 ], [ 6.971644619999921, 47.291905155634751 ], [ 6.129944619999918, 46.593305155634752 ], [ 6.119144619999901, 46.264405155634748 ], [ 5.966044619999906, 46.205305155634747 ], [ 6.152144619999916, 46.153605155634736 ], [ 6.491944619999913, 46.453005155634756 ], [ 6.803044619999895, 46.427805155634744 ], [ 6.783844619999911, 46.148005155634749 ], [ 7.038044619999908, 45.931905155634738 ], [ 6.809644619999915, 45.727805155634755 ], [ 7.158544619999901, 45.377505155634751 ], [ 6.619744619999921, 45.110105155634741 ], [ 7.031644619999895, 44.831405155634755 ], [ 6.852744619999896, 44.540805155634743 ], [ 6.976344619999907, 44.284205155634751 ], [ 7.662144619999907, 44.170805155634739 ], [ 7.528344619999899, 43.788705155634759 ], [ 6.794144619999912, 43.422805155634748 ], [ 6.641644619999909, 43.185005155634755 ], [ 6.165244619999896, 43.050505155634752 ], [ 5.038844619999907, 43.347505155634749 ], [ 5.2324446199999, 43.467505155634754 ], [ 5.031344619999913, 43.556705155634759 ], [ 4.8226446199999, 43.395905155634736 ], [ 4.696644619999915, 43.577805155634749 ], [ 4.767344619999903, 43.368905155634749 ], [ 4.050244619999916, 43.562205155634743 ], [ 3.258044619999907, 43.227505155634745 ], [ 2.959944619999902, 42.83780515563474 ], [ 3.166044619999894, 42.361905155634744 ], [ 3.319144619999918, 42.321405155634736 ], [ 3.116344619999921, 42.221405155634741 ], [ 3.201644619999911, 41.892805155634747 ], [ 2.110844619999909, 41.285805155634748 ], [ 0.993044619999921, 41.048005155634755 ], [ 0.704144619999909, 40.813005155634741 ], [ 0.902744619999908, 40.719705155634742 ], [ 0.541944619999896, 40.569205155634748 ], [ -0.326155380000102, 39.494705155634747 ], [ -0.182555380000082, 39.029205155634756 ], [ 0.207144619999895, 38.732205155634759 ], [ -0.511655380000093, 38.325005155634742 ], [ -0.860055380000091, 37.716705155634756 ], [ -0.715555380000097, 37.606905155634749 ], [ -1.327555380000092, 37.558005155634746 ], [ -1.643655380000098, 37.372805155634737 ], [ -2.116655380000083, 36.735505155634755 ], [ -2.350355380000082, 36.840805155634754 ], [ -2.768955380000079, 36.67830515563476 ], [ -4.398355380000083, 36.72220515563474 ], [ -4.633055380000087, 36.51050515563476 ], [ -5.171955380000099, 36.412805155634757 ], [ -5.338255380000078, 36.112205155634754 ], [ -5.613655380000097, 36.006105155634756 ], [ -6.050855380000087, 36.191905155634757 ], [ -6.43505538000008, 36.697205155634762 ], [ -6.355555380000084, 36.860805155634736 ], [ -6.959955380000082, 37.221805155634755 ], [ -7.431855380000087, 37.253205155634745 ], [ -7.897855380000095, 37.008905155634736 ], [ -8.990355380000096, 37.023005155634749 ], [ -8.795855380000091, 37.442505155634748 ], [ -8.802555380000086, 38.374405155634761 ], [ -8.673355380000089, 38.413905155634737 ], [ -8.768955380000079, 38.517205155634755 ], [ -9.1839553800001, 38.419705155634759 ], [ -9.278655380000089, 38.668605155634751 ], [ -8.919755380000083, 38.765905155634741 ], [ -8.984455380000099, 38.947805155634754 ], [ -9.120055380000082, 38.714205155634758 ], [ -9.4947553800001, 38.785305155634759 ], [ -9.357555380000093, 39.365005155634762 ], [ -9.085555380000102, 39.615005155634762 ], [ -8.6608553800001, 40.687205155634743 ], [ -8.881655380000097, 41.756705155634748 ], [ -8.745055380000082, 41.952505155634739 ], [ -8.881655380000097, 41.883305155634744 ], [ -8.898655380000093, 42.108005155634757 ], [ -8.644155380000086, 42.288305155634745 ], [ -8.57975538000008, 42.351705155634747 ], [ -8.86915538000008, 42.251405155634743 ], [ -8.656155380000087, 42.427805155634744 ], [ -8.840855380000079, 42.391405155634757 ], [ -8.908355380000103, 42.467505155634754 ], [ -8.719455380000085, 42.695805155634744 ], [ -9.041455380000087, 42.528905155634746 ], [ -8.911655380000099, 42.793305155634741 ], [ -9.086655380000082, 42.740305155634744 ], [ -9.293355380000094, 42.922505155634738 ], [ -9.206955380000096, 43.157505155634752 ], [ -8.32975538000008, 43.403905155634746 ], [ -7.865855380000085, 43.772205155634751 ], [ -7.044855380000087, 43.490405155634747 ], [ -5.854155380000094, 43.648005155634749 ], [ -4.514555380000104, 43.396305155634749 ], [ -3.585555380000102, 43.510305155634754 ], [ -2.295555380000081, 43.296105155634748 ], [ -1.666955380000104, 43.385305155634754 ], [ -1.443955380000091, 43.640505155634756 ], [ -1.208655380000096, 44.625805155634751 ], [ -1.036155380000082, 44.675305155634746 ], [ -1.168955380000085, 44.776105155634738 ], [ -1.250355380000087, 44.662505155634747 ], [ -1.083955380000106, 45.564405155634759 ], [ -0.536655380000099, 44.895505155634751 ], [ -0.776655380000079, 45.461105155634741 ], [ -1.240855380000085, 45.701705155634741 ], [ -1.067855380000083, 45.908905155634741 ], [ -1.114655380000102, 46.316605155634747 ], [ -1.786455380000092, 46.488305155634762 ], [ -2.130855380000099, 46.838305155634757 ], [ -1.984255380000093, 47.03300515563474 ], [ -2.170855380000091, 47.126705155634752 ], [ -2.134155380000095, 47.278005155634744 ], [ -1.729355380000101, 47.210005155634761 ], [ -2.003355380000102, 47.319205155634748 ], [ -2.540355380000079, 47.29670515563474 ], [ -2.361155380000099, 47.50420515563475 ], [ -2.870155380000085, 47.541605155634741 ], [ -2.698055380000085, 47.63720515563476 ], [ -3.125055380000106, 47.599405155634756 ], [ -3.106455380000085, 47.47220515563474 ], [ -3.216955380000087, 47.650505155634747 ], [ -3.982255380000083, 47.889705155634758 ], [ -4.366455380000104, 47.804205155634762 ], [ -4.436155380000088, 47.972505155634749 ], [ -4.72615538000008, 48.040605155634736 ], [ -4.283655380000084, 48.114705155634752 ], [ -4.555855380000082, 48.175005155634736 ], [ -4.559455380000088, 48.336105155634741 ], [ -4.186155380000088, 48.300005155634736 ], [ -4.440555380000092, 48.355005155634743 ], [ -4.763655380000102, 48.335305155634742 ], [ -4.777855380000091, 48.509405155634752 ], [ -4.354155380000094, 48.674205155634738 ], [ -3.583055380000104, 48.675805155634762 ], [ -3.536655380000099, 48.82580515563474 ], [ -3.220855380000103, 48.870505155634746 ], [ -2.68535538000009, 48.501705155634752 ], [ -2.3072553800001, 48.676105155634744 ], [ -1.977255380000088, 48.512505155634742 ], [ -1.988055380000105, 48.686905155634761 ], [ -1.368955380000102, 48.643605155634745 ], [ -1.562555380000106, 48.747805155634737 ], [ -1.609755380000081, 49.215005155634756 ], [ -1.9416553800001, 49.723905155634739 ], [ -1.264155380000091, 49.684205155634757 ], [ -1.113955380000078, 49.365305155634744 ], [ -0.228355380000096, 49.28360515563476 ], [ 0.424644619999896, 49.451705155634741 ], [ 0.074144619999913, 49.526705155634758 ], [ 0.208844619999894, 49.718005155634742 ], [ 1.4610446199999, 50.124205155634755 ], [ 1.624944619999894, 50.877805155634761 ], [ 2.541644619999914, 51.091105155634736 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 13, "LEVEL1_COD": 1, "LEVEL1_NAM": "EUROPE", "LEVEL2_NAM": "Southeastern Europe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.128144619999915, 34.858005155634757 ], [ 24.1285446199999, 34.808905155634747 ], [ 24.0446446199999, 34.850005155634747 ], [ 24.074644619999901, 34.868605155634739 ], [ 24.128144619999915, 34.858005155634757 ] ] ], [ [ [ 26.9005446199999, 35.358905155634758 ], [ 26.898044619999922, 35.42000515563474 ], [ 27.019944619999904, 35.430805155634758 ], [ 26.998344619999898, 35.404205155634756 ], [ 26.9005446199999, 35.358905155634758 ] ] ], [ [ [ 23.858544619999918, 35.521705155634734 ], [ 24.172144619999898, 35.590505155634744 ], [ 24.104944619999912, 35.486105155634746 ], [ 24.319644619999906, 35.351705155634747 ], [ 25.766644619999909, 35.334705155634751 ], [ 25.808044619999919, 35.108005155634757 ], [ 26.301044619999914, 35.28300515563474 ], [ 26.290544619999906, 35.131105155634756 ], [ 26.119644619999917, 34.992805155634741 ], [ 24.752744619999902, 34.942205155634738 ], [ 24.723044619999911, 35.090505155634744 ], [ 24.399444619999912, 35.186905155634761 ], [ 23.521044619999913, 35.288005155634735 ], [ 23.606344619999902, 35.613305155634762 ], [ 23.718844619999913, 35.507505155634746 ], [ 23.748544619999905, 35.686405155634745 ], [ 23.858544619999918, 35.521705155634734 ] ] ], [ [ [ 27.157444619999922, 35.445805155634744 ], [ 27.0660446199999, 35.605005155634743 ], [ 27.228044619999906, 35.82640515563476 ], [ 27.202144619999899, 35.478005155634762 ], [ 27.157444619999922, 35.445805155634744 ] ] ], [ [ [ 23.332144619999895, 35.825305155634751 ], [ 23.298044619999899, 35.851105155634755 ], [ 23.273044619999922, 35.900005155634759 ], [ 23.325844619999913, 35.872205155634745 ], [ 23.332144619999895, 35.825305155634751 ] ] ], [ [ [ 14.562244619999916, 35.820305155634756 ], [ 14.375044619999898, 35.847505155634749 ], [ 14.326344619999901, 35.978905155634735 ], [ 14.510244619999895, 35.925305155634746 ], [ 14.562244619999916, 35.820305155634756 ] ] ], [ [ [ 14.2675446199999, 36.011405155634762 ], [ 14.191144619999903, 36.024405155634739 ], [ 14.181144619999912, 36.060805155634753 ], [ 14.341144619999909, 36.033905155634741 ], [ 14.2675446199999, 36.011405155634762 ] ] ], [ [ [ 23.049444619999917, 36.13690515563475 ], [ 22.912144619999907, 36.19940515563475 ], [ 22.929444619999913, 36.379405155634757 ], [ 23.1071446199999, 36.243905155634749 ], [ 23.049444619999917, 36.13690515563475 ] ] ], [ [ [ 25.838844619999918, 36.348005155634738 ], [ 25.767744619999917, 36.346905155634758 ], [ 25.730244619999894, 36.369705155634747 ], [ 25.771044619999913, 36.401905155634736 ], [ 25.838844619999918, 36.348005155634738 ] ] ], [ [ [ 25.399144619999902, 36.394405155634743 ], [ 25.391344619999899, 36.40800515563474 ], [ 25.406644619999895, 36.410505155634738 ], [ 25.408544619999901, 36.400805155634757 ], [ 25.399144619999902, 36.394405155634743 ] ] ], [ [ [ 25.457744619999914, 36.333605155634743 ], [ 25.3848446199999, 36.344605155634738 ], [ 25.371944619999908, 36.472505155634749 ], [ 25.486344619999898, 36.40800515563474 ], [ 25.457744619999914, 36.333605155634743 ] ] ], [ [ [ 26.342144619999914, 36.506405155634738 ], [ 26.262444619999911, 36.591705155634756 ], [ 26.458344619999906, 36.600805155634745 ], [ 26.471644619999921, 36.579205155634739 ], [ 26.342144619999914, 36.506405155634738 ] ] ], [ [ [ 24.950244619999921, 36.590505155634744 ], [ 24.915244619999896, 36.59610515563476 ], [ 24.840844619999899, 36.658905155634741 ], [ 24.938344619999896, 36.632805155634756 ], [ 24.950244619999921, 36.590505155634744 ] ] ], [ [ [ 25.089644619999916, 36.633905155634736 ], [ 25.102144619999905, 36.693305155634746 ], [ 25.188044619999914, 36.715705155634751 ], [ 25.156644619999895, 36.675505155634752 ], [ 25.089644619999916, 36.633905155634736 ] ] ], [ [ [ 21.785844619999921, 36.736905155634744 ], [ 21.7749446199999, 36.697805155634754 ], [ 21.750544619999914, 36.712505155634759 ], [ 21.760544619999905, 36.755005155634748 ], [ 21.785844619999921, 36.736905155634744 ] ] ], [ [ [ 24.413544619999897, 36.660305155634759 ], [ 24.349144619999919, 36.746105155634737 ], [ 24.548044619999899, 36.759405155634752 ], [ 24.538044619999908, 36.675005155634736 ], [ 24.413544619999897, 36.660305155634759 ] ] ], [ [ [ 25.385544619999905, 36.651705155634758 ], [ 25.258544619999896, 36.728905155634735 ], [ 25.275844619999901, 36.781405155634744 ], [ 25.407744619999903, 36.716605155634753 ], [ 25.385544619999905, 36.651705155634758 ] ] ], [ [ [ 24.662744619999899, 36.747505155634755 ], [ 24.628344619999922, 36.749405155634761 ], [ 24.609644619999898, 36.778305155634754 ], [ 24.665244619999896, 36.776405155634748 ], [ 24.662744619999899, 36.747505155634755 ] ] ], [ [ [ 21.698544619999922, 36.739205155634735 ], [ 21.704444619999919, 36.79670515563474 ], [ 21.728344619999916, 36.792805155634753 ], [ 21.720544619999913, 36.770305155634745 ], [ 21.698544619999922, 36.739205155634735 ] ] ], [ [ [ 12.0158446199999, 36.738305155634762 ], [ 11.9536446199999, 36.761405155634762 ], [ 11.930844619999903, 36.829705155634755 ], [ 12.048344619999909, 36.796905155634747 ], [ 12.0158446199999, 36.738305155634762 ] ] ], [ [ [ 24.558544619999907, 36.775505155634747 ], [ 24.521044619999913, 36.823905155634762 ], [ 24.562444619999894, 36.848605155634758 ], [ 24.599144619999919, 36.823905155634762 ], [ 24.558544619999907, 36.775505155634747 ] ] ], [ [ [ 25.459944619999902, 36.822205155634762 ], [ 25.420844619999912, 36.831905155634743 ], [ 25.474144619999919, 36.869205155634759 ], [ 25.483344619999912, 36.843305155634752 ], [ 25.459944619999902, 36.822205155634762 ] ] ], [ [ [ 25.826644619999911, 36.779705155634744 ], [ 25.736944619999917, 36.784405155634758 ], [ 25.976644619999917, 36.874205155634755 ], [ 25.920544619999902, 36.836105155634741 ], [ 25.826644619999911, 36.779705155634744 ] ] ], [ [ [ 25.680844619999903, 36.878005155634739 ], [ 25.612744619999916, 36.880805155634746 ], [ 25.6091446199999, 36.886705155634743 ], [ 25.651944619999909, 36.906105155634762 ], [ 25.680844619999903, 36.878005155634739 ] ] ], [ [ [ 25.076644619999911, 36.951905155634748 ], [ 25.0235446199999, 36.999105155634751 ], [ 25.083844619999894, 37.042505155634743 ], [ 25.086944619999912, 37.040505155634762 ], [ 25.076644619999911, 36.951905155634748 ] ] ], [ [ [ 24.711944619999912, 36.903005155634744 ], [ 24.683044619999919, 36.930305155634741 ], [ 24.641044619999917, 37.042205155634761 ], [ 24.765244619999919, 36.958305155634761 ], [ 24.711944619999912, 36.903005155634744 ] ] ], [ [ [ 25.834444619999914, 37.093005155634742 ], [ 25.793844619999902, 37.103005155634762 ], [ 25.782444619999922, 37.120005155634757 ], [ 25.825544619999903, 37.125505155634741 ], [ 25.834444619999914, 37.093005155634742 ] ] ], [ [ [ 25.250244619999904, 37.008305155634744 ], [ 25.1913446199999, 36.973905155634739 ], [ 25.098844619999909, 37.031405155634744 ], [ 25.268544619999915, 37.13860515563475 ], [ 25.250244619999904, 37.008305155634744 ] ] ], [ [ [ 25.4613446199999, 36.919405155634749 ], [ 25.341044619999906, 37.075005155634742 ], [ 25.5446446199999, 37.19800515563476 ], [ 25.580244619999917, 37.015505155634756 ], [ 25.4613446199999, 36.919405155634749 ] ] ], [ [ [ 24.534944619999919, 37.182505155634757 ], [ 24.509144619999915, 37.112805155634746 ], [ 24.414644619999905, 37.127205155634741 ], [ 24.460244619999912, 37.195805155634744 ], [ 24.534944619999919, 37.182505155634757 ] ] ], [ [ [ 23.156644619999895, 37.240305155634744 ], [ 23.129644619999908, 37.237505155634736 ], [ 23.096944619999903, 37.277505155634756 ], [ 23.1505446199999, 37.272805155634742 ], [ 23.156644619999895, 37.240305155634744 ] ] ], [ [ [ 23.410844619999921, 37.300805155634762 ], [ 23.373844619999915, 37.299705155634754 ], [ 23.582944619999921, 37.36520515563474 ], [ 23.496344619999917, 37.315305155634761 ], [ 23.410844619999921, 37.300805155634762 ] ] ], [ [ [ 24.379444619999902, 37.305805155634758 ], [ 24.368544619999909, 37.427205155634752 ], [ 24.4427446199999, 37.481705155634742 ], [ 24.483344619999912, 37.398005155634749 ], [ 24.379444619999902, 37.305805155634758 ] ] ], [ [ [ 25.3591446199999, 37.407805155634762 ], [ 25.313844619999912, 37.488005155634752 ], [ 25.463544619999908, 37.469705155634742 ], [ 25.457744619999914, 37.444405155634755 ], [ 25.3591446199999, 37.407805155634762 ] ] ], [ [ [ 24.952444619999909, 37.38550515563476 ], [ 24.884444619999897, 37.363605155634744 ], [ 24.889644619999899, 37.512505155634742 ], [ 24.944144619999918, 37.491105155634742 ], [ 24.952444619999909, 37.38550515563476 ] ] ], [ [ [ 23.497744619999906, 37.504705155634738 ], [ 23.451944619999921, 37.509205155634746 ], [ 23.432744619999909, 37.526705155634758 ], [ 23.522444619999902, 37.52420515563476 ], [ 23.497744619999906, 37.504705155634738 ] ] ], [ [ [ 25.228344619999916, 37.534405155634758 ], [ 25.113844619999895, 37.551105155634744 ], [ 24.975844619999918, 37.675505155634752 ], [ 25.238844619999895, 37.621905155634735 ], [ 25.228344619999916, 37.534405155634758 ] ] ], [ [ [ 24.298544619999916, 37.526405155634748 ], [ 24.298344619999909, 37.655005155634754 ], [ 24.394144619999906, 37.673305155634736 ], [ 24.393044619999898, 37.612505155634736 ], [ 24.298544619999916, 37.526405155634748 ] ] ], [ [ [ 23.513044619999903, 37.69170515563475 ], [ 23.476344619999907, 37.679205155634762 ], [ 23.423544619999916, 37.760005155634744 ], [ 23.563844619999912, 37.762805155634751 ], [ 23.513044619999903, 37.69170515563475 ] ] ], [ [ [ 20.898044619999922, 37.805305155634741 ], [ 20.994444619999911, 37.698605155634752 ], [ 20.831044619999915, 37.646405155634753 ], [ 20.621944619999908, 37.860805155634736 ], [ 20.898044619999922, 37.805305155634741 ] ] ], [ [ [ 12.354144619999914, 37.906105155634762 ], [ 12.283844619999911, 37.919205155634742 ], [ 12.271344619999894, 37.936405155634745 ], [ 12.3391446199999, 37.934405155634735 ], [ 12.354144619999914, 37.906105155634762 ] ] ], [ [ [ 12.073844619999903, 37.953605155634747 ], [ 12.043844619999902, 37.956105155634745 ], [ 12.030044619999899, 37.986905155634744 ], [ 12.059144619999898, 37.989205155634735 ], [ 12.073844619999903, 37.953605155634747 ] ] ], [ [ [ 24.791644619999914, 37.998305155634753 ], [ 24.9627446199999, 37.872505155634755 ], [ 24.960244619999912, 37.685505155634743 ], [ 24.713344619999901, 37.872805155634737 ], [ 24.791644619999914, 37.998305155634753 ] ] ], [ [ [ 23.4624446199999, 37.878605155634759 ], [ 23.437444619999894, 37.985805155634736 ], [ 23.538844619999907, 37.985805155634736 ], [ 23.540244619999896, 37.920505155634757 ], [ 23.4624446199999, 37.878605155634759 ] ] ], [ [ [ 15.528844619999916, 38.13690515563475 ], [ 15.086644619999902, 37.479405155634751 ], [ 15.3166446199999, 37.008905155634736 ], [ 15.081344619999896, 36.64920515563476 ], [ 13.158844619999911, 37.491105155634742 ], [ 12.657544619999896, 37.558605155634737 ], [ 12.422244619999901, 37.796105155634748 ], [ 12.556344619999919, 38.059705155634745 ], [ 12.930544619999921, 38.025805155634757 ], [ 13.3166446199999, 38.218305155634752 ], [ 13.768844619999896, 37.97050515563474 ], [ 15.652544619999901, 38.270305155634745 ], [ 15.528844619999916, 38.13690515563475 ] ] ], [ [ [ 14.988844619999895, 38.364205155634735 ], [ 14.941144619999903, 38.399405155634739 ], [ 14.958844619999894, 38.431105155634739 ], [ 15.0041446199999, 38.37920515563475 ], [ 14.988844619999895, 38.364205155634735 ] ] ], [ [ [ 21.109844619999905, 38.43400515563475 ], [ 21.1088446199999, 38.430605155634751 ], [ 21.105644619999907, 38.43000515563476 ], [ 21.109844619999905, 38.43400515563475 ] ] ], [ [ [ 20.612444619999906, 38.394205155634737 ], [ 20.813344619999896, 38.118305155634758 ], [ 20.792444619999912, 38.060305155634737 ], [ 20.341344619999916, 38.177205155634752 ], [ 20.539144619999917, 38.47050515563474 ], [ 20.612444619999906, 38.394205155634737 ] ] ], [ [ [ 20.735544619999899, 38.310005155634755 ], [ 20.644644619999895, 38.398005155634749 ], [ 20.6488446199999, 38.500305155634734 ], [ 20.743344619999903, 38.372505155634755 ], [ 20.735544619999899, 38.310005155634755 ] ] ], [ [ [ 14.955244619999917, 38.445505155634734 ], [ 14.9016446199999, 38.476105155634755 ], [ 14.9122446199999, 38.516705155634739 ], [ 14.963844619999918, 38.517505155634737 ], [ 14.955244619999917, 38.445505155634734 ] ] ], [ [ [ 14.868344619999903, 38.531405155634744 ], [ 14.7969446199999, 38.558605155634737 ], [ 14.794744619999904, 38.567805155634758 ], [ 14.868644619999912, 38.578005155634756 ], [ 14.868344619999903, 38.531405155634744 ] ] ], [ [ [ 20.903044619999918, 38.545505155634757 ], [ 20.899144619999902, 38.56640515563474 ], [ 20.938844619999912, 38.605305155634753 ], [ 20.9399446199999, 38.593905155634744 ], [ 20.903044619999918, 38.545505155634757 ] ] ], [ [ [ 13.173344619999909, 38.690305155634761 ], [ 13.1622446199999, 38.714405155634736 ], [ 13.198344619999915, 38.71140515563475 ], [ 13.195844619999917, 38.704705155634755 ], [ 13.173344619999909, 38.690305155634761 ] ] ], [ [ [ 15.213644619999911, 38.770505155634751 ], [ 15.190244619999902, 38.790505155634762 ], [ 15.239144619999905, 38.806105155634739 ], [ 15.229744619999906, 38.780805155634752 ], [ 15.213644619999911, 38.770505155634751 ] ] ], [ [ [ 20.643544619999915, 38.581105155634745 ], [ 20.557744619999909, 38.683905155634747 ], [ 20.701344619999901, 38.834705155634751 ], [ 20.723044619999911, 38.626405155634743 ], [ 20.643544619999915, 38.581105155634745 ] ] ], [ [ [ 24.683044619999919, 38.798005155634755 ], [ 24.553344619999905, 38.768305155634735 ], [ 24.458344619999906, 38.96280515563474 ], [ 24.577444619999909, 38.926105155634744 ], [ 24.683044619999919, 38.798005155634755 ] ] ], [ [ [ 23.461944619999912, 38.853305155634743 ], [ 24.153844619999916, 38.646705155634734 ], [ 24.247144619999915, 38.231905155634749 ], [ 24.568544619999898, 38.147505155634761 ], [ 24.564144619999894, 37.987205155634754 ], [ 24.387144619999901, 37.993605155634739 ], [ 24.049644619999896, 38.391905155634745 ], [ 23.642144619999897, 38.418905155634761 ], [ 23.196044619999896, 38.832805155634745 ], [ 22.829944619999907, 38.829205155634739 ], [ 23.292444619999912, 39.038905155634737 ], [ 23.461944619999912, 38.853305155634743 ] ] ], [ [ [ 23.736644619999907, 39.07470515563476 ], [ 23.662744619999899, 39.086105155634741 ], [ 23.590844619999899, 39.204405155634745 ], [ 23.786644619999919, 39.124205155634755 ], [ 23.736644619999907, 39.07470515563476 ] ] ], [ [ [ 23.508544619999896, 39.15970515563474 ], [ 23.455844619999908, 39.130005155634748 ], [ 23.392444619999907, 39.152205155634746 ], [ 23.4613446199999, 39.208305155634761 ], [ 23.508544619999896, 39.15970515563474 ] ] ], [ [ [ 20.198344619999915, 39.174405155634744 ], [ 20.136644619999913, 39.200505155634758 ], [ 20.123544619999905, 39.236405155634756 ], [ 20.164944619999915, 39.222505155634749 ], [ 20.198344619999915, 39.174405155634744 ] ] ], [ [ [ 23.862444619999906, 39.136705155634743 ], [ 23.834144619999904, 39.152205155634746 ], [ 23.953544619999917, 39.289705155634735 ], [ 23.978044619999906, 39.260305155634754 ], [ 23.862444619999906, 39.136705155634743 ] ] ], [ [ [ 24.992444619999901, 39.466405155634746 ], [ 24.969644619999912, 39.508005155634734 ], [ 25.006344619999908, 39.563305155634751 ], [ 25.053544619999911, 39.530805155634752 ], [ 24.992444619999901, 39.466405155634746 ] ] ], [ [ [ 19.926044619999914, 39.794405155634749 ], [ 19.846644619999921, 39.64920515563476 ], [ 20.111644619999907, 39.363005155634752 ], [ 19.641344619999899, 39.744405155634738 ], [ 19.926044619999914, 39.794405155634749 ] ] ], [ [ [ 19.404144619999897, 39.843605155634762 ], [ 19.3788446199999, 39.868605155634739 ], [ 19.430544619999921, 39.86750515563476 ], [ 19.428544619999911, 39.863905155634754 ], [ 19.404144619999897, 39.843605155634762 ] ] ], [ [ [ 25.4416446199999, 40.004705155634738 ], [ 25.355844619999914, 39.786405155634739 ], [ 25.259644619999904, 39.913605155634755 ], [ 25.223044619999911, 39.799405155634744 ], [ 25.054444619999913, 39.860505155634755 ], [ 25.049944619999906, 39.989705155634752 ], [ 25.4416446199999, 40.004705155634738 ] ] ], [ [ [ 25.824444619999895, 40.100305155634757 ], [ 25.663844619999907, 40.126405155634743 ], [ 26.013544619999919, 40.157505155634752 ], [ 25.989944619999903, 40.12890515563474 ], [ 25.824444619999895, 40.100305155634757 ] ] ], [ [ [ 25.601644619999917, 40.398005155634749 ], [ 25.557444619999899, 40.401405155634748 ], [ 25.443844619999908, 40.475805155634745 ], [ 25.694644619999906, 40.466105155634736 ], [ 25.601644619999917, 40.398005155634749 ] ] ], [ [ [ 14.210544619999922, 40.560505155634743 ], [ 14.241344619999921, 40.55500515563476 ], [ 14.2618446199999, 40.556705155634759 ], [ 14.197144619999904, 40.536705155634749 ], [ 14.210544619999922, 40.560505155634743 ] ] ], [ [ [ 13.951344619999901, 40.70140515563476 ], [ 13.863544619999914, 40.70110515563475 ], [ 13.853844619999904, 40.734705155634757 ], [ 13.948044619999905, 40.74250515563476 ], [ 13.951344619999901, 40.70140515563476 ] ] ], [ [ [ 24.773344619999904, 40.631705155634748 ], [ 24.643544619999915, 40.570805155634744 ], [ 24.509444619999897, 40.65800515563474 ], [ 24.645244619999914, 40.797805155634748 ], [ 24.773344619999904, 40.631705155634748 ] ] ], [ [ [ 12.9641446199999, 40.883905155634736 ], [ 12.950244619999921, 40.917805155634753 ], [ 12.988044619999897, 40.931405155634749 ], [ 12.974144619999919, 40.894705155634753 ], [ 12.9641446199999, 40.883905155634736 ] ] ], [ [ [ 10.3166446199999, 42.317505155634748 ], [ 10.289644619999905, 42.32300515563476 ], [ 10.293044619999904, 42.350005155634747 ], [ 10.326044619999919, 42.343305155634752 ], [ 10.3166446199999, 42.317505155634748 ] ] ], [ [ [ 10.915844619999916, 42.325305155634751 ], [ 10.866344619999921, 42.358605155634748 ], [ 10.877744619999902, 42.388005155634758 ], [ 10.914444619999898, 42.368905155634749 ], [ 10.915844619999916, 42.325305155634751 ] ] ], [ [ [ 10.088344619999901, 42.572205155634762 ], [ 10.069444619999899, 42.591905155634734 ], [ 10.081944619999916, 42.618905155634749 ], [ 10.101644619999917, 42.593605155634762 ], [ 10.088344619999901, 42.572205155634762 ] ] ], [ [ [ 16.903844619999916, 42.726105155634755 ], [ 16.822244619999907, 42.732205155634759 ], [ 16.813844619999912, 42.768005155634754 ], [ 16.939744619999914, 42.768305155634735 ], [ 16.903844619999916, 42.726105155634755 ] ] ], [ [ [ 17.745644619999922, 42.69310515563474 ], [ 17.3725446199999, 42.757205155634736 ], [ 17.321644619999915, 42.788105155634739 ], [ 17.399444619999912, 42.797805155634748 ], [ 17.745644619999922, 42.69310515563474 ] ] ], [ [ [ 10.4410446199999, 42.84440515563476 ], [ 10.423044619999899, 42.708905155634753 ], [ 10.101944619999898, 42.772505155634761 ], [ 10.411344619999909, 42.870305155634739 ], [ 10.4410446199999, 42.84440515563476 ] ] ], [ [ [ 16.820544619999907, 42.960005155634761 ], [ 17.044744619999904, 42.975305155634757 ], [ 17.1836446199999, 42.918605155634751 ], [ 16.633044619999907, 42.981105155634751 ], [ 16.820544619999907, 42.960005155634761 ] ] ], [ [ [ 9.844144619999895, 43.034405155634758 ], [ 9.806944619999911, 43.009705155634762 ], [ 9.804144619999903, 43.063905155634743 ], [ 9.831644619999906, 43.075505155634758 ], [ 9.844144619999895, 43.034405155634758 ] ] ], [ [ [ 16.208344619999906, 43.022205155634751 ], [ 16.064444619999904, 43.01050515563476 ], [ 16.050544619999897, 43.063005155634741 ], [ 16.251944619999904, 43.072505155634744 ], [ 16.208344619999906, 43.022205155634751 ] ] ], [ [ [ 16.562044619999909, 43.230805155634741 ], [ 16.719644619999912, 43.161705155634749 ], [ 17.190044619999895, 43.126005155634758 ], [ 16.654144619999897, 43.119705155634747 ], [ 16.373044619999916, 43.194205155634748 ], [ 16.562044619999909, 43.230805155634741 ] ] ], [ [ [ 16.851644619999917, 43.269205155634737 ], [ 16.519744619999898, 43.276405155634748 ], [ 16.404744619999917, 43.329705155634755 ], [ 16.753044619999912, 43.362805155634746 ], [ 16.851644619999917, 43.269205155634737 ] ] ], [ [ [ 16.390544619999901, 43.332805155634745 ], [ 16.208644619999916, 43.382805155634756 ], [ 16.198344619999915, 43.411705155634749 ], [ 16.326344619999901, 43.394205155634737 ], [ 16.390544619999901, 43.332805155634745 ] ] ], [ [ [ 15.687544619999898, 43.630805155634746 ], [ 15.6408446199999, 43.650805155634757 ], [ 15.606644619999912, 43.675005155634736 ], [ 15.6622446199999, 43.665805155634743 ], [ 15.687544619999898, 43.630805155634746 ] ] ], [ [ [ 15.346344619999911, 43.808905155634747 ], [ 15.3771446199999, 43.775505155634747 ], [ 15.2250446199999, 43.873005155634743 ], [ 15.238644619999917, 43.875005155634753 ], [ 15.346344619999911, 43.808905155634747 ] ] ], [ [ [ 15.446644619999915, 43.88720515563476 ], [ 15.3511446199999, 43.926405155634754 ], [ 15.260844619999915, 44.006705155634748 ], [ 15.376944619999904, 43.968005155634742 ], [ 15.446644619999915, 43.88720515563476 ] ] ], [ [ [ 15.250544619999914, 44.016705155634739 ], [ 15.130044619999921, 44.084405155634741 ], [ 15.062544619999898, 44.157205155634742 ], [ 15.243044619999921, 44.05300515563475 ], [ 15.250544619999914, 44.016705155634739 ] ] ], [ [ [ 14.855244619999894, 44.175305155634746 ], [ 15.085544619999922, 43.984405155634747 ], [ 15.226344619999907, 43.901105155634738 ], [ 15.137544619999915, 43.896405155634753 ], [ 14.855244619999894, 44.175305155634746 ] ] ], [ [ [ 14.838644619999911, 44.60950515563475 ], [ 15.040044619999918, 44.525505155634747 ], [ 14.9142446199999, 44.542305155634736 ], [ 15.248844619999915, 44.327805155634749 ], [ 15.125244619999904, 44.311905155634761 ], [ 14.7327446199999, 44.69800515563476 ], [ 14.838644619999911, 44.60950515563475 ] ] ], [ [ [ 14.757344619999913, 44.803705155634745 ], [ 14.825244619999921, 44.762305155634735 ], [ 14.865244619999913, 44.706705155634737 ], [ 14.659244619999896, 44.794705155634759 ], [ 14.757344619999913, 44.803705155634745 ] ] ], [ [ [ 14.4550446199999, 44.90970515563474 ], [ 14.531344619999913, 44.633305155634744 ], [ 14.394144619999906, 44.630005155634748 ], [ 14.516644619999909, 44.473305155634748 ], [ 14.347744619999901, 44.655305155634736 ], [ 14.315244619999902, 45.175005155634736 ], [ 14.4550446199999, 44.90970515563474 ] ] ], [ [ [ 14.7558446199999, 44.94140515563474 ], [ 14.428844619999921, 45.078305155634737 ], [ 14.539144619999917, 45.239405155634742 ], [ 14.813344619999896, 44.987805155634746 ], [ 14.7558446199999, 44.94140515563474 ] ] ], [ [ [ 12.422744619999918, 45.420505155634757 ], [ 12.378244619999919, 45.419705155634759 ], [ 12.3163446199999, 45.350505155634735 ], [ 12.373344619999898, 45.42800515563475 ], [ 12.422744619999918, 45.420505155634757 ] ] ], [ [ [ 21.109844619999905, 38.43400515563475 ], [ 20.989444619999915, 38.67000515563474 ], [ 20.7321446199999, 38.801105155634744 ], [ 20.781044619999903, 38.931705155634759 ], [ 21.086944619999912, 38.863905155634754 ], [ 21.138544619999919, 39.015505155634756 ], [ 20.821644619999915, 39.114405155634742 ], [ 20.731944619999922, 38.952505155634739 ], [ 19.987444619999906, 39.688005155634741 ], [ 19.863044619999897, 40.039705155634735 ], [ 19.452744619999919, 40.224705155634737 ], [ 19.288544619999897, 40.417505155634743 ], [ 19.478544619999894, 40.350305155634757 ], [ 19.307144619999917, 40.645305155634745 ], [ 19.521344619999894, 40.90800515563474 ], [ 19.442444619999918, 41.40690515563476 ], [ 19.596644619999921, 41.810505155634743 ], [ 19.170544619999902, 41.934405155634735 ], [ 18.5463446199999, 42.416105155634753 ], [ 18.675244619999916, 42.46280515563474 ], [ 18.508644619999899, 42.454705155634755 ], [ 18.513044619999903, 42.39890515563475 ], [ 17.877244619999914, 42.767805155634747 ], [ 17.012344619999908, 43.006305155634735 ], [ 17.661644619999919, 42.874705155634743 ], [ 16.884444619999897, 43.403005155634744 ], [ 15.988344619999907, 43.504405155634757 ], [ 15.940844619999922, 43.683605155634737 ], [ 15.1516446199999, 44.196405155634736 ], [ 15.2689446199999, 44.33040515563475 ], [ 15.414444619999898, 44.260005155634744 ], [ 15.529744619999917, 44.263005155634758 ], [ 15.000844619999896, 44.568605155634756 ], [ 14.842544619999899, 45.111705155634738 ], [ 14.4827446199999, 45.311105155634735 ], [ 14.292744619999894, 45.325005155634742 ], [ 13.899144619999902, 44.774405155634739 ], [ 13.496344619999917, 45.49080515563476 ], [ 13.804444619999913, 45.610005155634738 ], [ 13.632144619999906, 45.769205155634737 ], [ 13.131044619999898, 45.771905155634741 ], [ 13.0860446199999, 45.63550515563476 ], [ 12.281344619999913, 45.468005155634742 ], [ 12.161044619999899, 45.26390515563476 ], [ 12.539144619999917, 44.961105155634741 ], [ 12.245544619999919, 44.715805155634754 ], [ 12.368344619999903, 44.246705155634757 ], [ 13.621644619999898, 43.553905155634752 ], [ 14.016644619999909, 42.67000515563474 ], [ 14.739644619999922, 42.085505155634749 ], [ 15.170844619999912, 41.923305155634736 ], [ 16.141944619999919, 41.914205155634747 ], [ 16.1899446199999, 41.781105155634762 ], [ 15.8999446199999, 41.616405155634752 ], [ 15.932444619999899, 41.478005155634762 ], [ 18.011644619999913, 40.644405155634743 ], [ 18.512144619999901, 40.136705155634743 ], [ 18.3494446199999, 39.791905155634751 ], [ 18.043844619999902, 39.933605155634737 ], [ 17.8591446199999, 40.28360515563476 ], [ 17.204444619999919, 40.407205155634742 ], [ 17.315544619999912, 40.497505155634755 ], [ 16.913544619999897, 40.445505155634734 ], [ 16.486644619999907, 39.767505155634737 ], [ 17.151044619999908, 39.390005155634739 ], [ 17.169144619999912, 38.963305155634757 ], [ 16.594944619999922, 38.800805155634762 ], [ 16.571344619999905, 38.431405155634749 ], [ 16.062444619999894, 37.924205155634738 ], [ 15.631644619999918, 38.011705155634743 ], [ 15.6305446199999, 38.232205155634759 ], [ 15.920644619999905, 38.518005155634754 ], [ 15.832744619999914, 38.639205155634741 ], [ 16.178544619999911, 38.745005155634757 ], [ 16.222444619999919, 38.910805155634748 ], [ 15.666644619999914, 40.030805155634752 ], [ 15.359644619999898, 39.997805155634737 ], [ 14.941944619999902, 40.23420515563474 ], [ 14.990544619999895, 40.39920515563476 ], [ 14.776944619999909, 40.672205155634757 ], [ 14.327244619999902, 40.57300515563476 ], [ 14.458044619999896, 40.742805155634741 ], [ 14.073844619999903, 40.821905155634752 ], [ 13.7130446199999, 41.251405155634743 ], [ 13.031944619999905, 41.255305155634758 ], [ 11.623044619999916, 42.301705155634735 ], [ 11.098844619999909, 42.393005155634754 ], [ 11.181644619999901, 42.527205155634746 ], [ 10.588844619999918, 42.957505155634735 ], [ 10.068544619999898, 44.030005155634754 ], [ 8.748844619999915, 44.429205155634762 ], [ 8.0677446199999, 43.893005155634754 ], [ 7.531944619999905, 43.782005155634735 ], [ 7.662144619999907, 44.170805155634739 ], [ 7.348344619999921, 44.131905155634755 ], [ 6.876944619999904, 44.376705155634752 ], [ 7.031644619999895, 44.831405155634755 ], [ 6.619744619999921, 45.110105155634741 ], [ 7.158544619999901, 45.377505155634751 ], [ 6.808844619999917, 45.831405155634755 ], [ 7.855744619999911, 45.919005155634736 ], [ 8.436344619999915, 46.463305155634757 ], [ 8.445544619999907, 46.245805155634756 ], [ 9.036644619999919, 45.83780515563474 ], [ 9.2969446199999, 46.50390515563474 ], [ 9.542444619999912, 46.306905155634738 ], [ 9.949944619999911, 46.37920515563475 ], [ 10.129944619999918, 46.227205155634735 ], [ 10.050244619999916, 46.540005155634745 ], [ 10.465244619999908, 46.546405155634758 ], [ 10.471244619999908, 46.871305155634744 ], [ 11.014644619999899, 46.772505155634761 ], [ 11.1713446199999, 46.966705155634756 ], [ 12.189144619999894, 47.094705155634742 ], [ 12.160244619999901, 46.92800515563475 ], [ 12.440544619999912, 46.690805155634749 ], [ 14.545044619999913, 46.407505155634752 ], [ 14.870544619999919, 46.61580515563476 ], [ 16.293344619999914, 46.870805155634756 ], [ 16.529444619999907, 46.510305155634754 ], [ 17.3511446199999, 45.953305155634737 ], [ 18.424144619999907, 45.749205155634755 ], [ 19.5600446199999, 46.171905155634747 ], [ 21.080844619999908, 46.246905155634735 ], [ 22.032444619999922, 47.530305155634736 ], [ 23.156944619999905, 48.107205155634759 ], [ 24.572244619999907, 47.949505155634753 ], [ 24.919444619999922, 47.71170515563476 ], [ 25.326044619999919, 47.915305155634755 ], [ 26.1499446199999, 47.982205155634759 ], [ 26.314844619999917, 48.186205155634738 ], [ 26.954644619999897, 48.185505155634743 ], [ 28.233544619999918, 46.667205155634761 ], [ 28.069144619999918, 45.583305155634761 ], [ 28.688344619999896, 45.22080515563475 ], [ 29.318844619999936, 45.438905155634743 ], [ 29.667144619999931, 45.301705155634735 ], [ 29.6074446199999, 44.840805155634754 ], [ 29.2141446199999, 44.793005155634759 ], [ 29.047144619999898, 45.002805155634761 ], [ 28.868344619999903, 44.943005155634737 ], [ 28.949644619999901, 44.821405155634736 ], [ 28.783644619999905, 44.646405155634753 ], [ 28.899644619999918, 44.710805155634759 ], [ 28.995244619999909, 44.680805155634758 ], [ 28.760544619999905, 44.625305155634734 ], [ 28.757444619999916, 44.519705155634753 ], [ 28.927744619999913, 44.61750515563476 ], [ 28.629944619999918, 44.298605155634746 ], [ 28.588344619999901, 43.495505155634746 ], [ 28.093344619999897, 43.369705155634747 ], [ 27.885844619999915, 43.032505155634752 ], [ 27.896944619999914, 42.702805155634749 ], [ 27.448544619999922, 42.476905155634753 ], [ 28.0041446199999, 42.03300515563474 ], [ 27.968344619999897, 41.825005155634742 ], [ 28.1927446199999, 41.541605155634741 ], [ 29.093344619999897, 41.244405155634738 ], [ 29.055544619999921, 41.082505155634735 ], [ 28.830244619999917, 40.955505155634754 ], [ 28.529144619999897, 41.080305155634747 ], [ 27.509644619999904, 40.983605155634748 ], [ 27.298044619999899, 40.704405155634745 ], [ 26.181044619999909, 40.04530515563475 ], [ 26.208344619999906, 40.320305155634756 ], [ 26.793844619999902, 40.651105155634738 ], [ 26.109644619999898, 40.596705155634751 ], [ 26.022744619999912, 40.829705155634755 ], [ 25.138044619999903, 41.011405155634762 ], [ 24.801344619999895, 40.852005155634757 ], [ 24.398044619999922, 40.936905155634761 ], [ 24.096644619999921, 40.719205155634754 ], [ 23.687744619999904, 40.67970515563475 ], [ 23.883344619999917, 40.399405155634739 ], [ 24.181944619999911, 40.34720515563474 ], [ 24.393844619999896, 40.140305155634749 ], [ 23.727744619999896, 40.350505155634735 ], [ 23.9921446199999, 40.111105155634746 ], [ 23.932144619999917, 39.943005155634737 ], [ 23.653044619999918, 40.228605155634753 ], [ 23.338344619999901, 40.227805155634755 ], [ 23.709944619999902, 39.911905155634756 ], [ 23.379444619999902, 39.992805155634741 ], [ 23.305544619999921, 40.229205155634745 ], [ 22.899444619999912, 40.396705155634734 ], [ 22.9413446199999, 40.630505155634737 ], [ 22.591044619999906, 40.476705155634747 ], [ 22.594944619999922, 40.01220515563476 ], [ 23.344944619999922, 39.17800515563475 ], [ 23.206044619999915, 39.105305155634753 ], [ 23.058044619999919, 39.093905155634744 ], [ 23.221044619999901, 39.185005155634755 ], [ 22.937744619999904, 39.358605155634748 ], [ 22.824644619999901, 39.206905155634743 ], [ 23.072744619999895, 39.036905155634756 ], [ 22.523344619999904, 38.857205155634759 ], [ 23.3160446199999, 38.645305155634745 ], [ 23.334944619999902, 38.538005155634735 ], [ 24.073844619999903, 38.196905155634752 ], [ 24.034444619999903, 37.651705155634758 ], [ 23.515544619999901, 38.040505155634762 ], [ 22.991344619999921, 37.880505155634737 ], [ 23.513544619999919, 37.42940515563474 ], [ 23.177144619999922, 37.290505155634762 ], [ 23.1288446199999, 37.44800515563476 ], [ 22.725844619999918, 37.568305155634746 ], [ 23.198344619999915, 36.431905155634738 ], [ 22.634144619999915, 36.80440515563474 ], [ 22.488844619999895, 36.386105155634752 ], [ 22.152744619999908, 37.021705155634734 ], [ 21.937444619999894, 36.987805155634746 ], [ 21.881344619999908, 36.720305155634762 ], [ 21.704444619999919, 36.815305155634761 ], [ 21.564144619999894, 37.152505155634756 ], [ 21.649644619999918, 37.441905155634757 ], [ 21.106344619999902, 37.854405155634751 ], [ 21.384444619999897, 38.21140515563475 ], [ 21.641644619999909, 38.158905155634741 ], [ 21.858344619999912, 38.340805155634754 ], [ 22.868044619999921, 37.938005155634741 ], [ 23.226044619999897, 38.153005155634744 ], [ 22.403344619999899, 38.44800515563476 ], [ 22.3785446199999, 38.334205155634734 ], [ 21.947744619999895, 38.409405155634758 ], [ 21.533344619999895, 38.312205155634743 ], [ 21.350544619999908, 38.432805155634739 ], [ 21.1719446199999, 38.298005155634755 ], [ 21.109844619999905, 38.43400515563475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 14, "LEVEL1_COD": 1, "LEVEL1_NAM": "EUROPE", "LEVEL2_NAM": "Eastern Europe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.962444619999928, 45.505005155634748 ], [ 47.932144619999917, 45.618605155634739 ], [ 47.960244619999912, 45.653005155634744 ], [ 47.993844619999891, 45.536605155634746 ], [ 47.962444619999928, 45.505005155634748 ] ] ], [ [ [ 48.468844619999913, 45.673905155634756 ], [ 48.336044619999882, 45.768305155634735 ], [ 48.3377446199999, 45.797205155634757 ], [ 48.404444619999936, 45.79500515563474 ], [ 48.468844619999913, 45.673905155634756 ] ] ], [ [ [ 48.723244619999889, 45.698305155634742 ], [ 48.591944619999936, 45.747505155634755 ], [ 48.4958446199999, 45.882205155634736 ], [ 48.676344619999895, 45.764105155634738 ], [ 48.723244619999889, 45.698305155634742 ] ] ], [ [ [ 33.040244619999896, 46.011405155634762 ], [ 32.978344619999916, 46.01190515563475 ], [ 32.759444619999897, 46.036105155634758 ], [ 32.965244619999908, 46.049405155634744 ], [ 33.040244619999896, 46.011405155634762 ] ] ], [ [ [ 34.227444619999915, 46.061905155634761 ], [ 34.158044619999885, 46.100505155634735 ], [ 34.229144619999886, 46.187805155634734 ], [ 34.264644619999899, 46.128605155634759 ], [ 34.227444619999915, 46.061905155634761 ] ] ], [ [ [ 32.128844619999882, 46.162505155634747 ], [ 32.168144619999907, 46.14490515563476 ], [ 31.727744619999896, 46.216405155634746 ], [ 31.584144619999904, 46.253305155634749 ], [ 31.52464461999989, 46.303605155634742 ], [ 31.501044619999902, 46.366605155634758 ], [ 32.128844619999882, 46.162505155634747 ] ] ], [ [ [ 19.697744619999895, 54.479405155634751 ], [ 19.627244619999914, 54.463305155634757 ], [ 19.8982446199999, 54.626005155634758 ], [ 19.812444619999894, 54.551205155634747 ], [ 19.697744619999895, 54.479405155634751 ] ] ], [ [ [ 23.990844619999905, 58.100005155634747 ], [ 23.938844619999912, 58.114405155634742 ], [ 23.947744619999895, 58.147205155634751 ], [ 24.022144619999921, 58.142705155634744 ], [ 23.990844619999905, 58.100005155634747 ] ] ], [ [ [ 22.990844619999905, 58.597805155634759 ], [ 23.332744619999914, 58.44170515563475 ], [ 22.367544619999904, 58.219705155634742 ], [ 21.994144619999901, 57.922805155634748 ], [ 22.201344619999901, 58.144705155634753 ], [ 21.848644619999902, 58.278905155634746 ], [ 22.007544619999919, 58.353305155634743 ], [ 21.831944619999916, 58.505005155634748 ], [ 22.990844619999905, 58.597805155634759 ] ] ], [ [ [ 23.365044619999907, 58.530005155634754 ], [ 23.227244619999908, 58.529705155634744 ], [ 23.057744619999909, 58.608305155634739 ], [ 23.247444619999897, 58.671005155634745 ], [ 23.365044619999907, 58.530005155634754 ] ] ], [ [ [ 23.277244619999919, 58.963005155634747 ], [ 23.152544619999901, 58.965805155634754 ], [ 23.110844619999909, 59.024705155634749 ], [ 23.391644619999909, 58.998005155634743 ], [ 23.277244619999919, 58.963005155634747 ] ] ], [ [ [ 22.749744619999916, 59.000005155634753 ], [ 23.0452446199999, 58.83640515563475 ], [ 22.531644619999895, 58.688605155634761 ], [ 22.381944619999899, 58.88690515563475 ], [ 22.042244619999906, 58.940005155634751 ], [ 22.749744619999916, 59.000005155634753 ] ] ], [ [ [ 28.6930446199999, 60.267805155634747 ], [ 28.5877446199999, 60.295505155634757 ], [ 28.551044619999914, 60.349405155634756 ], [ 28.714944619999898, 60.311405155634745 ], [ 28.6930446199999, 60.267805155634747 ] ] ], [ [ [ 35.991044619999911, 64.32580515563474 ], [ 35.850844619999918, 64.38860515563475 ], [ 35.854444619999924, 64.405805155634752 ], [ 36.047444619999908, 64.355505155634759 ], [ 35.991044619999911, 64.32580515563474 ] ] ], [ [ [ 40.412444619999917, 64.653605155634736 ], [ 40.471344619999911, 64.566105155634759 ], [ 39.974644619999935, 64.682705155634736 ], [ 40.274944619999928, 64.641905155634745 ], [ 40.140544619999901, 64.750005155634753 ], [ 40.329944619999935, 64.764705155634758 ], [ 40.412444619999917, 64.653605155634736 ] ] ], [ [ [ 40.274444619999883, 64.874105155634751 ], [ 40.228844619999904, 64.915005155634745 ], [ 40.209644619999892, 64.99250515563476 ], [ 40.278844619999916, 64.945805155634744 ], [ 40.274444619999883, 64.874105155634751 ] ] ], [ [ [ 35.790844619999916, 64.973305155634748 ], [ 35.567844619999903, 65.084105155634759 ], [ 35.52464461999989, 65.158905155634741 ], [ 35.834444619999886, 65.168305155634741 ], [ 35.790844619999916, 64.973305155634748 ] ] ], [ [ [ 36.061644619999925, 65.190305155634761 ], [ 36.078044619999901, 65.187505155634753 ], [ 36.300844619999907, 65.20110515563475 ], [ 36.067744619999928, 65.163305155634745 ], [ 35.943244619999916, 65.181905155634738 ], [ 36.061644619999925, 65.190305155634761 ] ] ], [ [ [ 42.706644619999906, 66.686405155634745 ], [ 42.594144619999895, 66.693305155634746 ], [ 42.432444619999899, 66.758605155634754 ], [ 42.622744619999935, 66.782205155634742 ], [ 42.706644619999906, 66.686405155634745 ] ] ], [ [ [ 54.211944619999883, 68.249705155634743 ], [ 54.283044619999885, 68.336605155634757 ], [ 54.336944619999883, 68.303905155634752 ], [ 54.301644619999934, 68.268605155634745 ], [ 54.211944619999883, 68.249705155634743 ] ] ], [ [ [ 53.949644619999901, 68.292705155634749 ], [ 53.859144619999881, 68.309705155634745 ], [ 53.868844619999891, 68.34610515563476 ], [ 54.013344619999884, 68.362205155634754 ], [ 53.949644619999901, 68.292705155634749 ] ] ], [ [ [ 50.814144619999922, 68.372205155634745 ], [ 51.163844619999907, 68.495205155634736 ], [ 51.456644619999906, 68.476905155634753 ], [ 51.170844619999912, 68.448905155634762 ], [ 50.814144619999922, 68.372205155634745 ] ] ], [ [ [ 57.920844619999912, 68.80330515563476 ], [ 57.864644619999922, 68.76190515563475 ], [ 57.199944619999883, 68.718905155634744 ], [ 57.37994461999989, 68.768605155634745 ], [ 57.920844619999912, 68.80330515563476 ] ] ], [ [ [ 55.472244619999913, 68.909005155634745 ], [ 55.2381446199999, 68.907605155634755 ], [ 55.224544619999904, 68.909905155634746 ], [ 55.508344619999889, 68.912105155634762 ], [ 55.472244619999913, 68.909005155634745 ] ] ], [ [ [ 54.654144619999897, 68.955805155634735 ], [ 54.5877446199999, 68.94770515563475 ], [ 54.567744619999928, 68.955805155634735 ], [ 54.694144619999918, 68.991405155634752 ], [ 54.654144619999897, 68.955805155634735 ] ] ], [ [ [ 59.239444619999915, 69.175805155634762 ], [ 59.248944619999918, 69.137305155634735 ], [ 58.760544619999905, 69.333605155634743 ], [ 59.193844619999936, 69.233905155634758 ], [ 59.239444619999915, 69.175805155634762 ] ] ], [ [ [ 34.404644619999885, 69.339405155634736 ], [ 34.072744619999924, 69.34610515563476 ], [ 33.973044619999882, 69.366105155634742 ], [ 34.2133446199999, 69.402705155634735 ], [ 34.404644619999885, 69.339405155634736 ] ] ], [ [ [ 50.305244619999883, 69.161905155634756 ], [ 50.143044619999898, 68.993005155634748 ], [ 50.223844619999909, 69.149705155634749 ], [ 48.912744619999899, 68.736105155634746 ], [ 48.216044619999934, 68.895005155634735 ], [ 48.312744619999933, 69.279205155634756 ], [ 48.943244619999916, 69.506905155634755 ], [ 50.305244619999883, 69.161905155634756 ] ] ], [ [ [ 32.62994461999989, 69.77730515563475 ], [ 33.130644619999885, 69.726005155634752 ], [ 32.894944619999933, 69.582805155634745 ], [ 32.026344619999918, 69.636505155634737 ], [ 32.498544619999905, 69.511405155634762 ], [ 32.199644619999901, 69.424105155634734 ], [ 33.029344619999904, 69.471905155634758 ], [ 32.809944619999897, 69.296105155634748 ], [ 33.521644619999904, 69.421905155634747 ], [ 33.236944619999917, 69.273005155634749 ], [ 33.531944619999933, 69.189705155634741 ], [ 33.037744619999899, 69.068005155634737 ], [ 33.022744619999912, 68.953305155634737 ], [ 33.446344619999934, 69.105505155634759 ], [ 33.567744619999928, 69.183805155634744 ], [ 33.641344619999927, 69.325505155634758 ], [ 35.836644619999902, 69.198905155634762 ], [ 37.7732446199999, 68.676105155634744 ], [ 38.43274461999988, 68.339205155634758 ], [ 39.864144619999934, 68.043905155634761 ], [ 39.785544619999882, 68.161605155634746 ], [ 40.46354461999988, 67.755005155634748 ], [ 41.048044619999928, 67.661905155634756 ], [ 41.112444619999906, 67.245805155634756 ], [ 41.390544619999901, 67.122805155634737 ], [ 41.155744619999894, 66.794405155634749 ], [ 40.073344619999887, 66.277805155634738 ], [ 38.607744619999892, 66.052205155634752 ], [ 35.517744619999917, 66.386305155634759 ], [ 34.845844619999923, 66.605005155634743 ], [ 34.470244619999903, 66.53360515563476 ], [ 34.438544619999902, 66.646605155634759 ], [ 33.251344619999884, 66.794405155634749 ], [ 32.667744619999894, 67.119405155634738 ], [ 31.854944619999912, 67.153905155634746 ], [ 32.2541446199999, 67.125305155634734 ], [ 32.934944619999897, 66.739105155634761 ], [ 32.808044619999919, 66.716105155634736 ], [ 33.325544619999903, 66.642205155634755 ], [ 32.872144619999915, 66.579205155634739 ], [ 33.248344619999898, 66.61720515563475 ], [ 33.534444619999931, 66.529405155634734 ], [ 33.194444619999899, 66.564305155634756 ], [ 32.946044619999896, 66.520005155634735 ], [ 33.7324446199999, 66.423905155634756 ], [ 33.312744619999933, 66.316105155634759 ], [ 34.103544619999923, 66.251105155634761 ], [ 34.852744619999896, 65.896405155634753 ], [ 34.96354461999988, 65.717805155634736 ], [ 34.690844619999893, 65.803905155634752 ], [ 34.681644619999929, 65.45110515563475 ], [ 34.3777446199999, 65.378305155634749 ], [ 34.936044619999905, 64.838305155634757 ], [ 34.957144619999895, 64.652805155634738 ], [ 34.787744619999899, 64.547805155634748 ], [ 35.324844619999908, 64.326505155634734 ], [ 35.798544619999916, 64.345005155634752 ], [ 36.282444619999922, 64.143305155634735 ], [ 36.2758446199999, 64.011405155634762 ], [ 37.398044619999894, 63.80300515563475 ], [ 38.077444619999881, 64.017205155634755 ], [ 37.978844619999904, 64.31670515563475 ], [ 37.144644619999895, 64.408905155634741 ], [ 36.4396446199999, 64.942705155634755 ], [ 36.830544619999898, 64.988005155634752 ], [ 36.833344619999934, 65.160805155634748 ], [ 37.032144619999883, 65.208305155634761 ], [ 38.4085446199999, 64.858905155634758 ], [ 38.043544619999921, 64.765505155634756 ], [ 38.0469446199999, 64.641105155634747 ], [ 38.53664461999989, 64.798305155634736 ], [ 40.505844619999891, 64.535305155634759 ], [ 40.3671446199999, 64.934405155634735 ], [ 39.718044619999887, 65.378305155634749 ], [ 39.751344619999884, 65.550805155634762 ], [ 40.703244619999907, 65.968005155634742 ], [ 41.424944619999906, 66.089705155634746 ], [ 42.168344619999914, 66.522805155634742 ], [ 43.299644619999924, 66.422205155634757 ], [ 43.697444619999885, 66.235805155634736 ], [ 43.293044619999932, 66.097805155634759 ], [ 43.354644619999931, 66.038605155634755 ], [ 43.514444619999892, 65.971905155634758 ], [ 43.383044619999907, 66.076705155634741 ], [ 43.8580446199999, 66.176905155634742 ], [ 44.174444619999917, 65.874705155634743 ], [ 44.076344619999929, 66.200505155634758 ], [ 44.4830446199999, 66.674105155634734 ], [ 44.358344619999912, 66.785305155634759 ], [ 44.496344619999888, 66.907505155634752 ], [ 43.751944619999904, 67.318905155634738 ], [ 44.09914461999989, 67.678605155634742 ], [ 44.084644619999892, 67.87890515563474 ], [ 44.266644619999909, 67.924405155634744 ], [ 44.125544619999914, 67.930305155634741 ], [ 44.2458446199999, 68.270305155634745 ], [ 43.311644619999925, 68.685005155634755 ], [ 45.903244619999896, 68.482205155634759 ], [ 46.520844619999934, 68.144105155634762 ], [ 46.706944619999888, 67.813005155634741 ], [ 45.382444619999887, 67.735505155634755 ], [ 44.911944619999929, 67.372805155634737 ], [ 45.599944619999917, 67.172205155634757 ], [ 46.029144619999897, 66.825505155634758 ], [ 46.600844619999918, 66.853305155634743 ], [ 46.385544619999905, 66.739705155634752 ], [ 47.699644619999901, 66.986405155634756 ], [ 47.679944619999901, 67.189405155634759 ], [ 47.951944619999892, 67.448605155634752 ], [ 47.812444619999894, 67.577805155634749 ], [ 47.994944619999899, 67.65030515563474 ], [ 49.101044619999925, 67.628005155634739 ], [ 48.591044619999934, 67.935005155634755 ], [ 49.226044619999925, 67.873905155634745 ], [ 50.7758446199999, 68.372505155634755 ], [ 51.076044619999891, 68.350505155634735 ], [ 52.074644619999901, 68.544405155634749 ], [ 52.353544619999923, 68.480505155634759 ], [ 52.137444619999883, 68.385305155634754 ], [ 52.268544619999886, 68.305805155634758 ], [ 52.7330446199999, 68.466405155634746 ], [ 52.488044619999926, 68.585505155634749 ], [ 52.6502446199999, 68.652205155634746 ], [ 52.288344619999918, 68.614105155634761 ], [ 53.767444619999935, 68.965805155634754 ], [ 54.560744619999923, 68.99250515563476 ], [ 53.598844619999909, 68.90800515563474 ], [ 54.019144619999906, 68.855205155634749 ], [ 53.719644619999883, 68.651905155634736 ], [ 53.945744619999914, 68.400005155634759 ], [ 53.209944619999931, 68.261405155634762 ], [ 54.238844619999895, 68.205005155634737 ], [ 54.496644619999927, 68.305805155634758 ], [ 54.791944619999924, 68.163005155634735 ], [ 54.9396446199999, 68.400005155634759 ], [ 55.324744619999933, 68.550005155634736 ], [ 55.967444619999924, 68.659405155634758 ], [ 57.27604461999988, 68.555805155634758 ], [ 57.586644619999902, 68.733605155634748 ], [ 57.923344619999909, 68.746405155634747 ], [ 58.176044619999914, 68.883905155634736 ], [ 58.336044619999882, 68.730305155634753 ], [ 58.421644619999881, 68.736605155634734 ], [ 58.2752446199999, 68.896105155634743 ], [ 58.898344619999932, 68.999705155634743 ], [ 59.2330446199999, 68.99250515563476 ], [ 58.888544619999891, 68.933605155634737 ], [ 59.4213446199999, 68.764405155634748 ], [ 59.05774461999988, 68.616105155634742 ], [ 59.073344619999887, 68.421405155634758 ], [ 59.836044619999882, 68.366605155634758 ], [ 59.969144619999895, 68.467805155634736 ], [ 59.811644619999925, 68.681905155634738 ], [ 60.914444619999927, 68.904705155634744 ], [ 60.888044619999903, 69.129105155634747 ], [ 60.602144619999933, 69.125805155634751 ], [ 60.140544619999901, 69.574205155634743 ], [ 60.665544619999935, 69.672505155634738 ], [ 60.874444619999906, 69.863605155634744 ], [ 63.268844619999925, 69.683605155634737 ], [ 64.988044619999926, 69.309705155634745 ], [ 64.522144619999892, 68.903005155634744 ], [ 65.312144619999913, 68.806605155634756 ], [ 65.655544619999887, 68.556405155634749 ], [ 65.275744619999898, 68.235505155634755 ], [ 65.284944619999919, 68.01190515563475 ], [ 66.086044619999882, 67.934405155634735 ], [ 66.018044619999898, 67.793005155634759 ], [ 66.210544619999894, 67.696105155634754 ], [ 65.791644619999886, 67.569705155634736 ], [ 66.106644619999884, 67.478605155634753 ], [ 65.223544619999927, 67.146105155634743 ], [ 65.101344619999907, 66.890505155634756 ], [ 63.4085446199999, 66.452805155634749 ], [ 63.223244619999889, 66.32640515563476 ], [ 63.290544619999935, 66.23280515563475 ], [ 62.853544619999923, 66.071105155634754 ], [ 62.846644619999893, 65.86750515563476 ], [ 61.848544619999927, 65.675305155634746 ], [ 60.631344619999936, 64.883605155634754 ], [ 60.158044619999885, 65.067205155634738 ], [ 59.647144619999892, 64.772805155634742 ], [ 59.479644619999931, 64.481905155634749 ], [ 59.604644619999931, 64.460305155634742 ], [ 59.588044619999891, 64.23250515563474 ], [ 59.859644619999926, 64.137505155634742 ], [ 59.565844619999893, 63.919205155634742 ], [ 59.222144619999881, 63.073905155634762 ], [ 59.487144619999924, 62.897805155634742 ], [ 59.391344619999927, 62.729705155634761 ], [ 59.650544619999891, 62.517205155634755 ], [ 59.404444619999936, 62.142205155634755 ], [ 59.4219446199999, 61.42970515563475 ], [ 59.257144619999906, 61.281405155634744 ], [ 59.475244619999899, 60.815805155634749 ], [ 58.9824446199999, 59.950005155634742 ], [ 58.448844619999932, 59.702205155634758 ], [ 58.30774461999988, 59.46280515563474 ], [ 59.184444619999908, 59.167505155634743 ], [ 59.082144619999895, 58.763005155634758 ], [ 59.4219446199999, 58.680505155634748 ], [ 59.458344619999934, 58.493005155634748 ], [ 58.661944619999929, 58.095305155634762 ], [ 58.603344619999916, 57.991105155634742 ], [ 58.856944619999922, 57.730005155634743 ], [ 58.532444619999922, 57.566905155634757 ], [ 58.343644619999907, 57.685005155634755 ], [ 58.035844619999921, 57.606405155634761 ], [ 57.936044619999905, 57.32580515563474 ], [ 58.074444619999895, 57.049205155634738 ], [ 57.218844619999913, 56.853005155634762 ], [ 57.416944619999924, 56.642505155634737 ], [ 57.321644619999915, 56.48280515563475 ], [ 57.473544619999927, 56.118605155634739 ], [ 59.299444619999917, 56.134405155634752 ], [ 59.1705446199999, 56.006705155634748 ], [ 59.157744619999903, 55.788305155634745 ], [ 59.320844619999889, 55.773605155634741 ], [ 59.236344619999898, 55.584405155634741 ], [ 59.643844619999925, 55.559405155634735 ], [ 58.577144619999899, 55.161905155634756 ], [ 58.816344619999882, 55.023005155634749 ], [ 58.529644619999885, 54.956105155634745 ], [ 58.300244619999887, 55.176105155634744 ], [ 57.998544619999905, 54.917805155634753 ], [ 58.142144619999897, 55.21940515563476 ], [ 57.44244461999989, 55.328305155634737 ], [ 57.206944619999888, 55.223005155634738 ], [ 57.155744619999894, 54.831905155634743 ], [ 57.974944619999917, 54.388005155634758 ], [ 59.249644619999913, 54.612205155634754 ], [ 59.631644619999918, 54.911105155634758 ], [ 59.944144619999918, 54.85750515563474 ], [ 59.675544619999926, 54.489405155634742 ], [ 59.736644619999936, 54.138005155634758 ], [ 59.325244619999921, 54.183605155634737 ], [ 58.916644619999886, 53.925305155634746 ], [ 58.822444619999885, 53.204405155634745 ], [ 59.027744619999908, 53.015005155634739 ], [ 58.751644619999922, 52.865005155634762 ], [ 58.768044619999898, 52.503005155634739 ], [ 59.173844619999898, 52.275805155634757 ], [ 59.250244619999933, 52.498905155634745 ], [ 60.145544619999896, 52.427505155634762 ], [ 59.913244619999887, 52.102805155634755 ], [ 60.053544619999911, 51.880805155634746 ], [ 61.685744619999923, 51.265805155634737 ], [ 61.430244619999883, 50.807805155634739 ], [ 60.729644619999931, 50.660305155634759 ], [ 60.043544619999921, 50.863305155634762 ], [ 59.819644619999906, 50.547205155634757 ], [ 59.542444619999912, 50.478305155634743 ], [ 59.492444619999901, 50.629405155634757 ], [ 58.665544619999935, 50.80500515563476 ], [ 58.609944619999908, 51.038305155634745 ], [ 58.3377446199999, 51.156105155634762 ], [ 57.794444619999922, 51.118905155634749 ], [ 57.741944619999913, 50.913605155634755 ], [ 57.481944619999922, 50.864705155634752 ], [ 57.133344619999889, 51.088005155634747 ], [ 56.729144619999886, 50.977805155634755 ], [ 56.510844619999887, 51.083305155634761 ], [ 55.69244461999989, 50.532505155634752 ], [ 54.647144619999892, 51.036905155634756 ], [ 54.548544619999916, 50.922205155634757 ], [ 54.701944619999892, 50.606905155634749 ], [ 54.523944619999895, 50.528805155634743 ], [ 54.397744619999912, 50.625505155634741 ], [ 54.506344619999936, 50.856905155634749 ], [ 53.678344619999905, 51.227505155634745 ], [ 53.428544619999911, 51.491705155634762 ], [ 52.603344619999916, 51.456905155634743 ], [ 52.3383446199999, 51.782205155634742 ], [ 51.874144619999925, 51.673605155634746 ], [ 51.690844619999893, 51.455305155634747 ], [ 51.303044619999923, 51.479705155634761 ], [ 51.389944619999881, 51.63830515563474 ], [ 50.7732446199999, 51.769205155634737 ], [ 50.810544619999916, 51.591705155634756 ], [ 50.602744619999896, 51.640005155634739 ], [ 50.363344619999907, 51.316905155634757 ], [ 49.461944619999883, 51.124205155634755 ], [ 49.431044619999909, 50.855005155634743 ], [ 48.697444619999885, 50.591905155634734 ], [ 48.916944619999924, 50.034205155634751 ], [ 48.7969446199999, 49.941905155634757 ], [ 48.251644619999922, 49.869705155634747 ], [ 47.946944619999897, 50.245505155634746 ], [ 47.520844619999934, 50.436405155634745 ], [ 47.3166446199999, 50.294405155634749 ], [ 47.302444619999903, 50.03190515563476 ], [ 46.929444619999913, 49.863605155634744 ], [ 46.795844619999912, 49.339705155634746 ], [ 47.062744619999933, 49.142805155634747 ], [ 46.499144619999925, 48.417505155634743 ], [ 47.122744619999935, 48.271705155634734 ], [ 47.136644619999913, 47.822505155634744 ], [ 47.383244619999914, 47.688905155634743 ], [ 47.435744619999923, 47.843605155634762 ], [ 48.20444461999989, 47.705005155634737 ], [ 49.027144619999888, 46.776105155634738 ], [ 48.538544619999925, 46.751605155634749 ], [ 48.560544619999916, 46.565005155634751 ], [ 49.305544619999921, 46.263005155634758 ], [ 48.667144619999931, 46.11690515563474 ], [ 48.7133446199999, 45.830305155634747 ], [ 48.565744619999919, 45.965805155634754 ], [ 47.830544619999898, 45.655805155634752 ], [ 47.552144619999922, 45.769405155634743 ], [ 47.637144619999901, 45.55300515563475 ], [ 47.491044619999911, 45.724405155634756 ], [ 47.380244619999928, 45.744705155634747 ], [ 47.569144619999918, 45.557505155634757 ], [ 47.075544619999903, 44.782805155634762 ], [ 46.886644619999913, 44.748605155634735 ], [ 45.706044619999886, 44.975805155634745 ], [ 45.538844619999907, 45.17940515563474 ], [ 44.219944619999922, 45.603005155634762 ], [ 43.891344619999927, 45.941105155634759 ], [ 42.922744619999889, 46.24220515563475 ], [ 42.517144619999897, 45.989405155634742 ], [ 42.318844619999936, 45.96940515563476 ], [ 42.333544619999884, 46.127805155634761 ], [ 42.088044619999891, 45.947205155634762 ], [ 41.162544619999892, 45.953505155634744 ], [ 40.995544619999919, 46.299205155634738 ], [ 40.322444619999885, 46.282205155634742 ], [ 40.213044619999891, 46.530505155634742 ], [ 40.041344619999904, 46.550805155634762 ], [ 40.053044619999923, 46.772105155634748 ], [ 39.433844619999888, 46.807805155634739 ], [ 39.174144619999936, 46.618305155634758 ], [ 38.839444619999881, 46.620305155634739 ], [ 38.911344619999909, 46.821905155634752 ], [ 38.673844619999898, 46.86120515563475 ], [ 39.285844619999921, 47.028005155634744 ], [ 39.272144619999892, 47.245805155634756 ], [ 39.092444619999924, 47.280505155634742 ], [ 38.562744619999933, 47.111105155634746 ], [ 38.768544619999886, 47.253305155634749 ], [ 38.136044619999893, 47.059405155634735 ], [ 37.563544619999902, 47.088305155634757 ], [ 37.323844619999932, 46.895505155634751 ], [ 35.907144619999883, 46.651105155634738 ], [ 35.163544619999925, 46.129705155634738 ], [ 34.979344619999893, 46.081105155634745 ], [ 35.336944619999883, 46.32470515563476 ], [ 35.198044619999905, 46.443305155634746 ], [ 34.702444619999881, 46.175805155634762 ], [ 34.561644619999925, 45.985005155634738 ], [ 34.4016446199999, 46.01390515563476 ], [ 34.542444619999912, 46.187505155634753 ], [ 33.6719446199999, 46.22080515563475 ], [ 34.142744619999917, 45.937805155634734 ], [ 34.633344619999889, 45.941605155634747 ], [ 34.460544619999894, 45.767205155634755 ], [ 34.986644619999936, 45.631905155634755 ], [ 35.126644619999922, 45.32610515563475 ], [ 35.343044619999887, 45.332505155634735 ], [ 35.050244619999887, 45.613905155634754 ], [ 34.666944619999924, 46.093605155634762 ], [ 35.475244619999899, 45.291105155634753 ], [ 36.139744619999931, 45.460505155634749 ], [ 36.637244619999933, 45.376105155634761 ], [ 36.43274461999988, 45.27530515563474 ], [ 36.439744619999885, 45.065505155634739 ], [ 35.856944619999922, 44.986405155634756 ], [ 35.5238446199999, 45.118305155634758 ], [ 35.0883446199999, 44.792805155634753 ], [ 34.717444619999924, 44.807505155634757 ], [ 34.122744619999935, 44.431705155634759 ], [ 33.723644619999902, 44.390805155634737 ], [ 33.365244619999885, 44.582205155634753 ], [ 33.554444619999913, 44.623605155634735 ], [ 33.550544619999926, 45.105005155634743 ], [ 32.480544619999932, 45.395805155634761 ], [ 33.773344619999932, 45.927205155634752 ], [ 33.58714461999989, 46.15860515563476 ], [ 33.435244619999935, 46.044705155634759 ], [ 33.19244461999989, 46.161905155634756 ], [ 32.509444619999897, 46.075005155634742 ], [ 31.788344619999918, 46.285305155634759 ], [ 32.059144619999927, 46.395805155634761 ], [ 31.658344619999923, 46.471405155634741 ], [ 31.507744619999926, 46.579705155634755 ], [ 32.356644619999884, 46.458905155634753 ], [ 32.647144619999892, 46.641105155634747 ], [ 32.019644619999895, 46.629405155634757 ], [ 31.980744619999882, 47.007505155634746 ], [ 31.749444619999906, 47.253305155634749 ], [ 31.974944619999917, 46.923305155634736 ], [ 31.9008446199999, 46.644105155634762 ], [ 31.476944619999927, 46.630505155634737 ], [ 31.593344619999925, 46.80500515563476 ], [ 31.415844619999916, 46.623605155634735 ], [ 30.832744619999914, 46.548305155634736 ], [ 30.251644619999922, 45.876605155634749 ], [ 29.746944619999908, 45.619405155634738 ], [ 29.633544619999896, 45.821105155634754 ], [ 29.708544619999884, 45.213305155634757 ], [ 29.324144619999913, 45.439105155634749 ], [ 28.695344619999901, 45.220005155634752 ], [ 28.069144619999918, 45.583305155634761 ], [ 28.252544619999895, 46.435805155634753 ], [ 28.081944619999916, 46.980505155634759 ], [ 27.298144619999903, 47.660405155634734 ], [ 26.9547446199999, 48.185505155634743 ], [ 26.314844619999917, 48.186205155634738 ], [ 26.1499446199999, 47.982205155634759 ], [ 25.326044619999919, 47.915305155634755 ], [ 24.919444619999922, 47.71170515563476 ], [ 24.556344619999919, 47.953005155634756 ], [ 23.168044619999904, 48.108605155634748 ], [ 22.895444619999921, 47.954205155634739 ], [ 22.3785446199999, 48.245505155634746 ], [ 22.158844619999911, 48.580305155634747 ], [ 22.562744619999904, 49.085005155634761 ], [ 22.886044619999922, 49.002905155634735 ], [ 22.700244619999921, 49.165505155634762 ], [ 22.676044619999914, 49.56640515563474 ], [ 24.111344619999898, 50.566905155634757 ], [ 23.953244619999907, 50.801805155634739 ], [ 24.144644619999895, 50.858005155634757 ], [ 23.539144619999917, 51.592805155634736 ], [ 23.638544619999919, 52.079405155634745 ], [ 23.1653446199999, 52.282305155634745 ], [ 23.928544619999911, 52.706105155634745 ], [ 23.933044619999919, 53.014205155634741 ], [ 23.333044619999896, 54.247205155634745 ], [ 22.870244619999909, 54.40800515563474 ], [ 19.797044619999895, 54.437505155634753 ], [ 20.405044619999899, 54.679205155634762 ], [ 19.872744619999906, 54.641405155634757 ], [ 19.936644619999896, 54.921105155634748 ], [ 20.691944619999902, 55.074205155634743 ], [ 21.039444619999898, 55.400805155634757 ], [ 21.089244619999903, 55.719005155634747 ], [ 21.044444619999922, 55.32640515563476 ], [ 20.8380446199999, 55.145305155634745 ], [ 20.528344619999899, 54.966705155634756 ], [ 21.242244619999894, 54.943605155634756 ], [ 21.289144619999917, 55.291705155634745 ], [ 20.971944619999903, 56.245805155634756 ], [ 21.051944619999915, 56.832805155634745 ], [ 21.391644619999909, 57.021905155634741 ], [ 21.420544619999902, 57.289405155634753 ], [ 21.7247446199999, 57.572505155634744 ], [ 22.610244619999918, 57.756405155634738 ], [ 23.259144619999915, 57.098005155634738 ], [ 23.660244619999901, 56.965005155634756 ], [ 24.400844619999901, 57.245805155634756 ], [ 24.288044619999908, 57.834205155634734 ], [ 24.559444619999908, 58.320505155634734 ], [ 24.335544619999922, 58.38860515563475 ], [ 24.110544619999899, 58.232205155634759 ], [ 23.728644619999898, 58.370805155634756 ], [ 23.495544619999919, 58.694105155634745 ], [ 23.875044619999898, 58.768605155634745 ], [ 23.483044619999902, 58.810005155634755 ], [ 23.431144619999912, 58.939405155634759 ], [ 23.637744619999921, 58.97050515563474 ], [ 23.407244619999915, 59.018605155634745 ], [ 23.470544619999913, 59.212505155634759 ], [ 24.790044619999918, 59.56670515563475 ], [ 25.392444619999907, 59.485805155634736 ], [ 25.476344619999907, 59.663005155634735 ], [ 27.8805446199999, 59.407805155634762 ], [ 28.063044619999914, 59.536705155634749 ], [ 28.080244619999917, 59.796405155634758 ], [ 28.374144619999896, 59.661105155634758 ], [ 28.500544619999914, 59.85750515563474 ], [ 28.838544619999908, 59.78470515563474 ], [ 29.187144619999913, 60.006905155634755 ], [ 30.21354461999988, 59.889705155634758 ], [ 29.824144619999913, 60.168305155634741 ], [ 29.031644619999895, 60.183905155634747 ], [ 28.601944619999898, 60.384405155634752 ], [ 28.4413446199999, 60.558605155634737 ], [ 28.701944619999921, 60.455005155634737 ], [ 28.553044619999895, 60.604405155634751 ], [ 28.686644619999896, 60.735805155634736 ], [ 27.807844619999912, 60.546405155634758 ], [ 31.259644619999904, 62.507805155634756 ], [ 31.588944619999893, 62.914405155634753 ], [ 31.219644619999883, 63.223005155634738 ], [ 29.993344619999903, 63.743605155634739 ], [ 30.595244619999903, 64.046905155634747 ], [ 30.578044619999901, 64.221405155634741 ], [ 30.053544619999911, 64.405005155634754 ], [ 29.974944619999917, 64.581105155634745 ], [ 30.199144619999913, 64.65030515563474 ], [ 30.140844619999882, 64.774105155634757 ], [ 29.636644619999913, 64.92800515563475 ], [ 29.628844619999882, 65.063005155634741 ], [ 29.873844619999886, 65.120805155634756 ], [ 29.596344619999911, 65.248905155634745 ], [ 29.818844619999936, 65.653305155634754 ], [ 30.134144619999915, 65.719205155634754 ], [ 29.910244619999901, 66.126905155634759 ], [ 29.074944619999911, 66.895805155634761 ], [ 30.028544619999934, 67.694705155634736 ], [ 29.356944619999922, 68.082505155634735 ], [ 28.696644619999915, 68.193305155634746 ], [ 28.457444619999904, 68.53190515563476 ], [ 28.820544619999907, 68.84440515563476 ], [ 28.431944619999911, 68.896905155634741 ], [ 29.129644619999908, 69.048005155634755 ], [ 29.309944619999897, 69.315305155634761 ], [ 30.097744619999901, 69.503305155634749 ], [ 30.103344619999916, 69.663005155634735 ], [ 30.7969446199999, 69.530305155634736 ], [ 30.945844619999889, 69.582205155634753 ], [ 30.854844619999881, 69.792305155634736 ], [ 31.794644619999929, 69.682205155634747 ], [ 31.729144619999886, 69.838605155634738 ], [ 32.103344619999916, 69.790505155634762 ], [ 31.941844619999927, 69.967505155634754 ], [ 32.62994461999989, 69.77730515563475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 20, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Northern Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.001344619999884, 26.707205155634753 ], [ 33.987444619999906, 26.717205155634744 ], [ 33.959944619999931, 26.788305155634745 ], [ 33.994644619999917, 26.749705155634743 ], [ 34.001344619999884, 26.707205155634753 ] ] ], [ [ [ 34.026344619999918, 27.498305155634753 ], [ 34.041944619999924, 27.442205155634738 ], [ 33.917444619999912, 27.526405155634748 ], [ 33.973344619999921, 27.53470515563474 ], [ 34.026344619999918, 27.498305155634753 ] ] ], [ [ [ 32.047144619999926, 31.143305155634735 ], [ 32.041044619999923, 31.145805155634761 ], [ 32.043844619999902, 31.15800515563474 ], [ 32.050844619999907, 31.149405155634739 ], [ 32.047144619999926, 31.143305155634735 ] ] ], [ [ [ 10.993544619999909, 33.750005155634753 ], [ 10.864944619999903, 33.63860515563475 ], [ 10.726044619999897, 33.880805155634746 ], [ 10.968344619999897, 33.85750515563474 ], [ 10.993544619999909, 33.750005155634753 ] ] ], [ [ [ 11.0646446199999, 34.640505155634756 ], [ 11.034944619999919, 34.61750515563476 ], [ 10.9610446199999, 34.655305155634736 ], [ 11.048344619999909, 34.666105155634753 ], [ 11.0646446199999, 34.640505155634756 ] ] ], [ [ [ 11.137144619999901, 34.675305155634746 ], [ 11.230844619999914, 34.821105155634754 ], [ 11.302144619999922, 34.80330515563476 ], [ 11.278844619999916, 34.739405155634742 ], [ 11.137144619999901, 34.675305155634746 ] ] ], [ [ [ 10.808544619999907, 37.119405155634738 ], [ 10.7949446199999, 37.118305155634758 ], [ 10.791944619999896, 37.126405155634743 ], [ 10.8146446199999, 37.125305155634734 ], [ 10.808544619999907, 37.119405155634738 ] ] ], [ [ [ 9.845244619999903, 37.139305155634744 ], [ 10.2524446199999, 37.186405155634745 ], [ 10.125544619999914, 37.141705155634739 ], [ 10.345544619999913, 36.874205155634755 ], [ 10.1933446199999, 36.790805155634743 ], [ 10.367744619999911, 36.725805155634745 ], [ 11.029144619999897, 37.088305155634757 ], [ 11.102144619999905, 36.904405155634734 ], [ 10.800244619999916, 36.465505155634744 ], [ 10.512744619999921, 36.351105155634755 ], [ 10.455244619999917, 36.123305155634753 ], [ 10.685844619999898, 35.788605155634755 ], [ 11.028044619999918, 35.639705155634758 ], [ 11.1288446199999, 35.235805155634736 ], [ 10.728344619999916, 34.665805155634743 ], [ 10.0058446199999, 34.166905155634751 ], [ 10.266344619999899, 33.748605155634735 ], [ 10.7141446199999, 33.707805155634745 ], [ 10.739644619999922, 33.473305155634748 ], [ 11.048544619999916, 33.61690515563474 ], [ 11.171044619999918, 33.210805155634759 ], [ 12.310544619999916, 32.835005155634761 ], [ 13.259144619999915, 32.918605155634751 ], [ 15.165844619999916, 32.398605155634741 ], [ 15.761644619999913, 31.38550515563476 ], [ 17.3708446199999, 31.081705155634737 ], [ 18.966344619999916, 30.273305155634759 ], [ 19.617744619999911, 30.417205155634761 ], [ 20.060544619999916, 30.855305155634753 ], [ 20.155544619999915, 31.150005155634759 ], [ 19.919444619999922, 31.757505155634746 ], [ 20.084444619999914, 32.184705155634745 ], [ 20.567644619999896, 32.560905155634757 ], [ 21.713844619999918, 32.944405155634755 ], [ 23.112444619999906, 32.632505155634746 ], [ 23.081344619999896, 32.332805155634745 ], [ 23.247144619999915, 32.216205155634739 ], [ 24.991344619999921, 31.963005155634747 ], [ 25.190844619999922, 31.529405155634734 ], [ 25.947144619999904, 31.617805155634741 ], [ 27.331044619999915, 31.375005155634753 ], [ 27.438844619999912, 31.222805155634759 ], [ 27.847744619999901, 31.243605155634739 ], [ 27.914644619999905, 31.099405155634756 ], [ 28.409644619999909, 31.084705155634751 ], [ 29.034944619999919, 30.824205155634743 ], [ 30.064444619999904, 31.320305155634756 ], [ 30.289144619999888, 31.236705155634738 ], [ 30.3574446199999, 31.507805155634756 ], [ 30.9633446199999, 31.577205155634758 ], [ 30.591644619999897, 31.380005155634748 ], [ 31.122144619999915, 31.49190515563474 ], [ 31.027744619999908, 31.600505155634735 ], [ 31.556944619999911, 31.442205155634738 ], [ 31.871644619999927, 31.534905155634746 ], [ 31.921444619999932, 31.529905155634751 ], [ 32.204744619999929, 31.290905155634746 ], [ 31.899944619999928, 31.531105155634762 ], [ 31.7738446199999, 31.271705155634734 ], [ 32.143544619999886, 31.074205155634743 ], [ 32.328044619999901, 31.270305155634745 ], [ 32.599344619999897, 31.060105155634758 ], [ 32.854644619999931, 29.913605155634755 ], [ 32.649044619999927, 29.788405155634749 ], [ 32.574944619999883, 30.005305155634758 ], [ 32.340844619999928, 29.592805155634736 ], [ 32.596344619999911, 29.340505155634744 ], [ 32.619644619999917, 28.978005155634762 ], [ 33.558844619999888, 27.883005155634734 ], [ 33.494644619999917, 27.643905155634755 ], [ 33.836644619999902, 27.24250515563476 ], [ 33.935244619999935, 26.659405155634758 ], [ 35.138544619999891, 24.517505155634737 ], [ 35.817144619999908, 23.90690515563476 ], [ 35.4830446199999, 23.938305155634751 ], [ 35.633644619999927, 23.127905155634735 ], [ 35.246344619999888, 22.768705155634748 ], [ 34.973044619999882, 22.842705155634761 ], [ 34.728244619999884, 22.296105155634748 ], [ 34.153144619999921, 22.193605155634756 ], [ 34.019744619999926, 21.772005155634744 ], [ 33.750544619999914, 21.741305155634748 ], [ 33.178344619999905, 21.999405155634761 ], [ 31.453844619999927, 21.998305155634753 ], [ 31.455544619999898, 22.232205155634759 ], [ 31.271044619999884, 21.998305155634753 ], [ 25.001344619999912, 21.999705155634743 ], [ 25.000544619999914, 19.999105155634751 ], [ 24.000844619999896, 20.001905155634759 ], [ 24.002744619999902, 19.499105155634751 ], [ 16.000844619999896, 23.450505155634758 ], [ 14.234944619999908, 22.614205155634735 ], [ 13.543844619999902, 23.168605155634751 ], [ 11.986444619999901, 23.522305155634754 ], [ 7.450744619999909, 20.852905155634758 ], [ 5.812444619999894, 19.446105155634754 ], [ 3.331944619999916, 18.976405155634737 ], [ 3.114144619999905, 19.156405155634744 ], [ 3.277144619999916, 19.389705155634758 ], [ 3.233044619999902, 19.820305155634756 ], [ 2.411644619999919, 20.057505155634757 ], [ 2.2130446199999, 20.281405155634744 ], [ 1.795844619999912, 20.308305155634756 ], [ 1.6274446199999, 20.571105155634754 ], [ 1.167444619999912, 20.741105155634742 ], [ 1.1696446199999, 21.102505155634745 ], [ -4.525355380000093, 24.825005155634742 ], [ -8.666855380000101, 27.290505155634762 ], [ -8.666955380000104, 26.000305155634734 ], [ -12.000555380000094, 26.000005155634753 ], [ -12.000355380000087, 23.454405155634745 ], [ -12.571455380000089, 23.291405155634735 ], [ -13.105355380000105, 22.893005155634754 ], [ -12.999755380000096, 21.338005155634747 ], [ -16.95305538000008, 21.338305155634757 ], [ -17.0983553800001, 20.829205155634739 ], [ -16.915355380000079, 21.947805155634754 ], [ -16.35915538000009, 22.568005155634737 ], [ -15.777255380000099, 23.908905155634741 ], [ -16.001655380000102, 23.643905155634755 ], [ -15.911655380000099, 23.821905155634752 ], [ -14.901155380000091, 24.688005155634741 ], [ -14.480355380000105, 26.171105155634748 ], [ -13.574155380000093, 26.731705155634742 ], [ -12.958055380000104, 27.928605155634742 ], [ -11.509455380000105, 28.30500515563476 ], [ -10.231655380000092, 29.313905155634743 ], [ -9.641655380000088, 30.161905155634756 ], [ -9.611955380000097, 30.412805155634757 ], [ -9.840355380000091, 30.628005155634739 ], [ -9.825355380000104, 31.385005155634744 ], [ -9.281155380000087, 32.175505155634752 ], [ -9.276455380000101, 32.558305155634756 ], [ -8.538355380000098, 33.250505155634741 ], [ -6.806455380000102, 34.050805155634762 ], [ -5.918755380000079, 35.790605155634736 ], [ -5.345055380000105, 35.912505155634747 ], [ -5.253055380000092, 35.576905155634748 ], [ -4.416655380000094, 35.150505155634747 ], [ -3.306455380000102, 35.195305155634756 ], [ -2.986155380000099, 35.418005155634759 ], [ -2.841655380000105, 35.126905155634759 ], [ -2.885555380000085, 35.242805155634741 ], [ -1.979755380000086, 35.073305155634742 ], [ -1.352255380000088, 35.322505155634744 ], [ -1.0358553800001, 35.676905155634742 ], [ -0.373955380000098, 35.903605155634736 ], [ -0.100855380000098, 35.785505155634738 ], [ 0.204144619999909, 36.103305155634743 ], [ 1.182444619999899, 36.51220515563476 ], [ 2.5660446199999, 36.588005155634747 ], [ 2.908844619999911, 36.798005155634755 ], [ 3.891644619999909, 36.917205155634761 ], [ 4.785844619999921, 36.894705155634753 ], [ 5.328044619999901, 36.640305155634749 ], [ 6.464644619999916, 37.091405155634746 ], [ 6.912744619999899, 36.885005155634744 ], [ 7.170544619999902, 36.92000515563474 ], [ 7.229644619999902, 37.08640515563475 ], [ 7.948344619999915, 36.845005155634752 ], [ 8.779644619999914, 36.963605155634738 ], [ 9.672444619999908, 37.338005155634747 ], [ 9.864644619999922, 37.32470515563476 ], [ 9.845244619999903, 37.139305155634744 ] ] ], [ [ [ 8.917744619999894, 37.510805155634742 ], [ 8.896044619999913, 37.525805155634757 ], [ 8.944644619999906, 37.538005155634735 ], [ 8.944144619999918, 37.516705155634739 ], [ 8.917744619999894, 37.510805155634742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 21, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Macaronesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -24.368355380000082, 14.812205155634743 ], [ -24.52525538000009, 14.921105155634748 ], [ -24.381655380000097, 15.047505155634752 ], [ -24.295855380000091, 14.927505155634748 ], [ -24.368355380000082, 14.812205155634743 ] ] ], [ [ [ -23.446655380000095, 14.98280515563475 ], [ -23.681355380000099, 14.935605155634747 ], [ -23.766655380000088, 15.253005155634753 ], [ -23.694955380000096, 15.295005155634755 ], [ -23.446655380000095, 14.98280515563475 ] ] ], [ [ [ -22.706155380000098, 16.036405155634739 ], [ -22.876155380000085, 15.980505155634759 ], [ -22.957755380000094, 16.089405155634736 ], [ -22.798655380000099, 16.235305155634748 ], [ -22.706155380000098, 16.036405155634739 ] ] ], [ [ [ -24.034155380000101, 16.594205155634754 ], [ -24.321355380000085, 16.48280515563475 ], [ -24.4322553800001, 16.644205155634737 ], [ -24.352455380000094, 16.684705155634745 ], [ -24.034155380000101, 16.594205155634754 ] ] ], [ [ [ -24.926155380000097, 16.800005155634736 ], [ -24.993355380000082, 16.779705155634744 ], [ -25.093355380000105, 16.830805155634735 ], [ -24.933055380000098, 16.921405155634758 ], [ -24.926155380000097, 16.800005155634736 ] ] ], [ [ [ -25.281355380000093, 16.913305155634745 ], [ -25.330255380000096, 17.096405155634741 ], [ -24.97445538000008, 17.112805155634746 ], [ -25.175255380000095, 16.925305155634746 ], [ -25.281355380000093, 16.913305155634745 ] ] ], [ [ [ -17.912755380000078, 27.771705155634734 ], [ -17.9827553800001, 27.637505155634742 ], [ -18.170555380000081, 27.737205155634754 ], [ -17.928355380000085, 27.849705155634737 ], [ -17.912755380000078, 27.771705155634734 ] ] ], [ [ [ -15.554155380000083, 27.755805155634746 ], [ -15.822255380000087, 27.913305155634745 ], [ -15.702455380000089, 28.156105155634762 ], [ -15.365555380000103, 28.010305155634754 ], [ -15.554155380000083, 27.755805155634746 ] ] ], [ [ [ -17.174955380000085, 28.016905155634745 ], [ -17.298655380000099, 28.04670515563474 ], [ -17.316955380000081, 28.172205155634757 ], [ -17.101955380000078, 28.134705155634762 ], [ -17.174955380000085, 28.016905155634745 ] ] ], [ [ [ -16.341155380000089, 28.370305155634739 ], [ -16.67135538000008, 27.98420515563474 ], [ -16.912355380000093, 28.342705155634761 ], [ -16.156955380000085, 28.572205155634762 ], [ -16.341155380000089, 28.370305155634739 ] ] ], [ [ [ -14.327255380000082, 28.046405155634758 ], [ -14.444155380000097, 28.069205155634748 ], [ -13.8697553800001, 28.751405155634743 ], [ -13.923055380000079, 28.249205155634755 ], [ -14.327255380000082, 28.046405155634758 ] ] ], [ [ [ -17.831955380000096, 28.453905155634757 ], [ -18.003655380000083, 28.752505155634751 ], [ -17.904455380000087, 28.849405155634756 ], [ -17.716355380000095, 28.746105155634737 ], [ -17.831955380000096, 28.453905155634757 ] ] ], [ [ [ -13.609755380000081, 28.926405155634754 ], [ -13.852255380000088, 28.906405155634744 ], [ -13.442455380000098, 29.231705155634742 ], [ -13.468855380000093, 29.01360515563475 ], [ -13.609755380000081, 28.926405155634754 ] ] ], [ [ [ -15.860255380000098, 30.153605155634736 ], [ -15.853055380000086, 30.13720515563476 ], [ -15.874755380000096, 30.138005155634758 ], [ -15.860255380000098, 30.153605155634736 ] ] ], [ [ [ -17.102455380000094, 32.823305155634742 ], [ -16.904955380000104, 32.838905155634748 ], [ -16.715555380000097, 32.758905155634736 ], [ -16.943655380000081, 32.637505155634742 ], [ -17.255855380000099, 32.809405155634735 ], [ -17.102455380000094, 32.823305155634742 ] ] ], [ [ [ -16.2858553800001, 33.094205155634754 ], [ -16.28695538000008, 33.062805155634734 ], [ -16.4005553800001, 33.038605155634755 ], [ -16.325555380000083, 33.108005155634757 ], [ -16.2858553800001, 33.094205155634754 ] ] ], [ [ [ -25.016355380000078, 36.969705155634742 ], [ -25.018855380000105, 36.929205155634762 ], [ -25.200555380000083, 36.985805155634736 ], [ -25.0863553800001, 37.023605155634741 ], [ -25.016355380000078, 36.969705155634742 ] ] ], [ [ [ -25.584955380000082, 37.826705155634741 ], [ -25.193655380000081, 37.864405155634742 ], [ -25.130255380000079, 37.811705155634755 ], [ -25.456155380000098, 37.705505155634754 ], [ -25.864755380000105, 37.850605155634739 ], [ -25.584955380000082, 37.826705155634741 ] ] ], [ [ [ -28.1411553800001, 38.449905155634738 ], [ -28.037755380000078, 38.40690515563476 ], [ -28.549455380000097, 38.527205155634746 ], [ -28.42165538000009, 38.557205155634747 ], [ -28.1411553800001, 38.449905155634738 ] ] ], [ [ [ -27.086955380000092, 38.631405155634738 ], [ -27.30695538000009, 38.65800515563474 ], [ -27.384955380000093, 38.76330515563474 ], [ -27.065855380000102, 38.764205155634741 ], [ -27.086955380000092, 38.631405155634738 ] ] ], [ [ [ -31.215555380000097, 39.353305155634743 ], [ -31.289955380000094, 39.413605155634755 ], [ -31.213855380000098, 39.521905155634741 ], [ -31.123055380000096, 39.448905155634762 ], [ -31.215555380000097, 39.353305155634743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 22, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "West Tropical Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.466344619999916, 4.445305155634742 ], [ 7.433544619999907, 4.431105155634754 ], [ 7.335844619999904, 4.443005155634751 ], [ 7.4119446199999, 4.488005155634752 ], [ 7.466344619999916, 4.445305155634742 ] ] ], [ [ [ 7.203544619999917, 4.380505155634751 ], [ 7.226044619999897, 4.520005155634749 ], [ 7.3166446199999, 4.472505155634749 ], [ 7.308044619999919, 4.408905155634741 ], [ 7.203544619999917, 4.380505155634751 ] ] ], [ [ [ -4.787355380000093, 5.168305155634755 ], [ -4.146455380000106, 5.277205155634746 ], [ -4.004455380000081, 5.231705155634742 ], [ -4.778055380000097, 5.141705155634753 ], [ -4.787355380000093, 5.168305155634755 ] ] ], [ [ [ -12.525355380000093, 7.431405155634749 ], [ -12.559455380000088, 7.420805155634753 ], [ -12.952855380000102, 7.568305155634746 ], [ -12.591155380000089, 7.634405155634752 ], [ -12.525355380000093, 7.431405155634749 ] ] ], [ [ [ -15.885855380000095, 11.052205155634752 ], [ -15.981155380000104, 11.049405155634744 ], [ -15.946455380000089, 11.195005155634746 ], [ -15.899155380000082, 11.144705155634753 ], [ -15.885855380000095, 11.052205155634752 ] ] ], [ [ [ -16.005855380000099, 11.068305155634746 ], [ -16.061455380000098, 11.16300515563475 ], [ -15.980555380000084, 11.202505155634753 ], [ -15.969155380000103, 11.128005155634753 ], [ -16.005855380000099, 11.068305155634746 ] ] ], [ [ [ -16.0880553800001, 11.025505155634747 ], [ -16.24415538000008, 11.10050515563475 ], [ -16.082555380000088, 11.206905155634743 ], [ -16.048655380000099, 11.077505155634753 ], [ -16.0880553800001, 11.025505155634747 ] ] ], [ [ [ -15.862255380000079, 11.200005155634742 ], [ -15.906455380000097, 11.225005155634747 ], [ -15.8303553800001, 11.300805155634748 ], [ -15.835855380000083, 11.223905155634753 ], [ -15.862255380000079, 11.200005155634742 ] ] ], [ [ [ -15.740055380000086, 11.166905155634751 ], [ -15.776455380000101, 11.225805155634745 ], [ -15.667555380000096, 11.306405155634749 ], [ -15.656955380000085, 11.229705155634747 ], [ -15.740055380000086, 11.166905155634751 ] ] ], [ [ [ -16.177855380000096, 11.215305155634752 ], [ -16.281455380000097, 11.223605155634743 ], [ -16.264455380000101, 11.281705155634754 ], [ -16.1608553800001, 11.290305155634755 ], [ -16.177855380000096, 11.215305155634752 ] ] ], [ [ [ -15.679755380000103, 11.439405155634745 ], [ -15.717555380000078, 11.435305155634751 ], [ -15.743055380000101, 11.458305155634747 ], [ -15.665855380000096, 11.502205155634755 ], [ -15.679755380000103, 11.439405155634745 ] ] ], [ [ [ -16.212855380000093, 11.439705155634755 ], [ -16.300555380000105, 11.44940515563475 ], [ -16.164455380000078, 11.515005155634753 ], [ -16.166455380000087, 11.481105155634751 ], [ -16.212855380000093, 11.439705155634755 ] ] ], [ [ [ -16.250555380000094, 11.536705155634749 ], [ -16.312255380000096, 11.477205155634749 ], [ -16.419455380000102, 11.48280515563475 ], [ -16.393955380000079, 11.545805155634753 ], [ -16.250555380000094, 11.536705155634749 ] ] ], [ [ [ -15.952555380000092, 11.423005155634755 ], [ -16.065055380000103, 11.449705155634746 ], [ -15.958355380000086, 11.594205155634754 ], [ -15.903055380000097, 11.542205155634747 ], [ -15.952555380000092, 11.423005155634755 ] ] ], [ [ [ -15.553055380000103, 11.517205155634741 ], [ -15.633655380000079, 11.535305155634745 ], [ -15.472255380000092, 11.631105155634742 ], [ -15.500855380000104, 11.560305155634751 ], [ -15.553055380000103, 11.517205155634741 ] ] ], [ [ [ -16.031955380000085, 11.755805155634746 ], [ -16.153955380000099, 11.804205155634747 ], [ -16.16225538000009, 11.868605155634754 ], [ -15.978355380000096, 11.905805155634752 ], [ -16.031955380000085, 11.755805155634746 ] ] ], [ [ [ -16.236455380000081, 11.836905155634753 ], [ -16.316155380000083, 11.890305155634749 ], [ -16.301655380000085, 11.971705155634751 ], [ -16.230655380000087, 11.898405155634748 ], [ -16.184755380000098, 11.876705155634752 ], [ -16.236455380000081, 11.836905155634753 ] ] ], [ [ [ -16.427555380000086, 19.603605155634753 ], [ -16.460055380000085, 19.69970515563476 ], [ -16.344455380000085, 19.866405155634752 ], [ -16.361955380000097, 19.730505155634759 ], [ -16.427555380000086, 19.603605155634753 ] ] ], [ [ [ 7.5312446199999, 4.602305155634753 ], [ 7.550344619999919, 4.706505155634744 ], [ 7.5041446199999, 4.56670515563475 ], [ 7.238544619999914, 4.563605155634747 ], [ 7.071644619999915, 4.753905155634754 ], [ 7.179944619999901, 4.510005155634744 ], [ 7.044444619999922, 4.436405155634745 ], [ 6.962144619999918, 4.725305155634743 ], [ 7.024644619999918, 4.384205155634746 ], [ 6.875244619999904, 4.389405155634748 ], [ 6.768044619999898, 4.774705155634749 ], [ 6.848544619999899, 4.348305155634748 ], [ 6.7124446199999, 4.358905155634744 ], [ 6.731944619999922, 4.605305155634753 ], [ 6.694144619999918, 4.330005155634751 ], [ 6.252744619999902, 4.294705155634745 ], [ 6.260244619999895, 4.456405155634755 ], [ 6.172144619999898, 4.282805155634748 ], [ 5.931044619999909, 4.340505155634744 ], [ 5.579444619999919, 4.659705155634754 ], [ 5.383844619999905, 5.109405155634747 ], [ 5.494444619999911, 5.146405155634753 ], [ 5.366344619999921, 5.161905155634742 ], [ 5.345244619999903, 5.330005155634751 ], [ 5.539644619999905, 5.414705155634749 ], [ 5.639644619999899, 5.536105155634743 ], [ 5.257144619999906, 5.435505155634743 ], [ 5.211644619999902, 5.577505155634753 ], [ 5.501044619999902, 5.620505155634746 ], [ 5.175244619999916, 5.575505155634744 ], [ 4.418344619999914, 6.357505155634755 ], [ 3.388544619999919, 6.443305155634746 ], [ 3.807144619999917, 6.612805155634746 ], [ 3.467444619999895, 6.594705155634742 ], [ 3.319144619999918, 6.385505155634746 ], [ 1.301644619999905, 6.141105155634747 ], [ 0.9199446199999, 5.771905155634755 ], [ 0.692144619999908, 5.748005155634743 ], [ 0.638844619999901, 5.939205155634752 ], [ 0.575844619999913, 6.006105155634742 ], [ 0.455244619999917, 6.078605155634747 ], [ 0.231044619999921, 6.104705155634747 ], [ 0.574944619999911, 5.991905155634754 ], [ 0.662144619999907, 5.75420515563475 ], [ 0.2558446199999, 5.757805155634742 ], [ -2.083955380000106, 4.726405155634751 ], [ -3.148655380000093, 5.09580515563475 ], [ -2.841655380000105, 5.141105155634747 ], [ -3.136155380000105, 5.142205155634741 ], [ -3.14255538000009, 5.367805155634741 ], [ -3.297255380000081, 5.118005155634748 ], [ -4.0041553800001, 5.253605155634745 ], [ -3.732855380000103, 5.259205155634746 ], [ -3.713655380000091, 5.280805155634752 ], [ -3.754455380000081, 5.353305155634743 ], [ -3.807855380000092, 5.375505155634755 ], [ -3.742555380000084, 5.270005155634749 ], [ -4.465555380000097, 5.296705155634754 ], [ -4.893955380000079, 5.128605155634745 ], [ -5.001955380000084, 5.211905155634753 ], [ -5.319755380000089, 5.230805155634755 ], [ -5.406155380000087, 5.141405155634743 ], [ -5.002955380000088, 5.12920515563475 ], [ -5.890055380000092, 5.022805155634742 ], [ -7.600855380000098, 4.343305155634752 ], [ -9.1428553800001, 5.055505155634748 ], [ -10.377255380000094, 6.167205155634747 ], [ -10.764155380000091, 6.271105155634743 ], [ -11.820055380000099, 7.136705155634743 ], [ -12.503655380000083, 7.38690515563475 ], [ -12.18535538000009, 7.598605155634743 ], [ -12.463355380000081, 7.556105155634754 ], [ -12.958655380000096, 7.900005155634744 ], [ -12.974355380000105, 8.247805155634751 ], [ -13.13285538000008, 8.195005155634746 ], [ -13.288055380000088, 8.496105155634751 ], [ -13.051455380000078, 8.368605155634754 ], [ -13.120355380000092, 8.461705155634746 ], [ -12.897555380000085, 8.567805155634744 ], [ -13.189455380000084, 8.556905155634752 ], [ -13.132255380000089, 8.861905155634744 ], [ -13.493155380000104, 9.560105155634744 ], [ -13.672255380000081, 9.563305155634751 ], [ -13.688655380000085, 9.952205155634744 ], [ -13.82975538000008, 9.852205155634749 ], [ -14.457555380000088, 10.293605155634751 ], [ -14.5358553800001, 10.506705155634748 ], [ -14.664455380000078, 10.476705155634747 ], [ -14.511655380000093, 10.835005155634747 ], [ -14.702555380000092, 10.638905155634745 ], [ -14.819455380000079, 10.911405155634753 ], [ -14.73415538000009, 10.958605155634743 ], [ -14.693055380000089, 11.035305155634745 ], [ -15.010855380000095, 10.773605155634755 ], [ -15.022855380000095, 11.195305155634742 ], [ -15.233955380000083, 10.993905155634749 ], [ -15.204155380000088, 11.231905155634749 ], [ -15.349155380000099, 11.139205155634755 ], [ -15.427255380000105, 11.288905155634751 ], [ -15.265355380000102, 11.425905155634752 ], [ -15.506955380000079, 11.333005155634751 ], [ -15.284455380000082, 11.618005155634748 ], [ -15.027255380000099, 11.594205155634754 ], [ -15.340355380000091, 11.681705155634745 ], [ -15.444155380000097, 11.550805155634748 ], [ -15.423355380000089, 11.683405155634745 ], [ -15.530055380000078, 11.777505155634742 ], [ -15.130855380000099, 11.893305155634749 ], [ -15.0589553800001, 11.792805155634753 ], [ -14.968355380000105, 11.748005155634743 ], [ -14.93195538000009, 11.750805155634751 ], [ -15.003955380000093, 11.974205155634749 ], [ -15.963355380000081, 11.734205155634754 ], [ -15.705855380000088, 12.009905155634755 ], [ -16.202855380000102, 11.905505155634742 ], [ -16.34975538000009, 12.105805155634755 ], [ -16.110555380000079, 12.330805155634749 ], [ -16.458055380000104, 12.171705155634754 ], [ -16.79665538000009, 12.430005155634746 ], [ -16.586955380000092, 12.632805155634742 ], [ -16.380555380000089, 12.545005155634755 ], [ -15.626955380000084, 12.531105155634748 ], [ -15.39225538000008, 12.800805155634748 ], [ -15.650055380000083, 12.555505155634748 ], [ -16.021455380000106, 12.724905155634744 ], [ -16.376155380000085, 12.564405155634745 ], [ -16.598055380000091, 12.791705155634745 ], [ -16.766955380000098, 12.567805155634744 ], [ -16.819155380000097, 13.368905155634749 ], [ -16.686655380000104, 13.488905155634754 ], [ -16.54665538000009, 13.288605155634755 ], [ -16.221655380000101, 13.251405155634743 ], [ -16.16225538000009, 13.425305155634746 ], [ -15.773355380000083, 13.433005155634746 ], [ -15.551455380000078, 13.507505155634746 ], [ -15.368055380000101, 13.439705155634755 ], [ -15.307555380000082, 13.44640515563475 ], [ -15.293355380000094, 13.480305155634753 ], [ -15.55665538000008, 13.530005155634754 ], [ -16.513355380000093, 13.368605155634754 ], [ -16.645355380000098, 13.701905155634748 ], [ -16.490855380000085, 13.958005155634751 ], [ -16.702555380000092, 13.768305155634749 ], [ -16.747255380000098, 13.951905155634748 ], [ -16.638955380000084, 13.961705155634746 ], [ -16.363055380000105, 14.166105155634753 ], [ -16.775855380000081, 14.012505155634742 ], [ -17.175555380000105, 14.654405155634748 ], [ -17.53725538000009, 14.756105155634742 ], [ -17.1291553800001, 14.931105155634754 ], [ -16.546455380000083, 15.756705155634748 ], [ -16.465855380000079, 16.619705155634747 ], [ -16.039455380000078, 17.728005155634762 ], [ -16.179155380000083, 18.913005155634735 ], [ -16.511655380000093, 19.352205155634735 ], [ -16.284155380000101, 19.529705155634744 ], [ -16.468355380000105, 19.410505155634738 ], [ -16.233655380000101, 19.791105155634753 ], [ -16.197255380000087, 20.229205155634745 ], [ -16.919755380000083, 21.161705155634749 ], [ -17.05235538000008, 20.764105155634738 ], [ -16.95305538000008, 21.338305155634757 ], [ -12.999755380000096, 21.338005155634747 ], [ -13.105355380000105, 22.893005155634754 ], [ -12.571455380000089, 23.291405155634735 ], [ -12.000355380000087, 23.454405155634745 ], [ -12.000555380000094, 26.000005155634753 ], [ -8.666955380000104, 26.000305155634734 ], [ -8.666855380000101, 27.290505155634762 ], [ -4.525355380000093, 24.825005155634742 ], [ 1.1696446199999, 21.102505155634745 ], [ 1.167444619999912, 20.741105155634742 ], [ 1.6274446199999, 20.571105155634754 ], [ 1.795844619999912, 20.308305155634756 ], [ 2.2130446199999, 20.281405155634744 ], [ 2.411644619999919, 20.057505155634757 ], [ 3.233044619999902, 19.820305155634756 ], [ 3.277144619999916, 19.389705155634758 ], [ 3.114144619999905, 19.156405155634744 ], [ 3.331944619999916, 18.976405155634737 ], [ 5.812444619999894, 19.446105155634754 ], [ 7.450744619999909, 20.852905155634758 ], [ 11.986444619999901, 23.522305155634754 ], [ 13.543844619999902, 23.168605155634751 ], [ 14.234944619999908, 22.614205155634735 ], [ 14.9978446199999, 23.000605155634744 ], [ 15.202444619999909, 21.495805155634756 ], [ 15.6271446199999, 20.955305155634747 ], [ 15.575844619999913, 20.766405155634757 ], [ 15.996644619999898, 20.353005155634762 ], [ 15.7538446199999, 19.932505155634757 ], [ 15.489144619999905, 16.914205155634747 ], [ 14.368844619999919, 15.733905155634758 ], [ 13.678544619999911, 14.556905155634752 ], [ 13.461644619999902, 14.433005155634746 ], [ 13.625044619999898, 13.718305155634752 ], [ 14.074644619999901, 13.081705155634751 ], [ 14.174444619999917, 12.396705155634749 ], [ 14.645244619999914, 12.188305155634751 ], [ 14.642444619999907, 11.565505155634753 ], [ 13.807144619999917, 11.055805155634744 ], [ 13.462144619999918, 10.171905155634747 ], [ 13.254944619999918, 10.076905155634748 ], [ 13.239144619999905, 9.578905155634743 ], [ 12.897744619999912, 9.348005155634752 ], [ 12.794144619999912, 8.765805155634752 ], [ 12.2538446199999, 8.408005155634754 ], [ 12.043544619999921, 7.577805155634749 ], [ 11.749644619999913, 7.270505155634751 ], [ 11.864144619999905, 7.084705155634751 ], [ 11.5874446199999, 6.892205155634741 ], [ 11.406344619999913, 6.477205155634749 ], [ 11.124444619999906, 6.438005155634755 ], [ 11.043544619999921, 6.753305155634749 ], [ 10.614944619999903, 7.068605155634742 ], [ 10.513344619999913, 6.878005155634753 ], [ 10.237744619999916, 6.878005155634753 ], [ 10.164944619999915, 7.021105155634743 ], [ 8.865244619999913, 5.841905155634748 ], [ 8.824644619999901, 5.188605155634747 ], [ 8.533344619999895, 4.703305155634752 ], [ 8.274644619999918, 4.856705155634742 ], [ 8.288344619999918, 4.544205155634742 ], [ 7.5312446199999, 4.602305155634753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 23, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "West-Central Tropical Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.953044619999901, -5.876094844365255 ], [ 12.864944619999903, -5.886094844365246 ], [ 12.737144619999896, -5.943594844365251 ], [ 12.844144619999895, -5.850594844365247 ], [ 12.953044619999901, -5.876094844365255 ] ] ], [ [ [ 5.641344619999899, -1.474694844365246 ], [ 5.615244619999913, -1.469194844365248 ], [ 5.633844619999905, -1.420594844365255 ], [ 5.647544619999906, -1.446394844365258 ], [ 5.641344619999899, -1.474694844365246 ] ] ], [ [ [ 9.007744619999897, -0.767794844365255 ], [ 8.946644619999915, -0.658294844365258 ], [ 9.006644619999918, -0.598894844365248 ], [ 9.0466446199999, -0.666694844365253 ], [ 9.007744619999897, -0.767794844365255 ] ] ], [ [ [ 9.554444619999913, 0.274405155634753 ], [ 9.541344619999904, 0.267205155634741 ], [ 9.538044619999908, 0.270805155634747 ], [ 9.544444619999922, 0.285005155634749 ], [ 9.554444619999913, 0.274405155634753 ] ] ], [ [ [ 6.5238446199999, 0.018305155634749 ], [ 6.467244619999917, 0.259705155634748 ], [ 6.687744619999904, 0.402205155634746 ], [ 6.752744619999902, 0.228905155634749 ], [ 6.5238446199999, 0.018305155634749 ] ] ], [ [ [ 7.423044619999899, 1.556105155634754 ], [ 7.327244619999902, 1.607205155634745 ], [ 7.406644619999895, 1.701905155634748 ], [ 7.4641446199999, 1.678605155634742 ], [ 7.423044619999899, 1.556105155634754 ] ] ], [ [ [ 9.687144619999913, 3.574705155634746 ], [ 9.626044619999902, 3.551105155634744 ], [ 9.642444619999907, 3.578605155634747 ], [ 9.687144619999913, 3.574705155634746 ] ] ], [ [ [ 8.856644619999912, 3.499405155634747 ], [ 8.6913446199999, 3.19640515563475 ], [ 8.446044619999896, 3.274405155634753 ], [ 8.686044619999905, 3.741705155634747 ], [ 8.958844619999894, 3.703905155634743 ], [ 8.856644619999912, 3.499405155634747 ] ] ], [ [ [ 14.577144619999899, 12.738605155634744 ], [ 14.825844619999913, 12.630305155634744 ], [ 14.891744619999912, 12.153405155634744 ], [ 15.042544619999916, 12.078905155634743 ], [ 15.061644619999896, 10.790005155634745 ], [ 15.681844619999907, 9.989605155634749 ], [ 14.194744619999909, 9.981705155634742 ], [ 13.957444619999904, 9.63860515563475 ], [ 15.201944619999921, 8.48580515563475 ], [ 15.579944619999907, 7.760405155634743 ], [ 15.498944619999918, 7.526605155634755 ], [ 15.971344619999911, 7.499705155634743 ], [ 16.566544619999917, 7.873505155634746 ], [ 16.829444619999919, 7.548005155634755 ], [ 17.6408446199999, 7.987205155634754 ], [ 18.588844619999918, 8.040305155634755 ], [ 19.125844619999896, 8.672805155634748 ], [ 18.868544619999909, 8.849405155634742 ], [ 18.988844619999895, 8.964205155634744 ], [ 20.371644619999898, 9.108305155634753 ], [ 21.715544619999918, 10.290505155634747 ], [ 21.719444619999905, 10.639405155634748 ], [ 22.460544619999922, 11.000305155634749 ], [ 22.866444619999896, 10.922405155634749 ], [ 23.669144619999912, 9.866905155634754 ], [ 23.652144619999916, 9.280005155634754 ], [ 23.448544619999922, 9.025005155634744 ], [ 23.583044619999896, 8.988605155634744 ], [ 23.517744619999917, 8.714205155634744 ], [ 24.201044619999919, 8.686905155634747 ], [ 24.192444619999918, 8.303605155634742 ], [ 24.804444619999913, 8.192805155634744 ], [ 25.253344619999922, 7.85050515563475 ], [ 25.206944619999916, 7.497505155634755 ], [ 26.404944619999895, 6.646405155634753 ], [ 26.300544619999897, 6.401405155634748 ], [ 26.5235446199999, 6.221105155634746 ], [ 26.437444619999894, 6.077805155634749 ], [ 27.198044619999905, 5.713605155634752 ], [ 27.299944619999906, 5.226105155634755 ], [ 27.768844619999896, 4.787805155634743 ], [ 27.787444619999917, 4.601405155634751 ], [ 28.363044619999897, 4.290005155634745 ], [ 28.7766446199999, 4.561905155634747 ], [ 29.243544619999909, 4.346105155634746 ], [ 29.479944619999912, 4.676905155634742 ], [ 29.614644619999922, 4.656105155634748 ], [ 30.208544619999884, 3.959205155634749 ], [ 30.551944619999915, 3.864705155634752 ], [ 30.562444619999894, 3.610505155634755 ], [ 30.786344619999909, 3.660005155634749 ], [ 30.926344619999895, 3.510505155634746 ], [ 30.729644619999931, 2.448005155634746 ], [ 31.302744619999885, 2.121405155634747 ], [ 29.960544619999894, 0.825505155634744 ], [ 29.570844619999889, -1.173594844365255 ], [ 29.596944619999931, -1.38579484436525 ], [ 29.841344619999916, -1.32029484436525 ], [ 29.936644619999925, -1.475794844365254 ], [ 30.466944619999936, -1.055594844365245 ], [ 30.73954461999989, -1.43759484436525 ], [ 30.851644619999888, -2.304494844365252 ], [ 30.52604461999988, -2.453594844365256 ], [ 30.414644619999933, -2.850794844365254 ], [ 30.843644619999907, -2.978794844365254 ], [ 30.853344619999916, -3.16359484436525 ], [ 30.02604461999988, -4.269494844365255 ], [ 29.423544619999916, -4.447594844365256 ], [ 29.341344619999916, -4.797794844365256 ], [ 29.631644619999918, -5.721994844365256 ], [ 29.550244619999887, -6.295294844365259 ], [ 30.311344619999886, -7.136994844365248 ], [ 30.771244619999891, -8.19229484436525 ], [ 28.900744619999898, -8.479494844365249 ], [ 28.925844619999907, -8.741994844365252 ], [ 28.371044619999907, -9.273294844365253 ], [ 28.696344619999905, -9.791394844365257 ], [ 28.594944619999922, -10.246094844365246 ], [ 28.699644619999901, -10.653294844365249 ], [ 28.363344619999907, -11.550794844365257 ], [ 29.031344619999913, -12.383094844365246 ], [ 29.493544619999909, -12.458094844365249 ], [ 29.481044619999921, -12.239494844365254 ], [ 29.805044619999933, -12.155294844365258 ], [ 29.801344619999895, -13.454194844365247 ], [ 29.589444619999881, -13.221994844365256 ], [ 29.0158446199999, -13.397794844365251 ], [ 28.441944619999902, -12.519694844365247 ], [ 27.659944619999919, -12.296694844365248 ], [ 27.199244619999916, -11.567894844365256 ], [ 27.032144619999912, -11.596094844365254 ], [ 26.868544619999909, -11.973594844365252 ], [ 26.004644619999908, -11.902494844365251 ], [ 25.359644619999898, -11.641694844365247 ], [ 25.332144619999895, -11.193294844365255 ], [ 24.448344619999915, -11.463594844365247 ], [ 24.397444619999902, -11.109494844365258 ], [ 23.998344619999898, -10.869194844365254 ], [ 23.863844619999895, -11.027194844365255 ], [ 22.560544619999916, -11.033594844365254 ], [ 22.2538446199999, -11.209694844365245 ], [ 22.163544619999897, -10.86139484436525 ], [ 22.315844619999922, -10.730294844365247 ], [ 22.312144619999913, -10.364494844365254 ], [ 21.790544619999906, -9.405594844365254 ], [ 21.9399446199999, -8.496094844365246 ], [ 21.7541446199999, -7.999494844365245 ], [ 21.7829446199999, -7.280794844365246 ], [ 20.548644619999919, -7.283594844365254 ], [ 20.629744619999911, -6.913894844365245 ], [ 19.5389446199999, -6.996594844365248 ], [ 19.373044619999916, -7.996094844365246 ], [ 18.531044619999903, -7.93029484436525 ], [ 17.624144619999896, -8.098094844365249 ], [ 16.9416446199999, -7.198594844365246 ], [ 16.579644619999897, -5.900794844365251 ], [ 12.904144619999897, -5.811094844365257 ], [ 12.435844619999898, -6.016694844365247 ], [ 12.155044619999899, -5.681694844365254 ], [ 12.228644619999898, -5.476994844365251 ], [ 11.780244619999905, -4.550294844365254 ], [ 9.700844619999913, -2.445594844365246 ], [ 10.016044619999917, -2.639694844365252 ], [ 10.1305446199999, -2.519994844365257 ], [ 9.663544619999897, -2.424694844365249 ], [ 9.322444619999914, -1.907494844365246 ], [ 9.537744619999899, -2.07029484436525 ], [ 9.485244619999918, -1.864194844365258 ], [ 9.257444619999916, -1.846094844365254 ], [ 8.983044619999902, -1.234194844365248 ], [ 9.028344619999899, -1.323594844365246 ], [ 9.233344619999912, -1.530294844365258 ], [ 9.291044619999894, -1.638894844365254 ], [ 9.513844619999901, -1.596694844365246 ], [ 9.284644619999909, -1.567194844365247 ], [ 9.251344619999912, -1.498594844365257 ], [ 9.3391446199999, -1.394994844365257 ], [ 9.352744619999896, -1.341994844365246 ], [ 9.334444619999914, -1.281694844365248 ], [ 9.219144619999895, -1.412494844365256 ], [ 9.028044619999918, -1.299694844365249 ], [ 8.699144619999913, -0.586094844365249 ], [ 9.013844619999901, -0.819194844365256 ], [ 9.311644619999896, -0.336394844365245 ], [ 9.347444619999919, 0.363005155634752 ], [ 9.466944619999907, 0.167205155634747 ], [ 9.737144619999896, 0.114405155634742 ], [ 9.921044619999918, 0.185305155634751 ], [ 9.775844619999901, 0.183305155634741 ], [ 9.550044619999909, 0.298505155634743 ], [ 9.499944619999894, 0.290805155634743 ], [ 9.303344619999905, 0.534705155634754 ], [ 9.537744619999899, 0.67500515563475 ], [ 9.599944619999917, 0.481105155634751 ], [ 9.5646446199999, 0.983005155634743 ], [ 9.849944619999917, 1.073605155634752 ], [ 9.356944619999922, 1.167205155634747 ], [ 9.814144619999894, 1.924705155634754 ], [ 9.966644619999897, 3.081705155634751 ], [ 9.656344619999913, 3.538905155634751 ], [ 9.745744619999897, 3.617605155634749 ], [ 9.543044619999904, 3.808905155634747 ], [ 9.722444619999919, 3.865305155634744 ], [ 9.497744619999906, 4.11080515563475 ], [ 9.526044619999908, 3.973905155634753 ], [ 9.351344619999907, 3.908605155634746 ], [ 8.972444619999919, 4.100005155634747 ], [ 8.933544619999907, 4.546905155634747 ], [ 8.845844619999895, 4.638005155634744 ], [ 8.871344619999917, 4.538905155634751 ], [ 8.666344619999904, 4.681405155634749 ], [ 8.719144619999895, 4.504405155634743 ], [ 8.5041446199999, 4.527805155634752 ], [ 8.824644619999901, 5.188605155634747 ], [ 8.863344619999907, 5.836905155634753 ], [ 10.164944619999915, 7.021105155634743 ], [ 10.269444619999916, 6.874705155634743 ], [ 10.513344619999913, 6.878005155634753 ], [ 10.614944619999903, 7.068605155634742 ], [ 10.837144619999918, 6.965005155634742 ], [ 11.1291446199999, 6.435805155634753 ], [ 11.518344619999908, 6.607505155634755 ], [ 11.5874446199999, 6.892205155634741 ], [ 11.864144619999905, 7.084705155634751 ], [ 11.749644619999913, 7.270505155634751 ], [ 12.043544619999921, 7.577805155634749 ], [ 12.2538446199999, 8.408005155634754 ], [ 12.794144619999912, 8.765805155634752 ], [ 12.897744619999912, 9.348005155634752 ], [ 13.239144619999905, 9.578905155634743 ], [ 13.254944619999918, 10.076905155634748 ], [ 13.462144619999918, 10.171905155634747 ], [ 13.807144619999917, 11.055805155634744 ], [ 14.642444619999907, 11.565505155634753 ], [ 14.645244619999914, 12.188305155634751 ], [ 14.174444619999917, 12.396705155634749 ], [ 14.074644619999901, 13.081705155634751 ], [ 14.4430446199999, 13.084705155634751 ], [ 14.577144619999899, 12.738605155634744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 24, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Northeast Tropical Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.340844619999928, 12.108905155634744 ], [ 53.273344619999932, 12.113305155634748 ], [ 53.256644619999918, 12.125005155634753 ], [ 53.291644619999886, 12.134405155634752 ], [ 53.340844619999928, 12.108905155634744 ] ] ], [ [ [ 53.085844619999932, 12.133605155634754 ], [ 53.073344619999887, 12.13390515563475 ], [ 53.011344619999932, 12.158605155634746 ], [ 53.0960446199999, 12.175505155634752 ], [ 53.085844619999932, 12.133605155634754 ] ] ], [ [ [ 52.234144619999881, 12.20110515563475 ], [ 52.39334461999988, 12.198005155634746 ], [ 52.395844619999934, 12.15530515563475 ], [ 52.083044619999896, 12.222805155634745 ], [ 52.234144619999881, 12.20110515563475 ] ] ], [ [ [ 53.77464461999989, 12.616405155634752 ], [ 54.091044619999934, 12.704205155634753 ], [ 54.476944619999927, 12.557805155634753 ], [ 53.7535446199999, 12.308005155634746 ], [ 53.325844619999884, 12.545805155634753 ], [ 53.501944619999904, 12.71780515563475 ], [ 53.77464461999989, 12.616405155634752 ] ] ], [ [ [ 42.2127446199999, 13.643105155634743 ], [ 42.186644619999925, 13.656105155634748 ], [ 42.156344619999913, 13.659705155634754 ], [ 42.178844619999893, 13.668905155634747 ], [ 42.2127446199999, 13.643105155634743 ] ] ], [ [ [ 40.08714461999989, 15.851705155634747 ], [ 40.161944619999929, 15.642805155634747 ], [ 40.419444619999922, 15.573905155634762 ], [ 39.977744619999896, 15.605005155634743 ], [ 40.080544619999898, 15.667505155634743 ], [ 39.928844619999893, 15.788905155634737 ], [ 40.08714461999989, 15.851705155634747 ] ] ], [ [ [ 40.113344619999907, 16.055805155634758 ], [ 40.104644619999931, 15.987805155634746 ], [ 39.979644619999931, 16.01220515563476 ], [ 40.030244619999905, 16.095305155634762 ], [ 40.113344619999907, 16.055805155634758 ] ] ], [ [ [ 37.268544619999886, 20.751105155634761 ], [ 37.2421446199999, 20.785805155634748 ], [ 37.263844619999929, 20.849705155634737 ], [ 37.284444619999931, 20.830305155634747 ], [ 37.268544619999886, 20.751105155634761 ] ] ], [ [ [ 42.2127446199999, 13.643105155634743 ], [ 42.2949446199999, 13.55300515563475 ], [ 42.374644619999913, 13.215005155634742 ], [ 42.8046446199999, 12.845005155634752 ], [ 43.073344619999887, 12.83640515563475 ], [ 43.412444619999917, 12.226405155634751 ], [ 43.369144619999929, 11.990005155634748 ], [ 42.534144619999893, 11.506905155634755 ], [ 43.157144619999883, 11.570805155634744 ], [ 44.308044619999919, 10.434705155634745 ], [ 44.988544619999914, 10.432805155634753 ], [ 45.759944619999885, 10.875305155634749 ], [ 46.458544619999884, 10.691105155634745 ], [ 47.3988446199999, 11.180005155634746 ], [ 47.6916446199999, 11.099205155634749 ], [ 49.429144619999931, 11.341905155634748 ], [ 50.281344619999913, 11.595305155634748 ], [ 50.769444619999888, 11.979205155634745 ], [ 51.277144619999888, 11.836705155634746 ], [ 51.076344619999929, 11.328005155634742 ], [ 51.145544619999896, 10.633605155634754 ], [ 51.014144619999911, 10.442805155634744 ], [ 51.412644619999924, 10.451505155634749 ], [ 50.896944619999886, 10.31970515563475 ], [ 50.836244619999889, 9.43270515563475 ], [ 49.826644619999911, 7.941905155634743 ], [ 49.040844619999916, 6.149705155634749 ], [ 47.95444461999989, 4.463905155634748 ], [ 46.014644619999899, 2.427805155634744 ], [ 44.548844619999898, 1.55470515563475 ], [ 43.488544619999914, 0.650005155634744 ], [ 42.0666446199999, -0.896094844365251 ], [ 41.558144619999894, -1.674894844365255 ], [ 40.998344619999898, -0.86609484436525 ], [ 40.986544619999904, 2.829905155634748 ], [ 41.9051446199999, 3.980305155634753 ], [ 41.1713446199999, 3.942505155634748 ], [ 40.783744619999936, 4.28800515563475 ], [ 39.866644619999931, 3.869405155634752 ], [ 39.524444619999883, 3.406405155634744 ], [ 38.121044619999907, 3.611705155634752 ], [ 36.887744619999921, 4.434705155634745 ], [ 36.045244619999892, 4.447105155634745 ], [ 35.940544619999912, 4.622505155634755 ], [ 34.388144619999935, 4.609705155634742 ], [ 33.51694461999989, 3.752205155634755 ], [ 33.016644619999909, 3.88860515563475 ], [ 32.404444619999936, 3.743605155634754 ], [ 32.193344619999891, 3.511405155634748 ], [ 31.794444619999922, 3.817205155634753 ], [ 31.540844619999916, 3.65360515563475 ], [ 31.176644619999934, 3.79530515563475 ], [ 30.858744619999925, 3.493405155634747 ], [ 30.786344619999909, 3.660005155634749 ], [ 30.562444619999894, 3.610505155634755 ], [ 30.551944619999915, 3.864705155634752 ], [ 30.208544619999884, 3.959205155634749 ], [ 29.614644619999922, 4.656105155634748 ], [ 29.479944619999912, 4.676905155634742 ], [ 29.243544619999909, 4.346105155634746 ], [ 28.7766446199999, 4.561905155634747 ], [ 28.476644619999917, 4.328005155634742 ], [ 28.205544619999898, 4.345505155634754 ], [ 27.455244619999917, 5.016405155634743 ], [ 27.142744619999917, 5.771905155634755 ], [ 26.437444619999894, 6.077805155634749 ], [ 26.5235446199999, 6.221105155634746 ], [ 26.300544619999897, 6.401405155634748 ], [ 26.396644619999904, 6.65530515563475 ], [ 25.206944619999916, 7.497505155634755 ], [ 25.253344619999922, 7.85050515563475 ], [ 24.804444619999913, 8.192805155634744 ], [ 24.192444619999918, 8.303605155634742 ], [ 24.201044619999919, 8.686905155634747 ], [ 23.517744619999917, 8.714205155634744 ], [ 23.583044619999896, 8.988605155634744 ], [ 23.448544619999922, 9.025005155634744 ], [ 23.652144619999916, 9.280005155634754 ], [ 23.669144619999912, 9.866905155634754 ], [ 22.866444619999896, 10.922405155634749 ], [ 22.460544619999922, 11.000305155634749 ], [ 21.719444619999905, 10.639405155634748 ], [ 21.715544619999918, 10.290505155634747 ], [ 20.371644619999898, 9.108305155634753 ], [ 18.988844619999895, 8.964205155634744 ], [ 18.868544619999909, 8.849405155634742 ], [ 19.125844619999896, 8.672805155634748 ], [ 18.588844619999918, 8.040305155634755 ], [ 17.6408446199999, 7.987205155634754 ], [ 16.829444619999919, 7.548005155634755 ], [ 16.566544619999917, 7.873505155634746 ], [ 15.971344619999911, 7.499705155634743 ], [ 15.498944619999918, 7.526605155634755 ], [ 15.579944619999907, 7.760405155634743 ], [ 15.201944619999921, 8.48580515563475 ], [ 13.957444619999904, 9.63860515563475 ], [ 14.194744619999909, 9.981705155634742 ], [ 15.681844619999907, 9.989605155634749 ], [ 15.057744619999909, 10.80000515563475 ], [ 15.042544619999916, 12.078905155634743 ], [ 14.891744619999912, 12.153405155634744 ], [ 14.825844619999913, 12.630305155634744 ], [ 14.547744619999918, 12.766405155634743 ], [ 14.4430446199999, 13.084705155634751 ], [ 14.074644619999901, 13.081705155634751 ], [ 13.625044619999898, 13.718305155634752 ], [ 13.461644619999902, 14.433005155634746 ], [ 13.678544619999911, 14.556905155634752 ], [ 14.368844619999919, 15.733905155634758 ], [ 15.489144619999905, 16.914205155634747 ], [ 15.7538446199999, 19.932505155634757 ], [ 15.996644619999898, 20.353005155634762 ], [ 15.575844619999913, 20.766405155634757 ], [ 15.6271446199999, 20.955305155634747 ], [ 15.202444619999909, 21.495805155634756 ], [ 14.9978446199999, 23.000605155634744 ], [ 16.000844619999896, 23.450505155634758 ], [ 24.002744619999902, 19.499105155634751 ], [ 24.000844619999896, 20.001905155634759 ], [ 25.000644619999917, 19.999105155634751 ], [ 25.001344619999912, 21.999705155634743 ], [ 31.271044619999884, 21.998305155634753 ], [ 31.455544619999898, 22.232205155634759 ], [ 31.453844619999927, 21.998305155634753 ], [ 33.177144619999922, 21.999305155634758 ], [ 33.571444619999909, 21.721805155634755 ], [ 34.019744619999926, 21.772005155634744 ], [ 34.153144619999921, 22.193605155634756 ], [ 34.728244619999884, 22.296105155634748 ], [ 34.973044619999882, 22.842705155634761 ], [ 35.246344619999888, 22.768705155634748 ], [ 35.633644619999927, 23.127905155634735 ], [ 35.849444619999929, 22.759405155634752 ], [ 36.233344619999912, 22.632505155634746 ], [ 36.889644619999899, 22.048605155634746 ], [ 36.911344619999909, 21.608605155634748 ], [ 37.309444619999908, 21.060305155634737 ], [ 37.105244619999894, 21.212205155634749 ], [ 37.4333446199999, 18.858005155634757 ], [ 38.591644619999897, 18.062505155634753 ], [ 39.714944619999926, 15.091905155634748 ], [ 39.881344619999936, 15.489405155634742 ], [ 40.162444619999917, 14.979405155634751 ], [ 40.455244619999917, 15.008605155634754 ], [ 40.807144619999917, 14.705505155634754 ], [ 41.1705446199999, 14.632505155634746 ], [ 41.676644619999934, 13.935805155634753 ], [ 42.227744619999896, 13.550505155634752 ], [ 42.2127446199999, 13.643105155634743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 25, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "East Tropical Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.682444619999899, -7.993294844365252 ], [ 39.591344619999916, -7.945794844365253 ], [ 39.90104461999988, -7.638894844365254 ], [ 39.847744619999901, -7.875294844365257 ], [ 39.682444619999899, -7.993294844365252 ] ] ], [ [ [ 39.446644619999915, -6.210594844365247 ], [ 39.516044619999889, -6.468594844365256 ], [ 39.201344619999929, -6.226994844365251 ], [ 39.304144619999931, -5.723894844365248 ], [ 39.446644619999915, -6.210594844365247 ] ] ], [ [ [ 39.736044619999916, -5.462794844365249 ], [ 39.676944619999915, -4.941394844365249 ], [ 39.857144619999929, -4.908594844365254 ], [ 39.851044619999925, -5.251994844365257 ], [ 39.736044619999916, -5.462794844365249 ] ] ], [ [ [ 41.138044619999903, -2.124494844365245 ], [ 40.997444619999897, -2.203094844365253 ], [ 40.950244619999921, -2.173594844365255 ], [ 41.063844619999884, -2.044194844365251 ], [ 41.138044619999903, -2.124494844365245 ] ] ], [ [ [ 35.940544619999912, 4.622505155634755 ], [ 36.045244619999892, 4.447105155634745 ], [ 37.039644619999933, 4.375505155634755 ], [ 38.121044619999907, 3.611705155634752 ], [ 39.524444619999883, 3.406405155634744 ], [ 39.866644619999931, 3.869405155634752 ], [ 40.783744619999936, 4.28800515563475 ], [ 41.1713446199999, 3.942505155634748 ], [ 41.9051446199999, 3.980305155634753 ], [ 40.986544619999904, 2.829905155634748 ], [ 40.998344619999898, -0.86609484436525 ], [ 41.558144619999894, -1.674894844365255 ], [ 41.3152446199999, -1.958094844365249 ], [ 40.891644619999909, -2.019194844365245 ], [ 40.96354461999988, -2.29889484436525 ], [ 40.854944619999912, -2.236094844365255 ], [ 40.638044619999903, -2.549994844365258 ], [ 40.22554461999988, -2.678894844365246 ], [ 40.120544619999919, -3.277494844365251 ], [ 39.406644619999895, -4.630594844365248 ], [ 39.203044619999901, -4.66959484436525 ], [ 38.7758446199999, -6.03389484436525 ], [ 38.914944619999915, -6.441094844365253 ], [ 39.547844619999921, -6.994294844365257 ], [ 39.274444619999883, -7.579194844365247 ], [ 39.446644619999915, -7.814194844365247 ], [ 39.295244619999892, -8.267894844365259 ], [ 39.533844619999911, -8.911094844365252 ], [ 39.387744619999921, -8.902494844365251 ], [ 39.643044619999898, -9.188094844365253 ], [ 39.826344619999929, -9.993094844365245 ], [ 40.436744619999899, -10.478194844365248 ], [ 39.268044619999898, -11.168094844365257 ], [ 38.897744619999912, -11.172194844365251 ], [ 38.491644619999931, -11.415294844365249 ], [ 37.941344619999882, -11.284994844365258 ], [ 37.791944619999924, -11.561094844365257 ], [ 37.462044619999915, -11.727294844365247 ], [ 36.829644619999897, -11.568594844365251 ], [ 36.561944619999906, -11.740294844365252 ], [ 36.1896446199999, -11.706694844365245 ], [ 35.8383446199999, -11.414694844365258 ], [ 35.576344619999929, -11.606694844365251 ], [ 34.966744619999929, -11.572094844365253 ], [ 34.613544619999914, -11.104994844365251 ], [ 34.5266446199999, -10.020294844365253 ], [ 34.074444619999895, -9.50779484436525 ], [ 33.918844619999902, -9.706694844365245 ], [ 33.437744619999933, -9.615794844365254 ], [ 30.9824446199999, -8.552194844365246 ], [ 30.311344619999886, -7.136994844365248 ], [ 29.563344619999896, -6.324694844365254 ], [ 29.49524461999988, -5.999994844365247 ], [ 29.631644619999918, -5.721994844365256 ], [ 29.341944619999936, -4.883894844365258 ], [ 29.423644619999891, -4.447794844365248 ], [ 30.02604461999988, -4.269494844365255 ], [ 30.853344619999916, -3.16359484436525 ], [ 30.843644619999907, -2.978794844365254 ], [ 30.414644619999933, -2.850794844365254 ], [ 30.52604461999988, -2.453594844365256 ], [ 30.851644619999888, -2.304494844365252 ], [ 30.73954461999989, -1.43759484436525 ], [ 30.4430446199999, -1.053894844365246 ], [ 29.974944619999917, -1.464494844365248 ], [ 29.841344619999916, -1.32029484436525 ], [ 29.596944619999931, -1.38579484436525 ], [ 29.574444619999895, -0.921994844365258 ], [ 29.965044619999901, 0.833705155634746 ], [ 31.302744619999885, 2.121405155634747 ], [ 30.729644619999931, 2.448005155634746 ], [ 30.954644619999897, 3.671105155634748 ], [ 31.285244619999901, 3.79530515563475 ], [ 31.540844619999916, 3.65360515563475 ], [ 31.794444619999922, 3.817205155634753 ], [ 32.193344619999891, 3.511405155634748 ], [ 32.404444619999936, 3.743605155634754 ], [ 33.016644619999909, 3.88860515563475 ], [ 33.51694461999989, 3.752205155634755 ], [ 34.388144619999935, 4.609705155634742 ], [ 35.940544619999912, 4.622505155634755 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 26, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "South Tropical Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.95444461999989, -26.058594844365246 ], [ 32.895244619999914, -26.040794844365251 ], [ 32.980544619999932, -25.972794844365254 ], [ 32.982744619999892, -25.983594844365257 ], [ 32.95444461999989, -26.058594844365246 ] ] ], [ [ [ 35.488344619999907, -21.684994844365249 ], [ 35.435544619999916, -21.783294844365258 ], [ 35.479444619999924, -21.523894844365245 ], [ 35.497444619999897, -21.549494844365256 ], [ 35.488344619999907, -21.684994844365249 ] ] ], [ [ [ 11.750844619999896, -16.755294844365253 ], [ 11.7749446199999, -16.804694844365258 ], [ 11.667444619999912, -16.606094844365245 ], [ 11.693544619999898, -16.535594844365249 ], [ 11.750844619999896, -16.755294844365253 ] ] ], [ [ [ 39.901344619999918, -16.413294844365254 ], [ 39.810844619999898, -16.36309484436525 ], [ 39.861344619999898, -16.278094844365256 ], [ 39.914644619999933, -16.279694844365252 ], [ 39.901344619999918, -16.413294844365254 ] ] ], [ [ [ 13.997444619999897, -5.848594844365252 ], [ 16.579644619999897, -5.900794844365251 ], [ 16.9416446199999, -7.198594844365246 ], [ 17.624144619999896, -8.098094844365249 ], [ 18.531044619999903, -7.93029484436525 ], [ 19.373044619999916, -7.996094844365246 ], [ 19.5389446199999, -6.996594844365248 ], [ 20.629744619999911, -6.913894844365245 ], [ 20.548644619999919, -7.283594844365254 ], [ 21.7829446199999, -7.280794844365246 ], [ 21.7541446199999, -7.999494844365245 ], [ 21.9399446199999, -8.496094844365246 ], [ 21.790544619999906, -9.405594844365254 ], [ 22.312144619999913, -10.364494844365254 ], [ 22.315844619999922, -10.730294844365247 ], [ 22.163544619999897, -10.86139484436525 ], [ 22.2538446199999, -11.209694844365245 ], [ 22.560544619999916, -11.033594844365254 ], [ 23.863844619999895, -11.027194844365255 ], [ 23.998344619999898, -10.869194844365254 ], [ 24.397444619999902, -11.109494844365258 ], [ 24.448344619999915, -11.463594844365247 ], [ 25.332144619999895, -11.193294844365255 ], [ 25.359644619999898, -11.641694844365247 ], [ 26.004644619999908, -11.902494844365251 ], [ 26.868544619999909, -11.973594844365252 ], [ 27.032144619999912, -11.596094844365254 ], [ 27.199244619999916, -11.567894844365256 ], [ 27.562744619999904, -12.208594844365251 ], [ 28.351044619999897, -12.442794844365253 ], [ 28.569944619999916, -12.890794844365246 ], [ 28.6833446199999, -12.844994844365246 ], [ 28.966944619999907, -13.356694844365251 ], [ 29.196644619999915, -13.436394844365253 ], [ 29.576044619999891, -13.22139484436525 ], [ 29.801344619999895, -13.454194844365247 ], [ 29.805044619999933, -12.155294844365258 ], [ 29.481044619999921, -12.239494844365254 ], [ 29.493544619999909, -12.458094844365249 ], [ 29.031344619999913, -12.383094844365246 ], [ 28.496344619999917, -11.867494844365254 ], [ 28.356344619999902, -11.514994844365248 ], [ 28.699644619999901, -10.653294844365249 ], [ 28.594944619999922, -10.246094844365246 ], [ 28.696344619999905, -9.791394844365257 ], [ 28.372144619999915, -9.26079484436525 ], [ 28.868344619999903, -8.826994844365245 ], [ 28.900744619999898, -8.479494844365249 ], [ 30.771244619999891, -8.19229484436525 ], [ 30.9824446199999, -8.552194844365246 ], [ 31.485544619999928, -8.666394844365257 ], [ 31.9844446199999, -9.073094844365258 ], [ 32.425544619999926, -9.129694844365247 ], [ 33.437744619999933, -9.615794844365254 ], [ 33.918844619999902, -9.706694844365245 ], [ 34.043544619999921, -9.484694844365251 ], [ 34.522444619999931, -10.01079484436525 ], [ 34.613544619999914, -11.104994844365251 ], [ 34.966744619999929, -11.572094844365253 ], [ 35.576344619999929, -11.606694844365251 ], [ 35.8383446199999, -11.414694844365258 ], [ 36.1896446199999, -11.706694844365245 ], [ 36.561944619999906, -11.740294844365252 ], [ 36.829644619999897, -11.568594844365251 ], [ 37.462044619999915, -11.727294844365247 ], [ 37.791944619999924, -11.561094844365257 ], [ 37.941344619999882, -11.284994844365258 ], [ 38.491644619999931, -11.415294844365249 ], [ 38.897744619999912, -11.172194844365251 ], [ 39.268044619999898, -11.168094844365257 ], [ 40.511344619999932, -10.479694844365255 ], [ 40.616944619999913, -10.847494844365258 ], [ 40.387744619999921, -11.317794844365253 ], [ 40.471344619999911, -12.508894844365258 ], [ 40.646944619999886, -12.76079484436525 ], [ 40.409944619999919, -12.96199484436525 ], [ 40.597144619999881, -12.973294844365256 ], [ 40.649444619999883, -14.026394844365257 ], [ 40.530544619999887, -14.171694844365248 ], [ 40.725244619999899, -14.206094844365253 ], [ 40.636044619999893, -14.484694844365251 ], [ 40.830544619999898, -14.453594844365256 ], [ 40.770244619999914, -14.978294844365251 ], [ 40.514444619999892, -15.180594844365245 ], [ 40.683844619999888, -15.259994844365252 ], [ 39.983544619999918, -16.231994844365246 ], [ 39.783044619999885, -16.299494844365256 ], [ 39.81744461999989, -16.412794844365251 ], [ 39.094444619999933, -16.98639484436525 ], [ 37.872144619999915, -17.376394844365251 ], [ 36.9838446199999, -18.001394844365251 ], [ 36.841344619999916, -17.877194844365249 ], [ 36.943844619999936, -18.108594844365257 ], [ 36.2527446199999, -18.891394844365252 ], [ 36.106344619999902, -18.80829484436525 ], [ 34.899144619999902, -19.857194844365253 ], [ 34.619144619999929, -19.61779484436525 ], [ 34.776944619999881, -19.825594844365256 ], [ 34.6585446199999, -20.391694844365247 ], [ 35.115844619999905, -20.935294844365245 ], [ 35.312444619999894, -22.418094844365257 ], [ 35.477744619999896, -22.091094844365259 ], [ 35.545244619999892, -22.232494844365249 ], [ 35.610244619999889, -22.924194844365246 ], [ 35.3383446199999, -23.905794844365246 ], [ 35.530844619999925, -23.800294844365254 ], [ 35.497144619999915, -24.105294844365247 ], [ 35.012144619999901, -24.65419484436525 ], [ 32.886044619999893, -25.534994844365258 ], [ 32.576044619999891, -25.975594844365247 ], [ 32.837444619999928, -26.293094844365257 ], [ 32.952444619999881, -26.083894844365247 ], [ 32.890444619999926, -26.847194844365248 ], [ 32.151344619999918, -26.846094844365254 ], [ 32.100844619999918, -26.148594844365249 ], [ 31.919444619999922, -25.814194844365247 ], [ 32.016044619999889, -24.459494844365253 ], [ 31.550844619999907, -23.476694844365255 ], [ 31.273044619999894, -22.377194844365249 ], [ 29.373544619999905, -22.192394844365253 ], [ 29.073844619999903, -22.037794844365251 ], [ 29.060544619999916, -21.798094844365252 ], [ 28.0158446199999, -21.566094844365253 ], [ 27.685544619999916, -21.070594844365246 ], [ 27.713144619999895, -20.506394844365246 ], [ 27.287444619999917, -20.494994844365252 ], [ 27.219944619999922, -20.09169484436525 ], [ 26.166044619999894, -19.527794844365246 ], [ 25.956044619999915, -18.91359484436525 ], [ 24.969944619999922, -17.559694844365254 ], [ 24.239044619999902, -17.478394844365255 ], [ 20.854144619999914, -18.016394844365252 ], [ 20.3380446199999, -17.858094844365255 ], [ 18.915844619999916, -17.815594844365251 ], [ 18.451544619999908, -17.389794844365255 ], [ 13.993144619999896, -17.423994844365254 ], [ 13.4744446199999, -17.011994844365248 ], [ 13.160544619999911, -16.952794844365258 ], [ 12.557144619999917, -17.243294844365252 ], [ 12.084644619999921, -17.135294844365248 ], [ 11.752744619999902, -17.25479484436525 ], [ 11.820844619999917, -16.503094844365251 ], [ 11.731344619999902, -15.846694844365246 ], [ 12.008544619999896, -15.591994844365246 ], [ 12.509644619999904, -13.425294844365254 ], [ 13.662444619999917, -12.169694844365253 ], [ 13.853544619999894, -11.006394844365246 ], [ 12.9844446199999, -9.087494844365253 ], [ 13.387444619999911, -8.740294844365252 ], [ 13.391344619999899, -8.387194844365254 ], [ 12.8177446199999, -6.950294844365246 ], [ 12.244944619999899, -6.098094844365249 ], [ 12.984944619999908, -5.88279484436525 ], [ 13.997444619999897, -5.848594844365252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 27, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Southern Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.208844619999894, -16.973594844365252 ], [ 13.993144619999896, -17.423994844365254 ], [ 18.451544619999908, -17.389794844365255 ], [ 18.915844619999916, -17.815594844365251 ], [ 20.3380446199999, -17.858094844365255 ], [ 20.854144619999914, -18.016394844365252 ], [ 24.239044619999902, -17.478394844365255 ], [ 24.969944619999922, -17.559694844365254 ], [ 25.956044619999915, -18.91359484436525 ], [ 26.166044619999894, -19.527794844365246 ], [ 27.219944619999922, -20.09169484436525 ], [ 27.287444619999917, -20.494994844365252 ], [ 27.713144619999895, -20.506394844365246 ], [ 27.685544619999916, -21.070594844365246 ], [ 28.0158446199999, -21.566094844365253 ], [ 29.060544619999916, -21.798094844365252 ], [ 29.073844619999903, -22.037794844365251 ], [ 29.373644619999936, -22.192394844365253 ], [ 31.273044619999894, -22.377194844365249 ], [ 31.550844619999907, -23.476694844365255 ], [ 32.0161446199999, -24.459494844365253 ], [ 31.919444619999922, -25.814194844365247 ], [ 32.100844619999918, -26.148594844365249 ], [ 32.133444619999921, -26.839594844365251 ], [ 32.890444619999926, -26.847194844365248 ], [ 32.398644619999914, -28.524994844365253 ], [ 31.325844619999884, -29.390794844365246 ], [ 30.000844619999896, -31.302794844365252 ], [ 28.537744619999899, -32.574194844365252 ], [ 27.030544619999915, -33.556394844365258 ], [ 26.455244619999917, -33.773594844365249 ], [ 25.768844619999896, -33.748894844365253 ], [ 25.627244619999914, -34.048294844365245 ], [ 24.950544619999903, -33.986994844365256 ], [ 24.824744619999905, -34.20169484436525 ], [ 23.653344619999899, -33.983894844365253 ], [ 23.368344619999903, -34.097494844365258 ], [ 22.545044619999913, -34.004994844365257 ], [ 21.802544619999907, -34.383094844365246 ], [ 20.504444619999902, -34.464694844365255 ], [ 19.999344619999903, -34.82199484436525 ], [ 19.318644619999901, -34.597194844365248 ], [ 19.281944619999905, -34.409694844365248 ], [ 18.8177446199999, -34.377794844365255 ], [ 18.793344619999914, -34.086694844365255 ], [ 18.488044619999897, -34.097794844365254 ], [ 18.449444619999895, -34.341094844365259 ], [ 18.310244619999906, -34.032494844365246 ], [ 18.441144619999903, -33.706694844365245 ], [ 17.847544619999894, -32.830794844365258 ], [ 18.311644619999896, -32.577794844365258 ], [ 18.214744619999919, -31.727194844365258 ], [ 17.278844619999916, -30.346694844365246 ], [ 16.815244619999902, -29.084994844365255 ], [ 16.489544619999918, -28.578194844365257 ], [ 15.6896446199999, -27.956094844365253 ], [ 15.094944619999922, -26.735294844365256 ], [ 15.171044619999918, -26.59639484436525 ], [ 14.834444619999914, -25.744994844365252 ], [ 14.854944619999912, -25.05059484436525 ], [ 14.463344619999901, -24.109194844365248 ], [ 14.511344619999903, -22.552794844365252 ], [ 13.3999446199999, -20.855794844365249 ], [ 12.460844619999904, -18.928094844365248 ], [ 11.764944619999909, -17.980794844365249 ], [ 11.752744619999902, -17.25479484436525 ], [ 12.084644619999921, -17.135294844365248 ], [ 12.557144619999917, -17.243294844365252 ], [ 13.208844619999894, -16.973594844365252 ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 28, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Middle Atlantic Ocean" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.66225538000009, -15.987494844365258 ], [ -5.766355380000078, -16.023294844365253 ], [ -5.793055380000084, -15.994194844365254 ], [ -5.704155380000088, -15.903094844365256 ], [ -5.66225538000009, -15.987494844365258 ] ] ], [ [ [ -14.363855380000103, -7.979694844365255 ], [ -14.41225538000009, -7.974194844365257 ], [ -14.381955380000079, -7.883594844365248 ], [ -14.293055380000084, -7.94529484436525 ], [ -14.363855380000103, -7.979694844365255 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 29, "LEVEL1_COD": 2, "LEVEL1_NAM": "AFRICA", "LEVEL2_NAM": "Western Indian Ocean" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.721944619999931, -21.36439484436525 ], [ 55.343344619999925, -21.268594844365253 ], [ 55.294444619999922, -20.921694844365248 ], [ 55.687744619999933, -20.928094844365248 ], [ 55.851344619999907, -21.136394844365256 ], [ 55.721944619999931, -21.36439484436525 ] ] ], [ [ [ 57.572444619999885, -20.51419484436525 ], [ 57.3046446199999, -20.449194844365252 ], [ 57.624444619999906, -19.98639484436525 ], [ 57.791944619999924, -20.270794844365255 ], [ 57.572444619999885, -20.51419484436525 ] ] ], [ [ [ 63.466344619999916, -19.735794844365245 ], [ 63.369444619999911, -19.766694844365247 ], [ 63.3286446199999, -19.73809484436525 ], [ 63.461144619999914, -19.673094844365252 ], [ 63.466344619999916, -19.735794844365245 ] ] ], [ [ [ 42.757744619999926, -17.07499484436525 ], [ 42.737444619999906, -17.072794844365248 ], [ 42.7210446199999, -17.055594844365245 ], [ 42.756944619999899, -17.059694844365254 ], [ 42.757744619999926, -17.07499484436525 ] ] ], [ [ [ 49.833544619999884, -17.089694844365255 ], [ 49.860544619999928, -16.913894844365245 ], [ 50.010544619999905, -16.725594844365247 ], [ 49.9396446199999, -16.907494844365246 ], [ 49.833544619999884, -17.089694844365255 ] ] ], [ [ [ 47.219644619999883, -15.436694844365249 ], [ 47.207744619999914, -15.434494844365247 ], [ 47.200544619999903, -15.427494844365256 ], [ 47.219444619999933, -15.420794844365247 ], [ 47.219644619999883, -15.436694844365249 ] ] ], [ [ [ 48.342444619999924, -13.418094844365257 ], [ 48.205544619999898, -13.391394844365252 ], [ 48.281344619999913, -13.196694844365254 ], [ 48.322144619999904, -13.19999484436525 ], [ 48.342444619999924, -13.418094844365257 ] ] ], [ [ [ 45.282444619999922, -12.804194844365256 ], [ 45.262544619999915, -12.768894844365249 ], [ 45.283044619999885, -12.747494844365249 ], [ 45.293344619999914, -12.781694844365248 ], [ 45.282444619999922, -12.804194844365256 ] ] ], [ [ [ 45.204944619999935, -12.849694844365246 ], [ 45.097544619999894, -12.985794844365245 ], [ 45.078844619999927, -12.662494844365256 ], [ 45.222744619999901, -12.73939484436525 ], [ 45.204944619999935, -12.849694844365246 ] ] ], [ [ [ 49.604444619999924, -12.626394844365251 ], [ 49.594444619999933, -12.623594844365257 ], [ 49.595844619999923, -12.609994844365247 ], [ 49.605844619999914, -12.614194844365258 ], [ 49.604444619999924, -12.626394844365251 ] ] ], [ [ [ 43.860544619999928, -12.356094844365245 ], [ 43.668644619999895, -12.357494844365249 ], [ 43.622744619999935, -12.258294844365253 ], [ 43.725044619999892, -12.267794844365255 ], [ 43.860544619999928, -12.356094844365245 ] ] ], [ [ [ 44.487544619999881, -12.093094844365254 ], [ 44.513644619999923, -12.380294844365253 ], [ 44.206644619999906, -12.161994844365253 ], [ 44.363644619999889, -12.180794844365252 ], [ 44.487544619999881, -12.093094844365254 ] ] ], [ [ [ 49.356944619999922, -12.090794844365249 ], [ 49.2324446199999, -12.224994844365256 ], [ 49.51834461999988, -12.345794844365258 ], [ 49.570544619999907, -12.648794844365256 ], [ 49.943344619999891, -13.039494844365251 ], [ 50.199944619999883, -14.57029484436525 ], [ 50.496744619999902, -15.249494844365245 ], [ 50.433544619999907, -15.579994844365245 ], [ 50.172744619999889, -15.979694844365255 ], [ 49.866044619999911, -15.432494844365252 ], [ 49.633544619999896, -15.557494844365252 ], [ 49.682444619999899, -16.059494844365247 ], [ 49.853544619999923, -16.226994844365251 ], [ 49.788544619999925, -16.830294844365255 ], [ 49.596944619999931, -16.908594844365254 ], [ 49.422744619999889, -17.315794844365257 ], [ 49.510244619999924, -17.711394844365245 ], [ 49.368344619999903, -18.351394844365245 ], [ 47.133044619999907, -24.928094844365248 ], [ 45.214644619999888, -25.588294844365251 ], [ 44.017144619999897, -24.985294844365256 ], [ 43.664144619999888, -24.311394844365253 ], [ 43.636344619999932, -23.657794844365256 ], [ 43.759444619999897, -23.463594844365247 ], [ 43.361944619999917, -22.852794844365249 ], [ 43.238844619999895, -22.282494844365246 ], [ 43.500544619999914, -21.333894844365247 ], [ 43.808544619999907, -21.225294844365251 ], [ 44.482144619999929, -19.970294844365256 ], [ 44.369944619999899, -19.772194844365245 ], [ 44.469144619999895, -19.438294844365245 ], [ 44.035844619999921, -18.412494844365256 ], [ 43.937144619999913, -17.479494844365249 ], [ 44.437744619999933, -16.692194844365247 ], [ 44.460244619999912, -16.183894844365255 ], [ 44.873544619999905, -16.210294844365251 ], [ 45.264944619999881, -15.927494844365256 ], [ 45.298544619999916, -16.11779484436525 ], [ 45.390544619999901, -15.973294844365256 ], [ 45.617744619999883, -16.057494844365252 ], [ 45.716644619999897, -15.791694844365253 ], [ 46.063544619999902, -15.871994844365247 ], [ 46.151344619999918, -15.703594844365256 ], [ 46.302144619999922, -15.961094844365249 ], [ 46.477144619999933, -15.966094844365259 ], [ 46.3383446199999, -15.624694844365251 ], [ 46.947144619999904, -15.198894844365256 ], [ 47.076344619999929, -15.334494844365253 ], [ 46.959444619999886, -15.558094844365257 ], [ 47.223544619999927, -15.448494844365257 ], [ 47.235644619999903, -15.412894844365255 ], [ 47.0583446199999, -15.184994844365249 ], [ 47.454944619999935, -14.665294844365249 ], [ 47.427144619999922, -15.110594844365252 ], [ 47.811244619999911, -14.603894844365257 ], [ 48.001644619999922, -14.765594844365253 ], [ 47.699444619999895, -14.420594844365255 ], [ 47.927744619999885, -14.253894844365249 ], [ 47.904444619999936, -14.092794844365258 ], [ 47.980844619999914, -14.324494844365248 ], [ 48.048344619999909, -14.155594844365254 ], [ 47.905244619999905, -13.59639484436525 ], [ 48.063344619999896, -13.518094844365251 ], [ 48.287144619999935, -13.808094844365257 ], [ 48.341044619999934, -13.547494844365247 ], [ 48.739644619999922, -13.427194844365246 ], [ 48.959444619999886, -12.822194844365256 ], [ 48.730844619999914, -12.434194844365251 ], [ 48.948044619999905, -12.482794844365259 ], [ 49.258344619999889, -11.945594844365246 ], [ 49.356944619999922, -12.090794844365249 ] ] ], [ [ [ 47.301344619999895, -11.57669484436525 ], [ 47.279944619999924, -11.57329484436525 ], [ 47.290844619999916, -11.546994844365258 ], [ 47.299944619999906, -11.557794844365247 ], [ 47.301344619999895, -11.57669484436525 ] ] ], [ [ [ 43.459744619999924, -11.935594844365255 ], [ 43.219144619999895, -11.761094844365246 ], [ 43.281344619999913, -11.379694844365247 ], [ 43.395244619999914, -11.406094844365256 ], [ 43.459744619999924, -11.935594844365255 ] ] ], [ [ [ 56.5652446199999, -10.393894844365249 ], [ 56.511644619999913, -10.346694844365246 ], [ 56.513544619999891, -10.316694844365259 ], [ 56.51834461999988, -10.317494844365257 ], [ 56.5652446199999, -10.393894844365249 ] ] ], [ [ [ 46.491344619999893, -9.754494844365254 ], [ 46.476044619999925, -9.744194844365254 ], [ 46.508344619999889, -9.717794844365258 ], [ 46.508344619999889, -9.737494844365258 ], [ 46.491344619999893, -9.754494844365254 ] ] ], [ [ [ 46.510544619999905, -9.396994844365253 ], [ 46.269144619999906, -9.463094844365258 ], [ 46.219944619999922, -9.445594844365246 ], [ 46.204144619999909, -9.389494844365245 ], [ 46.510544619999905, -9.396994844365253 ] ] ], [ [ [ 46.413844619999907, -9.358894844365253 ], [ 46.341044619999934, -9.356994844365246 ], [ 46.2766446199999, -9.346094844365254 ], [ 46.363044619999926, -9.333294844365255 ], [ 46.413844619999907, -9.358894844365253 ] ] ], [ [ [ 72.487244619999899, -7.381894844365249 ], [ 72.432544619999931, -7.434694844365254 ], [ 72.359144619999881, -7.265294844365258 ], [ 72.434944619999897, -7.428894844365246 ], [ 72.448844619999932, -7.234394844365255 ], [ 72.487244619999899, -7.381894844365249 ] ] ], [ [ [ 56.282144619999883, -7.134194844365254 ], [ 56.247144619999915, -7.194494844365252 ], [ 56.278544619999934, -7.110794844365245 ], [ 56.282144619999883, -7.134194844365254 ] ] ], [ [ [ 71.361944619999917, -6.656694844365248 ], [ 71.348344619999921, -6.65889484436525 ], [ 71.3440446199999, -6.657794844365256 ], [ 71.365244619999885, -6.651694844365252 ], [ 71.361944619999917, -6.656694844365248 ] ] ], [ [ [ 71.266344619999927, -6.391994844365257 ], [ 71.258644619999927, -6.382194844365259 ], [ 71.2661446199999, -6.366694844365256 ], [ 71.270244619999914, -6.37079484436525 ], [ 71.266344619999927, -6.391994844365257 ] ] ], [ [ [ 71.347744619999901, -6.206894844365252 ], [ 71.33854461999988, -6.195794844365253 ], [ 71.360844619999909, -6.174194844365246 ], [ 71.362444619999906, -6.180594844365245 ], [ 71.347744619999901, -6.206894844365252 ] ] ], [ [ [ 71.782444619999922, -5.440294844365255 ], [ 71.763044619999903, -5.436394844365253 ], [ 71.759944619999885, -5.431394844365258 ], [ 71.766344619999927, -5.429694844365258 ], [ 71.782444619999922, -5.440294844365255 ] ] ], [ [ [ 72.216144619999909, -5.358094844365255 ], [ 72.2113446199999, -5.359694844365251 ], [ 72.208644619999916, -5.348094844365249 ], [ 72.211944619999883, -5.348294844365256 ], [ 72.216144619999909, -5.358094844365255 ] ] ], [ [ [ 72.2324446199999, -5.319694844365259 ], [ 72.221144619999905, -5.335594844365247 ], [ 72.228044619999935, -5.315794844365257 ], [ 72.2324446199999, -5.319694844365259 ] ] ], [ [ [ 71.742244619999894, -5.291094844365247 ], [ 71.740544619999923, -5.271094844365251 ], [ 71.748644619999936, -5.265594844365253 ], [ 71.751144619999934, -5.267794844365255 ], [ 71.742244619999894, -5.291094844365247 ] ] ], [ [ [ 71.869444619999911, -5.25779484436525 ], [ 71.866644619999931, -5.250594844365253 ], [ 71.8805446199999, -5.253294844365257 ], [ 71.881044619999898, -5.25649484436525 ], [ 71.869444619999911, -5.25779484436525 ] ] ], [ [ [ 55.535244619999901, -4.763094844365256 ], [ 55.376044619999902, -4.627194844365249 ], [ 55.459144619999904, -4.551394844365248 ], [ 55.539144619999888, -4.666094844365247 ], [ 55.535244619999901, -4.763094844365256 ] ] ], [ [ [ 55.246044619999907, -4.506994844365252 ], [ 55.217144619999885, -4.47139484436525 ], [ 55.231644619999884, -4.448094844365258 ], [ 55.265844619999882, -4.47609484436525 ], [ 55.246044619999907, -4.506994844365252 ] ] ], [ [ [ 55.7758446199999, -4.348294844365256 ], [ 55.731944619999922, -4.340294844365246 ], [ 55.687144619999913, -4.287494844365256 ], [ 55.771644619999904, -4.315594844365251 ], [ 55.7758446199999, -4.348294844365256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 30, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Siberia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.334944619999931, 66.654405155634734 ], [ 69.258844619999934, 66.65690515563476 ], [ 69.243244619999928, 66.693305155634746 ], [ 69.333344619999934, 66.718905155634744 ], [ 69.334944619999931, 66.654405155634734 ] ] ], [ [ [ 70.033844619999911, 66.723905155634739 ], [ 69.836944619999883, 66.751105155634761 ], [ 69.789144619999888, 66.780305155634736 ], [ 69.953544619999889, 66.761105155634752 ], [ 70.033844619999911, 66.723905155634739 ] ] ], [ [ [ 69.2521446199999, 66.790005155634745 ], [ 70.055244619999883, 66.703305155634737 ], [ 70.104444619999924, 66.531105155634762 ], [ 69.841044619999934, 66.478305155634743 ], [ 69.419444619999922, 66.769705155634753 ], [ 69.126644619999922, 66.788605155634755 ], [ 69.2521446199999, 66.790005155634745 ] ] ], [ [ [ 67.383044619999907, 68.777505155634756 ], [ 67.292144619999931, 68.781105155634762 ], [ 67.1488446199999, 68.821905155634752 ], [ 67.33854461999988, 68.819105155634745 ], [ 67.383044619999907, 68.777505155634756 ] ] ], [ [ [ 66.171844619999888, 69.08780515563474 ], [ 66.401344619999918, 69.016705155634739 ], [ 66.537744619999899, 68.943605155634756 ], [ 65.951944619999892, 69.093905155634744 ], [ 66.171844619999888, 69.08780515563474 ] ] ], [ [ [ 67.131044619999898, 69.361405155634756 ], [ 66.991044619999911, 69.396105155634743 ], [ 66.938044619999914, 69.443605155634756 ], [ 67.210544619999894, 69.425805155634762 ], [ 67.131044619999898, 69.361405155634756 ] ] ], [ [ [ 161.443344619999891, 68.890005155634739 ], [ 161.458044619999896, 68.995505155634746 ], [ 161.134444619999897, 69.089705155634746 ], [ 161.096344619999911, 69.47050515563474 ], [ 161.3777446199999, 69.532205155634742 ], [ 161.289344619999895, 69.415905155634746 ], [ 161.515244619999919, 68.987205155634754 ], [ 161.443344619999891, 68.890005155634739 ] ] ], [ [ [ 67.252444619999892, 69.444705155634736 ], [ 67.038544619999925, 69.468005155634742 ], [ 67.021044619999884, 69.486105155634746 ], [ 67.338244619999898, 69.588905155634748 ], [ 67.252444619999892, 69.444705155634736 ] ] ], [ [ [ 161.437744619999933, 69.40800515563474 ], [ 161.394944619999933, 69.590805155634754 ], [ 161.622144619999915, 69.588605155634738 ], [ 161.616644619999931, 69.446405155634736 ], [ 161.437744619999933, 69.40800515563474 ] ] ], [ [ [ 83.096944619999931, 70.125005155634753 ], [ 82.972444619999919, 70.131105155634756 ], [ 82.768544619999886, 70.208905155634753 ], [ 83.082744619999914, 70.218605155634762 ], [ 83.096944619999931, 70.125005155634753 ] ] ], [ [ [ 59.461044619999882, 70.276705155634758 ], [ 60.424944619999906, 69.94970515563476 ], [ 60.546044619999918, 69.799105155634734 ], [ 59.601644619999888, 69.712505155634759 ], [ 59.423044619999928, 69.885805155634742 ], [ 58.94244461999989, 69.937505155634753 ], [ 59.128344619999893, 69.866405155634752 ], [ 59.017744619999917, 69.853905155634735 ], [ 58.4085446199999, 70.250305155634734 ], [ 58.821344619999934, 70.213605155634738 ], [ 58.631644619999918, 70.32580515563474 ], [ 59.033044619999885, 70.478905155634735 ], [ 59.461044619999882, 70.276705155634758 ] ] ], [ [ [ 83.550244619999887, 70.463605155634738 ], [ 83.612744619999887, 70.437805155634734 ], [ 83.379644619999908, 70.365005155634762 ], [ 83.624344619999931, 70.524105155634757 ], [ 83.550244619999887, 70.463605155634738 ] ] ], [ [ [ 57.204644619999897, 70.508905155634736 ], [ 56.965844619999928, 70.517505155634737 ], [ 56.841644619999897, 70.599105155634746 ], [ 57.224944619999917, 70.526905155634736 ], [ 57.204644619999897, 70.508905155634736 ] ] ], [ [ [ 162.381944619999899, 70.679105155634758 ], [ 162.484944619999908, 70.651105155634738 ], [ 162.236644619999936, 70.659105155634748 ], [ 162.346944619999931, 70.659405155634758 ], [ 162.381944619999899, 70.679105155634758 ] ] ], [ [ [ 161.693844619999936, 70.750305155634734 ], [ 161.648544619999882, 70.748305155634753 ], [ 161.463244619999898, 70.803605155634742 ], [ 161.657744619999903, 70.808605155634737 ], [ 161.693844619999936, 70.750305155634734 ] ] ], [ [ [ 83.372144619999915, 70.686105155634735 ], [ 83.309644619999915, 70.462505155634759 ], [ 83.069644619999906, 70.397805155634742 ], [ 83.2141446199999, 70.807205155634747 ], [ 83.3771446199999, 70.814105155634749 ], [ 83.372144619999915, 70.686105155634735 ] ] ], [ [ [ 160.619144619999929, 70.814705155634741 ], [ 160.454644619999897, 70.829205155634739 ], [ 160.408044619999885, 70.919105155634739 ], [ 160.719744619999915, 70.818505155634753 ], [ 160.619144619999929, 70.814705155634741 ] ] ], [ [ [ 53.595244619999903, 71.110305155634748 ], [ 53.4710446199999, 71.116605155634758 ], [ 53.432444619999899, 71.13690515563475 ], [ 53.542444619999912, 71.183905155634747 ], [ 53.595244619999903, 71.110305155634748 ] ] ], [ [ [ 53.360544619999928, 71.292205155634761 ], [ 53.204144619999909, 71.311105155634735 ], [ 53.1291446199999, 71.358605155634748 ], [ 53.255244619999928, 71.339205155634758 ], [ 53.360544619999928, 71.292205155634761 ] ] ], [ [ [ 52.858544619999918, 71.378305155634749 ], [ 53.01264461999989, 71.276305155634745 ], [ 52.742744619999883, 71.370805155634756 ], [ 53.064444619999904, 71.235505155634755 ], [ 53.207444619999933, 71.251105155634761 ], [ 53.048344619999909, 71.06670515563475 ], [ 53.14194461999989, 70.978305155634743 ], [ 52.208844619999923, 71.305505155634748 ], [ 52.430844619999903, 71.373605155634735 ], [ 52.858544619999918, 71.378305155634749 ] ] ], [ [ [ 137.961044619999882, 71.503005155634739 ], [ 137.676944619999915, 71.411605155634746 ], [ 136.991344619999893, 71.515505155634756 ], [ 137.750244619999933, 71.59440515563476 ], [ 137.961044619999882, 71.503005155634739 ] ] ], [ [ [ 138.41304461999988, 71.837205155634749 ], [ 138.341944619999936, 71.834105155634759 ], [ 138.2738446199999, 71.860005155634738 ], [ 138.516044619999889, 71.856105155634751 ], [ 138.41304461999988, 71.837205155634749 ] ] ], [ [ [ 77.762444619999883, 72.29530515563475 ], [ 77.096344619999911, 72.27530515563474 ], [ 76.854644619999931, 72.330005155634737 ], [ 77.62024461999988, 72.630505155634737 ], [ 78.393044619999898, 72.489105155634761 ], [ 77.762444619999883, 72.29530515563475 ] ] ], [ [ [ 128.143044619999898, 72.578905155634757 ], [ 128.708044619999896, 72.464205155634758 ], [ 129.261944619999895, 72.463305155634757 ], [ 129.500844619999896, 72.32440515563475 ], [ 129.354644619999931, 72.252505155634751 ], [ 129.561144619999936, 72.225305155634757 ], [ 128.763644619999923, 72.074205155634743 ], [ 127.549744619999899, 72.433305155634756 ], [ 126.6502446199999, 72.436105155634735 ], [ 127.278344619999928, 72.608305155634739 ], [ 128.143044619999898, 72.578905155634757 ] ] ], [ [ [ 128.838844619999918, 72.576705155634741 ], [ 128.631644619999918, 72.525005155634759 ], [ 128.10054461999988, 72.632005155634758 ], [ 128.972244619999913, 72.590805155634754 ], [ 128.838844619999918, 72.576705155634741 ] ] ], [ [ [ 72.993044619999921, 72.602505155634745 ], [ 72.865244619999885, 72.643605155634745 ], [ 72.840544619999889, 72.675005155634736 ], [ 72.984944619999908, 72.676105155634744 ], [ 72.993044619999921, 72.602505155634745 ] ] ], [ [ [ 129.355844619999914, 72.702805155634749 ], [ 129.186944619999906, 72.653605155634736 ], [ 127.314144619999922, 72.653305155634754 ], [ 128.301944619999915, 72.787805155634757 ], [ 129.355844619999914, 72.702805155634749 ] ] ], [ [ [ 129.230244619999894, 72.831905155634743 ], [ 129.298044619999928, 72.800305155634746 ], [ 128.290544619999935, 72.866105155634742 ], [ 128.758344619999889, 72.891705155634739 ], [ 129.230244619999894, 72.831905155634743 ] ] ], [ [ [ 122.95584461999988, 72.863305155634762 ], [ 123.605844619999914, 72.777805155634738 ], [ 122.7527446199999, 72.821105155634754 ], [ 122.302444619999903, 72.937505155634753 ], [ 122.95584461999988, 72.863305155634762 ] ] ], [ [ [ 79.570844619999889, 72.730305155634753 ], [ 78.930244619999883, 72.740005155634762 ], [ 78.578544619999889, 72.84550515563474 ], [ 79.194644619999906, 73.09580515563475 ], [ 79.541044619999923, 72.905305155634736 ], [ 79.570844619999889, 72.730305155634753 ] ] ], [ [ [ 74.862744619999887, 73.089705155634746 ], [ 74.962444619999928, 73.05300515563475 ], [ 74.686044619999905, 73.061605155634751 ], [ 74.654444619999936, 72.855805155634741 ], [ 74.089644619999888, 73.020505155634751 ], [ 74.862744619999887, 73.089705155634746 ] ] ], [ [ [ 120.213844619999918, 73.042505155634743 ], [ 119.808844619999888, 73.034105155634748 ], [ 119.629744619999883, 73.114705155634752 ], [ 120.086944619999883, 73.152505155634756 ], [ 120.213844619999918, 73.042505155634743 ] ] ], [ [ [ 76.452744619999919, 73.190505155634739 ], [ 76.737444619999906, 73.153605155634736 ], [ 76.122744619999935, 73.207205155634753 ], [ 76.1930446199999, 73.214705155634746 ], [ 76.452744619999919, 73.190505155634739 ] ] ], [ [ [ 71.341044619999934, 73.325005155634742 ], [ 71.220844619999923, 73.28190515563476 ], [ 71.139944619999881, 73.289705155634735 ], [ 71.262744619999921, 73.414105155634743 ], [ 71.341044619999934, 73.325005155634742 ] ] ], [ [ [ 55.331644619999906, 73.330005155634737 ], [ 56.58854461999988, 73.137505155634742 ], [ 55.615244619999885, 72.96140515563475 ], [ 56.262144619999901, 72.960805155634759 ], [ 56.150544619999891, 72.785505155634738 ], [ 55.429444619999913, 72.784105155634748 ], [ 55.945544619999907, 72.666605155634741 ], [ 55.118044619999921, 72.44800515563476 ], [ 55.461944619999883, 72.431405155634749 ], [ 55.575844619999884, 72.195805155634744 ], [ 55.220944619999898, 71.925605155634756 ], [ 55.510744619999912, 71.889205155634741 ], [ 56.228044619999935, 71.194105155634745 ], [ 57.639944619999881, 70.726405155634737 ], [ 57.396044619999884, 70.601105155634755 ], [ 56.736944619999917, 70.698905155634762 ], [ 57.314144619999922, 70.560505155634743 ], [ 56.604944619999912, 70.63890515563476 ], [ 56.545844619999912, 70.748905155634745 ], [ 56.218044619999887, 70.663305155634745 ], [ 56.660544619999882, 70.582505155634735 ], [ 56.492744619999883, 70.539705155634735 ], [ 55.413344619999918, 70.74960515563474 ], [ 55.186244619999911, 70.552105155634749 ], [ 54.573444619999918, 70.781505155634747 ], [ 54.479144619999886, 70.733905155634758 ], [ 54.764444619999892, 70.646405155634753 ], [ 53.46354461999988, 70.813905155634743 ], [ 53.378344619999893, 70.868005155634748 ], [ 53.743344619999903, 70.943005155634737 ], [ 53.508344619999889, 71.086105155634741 ], [ 53.938844619999884, 71.140005155634739 ], [ 54.0652446199999, 71.115305155634744 ], [ 53.915544619999935, 71.099405155634756 ], [ 54.244944619999899, 71.126605155634749 ], [ 53.453244619999907, 71.261105155634752 ], [ 53.929444619999913, 71.466905155634734 ], [ 53.480544619999932, 71.291605155634741 ], [ 53.253844619999882, 71.44910515563474 ], [ 53.355844619999914, 71.567205155634738 ], [ 52.919444619999922, 71.405505155634742 ], [ 52.552444619999903, 71.59440515563476 ], [ 51.797144619999926, 71.475005155634747 ], [ 51.416044619999923, 71.737805155634746 ], [ 51.574444619999895, 72.070805155634744 ], [ 52.397144619999892, 72.07610515563475 ], [ 52.402744619999908, 72.22220515563474 ], [ 52.746044619999907, 72.336905155634739 ], [ 52.674644619999924, 72.441905155634757 ], [ 53.097444619999919, 72.594705155634742 ], [ 52.748844619999886, 72.633005155634734 ], [ 53.219444619999933, 72.647205155634751 ], [ 52.376344619999884, 72.724705155634737 ], [ 52.967144619999885, 72.918605155634751 ], [ 53.381944619999899, 72.881105155634756 ], [ 53.138544619999891, 72.960005155634761 ], [ 53.381644619999918, 73.008305155634744 ], [ 53.153244619999896, 73.155805155634752 ], [ 54.914444619999927, 73.422205155634757 ], [ 55.331644619999906, 73.330005155634737 ] ] ], [ [ [ 71.0469446199999, 73.500005155634753 ], [ 71.264944619999881, 73.436405155634745 ], [ 70.999144619999925, 73.288905155634737 ], [ 71.210544619999894, 73.268005155634754 ], [ 71.454944619999935, 73.346605155634748 ], [ 71.676644619999934, 73.176905155634742 ], [ 69.866344619999893, 73.032805155634762 ], [ 70.063044619999914, 73.23250515563474 ], [ 69.974444619999929, 73.407205155634742 ], [ 71.0469446199999, 73.500005155634753 ] ] ], [ [ [ 127.2963446199999, 73.517205155634755 ], [ 127.976644619999888, 73.470305155634762 ], [ 128.365244619999885, 73.352205155634735 ], [ 128.256644619999918, 73.262505155634742 ], [ 128.972244619999913, 73.17800515563475 ], [ 128.7872446199999, 73.063605155634761 ], [ 129.118244619999928, 73.094705155634742 ], [ 126.589444619999881, 72.535805155634748 ], [ 126.564444619999904, 72.406405155634744 ], [ 126.306644619999929, 72.495205155634736 ], [ 126.450044619999915, 72.785505155634738 ], [ 126.333844619999923, 72.897205155634751 ], [ 126.652244619999919, 72.989705155634752 ], [ 126.771944619999886, 73.07640515563476 ], [ 126.60054461999988, 73.257505155634746 ], [ 126.659444619999931, 73.416905155634751 ], [ 127.2963446199999, 73.517205155634755 ] ] ], [ [ [ 128.055544619999921, 73.483005155634757 ], [ 127.675544619999926, 73.497805155634737 ], [ 127.388044619999903, 73.520305155634745 ], [ 127.707744619999914, 73.535505155634738 ], [ 128.055544619999921, 73.483005155634757 ] ] ], [ [ [ 76.390244619999919, 73.520805155634761 ], [ 76.702744619999919, 73.46940515563476 ], [ 76.766044619999889, 73.433905155634747 ], [ 76.074144619999913, 73.521405155634753 ], [ 76.390244619999919, 73.520805155634761 ] ] ], [ [ [ 76.077744619999919, 73.558005155634746 ], [ 75.880244619999928, 73.457505155634735 ], [ 75.306244619999916, 73.418305155634741 ], [ 75.621044619999907, 73.550005155634736 ], [ 76.077744619999919, 73.558005155634746 ] ] ], [ [ [ 80.360544619999928, 73.500305155634734 ], [ 80.135244619999924, 73.525005155634759 ], [ 80.056644619999929, 73.555805155634758 ], [ 80.403544619999934, 73.546105155634748 ], [ 80.360544619999928, 73.500305155634734 ] ] ], [ [ [ 86.687744619999933, 73.592205155634744 ], [ 86.419444619999922, 73.588005155634747 ], [ 86.394944619999933, 73.588305155634757 ], [ 86.902144619999888, 73.697505155634744 ], [ 86.687744619999933, 73.592205155634744 ] ] ], [ [ [ 124.604444619999924, 73.728605155634753 ], [ 125.621644619999927, 73.528905155634746 ], [ 125.560244619999935, 73.403005155634744 ], [ 126.308844619999888, 73.545805155634739 ], [ 126.402244619999919, 73.507805155634756 ], [ 126.156644619999895, 73.374405155634761 ], [ 126.530244619999905, 73.356905155634749 ], [ 126.715044619999901, 73.084405155634741 ], [ 126.278044619999889, 72.880005155634748 ], [ 126.385844619999887, 72.792705155634749 ], [ 126.244444619999911, 72.518905155634755 ], [ 126.348344619999921, 72.380005155634748 ], [ 126.125544619999914, 72.300505155634752 ], [ 124.765044619999912, 72.670805155634739 ], [ 122.428044619999923, 72.981905155634749 ], [ 123.190844619999893, 72.918605155634751 ], [ 123.3805446199999, 73.166405155634735 ], [ 123.658844619999911, 73.168005155634759 ], [ 123.219144619999895, 73.404705155634744 ], [ 123.376944619999904, 73.662505155634747 ], [ 124.604444619999924, 73.728605155634753 ] ] ], [ [ [ 142.154944619999924, 73.890005155634739 ], [ 143.431944619999911, 73.522505155634761 ], [ 143.505844619999891, 73.230305155634753 ], [ 139.653644619999909, 73.402205155634746 ], [ 140.416044619999923, 73.483005155634757 ], [ 141.0857446199999, 73.870805155634756 ], [ 142.154944619999924, 73.890005155634739 ] ] ], [ [ [ 124.545244619999892, 73.853305155634743 ], [ 124.391644619999909, 73.841405155634746 ], [ 124.287744619999899, 73.884405155634752 ], [ 124.659944619999919, 73.898005155634749 ], [ 124.545244619999892, 73.853305155634743 ] ] ], [ [ [ 86.487144619999924, 73.908905155634741 ], [ 86.244144619999929, 73.946605155634742 ], [ 86.223244619999889, 73.966405155634746 ], [ 86.301344619999895, 73.977205155634735 ], [ 86.487144619999924, 73.908905155634741 ] ] ], [ [ [ 84.419144619999884, 74.03190515563476 ], [ 84.389444619999892, 73.955505155634754 ], [ 83.879444619999902, 74.006605155634745 ], [ 83.97414461999989, 74.028905155634746 ], [ 84.419144619999884, 74.03190515563476 ] ] ], [ [ [ 83.6157446199999, 74.093005155634742 ], [ 83.449644619999901, 74.037805155634757 ], [ 82.815744619999919, 74.091105155634736 ], [ 83.202744619999919, 74.149705155634749 ], [ 83.6157446199999, 74.093005155634742 ] ] ], [ [ [ 82.609644619999926, 74.048605155634746 ], [ 82.3588446199999, 74.073905155634762 ], [ 82.3146446199999, 74.114405155634742 ], [ 82.736344619999898, 74.098905155634739 ], [ 82.609644619999926, 74.048605155634746 ] ] ], [ [ [ 85.534344619999899, 74.127505155634751 ], [ 85.408844619999911, 74.189705155634741 ], [ 85.732744619999892, 74.168605155634751 ], [ 85.700544619999903, 74.141905155634745 ], [ 85.534344619999899, 74.127505155634751 ] ] ], [ [ [ 135.649944619999928, 74.203605155634747 ], [ 136.063644619999934, 74.076705155634741 ], [ 136.272444619999931, 73.935805155634753 ], [ 136.070844619999889, 73.896905155634741 ], [ 135.353544619999923, 74.252805155634761 ], [ 135.649944619999928, 74.203605155634747 ] ] ], [ [ [ 141.020544619999896, 73.992705155634738 ], [ 140.448644619999925, 73.901605155634755 ], [ 140.072744619999924, 74.097805155634759 ], [ 140.273044619999894, 74.255505155634737 ], [ 140.874344619999931, 74.271105155634743 ], [ 141.1171446199999, 74.168005155634759 ], [ 141.020544619999896, 73.992705155634738 ] ] ], [ [ [ 116.068844619999936, 74.286905155634756 ], [ 115.883844619999934, 74.300805155634762 ], [ 115.885844619999887, 74.320305155634756 ], [ 116.06744461999989, 74.369105155634756 ], [ 116.068844619999936, 74.286905155634756 ] ] ], [ [ [ 59.033844619999911, 74.342805155634736 ], [ 58.979944619999912, 74.336905155634739 ], [ 58.934944619999897, 74.358305155634739 ], [ 59.081044619999886, 74.409105155634748 ], [ 59.033844619999911, 74.342805155634736 ] ] ], [ [ [ 84.945244619999926, 74.477805155634755 ], [ 84.541344619999904, 74.456905155634743 ], [ 84.744444619999911, 74.395305155634745 ], [ 84.373044619999916, 74.448605155634752 ], [ 84.945244619999926, 74.477805155634755 ] ] ], [ [ [ 112.7133446199999, 74.498905155634745 ], [ 113.4333446199999, 74.393905155634755 ], [ 112.787744619999899, 74.091905155634734 ], [ 111.455544619999898, 74.31670515563475 ], [ 111.8777446199999, 74.345305155634762 ], [ 112.078844619999927, 74.548605155634746 ], [ 112.7133446199999, 74.498905155634745 ] ] ], [ [ [ 86.212444619999928, 74.518305155634735 ], [ 85.856344619999902, 74.439705155634741 ], [ 85.659344619999899, 74.47050515563474 ], [ 85.823544619999893, 74.570305155634756 ], [ 86.212444619999928, 74.518305155634735 ] ] ], [ [ [ 85.439344619999929, 74.453605155634747 ], [ 85.219444619999933, 74.474705155634737 ], [ 85.144944619999933, 74.540305155634755 ], [ 85.653244619999896, 74.529405155634734 ], [ 85.439344619999929, 74.453605155634747 ] ] ], [ [ [ 79.386044619999893, 74.61720515563475 ], [ 79.612144619999924, 74.595005155634752 ], [ 79.498544619999905, 74.518005155634754 ], [ 79.149144619999902, 74.603005155634762 ], [ 79.386044619999893, 74.61720515563475 ] ] ], [ [ [ 85.655544619999887, 74.791605155634741 ], [ 85.700244619999921, 74.721605155634748 ], [ 85.095544619999885, 74.747805155634737 ], [ 85.470844619999923, 74.812205155634743 ], [ 85.655544619999887, 74.791605155634741 ] ] ], [ [ [ 87.049644619999924, 74.979105155634741 ], [ 86.683544619999907, 74.893605155634745 ], [ 86.835244619999912, 74.82640515563476 ], [ 86.211044619999882, 74.898605155634741 ], [ 87.049644619999924, 74.979105155634741 ] ] ], [ [ [ 82.151944619999881, 75.11550515563475 ], [ 82.1291446199999, 75.095005155634752 ], [ 82.027144619999888, 75.128305155634749 ], [ 82.1074446199999, 75.15830515563475 ], [ 82.151944619999881, 75.11550515563475 ] ] ], [ [ [ 82.105744619999882, 75.412205155634737 ], [ 82.291944619999924, 75.330505155634754 ], [ 82.039144619999888, 75.340305155634738 ], [ 82.011944619999895, 75.172205155634757 ], [ 81.493044619999921, 75.358305155634739 ], [ 82.166944619999924, 75.516105155634747 ], [ 82.105744619999882, 75.412205155634737 ] ] ], [ [ [ 147.01834461999988, 75.334705155634751 ], [ 148.387744619999921, 75.416105155634753 ], [ 148.574944619999883, 75.375805155634751 ], [ 148.443544619999898, 75.28330515563475 ], [ 148.578044619999901, 75.213305155634757 ], [ 150.953044619999901, 75.139405155634748 ], [ 150.603544619999923, 74.884405155634752 ], [ 148.70444461999989, 74.760005155634744 ], [ 146.070244619999926, 75.226605155634743 ], [ 146.414944619999915, 75.586105155634741 ], [ 147.01834461999988, 75.334705155634751 ] ] ], [ [ [ 140.745944619999932, 75.651905155634736 ], [ 140.596644619999893, 75.652205155634746 ], [ 140.519444619999888, 75.705805155634735 ], [ 140.769944619999933, 75.677205155634752 ], [ 140.745944619999932, 75.651905155634736 ] ] ], [ [ [ 135.653844619999916, 75.365005155634762 ], [ 135.444144619999918, 75.440805155634749 ], [ 135.708044619999896, 75.850005155634747 ], [ 136.177744619999885, 75.619105155634756 ], [ 135.96214461999989, 75.508005155634734 ], [ 136.030244619999905, 75.431405155634749 ], [ 135.653844619999916, 75.365005155634762 ] ] ], [ [ [ 59.19244461999989, 75.888005155634758 ], [ 59.123044619999916, 75.882505155634746 ], [ 58.993544619999909, 75.891105155634747 ], [ 59.278344619999928, 75.90830515563475 ], [ 59.19244461999989, 75.888005155634758 ] ] ], [ [ [ 82.251044619999902, 75.862505155634736 ], [ 81.850744619999887, 75.880505155634737 ], [ 81.550744619999932, 75.923605155634746 ], [ 81.600244619999899, 75.935305155634737 ], [ 82.251044619999902, 75.862505155634736 ] ] ], [ [ [ 58.754644619999908, 75.896905155634741 ], [ 58.694644619999906, 75.899405155634739 ], [ 59.26694461999989, 75.96940515563476 ], [ 59.186644619999925, 75.940505155634739 ], [ 58.754644619999908, 75.896905155634741 ] ] ], [ [ [ 82.973044619999882, 75.96910515563475 ], [ 83.302444619999903, 75.94140515563474 ], [ 82.257144619999906, 75.958605155634743 ], [ 82.562744619999933, 75.995205155634736 ], [ 82.973044619999882, 75.96910515563475 ] ] ], [ [ [ 96.76694461999989, 75.975305155634757 ], [ 96.695744619999914, 76.011405155634762 ], [ 97.337244619999922, 76.10210515563476 ], [ 97.065744619999919, 76.006905155634755 ], [ 96.76694461999989, 75.975305155634757 ] ] ], [ [ [ 140.910844619999921, 76.066905155634757 ], [ 140.847244619999913, 76.09550515563474 ], [ 141.07944461999989, 76.109405155634747 ], [ 141.078844619999927, 76.085805155634759 ], [ 140.910844619999921, 76.066905155634757 ] ] ], [ [ [ 60.472444619999919, 76.160005155634749 ], [ 60.156944619999933, 76.107205155634759 ], [ 59.866044619999911, 76.104105155634741 ], [ 60.041044619999923, 76.15690515563476 ], [ 60.472444619999919, 76.160005155634749 ] ] ], [ [ [ 152.741344619999893, 76.10780515563475 ], [ 152.616944619999913, 76.109405155634747 ], [ 152.455244619999917, 76.15690515563476 ], [ 152.756644619999918, 76.211905155634739 ], [ 152.741344619999893, 76.10780515563475 ] ] ], [ [ [ 139.190844619999893, 76.072205155634762 ], [ 140.496944619999908, 75.793305155634741 ], [ 140.479144619999886, 75.636105155634752 ], [ 141.060744619999923, 75.645305155634745 ], [ 140.864644619999922, 75.737205155634754 ], [ 140.971844619999899, 76.039105155634743 ], [ 141.619644619999917, 76.012505155634742 ], [ 141.356644619999884, 76.180505155634748 ], [ 142.560244619999935, 75.85780515563475 ], [ 143.900544619999891, 75.837205155634749 ], [ 145.394744619999926, 75.517505155634737 ], [ 144.753844619999882, 75.435505155634743 ], [ 144.667744619999894, 75.329205155634739 ], [ 144.9416446199999, 75.268605155634745 ], [ 143.949744619999933, 75.026905155634736 ], [ 142.890244619999919, 75.140005155634739 ], [ 142.506044619999898, 75.453705155634751 ], [ 143.040544619999935, 75.669705155634759 ], [ 142.447444619999885, 75.711105155634741 ], [ 142.140244619999919, 75.590805155634754 ], [ 142.155244619999905, 75.375505155634741 ], [ 142.612444619999906, 75.099705155634737 ], [ 143.706944619999888, 74.938605155634761 ], [ 142.487444619999906, 74.811605155634751 ], [ 141.968244619999894, 74.932705155634736 ], [ 142.360544619999928, 74.92800515563475 ], [ 142.1705446199999, 75.00420515563475 ], [ 140.066344619999882, 74.821105155634754 ], [ 139.646944619999886, 74.979205155634745 ], [ 139.464644619999888, 74.931705155634759 ], [ 139.494144619999929, 74.758605155634754 ], [ 139.0960446199999, 74.647205155634751 ], [ 137.890544619999901, 74.845305155634762 ], [ 136.861344619999898, 75.349105155634746 ], [ 137.404944619999924, 75.352205155634735 ], [ 137.133044619999907, 75.411405155634739 ], [ 137.290244619999896, 75.59550515563474 ], [ 136.958544619999884, 75.604205155634745 ], [ 137.181644619999929, 75.780305155634736 ], [ 137.744644619999917, 75.748305155634753 ], [ 137.449944619999883, 75.954705155634755 ], [ 138.733344619999912, 76.216105155634736 ], [ 139.190844619999893, 76.072205155634762 ] ] ], [ [ [ 95.1993446199999, 76.157805155634762 ], [ 95.101344619999907, 76.153305155634754 ], [ 95.0027446199999, 76.172505155634738 ], [ 95.084444619999886, 76.22080515563475 ], [ 95.1993446199999, 76.157805155634762 ] ] ], [ [ [ 94.997444619999897, 76.269105155634762 ], [ 94.840244619999908, 76.17940515563474 ], [ 94.408044619999885, 76.205005155634737 ], [ 94.789444619999927, 76.209105155634759 ], [ 94.997444619999897, 76.269105155634762 ] ] ], [ [ [ 96.366344619999893, 76.301105155634744 ], [ 96.649444619999883, 76.248905155634745 ], [ 96.569144619999918, 76.15030515563474 ], [ 96.362144619999924, 76.26220515563476 ], [ 96.35054461999988, 76.097505155634749 ], [ 95.263544619999891, 76.213005155634747 ], [ 96.366344619999893, 76.301105155634744 ] ] ], [ [ [ 96.756944619999899, 76.322805155634754 ], [ 96.664644619999933, 76.292505155634743 ], [ 96.383044619999907, 76.331905155634743 ], [ 96.697144619999904, 76.340305155634738 ], [ 96.756944619999899, 76.322805155634754 ] ] ], [ [ [ 96.997444619999897, 76.277205155634746 ], [ 96.85824461999988, 76.272205155634751 ], [ 96.823344619999887, 76.227505155634745 ], [ 97.038244619999887, 76.233005155634757 ], [ 96.711044619999882, 76.213605155634738 ], [ 96.834444619999886, 76.346905155634758 ], [ 96.997444619999897, 76.277205155634746 ] ] ], [ [ [ 113.439944619999892, 76.360505155634755 ], [ 113.306944619999911, 76.359105155634737 ], [ 113.118744619999916, 76.370005155634757 ], [ 113.258844619999934, 76.436405155634745 ], [ 113.439944619999892, 76.360505155634755 ] ] ], [ [ [ 94.357144619999929, 76.57440515563475 ], [ 94.142744619999917, 76.57300515563476 ], [ 93.869944619999899, 76.585005155634761 ], [ 93.951744619999886, 76.60980515563476 ], [ 94.357144619999929, 76.57440515563475 ] ] ], [ [ [ 112.521944619999886, 76.622505155634755 ], [ 112.713844619999918, 76.51050515563476 ], [ 111.956644619999906, 76.598605155634758 ], [ 112.348044619999882, 76.65660515563475 ], [ 112.521944619999886, 76.622505155634755 ] ] ], [ [ [ 96.464044619999925, 76.706005155634742 ], [ 96.2421446199999, 76.609705155634757 ], [ 95.889144619999911, 76.621405155634747 ], [ 95.973244619999889, 76.672205155634757 ], [ 96.464044619999925, 76.706005155634742 ] ] ], [ [ [ 95.133044619999907, 76.702805155634749 ], [ 95.326944619999892, 76.661105155634758 ], [ 94.813044619999914, 76.64890515563475 ], [ 95.051344619999895, 76.675805155634762 ], [ 95.133044619999907, 76.702805155634749 ] ] ], [ [ [ 95.598844619999909, 76.67000515563474 ], [ 95.702144619999899, 76.694105155634745 ], [ 95.831944619999888, 76.685505155634743 ], [ 95.497144619999915, 76.647205155634751 ], [ 95.412744619999899, 76.69970515563476 ], [ 95.598844619999909, 76.67000515563474 ] ] ], [ [ [ 97.5463446199999, 76.582205155634753 ], [ 97.318544619999898, 76.599705155634737 ], [ 97.316344619999882, 76.606605155634739 ], [ 97.440544619999912, 76.715005155634756 ], [ 97.5463446199999, 76.582205155634753 ] ] ], [ [ [ 149.314444619999904, 76.753605155634759 ], [ 149.168844619999902, 76.650505155634747 ], [ 148.392244619999929, 76.643605155634745 ], [ 148.746644619999927, 76.745805155634756 ], [ 149.314444619999904, 76.753605155634759 ] ] ], [ [ [ 97.869944619999899, 76.770305155634745 ], [ 97.851644619999888, 76.766105155634747 ], [ 97.729444619999924, 76.818305155634746 ], [ 97.919444619999922, 76.838305155634757 ], [ 97.869944619999899, 76.770305155634745 ] ] ], [ [ [ 68.266044619999889, 76.958605155634743 ], [ 68.931344619999891, 76.782805155634762 ], [ 68.861044619999916, 76.541905155634751 ], [ 68.213044619999891, 76.327205155634758 ], [ 68.313244619999921, 76.28330515563475 ], [ 63.559644619999915, 75.708005155634751 ], [ 61.50494461999989, 75.221405155634741 ], [ 61.287744619999899, 75.32610515563475 ], [ 60.736644619999936, 75.025005155634759 ], [ 59.925544619999926, 74.999105155634751 ], [ 60.680244619999883, 74.933305155634756 ], [ 60.198544619999893, 74.856905155634749 ], [ 60.318544619999898, 74.76050515563476 ], [ 59.509944619999885, 74.79500515563474 ], [ 59.869944619999899, 74.682505155634757 ], [ 59.7732446199999, 74.591105155634736 ], [ 59.169444619999922, 74.719705155634742 ], [ 59.290244619999896, 74.638005155634758 ], [ 59.147144619999892, 74.438605155634761 ], [ 58.1833446199999, 74.573505155634749 ], [ 58.742744619999883, 74.266905155634745 ], [ 58.271344619999923, 74.215305155634738 ], [ 58.384644619999904, 74.131105155634756 ], [ 58.139444619999892, 74.140505155634756 ], [ 58.135844619999887, 73.985305155634748 ], [ 57.533844619999911, 74.181905155634738 ], [ 57.257444619999887, 74.07610515563475 ], [ 57.91164461999989, 73.915505155634762 ], [ 57.944144619999918, 73.80330515563476 ], [ 57.715244619999908, 73.713005155634747 ], [ 57.402744619999908, 73.838305155634757 ], [ 56.555844619999903, 73.882205155634736 ], [ 57.320844619999889, 73.82640515563476 ], [ 57.613544619999914, 73.662205155634737 ], [ 57.351044619999925, 73.549705155634754 ], [ 56.723044619999882, 73.673605155634746 ], [ 57.253344619999893, 73.487805155634746 ], [ 56.764444619999892, 73.364105155634761 ], [ 56.758844619999934, 73.246905155634735 ], [ 55.907744619999903, 73.440305155634761 ], [ 55.977444619999915, 73.317505155634748 ], [ 54.971644619999893, 73.442205155634738 ], [ 54.220544619999885, 73.32300515563476 ], [ 54.030244619999905, 73.379705155634738 ], [ 55.176044619999914, 73.706105155634745 ], [ 54.060744619999923, 73.605805155634741 ], [ 53.6305446199999, 73.755305155634758 ], [ 54.799944619999906, 73.967505155634754 ], [ 54.585244619999912, 74.011705155634743 ], [ 55.030744619999894, 74.174105155634734 ], [ 55.866344619999893, 74.102505155634745 ], [ 55.073344619999887, 74.264405155634748 ], [ 55.748344619999898, 74.288605155634755 ], [ 55.230244619999894, 74.368905155634749 ], [ 55.373244619999923, 74.436905155634761 ], [ 56.290544619999935, 74.491405155634752 ], [ 55.497744619999935, 74.565805155634749 ], [ 55.571644619999915, 74.65970515563474 ], [ 56.984544619999895, 74.68710515563474 ], [ 55.829644619999897, 74.796105155634748 ], [ 56.678544619999911, 74.952205155634758 ], [ 55.863544619999914, 74.99250515563476 ], [ 55.942144619999908, 75.068005155634737 ], [ 55.797744619999889, 75.146405155634753 ], [ 56.354644619999931, 75.189105155634749 ], [ 56.480544619999932, 75.061405155634745 ], [ 56.907744619999903, 75.233605155634748 ], [ 56.726344619999907, 75.294405155634749 ], [ 56.869444619999911, 75.359705155634757 ], [ 57.737144619999924, 75.32300515563476 ], [ 57.503344619999893, 75.49250515563476 ], [ 58.194644619999906, 75.588305155634757 ], [ 58.001344619999884, 75.674105155634734 ], [ 60.3180446199999, 75.99050515563475 ], [ 60.040844619999916, 76.046905155634747 ], [ 60.296044619999918, 76.109405155634747 ], [ 60.839444619999881, 76.116605155634758 ], [ 60.464444619999881, 76.008905155634736 ], [ 60.749944619999894, 76.006105155634756 ], [ 61.154644619999885, 76.122205155634745 ], [ 60.903044619999889, 76.146405155634753 ], [ 61.066344619999882, 76.27390515563475 ], [ 62.502444619999892, 76.176605155634761 ], [ 64.109644619999926, 76.311405155634745 ], [ 65.548544619999916, 76.582205155634753 ], [ 66.011644619999913, 76.535505155634738 ], [ 65.748044619999916, 76.67830515563476 ], [ 66.682444619999899, 76.901905155634736 ], [ 68.266044619999889, 76.958605155634743 ] ] ], [ [ [ 90.180244619999883, 77.11580515563476 ], [ 89.967144619999885, 77.113005155634752 ], [ 89.829644619999897, 77.140805155634737 ], [ 90.0232446199999, 77.139705155634758 ], [ 90.180244619999883, 77.11580515563476 ] ] ], [ [ [ 156.617744619999883, 77.103905155634735 ], [ 156.468844619999913, 77.116405155634752 ], [ 156.434144619999927, 77.135305155634754 ], [ 156.732144619999929, 77.125805155634751 ], [ 156.617744619999883, 77.103905155634735 ] ] ], [ [ [ 88.664644619999933, 77.096405155634741 ], [ 88.783044619999885, 77.005005155634748 ], [ 88.667444619999912, 77.036605155634746 ], [ 88.636644619999913, 77.105005155634743 ], [ 88.694644619999906, 77.134405155634752 ], [ 88.779644619999885, 77.148305155634759 ], [ 88.957144619999895, 77.125805155634751 ], [ 88.664644619999933, 77.096405155634741 ] ] ], [ [ [ 96.575544619999903, 77.130305155634758 ], [ 96.166044619999923, 76.989105155634761 ], [ 95.229144619999886, 76.993305155634758 ], [ 96.459644619999892, 77.206405155634755 ], [ 96.575544619999903, 77.130305155634758 ] ] ], [ [ [ 105.884644619999904, 77.261405155634762 ], [ 105.780544619999887, 77.274105155634757 ], [ 106.007744619999926, 77.282505155634752 ], [ 105.996344619999888, 77.277205155634746 ], [ 105.884644619999904, 77.261405155634762 ] ] ], [ [ [ 89.681644619999929, 77.284405155634758 ], [ 89.485244619999889, 77.18000515563476 ], [ 89.135744619999912, 77.205005155634737 ], [ 89.282744619999903, 77.300305155634746 ], [ 89.681644619999929, 77.284405155634758 ] ] ], [ [ [ 106.402444619999926, 77.303605155634742 ], [ 106.347144619999881, 77.306405155634749 ], [ 106.331644619999906, 77.318005155634737 ], [ 106.458344619999934, 77.315305155634761 ], [ 106.402444619999926, 77.303605155634742 ] ] ], [ [ [ 107.561844619999931, 77.255005155634748 ], [ 107.354444619999924, 77.228905155634735 ], [ 107.200244619999921, 77.233905155634758 ], [ 107.666644619999886, 77.330805155634735 ], [ 107.561844619999931, 77.255005155634748 ] ] ], [ [ [ 106.646644619999904, 77.376105155634761 ], [ 106.5041446199999, 77.390005155634739 ], [ 106.900744619999898, 77.459105155634759 ], [ 106.870544619999919, 77.416105155634753 ], [ 106.646644619999904, 77.376105155634761 ] ] ], [ [ [ 82.560244619999935, 77.461905155634739 ], [ 82.205544619999898, 77.483305155634739 ], [ 82.12024461999988, 77.506405155634738 ], [ 82.443844619999936, 77.510305155634754 ], [ 82.560244619999935, 77.461905155634739 ] ] ], [ [ [ 91.966344619999916, 77.600005155634747 ], [ 91.836644619999902, 77.611605155634734 ], [ 91.739644619999922, 77.647205155634751 ], [ 92.037744619999899, 77.630805155634746 ], [ 91.966344619999916, 77.600005155634747 ] ] ], [ [ [ 112.661344619999909, 76.049105155634734 ], [ 113.262444619999883, 76.134105155634742 ], [ 112.929444619999913, 76.253005155634739 ], [ 113.242744619999883, 76.26220515563476 ], [ 113.468544619999932, 76.13690515563475 ], [ 113.547444619999908, 75.866605155634758 ], [ 113.892444619999935, 75.843605155634762 ], [ 113.509444619999897, 75.532505155634752 ], [ 113.613044619999926, 75.649705155634749 ], [ 112.33714461999989, 75.846605155634748 ], [ 112.869144619999929, 75.705505155634754 ], [ 112.828044619999901, 75.547505155634738 ], [ 113.275544619999891, 75.646605155634759 ], [ 113.717444619999924, 75.40860515563476 ], [ 111.778044619999889, 74.661605155634746 ], [ 109.60824461999988, 74.317805155634758 ], [ 109.977444619999915, 74.289705155634735 ], [ 108.1896446199999, 73.67030515563475 ], [ 107.142444619999935, 73.614705155634752 ], [ 106.798044619999928, 73.338905155634748 ], [ 106.074944619999883, 73.276705155634758 ], [ 105.8391446199999, 73.000805155634751 ], [ 105.175544619999926, 72.786905155634756 ], [ 106.28804461999988, 72.960305155634742 ], [ 106.172444619999908, 73.098605155634758 ], [ 106.352744619999896, 73.190305155634761 ], [ 108.353044619999935, 73.219705155634742 ], [ 108.194444619999899, 73.273305155634759 ], [ 109.431344619999891, 73.417705155634749 ], [ 109.192144619999908, 73.545805155634739 ], [ 109.7521446199999, 73.453605155634747 ], [ 110.914344619999895, 73.696705155634746 ], [ 109.529144619999897, 73.770305155634745 ], [ 110.200344619999896, 74.024405155634739 ], [ 111.001344619999884, 73.904405155634734 ], [ 111.140244619999919, 74.029205155634756 ], [ 111.543244619999882, 74.04500515563474 ], [ 111.201344619999929, 73.967505155634754 ], [ 112.248344619999898, 73.706905155634743 ], [ 112.874644619999913, 73.759705155634762 ], [ 112.887744619999921, 73.965005155634756 ], [ 113.424444619999917, 73.640805155634737 ], [ 113.132444619999887, 73.445205155634753 ], [ 113.499444619999906, 73.334105155634759 ], [ 113.486344619999898, 72.958305155634761 ], [ 113.104444619999924, 72.853605155634753 ], [ 113.178544619999911, 72.723605155634758 ], [ 113.533844619999911, 72.635005155634744 ], [ 114.044744619999904, 72.59720515563474 ], [ 113.1516446199999, 72.82610515563475 ], [ 113.530844619999925, 72.960305155634742 ], [ 113.5469446199999, 73.24220515563475 ], [ 114.033844619999911, 73.341905155634734 ], [ 113.475244619999899, 73.50420515563475 ], [ 115.456944619999888, 73.703005155634756 ], [ 118.634444619999897, 73.571705155634746 ], [ 118.993844619999891, 73.489105155634761 ], [ 118.478844619999904, 73.483005155634757 ], [ 118.348044619999882, 73.413005155634735 ], [ 118.392244619999929, 73.235805155634736 ], [ 119.817744619999928, 72.935805155634753 ], [ 121.865844619999905, 72.968005155634742 ], [ 122.053344619999905, 72.891905155634745 ], [ 123.343844619999913, 72.727505155634745 ], [ 124.729744619999906, 72.626405155634743 ], [ 126.117744619999883, 72.266905155634745 ], [ 126.372444619999897, 72.353305155634743 ], [ 127.129444619999902, 71.851105155634755 ], [ 127.220544619999885, 71.392505155634737 ], [ 127.313344619999896, 71.484405155634747 ], [ 127.188044619999914, 71.747205155634745 ], [ 127.326044619999891, 71.898005155634749 ], [ 126.981044619999921, 72.046905155634747 ], [ 126.719144619999895, 72.38890515563476 ], [ 127.658644619999905, 72.347505155634749 ], [ 128.711644619999902, 71.770505155634751 ], [ 129.179944619999901, 71.800305155634746 ], [ 129.072444619999885, 72.001905155634759 ], [ 129.539944619999915, 71.72220515563474 ], [ 128.847444619999919, 71.601405155634737 ], [ 129.184344619999933, 71.590805155634754 ], [ 129.743844619999891, 71.121105155634737 ], [ 130.577144619999899, 70.869405155634738 ], [ 130.793044619999932, 70.97220515563474 ], [ 130.892744619999917, 70.757205155634736 ], [ 131.130244619999928, 70.731105155634751 ], [ 131.535844619999921, 70.877805155634761 ], [ 131.849444619999929, 71.204705155634755 ], [ 132.184644619999915, 71.214705155634746 ], [ 131.946644619999915, 71.289105155634743 ], [ 132.708844619999923, 71.940305155634761 ], [ 132.720544619999885, 71.765505155634756 ], [ 133.679144619999931, 71.433305155634756 ], [ 134.452444619999881, 71.36750515563476 ], [ 135.864944619999903, 71.639705155634758 ], [ 137.451944619999892, 71.341105155634736 ], [ 137.854144619999886, 71.111405155634756 ], [ 138.073344619999887, 71.13890515563476 ], [ 137.740244619999885, 71.222805155634759 ], [ 138.221344619999911, 71.26220515563476 ], [ 137.824144619999913, 71.383905155634736 ], [ 138.0660446199999, 71.573605155634752 ], [ 138.742744619999883, 71.641405155634757 ], [ 139.2127446199999, 71.411105155634758 ], [ 139.932444619999899, 71.485005155634738 ], [ 139.746544619999895, 71.842505155634754 ], [ 139.336644619999902, 71.945505155634734 ], [ 140.218844619999913, 72.185005155634755 ], [ 139.285244619999901, 72.130005155634748 ], [ 139.141044619999889, 72.301105155634744 ], [ 139.541344619999904, 72.494405155634738 ], [ 141.024144619999902, 72.585805155634759 ], [ 140.601344619999907, 72.890005155634739 ], [ 141.35054461999988, 72.851405155634737 ], [ 146.848044619999882, 72.347505155634749 ], [ 144.968244619999894, 72.435005155634755 ], [ 144.535544619999882, 72.231105155634751 ], [ 144.138544619999891, 72.270805155634761 ], [ 144.39194461999989, 72.171905155634747 ], [ 145.0863446199999, 72.259205155634746 ], [ 146.930244619999883, 72.309405155634735 ], [ 145.964644619999888, 71.846905155634758 ], [ 145.988544619999914, 72.025505155634747 ], [ 146.339944619999926, 72.128005155634739 ], [ 145.985544619999928, 72.061405155634745 ], [ 145.898344619999932, 72.206105155634745 ], [ 145.608344619999912, 72.243605155634739 ], [ 145.746644619999927, 72.213305155634757 ], [ 145.614944619999903, 72.080505155634754 ], [ 145.802444619999903, 71.925505155634752 ], [ 144.975244619999899, 71.970305155634762 ], [ 145.216344619999916, 71.827205155634758 ], [ 144.928044619999923, 71.690805155634749 ], [ 146.071044619999896, 71.788005155634735 ], [ 147.224444619999929, 72.328305155634737 ], [ 149.536344619999909, 72.159405155634758 ], [ 150.072444619999885, 71.877805155634761 ], [ 149.677744619999885, 71.76050515563476 ], [ 149.360244619999889, 71.905505155634742 ], [ 148.832744619999914, 71.811405155634745 ], [ 149.038544619999925, 71.756405155634738 ], [ 148.823544619999893, 71.67000515563474 ], [ 150.105844619999914, 71.59610515563476 ], [ 149.8657446199999, 71.461105155634741 ], [ 150.667744619999894, 71.489405155634742 ], [ 150.023544619999882, 71.207505155634735 ], [ 150.724644619999935, 71.393605155634745 ], [ 150.604944619999912, 71.27530515563474 ], [ 151.453344619999882, 71.343305155634752 ], [ 152.141044619999889, 70.997505155634755 ], [ 151.6636446199999, 70.980805155634741 ], [ 152.538344619999918, 70.83780515563474 ], [ 155.937244619999888, 71.09440515563476 ], [ 159.053844619999893, 70.869105155634756 ], [ 160.03804461999988, 70.405505155634742 ], [ 160.0997446199999, 70.250505155634741 ], [ 159.7949446199999, 70.13720515563476 ], [ 159.729644619999931, 69.834705155634751 ], [ 161.005844619999891, 69.574205155634743 ], [ 160.963844619999918, 69.103605155634753 ], [ 161.41164461999989, 68.979705155634761 ], [ 161.0660446199999, 68.563305155634751 ], [ 160.766644619999909, 68.535505155634738 ], [ 161.1277446199999, 68.555205155634738 ], [ 161.579644619999897, 68.915005155634745 ], [ 161.437444619999894, 69.379705155634738 ], [ 162.323344619999887, 69.662205155634737 ], [ 162.447744619999924, 69.637505155634742 ], [ 162.360744619999934, 69.425505155634752 ], [ 162.782444619999922, 69.194105155634745 ], [ 162.499144619999925, 69.11720515563475 ], [ 162.530844619999925, 69.003605155634759 ], [ 162.849444619999929, 68.869705155634747 ], [ 162.592444619999924, 68.805505155634748 ], [ 162.72414461999989, 68.606405155634761 ], [ 162.435244619999935, 68.305505155634748 ], [ 161.3657446199999, 68.411405155634739 ], [ 158.254744619999883, 68.070505155634734 ], [ 158.052444619999903, 67.85750515563474 ], [ 158.327444619999881, 67.748605155634735 ], [ 157.804144619999931, 67.706105155634745 ], [ 157.688544619999902, 67.539405155634753 ], [ 157.887444619999883, 67.441105155634759 ], [ 157.859944619999908, 67.270805155634761 ], [ 158.70444461999989, 67.055505155634748 ], [ 158.906944619999933, 66.80300515563475 ], [ 158.352744619999896, 66.448605155634752 ], [ 158.529244619999929, 66.35950515563475 ], [ 158.390244619999919, 66.248905155634745 ], [ 158.470844619999923, 66.129705155634738 ], [ 157.70444461999989, 66.112805155634746 ], [ 157.133644619999927, 65.913005155634735 ], [ 156.619644619999917, 66.206905155634743 ], [ 156.32944461999989, 66.059405155634735 ], [ 154.510844619999887, 66.24220515563475 ], [ 154.273544619999882, 66.100805155634745 ], [ 154.382744619999926, 65.944405155634755 ], [ 154.254444619999902, 65.829205155634739 ], [ 153.475844619999918, 65.823605155634752 ], [ 153.463044619999891, 65.360005155634738 ], [ 152.679444619999913, 65.232205155634759 ], [ 152.498544619999905, 64.938005155634741 ], [ 152.750044619999926, 64.686405155634745 ], [ 152.324944619999883, 64.525505155634747 ], [ 152.4122446199999, 64.393005155634754 ], [ 152.094144619999895, 64.365305155634744 ], [ 152.023344619999932, 64.506605155634745 ], [ 150.665244619999896, 64.343005155634742 ], [ 150.604144619999886, 64.164705155634735 ], [ 150.213044619999891, 64.21280515563474 ], [ 150.026944619999881, 64.353605155634753 ], [ 150.087444619999928, 64.489705155634752 ], [ 149.850844619999918, 64.563905155634743 ], [ 149.216644619999897, 64.404705155634744 ], [ 148.302444619999903, 64.557705155634736 ], [ 148.009444619999897, 64.433905155634747 ], [ 148.260244619999924, 64.240005155634762 ], [ 147.924444619999917, 63.940805155634749 ], [ 147.604144619999886, 64.041405155634735 ], [ 147.620744619999925, 64.173005155634755 ], [ 147.243044619999921, 64.050505155634752 ], [ 146.389744619999931, 64.207205155634753 ], [ 146.173044619999928, 63.96910515563475 ], [ 145.6271446199999, 63.842805155634736 ], [ 145.644744619999926, 63.667805155634753 ], [ 145.254444619999902, 63.229405155634751 ], [ 145.306644619999929, 62.771905155634741 ], [ 145.489644619999922, 62.548605155634746 ], [ 145.251944619999904, 62.530005155634754 ], [ 145.161144619999902, 62.267205155634755 ], [ 144.243544619999909, 61.760805155634742 ], [ 143.977444619999915, 61.729705155634761 ], [ 143.929944619999901, 61.991105155634742 ], [ 143.634944619999885, 61.870005155634757 ], [ 143.603844619999904, 62.028905155634746 ], [ 143.215744619999896, 62.118605155634739 ], [ 142.991644619999931, 61.907205155634742 ], [ 142.416944619999924, 61.866705155634762 ], [ 142.184144619999927, 62.085305155634742 ], [ 141.8460446199999, 62.028605155634736 ], [ 141.309644619999915, 62.415305155634755 ], [ 140.697744619999924, 62.57640515563476 ], [ 140.624944619999894, 62.415805155634743 ], [ 140.341944619999936, 62.384205155634746 ], [ 140.293044619999932, 62.058905155634747 ], [ 139.989144619999934, 61.975805155634745 ], [ 139.5455446199999, 61.477805155634755 ], [ 138.2872446199999, 61.111705155634738 ], [ 138.344444619999933, 60.995305155634739 ], [ 138.179944619999901, 60.885805155634742 ], [ 138.438844619999884, 60.680305155634741 ], [ 138.201044619999891, 60.24220515563475 ], [ 138.262744619999921, 59.71280515563474 ], [ 137.596944619999931, 59.737205155634754 ], [ 137.208844619999923, 59.452205155634758 ], [ 136.66164461999989, 59.345005155634752 ], [ 135.7541446199999, 59.530505155634742 ], [ 135.186144619999936, 59.113605155634744 ], [ 133.549144619999936, 59.297205155634757 ], [ 133.103544619999923, 59.205005155634737 ], [ 132.834444619999886, 59.106105155634751 ], [ 132.810544619999916, 58.875505155634741 ], [ 132.591644619999897, 58.88860515563475 ], [ 132.518044619999898, 58.620805155634756 ], [ 132.150544619999891, 58.488005155634752 ], [ 132.195844619999889, 58.248305155634753 ], [ 132.002444619999892, 58.115005155634762 ], [ 132.130244619999928, 58.049405155634744 ], [ 131.460244619999912, 58.163305155634745 ], [ 132.049144619999936, 57.655805155634752 ], [ 131.6930446199999, 57.565505155634739 ], [ 131.596944619999931, 57.28470515563474 ], [ 131.138544619999891, 57.203005155634756 ], [ 131.490544619999923, 57.07300515563476 ], [ 131.803544619999911, 56.715805155634754 ], [ 131.666644619999886, 56.650505155634747 ], [ 131.699944619999883, 56.454405155634745 ], [ 131.499344619999931, 56.550305155634746 ], [ 131.116344619999893, 56.400505155634747 ], [ 130.878344619999893, 55.90800515563474 ], [ 130.922944619999896, 55.678705155634745 ], [ 129.644144619999906, 55.745305155634739 ], [ 129.03804461999988, 55.653005155634744 ], [ 128.959644619999892, 55.461905155634739 ], [ 127.721344619999911, 55.688305155634751 ], [ 127.47554461999988, 55.549205155634738 ], [ 127.178544619999911, 55.693605155634756 ], [ 126.053044619999923, 55.579705155634755 ], [ 126.063844619999884, 55.718605155634762 ], [ 125.832444619999933, 55.794405155634749 ], [ 124.511344619999932, 55.870505155634746 ], [ 123.929144619999931, 56.375805155634751 ], [ 122.584744619999924, 56.487805155634746 ], [ 122.171144619999893, 56.737505155634736 ], [ 121.6719446199999, 56.747805155634737 ], [ 121.419744619999904, 56.975305155634757 ], [ 120.331144619999918, 57.008905155634736 ], [ 119.713244619999898, 56.811905155634761 ], [ 119.965544619999889, 56.489405155634742 ], [ 120.538544619999925, 56.287205155634737 ], [ 120.054944619999901, 56.135305155634754 ], [ 120.17074461999988, 55.882205155634736 ], [ 121.205244619999917, 56.020505155634751 ], [ 121.335244619999912, 55.510005155634744 ], [ 121.778244619999896, 55.61750515563476 ], [ 121.9838446199999, 55.48280515563475 ], [ 121.948244619999912, 54.994105155634756 ], [ 121.651344619999918, 54.741405155634752 ], [ 121.900744619999898, 54.803905155634752 ], [ 121.922144619999926, 54.572505155634744 ], [ 122.136044619999893, 54.427805155634744 ], [ 121.723844619999909, 54.423005155634755 ], [ 121.6305446199999, 54.085005155634761 ], [ 121.921044619999918, 53.80500515563476 ], [ 122.02604461999988, 53.41400515563474 ], [ 120.863844619999895, 53.279705155634744 ], [ 120.029144619999897, 52.768005155634754 ], [ 120.073044619999905, 52.590005155634756 ], [ 120.718044619999887, 52.540805155634743 ], [ 120.7127446199999, 51.98250515563474 ], [ 120.096944619999931, 51.661405155634739 ], [ 119.138544619999891, 50.394705155634753 ], [ 119.359344619999888, 50.341905155634734 ], [ 119.313844619999884, 50.088605155634738 ], [ 118.583344619999934, 49.926905155634742 ], [ 117.874644619999913, 49.520605155634755 ], [ 116.246044619999907, 50.027505155634756 ], [ 115.414644619999933, 49.898305155634759 ], [ 114.854144619999886, 50.228305155634743 ], [ 114.313044619999914, 50.284205155634751 ], [ 113.216644619999897, 49.819205155634748 ], [ 113.090744619999896, 49.598605155634758 ], [ 110.788544619999925, 49.149405155634739 ], [ 108.572144619999904, 49.333605155634743 ], [ 107.949144619999913, 49.67800515563475 ], [ 107.977144619999933, 49.943605155634756 ], [ 107.182244619999892, 50.02420515563476 ], [ 106.66304461999988, 50.338605155634738 ], [ 105.335544619999894, 50.483605155634748 ], [ 103.697744619999924, 50.136005155634749 ], [ 102.918544619999921, 50.315305155634761 ], [ 102.327744619999919, 50.569705155634736 ], [ 102.218844619999913, 51.333605155634743 ], [ 99.946944619999897, 51.751405155634743 ], [ 98.930244619999883, 52.143605155634745 ], [ 98.708044619999896, 51.828005155634756 ], [ 98.053044619999923, 51.460905155634762 ], [ 97.827744619999919, 51.001105155634761 ], [ 98.063344619999896, 50.630505155634737 ], [ 98.3152446199999, 50.53190515563476 ], [ 98.289744619999908, 50.293905155634761 ], [ 98.107244619999904, 50.048905155634756 ], [ 97.340844619999928, 49.734405155634747 ], [ 96.074444619999895, 50.006905155634755 ], [ 95.529444619999936, 49.893305155634735 ], [ 94.635244619999924, 50.024405155634739 ], [ 94.274944619999928, 50.569405155634755 ], [ 93.112744619999887, 50.59610515563476 ], [ 92.974944619999917, 50.791105155634753 ], [ 92.660844619999921, 50.681705155634759 ], [ 92.322744619999924, 50.815005155634751 ], [ 90.051344619999895, 50.082505155634735 ], [ 89.642744619999917, 49.904805155634747 ], [ 89.718044619999887, 49.717505155634754 ], [ 89.226644619999888, 49.63830515563474 ], [ 89.181944619999911, 49.506905155634755 ], [ 88.220844619999923, 49.46170515563476 ], [ 87.988544619999914, 49.177205155634752 ], [ 87.412144619999935, 49.078305155634737 ], [ 86.616644619999931, 49.587205155634749 ], [ 86.774944619999928, 49.788905155634737 ], [ 86.1910446199999, 49.472505155634749 ], [ 85.258544619999896, 49.591405155634746 ], [ 84.977744619999896, 49.912805155634757 ], [ 85.014444619999892, 50.07580515563474 ], [ 84.363044619999926, 50.212205155634749 ], [ 83.972444619999919, 50.801705155634735 ], [ 83.456344619999925, 51.002505155634751 ], [ 82.761044619999893, 50.910805155634748 ], [ 82.498844619999886, 50.72110515563476 ], [ 81.468044619999887, 50.74220515563475 ], [ 81.424644619999924, 50.966405155634746 ], [ 81.073044619999905, 50.952205155634758 ], [ 81.183544619999907, 51.196105155634754 ], [ 80.687844619999908, 51.314705155634741 ], [ 80.438644619999934, 51.19800515563476 ], [ 80.46784461999988, 50.968205155634749 ], [ 80.077944619999926, 50.758105155634738 ], [ 77.908044619999885, 53.271105155634743 ], [ 76.521644619999904, 53.993905155634749 ], [ 76.39334461999988, 54.163605155634755 ], [ 76.721344619999911, 54.153305155634754 ], [ 76.811644619999925, 54.447805155634754 ], [ 74.789444619999927, 53.83640515563475 ], [ 74.466344619999916, 53.693305155634746 ], [ 74.429144619999931, 53.478605155634753 ], [ 73.917444619999912, 53.654205155634756 ], [ 73.437144619999913, 53.436105155634735 ], [ 73.238544619999914, 53.644405155634743 ], [ 73.4430446199999, 53.875805155634751 ], [ 73.711644619999902, 53.875005155634753 ], [ 73.763844619999929, 54.065505155634739 ], [ 73.290744619999884, 53.953905155634757 ], [ 72.613244619999932, 54.145305155634745 ], [ 72.527444619999926, 54.050805155634762 ], [ 72.731044619999921, 53.96170515563476 ], [ 72.468544619999932, 53.908905155634741 ], [ 72.508844619999934, 54.142805155634747 ], [ 72.051644619999934, 54.387805155634751 ], [ 72.196044619999896, 54.137505155634742 ], [ 71.767744619999917, 54.255305155634758 ], [ 71.653544619999934, 54.110005155634738 ], [ 71.3363446199999, 54.215005155634756 ], [ 71.185544619999916, 54.103305155634743 ], [ 70.996944619999908, 54.339205155634758 ], [ 71.21354461999988, 54.32580515563474 ], [ 71.160244619999901, 54.59550515563474 ], [ 71.278844619999916, 54.690305155634761 ], [ 71.013044619999903, 54.797505155634738 ], [ 70.843244619999894, 55.301905155634742 ], [ 70.238844619999895, 55.13890515563476 ], [ 68.952444619999881, 55.444705155634736 ], [ 69.002444619999892, 55.287505155634747 ], [ 68.731344619999902, 55.370505155634746 ], [ 68.625744619999921, 55.201905155634748 ], [ 68.199644619999901, 55.17830515563476 ], [ 68.33084461999988, 55.080505155634754 ], [ 68.205244619999917, 54.966105155634736 ], [ 65.48324461999988, 54.638005155634758 ], [ 65.218544619999932, 54.527805155634738 ], [ 65.216344619999916, 54.318905155634738 ], [ 64.924344619999886, 54.40970515563474 ], [ 63.172144619999926, 54.186405155634745 ], [ 62.591344619999916, 54.05300515563475 ], [ 62.547444619999908, 53.879405155634757 ], [ 62.3580446199999, 54.022805155634742 ], [ 61.326044619999891, 54.069205155634748 ], [ 61.0041446199999, 53.939405155634759 ], [ 61.226944619999927, 53.811905155634761 ], [ 60.90104461999988, 53.624405155634761 ], [ 61.538844619999907, 53.593305155634752 ], [ 61.434444619999908, 53.443305155634746 ], [ 61.241944619999913, 53.506905155634755 ], [ 61.167444619999912, 53.323605155634752 ], [ 62.104644619999931, 53.125005155634753 ], [ 62.109644619999926, 52.987805155634746 ], [ 61.09914461999989, 52.981705155634742 ], [ 60.694144619999918, 52.680805155634758 ], [ 61.0583446199999, 52.339205155634758 ], [ 60.025544619999891, 52.000805155634751 ], [ 59.913244619999887, 52.102805155634755 ], [ 60.145544619999896, 52.427505155634762 ], [ 59.250244619999933, 52.498905155634745 ], [ 59.173844619999898, 52.275805155634757 ], [ 58.7963446199999, 52.437805155634734 ], [ 58.745544619999919, 52.840805155634754 ], [ 59.027744619999908, 53.015005155634739 ], [ 58.822444619999885, 53.204405155634745 ], [ 58.916644619999886, 53.925305155634746 ], [ 59.325244619999921, 54.183605155634737 ], [ 59.736644619999936, 54.138005155634758 ], [ 59.675544619999926, 54.489405155634742 ], [ 59.944144619999918, 54.85750515563474 ], [ 59.631644619999918, 54.911105155634758 ], [ 59.249644619999913, 54.612205155634754 ], [ 57.974944619999917, 54.388005155634758 ], [ 57.155744619999894, 54.831905155634743 ], [ 57.206944619999888, 55.223005155634738 ], [ 57.424944619999906, 55.32610515563475 ], [ 58.142144619999897, 55.21940515563476 ], [ 57.998544619999905, 54.917805155634753 ], [ 58.300244619999887, 55.176105155634744 ], [ 58.610244619999889, 54.948305155634742 ], [ 58.823544619999893, 55.032805155634762 ], [ 58.571944619999897, 55.144205155634737 ], [ 58.734944619999908, 55.268905155634755 ], [ 59.643844619999925, 55.559405155634735 ], [ 59.236344619999898, 55.584405155634741 ], [ 59.320844619999889, 55.773605155634741 ], [ 59.157744619999903, 55.788305155634745 ], [ 59.1705446199999, 56.006705155634748 ], [ 59.290844619999916, 56.136705155634743 ], [ 57.459144619999904, 56.125305155634734 ], [ 57.321644619999915, 56.48280515563475 ], [ 57.416944619999924, 56.642505155634737 ], [ 57.218844619999913, 56.853005155634762 ], [ 58.074444619999895, 57.049205155634738 ], [ 57.936044619999905, 57.32580515563474 ], [ 58.035844619999921, 57.606405155634761 ], [ 58.343644619999907, 57.685005155634755 ], [ 58.532444619999922, 57.566905155634757 ], [ 58.856944619999922, 57.730005155634743 ], [ 58.603344619999916, 57.991105155634742 ], [ 58.661944619999929, 58.095305155634762 ], [ 59.458344619999934, 58.493005155634748 ], [ 59.4219446199999, 58.680505155634748 ], [ 59.082144619999895, 58.763005155634758 ], [ 59.184444619999908, 59.167505155634743 ], [ 58.30774461999988, 59.46280515563474 ], [ 58.448844619999932, 59.702205155634758 ], [ 58.9824446199999, 59.950005155634742 ], [ 59.475244619999899, 60.815805155634749 ], [ 59.257144619999906, 61.281405155634744 ], [ 59.4219446199999, 61.42970515563475 ], [ 59.404444619999936, 62.142205155634755 ], [ 59.650544619999891, 62.517205155634755 ], [ 59.391344619999927, 62.729705155634761 ], [ 59.487144619999924, 62.897805155634742 ], [ 59.222144619999881, 63.073905155634762 ], [ 59.565844619999893, 63.919205155634742 ], [ 59.859644619999926, 64.137505155634742 ], [ 59.588044619999891, 64.23250515563474 ], [ 59.604644619999931, 64.460305155634742 ], [ 59.479644619999931, 64.481905155634749 ], [ 59.654144619999897, 64.78330515563475 ], [ 60.158044619999885, 65.067205155634738 ], [ 60.631344619999936, 64.883605155634754 ], [ 61.848544619999927, 65.675305155634746 ], [ 62.846644619999893, 65.86750515563476 ], [ 62.853544619999923, 66.071105155634754 ], [ 63.290544619999935, 66.23280515563475 ], [ 63.223244619999889, 66.32640515563476 ], [ 63.4085446199999, 66.452805155634749 ], [ 65.101344619999907, 66.890505155634756 ], [ 65.223544619999927, 67.146105155634743 ], [ 66.106644619999884, 67.478605155634753 ], [ 65.791644619999886, 67.569705155634736 ], [ 66.210544619999894, 67.696105155634754 ], [ 66.018044619999898, 67.793005155634759 ], [ 66.086044619999882, 67.934405155634735 ], [ 65.284944619999919, 68.01190515563475 ], [ 65.275744619999898, 68.235505155634755 ], [ 65.655544619999887, 68.556405155634749 ], [ 65.312144619999913, 68.806605155634756 ], [ 64.522144619999892, 68.903005155634744 ], [ 64.929144619999931, 69.260805155634742 ], [ 65.87024461999988, 69.127205155634741 ], [ 65.659844619999888, 69.113705155634747 ], [ 66.581344619999925, 68.905805155634752 ], [ 67.116044619999911, 68.842805155634736 ], [ 67.1930446199999, 68.704705155634755 ], [ 68.159344619999899, 68.411405155634739 ], [ 68.264944619999881, 68.187505155634753 ], [ 68.528544619999934, 68.277205155634746 ], [ 69.111344619999898, 68.866405155634752 ], [ 68.943844619999936, 68.898005155634749 ], [ 69.220244619999903, 68.957205155634753 ], [ 68.459644619999892, 68.978005155634762 ], [ 68.047444619999908, 69.281405155634744 ], [ 68.101644619999888, 69.546605155634737 ], [ 67.000544619999914, 69.69970515563476 ], [ 66.950244619999921, 69.528905155634746 ], [ 66.799144619999936, 69.574205155634743 ], [ 66.873244619999923, 70.001105155634761 ], [ 67.327744619999919, 70.097505155634749 ], [ 67.088044619999891, 70.217205155634744 ], [ 67.339644619999888, 70.750305155634734 ], [ 66.688844619999884, 70.76050515563476 ], [ 66.6157446199999, 70.887505155634742 ], [ 66.891644619999909, 71.077505155634739 ], [ 66.616044619999911, 71.038605155634755 ], [ 66.915544619999935, 71.292705155634749 ], [ 67.968844619999913, 71.540505155634762 ], [ 68.465544619999889, 71.818905155634738 ], [ 68.976644619999888, 72.695805155634744 ], [ 69.333844619999923, 72.948905155634762 ], [ 71.538544619999925, 72.911405155634739 ], [ 72.833344619999934, 72.708605155634743 ], [ 72.723544619999927, 72.599705155634737 ], [ 72.881944619999899, 72.281405155634744 ], [ 72.334444619999886, 71.852805155634755 ], [ 72.361844619999886, 71.710305155634742 ], [ 71.802444619999903, 71.472505155634749 ], [ 72.591044619999934, 71.155305155634736 ], [ 72.840544619999889, 70.865305155634744 ], [ 72.680744619999928, 70.614705155634752 ], [ 72.778044619999889, 70.418005155634759 ], [ 72.424644619999924, 70.270305155634745 ], [ 72.614444619999915, 70.177805155634744 ], [ 72.485544619999928, 70.042705155634749 ], [ 72.686344619999886, 69.849705155634737 ], [ 72.529644619999885, 69.628305155634749 ], [ 72.553844619999893, 68.976605155634743 ], [ 73.513244619999909, 68.586905155634739 ], [ 73.641344619999927, 68.444705155634736 ], [ 73.098044619999882, 68.216905155634734 ], [ 73.207144619999895, 67.859405155634747 ], [ 73.040744619999884, 67.724105155634746 ], [ 72.556044619999909, 67.601605155634743 ], [ 72.399444619999883, 67.323605155634752 ], [ 72.040544619999935, 67.296905155634747 ], [ 72.231044619999921, 67.160505155634738 ], [ 71.774444619999883, 66.945505155634734 ], [ 71.410244619999901, 66.966905155634734 ], [ 71.558544619999907, 66.645305155634745 ], [ 70.694944619999887, 66.508005155634734 ], [ 70.291344619999904, 66.623905155634745 ], [ 70.730744619999882, 66.757205155634736 ], [ 68.967744619999905, 66.804105155634758 ], [ 69.386044619999893, 66.507505155634746 ], [ 71.999944619999894, 66.21940515563476 ], [ 72.350244619999899, 66.301605155634761 ], [ 72.47414461999989, 66.604105155634741 ], [ 73.847144619999881, 66.981105155634751 ], [ 73.900544619999891, 67.291405155634735 ], [ 74.739944619999903, 67.691605155634747 ], [ 74.731644619999884, 68.143005155634754 ], [ 74.332744619999914, 68.380305155634758 ], [ 74.443544619999898, 68.682705155634736 ], [ 74.640544619999901, 68.769105155634762 ], [ 76.591644619999897, 68.968305155634752 ], [ 76.641344619999927, 68.767805155634747 ], [ 77.324444619999895, 68.516905155634745 ], [ 77.162144619999935, 68.29500515563474 ], [ 77.361044619999916, 68.231705155634742 ], [ 77.189944619999892, 67.987805155634746 ], [ 77.303544619999911, 67.902805155634738 ], [ 77.091944619999936, 67.778605155634736 ], [ 77.785544619999882, 67.561905155634761 ], [ 79.044844619999935, 67.567105155634735 ], [ 77.462444619999928, 67.76220515563476 ], [ 77.558544619999907, 68.143905155634755 ], [ 78.174644619999924, 68.265005155634739 ], [ 77.773544619999882, 68.519405155634743 ], [ 77.634944619999885, 68.907805155634762 ], [ 76.037144619999935, 69.237205155634754 ], [ 74.749344619999931, 69.078905155634757 ], [ 73.749344619999931, 69.168005155634759 ], [ 73.894444619999888, 69.425805155634762 ], [ 73.516344619999927, 69.755505155634737 ], [ 73.691344619999882, 70.144105155634762 ], [ 74.309944619999897, 70.511105155634752 ], [ 74.314944619999892, 70.673605155634746 ], [ 73.5266446199999, 71.263005155634758 ], [ 73.015244619999919, 71.421605155634737 ], [ 73.503244619999919, 71.662805155634757 ], [ 73.532144619999883, 71.819105155634745 ], [ 74.958044619999896, 72.109405155634747 ], [ 75.108544619999918, 72.397805155634742 ], [ 74.8146446199999, 72.774705155634749 ], [ 74.985544619999928, 72.878305155634749 ], [ 75.523544619999882, 72.75390515563474 ], [ 75.377444619999892, 72.682705155634736 ], [ 75.710244619999912, 72.562805155634734 ], [ 75.551044619999914, 72.489405155634742 ], [ 75.762744619999921, 72.300005155634736 ], [ 75.223544619999927, 71.84440515563476 ], [ 75.501644619999922, 71.65030515563474 ], [ 75.241944619999913, 71.376105155634761 ], [ 76.843544619999932, 71.188605155634761 ], [ 76.915744619999884, 71.069705155634736 ], [ 76.994944619999899, 71.181605155634756 ], [ 77.6896446199999, 71.155805155634752 ], [ 78.436044619999905, 70.885805155634742 ], [ 78.956344619999925, 70.921405155634758 ], [ 79.112744619999887, 71.002505155634751 ], [ 78.549644619999924, 70.955505155634754 ], [ 78.515544619999901, 71.104705155634761 ], [ 78.231344619999902, 71.109705155634757 ], [ 78.302444619999903, 71.247205155634745 ], [ 77.931044619999909, 71.255505155634737 ], [ 77.9921446199999, 71.371905155634735 ], [ 77.511644619999913, 71.297505155634738 ], [ 76.270544619999896, 71.571605155634742 ], [ 76.097444619999919, 71.928605155634742 ], [ 76.897744619999912, 72.051105155634744 ], [ 77.560244619999935, 71.832205155634753 ], [ 78.104744619999906, 71.876105155634761 ], [ 78.229444619999924, 71.967305155634747 ], [ 78.015744619999907, 72.100005155634747 ], [ 77.369944619999899, 72.098905155634739 ], [ 78.53804461999988, 72.403605155634736 ], [ 80.826044619999891, 72.086905155634739 ], [ 80.626644619999922, 72.049705155634754 ], [ 81.653044619999889, 71.708005155634751 ], [ 83.261644619999913, 71.72110515563476 ], [ 82.986544619999904, 71.449905155634738 ], [ 82.257444619999887, 71.259705155634762 ], [ 82.355244619999894, 71.079405155634745 ], [ 82.194644619999906, 71.001105155634761 ], [ 82.414444619999927, 70.771105155634743 ], [ 82.081044619999886, 70.567805155634758 ], [ 82.3460446199999, 70.198605155634752 ], [ 82.160244619999901, 70.577505155634739 ], [ 82.442744619999928, 70.609405155634747 ], [ 82.663844619999907, 70.947205155634762 ], [ 83.118844619999891, 70.887505155634742 ], [ 83.016044619999889, 70.423005155634755 ], [ 82.639144619999911, 70.174405155634744 ], [ 83.071644619999915, 70.063305155634751 ], [ 83.193544619999898, 70.123305155634753 ], [ 83.1305446199999, 70.208005155634751 ], [ 82.951644619999911, 70.320505155634734 ], [ 83.531644619999895, 70.339205155634758 ], [ 83.745544619999919, 70.460005155634761 ], [ 83.148344619999932, 71.236105155634746 ], [ 83.6285446199999, 71.623905155634745 ], [ 83.378844619999882, 71.827505155634739 ], [ 82.182144619999917, 72.091405155634746 ], [ 82.309944619999897, 72.187205155634743 ], [ 82.19244461999989, 72.28300515563474 ], [ 80.721344619999911, 72.526105155634738 ], [ 80.831644619999906, 72.61580515563476 ], [ 80.628244619999919, 72.727205155634735 ], [ 80.817144619999908, 72.966105155634736 ], [ 80.231044619999921, 73.173605155634746 ], [ 80.572444619999885, 73.22050515563474 ], [ 80.248544619999905, 73.314105155634749 ], [ 80.677144619999922, 73.498005155634743 ], [ 80.509944619999885, 73.571605155634742 ], [ 87.086944619999883, 73.859405155634747 ], [ 85.778244619999896, 73.459705155634751 ], [ 85.833544619999884, 73.32640515563476 ], [ 86.7835446199999, 72.994105155634756 ], [ 85.878844619999882, 73.341705155634756 ], [ 85.848044619999882, 73.475305155634757 ], [ 87.176944619999915, 73.61690515563474 ], [ 87.664944619999915, 73.894705155634753 ], [ 87.312744619999933, 73.832205155634753 ], [ 86.974644619999935, 74.025805155634757 ], [ 87.360744619999934, 74.04530515563475 ], [ 85.951044619999891, 74.280805155634752 ], [ 86.455244619999917, 74.453605155634747 ], [ 86.903544619999934, 74.373705155634738 ], [ 86.7127446199999, 74.297205155634757 ], [ 87.132744619999926, 74.369105155634756 ], [ 85.789144619999888, 74.630805155634746 ], [ 86.117744619999883, 74.746605155634754 ], [ 86.029144619999897, 74.813005155634741 ], [ 86.91304461999988, 74.612505155634736 ], [ 86.761944619999895, 74.702805155634749 ], [ 87.386644619999913, 74.943005155634737 ], [ 87.181644619999929, 74.990005155634762 ], [ 87.785744619999889, 75.022205155634751 ], [ 86.9002446199999, 75.083305155634761 ], [ 86.994944619999899, 75.151405155634748 ], [ 87.987144619999924, 75.100005155634747 ], [ 89.2527446199999, 75.503005155634739 ], [ 89.533844619999911, 75.446605155634742 ], [ 89.959644619999892, 75.571405155634736 ], [ 91.619644619999917, 75.63720515563476 ], [ 94.161944619999929, 75.942705155634755 ], [ 92.865244619999885, 75.948305155634742 ], [ 93.155544619999887, 76.097805155634759 ], [ 96.197744619999924, 76.085305155634742 ], [ 95.569944619999887, 75.885805155634742 ], [ 95.743844619999891, 75.850505155634735 ], [ 96.511944619999895, 76.010005155634744 ], [ 96.62994461999989, 75.954405155634745 ], [ 96.435244619999935, 75.870005155634757 ], [ 97.289444619999927, 76.039405155634753 ], [ 97.395544619999896, 76.044405155634749 ], [ 97.183544619999907, 75.92800515563475 ], [ 97.821344619999934, 75.979705155634761 ], [ 97.546044619999918, 76.047505155634738 ], [ 98.745544619999919, 76.26190515563475 ], [ 99.276944619999881, 76.214205155634758 ], [ 99.089444619999881, 76.160505155634738 ], [ 99.76834461999988, 76.031105155634762 ], [ 99.611344619999898, 75.832505155634735 ], [ 99.228044619999935, 75.76220515563476 ], [ 99.094444619999933, 75.55500515563476 ], [ 100.186244619999911, 75.168505155634747 ], [ 99.823844619999932, 75.46910515563475 ], [ 99.171844619999888, 75.570005155634746 ], [ 99.2766446199999, 75.757205155634736 ], [ 99.604444619999924, 75.777805155634738 ], [ 99.875544619999914, 75.904205155634756 ], [ 99.8771446199999, 76.091705155634756 ], [ 98.813844619999884, 76.492705155634738 ], [ 100.843044619999887, 76.53360515563476 ], [ 102.233544619999918, 76.377205155634741 ], [ 100.878244619999919, 76.551405155634754 ], [ 101.234644619999926, 76.753005155634739 ], [ 100.849644619999935, 76.878605155634759 ], [ 102.064144619999922, 77.38550515563476 ], [ 104.071344619999934, 77.732205155634759 ], [ 105.871844619999933, 77.563605155634761 ], [ 106.291944619999924, 77.362805155634746 ], [ 104.1171446199999, 77.090805155634754 ], [ 105.909944619999919, 77.141405155634757 ], [ 105.433744619999914, 77.003305155634749 ], [ 106.813844619999884, 77.050005155634736 ], [ 107.5035446199999, 76.922205155634757 ], [ 106.40104461999988, 76.509705155634762 ], [ 107.875744619999921, 76.535305155634759 ], [ 107.944144619999918, 76.731705155634742 ], [ 111.103844619999904, 76.755305155634758 ], [ 112.192744619999928, 76.476905155634753 ], [ 111.906344619999913, 76.364405155634742 ], [ 112.265744619999907, 76.452205155634758 ], [ 112.742744619999883, 76.328305155634737 ], [ 112.501344619999884, 76.238605155634744 ], [ 112.855244619999894, 76.141905155634745 ], [ 112.661344619999909, 76.049105155634734 ] ] ], [ [ [ 107.635244619999924, 78.166105155634753 ], [ 107.438844619999884, 78.049405155634744 ], [ 106.493044619999921, 78.121605155634754 ], [ 106.896944619999886, 78.176105155634744 ], [ 107.635244619999924, 78.166105155634753 ] ] ], [ [ [ 93.750544619999914, 78.155805155634752 ], [ 93.616044619999911, 78.159105155634748 ], [ 93.519644619999895, 78.187805155634734 ], [ 93.640244619999919, 78.222805155634759 ], [ 93.750544619999914, 78.155805155634752 ] ] ], [ [ [ 106.761344619999932, 78.303605155634742 ], [ 106.2407446199999, 78.195505155634734 ], [ 105.992744619999883, 78.214205155634758 ], [ 106.458544619999884, 78.334705155634751 ], [ 106.761344619999932, 78.303605155634742 ] ] ], [ [ [ 92.702144619999899, 79.071405155634736 ], [ 92.534344619999899, 79.078005155634756 ], [ 92.182544619999931, 79.127205155634741 ], [ 92.72554461999988, 79.075005155634742 ], [ 92.702144619999899, 79.071405155634736 ] ] ], [ [ [ 102.972744619999901, 79.331405155634755 ], [ 103.160744619999889, 79.315005155634751 ], [ 102.825544619999903, 79.223005155634738 ], [ 102.39334461999988, 78.828605155634747 ], [ 102.914644619999933, 79.052505155634762 ], [ 103.946944619999897, 79.133305155634744 ], [ 104.601644619999888, 78.771405155634753 ], [ 105.168044619999932, 78.809105155634754 ], [ 105.414444619999927, 78.564705155634741 ], [ 104.758544619999896, 78.328005155634756 ], [ 101.276344619999918, 78.193605155634756 ], [ 99.939944619999892, 77.950305155634751 ], [ 99.341344619999916, 78.020005155634735 ], [ 99.994444619999911, 78.335305155634742 ], [ 100.378244619999919, 78.745205155634736 ], [ 101.168044619999932, 78.758305155634744 ], [ 100.781944619999933, 78.857205155634759 ], [ 100.893844619999925, 78.976605155634743 ], [ 101.624344619999931, 78.982205155634759 ], [ 100.988844619999895, 79.061105155634735 ], [ 101.550744619999932, 79.348305155634748 ], [ 102.207744619999914, 79.239105155634761 ], [ 102.137744619999921, 79.356405155634761 ], [ 102.279144619999897, 79.422805155634748 ], [ 102.972744619999901, 79.331405155634755 ] ] ], [ [ [ 92.805544619999921, 79.382505155634746 ], [ 92.676644619999934, 79.379105155634747 ], [ 92.582144619999895, 79.40690515563476 ], [ 92.987744619999887, 79.416905155634751 ], [ 92.805544619999921, 79.382505155634746 ] ] ], [ [ [ 92.467444619999924, 79.43000515563476 ], [ 92.243544619999909, 79.380005155634748 ], [ 91.804144619999931, 79.412505155634747 ], [ 92.284344619999899, 79.44940515563475 ], [ 92.467444619999924, 79.43000515563476 ] ] ], [ [ [ 99.945744619999914, 79.401405155634748 ], [ 99.928544619999911, 79.397805155634742 ], [ 99.85054461999988, 79.415505155634762 ], [ 100.017744619999917, 79.433005155634746 ], [ 99.945744619999914, 79.401405155634748 ] ] ], [ [ [ 91.468544619999932, 79.454705155634755 ], [ 91.166344619999904, 79.517205155634755 ], [ 90.781944619999933, 79.549105155634734 ], [ 91.166044619999923, 79.526905155634736 ], [ 91.468544619999932, 79.454705155634755 ] ] ], [ [ [ 76.2324446199999, 79.601405155634737 ], [ 76.528844619999916, 79.63720515563476 ], [ 77.619644619999917, 79.51220515563476 ], [ 76.780744619999894, 79.481105155634751 ], [ 76.041944619999924, 79.634705155634762 ], [ 76.2324446199999, 79.601405155634737 ] ] ], [ [ [ 100.010744619999912, 79.622205155634745 ], [ 99.903544619999934, 79.600005155634747 ], [ 100.306644619999929, 79.664705155634735 ], [ 100.160744619999889, 79.653305155634754 ], [ 100.010744619999912, 79.622205155634745 ] ] ], [ [ [ 91.65104461999988, 79.651105155634738 ], [ 91.434344619999933, 79.665805155634743 ], [ 91.124344619999931, 79.722505155634749 ], [ 91.8588446199999, 79.664705155634735 ], [ 91.65104461999988, 79.651105155634738 ] ] ], [ [ [ 58.686344619999886, 79.944705155634736 ], [ 58.988044619999926, 79.895505155634751 ], [ 58.279144619999897, 79.926605155634761 ], [ 58.662144619999935, 79.978605155634753 ], [ 58.686344619999886, 79.944705155634736 ] ] ], [ [ [ 94.30774461999988, 80.016905155634745 ], [ 94.149944619999928, 79.976905155634753 ], [ 93.927444619999903, 79.968305155634752 ], [ 93.988244619999932, 80.009805155634737 ], [ 94.30774461999988, 80.016905155634745 ] ] ], [ [ [ 49.3791446199999, 79.989105155634761 ], [ 49.194444619999899, 79.996105155634737 ], [ 49.193544619999898, 80.032205155634742 ], [ 49.435244619999935, 80.002505155634751 ], [ 49.3791446199999, 79.989105155634761 ] ] ], [ [ [ 91.176344619999895, 80.05300515563475 ], [ 92.907744619999903, 80.021905155634741 ], [ 93.808544619999907, 79.88830515563474 ], [ 93.006344619999936, 79.703605155634747 ], [ 91.921644619999881, 79.673305155634736 ], [ 92.349944619999917, 79.727805155634755 ], [ 91.073044619999905, 79.848605155634758 ], [ 91.178844619999893, 80.009105155634742 ], [ 90.864444619999915, 80.057205155634747 ], [ 91.176344619999895, 80.05300515563475 ] ] ], [ [ [ 49.466644619999897, 80.015805155634737 ], [ 49.330244619999917, 80.061905155634761 ], [ 49.683044619999919, 80.036405155634739 ], [ 49.679444619999913, 80.030005155634754 ], [ 49.466644619999897, 80.015805155634737 ] ] ], [ [ [ 51.204944619999935, 80.038005155634735 ], [ 51.501944619999904, 79.931605155634756 ], [ 50.043844619999902, 79.973005155634738 ], [ 50.970244619999903, 80.099705155634737 ], [ 51.204944619999935, 80.038005155634735 ] ] ], [ [ [ 59.422144619999926, 79.92030515563475 ], [ 59.184644619999915, 79.92800515563475 ], [ 58.759144619999915, 80.022805155634742 ], [ 59.844644619999883, 80.068305155634746 ], [ 59.422144619999926, 79.92030515563475 ] ] ], [ [ [ 36.84914461999989, 80.140005155634739 ], [ 36.696044619999896, 80.141705155634739 ], [ 36.590544619999889, 80.155005155634754 ], [ 36.760244619999924, 80.160805155634748 ], [ 36.84914461999989, 80.140005155634739 ] ] ], [ [ [ 97.614944619999903, 80.165505155634762 ], [ 98.034344619999899, 80.067505155634748 ], [ 97.623844619999886, 79.776405155634748 ], [ 97.1930446199999, 79.702205155634758 ], [ 98.384944619999885, 79.866405155634752 ], [ 98.528544619999934, 80.052505155634762 ], [ 100.015244619999919, 79.824205155634743 ], [ 99.72554461999988, 79.575005155634742 ], [ 99.659144619999893, 79.295805155634739 ], [ 99.035244619999901, 79.290305155634755 ], [ 99.938844619999884, 78.953305155634737 ], [ 98.559944619999897, 78.776105155634738 ], [ 97.3046446199999, 78.845305155634762 ], [ 94.777144619999888, 79.084405155634741 ], [ 94.324444619999895, 79.248905155634745 ], [ 94.332444619999933, 79.465505155634744 ], [ 93.698844619999932, 79.456105155634745 ], [ 93.990244619999885, 79.489405155634742 ], [ 93.687144619999913, 79.541105155634753 ], [ 93.878044619999912, 79.601405155634737 ], [ 93.224444619999929, 79.437805155634734 ], [ 93.116044619999911, 79.46280515563474 ], [ 93.318544619999898, 79.498005155634743 ], [ 92.850744619999887, 79.553905155634752 ], [ 94.616044619999911, 79.811905155634761 ], [ 94.222144619999881, 79.897805155634742 ], [ 94.910544619999882, 80.09610515563476 ], [ 97.614944619999903, 80.165505155634762 ] ] ], [ [ [ 60.261644619999913, 80.163305155634745 ], [ 59.943544619999898, 80.175805155634762 ], [ 59.897744619999912, 80.191605155634747 ], [ 60.289444619999927, 80.166905155634751 ], [ 60.261644619999913, 80.163305155634745 ] ] ], [ [ [ 50.2527446199999, 80.146405155634753 ], [ 49.972444619999919, 80.054105155634758 ], [ 49.532144619999883, 80.152205155634746 ], [ 50.32944461999989, 80.189705155634741 ], [ 50.2527446199999, 80.146405155634753 ] ] ], [ [ [ 54.221944619999931, 80.204205155634739 ], [ 54.151344619999918, 80.299405155634744 ], [ 54.4396446199999, 80.298605155634746 ], [ 54.421044619999918, 80.225005155634747 ], [ 54.221944619999931, 80.204205155634739 ] ] ], [ [ [ 55.15104461999988, 80.220305155634762 ], [ 54.8574446199999, 80.252505155634751 ], [ 55.543844619999902, 80.293905155634761 ], [ 55.523544619999882, 80.274405155634739 ], [ 55.15104461999988, 80.220305155634762 ] ] ], [ [ [ 52.452444619999881, 80.321105155634754 ], [ 52.307444619999899, 80.323905155634762 ], [ 52.166644619999886, 80.350305155634757 ], [ 52.521344619999923, 80.330805155634735 ], [ 52.452444619999881, 80.321105155634754 ] ] ], [ [ [ 57.096944619999931, 80.343005155634742 ], [ 57.050544619999926, 80.075005155634742 ], [ 55.71354461999988, 80.101105155634755 ], [ 56.043844619999902, 80.191105155634759 ], [ 56.007144619999906, 80.335805155634759 ], [ 57.096944619999931, 80.343005155634742 ] ] ], [ [ [ 53.621044619999907, 80.29500515563474 ], [ 53.871644619999927, 80.256605155634745 ], [ 52.181344619999891, 80.271905155634741 ], [ 52.588044619999891, 80.299105155634734 ], [ 52.931644619999929, 80.408905155634741 ], [ 53.621044619999907, 80.29500515563474 ] ] ], [ [ [ 56.308044619999919, 80.381405155634738 ], [ 56.223244619999889, 80.371405155634747 ], [ 55.786044619999927, 80.407205155634742 ], [ 55.873044619999916, 80.435305155634737 ], [ 56.308044619999919, 80.381405155634738 ] ] ], [ [ [ 55.366944619999913, 80.428905155634752 ], [ 55.167444619999912, 80.369405155634738 ], [ 54.977444619999915, 80.416905155634751 ], [ 55.286344619999909, 80.45140515563476 ], [ 55.366944619999913, 80.428905155634752 ] ] ], [ [ [ 54.637144619999901, 80.393605155634745 ], [ 54.454644619999897, 80.394705155634753 ], [ 54.37024461999988, 80.405805155634752 ], [ 54.863044619999926, 80.450305155634751 ], [ 54.637144619999901, 80.393605155634745 ] ] ], [ [ [ 57.968244619999894, 80.489405155634742 ], [ 58.800844619999907, 80.428905155634752 ], [ 59.276344619999918, 80.334105155634759 ], [ 58.371644619999927, 80.313905155634743 ], [ 58.075844619999884, 80.248305155634753 ], [ 58.435744619999923, 80.168605155634751 ], [ 57.718544619999932, 80.098305155634748 ], [ 57.271944619999886, 80.166105155634753 ], [ 57.268544619999886, 80.392505155634737 ], [ 56.946344619999934, 80.474405155634756 ], [ 57.968244619999894, 80.489405155634742 ] ] ], [ [ [ 55.015844619999882, 80.556905155634738 ], [ 55.16304461999988, 80.494705155634747 ], [ 54.641044619999889, 80.528005155634744 ], [ 54.70444461999989, 80.550305155634746 ], [ 55.015844619999882, 80.556905155634738 ] ] ], [ [ [ 54.301644619999934, 80.419105155634739 ], [ 54.229444619999924, 80.419105155634739 ], [ 53.779944619999924, 80.46940515563476 ], [ 53.968244619999894, 80.608605155634748 ], [ 54.458844619999923, 80.498005155634743 ], [ 54.301644619999934, 80.419105155634739 ] ] ], [ [ [ 58.010544619999905, 80.641105155634747 ], [ 57.8708446199999, 80.55330515563476 ], [ 57.213044619999891, 80.603605155634753 ], [ 57.416044619999923, 80.641905155634745 ], [ 58.010544619999905, 80.641105155634747 ] ] ], [ [ [ 58.855244619999894, 80.640305155634749 ], [ 58.806344619999891, 80.582805155634745 ], [ 58.537744619999899, 80.605805155634741 ], [ 58.600244619999899, 80.627805155634761 ], [ 58.855244619999894, 80.640305155634749 ] ] ], [ [ [ 53.442144619999908, 80.485005155634738 ], [ 53.214444619999881, 80.515705155634762 ], [ 53.301044619999914, 80.598305155634748 ], [ 53.105244619999894, 80.620005155634757 ], [ 53.398544619999882, 80.626605155634749 ], [ 53.5455446199999, 80.528305155634754 ], [ 53.442144619999908, 80.485005155634738 ] ] ], [ [ [ 56.778844619999916, 80.735805155634736 ], [ 56.948544619999893, 80.692705155634755 ], [ 55.432444619999899, 80.708305155634761 ], [ 56.476944619999927, 80.778605155634736 ], [ 56.778844619999916, 80.735805155634736 ] ] ], [ [ [ 47.897744619999912, 80.80330515563476 ], [ 48.766344619999927, 80.646405155634753 ], [ 47.751644619999922, 80.766405155634757 ], [ 47.3032446199999, 80.657505155634752 ], [ 47.423544619999916, 80.588905155634748 ], [ 46.084144619999904, 80.436905155634761 ], [ 46.036344619999909, 80.572205155634762 ], [ 44.8574446199999, 80.616405155634752 ], [ 47.897744619999912, 80.80330515563476 ] ] ], [ [ [ 62.218244619999894, 80.811105155634735 ], [ 62.03804461999988, 80.662505155634747 ], [ 62.141644619999909, 80.626605155634749 ], [ 61.0660446199999, 80.403605155634736 ], [ 59.625744619999921, 80.425005155634736 ], [ 59.220844619999923, 80.642805155634747 ], [ 59.875244619999933, 80.842505155634754 ], [ 62.218244619999894, 80.811105155634735 ] ] ], [ [ [ 55.449944619999883, 80.851405155634737 ], [ 55.982744619999892, 80.795805155634739 ], [ 53.97554461999988, 80.817505155634748 ], [ 55.055544619999921, 80.893605155634745 ], [ 55.449944619999883, 80.851405155634737 ] ] ], [ [ [ 58.986644619999936, 80.791605155634741 ], [ 58.433044619999919, 80.745805155634756 ], [ 57.816344619999882, 80.805805155634758 ], [ 58.756644619999918, 80.896105155634743 ], [ 58.986644619999936, 80.791605155634741 ] ] ], [ [ [ 50.133044619999907, 80.846605155634748 ], [ 50.8460446199999, 80.916905155634751 ], [ 51.043544619999921, 80.84610515563476 ], [ 50.247144619999915, 80.746605155634754 ], [ 51.746944619999908, 80.712205155634749 ], [ 49.694944619999887, 80.481705155634742 ], [ 49.828044619999901, 80.402205155634746 ], [ 49.603344619999916, 80.364105155634761 ], [ 48.809644619999915, 80.376405155634743 ], [ 48.622744619999935, 80.300305155634746 ], [ 49.113044619999926, 80.182705155634736 ], [ 48.374144619999925, 80.087205155634749 ], [ 47.616044619999911, 80.070505155634734 ], [ 48.082444619999933, 80.19970515563476 ], [ 46.616344619999893, 80.290805155634743 ], [ 48.183844619999888, 80.331405155634755 ], [ 47.618844619999891, 80.400805155634757 ], [ 48.234644619999926, 80.423305155634736 ], [ 48.122144619999915, 80.467505155634754 ], [ 47.380244619999928, 80.450505155634758 ], [ 49.192144619999908, 80.521405155634753 ], [ 49.681344619999891, 80.717505155634754 ], [ 48.954144619999909, 80.731405155634761 ], [ 49.814144619999922, 80.891105155634747 ], [ 50.441344619999882, 80.903905155634746 ], [ 49.997444619999897, 80.858605155634748 ], [ 50.133044619999907, 80.846605155634748 ] ] ], [ [ [ 79.977144619999933, 80.952505155634739 ], [ 80.437744619999933, 80.926405155634754 ], [ 78.972744619999901, 80.837505155634759 ], [ 79.218144619999919, 80.954005155634761 ], [ 79.977144619999933, 80.952505155634739 ] ] ], [ [ [ 58.533344619999923, 80.953005155634756 ], [ 58.277744619999908, 80.95110515563475 ], [ 57.834144619999904, 81.04530515563475 ], [ 58.698844619999932, 81.025505155634747 ], [ 58.533344619999923, 80.953005155634756 ] ] ], [ [ [ 58.758044619999907, 81.073305155634742 ], [ 58.5646446199999, 81.07440515563475 ], [ 58.515244619999919, 81.104405155634751 ], [ 58.808044619999919, 81.097505155634749 ], [ 58.758044619999907, 81.073305155634742 ] ] ], [ [ [ 56.242444619999901, 81.101105155634755 ], [ 57.486644619999936, 81.046405155634758 ], [ 58.278544619999934, 80.919705155634759 ], [ 57.736644619999936, 80.84610515563476 ], [ 56.096344619999911, 81.089205155634758 ], [ 56.242444619999901, 81.101105155634755 ] ] ], [ [ [ 54.749444619999906, 81.109705155634757 ], [ 56.1285446199999, 81.034405155634758 ], [ 57.720844619999923, 80.792505155634743 ], [ 57.017744619999917, 80.694405155634755 ], [ 56.631644619999918, 80.807505155634757 ], [ 55.362144619999924, 80.966105155634736 ], [ 54.418344619999914, 81.006105155634756 ], [ 54.749444619999906, 81.109705155634757 ] ] ], [ [ [ 60.985244619999889, 80.916105155634753 ], [ 60.399144619999902, 80.935805155634753 ], [ 60.024944619999928, 80.991605155634758 ], [ 61.654144619999897, 81.110805155634736 ], [ 60.985244619999889, 80.916105155634753 ] ] ], [ [ [ 58.445244619999926, 81.114105155634761 ], [ 58.206044619999886, 81.120205155634736 ], [ 58.149444619999883, 81.12890515563474 ], [ 58.648544619999882, 81.135005155634744 ], [ 58.445244619999926, 81.114105155634761 ] ] ], [ [ [ 50.597144619999881, 81.046105155634748 ], [ 50.347444619999919, 81.090305155634738 ], [ 50.983344619999912, 81.100505155634735 ], [ 50.749444619999906, 81.078905155634757 ], [ 50.597144619999881, 81.046105155634748 ] ] ], [ [ [ 65.452444619999881, 81.027805155634738 ], [ 65.444644619999906, 80.915805155634743 ], [ 64.303044619999923, 80.730005155634743 ], [ 63.141044619999889, 80.681905155634738 ], [ 62.5041446199999, 80.818305155634746 ], [ 64.094644619999883, 80.989705155634752 ], [ 64.483544619999918, 81.191105155634759 ], [ 65.452444619999881, 81.027805155634738 ] ] ], [ [ [ 59.766344619999927, 81.17030515563475 ], [ 59.496944619999908, 81.173305155634736 ], [ 59.010844619999887, 81.207205155634753 ], [ 59.844644619999883, 81.18000515563476 ], [ 59.766344619999927, 81.17030515563475 ] ] ], [ [ [ 91.250244619999933, 81.063005155634741 ], [ 90.069444619999899, 81.092805155634736 ], [ 89.893544619999886, 81.168605155634751 ], [ 91.577144619999899, 81.143005155634754 ], [ 91.250244619999933, 81.063005155634741 ] ] ], [ [ [ 57.564944619999892, 81.125305155634734 ], [ 57.377444619999892, 81.124405155634761 ], [ 56.994644619999917, 81.165505155634762 ], [ 58.080544619999898, 81.209705155634751 ], [ 57.564944619999892, 81.125305155634734 ] ] ], [ [ [ 95.958544619999884, 81.217205155634744 ], [ 97.969444619999933, 80.715505155634744 ], [ 97.1291446199999, 80.662805155634757 ], [ 97.019444619999888, 80.521405155634753 ], [ 97.426344619999895, 80.310805155634753 ], [ 97.158844619999911, 80.233605155634748 ], [ 94.809644619999915, 80.140005155634739 ], [ 93.753044619999912, 79.995805155634756 ], [ 92.061644619999925, 80.17030515563475 ], [ 92.886944619999895, 80.168905155634761 ], [ 92.106344619999902, 80.28470515563474 ], [ 93.246644619999927, 80.305505155634748 ], [ 91.4213446199999, 80.307705155634736 ], [ 92.623844619999886, 80.385005155634744 ], [ 91.889444619999892, 80.457805155634745 ], [ 92.765544619999901, 80.51330515563474 ], [ 93.325544619999903, 80.805805155634758 ], [ 92.487444619999906, 80.767505155634737 ], [ 93.168244619999882, 80.936105155634735 ], [ 93.068544619999898, 80.994405155634738 ], [ 95.547444619999908, 81.217805155634736 ], [ 95.122144619999915, 81.270805155634761 ], [ 95.958544619999884, 81.217205155634744 ] ] ], [ [ [ 60.638844619999929, 81.272205155634751 ], [ 60.377444619999892, 81.244105155634756 ], [ 59.722144619999881, 81.28330515563475 ], [ 60.110244619999889, 81.305205155634738 ], [ 60.638844619999929, 81.272205155634751 ] ] ], [ [ [ 54.393544619999886, 81.266105155634747 ], [ 54.2969446199999, 81.273005155634749 ], [ 54.114644619999922, 81.34720515563474 ], [ 54.279944619999924, 81.338305155634757 ], [ 54.393544619999886, 81.266105155634747 ] ] ], [ [ [ 57.458044619999896, 81.313605155634761 ], [ 57.902744619999908, 81.290305155634755 ], [ 56.4830446199999, 81.162805155634757 ], [ 55.431644619999929, 81.271605155634759 ], [ 57.458044619999896, 81.313605155634761 ] ] ], [ [ [ 59.0532446199999, 81.285005155634749 ], [ 58.641044619999889, 81.302805155634744 ], [ 58.461944619999883, 81.338605155634738 ], [ 59.381644619999918, 81.324205155634743 ], [ 59.0532446199999, 81.285005155634749 ] ] ], [ [ [ 57.796644619999881, 81.530005155634754 ], [ 58.572444619999885, 81.411905155634756 ], [ 56.741344619999893, 81.448605155634752 ], [ 56.969644619999883, 81.524105155634757 ], [ 57.796644619999881, 81.530005155634754 ] ] ], [ [ [ 62.08084461999988, 81.544105155634739 ], [ 61.892144619999897, 81.550005155634736 ], [ 61.654444619999936, 81.603005155634762 ], [ 62.203544619999889, 81.565005155634751 ], [ 62.08084461999988, 81.544105155634739 ] ] ], [ [ [ 58.490844619999905, 81.558905155634747 ], [ 58.420244619999892, 81.558905155634747 ], [ 58.226644619999888, 81.581405155634755 ], [ 58.719644619999883, 81.599705155634737 ], [ 58.490844619999905, 81.558905155634747 ] ] ], [ [ [ 62.793344619999914, 81.708605155634743 ], [ 63.463044619999891, 81.713905155634748 ], [ 63.802744619999885, 81.653305155634754 ], [ 62.104144619999886, 81.672505155634738 ], [ 62.793344619999914, 81.708605155634743 ] ] ], [ [ [ 59.287444619999917, 81.742705155634738 ], [ 58.061344619999886, 81.687805155634734 ], [ 57.888844619999929, 81.706905155634743 ], [ 59.437744619999933, 81.81670515563475 ], [ 59.287444619999917, 81.742705155634738 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 31, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Russian Far East" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.873244619999923, 42.956905155634743 ], [ 131.753844619999882, 42.984705155634757 ], [ 131.779944619999924, 43.049405155634744 ], [ 131.917244619999906, 43.021105155634743 ], [ 131.873244619999923, 42.956905155634743 ] ] ], [ [ [ 146.137444619999883, 43.458905155634753 ], [ 146.076044619999891, 43.51330515563474 ], [ 146.226044619999925, 43.525505155634747 ], [ 146.205544619999898, 43.481105155634751 ], [ 146.137444619999883, 43.458905155634753 ] ] ], [ [ [ 146.6699446199999, 43.704405155634745 ], [ 146.604644619999931, 43.803905155634752 ], [ 146.904944619999924, 43.840005155634756 ], [ 146.861644619999936, 43.79670515563474 ], [ 146.6699446199999, 43.704405155634745 ] ] ], [ [ [ 146.148044619999894, 44.510005155634744 ], [ 146.567944619999935, 44.438305155634751 ], [ 145.9402446199999, 44.128005155634739 ], [ 145.5546446199999, 43.650805155634757 ], [ 145.437444619999894, 43.716905155634734 ], [ 146.148044619999894, 44.510005155634744 ] ] ], [ [ [ 148.825244619999921, 45.335005155634761 ], [ 147.620444619999887, 44.966105155634736 ], [ 147.209144619999904, 44.550305155634746 ], [ 146.840444619999914, 44.415505155634762 ], [ 147.153044619999889, 44.673605155634746 ], [ 147.111844619999886, 44.793905155634761 ], [ 147.894144619999906, 45.223605155634758 ], [ 147.93274461999988, 45.421405155634758 ], [ 148.034344619999899, 45.256105155634756 ], [ 148.312144619999913, 45.267205155634755 ], [ 148.773044619999894, 45.521105155634743 ], [ 148.825244619999921, 45.335005155634761 ] ] ], [ [ [ 150.066344619999882, 45.847505155634749 ], [ 149.673844619999898, 45.628605155634759 ], [ 149.437444619999894, 45.583605155634743 ], [ 149.929144619999931, 46.007505155634746 ], [ 150.498544619999905, 46.192505155634748 ], [ 150.066344619999882, 45.847505155634749 ] ] ], [ [ [ 150.874044619999893, 46.440805155634749 ], [ 150.802744619999885, 46.443005155634737 ], [ 150.798444619999884, 46.450005155634742 ], [ 150.851044619999925, 46.470005155634752 ], [ 150.874044619999893, 46.440805155634749 ] ] ], [ [ [ 150.764944619999881, 46.703905155634757 ], [ 150.745444619999887, 46.701905155634748 ], [ 150.730744619999882, 46.722805155634759 ], [ 150.762144619999901, 46.727505155634745 ], [ 150.764944619999881, 46.703905155634757 ] ] ], [ [ [ 152.22554461999988, 47.174705155634754 ], [ 152.013044619999903, 46.88890515563476 ], [ 151.71214461999989, 46.801105155634744 ], [ 151.705744619999905, 46.847505155634749 ], [ 152.22554461999988, 47.174705155634754 ] ] ], [ [ [ 152.519144619999906, 47.307205155634747 ], [ 152.422444619999908, 47.303405155634735 ], [ 152.388044619999903, 47.34410515563475 ], [ 152.503844619999882, 47.377205155634741 ], [ 152.519144619999906, 47.307205155634747 ] ] ], [ [ [ 153.016044619999889, 47.693005155634737 ], [ 152.981044619999921, 47.723305155634748 ], [ 153.074144619999913, 47.808305155634756 ], [ 153.080244619999917, 47.714205155634758 ], [ 153.016044619999889, 47.693005155634737 ] ] ], [ [ [ 153.290544619999935, 48.053605155634742 ], [ 153.205744619999905, 48.05330515563476 ], [ 153.137744619999921, 48.101105155634755 ], [ 153.223244619999889, 48.133005155634734 ], [ 153.290544619999935, 48.053605155634742 ] ] ], [ [ [ 154.019444619999888, 48.723305155634748 ], [ 154.112144619999924, 48.895005155634735 ], [ 154.228844619999904, 48.902505155634756 ], [ 154.188844619999884, 48.835005155634761 ], [ 154.019444619999888, 48.723305155634748 ] ] ], [ [ [ 153.98184461999989, 48.926705155634735 ], [ 153.921144619999893, 48.926505155634757 ], [ 153.901844619999906, 48.970005155634752 ], [ 154.004644619999908, 48.963605155634738 ], [ 153.98184461999989, 48.926705155634735 ] ] ], [ [ [ 154.454644619999897, 49.169205155634742 ], [ 154.583044619999896, 49.145805155634761 ], [ 154.598844619999909, 49.111905155634744 ], [ 154.500544619999914, 49.07440515563475 ], [ 154.454644619999897, 49.169205155634742 ] ] ], [ [ [ 154.715744619999896, 49.26390515563476 ], [ 154.602444619999915, 49.373605155634735 ], [ 154.904344619999904, 49.624205155634755 ], [ 154.834944619999931, 49.34580515563475 ], [ 154.715744619999896, 49.26390515563476 ] ] ], [ [ [ 154.424944619999906, 49.733605155634748 ], [ 154.354944619999912, 49.766705155634739 ], [ 154.374944619999894, 49.825005155634742 ], [ 154.459944619999931, 49.813905155634743 ], [ 154.424944619999906, 49.733605155634748 ] ] ], [ [ [ 155.785444619999907, 50.185005155634755 ], [ 155.208544619999884, 50.080805155634735 ], [ 155.247744619999935, 50.301405155634754 ], [ 155.661344619999909, 50.385305155634754 ], [ 156.104144619999886, 50.761105155634752 ], [ 156.153044619999889, 50.525005155634759 ], [ 155.785444619999907, 50.185005155634755 ] ] ], [ [ [ 156.403744619999884, 50.653405155634758 ], [ 156.198244619999912, 50.67030515563475 ], [ 156.168844619999902, 50.741405155634752 ], [ 156.463844619999918, 50.869405155634738 ], [ 156.403744619999884, 50.653405155634758 ] ] ], [ [ [ 155.620744619999925, 50.806105155634739 ], [ 155.498244619999923, 50.817505155634748 ], [ 155.447744619999924, 50.897805155634742 ], [ 155.639144619999911, 50.920805155634739 ], [ 155.620744619999925, 50.806105155634739 ] ] ], [ [ [ 142.819744619999881, 54.292205155634761 ], [ 143.011344619999932, 54.130805155634746 ], [ 142.881344619999936, 53.808005155634746 ], [ 143.329144619999909, 52.914405155634753 ], [ 143.301044619999914, 52.460505155634749 ], [ 143.194944619999887, 52.346405155634741 ], [ 143.251144619999934, 52.593605155634762 ], [ 143.152744619999908, 52.381705155634748 ], [ 143.124944619999894, 51.960505155634749 ], [ 143.317244619999883, 51.704705155634755 ], [ 143.220844619999923, 51.521405155634753 ], [ 143.370744619999925, 51.641405155634757 ], [ 143.797744619999889, 50.286905155634756 ], [ 144.403644619999909, 49.033905155634741 ], [ 144.690844619999893, 48.864405155634742 ], [ 144.751644619999922, 48.641905155634745 ], [ 144.020244619999914, 49.258605155634754 ], [ 143.484944619999908, 49.306705155634759 ], [ 143.031344619999913, 49.155005155634754 ], [ 142.53664461999989, 47.789205155634747 ], [ 143.019944619999933, 47.245305155634739 ], [ 143.166944619999924, 46.709205155634734 ], [ 143.480544619999932, 46.82610515563475 ], [ 143.601944619999927, 46.383605155634754 ], [ 143.425244619999887, 46.019405155634743 ], [ 143.3785446199999, 46.548305155634736 ], [ 142.600244619999899, 46.71140515563475 ], [ 142.085544619999894, 45.88860515563475 ], [ 141.812744619999933, 46.586105155634741 ], [ 142.058544619999907, 47.087205155634749 ], [ 141.964644619999888, 47.608605155634748 ], [ 142.188844619999884, 47.975305155634757 ], [ 141.852444619999915, 48.750305155634734 ], [ 142.140544619999901, 49.552505155634762 ], [ 142.042244619999906, 50.534205155634751 ], [ 142.267244619999929, 51.120305155634739 ], [ 141.648044619999894, 51.886705155634743 ], [ 141.638044619999903, 52.315805155634749 ], [ 141.925244619999887, 53.020005155634735 ], [ 141.76694461999989, 53.371405155634747 ], [ 142.226944619999927, 53.518305155634735 ], [ 142.351644619999888, 53.356105155634751 ], [ 142.680244619999883, 53.510005155634744 ], [ 142.492744619999883, 53.654405155634734 ], [ 142.726944619999927, 53.633605155634754 ], [ 142.77464461999989, 53.834705155634751 ], [ 142.605544619999932, 53.691105155634759 ], [ 142.719744619999915, 53.930805155634758 ], [ 142.393844619999925, 54.237505155634736 ], [ 142.639444619999892, 54.262805155634751 ], [ 142.696644619999915, 54.424705155634754 ], [ 142.819744619999881, 54.292205155634761 ] ], [ [ 143.312244619999888, 49.31640515563474 ], [ 143.497444619999897, 49.321405155634736 ], [ 143.634644619999904, 49.318805155634735 ], [ 143.250544619999914, 49.384705155634762 ], [ 143.312244619999888, 49.31640515563474 ] ] ], [ [ [ 137.779944619999924, 54.366405155634752 ], [ 137.708244619999903, 54.368605155634739 ], [ 137.913844619999907, 54.507805155634756 ], [ 137.926344619999895, 54.457205155634753 ], [ 137.779944619999924, 54.366405155634752 ] ] ], [ [ [ 137.632144619999906, 54.413005155634735 ], [ 137.548844619999898, 54.505005155634748 ], [ 137.618544619999909, 54.565305155634761 ], [ 137.645544619999896, 54.507505155634746 ], [ 137.632144619999906, 54.413005155634735 ] ] ], [ [ [ 167.855744619999882, 54.681405155634749 ], [ 168.116844619999881, 54.507805155634756 ], [ 167.432944619999887, 54.863105155634756 ], [ 167.528844619999916, 54.851105155634755 ], [ 167.855744619999882, 54.681405155634749 ] ] ], [ [ [ 137.188244619999921, 55.102205155634735 ], [ 137.046044619999918, 54.917505155634743 ], [ 136.667244619999906, 54.905105155634757 ], [ 136.808244619999925, 55.018005155634754 ], [ 137.188244619999921, 55.102205155634735 ] ] ], [ [ [ 137.991344619999893, 54.88550515563476 ], [ 137.707144619999895, 54.618305155634758 ], [ 137.486644619999936, 54.872505155634755 ], [ 137.221244619999936, 54.773705155634744 ], [ 137.566944619999902, 55.188905155634743 ], [ 138.204144619999909, 55.043905155634761 ], [ 137.991344619999893, 54.88550515563476 ] ] ], [ [ [ 166.119044619999897, 55.328605155634747 ], [ 166.264644619999899, 55.308305155634756 ], [ 166.66304461999988, 54.674205155634738 ], [ 165.837944619999917, 55.264405155634748 ], [ 166.119044619999897, 55.328605155634747 ] ] ], [ [ [ 150.590444619999914, 59.019705155634753 ], [ 150.454544619999922, 59.017805155634747 ], [ 150.743844619999891, 59.111905155634744 ], [ 150.738544619999914, 59.092505155634754 ], [ 150.590444619999914, 59.019705155634753 ] ] ], [ [ [ 149.104644619999931, 59.187805155634734 ], [ 148.969644619999883, 59.124205155634755 ], [ 148.940944619999925, 59.141705155634739 ], [ 149.005244619999928, 59.211105155634741 ], [ 149.104644619999931, 59.187805155634734 ] ] ], [ [ [ 164.656844619999902, 59.084405155634741 ], [ 164.651344619999918, 58.882805155634756 ], [ 163.457144619999895, 58.465305155634738 ], [ 163.385544619999905, 58.559405155634735 ], [ 163.691944619999902, 58.745005155634757 ], [ 163.841844619999904, 58.995005155634757 ], [ 163.6993446199999, 59.014405155634748 ], [ 164.553044619999923, 59.237205155634754 ], [ 164.656844619999902, 59.084405155634741 ] ] ], [ [ [ 155.555744619999928, 59.321905155634752 ], [ 155.5035446199999, 59.309205155634757 ], [ 155.479444619999924, 59.317105155634735 ], [ 155.555744619999928, 59.35920515563474 ], [ 155.555744619999928, 59.321905155634752 ] ] ], [ [ [ -172.544455380000102, 64.613305155634762 ], [ -172.700355380000076, 64.630005155634748 ], [ -172.75815538000009, 64.660805155634748 ], [ -172.488355380000087, 64.633605155634754 ], [ -172.544455380000102, 64.613305155634762 ] ] ], [ [ [ -172.590655380000101, 64.703305155634737 ], [ -172.531155380000087, 64.843005155634742 ], [ -172.171155380000101, 64.79530515563475 ], [ -172.167255380000086, 64.772505155634761 ], [ -172.590655380000101, 64.703305155634737 ] ] ], [ [ [ -169.053355380000085, 65.749105155634751 ], [ -169.075055380000094, 65.815505155634739 ], [ -168.989755380000076, 65.808805155634744 ], [ -168.997555380000108, 65.797505155634738 ], [ -169.053355380000085, 65.749105155634751 ] ] ], [ [ [ -179.626155380000085, 68.906405155634744 ], [ -178.872555380000108, 68.750305155634734 ], [ -178.486155380000099, 68.585805155634759 ], [ -178.715655380000101, 68.655805155634752 ], [ -178.738355380000087, 68.539405155634753 ], [ -178.040855380000096, 68.426105155634744 ], [ -177.950555380000083, 68.290005155634745 ], [ -177.70305538000008, 68.33780515563474 ], [ -178.376755380000077, 68.550505155634752 ], [ -177.632255380000089, 68.32470515563476 ], [ -177.680355380000094, 68.223905155634739 ], [ -175.463655380000091, 67.707505155634735 ], [ -175.191155380000083, 67.510805155634742 ], [ -175.380355380000083, 67.345005155634752 ], [ -174.8303553800001, 67.382705155634753 ], [ -174.95565538000011, 67.100305155634757 ], [ -174.742855380000094, 66.773005155634749 ], [ -175.000355380000087, 66.671105155634748 ], [ -174.488355380000087, 66.540505155634762 ], [ -174.461955380000092, 66.301105155634744 ], [ -174.017055380000102, 66.478305155634743 ], [ -174.023455380000087, 66.210505155634749 ], [ -173.758655380000107, 66.44800515563476 ], [ -174.303055380000103, 66.577805155634749 ], [ -173.99585538000008, 66.691305155634737 ], [ -174.125255380000084, 66.989105155634761 ], [ -174.652555380000081, 67.063605155634761 ], [ -173.666955380000104, 67.131605155634745 ], [ -173.176755380000088, 67.063305155634751 ], [ -173.352555380000098, 66.838905155634748 ], [ -173.154155380000077, 66.852505155634745 ], [ -173.136455380000086, 66.996605155634754 ], [ -172.430555380000101, 66.934405155634735 ], [ -173.011955380000074, 67.056105155634739 ], [ -171.72615538000008, 66.955205155634744 ], [ -170.46335538000011, 66.31700515563476 ], [ -170.644455380000096, 66.237205155634754 ], [ -170.340755380000076, 66.291405155634735 ], [ -170.175555380000105, 66.210205155634739 ], [ -170.3286553800001, 66.176905155634742 ], [ -169.691155380000083, 66.072505155634744 ], [ -170.587855380000093, 65.863605155634744 ], [ -170.635655380000088, 65.610505155634755 ], [ -171.544255380000095, 65.833605155634743 ], [ -171.024455380000092, 65.592705155634761 ], [ -171.115555380000103, 65.476405155634737 ], [ -172.082555380000088, 65.484405155634747 ], [ -171.813155380000097, 65.517505155634737 ], [ -172.800355380000099, 65.681605155634756 ], [ -172.434755380000098, 65.591405155634746 ], [ -172.416455380000087, 65.425005155634736 ], [ -172.190555380000092, 65.446605155634742 ], [ -172.2447553800001, 65.245505155634746 ], [ -172.693355380000099, 65.23280515563475 ], [ -172.126155380000085, 65.08640515563475 ], [ -173.200855380000093, 64.786105155634758 ], [ -172.7755553800001, 64.789705155634735 ], [ -173.089555380000093, 64.663305155634745 ], [ -172.355855380000094, 64.458305155634761 ], [ -173.020055380000088, 64.498905155634745 ], [ -172.895355380000098, 64.338305155634757 ], [ -173.191455380000093, 64.254405155634757 ], [ -173.436155380000088, 64.32470515563476 ], [ -173.281955380000085, 64.516705155634739 ], [ -173.413355380000098, 64.620005155634757 ], [ -173.365255380000093, 64.461605155634757 ], [ -173.681655380000109, 64.34720515563474 ], [ -174.846355380000091, 64.777805155634738 ], [ -175.448955380000086, 64.784405155634758 ], [ -175.922855380000101, 65.014105155634738 ], [ -175.780655380000098, 65.160805155634748 ], [ -176.07805538000008, 65.470305155634762 ], [ -177.068055380000089, 65.609705155634757 ], [ -178.563155380000097, 65.516405155634757 ], [ -178.460555380000102, 65.736405155634756 ], [ -178.909455380000082, 65.993905155634749 ], [ -178.542555380000096, 66.163305155634745 ], [ -178.517055380000102, 66.402805155634738 ], [ -178.900055380000083, 66.171905155634747 ], [ -179.175855380000087, 66.415305155634755 ], [ -179.181455380000102, 66.285005155634749 ], [ -179.423955380000109, 66.343005155634742 ], [ -179.288155380000092, 66.164105155634743 ], [ -179.69565538000009, 66.183005155634746 ], [ -179.798355380000089, 65.870505155634746 ], [ -179.315055380000103, 65.536105155634758 ], [ -180.000055380000106, 65.068905155634738 ], [ -180.000055380000106, 68.980105155634746 ], [ -179.626155380000085, 68.906405155634744 ] ] ], [ [ [ 170.15104461999988, 69.734105155634737 ], [ 170.119944619999899, 69.715505155634744 ], [ 169.984944619999908, 69.748005155634743 ], [ 170.203244619999907, 69.788305155634745 ], [ 170.15104461999988, 69.734105155634737 ] ] ], [ [ [ 169.447444619999885, 69.808905155634747 ], [ 169.205544619999898, 69.573905155634762 ], [ 168.868244619999928, 69.567805155634758 ], [ 167.751844619999929, 69.827505155634739 ], [ 168.270244619999914, 70.020505155634751 ], [ 169.447444619999885, 69.808905155634747 ] ] ], [ [ [ 170.819044619999886, 70.092505155634754 ], [ 172.645744619999903, 69.966705155634756 ], [ 173.191944619999902, 69.779705155634744 ], [ 173.478844619999904, 69.829205155634739 ], [ 173.174944619999906, 69.911905155634756 ], [ 173.458544619999884, 69.952505155634739 ], [ 176.111844619999886, 69.890505155634756 ], [ 176.741044619999911, 69.666905155634751 ], [ 178.770544619999896, 69.407505155634752 ], [ 179.067744619999928, 69.32610515563475 ], [ 178.649144619999902, 69.307505155634757 ], [ 179.288844619999907, 69.266705155634739 ], [ 179.999944619999894, 68.980105155634746 ], [ 179.999944619999894, 65.068905155634738 ], [ 179.466844619999904, 64.814105155634749 ], [ 178.522144619999892, 64.588005155634747 ], [ 178.7555446199999, 64.682205155634747 ], [ 177.609344619999888, 64.718005155634742 ], [ 177.431844619999936, 64.925005155634736 ], [ 176.89964461999989, 65.083605155634743 ], [ 176.302744619999885, 65.050005155634736 ], [ 176.937444619999894, 65.042705155634749 ], [ 177.3032446199999, 64.827805155634749 ], [ 176.428544619999911, 64.80500515563476 ], [ 176.059944619999897, 64.94800515563476 ], [ 175.730544619999932, 64.78360515563476 ], [ 175.051044619999914, 64.762805155634751 ], [ 174.694644619999906, 64.67800515563475 ], [ 174.436644619999925, 64.688305155634751 ], [ 174.64194461999989, 64.665505155634762 ], [ 175.702744619999919, 64.756605155634745 ], [ 176.064944619999892, 64.901405155634748 ], [ 176.423544619999916, 64.709405155634741 ], [ 176.151344619999918, 64.631905155634755 ], [ 176.113544619999914, 64.589405155634736 ], [ 176.10824461999988, 64.535005155634749 ], [ 177.486044619999916, 64.761405155634762 ], [ 177.359144619999881, 64.543005155634759 ], [ 177.631844619999924, 64.318905155634738 ], [ 178.367444619999901, 64.27390515563475 ], [ 178.483544619999918, 64.065505155634739 ], [ 178.376844619999929, 63.97220515563474 ], [ 178.667744619999894, 63.940505155634739 ], [ 178.757444619999887, 63.640005155634739 ], [ 178.261644619999913, 63.562505155634753 ], [ 178.711044619999882, 63.572205155634762 ], [ 178.589344619999906, 63.40970515563474 ], [ 178.687944619999882, 63.383005155634734 ], [ 178.772144619999892, 63.595005155634752 ], [ 179.0041446199999, 63.31670515563475 ], [ 178.851044619999925, 63.401905155634736 ], [ 178.817144619999908, 63.341905155634734 ], [ 179.4085446199999, 63.142805155634747 ], [ 179.236644619999936, 62.994105155634756 ], [ 179.543544619999921, 62.838905155634748 ], [ 179.561044619999905, 62.621405155634747 ], [ 179.120744619999925, 62.473605155634758 ], [ 179.061344619999886, 62.28470515563474 ], [ 177.338244619999898, 62.57610515563475 ], [ 177.450744619999909, 62.817505155634748 ], [ 177.198544619999893, 62.702505155634739 ], [ 176.97554461999988, 62.86550515563475 ], [ 176.933044619999919, 62.660805155634748 ], [ 177.265544619999901, 62.57470515563476 ], [ 174.5960446199999, 61.983605155634748 ], [ 174.728844619999904, 61.890005155634739 ], [ 174.593544619999932, 61.830005155634737 ], [ 174.069944619999887, 61.839405155634736 ], [ 173.811844619999931, 61.669705155634759 ], [ 173.559344619999933, 61.750805155634751 ], [ 173.489144619999934, 61.556105155634739 ], [ 173.136644619999913, 61.395305155634745 ], [ 172.7107446199999, 61.43000515563476 ], [ 172.956044619999886, 61.302805155634744 ], [ 172.349344619999897, 61.228305155634743 ], [ 172.478044619999935, 61.056905155634738 ], [ 172.009944619999885, 61.097505155634749 ], [ 172.192744619999928, 60.946905155634752 ], [ 170.64194461999989, 60.417505155634743 ], [ 170.248844619999886, 59.909405155634758 ], [ 169.6993446199999, 60.410805155634748 ], [ 169.210244619999912, 60.622805155634737 ], [ 167.050244619999887, 60.323905155634762 ], [ 166.137744619999921, 59.815305155634761 ], [ 166.348544619999927, 60.486405155634756 ], [ 164.997144619999915, 60.129405155634757 ], [ 165.182444619999899, 59.981105155634751 ], [ 164.832144619999895, 59.781105155634762 ], [ 164.468544619999932, 60.111405155634756 ], [ 164.155544619999887, 59.852805155634755 ], [ 164.050244619999887, 60.029205155634756 ], [ 163.635544619999905, 60.045505155634757 ], [ 163.6993446199999, 59.895505155634751 ], [ 163.360244619999889, 59.823905155634762 ], [ 163.385544619999905, 59.623005155634743 ], [ 163.173044619999928, 59.559205155634757 ], [ 163.329644619999897, 59.381105155634756 ], [ 163.061044619999905, 59.24050515563475 ], [ 163.188544619999902, 59.136705155634743 ], [ 163.193544619999898, 59.053605155634742 ], [ 162.876344619999884, 59.128005155634739 ], [ 163.044744619999904, 59.010305155634754 ], [ 162.398544619999882, 58.673905155634756 ], [ 161.938844619999884, 58.07440515563475 ], [ 162.3460446199999, 57.684705155634745 ], [ 162.571044619999896, 57.95110515563475 ], [ 163.21354461999988, 57.836105155634741 ], [ 163.283844619999911, 57.74250515563476 ], [ 163.078844619999927, 57.507505155634746 ], [ 162.736844619999886, 57.35780515563475 ], [ 162.791344619999904, 56.791105155634753 ], [ 163.213844619999918, 56.74050515563475 ], [ 163.354644619999931, 56.198605155634752 ], [ 163.027444619999926, 56.017805155634747 ], [ 162.645244619999914, 56.191905155634757 ], [ 163.0891446199999, 56.534205155634751 ], [ 162.393544619999886, 56.400005155634759 ], [ 162.572144619999904, 56.267205155634755 ], [ 162.036944619999929, 56.061705155634755 ], [ 161.712444619999928, 55.496905155634735 ], [ 162.112144619999924, 54.76190515563475 ], [ 161.732744619999892, 54.505805155634746 ], [ 160.7324446199999, 54.530505155634742 ], [ 160.005844619999891, 54.139205155634741 ], [ 159.81744461999989, 53.65860515563476 ], [ 159.950744619999909, 53.477805155634755 ], [ 159.791644619999886, 53.514705155634758 ], [ 160.055244619999883, 53.093605155634762 ], [ 159.614644619999922, 53.259405155634752 ], [ 158.721344619999911, 52.88860515563475 ], [ 158.603244619999884, 53.054205155634762 ], [ 158.430544619999921, 53.021905155634741 ], [ 158.644644619999895, 52.894705155634753 ], [ 158.552744619999885, 52.625305155634734 ], [ 158.419144619999884, 52.652205155634746 ], [ 158.5546446199999, 52.307805155634739 ], [ 158.275744619999898, 51.936605155634751 ], [ 156.656844619999902, 50.879405155634757 ], [ 156.746044619999907, 51.07440515563475 ], [ 156.518044619999898, 51.322805155634754 ], [ 156.277444619999926, 52.523605155634741 ], [ 156.389444619999892, 52.447805155634754 ], [ 156.4410446199999, 52.520805155634761 ], [ 156.103244619999884, 52.849205155634749 ], [ 155.544144619999884, 55.303605155634742 ], [ 155.948844619999932, 56.666105155634753 ], [ 156.977744619999896, 57.414405155634753 ], [ 156.748844619999886, 57.728305155634743 ], [ 158.23324461999988, 58.019405155634743 ], [ 159.702144619999899, 58.851405155634737 ], [ 159.789944619999915, 59.083905155634753 ], [ 160.484144619999881, 59.544405155634749 ], [ 161.837444619999928, 60.187505155634753 ], [ 161.914444619999927, 60.422805155634748 ], [ 163.658344619999923, 60.871905155634735 ], [ 163.509944619999885, 61.046905155634747 ], [ 164.019444619999888, 61.33640515563475 ], [ 163.749044619999893, 61.457505155634735 ], [ 164.070544619999907, 61.780305155634736 ], [ 164.1277446199999, 62.282805155634762 ], [ 164.606344619999902, 62.474205155634749 ], [ 165.291044619999923, 62.315505155634739 ], [ 165.0877446199999, 62.460005155634761 ], [ 165.642444619999935, 62.452805155634749 ], [ 164.359344619999888, 62.712205155634749 ], [ 163.263544619999891, 62.54500515563474 ], [ 163.164444619999927, 62.444705155634736 ], [ 163.352144619999933, 62.358305155634739 ], [ 163.119944619999899, 62.278005155634744 ], [ 162.950244619999921, 61.806405155634749 ], [ 163.28804461999988, 61.664405155634753 ], [ 163.0055446199999, 61.518305155634735 ], [ 162.844644619999883, 61.718605155634762 ], [ 162.634144619999915, 61.679205155634762 ], [ 162.750744619999921, 61.598605155634758 ], [ 162.403244619999896, 61.672505155634738 ], [ 160.797744619999889, 60.735305155634748 ], [ 160.137744619999921, 60.583605155634743 ], [ 160.161944619999929, 60.83780515563474 ], [ 160.391344619999927, 61.025805155634757 ], [ 159.780544619999887, 60.940805155634749 ], [ 159.946644619999915, 61.136105155634752 ], [ 159.827144619999899, 61.261405155634762 ], [ 160.366344619999893, 61.765805155634737 ], [ 160.354944619999912, 61.947505155634744 ], [ 159.531044619999932, 61.662805155634757 ], [ 159.247444619999897, 61.922205155634757 ], [ 158.028244619999896, 61.730005155634743 ], [ 157.486644619999936, 61.80330515563476 ], [ 156.698044619999905, 61.536105155634758 ], [ 156.662744619999899, 61.21170515563476 ], [ 156.084944619999931, 61.012505155634742 ], [ 155.899144619999902, 60.755305155634758 ], [ 154.232744619999892, 59.881905155634755 ], [ 154.297444619999908, 59.637505155634742 ], [ 154.114144619999934, 59.459705155634751 ], [ 154.504444619999902, 59.429205155634762 ], [ 154.431644619999929, 59.549205155634738 ], [ 155.19044461999988, 59.35780515563475 ], [ 155.140244619999919, 59.204105155634736 ], [ 154.741644619999931, 59.126905155634759 ], [ 154.444644619999906, 59.220005155634752 ], [ 154.028244619999896, 59.045505155634757 ], [ 153.368544619999909, 59.243005155634748 ], [ 152.8771446199999, 58.917505155634743 ], [ 152.357144619999929, 59.023305155634759 ], [ 151.309344619999933, 58.836905155634739 ], [ 151.073544619999893, 59.110505155634755 ], [ 152.287744619999899, 59.226905155634753 ], [ 151.748544619999905, 59.296105155634748 ], [ 151.386044619999893, 59.571105155634754 ], [ 150.681344619999891, 59.444705155634736 ], [ 150.439344619999929, 59.484705155634757 ], [ 150.72554461999988, 59.572805155634754 ], [ 149.598544619999927, 59.771405155634753 ], [ 149.033044619999885, 59.639205155634741 ], [ 149.209944619999931, 59.461905155634739 ], [ 148.742944619999889, 59.491705155634762 ], [ 148.706644619999906, 59.376105155634761 ], [ 148.963844619999918, 59.37920515563475 ], [ 148.898044619999894, 59.239205155634735 ], [ 148.407144619999883, 59.262805155634751 ], [ 148.2127446199999, 59.418905155634761 ], [ 147.489144619999934, 59.239705155634752 ], [ 146.511644619999913, 59.461105155634741 ], [ 146.323244619999912, 59.390805155634737 ], [ 146.338244619999898, 59.194705155634736 ], [ 145.990444619999892, 59.14890515563475 ], [ 145.79574461999988, 59.26190515563475 ], [ 145.914444619999927, 59.411105155634758 ], [ 145.256044619999898, 59.423305155634736 ], [ 143.211044619999882, 59.376605155634749 ], [ 142.2969446199999, 59.135305155634754 ], [ 141.616044619999911, 58.646105155634743 ], [ 140.785244619999901, 58.305305155634741 ], [ 140.496344619999888, 57.823305155634742 ], [ 138.641044619999889, 56.980005155634743 ], [ 137.725744619999887, 56.175005155634736 ], [ 135.155744619999894, 54.866105155634742 ], [ 135.736644619999936, 54.570505155634734 ], [ 136.8160446199999, 54.651405155634748 ], [ 136.810444619999885, 54.148005155634749 ], [ 136.653844619999916, 53.926405155634754 ], [ 136.760744619999912, 53.768605155634745 ], [ 137.172444619999908, 53.834705155634751 ], [ 137.289044619999913, 54.03360515563476 ], [ 137.061844619999931, 54.140805155634737 ], [ 137.187144619999913, 54.214705155634746 ], [ 137.738844619999895, 54.317205155634738 ], [ 137.307944619999887, 54.114405155634742 ], [ 137.859144619999881, 53.96140515563475 ], [ 137.207144619999895, 53.588305155634757 ], [ 137.345244619999903, 53.52530515563474 ], [ 137.9016446199999, 53.57300515563476 ], [ 138.553844619999893, 53.989405155634742 ], [ 138.571344619999934, 53.815005155634751 ], [ 138.239344619999883, 53.562505155634753 ], [ 138.465244619999908, 53.521105155634743 ], [ 138.77604461999988, 54.024405155634739 ], [ 138.64194461999989, 54.29530515563475 ], [ 139.342444619999924, 54.183305155634756 ], [ 139.809144619999927, 54.296105155634748 ], [ 140.555244619999883, 53.647805155634742 ], [ 141.419144619999884, 53.290305155634755 ], [ 141.199944619999883, 52.986405155634756 ], [ 140.705544619999898, 53.113005155634752 ], [ 141.205544619999898, 52.842205155634744 ], [ 141.312744619999933, 52.65800515563474 ], [ 141.132444619999887, 52.404705155634744 ], [ 141.514144619999911, 52.213305155634757 ], [ 141.302144619999922, 52.015805155634737 ], [ 141.421844619999888, 51.920505155634757 ], [ 140.69044461999988, 51.320505155634734 ], [ 140.679944619999901, 50.946905155634752 ], [ 140.460444619999919, 50.706705155634737 ], [ 140.519144619999906, 50.159405155634758 ], [ 140.695744619999914, 50.087505155634759 ], [ 140.407444619999922, 49.871705155634757 ], [ 140.556844619999936, 49.560005155634755 ], [ 140.339944619999926, 49.271905155634741 ], [ 140.389944619999881, 48.968905155634744 ], [ 140.175744619999932, 48.448605155634752 ], [ 139.286344619999909, 47.81670515563475 ], [ 139.041944619999924, 47.40030515563474 ], [ 138.566944619999902, 47.035505155634738 ], [ 138.058044619999919, 46.176405155634754 ], [ 135.838044619999891, 44.357205155634759 ], [ 135.424644619999924, 43.758005155634734 ], [ 133.908344619999923, 42.873305155634753 ], [ 133.028044619999889, 42.684205155634757 ], [ 132.771944619999886, 42.870005155634757 ], [ 132.310544619999916, 42.84440515563476 ], [ 132.342144619999885, 43.299705155634754 ], [ 131.9430446199999, 43.063905155634743 ], [ 131.841644619999897, 43.088605155634738 ], [ 132.056344619999891, 43.313305155634751 ], [ 131.810544619999916, 43.325505155634758 ], [ 131.221344619999911, 42.555805155634758 ], [ 130.699944619999883, 42.679205155634762 ], [ 130.871044619999907, 42.523305155634759 ], [ 130.697444619999885, 42.292205155634761 ], [ 130.605244619999894, 42.619705155634747 ], [ 130.403644619999909, 42.71280515563474 ], [ 131.123244619999923, 42.910805155634748 ], [ 131.311344619999886, 43.392205155634755 ], [ 131.187244619999888, 43.552805155634744 ], [ 131.298044619999928, 44.051905155634742 ], [ 130.953844619999927, 44.84610515563476 ], [ 131.469144619999895, 44.973905155634739 ], [ 131.864644619999922, 45.34550515563474 ], [ 132.923344619999909, 45.021905155634741 ], [ 133.122144619999915, 45.128605155634759 ], [ 133.149144619999902, 45.45080515563474 ], [ 133.468244619999894, 45.622205155634745 ], [ 133.477444619999915, 45.826705155634741 ], [ 133.900144619999935, 46.250305155634734 ], [ 133.845844619999923, 46.475505155634735 ], [ 134.222144619999881, 47.110805155634736 ], [ 134.182444619999899, 47.323305155634742 ], [ 134.767144619999897, 47.707505155634735 ], [ 134.557144619999917, 47.994705155634747 ], [ 134.7407446199999, 48.267105155634752 ], [ 134.415344619999928, 48.391105155634747 ], [ 133.506644619999918, 48.071405155634736 ], [ 133.08854461999988, 48.101705155634747 ], [ 132.521044619999884, 47.710305155634742 ], [ 130.962944619999917, 47.70080515563474 ], [ 130.659344619999899, 48.098605155634758 ], [ 130.826344619999929, 48.322205155634762 ], [ 130.521644619999904, 48.60780515563475 ], [ 130.671644619999881, 48.865005155634762 ], [ 130.221644619999893, 48.864705155634752 ], [ 129.482744619999892, 49.418405155634744 ], [ 129.103244619999884, 49.346705155634751 ], [ 128.773544619999882, 49.575505155634758 ], [ 127.838044619999891, 49.586605155634757 ], [ 127.5175446199999, 49.801505155634757 ], [ 127.586044619999882, 50.208605155634743 ], [ 127.331344619999925, 50.319205155634748 ], [ 127.291944619999924, 50.741405155634752 ], [ 126.930544619999921, 51.060005155634755 ], [ 126.972744619999901, 51.318005155634737 ], [ 126.8160446199999, 51.266405155634757 ], [ 126.915244619999896, 51.37920515563475 ], [ 126.442244619999883, 51.988005155634752 ], [ 126.557244619999892, 52.130505155634737 ], [ 125.988544619999914, 52.582205155634753 ], [ 126.095544619999885, 52.764405155634748 ], [ 125.652444619999926, 52.875505155634741 ], [ 125.616044619999911, 53.052805155634744 ], [ 124.488544619999914, 53.189205155634752 ], [ 123.609944619999908, 53.544405155634749 ], [ 122.02604461999988, 53.41400515563474 ], [ 121.921144619999893, 53.80500515563476 ], [ 121.6305446199999, 54.085005155634761 ], [ 121.723844619999909, 54.423005155634755 ], [ 122.139744619999931, 54.445005155634746 ], [ 121.922244619999901, 54.572505155634744 ], [ 121.9008446199999, 54.803905155634752 ], [ 121.651344619999918, 54.741405155634752 ], [ 121.948344619999887, 54.994205155634759 ], [ 121.897244619999924, 55.608005155634757 ], [ 121.335244619999912, 55.510005155634744 ], [ 121.205244619999917, 56.020505155634751 ], [ 120.170844619999912, 55.882205155634736 ], [ 120.054944619999901, 56.135305155634754 ], [ 120.538544619999925, 56.287205155634737 ], [ 119.664944619999915, 56.768005155634754 ], [ 120.331144619999918, 57.008905155634736 ], [ 121.419744619999904, 56.975305155634757 ], [ 121.6719446199999, 56.747805155634737 ], [ 122.171144619999893, 56.737505155634736 ], [ 122.584744619999924, 56.487805155634746 ], [ 123.929144619999931, 56.375805155634751 ], [ 124.511344619999932, 55.870505155634746 ], [ 125.832444619999933, 55.794405155634749 ], [ 126.063844619999884, 55.718605155634762 ], [ 126.053044619999923, 55.579705155634755 ], [ 127.178544619999911, 55.693605155634756 ], [ 127.47554461999988, 55.549205155634738 ], [ 127.721344619999911, 55.688305155634751 ], [ 128.959644619999892, 55.461905155634739 ], [ 129.03804461999988, 55.653005155634744 ], [ 129.644144619999906, 55.745305155634739 ], [ 130.922944619999896, 55.678705155634745 ], [ 130.878244619999919, 55.90800515563474 ], [ 131.116344619999893, 56.400505155634747 ], [ 131.499344619999931, 56.550305155634746 ], [ 131.699944619999883, 56.454405155634745 ], [ 131.666644619999886, 56.650505155634747 ], [ 131.803544619999911, 56.715805155634754 ], [ 131.490444619999892, 57.07300515563476 ], [ 131.138544619999891, 57.203005155634756 ], [ 131.590244619999908, 57.281405155634744 ], [ 131.692944619999935, 57.565505155634739 ], [ 132.049144619999936, 57.655805155634752 ], [ 131.460244619999912, 58.163305155634745 ], [ 132.130244619999928, 58.049405155634744 ], [ 132.002444619999892, 58.115005155634762 ], [ 132.195744619999914, 58.248305155634753 ], [ 132.150544619999891, 58.488005155634752 ], [ 132.518044619999898, 58.620805155634756 ], [ 132.591644619999897, 58.88860515563475 ], [ 132.810444619999885, 58.875505155634741 ], [ 132.834344619999911, 59.106105155634751 ], [ 133.103544619999923, 59.205005155634737 ], [ 133.549144619999936, 59.297205155634757 ], [ 135.186044619999905, 59.113605155634744 ], [ 135.7541446199999, 59.530505155634742 ], [ 136.66164461999989, 59.345005155634752 ], [ 137.208844619999923, 59.452205155634758 ], [ 137.596844619999899, 59.737205155634754 ], [ 138.262744619999921, 59.71280515563474 ], [ 138.201044619999891, 60.24220515563475 ], [ 138.438844619999884, 60.680305155634741 ], [ 138.179944619999901, 60.885805155634742 ], [ 138.344344619999902, 60.995305155634739 ], [ 138.287144619999935, 61.111705155634738 ], [ 139.5455446199999, 61.477805155634755 ], [ 139.989144619999934, 61.975805155634745 ], [ 140.293044619999932, 62.058905155634747 ], [ 140.341844619999904, 62.384205155634746 ], [ 140.624944619999894, 62.415805155634743 ], [ 140.697744619999924, 62.57640515563476 ], [ 141.309644619999915, 62.415305155634755 ], [ 141.8460446199999, 62.028605155634736 ], [ 142.184144619999927, 62.085305155634742 ], [ 142.416944619999924, 61.866705155634762 ], [ 142.991644619999931, 61.907205155634742 ], [ 143.215744619999896, 62.118605155634739 ], [ 143.603844619999904, 62.028905155634746 ], [ 143.634944619999885, 61.870005155634757 ], [ 143.929944619999901, 61.991105155634742 ], [ 143.977444619999915, 61.729705155634761 ], [ 144.243544619999909, 61.760805155634742 ], [ 145.161044619999927, 62.267205155634755 ], [ 145.251844619999929, 62.530005155634754 ], [ 145.489644619999922, 62.548605155634746 ], [ 145.306644619999929, 62.771905155634741 ], [ 145.254444619999902, 63.229405155634751 ], [ 145.644644619999895, 63.667805155634753 ], [ 145.6271446199999, 63.842805155634736 ], [ 146.173044619999928, 63.96910515563475 ], [ 146.389644619999899, 64.207205155634753 ], [ 147.242944619999889, 64.050505155634752 ], [ 147.620744619999925, 64.173005155634755 ], [ 147.604144619999886, 64.041405155634735 ], [ 147.924344619999886, 63.940805155634749 ], [ 148.260244619999924, 64.240005155634762 ], [ 148.009444619999897, 64.433905155634747 ], [ 148.302444619999903, 64.557705155634736 ], [ 149.216644619999897, 64.404705155634744 ], [ 149.850744619999887, 64.563905155634743 ], [ 150.087444619999928, 64.489705155634752 ], [ 150.026844619999906, 64.353605155634753 ], [ 150.212944619999917, 64.21280515563474 ], [ 150.604144619999886, 64.164705155634735 ], [ 150.643544619999886, 64.339705155634746 ], [ 152.011044619999893, 64.506105155634756 ], [ 152.223844619999909, 64.359105155634737 ], [ 152.747444619999897, 64.680305155634741 ], [ 152.498544619999905, 64.938005155634741 ], [ 152.679344619999881, 65.232205155634759 ], [ 153.462944619999917, 65.360005155634738 ], [ 153.475744619999887, 65.823605155634752 ], [ 154.254444619999902, 65.829205155634739 ], [ 154.382644619999894, 65.944405155634755 ], [ 154.273544619999882, 66.100805155634745 ], [ 154.510744619999912, 66.24220515563475 ], [ 156.329344619999915, 66.059405155634735 ], [ 156.619644619999917, 66.206905155634743 ], [ 157.133544619999896, 65.913005155634735 ], [ 157.704344619999915, 66.112805155634746 ], [ 158.470744619999891, 66.129705155634738 ], [ 158.390244619999919, 66.248905155634745 ], [ 158.529244619999929, 66.35950515563475 ], [ 158.352744619999896, 66.448605155634752 ], [ 158.906844619999902, 66.80300515563475 ], [ 158.704344619999915, 67.055505155634748 ], [ 157.859944619999908, 67.270805155634761 ], [ 157.736644619999936, 67.652805155634738 ], [ 158.319944619999887, 67.743305155634758 ], [ 158.057144619999917, 67.916905155634751 ], [ 158.499644619999913, 68.127505155634751 ], [ 161.3657446199999, 68.411405155634739 ], [ 162.435244619999935, 68.305505155634748 ], [ 162.724044619999916, 68.606405155634761 ], [ 162.592444619999924, 68.805505155634748 ], [ 162.849344619999897, 68.869705155634747 ], [ 162.530744619999894, 69.003605155634759 ], [ 162.499044619999893, 69.11720515563475 ], [ 162.782444619999922, 69.194105155634745 ], [ 162.360744619999934, 69.425505155634752 ], [ 162.431344619999891, 69.669705155634759 ], [ 164.014444619999892, 69.767505155634737 ], [ 164.532444619999922, 69.599405155634756 ], [ 166.860444619999896, 69.49050515563475 ], [ 167.786944619999929, 69.776105155634738 ], [ 168.24524461999988, 69.547805155634748 ], [ 168.283344619999923, 69.241605155634758 ], [ 169.3588446199999, 69.082805155634745 ], [ 169.580544619999898, 68.777805155634738 ], [ 170.611944619999917, 68.756305155634735 ], [ 170.436844619999931, 68.850005155634747 ], [ 170.704944619999935, 68.80440515563474 ], [ 171.022444619999931, 69.023005155634749 ], [ 170.907444619999922, 69.306105155634739 ], [ 170.586844619999908, 69.593605155634762 ], [ 170.121044619999907, 69.61720515563475 ], [ 170.567144619999908, 69.778005155634744 ], [ 170.557944619999887, 70.080805155634735 ], [ 170.413844619999907, 70.123905155634745 ], [ 170.819044619999886, 70.092505155634754 ] ] ], [ [ [ -175.62085538000008, 71.377805155634761 ], [ -175.803955380000104, 71.393905155634755 ], [ -175.923655380000099, 71.425805155634762 ], [ -175.764255380000094, 71.424405155634744 ], [ -175.62085538000008, 71.377805155634761 ] ] ], [ [ [ 179.999944619999894, 71.535905155634751 ], [ 179.999944619999894, 70.997205155634745 ], [ 178.790944619999891, 70.796405155634758 ], [ 178.617744619999883, 71.035505155634738 ], [ 179.999944619999894, 71.535905155634751 ] ] ], [ [ [ -178.568655380000109, 71.564105155634749 ], [ -177.439455380000084, 71.226905155634753 ], [ -177.938955380000095, 71.037505155634747 ], [ -179.274455380000092, 70.907805155634762 ], [ -180.000055380000106, 70.997205155634745 ], [ -180.000055380000106, 71.535805155634748 ], [ -178.568655380000109, 71.564105155634749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 32, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Middle Asia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.069644619999906, 38.899705155634749 ], [ 53.099944619999917, 38.751105155634761 ], [ 53.022444619999931, 39.007205155634736 ], [ 53.041644619999886, 39.077205155634758 ], [ 53.078544619999889, 39.093905155634744 ], [ 53.069644619999906, 38.899705155634749 ] ] ], [ [ [ 50.116044619999911, 44.838005155634747 ], [ 50.188044619999914, 44.854705155634761 ], [ 50.1502446199999, 44.812805155634734 ], [ 50.0666446199999, 44.834205155634734 ], [ 49.978844619999904, 44.956405155634755 ], [ 50.042444619999912, 45.056905155634738 ], [ 50.112744619999887, 45.077505155634739 ], [ 50.116044619999911, 44.838005155634747 ] ] ], [ [ [ 50.291644619999886, 44.950005155634742 ], [ 50.265544619999901, 45.036705155634749 ], [ 50.342744619999905, 45.083005155634751 ], [ 50.329644619999897, 44.978905155634735 ], [ 50.291644619999886, 44.950005155634742 ] ] ], [ [ [ 53.024944619999928, 46.228605155634753 ], [ 52.960244619999912, 46.266405155634757 ], [ 53.0463446199999, 46.36750515563476 ], [ 53.097444619999919, 46.29670515563474 ], [ 53.024944619999928, 46.228605155634753 ] ] ], [ [ [ 69.185544619999916, 55.343905155634744 ], [ 69.672744619999889, 55.354405155634751 ], [ 70.238844619999895, 55.13890515563476 ], [ 70.843244619999894, 55.301905155634742 ], [ 71.013044619999903, 54.797505155634738 ], [ 71.278844619999916, 54.690305155634761 ], [ 71.160244619999901, 54.59550515563474 ], [ 71.21354461999988, 54.32580515563474 ], [ 70.996944619999908, 54.339205155634758 ], [ 71.185544619999916, 54.103305155634743 ], [ 71.3363446199999, 54.215005155634756 ], [ 71.653544619999934, 54.110005155634738 ], [ 71.767744619999917, 54.255305155634758 ], [ 72.196044619999896, 54.137505155634742 ], [ 72.051644619999934, 54.387805155634751 ], [ 72.508844619999934, 54.142805155634747 ], [ 72.468544619999932, 53.908905155634741 ], [ 72.731044619999921, 53.96170515563476 ], [ 72.527444619999926, 54.050805155634762 ], [ 72.613244619999932, 54.145305155634745 ], [ 73.290744619999884, 53.953905155634757 ], [ 73.763844619999929, 54.065505155634739 ], [ 73.711644619999902, 53.875005155634753 ], [ 73.4430446199999, 53.875805155634751 ], [ 73.238544619999914, 53.644405155634743 ], [ 73.437144619999913, 53.436105155634735 ], [ 73.917444619999912, 53.654205155634756 ], [ 74.429144619999931, 53.478605155634753 ], [ 74.466344619999916, 53.693305155634746 ], [ 74.789444619999927, 53.83640515563475 ], [ 76.811644619999925, 54.447805155634754 ], [ 76.721344619999911, 54.153305155634754 ], [ 76.39334461999988, 54.163605155634755 ], [ 76.521644619999904, 53.993905155634749 ], [ 77.908044619999885, 53.271105155634743 ], [ 80.077944619999926, 50.758105155634738 ], [ 80.46784461999988, 50.968205155634749 ], [ 80.438644619999934, 51.19800515563476 ], [ 80.687844619999908, 51.314705155634741 ], [ 81.183544619999907, 51.196105155634754 ], [ 81.073044619999905, 50.952205155634758 ], [ 81.424644619999924, 50.966405155634746 ], [ 81.468044619999887, 50.74220515563475 ], [ 82.498844619999886, 50.72110515563476 ], [ 82.761044619999893, 50.910805155634748 ], [ 83.456344619999925, 51.002505155634751 ], [ 83.972444619999919, 50.801705155634735 ], [ 84.363044619999926, 50.212205155634749 ], [ 85.014444619999892, 50.07580515563474 ], [ 84.977744619999896, 49.912805155634757 ], [ 85.258544619999896, 49.591405155634746 ], [ 86.1910446199999, 49.472505155634749 ], [ 86.774944619999928, 49.788905155634737 ], [ 86.616644619999931, 49.587205155634749 ], [ 87.348144619999914, 49.092605155634757 ], [ 86.874644619999913, 49.110805155634736 ], [ 86.5960446199999, 48.536105155634758 ], [ 85.759144619999915, 48.387805155634751 ], [ 85.537744619999899, 47.960005155634761 ], [ 85.705544619999898, 47.365005155634762 ], [ 85.529244619999929, 47.060205155634762 ], [ 84.759444619999897, 46.82640515563476 ], [ 84.678044619999923, 46.993605155634739 ], [ 83.922444619999908, 46.973905155634739 ], [ 83.040544619999935, 47.212205155634749 ], [ 82.317744619999928, 45.570505155634734 ], [ 82.649444619999883, 45.430305155634741 ], [ 82.561644619999925, 45.129405155634757 ], [ 81.948044619999905, 45.157505155634752 ], [ 81.688244619999921, 45.350805155634745 ], [ 79.871044619999907, 44.905005155634754 ], [ 80.520844619999934, 44.73250515563474 ], [ 80.384944619999885, 44.635805155634742 ], [ 80.362744619999887, 44.12520515563476 ], [ 80.817144619999908, 43.156105155634762 ], [ 80.383544619999896, 43.03360515563476 ], [ 80.578544619999889, 42.891105155634747 ], [ 80.171844619999888, 42.660505155634738 ], [ 80.262444619999883, 42.048805155634753 ], [ 78.67074461999988, 41.53190515563476 ], [ 78.08084461999988, 41.040805155634743 ], [ 76.873844619999886, 41.014105155634738 ], [ 76.345844619999923, 40.350205155634754 ], [ 75.697144619999904, 40.299105155634734 ], [ 75.578044619999901, 40.648005155634749 ], [ 75.22554461999988, 40.446905155634752 ], [ 74.860244619999889, 40.519405155634743 ], [ 74.884444619999897, 40.327705155634746 ], [ 73.994444619999911, 40.046005155634745 ], [ 73.844944619999922, 39.805505155634748 ], [ 73.956044619999886, 39.597705155634756 ], [ 73.655644619999919, 39.454805155634759 ], [ 73.6171446199999, 39.232105155634756 ], [ 73.853244619999884, 38.96910515563475 ], [ 73.705244619999917, 38.864105155634761 ], [ 73.942144619999908, 38.538805155634762 ], [ 74.354644619999931, 38.674405155634744 ], [ 74.856644619999884, 38.47050515563474 ], [ 74.902744619999908, 37.647105155634748 ], [ 75.187444619999894, 37.40660515563475 ], [ 75.096644619999893, 37.321805155634749 ], [ 74.915744619999884, 37.237305155634758 ], [ 74.247144619999915, 37.409505155634761 ], [ 73.738544619999914, 37.221605155634748 ], [ 73.619944619999899, 37.262505155634742 ], [ 73.775944619999905, 37.43430515563476 ], [ 73.307144619999917, 37.462705155634737 ], [ 72.658444619999898, 37.021205155634746 ], [ 71.677144619999922, 36.676005155634741 ], [ 71.429444619999913, 37.07580515563474 ], [ 71.591944619999936, 37.90260515563476 ], [ 71.2527446199999, 37.92200515563475 ], [ 71.363044619999926, 38.24850515563476 ], [ 70.953044619999901, 38.471805155634755 ], [ 70.161344619999909, 37.933405155634759 ], [ 70.286344619999909, 37.702305155634761 ], [ 70.155744619999894, 37.536205155634761 ], [ 69.515744619999907, 37.580805155634735 ], [ 69.409944619999919, 37.175305155634746 ], [ 69.246644619999927, 37.09410515563475 ], [ 68.887744619999921, 37.338605155634738 ], [ 68.001344619999884, 36.936105155634735 ], [ 67.743844619999891, 37.224705155634737 ], [ 67.239944619999903, 37.186105155634735 ], [ 67.0041446199999, 37.382205155634736 ], [ 66.289944619999915, 37.32470515563476 ], [ 65.701344619999929, 37.536905155634756 ], [ 65.554444619999913, 37.256405155634738 ], [ 64.789444619999927, 37.118005155634748 ], [ 64.473844619999909, 36.255505155634737 ], [ 63.119444619999911, 35.861905155634744 ], [ 63.091944619999936, 35.432505155634757 ], [ 62.309144619999927, 35.141705155634739 ], [ 62.029644619999885, 35.448605155634752 ], [ 61.595844619999923, 35.444105155634745 ], [ 61.2535446199999, 35.632805155634756 ], [ 61.157144619999883, 36.650005155634759 ], [ 60.333044619999896, 36.656105155634762 ], [ 60.029444619999936, 37.036905155634756 ], [ 59.479944619999912, 37.23280515563475 ], [ 59.338844619999918, 37.539205155634747 ], [ 57.450244619999921, 37.939105155634749 ], [ 57.21214461999989, 38.28190515563476 ], [ 56.442744619999928, 38.260005155634744 ], [ 56.219644619999883, 38.071205155634757 ], [ 55.442744619999928, 38.086105155634741 ], [ 54.833044619999896, 37.746405155634747 ], [ 54.681044619999909, 37.443605155634756 ], [ 53.905644619999919, 37.350805155634745 ], [ 53.824444619999895, 38.521405155634753 ], [ 53.9838446199999, 38.915805155634743 ], [ 53.541344619999904, 39.335805155634759 ], [ 53.164644619999933, 39.347805155634759 ], [ 53.162444619999917, 39.175505155634752 ], [ 53.122444619999897, 39.435005155634755 ], [ 53.264144619999911, 39.655305155634736 ], [ 53.211944619999883, 39.518605155634745 ], [ 53.7344446199999, 39.52390515563475 ], [ 53.408344619999923, 39.665805155634743 ], [ 53.575844619999884, 39.966105155634736 ], [ 52.934644619999915, 39.99050515563475 ], [ 53.004644619999908, 39.76220515563476 ], [ 52.737744619999887, 40.050805155634762 ], [ 52.721944619999931, 40.446105155634754 ], [ 52.918544619999921, 41.081705155634737 ], [ 53.111644619999936, 40.767805155634747 ], [ 53.473544619999927, 40.728905155634735 ], [ 53.596644619999893, 40.894405155634743 ], [ 53.746344619999888, 40.615305155634744 ], [ 54.417744619999894, 40.703605155634747 ], [ 54.244644619999917, 40.880305155634758 ], [ 54.701944619999892, 40.871705155634757 ], [ 54.7338446199999, 41.102205155634735 ], [ 54.072744619999924, 41.475505155634735 ], [ 53.908844619999911, 42.05470515563475 ], [ 53.651944619999881, 42.143005155634754 ], [ 52.946644619999915, 41.973005155634738 ], [ 52.815844619999893, 41.695805155634744 ], [ 52.876044619999902, 41.048905155634756 ], [ 52.430544619999921, 41.755805155634746 ], [ 52.405744619999894, 42.09440515563476 ], [ 52.738344619999907, 42.710305155634742 ], [ 51.902444619999926, 42.841905155634734 ], [ 51.655544619999887, 43.183305155634756 ], [ 51.265544619999901, 43.153005155634744 ], [ 51.315844619999893, 43.44970515563476 ], [ 50.839944619999926, 44.193005155634737 ], [ 50.230544619999932, 44.374405155634761 ], [ 50.315544619999912, 44.65860515563476 ], [ 51.570244619999926, 44.51390515563476 ], [ 50.953044619999901, 44.861905155634744 ], [ 51.405244619999905, 45.370505155634746 ], [ 53.228044619999935, 45.33780515563474 ], [ 52.7330446199999, 45.549405155634744 ], [ 53.0857446199999, 46.007205155634736 ], [ 53.164144619999888, 46.317205155634738 ], [ 52.996644619999927, 46.488005155634752 ], [ 53.194144619999918, 46.715005155634756 ], [ 52.865844619999905, 46.951905155634748 ], [ 52.450844619999884, 46.995805155634756 ], [ 52.173144619999903, 46.805505155634748 ], [ 51.189944619999892, 47.114705155634752 ], [ 49.812144619999913, 46.53190515563476 ], [ 49.324144619999913, 46.565005155634751 ], [ 49.371344619999888, 46.393305155634735 ], [ 49.222544619999894, 46.346305155634738 ], [ 48.560544619999916, 46.565005155634751 ], [ 48.538544619999925, 46.751605155634749 ], [ 49.027144619999888, 46.776105155634738 ], [ 48.20444461999989, 47.705005155634737 ], [ 47.435744619999923, 47.843605155634762 ], [ 47.383244619999914, 47.688905155634743 ], [ 47.136644619999913, 47.822505155634744 ], [ 47.122744619999935, 48.271705155634734 ], [ 46.499144619999925, 48.417505155634743 ], [ 46.778844619999916, 48.936605155634751 ], [ 47.056344619999891, 49.124405155634761 ], [ 46.795844619999912, 49.339705155634746 ], [ 46.929444619999913, 49.863605155634744 ], [ 47.349444619999929, 50.080305155634747 ], [ 47.320844619999889, 50.299205155634738 ], [ 47.62024461999988, 50.460005155634761 ], [ 48.251644619999922, 49.869705155634747 ], [ 48.7969446199999, 49.941905155634757 ], [ 48.916944619999924, 50.034205155634751 ], [ 48.697444619999885, 50.591905155634734 ], [ 49.431044619999909, 50.855005155634743 ], [ 49.461944619999883, 51.124205155634755 ], [ 50.363344619999907, 51.316905155634757 ], [ 50.602744619999896, 51.640005155634739 ], [ 50.810544619999916, 51.591705155634756 ], [ 50.7732446199999, 51.769205155634737 ], [ 51.389944619999881, 51.63830515563474 ], [ 51.303044619999923, 51.479705155634761 ], [ 51.690844619999893, 51.455305155634747 ], [ 51.874144619999925, 51.673605155634746 ], [ 52.3383446199999, 51.782205155634742 ], [ 52.603344619999916, 51.456905155634743 ], [ 53.428544619999911, 51.491705155634762 ], [ 53.678344619999905, 51.227505155634745 ], [ 54.506344619999936, 50.856905155634749 ], [ 54.397744619999912, 50.625505155634741 ], [ 54.524744619999922, 50.528205155634751 ], [ 54.701944619999892, 50.606905155634749 ], [ 54.548544619999916, 50.922205155634757 ], [ 54.647144619999892, 51.036905155634756 ], [ 55.69244461999989, 50.532505155634752 ], [ 56.510844619999887, 51.083305155634761 ], [ 56.729144619999886, 50.977805155634755 ], [ 57.133344619999889, 51.088005155634747 ], [ 57.481944619999922, 50.864705155634752 ], [ 57.741944619999913, 50.913605155634755 ], [ 57.794444619999922, 51.118905155634749 ], [ 58.3377446199999, 51.156105155634762 ], [ 58.609944619999908, 51.038305155634745 ], [ 58.665544619999935, 50.80500515563476 ], [ 59.492444619999901, 50.629405155634757 ], [ 59.542444619999912, 50.478305155634743 ], [ 59.819644619999906, 50.547205155634757 ], [ 60.043544619999921, 50.863305155634762 ], [ 60.698044619999905, 50.661705155634749 ], [ 61.403544619999934, 50.790005155634745 ], [ 61.685744619999923, 51.265805155634737 ], [ 60.942944619999935, 51.618905155634749 ], [ 60.386644619999913, 51.672505155634738 ], [ 60.496644619999927, 51.801905155634742 ], [ 60.0021446199999, 51.958305155634761 ], [ 61.061944619999906, 52.342505155634754 ], [ 60.694144619999918, 52.680805155634758 ], [ 61.09914461999989, 52.981705155634742 ], [ 62.118344619999903, 53.00420515563475 ], [ 62.096944619999931, 53.127505155634751 ], [ 61.184644619999915, 53.306605155634756 ], [ 61.241944619999913, 53.506905155634755 ], [ 61.577444619999881, 53.51330515563474 ], [ 60.905544619999887, 53.620305155634739 ], [ 61.226944619999927, 53.811905155634761 ], [ 61.014144619999911, 53.947505155634744 ], [ 61.420244619999892, 54.06670515563475 ], [ 62.3580446199999, 54.022805155634742 ], [ 62.547444619999908, 53.879405155634757 ], [ 62.591344619999916, 54.05300515563475 ], [ 63.172144619999926, 54.186405155634745 ], [ 64.924344619999886, 54.40970515563474 ], [ 65.216344619999916, 54.318905155634738 ], [ 65.218544619999932, 54.527805155634738 ], [ 65.48324461999988, 54.638005155634758 ], [ 68.205244619999917, 54.966105155634736 ], [ 68.33084461999988, 55.080505155634754 ], [ 68.220244619999903, 55.187205155634743 ], [ 68.625744619999921, 55.201905155634748 ], [ 68.731344619999902, 55.370505155634746 ], [ 69.002444619999892, 55.287505155634747 ], [ 68.952444619999881, 55.444705155634736 ], [ 69.185544619999916, 55.343905155634744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 33, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Caucasus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.739744619999897, 43.932205155634747 ], [ 47.6291446199999, 43.940805155634749 ], [ 47.628044619999912, 43.974405155634756 ], [ 47.785544619999882, 43.958905155634753 ], [ 47.739744619999897, 43.932205155634747 ] ] ], [ [ [ 38.4921446199999, 46.860505155634755 ], [ 38.911344619999909, 46.821905155634752 ], [ 38.839444619999881, 46.620305155634739 ], [ 39.082744619999914, 46.598905155634739 ], [ 39.433844619999888, 46.807805155634739 ], [ 40.053044619999923, 46.772105155634748 ], [ 40.041344619999904, 46.550805155634762 ], [ 40.213044619999891, 46.530505155634742 ], [ 40.322444619999885, 46.282205155634742 ], [ 40.995544619999919, 46.299205155634738 ], [ 41.161544619999916, 45.954005155634761 ], [ 42.088044619999891, 45.947205155634762 ], [ 42.333644619999916, 46.127805155634761 ], [ 42.318844619999936, 45.96940515563476 ], [ 42.517244619999929, 45.989405155634742 ], [ 42.922744619999889, 46.24220515563475 ], [ 43.891344619999927, 45.941105155634759 ], [ 44.219944619999922, 45.603005155634762 ], [ 45.538844619999907, 45.17940515563474 ], [ 45.706044619999886, 44.975805155634745 ], [ 46.881344619999936, 44.788005155634735 ], [ 46.700044619999915, 44.442805155634758 ], [ 47.265844619999882, 44.143605155634745 ], [ 47.501144619999934, 43.774105155634757 ], [ 47.407244619999915, 43.501105155634761 ], [ 47.539144619999888, 43.859705155634757 ], [ 47.698344619999887, 43.868905155634749 ], [ 47.453844619999927, 43.086105155634741 ], [ 47.738344619999907, 42.633905155634736 ], [ 49.039944619999915, 41.414105155634743 ], [ 49.528044619999889, 40.662805155634757 ], [ 50.231344619999902, 40.493605155634739 ], [ 50.374944619999894, 40.26220515563476 ], [ 49.960844619999932, 40.348905155634739 ], [ 49.488044619999926, 40.150505155634747 ], [ 49.280844619999925, 39.500505155634741 ], [ 49.414144619999888, 39.378305155634749 ], [ 49.140544619999901, 38.977205155634735 ], [ 48.955544619999898, 39.165305155634755 ], [ 48.888244619999909, 38.442405155634745 ], [ 48.623044619999916, 38.395305155634745 ], [ 48.020844619999934, 38.835505155634749 ], [ 48.312444619999894, 39.007805155634756 ], [ 48.119944619999899, 39.26360515563475 ], [ 48.359744619999901, 39.38520515563475 ], [ 47.976644619999888, 39.719205155634754 ], [ 46.540344619999928, 38.875605155634744 ], [ 45.439444619999904, 38.998005155634743 ], [ 44.487744619999887, 39.96280515563474 ], [ 43.657444619999922, 40.108605155634748 ], [ 43.673344619999909, 40.925005155634736 ], [ 42.840244619999908, 41.578905155634757 ], [ 42.472244619999913, 41.433305155634756 ], [ 41.5315446199999, 41.52390515563475 ], [ 41.774744619999922, 41.885605155634735 ], [ 41.438644619999934, 42.731705155634742 ], [ 39.923344619999909, 43.406405155634744 ], [ 38.760244619999924, 44.270305155634745 ], [ 38.180744619999928, 44.397205155634751 ], [ 37.78804461999988, 44.725005155634747 ], [ 37.488244619999932, 44.669405155634749 ], [ 37.200244619999921, 44.981705155634742 ], [ 36.579944619999935, 45.175505155634752 ], [ 36.960544619999894, 45.275005155634759 ], [ 36.663244619999887, 45.330805155634735 ], [ 36.83084461999988, 45.436605155634751 ], [ 37.077144619999899, 45.236405155634756 ], [ 37.737144619999924, 45.299205155634738 ], [ 37.591344619999916, 45.627505155634751 ], [ 37.9402446199999, 46.025805155634757 ], [ 38.574444619999895, 46.089705155634746 ], [ 37.904144619999897, 46.402205155634746 ], [ 37.732744619999892, 46.665305155634755 ], [ 38.581644619999906, 46.650805155634757 ], [ 38.373244619999923, 46.715505155634744 ], [ 38.4921446199999, 46.860505155634755 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 34, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Western Asia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.034444619999931, 26.484705155634757 ], [ 53.946344619999934, 26.49220515563475 ], [ 53.903544619999934, 26.536105155634758 ], [ 54.018844619999925, 26.554205155634762 ], [ 54.034444619999931, 26.484705155634757 ] ] ], [ [ [ 53.3180446199999, 26.797805155634748 ], [ 53.203244619999907, 26.802505155634762 ], [ 53.1516446199999, 26.846405155634741 ], [ 53.304944619999901, 26.823605155634752 ], [ 53.3180446199999, 26.797805155634748 ] ] ], [ [ [ 56.346644619999893, 26.822205155634762 ], [ 56.343844619999913, 26.884205155634746 ], [ 56.4085446199999, 26.88550515563476 ], [ 56.398044619999894, 26.850505155634735 ], [ 56.346644619999893, 26.822205155634762 ] ] ], [ [ [ 55.734944619999908, 26.838005155634747 ], [ 55.731644619999884, 26.797505155634738 ], [ 55.632744619999926, 26.794705155634759 ], [ 55.688544619999902, 26.929205155634762 ], [ 55.734944619999908, 26.838005155634747 ] ] ], [ [ [ 56.24524461999988, 26.927505155634762 ], [ 55.987144619999924, 26.727805155634755 ], [ 55.2835446199999, 26.558605155634737 ], [ 55.769944619999933, 26.792805155634753 ], [ 55.7521446199999, 26.951905155634748 ], [ 56.24524461999988, 26.927505155634762 ] ] ], [ [ [ 56.470844619999923, 27.037805155634757 ], [ 56.432444619999899, 27.075505155634758 ], [ 56.469944619999922, 27.108605155634748 ], [ 56.509144619999915, 27.071705155634746 ], [ 56.470844619999923, 27.037805155634757 ] ] ], [ [ [ 50.328844619999927, 29.208005155634751 ], [ 50.315844619999893, 29.214705155634746 ], [ 50.291344619999904, 29.278005155634744 ], [ 50.3383446199999, 29.268905155634755 ], [ 50.328844619999927, 29.208005155634751 ] ] ], [ [ [ 33.474644619999935, 31.140505155634756 ], [ 33.424944619999906, 31.165505155634762 ], [ 33.267244619999929, 31.21480515563475 ], [ 33.400544619999891, 31.181705155634759 ], [ 33.474644619999935, 31.140505155634756 ] ] ], [ [ [ 33.195244619999926, 31.23280515563475 ], [ 33.260744619999912, 31.215605155634748 ], [ 33.101644619999888, 31.227205155634735 ], [ 32.976644619999888, 31.168305155634741 ], [ 33.0960446199999, 31.23250515563474 ], [ 33.195244619999926, 31.23280515563475 ] ] ], [ [ [ 34.119944619999899, 35.400805155634757 ], [ 33.9002446199999, 35.19800515563476 ], [ 34.083344619999934, 34.959405155634741 ], [ 33.677444619999903, 34.965505155634744 ], [ 33.030844619999925, 34.562505155634753 ], [ 32.404144619999897, 34.750805155634751 ], [ 32.270244619999914, 35.062505155634753 ], [ 32.882744619999926, 35.162205155634737 ], [ 32.921244619999925, 35.39320515563476 ], [ 33.631644619999918, 35.350305155634757 ], [ 34.590244619999908, 35.690305155634761 ], [ 34.119944619999899, 35.400805155634757 ] ] ], [ [ [ 27.786644619999919, 35.890505155634756 ], [ 27.719644619999912, 36.166105155634753 ], [ 28.225844619999918, 36.453005155634756 ], [ 28.122744619999906, 36.185805155634753 ], [ 27.786644619999919, 35.890505155634756 ] ] ], [ [ [ 27.4002446199999, 36.372505155634755 ], [ 27.2946446199999, 36.424405155634744 ], [ 27.297744619999918, 36.464405155634736 ], [ 27.445844619999917, 36.40860515563476 ], [ 27.4002446199999, 36.372505155634755 ] ] ], [ [ [ 27.854644619999902, 36.527205155634746 ], [ 27.764944619999909, 36.575005155634742 ], [ 27.859644619999898, 36.65030515563474 ], [ 27.875244619999904, 36.542805155634753 ], [ 27.854644619999902, 36.527205155634746 ] ] ], [ [ [ 26.965844619999899, 36.681705155634759 ], [ 26.917744619999894, 36.755305155634758 ], [ 27.064144619999894, 36.838905155634748 ], [ 27.352744619999896, 36.872205155634745 ], [ 26.965844619999899, 36.681705155634759 ] ] ], [ [ [ 26.975544619999908, 36.924405155634744 ], [ 26.919144619999912, 36.946705155634746 ], [ 26.8908446199999, 37.07640515563476 ], [ 27.048344619999909, 36.993605155634739 ], [ 26.975544619999908, 36.924405155634744 ] ] ], [ [ [ 26.886644619999913, 37.096705155634751 ], [ 26.820544619999907, 37.110505155634755 ], [ 26.769144619999906, 37.176405155634754 ], [ 26.858344619999912, 37.181105155634739 ], [ 26.886644619999913, 37.096705155634751 ] ] ], [ [ [ 26.767444619999907, 37.186905155634761 ], [ 26.772144619999921, 37.206705155634737 ], [ 26.787444619999917, 37.206905155634743 ], [ 26.788544619999897, 37.202205155634758 ], [ 26.767444619999907, 37.186905155634761 ] ] ], [ [ [ 26.020844619999906, 37.514405155634748 ], [ 26.0680446199999, 37.631905155634755 ], [ 26.361044619999916, 37.686705155634755 ], [ 26.214944619999898, 37.558905155634747 ], [ 26.020844619999906, 37.514405155634748 ] ] ], [ [ [ 27.069444619999899, 37.711905155634739 ], [ 26.8180446199999, 37.636705155634743 ], [ 26.571644619999915, 37.730505155634759 ], [ 26.748544619999905, 37.811405155634745 ], [ 27.069444619999899, 37.711905155634739 ] ] ], [ [ [ 26.0255446199999, 38.176905155634742 ], [ 25.862444619999906, 38.241405155634752 ], [ 25.991644619999903, 38.343905155634744 ], [ 25.861644619999907, 38.583605155634743 ], [ 26.159444619999903, 38.544405155634749 ], [ 26.0255446199999, 38.176905155634742 ] ] ], [ [ [ 25.599944619999917, 38.53190515563476 ], [ 25.561944619999906, 38.530805155634752 ], [ 25.529144619999897, 38.599705155634737 ], [ 25.613344619999907, 38.590005155634756 ], [ 25.599944619999917, 38.53190515563476 ] ] ], [ [ [ 26.3771446199999, 39.273605155634741 ], [ 26.614444619999915, 39.012505155634742 ], [ 26.086944619999912, 39.075005155634742 ], [ 26.261644619999913, 39.202505155634739 ], [ 26.0680446199999, 39.084405155634741 ], [ 25.832144619999895, 39.183605155634737 ], [ 26.221644619999921, 39.383005155634734 ], [ 26.3771446199999, 39.273605155634741 ] ] ], [ [ [ 26.078044619999901, 39.78360515563476 ], [ 26.018544619999915, 39.799405155634744 ], [ 25.974944619999917, 39.830005155634737 ], [ 26.075844619999913, 39.839705155634746 ], [ 26.078044619999901, 39.78360515563476 ] ] ], [ [ [ 27.6071446199999, 40.572205155634762 ], [ 27.531044619999903, 40.648305155634759 ], [ 27.735244619999918, 40.634405155634752 ], [ 27.723844619999909, 40.61550515563475 ], [ 27.6071446199999, 40.572205155634762 ] ] ], [ [ [ 35.096944619999931, 41.961605155634757 ], [ 35.506344619999936, 41.638005155634758 ], [ 36.051044619999914, 41.691905155634757 ], [ 36.429144619999931, 41.242805155634741 ], [ 36.809944619999897, 41.355505155634759 ], [ 37.526344619999918, 41.030305155634736 ], [ 37.687444619999894, 41.13720515563476 ], [ 38.361344619999898, 40.909405155634758 ], [ 39.421044619999918, 41.109405155634747 ], [ 40.1285446199999, 40.916405155634735 ], [ 41.5315446199999, 41.52390515563475 ], [ 42.472144619999881, 41.433305155634756 ], [ 42.827444619999881, 41.585005155634761 ], [ 43.673344619999909, 40.925005155634736 ], [ 43.657444619999922, 40.108605155634748 ], [ 44.487744619999887, 39.96280515563474 ], [ 45.439344619999929, 38.998005155634743 ], [ 46.540344619999928, 38.875605155634744 ], [ 47.976644619999888, 39.719205155634754 ], [ 48.359744619999901, 39.38520515563475 ], [ 48.119944619999899, 39.26360515563475 ], [ 48.312444619999894, 39.007805155634756 ], [ 48.020744619999903, 38.835505155634749 ], [ 48.623044619999916, 38.395305155634745 ], [ 48.888244619999909, 38.442405155634745 ], [ 49.102444619999915, 37.643005155634754 ], [ 50.191344619999882, 37.389205155634741 ], [ 50.333544619999884, 37.134405155634752 ], [ 51.000244619999933, 36.766105155634747 ], [ 51.873844619999886, 36.584205155634734 ], [ 54.008544619999896, 36.948305155634742 ], [ 53.6074446199999, 36.868305155634758 ], [ 54.013844619999929, 36.816105155634759 ], [ 54.031644619999895, 36.948305155634742 ], [ 53.905644619999919, 37.350805155634745 ], [ 54.681044619999909, 37.443605155634756 ], [ 55.140844619999882, 37.956105155634745 ], [ 57.21214461999989, 38.28190515563476 ], [ 57.450244619999921, 37.939105155634749 ], [ 59.338844619999918, 37.539205155634747 ], [ 59.479944619999912, 37.23280515563475 ], [ 60.029444619999936, 37.036905155634756 ], [ 60.333044619999896, 36.656105155634762 ], [ 61.157144619999883, 36.650005155634759 ], [ 61.2535446199999, 35.632805155634756 ], [ 61.595844619999923, 35.444105155634745 ], [ 62.029644619999885, 35.448605155634752 ], [ 62.309144619999927, 35.141705155634739 ], [ 63.091944619999936, 35.432505155634757 ], [ 63.119444619999911, 35.861905155634744 ], [ 64.473844619999909, 36.255505155634737 ], [ 64.789444619999927, 37.118005155634748 ], [ 65.554444619999913, 37.256405155634738 ], [ 65.701344619999929, 37.536905155634756 ], [ 66.289944619999915, 37.32470515563476 ], [ 67.0041446199999, 37.382205155634736 ], [ 67.239944619999903, 37.186105155634735 ], [ 67.743844619999891, 37.224705155634737 ], [ 68.001344619999884, 36.936105155634735 ], [ 68.887744619999921, 37.338605155634738 ], [ 69.246644619999927, 37.09410515563475 ], [ 69.409944619999919, 37.175305155634746 ], [ 69.515744619999907, 37.580805155634735 ], [ 70.155744619999894, 37.536205155634761 ], [ 70.286344619999909, 37.702305155634761 ], [ 70.161344619999909, 37.933405155634759 ], [ 70.953044619999901, 38.471805155634755 ], [ 71.363044619999926, 38.24850515563476 ], [ 71.2527446199999, 37.92200515563475 ], [ 71.591944619999936, 37.90260515563476 ], [ 71.429444619999913, 37.07580515563474 ], [ 71.677144619999922, 36.676005155634741 ], [ 72.658444619999898, 37.021205155634746 ], [ 73.307144619999917, 37.462705155634737 ], [ 73.775944619999905, 37.43430515563476 ], [ 73.619944619999899, 37.262505155634742 ], [ 73.738544619999914, 37.221605155634748 ], [ 74.247144619999915, 37.409505155634761 ], [ 74.684244619999902, 37.399705155634749 ], [ 74.915744619999884, 37.237305155634758 ], [ 74.522144619999892, 37.239305155634739 ], [ 74.386644619999913, 37.160605155634741 ], [ 74.558044619999919, 36.96510515563476 ], [ 74.038244619999887, 36.814705155634741 ], [ 72.578544619999889, 36.825405155634755 ], [ 71.624144619999925, 36.458105155634755 ], [ 71.187544619999926, 36.047505155634738 ], [ 71.649444619999883, 35.425005155634736 ], [ 71.496044619999907, 34.959405155634741 ], [ 70.987444619999906, 34.551105155634744 ], [ 71.158844619999911, 34.348305155634748 ], [ 71.081944619999888, 34.055805155634758 ], [ 70.491344619999893, 33.943005155634737 ], [ 69.906344619999913, 34.035305155634759 ], [ 70.326944619999892, 33.331905155634743 ], [ 69.505244619999928, 33.034205155634751 ], [ 69.458344619999934, 32.670505155634757 ], [ 69.248044619999916, 32.443905155634738 ], [ 69.328244619999907, 31.940405155634735 ], [ 68.833044619999896, 31.603905155634735 ], [ 68.570844619999889, 31.825505155634758 ], [ 68.166044619999923, 31.833005155634751 ], [ 67.575544619999903, 31.53190515563476 ], [ 67.778044619999889, 31.332205155634753 ], [ 66.723044619999882, 31.212205155634749 ], [ 66.395544619999896, 30.940805155634749 ], [ 66.256644619999918, 29.851905155634753 ], [ 64.059144619999927, 29.414405155634753 ], [ 62.4844446199999, 29.406105155634762 ], [ 60.867944619999889, 29.863705155634747 ], [ 61.905544619999887, 28.55500515563476 ], [ 62.781344619999913, 28.266905155634745 ], [ 62.782444619999922, 27.26050515563476 ], [ 63.20584461999988, 27.267505155634737 ], [ 63.341944619999936, 27.122505155634755 ], [ 63.176344619999895, 26.631105155634756 ], [ 62.4296446199999, 26.564205155634752 ], [ 62.278044619999889, 26.354005155634738 ], [ 61.8580446199999, 26.234705155634757 ], [ 61.611044619999916, 25.197605155634747 ], [ 61.438544619999902, 25.075305155634751 ], [ 60.622144619999915, 25.268005155634754 ], [ 60.5546446199999, 25.440505155634739 ], [ 60.395244619999914, 25.375505155634741 ], [ 60.461044619999882, 25.26360515563475 ], [ 59.478044619999935, 25.477205155634735 ], [ 59.051944619999915, 25.393605155634745 ], [ 58.818344619999891, 25.560005155634755 ], [ 58.134944619999885, 25.541405155634735 ], [ 57.957744619999914, 25.700305155634751 ], [ 57.3180446199999, 25.770805155634761 ], [ 57.025544619999891, 26.842805155634736 ], [ 56.808844619999888, 27.123605155634735 ], [ 56.132744619999926, 27.160305155634759 ], [ 54.794644619999929, 26.490005155634762 ], [ 54.290844619999916, 26.718305155634752 ], [ 53.686944619999906, 26.73280515563475 ], [ 52.603044619999935, 27.350805155634745 ], [ 52.4402446199999, 27.640805155634737 ], [ 51.430244619999883, 27.937805155634734 ], [ 51.057444619999899, 28.734405155634747 ], [ 50.801944619999915, 28.924205155634738 ], [ 50.925244619999887, 29.062505155634753 ], [ 50.641044619999889, 29.138005155634758 ], [ 50.641644619999909, 29.465805155634754 ], [ 50.147444619999931, 29.932805155634739 ], [ 50.077444619999881, 30.183905155634747 ], [ 49.551344619999895, 30.007505155634746 ], [ 48.923844619999898, 30.380805155634746 ], [ 49.195244619999926, 30.354405155634751 ], [ 49.192744619999928, 30.489705155634752 ], [ 48.944644619999906, 30.493005155634748 ], [ 48.859944619999908, 30.314705155634741 ], [ 48.9205446199999, 30.043005155634759 ], [ 48.543244619999882, 29.926705155634735 ], [ 47.199144619999913, 30.031105155634762 ], [ 46.690344619999905, 29.230305155634753 ], [ 46.426644619999934, 29.061705155634755 ], [ 44.721644619999893, 29.198305155634742 ], [ 42.084944619999931, 31.111705155634738 ], [ 40.413344619999918, 31.948305155634742 ], [ 39.19674461999989, 32.154905155634751 ], [ 37.005244619999928, 31.505505155634737 ], [ 38.001344619999884, 30.50420515563475 ], [ 37.667444619999912, 30.33640515563475 ], [ 37.5027446199999, 30.002205155634741 ], [ 36.743544619999909, 29.864705155634752 ], [ 36.069944619999887, 29.188905155634743 ], [ 34.9613446199999, 29.360805155634736 ], [ 34.962544619999903, 29.551505155634757 ], [ 34.744144619999929, 29.291405155634735 ], [ 34.254444619999902, 27.728605155634753 ], [ 33.242744619999883, 28.55440515563474 ], [ 33.170244619999892, 29.004705155634738 ], [ 32.741344619999893, 29.454705155634755 ], [ 32.649044619999927, 29.788405155634749 ], [ 32.854644619999931, 29.913605155634755 ], [ 32.599344619999897, 31.060105155634758 ], [ 33.931944619999911, 31.182205155634747 ], [ 34.586044619999882, 31.726905155634753 ], [ 35.649444619999883, 34.283905155634741 ], [ 35.9844446199999, 34.529205155634756 ], [ 35.9199446199999, 35.421105155634748 ], [ 35.7338446199999, 35.581705155634737 ], [ 35.980144619999919, 35.995505155634746 ], [ 35.782744619999903, 36.308605155634737 ], [ 36.188844619999884, 36.59440515563476 ], [ 36.193344619999891, 36.791905155634751 ], [ 36.012744619999921, 36.925305155634746 ], [ 35.339944619999926, 36.539205155634747 ], [ 34.659444619999931, 36.805305155634741 ], [ 33.988544619999914, 36.277805155634738 ], [ 32.808844619999888, 36.025505155634747 ], [ 32.369444619999911, 36.173905155634756 ], [ 32.015244619999919, 36.545505155634757 ], [ 31.046644619999881, 36.849105155634746 ], [ 30.623344619999898, 36.850805155634745 ], [ 30.406944619999933, 36.203605155634747 ], [ 30.200844619999884, 36.303605155634742 ], [ 29.677144619999922, 36.118305155634758 ], [ 29.141644619999909, 36.352805155634755 ], [ 29.052444619999903, 36.681105155634739 ], [ 28.454144619999909, 36.881405155634738 ], [ 28.256344619999908, 36.842805155634736 ], [ 28.275844619999901, 36.729405155634751 ], [ 27.9838446199999, 36.552805155634744 ], [ 28.118344619999903, 36.800305155634746 ], [ 27.475244619999899, 36.650005155634759 ], [ 27.358544619999918, 36.706905155634743 ], [ 28.025844619999901, 36.822805155634754 ], [ 28.328544619999917, 37.039705155634735 ], [ 27.2524446199999, 36.967505155634754 ], [ 27.322744619999895, 37.151905155634736 ], [ 27.595244619999903, 37.23250515563474 ], [ 27.414444619999898, 37.410505155634738 ], [ 27.193844619999908, 37.350805155634745 ], [ 27.267744619999917, 37.955505155634754 ], [ 26.275844619999901, 38.264405155634748 ], [ 26.510544619999905, 38.423305155634736 ], [ 26.369944619999899, 38.661905155634756 ], [ 26.562144619999913, 38.599705155634737 ], [ 26.682144619999917, 38.307505155634757 ], [ 27.1619446199999, 38.443905155634738 ], [ 26.730844619999914, 38.645805155634761 ], [ 27.064444619999904, 38.874405155634761 ], [ 26.802744619999913, 38.954405155634745 ], [ 26.884644619999904, 39.073305155634742 ], [ 26.644644619999895, 39.263005155634758 ], [ 26.951644619999911, 39.552805155634744 ], [ 26.067144619999908, 39.483005155634757 ], [ 26.174644619999896, 39.979405155634751 ], [ 26.707144619999895, 40.385005155634744 ], [ 27.264144619999911, 40.458605155634743 ], [ 27.772444619999902, 40.313005155634741 ], [ 27.8808446199999, 40.380005155634748 ], [ 27.757144619999906, 40.530005155634754 ], [ 28.0255446199999, 40.486105155634746 ], [ 27.947744619999895, 40.35750515563474 ], [ 28.985244619999918, 40.356905155634749 ], [ 29.148044619999922, 40.433005155634746 ], [ 28.7952446199999, 40.551405155634754 ], [ 29.938044619999914, 40.723905155634739 ], [ 29.129444619999902, 40.914405155634753 ], [ 29.0255446199999, 41.034405155634758 ], [ 29.166044619999894, 41.226705155634747 ], [ 31.231044619999921, 41.088905155634748 ], [ 32.282144619999883, 41.722805155634759 ], [ 33.333844619999923, 42.020305155634745 ], [ 34.715544619999889, 41.942505155634748 ], [ 34.957744619999914, 42.092805155634736 ], [ 35.096944619999931, 41.961605155634757 ] ], [ [ 44.034144619999893, 39.376505155634746 ], [ 44.060544619999916, 39.352505155634745 ], [ 44.034344619999899, 39.37920515563475 ], [ 44.034144619999893, 39.376505155634746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 35, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Arabian Peninsula" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.438544619999902, 12.631105155634742 ], [ 43.394944619999933, 12.64890515563475 ], [ 43.396044619999884, 12.666405155634749 ], [ 43.443844619999936, 12.659405155634744 ], [ 43.438544619999902, 12.631105155634742 ] ] ], [ [ [ 42.755844619999891, 13.698605155634752 ], [ 42.677144619999922, 13.666105155634753 ], [ 42.793844619999902, 13.781105155634748 ], [ 42.789444619999927, 13.745305155634753 ], [ 42.755844619999891, 13.698605155634752 ] ] ], [ [ [ 42.787444619999917, 13.910005155634749 ], [ 42.689144619999922, 14.01360515563475 ], [ 42.766344619999927, 14.066905155634743 ], [ 42.799644619999924, 14.000005155634753 ], [ 42.787444619999917, 13.910005155634749 ] ] ], [ [ [ 42.594644619999883, 15.271905155634755 ], [ 42.568844619999936, 15.392505155634751 ], [ 42.642444619999935, 15.458305155634761 ], [ 42.652144619999888, 15.393605155634745 ], [ 42.594644619999883, 15.271905155634755 ] ] ], [ [ [ 41.957744619999914, 16.708905155634753 ], [ 42.077444619999881, 16.809205155634757 ], [ 42.179944619999901, 16.566905155634757 ], [ 41.83854461999988, 16.718905155634744 ], [ 41.7535446199999, 16.876105155634761 ], [ 41.957744619999914, 16.708905155634753 ] ] ], [ [ [ 41.986644619999936, 16.753305155634749 ], [ 41.83714461999989, 16.868605155634739 ], [ 41.845544619999885, 17.009205155634746 ], [ 41.941344619999882, 16.974205155634749 ], [ 41.986644619999936, 16.753305155634749 ] ] ], [ [ [ 55.874644619999913, 17.49080515563476 ], [ 55.8594446199999, 17.486105155634746 ], [ 55.829144619999909, 17.493605155634739 ], [ 55.859644619999926, 17.516705155634739 ], [ 55.874644619999913, 17.49080515563476 ] ] ], [ [ [ 56.024144619999902, 17.48420515563474 ], [ 55.957444619999933, 17.519205155634737 ], [ 56.093544619999932, 17.514705155634758 ], [ 56.063544619999902, 17.498005155634743 ], [ 56.024144619999902, 17.48420515563474 ] ] ], [ [ [ 58.842744619999905, 20.441105155634759 ], [ 58.7835446199999, 20.275505155634747 ], [ 58.64964461999989, 20.168905155634761 ], [ 58.89964461999989, 20.693005155634737 ], [ 58.842744619999905, 20.441105155634759 ] ] ], [ [ [ 53.965244619999908, 24.176705155634735 ], [ 53.784144619999893, 24.125005155634753 ], [ 53.623844619999886, 24.162805155634757 ], [ 53.851044619999925, 24.269205155634737 ], [ 53.965244619999908, 24.176705155634735 ] ] ], [ [ [ 53.324144619999913, 24.267805155634747 ], [ 53.271944619999886, 24.258305155634744 ], [ 53.243544619999909, 24.276705155634758 ], [ 53.341044619999934, 24.328905155634757 ], [ 53.324144619999913, 24.267805155634747 ] ] ], [ [ [ 53.109644619999926, 24.311405155634745 ], [ 53.07944461999989, 24.325505155634758 ], [ 53.085844619999932, 24.352805155634755 ], [ 53.105244619999894, 24.341905155634734 ], [ 53.109644619999926, 24.311405155634745 ] ] ], [ [ [ 54.264644619999899, 24.288905155634737 ], [ 54.227144619999933, 24.270505155634751 ], [ 54.174444619999917, 24.325005155634742 ], [ 54.231344619999902, 24.350805155634745 ], [ 54.264644619999899, 24.288905155634737 ] ] ], [ [ [ 52.616044619999911, 24.268605155634745 ], [ 52.572744619999924, 24.339705155634746 ], [ 52.639644619999899, 24.372205155634745 ], [ 52.656044619999932, 24.315305155634761 ], [ 52.616044619999911, 24.268605155634745 ] ] ], [ [ [ 53.398044619999894, 24.32470515563476 ], [ 53.387444619999883, 24.368905155634749 ], [ 53.428344619999905, 24.36690515563474 ], [ 53.430244619999883, 24.348305155634748 ], [ 53.398044619999894, 24.32470515563476 ] ] ], [ [ [ 54.472444619999919, 24.418905155634761 ], [ 54.382144619999906, 24.437505155634753 ], [ 54.328344619999882, 24.459705155634751 ], [ 54.380244619999928, 24.502505155634751 ], [ 54.472444619999919, 24.418905155634761 ] ] ], [ [ [ 54.515544619999901, 24.504705155634738 ], [ 54.485544619999928, 24.509205155634746 ], [ 54.469644619999883, 24.536905155634756 ], [ 54.478044619999935, 24.545505155634757 ], [ 54.515544619999901, 24.504705155634738 ] ] ], [ [ [ 54.440844619999893, 24.501105155634761 ], [ 54.4008446199999, 24.514705155634758 ], [ 54.465544619999889, 24.590005155634756 ], [ 54.4613446199999, 24.508305155634744 ], [ 54.440844619999893, 24.501105155634761 ] ] ], [ [ [ 37.080544619999898, 24.959205155634734 ], [ 37.035844619999921, 24.963005155634747 ], [ 37.041644619999886, 24.996905155634735 ], [ 37.050844619999907, 24.999405155634761 ], [ 37.080544619999898, 24.959205155634734 ] ] ], [ [ [ 55.617444619999901, 25.570005155634746 ], [ 55.609644619999926, 25.569405155634755 ], [ 55.620544619999919, 25.583605155634743 ], [ 55.619444619999911, 25.575305155634751 ], [ 55.617444619999901, 25.570005155634746 ] ] ], [ [ [ 50.812444619999894, 25.642205155634755 ], [ 50.792444619999912, 25.641905155634745 ], [ 50.782144619999883, 25.659405155634758 ], [ 50.821344619999934, 25.651905155634736 ], [ 50.812444619999894, 25.642205155634755 ] ] ], [ [ [ 50.813344619999896, 25.678605155634742 ], [ 50.804144619999931, 25.680505155634748 ], [ 50.80774461999988, 25.689705155634741 ], [ 50.814444619999904, 25.683305155634756 ], [ 50.813344619999896, 25.678605155634742 ] ] ], [ [ [ 50.761944619999895, 25.595305155634762 ], [ 50.741644619999931, 25.683005155634746 ], [ 50.796644619999881, 25.728305155634743 ], [ 50.769144619999906, 25.681705155634759 ], [ 50.761944619999895, 25.595305155634762 ] ] ], [ [ [ 50.769644619999895, 25.746905155634735 ], [ 50.763344619999884, 25.745805155634756 ], [ 50.760544619999905, 25.750305155634734 ], [ 50.764644619999899, 25.754705155634738 ], [ 50.769644619999895, 25.746905155634735 ] ] ], [ [ [ 50.532144619999883, 26.234405155634747 ], [ 50.610244619999889, 26.204205155634739 ], [ 50.573344619999887, 25.809705155634745 ], [ 50.461644619999902, 25.965305155634738 ], [ 50.532144619999883, 26.234405155634747 ] ] ], [ [ [ 50.653544619999934, 26.247505155634755 ], [ 50.609944619999908, 26.247805155634737 ], [ 50.604444619999924, 26.267805155634747 ], [ 50.6271446199999, 26.288905155634737 ], [ 50.653544619999934, 26.247505155634755 ] ] ], [ [ [ 35.754644619999908, 27.094705155634742 ], [ 35.757744619999926, 27.076905155634748 ], [ 35.726344619999907, 27.128605155634759 ], [ 35.747144619999915, 27.108605155634748 ], [ 35.754644619999908, 27.094705155634742 ] ] ], [ [ [ 49.537144619999935, 27.363605155634744 ], [ 49.638544619999891, 27.31640515563474 ], [ 49.452144619999899, 27.285805155634748 ], [ 49.466344619999916, 27.331405155634755 ], [ 49.537144619999935, 27.363605155634744 ] ] ], [ [ [ 34.593544619999932, 27.909205155634751 ], [ 34.499944619999894, 27.941905155634757 ], [ 34.4921446199999, 27.996105155634737 ], [ 34.546644619999881, 27.998605155634735 ], [ 34.593544619999932, 27.909205155634751 ] ] ], [ [ [ 48.362444619999906, 29.450305155634751 ], [ 48.388344619999884, 29.395505155634751 ], [ 48.26694461999989, 29.441105155634759 ], [ 48.283044619999885, 29.468905155634744 ], [ 48.362444619999906, 29.450305155634751 ] ] ], [ [ [ 48.224644619999935, 29.594705155634742 ], [ 48.079944619999935, 29.773305155634759 ], [ 48.152144619999888, 29.99190515563474 ], [ 48.3594446199999, 29.745005155634757 ], [ 48.224644619999935, 29.594705155634742 ] ] ], [ [ [ 48.032144619999883, 29.968005155634742 ], [ 48.037744619999899, 30.011105155634752 ], [ 48.111644619999936, 30.023005155634749 ], [ 48.109944619999908, 30.014705155634758 ], [ 48.032144619999883, 29.968005155634742 ] ] ], [ [ [ 44.721644619999893, 29.198305155634742 ], [ 46.426644619999934, 29.061705155634755 ], [ 46.690344619999905, 29.230305155634753 ], [ 47.1699446199999, 30.015305155634749 ], [ 47.943444619999923, 30.017505155634737 ], [ 48.167144619999931, 29.55300515563475 ], [ 47.9633446199999, 29.627805155634761 ], [ 47.707144619999895, 29.375805155634751 ], [ 48.028544619999934, 29.345005155634752 ], [ 48.875844619999896, 27.838905155634748 ], [ 48.838844619999918, 27.619705155634747 ], [ 49.246044619999907, 27.540505155634762 ], [ 49.30774461999988, 27.442205155634738 ], [ 49.123244619999923, 27.435305155634737 ], [ 49.408844619999911, 27.127205155634741 ], [ 49.520544619999896, 27.186705155634755 ], [ 50.1508446199999, 26.669405155634749 ], [ 49.994944619999899, 26.745505155634746 ], [ 50.219444619999933, 26.300305155634746 ], [ 49.993844619999891, 26.020005155634735 ], [ 50.482744619999892, 25.413905155634737 ], [ 50.770844619999934, 24.721405155634741 ], [ 50.751944619999904, 25.491105155634742 ], [ 50.97554461999988, 25.640805155634737 ], [ 51.038544619999925, 26.046405155634758 ], [ 51.254444619999902, 26.152805155634738 ], [ 51.5680446199999, 25.90830515563475 ], [ 51.472144619999881, 25.518905155634755 ], [ 51.611644619999936, 25.010305155634754 ], [ 51.37024461999988, 24.592805155634736 ], [ 51.210244619999912, 24.630305155634758 ], [ 51.304444619999913, 24.510305155634754 ], [ 51.4921446199999, 24.579705155634755 ], [ 51.287144619999935, 24.293905155634761 ], [ 51.725844619999918, 24.261105155634752 ], [ 51.828044619999901, 23.993005155634748 ], [ 52.254444619999902, 23.980005155634743 ], [ 52.591344619999916, 24.19970515563476 ], [ 53.874144619999925, 24.059705155634745 ], [ 54.381944619999899, 24.252205155634741 ], [ 54.58084461999988, 24.443905155634738 ], [ 54.6502446199999, 24.746905155634735 ], [ 56.020244619999914, 25.875805155634751 ], [ 56.202144619999899, 26.266105155634747 ], [ 56.2344446199999, 26.218005155634742 ], [ 56.397144619999892, 26.208605155634743 ], [ 56.365344619999917, 26.382405155634743 ], [ 56.500844619999896, 26.351705155634747 ], [ 56.474644619999935, 26.141405155634757 ], [ 56.320244619999926, 26.169705155634759 ], [ 56.469544619999908, 26.090605155634748 ], [ 56.263844619999929, 25.662205155634737 ], [ 56.619944619999899, 24.476705155634747 ], [ 57.174644619999924, 23.932205155634747 ], [ 58.605244619999894, 23.635805155634742 ], [ 59.397744619999912, 22.680505155634748 ], [ 59.846944619999931, 22.427205155634752 ], [ 59.34914461999989, 21.446105155634754 ], [ 58.83714461999989, 21.039405155634753 ], [ 58.515844619999882, 20.411705155634749 ], [ 58.209144619999904, 20.398605155634741 ], [ 58.210844619999932, 20.612505155634736 ], [ 57.82944461999989, 20.218905155634744 ], [ 57.687444619999894, 19.711105155634741 ], [ 57.807444619999899, 18.972505155634749 ], [ 56.814444619999904, 18.747705155634762 ], [ 56.353344619999916, 17.934205155634757 ], [ 55.436944619999906, 17.828905155634757 ], [ 55.039944619999915, 17.018605155634745 ], [ 54.095244619999903, 17.015005155634739 ], [ 52.596344619999911, 16.477205155634735 ], [ 52.223844619999909, 16.160805155634748 ], [ 52.189144619999922, 15.605305155634753 ], [ 49.098844619999909, 14.519205155634751 ], [ 48.698044619999905, 14.040005155634745 ], [ 47.99524461999988, 14.048605155634746 ], [ 47.4016446199999, 13.649205155634746 ], [ 46.686344619999886, 13.426405155634754 ], [ 45.666644619999886, 13.341705155634742 ], [ 45.125244619999933, 12.966705155634742 ], [ 45.055444619999889, 12.751305155634753 ], [ 44.598844619999909, 12.818605155634742 ], [ 43.957144619999895, 12.59280515563475 ], [ 43.467144619999885, 12.677805155634744 ], [ 43.247444619999897, 13.210305155634742 ], [ 43.279944619999924, 13.717505155634754 ], [ 43.086644619999902, 13.993305155634744 ], [ 42.935844619999898, 14.957805155634745 ], [ 42.681044619999909, 15.208305155634747 ], [ 42.810844619999898, 15.263305155634754 ], [ 42.693844619999936, 15.700305155634751 ], [ 42.836044619999882, 15.885305155634754 ], [ 42.792744619999894, 16.458905155634753 ], [ 42.548044619999928, 17.003305155634749 ], [ 42.370544619999919, 17.040005155634745 ], [ 42.306044619999909, 17.44970515563476 ], [ 41.678844619999893, 17.94940515563475 ], [ 40.753844619999882, 19.768005155634754 ], [ 39.662444619999917, 20.436105155634735 ], [ 39.176944619999915, 21.099205155634749 ], [ 38.993044619999921, 21.836905155634739 ], [ 39.062744619999933, 22.583305155634761 ], [ 38.452744619999919, 23.782505155634752 ], [ 37.4416446199999, 24.371405155634747 ], [ 37.153544619999934, 24.828605155634747 ], [ 37.235544619999928, 25.182505155634757 ], [ 35.160544619999882, 28.056705155634759 ], [ 34.571644619999915, 28.09720515563474 ], [ 34.9613446199999, 29.360805155634736 ], [ 36.069944619999887, 29.188905155634743 ], [ 36.743544619999909, 29.864705155634752 ], [ 37.5027446199999, 30.002205155634741 ], [ 37.667444619999912, 30.33640515563475 ], [ 38.001344619999884, 30.50420515563475 ], [ 37.005244619999928, 31.505505155634737 ], [ 39.19674461999989, 32.154905155634751 ], [ 40.413344619999918, 31.948305155634742 ], [ 42.084944619999931, 31.111705155634738 ], [ 44.721644619999893, 29.198305155634742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 36, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.524144619999902, 19.134405155634752 ], [ 110.518644619999918, 19.131905155634755 ], [ 110.5104446199999, 19.137805155634751 ], [ 110.517944619999923, 19.141005155634744 ], [ 110.524144619999902, 19.134405155634752 ] ] ], [ [ [ 110.720544619999885, 20.063305155634751 ], [ 110.930844619999903, 20.001405155634743 ], [ 111.031144619999907, 19.640005155634739 ], [ 110.480344619999926, 19.167205155634761 ], [ 110.525544619999891, 18.800805155634762 ], [ 110.047744619999889, 18.380505155634737 ], [ 109.766644619999909, 18.395005155634735 ], [ 109.5666446199999, 18.168905155634761 ], [ 108.685544619999916, 18.505305155634758 ], [ 108.628344619999893, 19.280305155634736 ], [ 109.293844619999902, 19.760005155634744 ], [ 109.165244619999896, 19.723605155634758 ], [ 109.259444619999897, 19.901705155634758 ], [ 110.720544619999885, 20.063305155634751 ] ] ], [ [ [ 116.718844619999913, 20.709405155634741 ], [ 116.704344619999915, 20.712305155634752 ], [ 116.701944619999892, 20.720005155634752 ], [ 116.715544619999889, 20.715305155634738 ], [ 116.718844619999913, 20.709405155634741 ] ] ], [ [ [ 110.597144619999881, 20.879405155634757 ], [ 110.548044619999928, 20.913905155634737 ], [ 110.596644619999893, 20.958305155634761 ], [ 110.637144619999901, 20.938305155634751 ], [ 110.597144619999881, 20.879405155634757 ] ] ], [ [ [ 109.078844619999927, 21.009205155634746 ], [ 109.071944619999897, 21.050305155634746 ], [ 109.114144619999934, 21.064205155634752 ], [ 109.1208446199999, 21.030005155634754 ], [ 109.078844619999927, 21.009205155634746 ] ] ], [ [ [ 110.548844619999898, 21.059205155634757 ], [ 110.498044619999916, 20.955805155634735 ], [ 110.248844619999886, 20.977205155634735 ], [ 110.329144619999909, 21.075505155634758 ], [ 110.548844619999898, 21.059205155634757 ] ] ], [ [ [ 110.499344619999931, 21.193305155634746 ], [ 110.461644619999902, 21.184205155634757 ], [ 110.614144619999934, 21.193305155634746 ], [ 110.53664461999989, 21.096905155634758 ], [ 110.441944619999902, 21.156405155634744 ], [ 110.454644619999897, 21.20140515563476 ], [ 110.499344619999931, 21.193305155634746 ] ] ], [ [ [ 111.836044619999882, 21.565305155634761 ], [ 111.840544619999889, 21.643005155634754 ], [ 112.002444619999892, 21.651905155634736 ], [ 111.99524461999988, 21.615305155634744 ], [ 111.836044619999882, 21.565305155634761 ] ] ], [ [ [ 108.329744619999929, 21.654205155634756 ], [ 108.320844619999889, 21.665805155634743 ], [ 108.328844619999927, 21.678605155634742 ], [ 108.333044619999896, 21.674405155634744 ], [ 108.329744619999929, 21.654205155634756 ] ] ], [ [ [ 112.533844619999911, 21.590805155634754 ], [ 112.56744461999989, 21.675805155634762 ], [ 112.648044619999894, 21.702805155634749 ], [ 112.646944619999886, 21.63860515563475 ], [ 112.533844619999911, 21.590805155634754 ] ] ], [ [ [ 112.805744619999928, 21.653305155634754 ], [ 112.703244619999907, 21.687805155634734 ], [ 112.868844619999891, 21.766405155634757 ], [ 112.866944619999913, 21.754705155634738 ], [ 112.805744619999928, 21.653305155634754 ] ] ], [ [ [ 113.383344619999889, 22.008905155634736 ], [ 113.366944619999913, 21.997205155634745 ], [ 113.307444619999899, 22.019705155634753 ], [ 113.378044619999912, 22.084705155634751 ], [ 113.383344619999889, 22.008905155634736 ] ] ], [ [ [ 113.297744619999889, 22.064105155634749 ], [ 113.267744619999917, 22.113605155634744 ], [ 113.360244619999889, 22.153605155634736 ], [ 113.325544619999903, 22.083005155634751 ], [ 113.297744619999889, 22.064105155634749 ] ] ], [ [ [ 114.246044619999907, 22.203305155634737 ], [ 114.137244619999933, 22.255505155634737 ], [ 114.124944619999894, 22.280005155634754 ], [ 114.201144619999923, 22.290505155634762 ], [ 114.246044619999907, 22.203305155634737 ] ] ], [ [ [ 113.896644619999904, 22.195805155634744 ], [ 113.825244619999921, 22.232205155634759 ], [ 114.047744619999889, 22.340005155634756 ], [ 113.992244619999894, 22.236405155634756 ], [ 113.896644619999904, 22.195805155634744 ] ] ], [ [ [ 114.314144619999922, 22.342805155634736 ], [ 114.295244619999892, 22.34580515563475 ], [ 114.296144619999893, 22.368005155634748 ], [ 114.313844619999884, 22.360005155634738 ], [ 114.314144619999922, 22.342805155634736 ] ] ], [ [ [ 113.594944619999922, 22.652205155634746 ], [ 113.568844619999936, 22.651105155634738 ], [ 113.485744619999934, 22.726705155634747 ], [ 113.543544619999921, 22.736405155634756 ], [ 113.594944619999922, 22.652205155634746 ] ] ], [ [ [ 113.588044619999891, 22.750505155634741 ], [ 113.450544619999903, 22.82640515563476 ], [ 113.387144619999901, 22.897505155634761 ], [ 113.4838446199999, 22.900805155634757 ], [ 113.588044619999891, 22.750505155634741 ] ] ], [ [ [ 117.118044619999921, 23.39920515563476 ], [ 116.953544619999889, 23.420505155634757 ], [ 116.944644619999906, 23.438905155634743 ], [ 117.098044619999882, 23.49050515563475 ], [ 117.118044619999921, 23.39920515563476 ] ] ], [ [ [ 117.404744619999917, 23.771105155634743 ], [ 117.507444619999887, 23.726405155634737 ], [ 117.311644619999925, 23.579705155634755 ], [ 117.368344619999903, 23.760005155634744 ], [ 117.404744619999917, 23.771105155634743 ] ] ], [ [ [ 118.223544619999927, 24.404205155634756 ], [ 118.207444619999933, 24.412505155634747 ], [ 118.241344619999893, 24.445805155634744 ], [ 118.249144619999925, 24.42170515563474 ], [ 118.223544619999927, 24.404205155634756 ] ] ], [ [ [ 118.419144619999884, 24.395805155634761 ], [ 118.295244619999892, 24.38830515563474 ], [ 118.275544619999891, 24.39920515563476 ], [ 118.4016446199999, 24.521705155634734 ], [ 118.419144619999884, 24.395805155634761 ] ] ], [ [ [ 118.126944619999904, 24.425805155634762 ], [ 118.062144619999913, 24.457205155634753 ], [ 118.094744619999915, 24.55330515563476 ], [ 118.188844619999884, 24.493905155634749 ], [ 118.126944619999904, 24.425805155634762 ] ] ], [ [ [ 119.301644619999934, 25.419405155634749 ], [ 119.277444619999926, 25.503005155634739 ], [ 119.333844619999923, 25.570305155634756 ], [ 119.319144619999918, 25.431105155634739 ], [ 119.301644619999934, 25.419405155634749 ] ] ], [ [ [ 119.826644619999911, 25.582805155634745 ], [ 119.765544619999901, 25.407505155634752 ], [ 119.696344619999934, 25.42800515563475 ], [ 119.723044619999882, 25.63890515563476 ], [ 119.826644619999911, 25.582805155634745 ] ] ], [ [ [ 119.277744619999908, 26.035305155634759 ], [ 119.32944461999989, 26.03330515563475 ], [ 119.408344619999923, 25.983605155634748 ], [ 119.270544619999896, 25.991405155634752 ], [ 119.2113446199999, 26.071905155634752 ], [ 119.277744619999908, 26.035305155634759 ] ] ], [ [ [ 119.929444619999913, 26.135005155634744 ], [ 119.909344619999899, 26.159405155634758 ], [ 119.952444619999881, 26.160005155634749 ], [ 119.948244619999912, 26.145305155634745 ], [ 119.929444619999913, 26.135005155634744 ] ] ], [ [ [ 119.967144619999885, 26.187505155634753 ], [ 119.956344619999925, 26.215505155634744 ], [ 120.006044619999898, 26.219205155634754 ], [ 120.0055446199999, 26.196905155634752 ], [ 119.967144619999885, 26.187505155634753 ] ] ], [ [ [ 121.170844619999912, 28.046905155634747 ], [ 121.119144619999929, 28.133905155634736 ], [ 121.241944619999913, 28.200505155634758 ], [ 121.239444619999915, 28.086905155634739 ], [ 121.170844619999912, 28.046905155634747 ] ] ], [ [ [ 121.9410446199999, 29.052805155634744 ], [ 121.888644619999923, 29.070005155634746 ], [ 121.873644619999936, 29.14920515563476 ], [ 121.941344619999882, 29.165005155634745 ], [ 121.9410446199999, 29.052805155634744 ] ] ], [ [ [ 122.111944619999917, 29.787805155634757 ], [ 122.181944619999911, 29.69800515563476 ], [ 122.166044619999923, 29.652505155634756 ], [ 122.030844619999925, 29.716105155634736 ], [ 122.111944619999917, 29.787805155634757 ] ] ], [ [ [ 122.411344619999909, 29.933005155634746 ], [ 122.396644619999904, 29.829205155634739 ], [ 122.390844619999882, 29.829405155634745 ], [ 122.3186446199999, 29.94170515563475 ], [ 122.411344619999909, 29.933005155634746 ] ] ], [ [ [ 121.865844619999905, 29.970005155634752 ], [ 121.828344619999882, 29.998905155634745 ], [ 121.861144619999891, 30.081705155634737 ], [ 121.906644619999895, 30.032205155634742 ], [ 121.865844619999905, 29.970005155634752 ] ] ], [ [ [ 122.325244619999921, 30.018605155634745 ], [ 122.008044619999907, 30.004405155634757 ], [ 121.961644619999902, 30.139205155634741 ], [ 122.165844619999916, 30.119205155634759 ], [ 122.325244619999921, 30.018605155634745 ] ] ], [ [ [ 122.211144619999914, 30.241105155634742 ], [ 122.142444619999935, 30.250005155634753 ], [ 122.074744619999933, 30.287205155634737 ], [ 122.212244619999922, 30.339205155634758 ], [ 122.211144619999914, 30.241105155634742 ] ] ], [ [ [ 122.420244619999892, 30.413605155634755 ], [ 122.275544619999891, 30.432205155634747 ], [ 122.272744619999912, 30.475005155634747 ], [ 122.412744619999899, 30.448905155634762 ], [ 122.420244619999892, 30.413605155634755 ] ] ], [ [ [ 121.844944619999922, 31.288005155634735 ], [ 121.814444619999904, 31.313005155634741 ], [ 121.791944619999924, 31.370005155634757 ], [ 121.878844619999882, 31.356705155634742 ], [ 121.844944619999922, 31.288005155634735 ] ] ], [ [ [ 121.487744619999887, 31.717805155634736 ], [ 121.856944619999922, 31.543905155634761 ], [ 121.868344619999903, 31.489205155634735 ], [ 121.203844619999927, 31.800505155634752 ], [ 121.487744619999887, 31.717805155634736 ] ] ], [ [ [ 119.899444619999883, 32.071105155634754 ], [ 119.786944619999929, 32.122205155634745 ], [ 119.819644619999906, 32.192305155634742 ], [ 119.716044619999934, 32.271905155634741 ], [ 119.823844619999932, 32.268005155634754 ], [ 119.899444619999883, 32.071105155634754 ] ] ], [ [ [ 121.436144619999936, 39.391705155634739 ], [ 121.409444619999931, 39.361405155634756 ], [ 121.255844619999891, 39.409405155634758 ], [ 121.393044619999898, 39.479205155634745 ], [ 121.436144619999936, 39.391705155634739 ] ] ], [ [ [ 123.382244619999881, 53.526705155634758 ], [ 124.818344619999891, 53.126905155634759 ], [ 125.164944619999915, 53.193005155634737 ], [ 126.095544619999885, 52.764405155634748 ], [ 125.988544619999914, 52.582205155634753 ], [ 126.557244619999892, 52.130505155634737 ], [ 126.442244619999883, 51.988005155634752 ], [ 126.915244619999896, 51.37920515563475 ], [ 126.8160446199999, 51.266405155634757 ], [ 126.972744619999901, 51.318005155634737 ], [ 126.930544619999921, 51.060005155634755 ], [ 127.291944619999924, 50.741405155634752 ], [ 127.331344619999925, 50.319205155634748 ], [ 127.586044619999882, 50.208605155634743 ], [ 127.5175446199999, 49.801505155634757 ], [ 127.838044619999891, 49.586605155634757 ], [ 128.773544619999882, 49.575505155634758 ], [ 129.103244619999884, 49.346705155634751 ], [ 129.482744619999892, 49.418405155634744 ], [ 130.221644619999893, 48.864705155634752 ], [ 130.671644619999881, 48.865005155634762 ], [ 130.521644619999904, 48.60780515563475 ], [ 130.826344619999929, 48.322205155634762 ], [ 130.658344619999923, 48.103605155634753 ], [ 130.963044619999891, 47.70080515563474 ], [ 132.542444619999912, 47.713905155634748 ], [ 133.08854461999988, 48.101705155634747 ], [ 133.506644619999918, 48.071405155634736 ], [ 134.415344619999928, 48.391105155634747 ], [ 134.7407446199999, 48.267105155634752 ], [ 134.557144619999917, 47.994705155634747 ], [ 134.767244619999929, 47.707505155634735 ], [ 134.182444619999899, 47.323305155634742 ], [ 134.222244619999913, 47.110805155634736 ], [ 133.845844619999923, 46.475505155634735 ], [ 133.900144619999935, 46.250305155634734 ], [ 133.477444619999915, 45.826705155634741 ], [ 133.468244619999894, 45.622205155634745 ], [ 133.149144619999902, 45.45080515563474 ], [ 133.074644619999901, 45.088905155634748 ], [ 131.864644619999922, 45.34550515563474 ], [ 131.469144619999895, 44.973905155634739 ], [ 130.953844619999927, 44.84610515563476 ], [ 131.298044619999928, 44.051905155634742 ], [ 131.187244619999888, 43.552805155634744 ], [ 131.311344619999886, 43.392205155634755 ], [ 131.123244619999923, 42.910805155634748 ], [ 130.405244619999905, 42.718005155634742 ], [ 130.605244619999894, 42.619705155634747 ], [ 130.604344619999893, 42.421905155634747 ], [ 130.243244619999928, 42.718305155634752 ], [ 130.252244619999885, 42.892505155634737 ], [ 129.907544619999896, 43.005805155634746 ], [ 129.711944619999883, 42.444105155634745 ], [ 129.341944619999936, 42.445805155634744 ], [ 128.925844619999907, 42.024405155634739 ], [ 128.058844619999888, 42.003305155634749 ], [ 128.301944619999915, 41.577805155634749 ], [ 128.155844619999925, 41.382505155634746 ], [ 127.270844619999934, 41.472505155634749 ], [ 126.91304461999988, 41.796105155634748 ], [ 126.566544619999888, 41.617005155634743 ], [ 126.01694461999989, 40.900005155634759 ], [ 124.8805446199999, 40.47050515563474 ], [ 124.131044619999898, 39.829205155634739 ], [ 123.238544619999914, 39.814205155634752 ], [ 123.262244619999933, 39.693305155634746 ], [ 122.398644619999914, 39.411705155634749 ], [ 121.9627446199999, 39.03300515563474 ], [ 121.648044619999894, 38.996405155634747 ], [ 121.695844619999889, 38.859405155634747 ], [ 121.191344619999882, 38.718605155634762 ], [ 121.0883446199999, 38.914405155634753 ], [ 121.675544619999926, 39.085805155634759 ], [ 121.599444619999929, 39.218605155634762 ], [ 121.751144619999934, 39.351705155634747 ], [ 121.228844619999904, 39.538305155634745 ], [ 121.535844619999921, 39.621705155634757 ], [ 121.468344619999925, 39.811405155634745 ], [ 121.875844619999896, 39.993605155634739 ], [ 122.299444619999917, 40.500005155634753 ], [ 122.045244619999892, 40.74220515563475 ], [ 121.364744619999897, 40.931905155634738 ], [ 120.970544619999885, 40.81670515563475 ], [ 121.036944619999929, 40.712205155634749 ], [ 120.827744619999919, 40.663005155634735 ], [ 120.455244619999917, 40.200505155634758 ], [ 119.519744619999926, 39.868005155634748 ], [ 118.924444619999917, 39.128005155634739 ], [ 118.604944619999912, 39.189405155634759 ], [ 118.321344619999934, 39.038905155634737 ], [ 118.051644619999934, 39.224205155634749 ], [ 117.743844619999891, 39.105005155634743 ], [ 117.536344619999909, 38.675505155634752 ], [ 117.672244619999901, 38.386705155634743 ], [ 118.110544619999928, 38.146405155634753 ], [ 118.841944619999936, 38.150505155634747 ], [ 119.036944619999929, 37.872805155634737 ], [ 118.956644619999906, 37.300505155634752 ], [ 119.232744619999892, 37.143605155634745 ], [ 119.767244619999929, 37.151405155634748 ], [ 119.854144619999886, 37.359405155634747 ], [ 120.740544619999923, 37.835305155634742 ], [ 121.570544619999907, 37.424705155634754 ], [ 122.123344619999898, 37.557205155634747 ], [ 122.165844619999916, 37.420805155634739 ], [ 122.562144619999913, 37.396405155634753 ], [ 122.597244619999913, 37.210005155634761 ], [ 122.400544619999891, 37.025805155634757 ], [ 122.540244619999896, 37.022505155634761 ], [ 122.504744619999883, 36.893605155634745 ], [ 122.200244619999921, 36.840005155634756 ], [ 121.949144619999913, 37.000005155634753 ], [ 121.594444619999933, 36.758905155634736 ], [ 120.783344619999923, 36.621905155634735 ], [ 120.959944619999931, 36.526405155634748 ], [ 120.875244619999933, 36.375805155634751 ], [ 120.703844619999927, 36.420805155634739 ], [ 120.680844619999903, 36.127505155634751 ], [ 120.351644619999888, 36.040505155634762 ], [ 120.301744619999909, 36.268405155634738 ], [ 120.088844619999918, 36.200005155634742 ], [ 120.237744619999887, 35.959405155634741 ], [ 119.652244619999919, 35.58640515563475 ], [ 119.176044619999914, 34.885005155634744 ], [ 120.253844619999882, 34.310005155634755 ], [ 120.885844619999887, 32.975005155634747 ], [ 120.835844619999932, 32.640805155634737 ], [ 121.397744619999912, 32.379405155634757 ], [ 121.437444619999894, 32.115005155634762 ], [ 121.890244619999919, 31.76190515563475 ], [ 120.944444619999899, 31.866405155634752 ], [ 120.519444619999888, 32.102505155634745 ], [ 120.091944619999936, 31.947205155634762 ], [ 119.863644619999889, 32.27420515563476 ], [ 119.771144619999916, 32.326905155634748 ], [ 119.6074446199999, 32.194705155634736 ], [ 120.143644619999918, 31.902205155634746 ], [ 120.709444619999886, 31.986405155634756 ], [ 120.718844619999913, 31.817505155634748 ], [ 121.221144619999905, 31.624205155634755 ], [ 121.869744619999892, 31.008305155634744 ], [ 121.863644619999889, 30.858305155634739 ], [ 121.443844619999936, 30.80440515563474 ], [ 120.875244619999933, 30.363905155634754 ], [ 120.453844619999927, 30.392505155634737 ], [ 120.144744619999926, 30.200005155634742 ], [ 120.512244619999933, 30.309705155634745 ], [ 120.793344619999914, 30.060505155634743 ], [ 121.284444619999931, 30.30440515563474 ], [ 121.677744619999885, 29.963005155634747 ], [ 122.124444619999906, 29.893605155634745 ], [ 121.448344619999887, 29.511705155634743 ], [ 121.979744619999906, 29.585305155634742 ], [ 121.933544619999907, 29.195305155634756 ], [ 121.802244619999897, 29.195805155634744 ], [ 121.795844619999912, 29.373305155634753 ], [ 121.743544619999909, 29.194205155634748 ], [ 121.561144619999936, 29.291105155634753 ], [ 121.411944619999929, 29.163305155634745 ], [ 121.691344619999882, 29.021905155634741 ], [ 121.489744619999897, 28.938905155634743 ], [ 121.610244619999889, 28.725005155634747 ], [ 121.138644619999923, 28.840505155634744 ], [ 121.481644619999884, 28.674205155634738 ], [ 121.641644619999909, 28.34720515563474 ], [ 121.341944619999936, 28.13890515563476 ], [ 121.16164461999989, 28.382805155634756 ], [ 120.941344619999882, 27.983005155634757 ], [ 120.590844619999928, 28.079405155634745 ], [ 120.843044619999887, 27.876905155634759 ], [ 120.573844619999932, 27.587505155634759 ], [ 120.665544619999935, 27.45080515563474 ], [ 120.477444619999915, 27.177505155634762 ], [ 120.193544619999898, 27.290305155634755 ], [ 120.422244619999901, 27.145305155634745 ], [ 120.033844619999911, 26.899705155634749 ], [ 120.019744619999926, 26.837205155634749 ], [ 120.104144619999886, 26.793905155634761 ], [ 120.127244619999885, 26.641705155634739 ], [ 119.860244619999889, 26.517805155634747 ], [ 120.072744619999924, 26.794205155634742 ], [ 119.87224461999989, 26.648605155634741 ], [ 119.78804461999988, 26.799205155634738 ], [ 119.549144619999936, 26.753605155634759 ], [ 119.821944619999897, 26.444405155634755 ], [ 119.577444619999881, 26.473905155634739 ], [ 119.658044619999885, 26.338605155634738 ], [ 119.939444619999904, 26.354205155634745 ], [ 119.425244619999887, 25.996905155634735 ], [ 119.092744619999905, 26.142505155634737 ], [ 119.256644619999918, 25.963005155634747 ], [ 119.344944619999922, 25.938305155634751 ], [ 119.705544619999898, 25.993605155634739 ], [ 119.586644619999902, 25.680305155634741 ], [ 119.451144619999923, 25.680305155634741 ], [ 119.652244619999919, 25.357205155634759 ], [ 119.308844619999888, 25.606905155634749 ], [ 119.102244619999908, 25.40800515563474 ], [ 119.353044619999935, 25.250305155634734 ], [ 119.094744619999915, 25.105505155634759 ], [ 119.061344619999886, 25.273005155634749 ], [ 118.871944619999908, 25.243905155634749 ], [ 119.0161446199999, 24.954205155634739 ], [ 118.573844619999932, 24.884205155634746 ], [ 118.765044619999912, 24.761705155634743 ], [ 118.622744619999935, 24.543905155634761 ], [ 118.239744619999897, 24.536405155634739 ], [ 118.160544619999882, 24.688605155634761 ], [ 118.018044619999898, 24.436405155634745 ], [ 117.791844619999893, 24.460005155634761 ], [ 118.123344619999898, 24.256105155634756 ], [ 117.738544619999914, 23.898605155634741 ], [ 117.760844619999887, 24.063905155634743 ], [ 117.614744619999897, 23.863605155634744 ], [ 117.304744619999894, 23.758305155634744 ], [ 117.201944619999892, 23.626905155634759 ], [ 116.916044619999923, 23.659405155634758 ], [ 116.755244619999928, 23.350005155634747 ], [ 116.521344619999923, 23.420805155634739 ], [ 116.787444619999917, 23.233905155634758 ], [ 116.513844619999929, 23.210805155634759 ], [ 116.480744619999882, 22.938005155634741 ], [ 115.797744619999889, 22.739205155634735 ], [ 115.640244619999919, 22.884205155634746 ], [ 115.53664461999989, 22.658905155634741 ], [ 115.161344619999909, 22.808305155634756 ], [ 114.888844619999929, 22.702805155634749 ], [ 114.936644619999925, 22.650005155634759 ], [ 114.872144619999915, 22.53300515563474 ], [ 114.731044619999921, 22.596405155634741 ], [ 114.769144619999906, 22.814705155634741 ], [ 114.520844619999934, 22.69970515563476 ], [ 114.609944619999908, 22.497505155634755 ], [ 114.226344619999907, 22.556405155634749 ], [ 114.389944619999881, 22.42970515563475 ], [ 114.296144619999893, 22.260605155634735 ], [ 114.198044619999905, 22.318005155634737 ], [ 113.902444619999926, 22.370005155634757 ], [ 114.033644619999905, 22.508705155634757 ], [ 113.860744619999934, 22.474405155634756 ], [ 113.524444619999883, 23.011105155634752 ], [ 113.829644619999897, 23.11720515563475 ], [ 113.670244619999892, 23.148305155634759 ], [ 113.359144619999881, 22.883305155634744 ], [ 113.565744619999919, 22.550305155634746 ], [ 113.552444619999903, 22.183005155634746 ], [ 113.165244619999896, 22.571405155634736 ], [ 113.388044619999903, 22.176705155634735 ], [ 113.299144619999936, 22.175505155634752 ], [ 113.22414461999989, 22.037505155634747 ], [ 113.0863446199999, 22.206905155634743 ], [ 112.939144619999922, 21.868605155634739 ], [ 112.821344619999934, 21.964405155634736 ], [ 112.281944619999933, 21.70140515563476 ], [ 111.892444619999935, 21.92030515563475 ], [ 111.966944619999936, 21.751405155634743 ], [ 111.675244619999887, 21.780005155634754 ], [ 111.789144619999888, 21.613605155634744 ], [ 111.637144619999901, 21.521105155634743 ], [ 111.022744619999912, 21.52420515563476 ], [ 110.532744619999903, 21.21140515563475 ], [ 110.3982446199999, 21.380705155634743 ], [ 110.158044619999885, 20.84550515563474 ], [ 110.376844619999929, 20.840005155634756 ], [ 110.323844619999932, 20.640005155634739 ], [ 110.529144619999897, 20.473305155634748 ], [ 110.278844619999916, 20.246105155634737 ], [ 109.924344619999886, 20.233605155634748 ], [ 110.009444619999897, 20.429205155634762 ], [ 109.661944619999929, 20.918905155634761 ], [ 109.9410446199999, 21.446905155634752 ], [ 109.666944619999924, 21.498605155634735 ], [ 109.573344619999887, 21.723305155634748 ], [ 109.529944619999924, 21.491105155634742 ], [ 109.142744619999917, 21.396705155634734 ], [ 108.921144619999893, 21.760605155634735 ], [ 108.87024461999988, 21.798905155634756 ], [ 108.781344619999913, 21.810005155634755 ], [ 108.858344619999912, 21.635805155634742 ], [ 108.740244619999885, 21.598905155634739 ], [ 108.475844619999918, 21.940305155634761 ], [ 108.469444619999933, 21.559705155634745 ], [ 108.333644619999916, 21.690005155634751 ], [ 108.213844619999918, 21.497205155634745 ], [ 107.783044619999885, 21.666905155634751 ], [ 107.362744619999887, 21.605305155634753 ], [ 107.029144619999897, 21.936705155634755 ], [ 106.693344619999891, 22.030805155634752 ], [ 106.551744619999909, 22.45680515563474 ], [ 106.757444619999887, 22.821905155634752 ], [ 106.134744619999935, 22.988605155634744 ], [ 105.872444619999897, 22.910305155634759 ], [ 105.353844619999904, 23.334705155634751 ], [ 104.907444619999922, 23.180305155634741 ], [ 104.731344619999902, 22.81670515563475 ], [ 104.369944619999899, 22.685805155634753 ], [ 104.109144619999881, 22.798305155634736 ], [ 103.964444619999881, 22.499105155634751 ], [ 103.655244619999905, 22.782505155634752 ], [ 103.531644619999895, 22.583605155634743 ], [ 103.3363446199999, 22.796405155634758 ], [ 103.0469446199999, 22.435005155634755 ], [ 102.484144619999881, 22.77390515563475 ], [ 102.140744619999907, 22.396305155634749 ], [ 101.691344619999882, 22.47220515563474 ], [ 101.574444619999895, 22.209205155634734 ], [ 101.765244619999919, 21.834405155634741 ], [ 101.784744619999913, 21.142805155634747 ], [ 101.281944619999933, 21.180305155634741 ], [ 101.120544619999919, 21.770505155634751 ], [ 100.58854461999988, 21.456105155634745 ], [ 100.193344619999891, 21.44140515563474 ], [ 99.973644619999902, 21.733905155634758 ], [ 99.964444619999881, 22.048905155634756 ], [ 99.162744619999899, 22.159205155634751 ], [ 99.566344619999882, 22.938005155634741 ], [ 99.503844619999882, 23.089705155634746 ], [ 98.927444619999903, 23.189205155634752 ], [ 98.677244619999897, 23.968005155634742 ], [ 98.890744619999907, 24.160105155634753 ], [ 98.064444619999904, 24.089105155634755 ], [ 97.649944619999928, 23.851705155634747 ], [ 97.535544619999882, 23.939705155634741 ], [ 97.749444619999906, 24.163605155634755 ], [ 97.550544619999926, 24.738005155634752 ], [ 97.824144619999913, 25.246905155634735 ], [ 98.714744619999919, 25.86550515563475 ], [ 98.5680446199999, 26.123005155634743 ], [ 98.730544619999932, 26.177205155634752 ], [ 98.775544619999891, 26.605805155634741 ], [ 98.699744619999933, 27.539205155634747 ], [ 98.458844619999923, 27.672505155634738 ], [ 98.316344619999882, 27.541905155634751 ], [ 98.146644619999904, 28.146905155634741 ], [ 97.700844619999884, 28.521105155634743 ], [ 97.555244619999883, 28.548005155634755 ], [ 97.348844619999909, 28.222805155634759 ], [ 96.653844619999916, 28.467505155634754 ], [ 96.401944619999881, 28.351105155634755 ], [ 96.340244619999908, 28.525005155634759 ], [ 96.615844619999905, 28.790305155634755 ], [ 96.470844619999923, 29.056705155634759 ], [ 96.169144619999884, 28.903605155634736 ], [ 96.1488446199999, 29.059705155634745 ], [ 96.395244619999914, 29.255305155634758 ], [ 96.083844619999923, 29.467805155634736 ], [ 95.387744619999921, 29.035305155634759 ], [ 94.647544619999906, 29.333505155634739 ], [ 94.234544619999895, 29.073505155634749 ], [ 93.961744619999934, 28.669205155634742 ], [ 93.351944619999927, 28.618805155634746 ], [ 93.222044619999906, 28.319305155634751 ], [ 92.710444619999919, 28.141905155634745 ], [ 92.65104461999988, 27.920505155634757 ], [ 92.014444619999892, 27.734705155634757 ], [ 91.657744619999903, 27.764705155634758 ], [ 91.667244619999906, 27.941905155634757 ], [ 91.301344619999895, 28.081105155634745 ], [ 91.086944619999883, 27.970005155634752 ], [ 90.370544619999919, 28.080305155634747 ], [ 90.381644619999918, 28.251405155634743 ], [ 89.996344619999888, 28.323305155634742 ], [ 89.487444619999906, 28.057805155634739 ], [ 88.916944619999924, 27.320805155634744 ], [ 88.763344619999884, 27.543305155634741 ], [ 88.844944619999922, 27.996405155634747 ], [ 88.628844619999882, 28.119205155634759 ], [ 87.720544619999885, 27.80500515563476 ], [ 87.192744619999928, 27.82300515563476 ], [ 86.704144619999909, 28.111105155634746 ], [ 86.444944619999887, 27.90800515563474 ], [ 86.183544619999907, 28.163905155634737 ], [ 86.014444619999892, 27.882805155634756 ], [ 85.721344619999911, 28.279205155634756 ], [ 85.106644619999884, 28.309405155634735 ], [ 85.189944619999892, 28.603305155634743 ], [ 84.846644619999893, 28.544405155634749 ], [ 84.481044619999921, 28.736705155634738 ], [ 84.119144619999929, 29.260005155634744 ], [ 83.552744619999885, 29.185805155634753 ], [ 83.195244619999926, 29.630805155634746 ], [ 82.177744619999885, 30.063605155634761 ], [ 82.10054461999988, 30.342205155634744 ], [ 81.421144619999893, 30.385305155634754 ], [ 81.3777446199999, 30.166705155634745 ], [ 81.119444619999911, 30.019405155634743 ], [ 80.998844619999886, 30.26190515563475 ], [ 80.2070446199999, 30.575505155634758 ], [ 80.250244619999933, 30.740005155634762 ], [ 79.8791446199999, 30.959205155634734 ], [ 79.558844619999888, 30.954205155634739 ], [ 79.092444619999924, 31.437505155634753 ], [ 78.767244619999929, 31.310005155634755 ], [ 78.771144619999916, 31.981105155634751 ], [ 78.475944619999893, 32.243005155634748 ], [ 78.397744619999912, 32.548605155634746 ], [ 78.760544619999905, 32.63550515563476 ], [ 78.971144619999905, 32.350805155634745 ], [ 79.530244619999905, 32.75420515563475 ], [ 79.378344619999893, 33.106405155634761 ], [ 78.831144619999918, 33.486405155634756 ], [ 78.735844619999909, 34.068305155634746 ], [ 79.008644619999927, 34.29500515563474 ], [ 78.299144619999936, 34.655005155634754 ], [ 78.0238446199999, 35.274405155634739 ], [ 78.081944619999888, 35.490305155634744 ], [ 76.895244619999914, 35.612505155634736 ], [ 76.553044619999923, 35.90660515563475 ], [ 76.176944619999915, 35.814405155634759 ], [ 75.926044619999914, 36.077205155634758 ], [ 76.041644619999886, 36.237505155634736 ], [ 75.855244619999894, 36.667205155634761 ], [ 74.400544619999891, 37.139005155634734 ], [ 75.187444619999894, 37.40660515563475 ], [ 74.902744619999908, 37.647205155634751 ], [ 74.856644619999884, 38.47050515563474 ], [ 74.354744619999906, 38.674405155634744 ], [ 73.942244619999883, 38.538805155634762 ], [ 73.705244619999917, 38.864105155634761 ], [ 73.853344619999916, 38.96910515563475 ], [ 73.617244619999894, 39.232105155634756 ], [ 73.655644619999919, 39.454805155634759 ], [ 73.956144619999918, 39.597705155634756 ], [ 73.842744619999905, 39.778805155634743 ], [ 73.987444619999906, 40.038005155634735 ], [ 74.884444619999897, 40.327705155634746 ], [ 74.860244619999889, 40.519405155634743 ], [ 75.22554461999988, 40.446905155634752 ], [ 75.578044619999901, 40.648005155634749 ], [ 75.697244619999935, 40.299105155634734 ], [ 76.345844619999923, 40.350205155634754 ], [ 76.873844619999886, 41.014105155634738 ], [ 78.08084461999988, 41.040805155634743 ], [ 78.670844619999912, 41.53190515563476 ], [ 80.262544619999915, 42.048805155634753 ], [ 80.1719446199999, 42.660505155634738 ], [ 80.5786446199999, 42.891105155634747 ], [ 80.383644619999927, 43.03360515563476 ], [ 80.817244619999883, 43.156105155634762 ], [ 80.362744619999887, 44.12520515563476 ], [ 80.384944619999885, 44.635805155634742 ], [ 80.520844619999934, 44.73250515563474 ], [ 79.871044619999907, 44.905005155634754 ], [ 81.688344619999896, 45.350805155634745 ], [ 81.948044619999905, 45.157505155634752 ], [ 82.561644619999925, 45.129405155634757 ], [ 82.649444619999883, 45.430305155634741 ], [ 82.317744619999928, 45.570505155634734 ], [ 83.040544619999935, 47.212205155634749 ], [ 83.922444619999908, 46.973905155634739 ], [ 84.678044619999923, 46.993605155634739 ], [ 84.759444619999897, 46.82640515563476 ], [ 85.529344619999904, 47.060205155634762 ], [ 85.705544619999898, 47.365005155634762 ], [ 85.537744619999899, 47.960005155634761 ], [ 85.759144619999915, 48.387805155634751 ], [ 86.596144619999905, 48.536105155634758 ], [ 86.883844619999934, 49.112505155634736 ], [ 87.840744619999896, 49.172905155634751 ], [ 87.899444619999883, 49.002205155634741 ], [ 87.759444619999897, 48.881705155634748 ], [ 88.08854461999988, 48.706405155634755 ], [ 87.983344619999912, 48.569405155634755 ], [ 88.523344619999932, 48.403005155634744 ], [ 88.618344619999903, 48.206105155634745 ], [ 89.077544619999912, 47.995505155634746 ], [ 89.55774461999988, 48.041705155634745 ], [ 90.3574446199999, 47.643305155634735 ], [ 91.044144619999884, 46.72220515563474 ], [ 90.920244619999892, 46.302805155634744 ], [ 91.028644619999909, 46.018605155634745 ], [ 90.681944619999911, 45.579705155634755 ], [ 90.896944619999886, 45.253005155634739 ], [ 91.567744619999928, 45.075005155634742 ], [ 93.554744619999894, 44.957205155634753 ], [ 94.724444619999929, 44.349205155634749 ], [ 95.416644619999886, 44.293905155634761 ], [ 95.336144619999914, 44.020805155634761 ], [ 95.539944619999915, 43.992805155634741 ], [ 95.881344619999936, 43.279205155634756 ], [ 96.383044619999907, 42.731105155634751 ], [ 97.171644619999881, 42.797505155634738 ], [ 99.498644619999936, 42.570805155634744 ], [ 100.835544619999894, 42.67800515563475 ], [ 101.814744619999885, 42.509705155634762 ], [ 102.077244619999931, 42.233305155634739 ], [ 103.416344619999904, 41.88720515563476 ], [ 104.5266446199999, 41.877205155634741 ], [ 104.524144619999902, 41.663905155634737 ], [ 105.012244619999933, 41.581405155634755 ], [ 107.471944619999931, 42.466105155634736 ], [ 109.517444619999935, 42.456905155634743 ], [ 110.440544619999912, 42.777805155634738 ], [ 110.989744619999897, 43.316905155634757 ], [ 111.958344619999934, 43.692205155634738 ], [ 111.4213446199999, 44.35920515563474 ], [ 111.873044619999916, 45.049405155634744 ], [ 112.427244619999897, 45.080505155634754 ], [ 112.853044619999935, 44.84610515563476 ], [ 113.638044619999903, 44.745305155634739 ], [ 114.545244619999892, 45.389405155634748 ], [ 115.701944619999892, 45.458605155634743 ], [ 116.2127446199999, 45.723905155634739 ], [ 116.585544619999894, 46.295805155634739 ], [ 117.3708446199999, 46.364405155634742 ], [ 117.421144619999893, 46.578305155634737 ], [ 117.716644619999897, 46.51390515563476 ], [ 118.869444619999911, 46.772805155634742 ], [ 119.363044619999926, 46.614405155634742 ], [ 119.897444619999931, 46.675505155634752 ], [ 119.729944619999912, 47.164105155634743 ], [ 118.539344619999895, 47.994705155634747 ], [ 117.801044619999914, 48.01050515563476 ], [ 117.372144619999915, 47.653605155634736 ], [ 116.874644619999913, 47.888005155634758 ], [ 116.258344619999889, 47.878605155634759 ], [ 115.936944619999906, 47.687205155634743 ], [ 115.592144619999885, 47.919405155634749 ], [ 115.539944619999915, 48.135805155634742 ], [ 115.835844619999932, 48.252505155634751 ], [ 115.811144619999936, 48.520505155634751 ], [ 116.7113446199999, 49.830505155634754 ], [ 117.874744619999888, 49.520605155634755 ], [ 118.583344619999934, 49.926905155634742 ], [ 119.318344619999891, 50.092805155634736 ], [ 119.3594446199999, 50.341905155634734 ], [ 119.138644619999923, 50.394705155634753 ], [ 120.096944619999931, 51.661405155634739 ], [ 120.7766446199999, 52.115005155634762 ], [ 120.622744619999935, 52.340305155634738 ], [ 120.713644619999911, 52.544705155634759 ], [ 120.073044619999905, 52.590005155634756 ], [ 120.034444619999931, 52.771705155634734 ], [ 120.863844619999895, 53.279705155634744 ], [ 123.382244619999881, 53.526705155634758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 37, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.605574, 51.896406495117176 ], [ 102.218874, 51.333606495117166 ], [ 102.327774, 50.56970649511716 ], [ 103.309374, 50.201406495117183 ], [ 104.084174, 50.147406495117181 ], [ 105.335574, 50.483606495117172 ], [ 106.663074, 50.338606495117162 ], [ 107.182174, 50.024206495117184 ], [ 107.977174, 49.94360649511718 ], [ 107.949174, 49.678006495117174 ], [ 108.572174, 49.333606495117166 ], [ 110.788574, 49.149406495117162 ], [ 113.090774, 49.598606495117181 ], [ 113.216674, 49.819206495117172 ], [ 114.313074, 50.284206495117175 ], [ 114.854174, 50.228306495117167 ], [ 115.414674, 49.898306495117183 ], [ 116.246074, 50.02750649511718 ], [ 116.711374, 49.830506495117177 ], [ 115.811074, 48.520506495117175 ], [ 115.835774, 48.252506495117174 ], [ 115.542474, 48.141706495117162 ], [ 115.592174, 47.919406495117173 ], [ 115.936874, 47.687206495117167 ], [ 116.258374, 47.878606495117182 ], [ 116.874674, 47.888006495117182 ], [ 117.372174, 47.65360649511716 ], [ 117.801074, 48.010506495117184 ], [ 118.539374, 47.994706495117171 ], [ 119.724974, 47.168906495117184 ], [ 119.934974, 46.720006495117175 ], [ 119.691374, 46.597806495117183 ], [ 118.869474, 46.772806495117166 ], [ 117.716674, 46.513906495117183 ], [ 117.421074, 46.578306495117161 ], [ 117.370774, 46.364406495117166 ], [ 116.585574, 46.295806495117162 ], [ 116.212774, 45.723906495117163 ], [ 115.701974, 45.458606495117166 ], [ 114.545274, 45.389406495117171 ], [ 113.638074, 44.745306495117163 ], [ 111.980774, 45.09170649511718 ], [ 111.421374, 44.38250649511717 ], [ 111.958374, 43.692206495117162 ], [ 110.989674, 43.31690649511718 ], [ 110.440574, 42.777806495117161 ], [ 109.313574, 42.430006495117183 ], [ 107.471874, 42.46610649511716 ], [ 105.012174, 41.581406495117179 ], [ 104.524174, 41.66390649511716 ], [ 104.526674, 41.877206495117164 ], [ 103.416374, 41.887206495117184 ], [ 102.077174, 42.233306495117162 ], [ 101.814674, 42.509706495117186 ], [ 100.835574, 42.678006495117174 ], [ 99.498574, 42.570806495117168 ], [ 97.171674, 42.797506495117162 ], [ 96.383074, 42.731106495117174 ], [ 95.881374, 43.27920649511718 ], [ 95.539974, 43.992806495117165 ], [ 95.336074, 44.020806495117185 ], [ 95.416674, 44.293906495117184 ], [ 94.724474, 44.349206495117173 ], [ 93.554674, 44.957206495117177 ], [ 91.567774, 45.075006495117165 ], [ 90.896974, 45.253006495117162 ], [ 90.681974, 45.579706495117179 ], [ 91.028574, 46.018606495117169 ], [ 90.920274, 46.302806495117167 ], [ 91.044174, 46.722206495117163 ], [ 90.357474, 47.643306495117159 ], [ 90.067474, 47.889406495117171 ], [ 89.781974, 47.828406495117164 ], [ 89.557774, 48.041706495117168 ], [ 89.092774, 47.991906495117163 ], [ 88.653274, 48.182806495117163 ], [ 88.523274, 48.403006495117168 ], [ 87.973274, 48.576906495117171 ], [ 88.088574, 48.706406495117179 ], [ 87.759474, 48.881706495117172 ], [ 87.899474, 49.002206495117164 ], [ 87.840674, 49.172906495117175 ], [ 88.162174, 49.272206495117175 ], [ 88.207474, 49.456106495117169 ], [ 89.181974, 49.506906495117178 ], [ 89.226674, 49.638306495117163 ], [ 89.718074, 49.717506495117178 ], [ 89.642674, 49.904806495117171 ], [ 90.051374, 50.082506495117158 ], [ 92.322774, 50.815006495117174 ], [ 92.660774, 50.681706495117183 ], [ 92.974974, 50.791106495117177 ], [ 93.112774, 50.596106495117183 ], [ 94.274974, 50.569406495117178 ], [ 94.635274, 50.024406495117162 ], [ 95.529474, 49.893306495117159 ], [ 96.074474, 50.006906495117178 ], [ 97.340774, 49.73440649511717 ], [ 98.107174, 50.04890649511718 ], [ 98.292174, 50.29860649511717 ], [ 98.315274, 50.531906495117184 ], [ 98.063274, 50.63050649511716 ], [ 97.827774, 51.001106495117185 ], [ 98.053074, 51.460906495117186 ], [ 98.708074, 51.828006495117179 ], [ 98.921674, 52.141906495117169 ], [ 99.605574, 51.896406495117176 ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 38, "LEVEL1_COD": 3, "LEVEL1_NAM": "ASIA-TEMPERATE", "LEVEL2_NAM": "Eastern Asia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.576344619999929, 22.001405155634743 ], [ 121.505244619999928, 22.034205155634751 ], [ 121.490244619999885, 22.078605155634747 ], [ 121.5469446199999, 22.078005155634756 ], [ 121.576344619999929, 22.001405155634743 ] ] ], [ [ [ 119.669444619999922, 23.550005155634736 ], [ 119.590244619999908, 23.51050515563476 ], [ 119.527044619999913, 23.534405155634758 ], [ 119.598344619999921, 23.606905155634749 ], [ 119.669444619999922, 23.550005155634736 ] ] ], [ [ [ 123.8708446199999, 24.252505155634751 ], [ 123.718344619999925, 24.277205155634746 ], [ 123.678844619999893, 24.316105155634759 ], [ 123.9219446199999, 24.371105155634737 ], [ 123.8708446199999, 24.252505155634751 ] ] ], [ [ [ 122.996944619999908, 24.438905155634743 ], [ 122.948044619999905, 24.436405155634745 ], [ 122.935244619999935, 24.458005155634751 ], [ 123.009444619999897, 24.466905155634734 ], [ 122.996944619999908, 24.438905155634743 ] ] ], [ [ [ 131.264144619999911, 24.455005155634737 ], [ 131.246944619999908, 24.460005155634761 ], [ 131.243044619999921, 24.484405155634747 ], [ 131.273544619999882, 24.475805155634745 ], [ 131.264144619999911, 24.455005155634737 ] ] ], [ [ [ 124.261644619999913, 24.457505155634735 ], [ 124.219144619999895, 24.335305155634742 ], [ 124.075844619999884, 24.424705155634754 ], [ 124.324444619999895, 24.587505155634759 ], [ 124.261644619999913, 24.457505155634735 ] ] ], [ [ [ 141.309144619999927, 24.748005155634743 ], [ 141.290244619999896, 24.778005155634744 ], [ 141.3574446199999, 24.788905155634737 ], [ 141.360444619999896, 24.769405155634743 ], [ 141.309144619999927, 24.748005155634743 ] ] ], [ [ [ 125.356344619999902, 24.776705155634758 ], [ 125.451144619999923, 24.739705155634752 ], [ 125.257244619999881, 24.729205155634745 ], [ 125.263344619999884, 24.884205155634746 ], [ 125.356344619999902, 24.776705155634758 ] ] ], [ [ [ 121.734644619999926, 25.13890515563476 ], [ 122.0021446199999, 25.006905155634755 ], [ 121.816944619999902, 24.847805155634759 ], [ 121.839644619999888, 24.476405155634737 ], [ 121.355544619999932, 23.087505155634759 ], [ 120.716344619999916, 21.92800515563475 ], [ 120.610244619999889, 22.312805155634734 ], [ 120.5055446199999, 22.422505155634738 ], [ 120.3771446199999, 22.483305155634739 ], [ 120.345544619999885, 22.50390515563474 ], [ 120.307044619999886, 22.540405155634758 ], [ 120.052744619999885, 23.04500515563474 ], [ 120.111344619999898, 23.620305155634739 ], [ 121.009144619999915, 25.008905155634736 ], [ 121.518044619999898, 25.282805155634762 ], [ 121.734644619999926, 25.13890515563476 ] ] ], [ [ [ 141.293544619999921, 25.418305155634741 ], [ 141.272144619999892, 25.423905155634756 ], [ 141.268244619999905, 25.445305155634756 ], [ 141.293544619999921, 25.45140515563476 ], [ 141.293544619999921, 25.418305155634741 ] ] ], [ [ [ 131.243844619999891, 25.81670515563475 ], [ 131.208044619999896, 25.833305155634761 ], [ 131.250844619999896, 25.872205155634745 ], [ 131.2738446199999, 25.856105155634751 ], [ 131.243844619999891, 25.81670515563475 ] ] ], [ [ [ 126.761944619999895, 26.38690515563475 ], [ 126.809944619999897, 26.346905155634758 ], [ 126.7872446199999, 26.296905155634747 ], [ 126.692244619999883, 26.360505155634755 ], [ 126.761944619999895, 26.38690515563475 ] ] ], [ [ [ 142.177744619999885, 26.622505155634755 ], [ 142.166044619999923, 26.61690515563474 ], [ 142.111344619999898, 26.715305155634738 ], [ 142.153044619999889, 26.687205155634743 ], [ 142.177744619999885, 26.622505155634755 ] ] ], [ [ [ 128.2527446199999, 26.63890515563476 ], [ 127.841644619999897, 26.42940515563474 ], [ 127.813044619999914, 26.155505155634742 ], [ 127.652744619999908, 26.083005155634751 ], [ 127.716944619999936, 26.435005155634755 ], [ 127.958844619999923, 26.544405155634749 ], [ 127.883844619999934, 26.667505155634743 ], [ 128.06744461999989, 26.642505155634737 ], [ 128.2872446199999, 26.855005155634743 ], [ 128.2527446199999, 26.63890515563476 ] ] ], [ [ [ 142.2324446199999, 27.03330515563475 ], [ 142.199144619999913, 27.049205155634738 ], [ 142.1782446199999, 27.075305155634751 ], [ 142.23324461999988, 27.089205155634758 ], [ 142.2324446199999, 27.03330515563475 ] ] ], [ [ [ 142.194644619999906, 27.148305155634759 ], [ 142.178544619999911, 27.156705155634754 ], [ 142.194044619999886, 27.191105155634759 ], [ 142.204144619999909, 27.167505155634743 ], [ 142.194644619999906, 27.148305155634759 ] ] ], [ [ [ 140.87794461999988, 27.225805155634745 ], [ 140.864144619999934, 27.21940515563476 ], [ 140.872144619999915, 27.243005155634748 ], [ 140.879344619999927, 27.243605155634739 ], [ 140.87794461999988, 27.225805155634745 ] ] ], [ [ [ 128.609144619999881, 27.358905155634758 ], [ 128.523544619999882, 27.413605155634755 ], [ 128.701944619999892, 27.445805155634744 ], [ 128.635544619999905, 27.373005155634743 ], [ 128.609144619999881, 27.358905155634758 ] ] ], [ [ [ 142.195544619999907, 27.599205155634749 ], [ 142.183844619999888, 27.602805155634755 ], [ 142.1699446199999, 27.624705155634743 ], [ 142.193244619999916, 27.617805155634741 ], [ 142.195544619999907, 27.599205155634749 ] ] ], [ [ [ 142.0891446199999, 27.717805155634736 ], [ 142.070544619999907, 27.72110515563476 ], [ 142.068844619999936, 27.726705155634747 ], [ 142.086844619999908, 27.732205155634759 ], [ 142.0891446199999, 27.717805155634736 ] ] ], [ [ [ 128.951044619999891, 27.675805155634762 ], [ 128.880244619999928, 27.82470515563476 ], [ 128.947444619999885, 27.907505155634752 ], [ 129.029944619999924, 27.774405155634739 ], [ 128.951044619999891, 27.675805155634762 ] ] ], [ [ [ 129.336044619999882, 28.075305155634751 ], [ 129.219144619999895, 28.097805155634759 ], [ 129.1910446199999, 28.188605155634761 ], [ 129.340244619999908, 28.110805155634736 ], [ 129.336044619999882, 28.075305155634751 ] ] ], [ [ [ 129.9921446199999, 28.281705155634754 ], [ 129.914944619999915, 28.296105155634748 ], [ 130.027444619999926, 28.366405155634752 ], [ 130.032444619999922, 28.353005155634762 ], [ 129.9921446199999, 28.281705155634754 ] ] ], [ [ [ 129.715544619999889, 28.45110515563475 ], [ 129.375544619999914, 28.115305155634744 ], [ 129.143544619999886, 28.250305155634734 ], [ 129.574944619999883, 28.46170515563476 ], [ 129.715544619999889, 28.45110515563475 ] ] ], [ [ [ 129.7330446199999, 29.609705155634757 ], [ 129.706044619999886, 29.647505155634761 ], [ 129.741344619999893, 29.663305155634745 ], [ 129.753344619999893, 29.647805155634742 ], [ 129.7330446199999, 29.609705155634757 ] ] ], [ [ [ 129.896344619999923, 29.874205155634755 ], [ 129.923344619999909, 29.825005155634742 ], [ 129.9219446199999, 29.819705155634736 ], [ 129.851944619999927, 29.852205155634735 ], [ 129.896344619999923, 29.874205155634755 ] ] ], [ [ [ 129.963044619999891, 29.957205155634753 ], [ 129.927444619999903, 29.974405155634756 ], [ 129.928544619999911, 30.000005155634753 ], [ 129.967144619999885, 29.974205155634749 ], [ 129.963044619999891, 29.957205155634753 ] ] ], [ [ [ 130.558544619999907, 30.236405155634756 ], [ 130.4402446199999, 30.252805155634761 ], [ 130.382744619999926, 30.393905155634755 ], [ 130.666344619999904, 30.381905155634755 ], [ 130.558544619999907, 30.236405155634756 ] ] ], [ [ [ 140.330244619999917, 30.462505155634759 ], [ 140.305544619999921, 30.460305155634742 ], [ 140.303044619999923, 30.475305155634757 ], [ 140.329144619999909, 30.479205155634745 ], [ 140.330244619999917, 30.462505155634759 ] ] ], [ [ [ 130.906144619999907, 30.354705155634761 ], [ 130.869444619999911, 30.469705155634742 ], [ 131.053544619999911, 30.840305155634738 ], [ 131.074444619999895, 30.689205155634752 ], [ 130.906144619999907, 30.354705155634761 ] ] ], [ [ [ 129.721344619999911, 31.632205155634736 ], [ 129.6705446199999, 31.65830515563475 ], [ 129.782744619999903, 31.793305155634741 ], [ 129.801944619999915, 31.758005155634734 ], [ 129.721344619999911, 31.632205155634736 ] ] ], [ [ [ 140.025544619999891, 31.933005155634746 ], [ 140.012444619999883, 31.932205155634747 ], [ 139.999344619999931, 31.942505155634748 ], [ 140.009644619999904, 31.946705155634746 ], [ 140.025544619999891, 31.933005155634746 ] ] ], [ [ [ 130.157744619999903, 32.108905155634758 ], [ 130.125744619999921, 32.121705155634757 ], [ 130.116344619999893, 32.216705155634756 ], [ 130.195544619999907, 32.176905155634742 ], [ 130.157744619999903, 32.108905155634758 ] ] ], [ [ [ 130.369444619999911, 32.374705155634743 ], [ 130.238244619999932, 32.395505155634751 ], [ 130.209444619999886, 32.443005155634737 ], [ 130.448044619999905, 32.505305155634758 ], [ 130.369444619999911, 32.374705155634743 ] ] ], [ [ [ 130.029944619999924, 32.195005155634746 ], [ 129.987444619999906, 32.409405155634758 ], [ 130.157244619999915, 32.543605155634751 ], [ 130.208544619999884, 32.335005155634761 ], [ 130.029944619999924, 32.195005155634746 ] ] ], [ [ [ 128.9008446199999, 32.643005155634754 ], [ 128.741944619999913, 32.589205155634758 ], [ 128.601044619999925, 32.618605155634739 ], [ 128.660844619999921, 32.78190515563476 ], [ 128.9008446199999, 32.643005155634754 ] ] ], [ [ [ 129.10054461999988, 32.978605155634753 ], [ 129.183044619999919, 32.986105155634746 ], [ 129.055544619999921, 32.81640515563474 ], [ 129.117744619999883, 33.145505155634751 ], [ 129.10054461999988, 32.978605155634753 ] ] ], [ [ [ 139.841644619999897, 33.035005155634749 ], [ 139.781844619999902, 33.056105155634739 ], [ 139.743544619999909, 33.138005155634758 ], [ 139.864144619999934, 33.101705155634747 ], [ 139.841644619999897, 33.035005155634749 ] ] ], [ [ [ 129.392244619999929, 33.164705155634735 ], [ 129.454144619999909, 33.331705155634737 ], [ 129.564744619999885, 33.38690515563475 ], [ 129.492744619999883, 33.216405155634746 ], [ 129.392244619999929, 33.164705155634735 ] ] ], [ [ [ 129.833344619999934, 33.341105155634736 ], [ 129.819744619999881, 33.344705155634742 ], [ 129.813644619999934, 33.397805155634742 ], [ 129.861044619999916, 33.375505155634741 ], [ 129.833344619999934, 33.341105155634736 ] ] ], [ [ [ 126.622144619999915, 33.240005155634762 ], [ 126.266344619999927, 33.190805155634749 ], [ 126.158344619999923, 33.314705155634741 ], [ 126.898044619999894, 33.523305155634759 ], [ 126.847444619999919, 33.311705155634755 ], [ 126.622144619999915, 33.240005155634762 ] ] ], [ [ [ 132.27604461999988, 33.759405155634752 ], [ 132.264644619999899, 33.754705155634738 ], [ 132.185444619999885, 33.78330515563475 ], [ 132.230544619999932, 33.79530515563475 ], [ 132.27604461999988, 33.759405155634752 ] ] ], [ [ [ 129.754744619999883, 33.726905155634753 ], [ 129.658844619999911, 33.745005155634757 ], [ 129.701644619999911, 33.856905155634749 ], [ 129.77604461999988, 33.842205155634744 ], [ 129.754744619999883, 33.726905155634753 ] ] ], [ [ [ 139.618244619999928, 33.832205155634753 ], [ 139.582744619999914, 33.843605155634762 ], [ 139.601044619999925, 33.887805155634751 ], [ 139.623744619999911, 33.872305155634749 ], [ 139.618244619999928, 33.832205155634753 ] ] ], [ [ [ 131.2141446199999, 33.59550515563474 ], [ 131.669744619999904, 33.647505155634761 ], [ 131.728844619999904, 33.463305155634757 ], [ 131.516344619999927, 33.265505155634756 ], [ 131.902744619999908, 33.256905155634755 ], [ 131.814944619999892, 33.116405155634752 ], [ 131.989444619999915, 32.830505155634754 ], [ 131.685544619999916, 32.540005155634745 ], [ 131.343044619999887, 31.373905155634745 ], [ 131.068544619999898, 31.448305155634742 ], [ 131.131044619999898, 31.269405155634743 ], [ 130.666344619999904, 30.996705155634757 ], [ 130.799144619999936, 31.313005155634741 ], [ 130.598044619999882, 31.581105155634745 ], [ 130.808544619999907, 31.684205155634757 ], [ 130.644944619999933, 31.714205155634758 ], [ 130.534444619999931, 31.528905155634746 ], [ 130.635544619999905, 31.178905155634752 ], [ 130.228044619999935, 31.248905155634745 ], [ 130.339444619999881, 31.613305155634762 ], [ 130.162444619999917, 32.006905155634755 ], [ 130.569744619999881, 32.442505155634748 ], [ 130.587444619999928, 32.631905155634755 ], [ 130.446044619999896, 32.620505155634746 ], [ 130.605544619999932, 32.791405155634735 ], [ 130.211044619999882, 33.170805155634739 ], [ 130.093844619999913, 32.856105155634751 ], [ 130.330244619999917, 32.852205155634735 ], [ 130.3460446199999, 32.664405155634753 ], [ 130.173344619999909, 32.586605155634757 ], [ 130.091044619999934, 32.785305155634759 ], [ 129.746044619999907, 32.561105155634735 ], [ 129.859644619999926, 32.711105155634741 ], [ 129.675544619999926, 33.070005155634746 ], [ 129.848844619999909, 32.822805155634754 ], [ 129.944144619999918, 32.99250515563476 ], [ 129.563844619999884, 33.207205155634753 ], [ 129.578844619999927, 33.353605155634753 ], [ 129.826644619999911, 33.287805155634757 ], [ 129.797244619999901, 33.444405155634755 ], [ 129.860744619999934, 33.524705155634749 ], [ 130.006644619999918, 33.439405155634759 ], [ 130.207444619999933, 33.650805155634757 ], [ 130.393544619999886, 33.597805155634759 ], [ 130.690844619999893, 33.935805155634753 ], [ 130.982144619999929, 33.881105155634756 ], [ 131.2141446199999, 33.59550515563474 ] ] ], [ [ [ 132.326044619999891, 33.894705155634753 ], [ 132.451644619999911, 33.922805155634748 ], [ 132.331644619999906, 33.849205155634749 ], [ 132.184344619999933, 33.907505155634752 ], [ 132.326044619999891, 33.894705155634753 ] ] ], [ [ [ 139.52604461999988, 34.032505155634752 ], [ 139.482144619999929, 34.070005155634746 ], [ 139.560444619999885, 34.106105155634751 ], [ 139.5660446199999, 34.05470515563475 ], [ 139.52604461999988, 34.032505155634752 ] ] ], [ [ [ 132.5455446199999, 34.111105155634746 ], [ 132.557444619999899, 34.061105155634735 ], [ 132.456644619999906, 34.086905155634739 ], [ 132.528844619999916, 34.182505155634757 ], [ 132.5455446199999, 34.111105155634746 ] ] ], [ [ [ 132.448844619999932, 34.11550515563475 ], [ 132.385544619999905, 34.243605155634739 ], [ 132.48184461999989, 34.279205155634756 ], [ 132.485444619999896, 34.132505155634746 ], [ 132.448844619999932, 34.11550515563475 ] ] ], [ [ [ 132.9710446199999, 34.185805155634753 ], [ 132.972744619999901, 34.258605155634754 ], [ 133.029644619999885, 34.291105155634753 ], [ 133.050544619999926, 34.209705155634751 ], [ 132.9710446199999, 34.185805155634753 ] ] ], [ [ [ 129.236944619999917, 34.082205155634753 ], [ 129.183544619999907, 34.103905155634735 ], [ 129.217444619999924, 34.321905155634752 ], [ 129.349444619999929, 34.280005155634754 ], [ 129.236944619999917, 34.082205155634753 ] ] ], [ [ [ 134.223544619999927, 34.34440515563476 ], [ 134.579144619999909, 34.224205155634749 ], [ 134.753044619999912, 33.82610515563475 ], [ 134.3785446199999, 33.619705155634747 ], [ 134.187744619999933, 33.238305155634762 ], [ 133.919144619999884, 33.477205155634735 ], [ 133.598844619999909, 33.501405155634743 ], [ 133.282444619999922, 33.364205155634735 ], [ 133.007444619999887, 32.767505155634737 ], [ 132.803044619999923, 32.735505155634755 ], [ 132.636944619999895, 32.753605155634759 ], [ 132.711644619999902, 32.90830515563475 ], [ 132.480544619999932, 32.897205155634751 ], [ 132.534744619999913, 33.244705155634747 ], [ 132.372444619999897, 33.466405155634746 ], [ 132.015844619999882, 33.337205155634749 ], [ 132.644144619999906, 33.677505155634762 ], [ 132.899144619999902, 34.10780515563475 ], [ 133.142444619999935, 33.912505155634747 ], [ 133.524144619999902, 33.96140515563475 ], [ 133.893844619999925, 34.360005155634738 ], [ 134.223544619999927, 34.34440515563476 ] ] ], [ [ [ 126.765544619999901, 34.280805155634752 ], [ 126.651344619999918, 34.316105155634759 ], [ 126.663844619999907, 34.382505155634746 ], [ 126.730744619999882, 34.363905155634754 ], [ 126.765544619999901, 34.280805155634752 ] ] ], [ [ [ 139.278844619999916, 34.321105155634754 ], [ 139.248544619999905, 34.350805155634745 ], [ 139.296044619999918, 34.419705155634759 ], [ 139.299144619999936, 34.37890515563474 ], [ 139.278844619999916, 34.321105155634754 ] ] ], [ [ [ 127.21354461999988, 34.418905155634761 ], [ 127.145844619999934, 34.415005155634745 ], [ 127.111344619999898, 34.460305155634742 ], [ 127.222644619999926, 34.483605155634748 ], [ 127.21354461999988, 34.418905155634761 ] ] ], [ [ [ 127.790744619999884, 34.476405155634737 ], [ 127.758344619999889, 34.487505155634736 ], [ 127.711944619999883, 34.526705155634758 ], [ 127.770844619999934, 34.538305155634745 ], [ 127.790744619999884, 34.476405155634737 ] ] ], [ [ [ 134.350844619999918, 34.434405155634735 ], [ 134.193844619999936, 34.471405155634741 ], [ 134.192744619999928, 34.510005155634744 ], [ 134.368544619999909, 34.550305155634746 ], [ 134.350844619999918, 34.434405155634735 ] ] ], [ [ [ 126.186644619999925, 34.351405155634737 ], [ 126.099644619999935, 34.419205155634742 ], [ 126.243244619999928, 34.573305155634742 ], [ 126.380244619999928, 34.494705155634747 ], [ 126.186644619999925, 34.351405155634737 ] ] ], [ [ [ 134.790244619999896, 34.193305155634746 ], [ 134.666944619999924, 34.296905155634747 ], [ 135.018044619999898, 34.592805155634736 ], [ 134.948544619999893, 34.26330515563474 ], [ 134.790244619999896, 34.193305155634746 ] ] ], [ [ [ 127.803844619999893, 34.575505155634758 ], [ 127.734344619999888, 34.613305155634762 ], [ 127.768044619999898, 34.664105155634743 ], [ 127.812144619999913, 34.641405155634757 ], [ 127.803844619999893, 34.575505155634758 ] ] ], [ [ [ 129.339944619999926, 34.294705155634759 ], [ 129.300244619999887, 34.556905155634738 ], [ 129.463844619999918, 34.689405155634759 ], [ 129.476044619999925, 34.534405155634758 ], [ 129.339944619999926, 34.294705155634759 ] ] ], [ [ [ 125.991344619999893, 34.668005155634759 ], [ 125.96354461999988, 34.648605155634741 ], [ 125.914944619999915, 34.692205155634738 ], [ 125.981344619999902, 34.716905155634734 ], [ 125.991344619999893, 34.668005155634759 ] ] ], [ [ [ 139.453244619999907, 34.672505155634738 ], [ 139.369944619999899, 34.692505155634748 ], [ 139.371544619999895, 34.781705155634754 ], [ 139.442744619999928, 34.764405155634748 ], [ 139.453244619999907, 34.672505155634738 ] ] ], [ [ [ 126.003044619999912, 34.773005155634749 ], [ 125.932144619999917, 34.718305155634752 ], [ 125.888244619999909, 34.73250515563474 ], [ 125.908344619999923, 34.772805155634742 ], [ 126.003044619999912, 34.773005155634749 ] ] ], [ [ [ 128.0857446199999, 34.830305155634747 ], [ 127.997144619999915, 34.835305155634742 ], [ 127.97414461999989, 34.858305155634739 ], [ 128.024144619999902, 34.913905155634737 ], [ 128.0857446199999, 34.830305155634747 ] ] ], [ [ [ 126.063544619999902, 34.854405155634751 ], [ 125.993044619999921, 34.858305155634739 ], [ 125.983544619999918, 34.865005155634762 ], [ 126.062744619999933, 34.92830515563476 ], [ 126.063544619999902, 34.854405155634751 ] ] ], [ [ [ 127.956044619999886, 34.800805155634762 ], [ 128.060744619999923, 34.70110515563475 ], [ 127.857144619999929, 34.723905155634739 ], [ 127.87994461999989, 34.92940515563474 ], [ 127.956044619999886, 34.800805155634762 ] ] ], [ [ [ 128.754444619999902, 34.876905155634759 ], [ 128.5940446199999, 34.697805155634754 ], [ 128.488544619999914, 34.856405155634761 ], [ 128.711044619999882, 34.976605155634743 ], [ 128.754444619999902, 34.876905155634759 ] ] ], [ [ [ 126.106044619999921, 35.046905155634747 ], [ 126.059944619999897, 35.090805155634754 ], [ 126.162144619999935, 35.143305155634735 ], [ 126.144444619999888, 35.080305155634747 ], [ 126.106044619999921, 35.046905155634747 ] ] ], [ [ [ 133.070544619999907, 35.990305155634744 ], [ 133.022144619999892, 35.991405155634752 ], [ 133.010744619999912, 36.014405155634748 ], [ 133.043844619999902, 36.016905155634745 ], [ 133.070544619999907, 35.990305155634744 ] ] ], [ [ [ 133.098844619999909, 36.030005155634754 ], [ 133.074644619999901, 36.080005155634737 ], [ 133.131844619999924, 36.100005155634747 ], [ 133.127444619999892, 36.070005155634746 ], [ 133.098844619999909, 36.030005155634754 ] ] ], [ [ [ 133.0021446199999, 36.03300515563474 ], [ 132.976544619999913, 36.092805155634736 ], [ 133.086644619999902, 36.123905155634745 ], [ 133.051344619999895, 36.052805155634744 ], [ 133.0021446199999, 36.03300515563474 ] ] ], [ [ [ 133.291944619999924, 36.325005155634742 ], [ 133.3785446199999, 36.200505155634758 ], [ 133.252444619999892, 36.152505155634756 ], [ 133.189144619999922, 36.269705155634753 ], [ 133.291944619999924, 36.325005155634742 ] ] ], [ [ [ 126.4282446199999, 36.399705155634749 ], [ 126.3357446199999, 36.438605155634761 ], [ 126.346944619999931, 36.591105155634736 ], [ 126.3785446199999, 36.586105155634741 ], [ 126.4282446199999, 36.399705155634749 ] ] ], [ [ [ 126.169444619999922, 36.82580515563474 ], [ 126.159144619999893, 36.827805155634749 ], [ 126.161044619999927, 36.838005155634747 ], [ 126.172444619999908, 36.836805155634735 ], [ 126.169444619999922, 36.82580515563474 ] ] ], [ [ [ 137.057444619999899, 37.143005155634754 ], [ 136.954144619999909, 37.089405155634736 ], [ 136.909344619999899, 37.13720515563476 ], [ 137.040244619999896, 37.155005155634754 ], [ 137.057444619999899, 37.143005155634754 ] ] ], [ [ [ 130.887444619999883, 37.453305155634737 ], [ 130.818844619999936, 37.467805155634736 ], [ 130.807444619999899, 37.518305155634735 ], [ 130.919444619999922, 37.54530515563475 ], [ 130.887444619999883, 37.453305155634737 ] ] ], [ [ [ 126.501344619999884, 37.59440515563476 ], [ 126.373044619999916, 37.621705155634757 ], [ 126.400544619999891, 37.818905155634738 ], [ 126.516044619999889, 37.761105155634752 ], [ 126.501344619999884, 37.59440515563476 ] ] ], [ [ [ 124.695544619999907, 37.916105155634753 ], [ 124.636644619999913, 37.918305155634741 ], [ 124.615244619999885, 37.968605155634762 ], [ 124.72554461999988, 37.981705155634742 ], [ 124.695544619999907, 37.916105155634753 ] ] ], [ [ [ 138.435244619999935, 38.047505155634738 ], [ 138.581044619999886, 38.057205155634747 ], [ 138.478544619999923, 37.882205155634736 ], [ 138.218244619999894, 37.800805155634762 ], [ 138.33714461999989, 37.966705155634756 ], [ 138.242444619999901, 38.075005155634742 ], [ 138.516344619999927, 38.320305155634756 ], [ 138.435244619999935, 38.047505155634738 ] ] ], [ [ [ 124.8460446199999, 39.497205155634745 ], [ 124.889144619999911, 39.605505155634759 ], [ 124.934144619999927, 39.608305155634739 ], [ 124.921844619999888, 39.552205155634752 ], [ 124.8460446199999, 39.497205155634745 ] ] ], [ [ [ 141.270744619999903, 41.342505155634754 ], [ 141.455744619999905, 41.343905155634744 ], [ 141.460444619999919, 40.593905155634744 ], [ 141.820244619999926, 40.267205155634755 ], [ 142.069644619999906, 39.54670515563474 ], [ 141.851044619999925, 39.020805155634761 ], [ 141.633344619999889, 38.993305155634758 ], [ 141.533044619999885, 38.780505155634742 ], [ 141.525744619999898, 38.266405155634757 ], [ 141.095744619999891, 38.364405155634742 ], [ 140.953544619999889, 38.148005155634749 ], [ 140.97554461999988, 36.987805155634746 ], [ 140.56544461999988, 36.247505155634755 ], [ 140.83714461999989, 35.743305155634758 ], [ 140.450744619999909, 35.50390515563474 ], [ 140.334644619999892, 35.131405155634738 ], [ 139.770244619999914, 34.953305155634737 ], [ 140.113244619999932, 35.549705155634754 ], [ 139.968544619999932, 35.660805155634748 ], [ 139.645544619999896, 35.458905155634753 ], [ 139.676644619999934, 35.135305155634754 ], [ 139.554344619999881, 35.286905155634756 ], [ 139.171044619999918, 35.236105155634746 ], [ 139.138544619999891, 34.874705155634743 ], [ 138.847444619999919, 34.592505155634754 ], [ 138.767144619999897, 34.953005155634756 ], [ 138.909144619999893, 35.029205155634756 ], [ 138.744944619999899, 35.122805155634737 ], [ 138.5646446199999, 35.08780515563474 ], [ 138.2141446199999, 34.599205155634749 ], [ 137.036044619999927, 34.564705155634741 ], [ 137.347444619999919, 34.72220515563474 ], [ 137.0238446199999, 34.760805155634742 ], [ 136.980244619999894, 34.919405155634749 ], [ 136.973544619999927, 34.682505155634757 ], [ 136.8777446199999, 34.720305155634762 ], [ 136.846844619999899, 35.078305155634737 ], [ 136.519444619999888, 34.692505155634748 ], [ 136.917444619999912, 34.431705155634759 ], [ 136.899144619999902, 34.266905155634745 ], [ 136.343844619999913, 34.189705155634741 ], [ 135.772144619999892, 33.455005155634737 ], [ 135.063244619999921, 33.877805155634761 ], [ 135.132444619999887, 34.317205155634738 ], [ 135.454144619999909, 34.551105155634744 ], [ 135.333544619999884, 34.718305155634752 ], [ 135.063544619999902, 34.61690515563474 ], [ 134.67074461999988, 34.778305155634754 ], [ 134.250244619999933, 34.715305155634738 ], [ 133.929944619999901, 34.582205155634753 ], [ 134.044644619999929, 34.581705155634737 ], [ 133.933044619999919, 34.448905155634762 ], [ 133.247144619999915, 34.422205155634757 ], [ 133.077744619999919, 34.247505155634755 ], [ 133.0463446199999, 34.324205155634743 ], [ 132.823044619999905, 34.308605155634737 ], [ 132.557144619999917, 34.188905155634743 ], [ 132.503844619999882, 34.322505155634744 ], [ 132.367744619999883, 34.358605155634748 ], [ 132.050544619999926, 33.772505155634761 ], [ 131.745744619999925, 34.053605155634742 ], [ 130.893244619999905, 33.92170515563474 ], [ 130.946344619999934, 34.416405155634735 ], [ 131.405544619999887, 34.419405155634749 ], [ 132.638844619999929, 35.286405155634739 ], [ 132.632144619999906, 35.420805155634739 ], [ 133.087944619999917, 35.581705155634737 ], [ 133.4016446199999, 35.445305155634756 ], [ 135.222144619999881, 35.76220515563476 ], [ 135.188244619999921, 35.530305155634736 ], [ 135.387144619999901, 35.466405155634746 ], [ 135.461044619999882, 35.588005155634747 ], [ 135.736344619999898, 35.483905155634758 ], [ 136.017444619999935, 35.74220515563475 ], [ 136.072744619999924, 35.648605155634741 ], [ 135.959344619999911, 35.973305155634748 ], [ 136.712444619999928, 36.751405155634743 ], [ 136.786944619999929, 37.362205155634754 ], [ 137.356344619999902, 37.504705155634738 ], [ 137.355244619999894, 37.431405155634749 ], [ 136.9213446199999, 37.197205155634762 ], [ 136.863244619999932, 37.08780515563474 ], [ 137.044444619999922, 37.056605155634756 ], [ 137.0055446199999, 36.829205155634739 ], [ 137.302444619999903, 36.746405155634747 ], [ 138.580544619999898, 37.398605155634741 ], [ 138.83854461999988, 37.806905155634738 ], [ 139.424344619999886, 38.151705155634758 ], [ 140.022744619999912, 39.378605155634759 ], [ 140.038244619999887, 39.80300515563475 ], [ 139.702444619999881, 39.931905155634738 ], [ 140.020544619999896, 40.230805155634741 ], [ 139.852744619999896, 40.601105155634755 ], [ 140.268844619999925, 40.806605155634756 ], [ 140.348544619999927, 41.248005155634743 ], [ 140.642144619999897, 41.17830515563476 ], [ 140.724944619999917, 40.829205155634739 ], [ 140.885744619999912, 40.99250515563476 ], [ 141.149344619999908, 40.862205155634754 ], [ 141.228844619999904, 41.230005155634743 ], [ 140.763044619999903, 41.172805155634748 ], [ 140.918844619999902, 41.530305155634736 ], [ 141.270744619999903, 41.342505155634754 ] ] ], [ [ [ 139.563044619999914, 42.228605155634753 ], [ 139.501944619999904, 42.081105155634745 ], [ 139.428344619999905, 42.061705155634755 ], [ 139.4333446199999, 42.201905155634748 ], [ 139.563044619999914, 42.228605155634753 ] ] ], [ [ [ 130.638844619999929, 42.40690515563476 ], [ 130.688844619999884, 42.283905155634741 ], [ 130.42074461999988, 42.311905155634761 ], [ 129.6993446199999, 41.648605155634741 ], [ 129.807944619999887, 41.372205155634745 ], [ 129.709344619999911, 40.830005155634737 ], [ 129.229144619999886, 40.690305155634761 ], [ 128.597944619999907, 40.174205155634738 ], [ 127.560544619999916, 39.782205155634742 ], [ 127.561644619999925, 39.306405155634749 ], [ 127.374644619999913, 39.372205155634745 ], [ 127.406344619999913, 39.189705155634741 ], [ 128.3588446199999, 38.683605155634737 ], [ 129.342444619999924, 37.257205155634736 ], [ 129.474944619999917, 36.774405155634739 ], [ 129.388844619999929, 36.025705155634753 ], [ 129.5883446199999, 36.01930515563474 ], [ 129.439344619999929, 35.475805155634745 ], [ 129.136944619999895, 35.112205155634754 ], [ 128.572744619999924, 35.17000515563474 ], [ 128.37794461999988, 35.036105155634758 ], [ 128.501344619999884, 35.008305155634744 ], [ 128.434944619999897, 34.834705155634751 ], [ 128.329144619999909, 34.94940515563475 ], [ 127.593244619999894, 34.94170515563475 ], [ 127.773544619999882, 34.843905155634744 ], [ 127.640744619999907, 34.61690515563474 ], [ 127.493844619999891, 34.851705155634747 ], [ 127.389444619999892, 34.47110515563476 ], [ 127.124644619999913, 34.537205155634737 ], [ 127.328544619999889, 34.743005155634748 ], [ 126.889444619999892, 34.412505155634747 ], [ 126.777444619999926, 34.585505155634749 ], [ 126.524944619999928, 34.316105155634759 ], [ 126.26694461999989, 34.683305155634756 ], [ 126.618244619999928, 34.619405155634738 ], [ 126.476944619999927, 34.725005155634747 ], [ 126.659644619999881, 34.812805155634734 ], [ 126.375744619999921, 34.785505155634738 ], [ 126.433544619999907, 34.963605155634738 ], [ 126.249144619999925, 35.116705155634762 ], [ 126.431344619999891, 35.023305155634759 ], [ 126.421844619999888, 35.40660515563475 ], [ 126.687744619999933, 35.53330515563475 ], [ 126.474644619999935, 35.635805155634742 ], [ 126.801044619999914, 35.861705155634738 ], [ 126.631644619999918, 35.967205155634744 ], [ 126.761944619999895, 35.995305155634739 ], [ 126.872944619999885, 36.05470515563475 ], [ 126.54434461999989, 36.136405155634762 ], [ 126.497144619999915, 36.723905155634739 ], [ 126.293044619999932, 36.581905155634743 ], [ 126.123544619999905, 36.709205155634734 ], [ 126.286044619999927, 36.960005155634761 ], [ 126.289444619999927, 36.785805155634748 ], [ 126.40104461999988, 36.851905155634753 ], [ 126.349944619999917, 36.994405155634738 ], [ 126.48324461999988, 36.842505155634754 ], [ 126.502444619999892, 37.052805155634744 ], [ 126.781044619999932, 36.963605155634738 ], [ 126.83854461999988, 36.753305155634749 ], [ 126.9921446199999, 36.910805155634748 ], [ 126.7527446199999, 37.048605155634746 ], [ 126.869144619999929, 37.176405155634754 ], [ 126.661044619999927, 37.156105155634762 ], [ 126.8657446199999, 37.266905155634745 ], [ 126.547444619999908, 37.647205155634751 ], [ 126.688444619999927, 37.833905155634753 ], [ 126.384944619999885, 37.88720515563476 ], [ 126.140544619999901, 37.733005155634757 ], [ 125.5891446199999, 38.027205155634746 ], [ 125.724444619999929, 37.910805155634748 ], [ 125.342744619999905, 37.671405155634758 ], [ 125.512144619999901, 37.88690515563475 ], [ 124.980544619999932, 37.924405155634744 ], [ 125.268044619999898, 38.072805155634754 ], [ 124.664644619999933, 38.121105155634737 ], [ 124.993544619999909, 38.588305155634757 ], [ 125.653244619999896, 38.627205155634741 ], [ 125.139944619999881, 38.796405155634758 ], [ 125.448244619999912, 39.57640515563476 ], [ 125.123044619999916, 39.557205155634747 ], [ 124.744444619999911, 39.776905155634736 ], [ 124.624144619999925, 39.595005155634752 ], [ 124.322744619999924, 39.911405155634739 ], [ 124.373544619999905, 40.093605155634762 ], [ 124.891344619999927, 40.475805155634745 ], [ 126.01694461999989, 40.900005155634759 ], [ 126.566544619999888, 41.617005155634743 ], [ 126.91304461999988, 41.796105155634748 ], [ 127.270844619999934, 41.472505155634749 ], [ 128.155744619999894, 41.382505155634746 ], [ 128.301844619999883, 41.577805155634749 ], [ 128.054344619999881, 41.999205155634755 ], [ 128.925744619999932, 42.024405155634739 ], [ 129.341844619999904, 42.445805155634744 ], [ 129.711844619999908, 42.444105155634745 ], [ 129.907544619999896, 43.005805155634746 ], [ 130.2521446199999, 42.892505155634737 ], [ 130.243244619999928, 42.718305155634752 ], [ 130.638844619999929, 42.40690515563476 ] ] ], [ [ [ 145.290844619999916, 43.538705155634759 ], [ 145.29574461999988, 43.570305155634756 ], [ 145.224044619999916, 43.602005155634757 ], [ 145.361044619999916, 43.555505155634748 ], [ 145.290844619999916, 43.538705155634759 ] ] ], [ [ [ 143.970244619999903, 44.141105155634747 ], [ 143.8777446199999, 44.147805155634742 ], [ 143.811944619999906, 44.168005155634759 ], [ 143.946344619999934, 44.151705155634758 ], [ 143.970244619999903, 44.141105155634747 ] ] ], [ [ [ 141.259444619999897, 45.098005155634738 ], [ 141.149744619999922, 45.13890515563476 ], [ 141.134744619999935, 45.213905155634748 ], [ 141.3083446199999, 45.188905155634743 ], [ 141.259444619999897, 45.098005155634738 ] ] ], [ [ [ 141.039444619999927, 45.266905155634745 ], [ 141.027744619999908, 45.268305155634735 ], [ 140.973544619999927, 45.465305155634738 ], [ 141.074444619999895, 45.414105155634743 ], [ 141.039444619999927, 45.266905155634745 ] ] ], [ [ [ 142.048344619999909, 45.404705155634744 ], [ 143.772244619999924, 44.09410515563475 ], [ 144.779444619999936, 43.913305155634745 ], [ 145.342444619999924, 44.34410515563475 ], [ 145.069944619999887, 43.774705155634749 ], [ 145.2561446199999, 43.315005155634751 ], [ 145.822244619999935, 43.369405155634738 ], [ 144.981944619999922, 42.977505155634745 ], [ 143.989644619999922, 42.90660515563475 ], [ 143.434944619999897, 42.442505155634748 ], [ 143.239944619999903, 41.924205155634738 ], [ 141.790544619999935, 42.606405155634761 ], [ 140.986044619999916, 42.29500515563474 ], [ 140.74524461999988, 42.555305155634741 ], [ 140.461644619999902, 42.567805155634758 ], [ 140.284944619999919, 42.253005155634739 ], [ 141.199144619999913, 41.798305155634736 ], [ 140.984644619999926, 41.704705155634755 ], [ 140.662444619999917, 41.82470515563476 ], [ 140.417444619999912, 41.515305155634749 ], [ 140.069744619999881, 41.419205155634742 ], [ 139.978044619999935, 41.581105155634745 ], [ 140.138844619999929, 41.981405155634761 ], [ 139.782244619999915, 42.246405155634747 ], [ 139.8363446199999, 42.615305155634744 ], [ 140.528844619999916, 43.000505155634741 ], [ 140.321344619999934, 43.235505155634755 ], [ 140.467744619999905, 43.36720515563475 ], [ 141.158844619999911, 43.137805155634751 ], [ 141.407244619999915, 43.291405155634735 ], [ 141.336944619999883, 43.712505155634759 ], [ 141.645844619999934, 43.942205155634738 ], [ 141.797244619999901, 44.625005155634753 ], [ 141.578044619999901, 45.23250515563474 ], [ 141.690544619999912, 45.401705155634758 ], [ 142.048344619999909, 45.404705155634744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 40, "LEVEL1_COD": 4, "LEVEL1_NAM": "ASIA-TROPICAL", "LEVEL2_NAM": "Indian Subcontinent" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.176344619999895, -0.689694844365249 ], [ 73.161344619999909, -0.688094844365253 ], [ 73.156344619999913, -0.683894844365255 ], [ 73.171844619999888, -0.681694844365254 ], [ 73.176344619999895, -0.689694844365249 ] ] ], [ [ [ 73.201344619999929, -0.680794844365252 ], [ 73.19244461999989, -0.685294844365245 ], [ 73.188244619999921, -0.684694844365254 ], [ 73.201944619999892, -0.667194844365255 ], [ 73.201344619999929, -0.680794844365252 ] ] ], [ [ [ 73.1291446199999, -0.668894844365255 ], [ 73.125244619999933, -0.668894844365255 ], [ 73.121344619999888, -0.653294844365249 ], [ 73.12994461999989, -0.664694844365258 ], [ 73.1291446199999, -0.668894844365255 ] ] ], [ [ [ 73.230744619999882, -0.648094844365247 ], [ 73.226044619999925, -0.632494844365254 ], [ 73.2421446199999, -0.61779484436525 ], [ 73.243544619999909, -0.623294844365248 ], [ 73.230744619999882, -0.648094844365247 ] ] ], [ [ [ 73.116344619999893, -0.63579484436525 ], [ 73.090744619999896, -0.606694844365251 ], [ 73.091344619999916, -0.582494844365257 ], [ 73.101944619999927, -0.583094844365249 ], [ 73.116344619999893, -0.63579484436525 ] ] ], [ [ [ 73.248044619999916, -0.605294844365247 ], [ 73.235744619999934, -0.585594844365247 ], [ 73.249144619999925, -0.576094844365258 ], [ 73.246944619999908, -0.588594844365247 ], [ 73.248044619999916, -0.605294844365247 ] ] ], [ [ [ 73.446944619999897, -0.299494844365256 ], [ 73.447744619999924, -0.307794844365247 ], [ 73.4282446199999, -0.286394844365248 ], [ 73.44244461999989, -0.285294844365254 ], [ 73.446944619999897, -0.299494844365256 ] ] ], [ [ [ 73.106944619999922, 0.211905155634753 ], [ 73.100244619999899, 0.213305155634743 ], [ 73.095544619999885, 0.228005155634747 ], [ 73.103244619999884, 0.228905155634749 ], [ 73.106944619999922, 0.211905155634753 ] ] ], [ [ [ 73.214644619999888, 0.230805155634755 ], [ 73.207744619999914, 0.230805155634755 ], [ 73.209144619999904, 0.240005155634748 ], [ 73.220244619999903, 0.23920515563475 ], [ 73.214644619999888, 0.230805155634755 ] ] ], [ [ [ 73.0449446199999, 0.259405155634752 ], [ 73.034344619999899, 0.261405155634748 ], [ 73.033044619999885, 0.272805155634742 ], [ 73.036344619999909, 0.271005155634754 ], [ 73.0449446199999, 0.259405155634752 ] ] ], [ [ [ 73.375744619999921, 0.280005155634754 ], [ 73.3671446199999, 0.281405155634744 ], [ 73.379644619999908, 0.291905155634751 ], [ 73.380744619999916, 0.288605155634755 ], [ 73.375744619999921, 0.280005155634754 ] ] ], [ [ [ 73.513044619999903, 0.378305155634749 ], [ 73.504644619999908, 0.38390515563475 ], [ 73.508844619999934, 0.392505155634751 ], [ 73.513544619999891, 0.387805155634751 ], [ 73.513044619999903, 0.378305155634749 ] ] ], [ [ [ 72.9430446199999, 0.488605155634744 ], [ 72.938044619999914, 0.485505155634755 ], [ 72.937144619999913, 0.499705155634743 ], [ 72.9410446199999, 0.496405155634747 ], [ 72.9430446199999, 0.488605155634744 ] ] ], [ [ [ 73.498044619999916, 0.499705155634743 ], [ 73.493044619999921, 0.496905155634749 ], [ 73.487744619999887, 0.508005155634748 ], [ 73.4921446199999, 0.508005155634748 ], [ 73.498044619999916, 0.499705155634743 ] ] ], [ [ [ 73.374644619999913, 1.781705155634754 ], [ 73.363844619999895, 1.782505155634752 ], [ 73.361344619999898, 1.788605155634755 ], [ 73.374644619999913, 1.79530515563475 ], [ 73.374644619999913, 1.781705155634754 ] ] ], [ [ [ 73.399144619999902, 1.793905155634747 ], [ 73.395844619999934, 1.803605155634742 ], [ 73.407744619999903, 1.805805155634744 ], [ 73.408044619999885, 1.798905155634742 ], [ 73.399144619999902, 1.793905155634747 ] ] ], [ [ [ 73.287144619999935, 1.831905155634743 ], [ 73.299344619999886, 1.82610515563475 ], [ 73.297144619999926, 1.819205155634748 ], [ 73.284344619999899, 1.823005155634746 ], [ 73.287144619999935, 1.831905155634743 ] ] ], [ [ [ 73.506944619999899, 1.826705155634755 ], [ 73.494944619999899, 1.823005155634746 ], [ 73.516644619999909, 1.847205155634754 ], [ 73.515744619999907, 1.83640515563475 ], [ 73.506944619999899, 1.826705155634755 ] ] ], [ [ [ 73.250544619999914, 1.889205155634755 ], [ 73.241944619999913, 1.886105155634752 ], [ 73.247744619999935, 1.898305155634745 ], [ 73.251044619999902, 1.896905155634755 ], [ 73.250544619999914, 1.889205155634755 ] ] ], [ [ [ 73.549944619999906, 1.896405155634753 ], [ 73.539944619999915, 1.891905155634745 ], [ 73.549644619999924, 1.937205155634743 ], [ 73.554144619999931, 1.919705155634745 ], [ 73.549944619999906, 1.896405155634753 ] ] ], [ [ [ 73.553044619999923, 1.965005155634742 ], [ 73.548344619999909, 1.964205155634744 ], [ 73.547144619999926, 1.978305155634743 ], [ 73.552144619999922, 1.973305155634748 ], [ 73.553044619999923, 1.965005155634742 ] ] ], [ [ [ 73.323044619999905, 1.985005155634752 ], [ 73.313844619999884, 1.986405155634742 ], [ 73.322444619999885, 1.995505155634746 ], [ 73.326644619999911, 1.990005155634748 ], [ 73.323044619999905, 1.985005155634752 ] ] ], [ [ [ 73.588844619999918, 2.107505155634755 ], [ 73.563844619999884, 2.091705155634742 ], [ 73.559144619999927, 2.096105155634746 ], [ 73.567744619999928, 2.110005155634752 ], [ 73.588844619999918, 2.107505155634755 ] ] ], [ [ [ 73.123844619999886, 2.190505155634753 ], [ 73.116644619999931, 2.189705155634755 ], [ 73.110244619999889, 2.196905155634752 ], [ 73.121844619999933, 2.196905155634752 ], [ 73.123844619999886, 2.190505155634753 ] ] ], [ [ [ 72.930744619999928, 2.314405155634745 ], [ 72.9199446199999, 2.322505155634744 ], [ 72.922744619999889, 2.328905155634743 ], [ 72.929144619999931, 2.325305155634751 ], [ 72.930744619999928, 2.314405155634745 ] ] ], [ [ [ 73.366644619999931, 2.384405155634752 ], [ 73.361844619999886, 2.38220515563475 ], [ 73.350244619999899, 2.440805155634749 ], [ 73.368544619999909, 2.409705155634754 ], [ 73.366644619999931, 2.384405155634752 ] ] ], [ [ [ 73.319644619999906, 2.492505155634746 ], [ 73.313544619999902, 2.491905155634754 ], [ 73.311044619999905, 2.504705155634753 ], [ 73.314944619999892, 2.505805155634746 ], [ 73.319644619999906, 2.492505155634746 ] ] ], [ [ [ 72.876044619999902, 2.681405155634749 ], [ 72.866344619999893, 2.685005155634755 ], [ 72.866344619999893, 2.696105155634754 ], [ 72.872744619999935, 2.694205155634748 ], [ 72.876044619999902, 2.681405155634749 ] ] ], [ [ [ 73.0252446199999, 2.734405155634747 ], [ 73.018844619999925, 2.736905155634744 ], [ 73.034944619999919, 2.747505155634755 ], [ 73.034344619999899, 2.743305155634744 ], [ 73.0252446199999, 2.734405155634747 ] ] ], [ [ [ 73.356644619999884, 2.771705155634749 ], [ 73.348844619999909, 2.770805155634747 ], [ 73.349444619999929, 2.781905155634746 ], [ 73.3531446199999, 2.779405155634748 ], [ 73.356644619999884, 2.771705155634749 ] ] ], [ [ [ 73.017744619999917, 2.946905155634752 ], [ 73.011944619999895, 2.943905155634752 ], [ 73.005844619999891, 2.946905155634752 ], [ 73.012144619999901, 2.954705155634741 ], [ 73.017744619999917, 2.946905155634752 ] ] ], [ [ [ 73.579944619999935, 2.948905155634748 ], [ 73.574444619999895, 2.950505155634744 ], [ 73.585544619999894, 2.967505155634754 ], [ 73.584944619999931, 2.957505155634749 ], [ 73.579944619999935, 2.948905155634748 ] ] ], [ [ [ 72.982144619999929, 3.101905155634753 ], [ 72.974944619999917, 3.102505155634745 ], [ 72.973844619999909, 3.108005155634743 ], [ 72.982744619999892, 3.11080515563475 ], [ 72.982144619999929, 3.101905155634753 ] ] ], [ [ [ 73.58714461999989, 3.367805155634741 ], [ 73.581644619999906, 3.372205155634745 ], [ 73.590744619999896, 3.376905155634745 ], [ 73.591344619999916, 3.372805155634751 ], [ 73.58714461999989, 3.367805155634741 ] ] ], [ [ [ 73.753344619999893, 3.44640515563475 ], [ 73.748544619999905, 3.44640515563475 ], [ 73.747744619999935, 3.45110515563475 ], [ 73.751344619999884, 3.452505155634753 ], [ 73.753344619999893, 3.44640515563475 ] ] ], [ [ [ 72.802744619999885, 3.510305155634754 ], [ 72.790744619999884, 3.509205155634746 ], [ 72.78804461999988, 3.511105155634752 ], [ 72.798544619999916, 3.516905155634745 ], [ 72.802744619999885, 3.510305155634754 ] ] ], [ [ [ 72.922744619999889, 3.544205155634742 ], [ 72.908044619999885, 3.537805155634743 ], [ 72.927144619999922, 3.559705155634745 ], [ 72.928544619999911, 3.551905155634742 ], [ 72.922744619999889, 3.544205155634742 ] ] ], [ [ [ 72.697444619999885, 3.714205155634744 ], [ 72.691344619999882, 3.714705155634746 ], [ 72.687744619999933, 3.724705155634751 ], [ 72.6993446199999, 3.724205155634749 ], [ 72.697444619999885, 3.714205155634744 ] ] ], [ [ [ 73.473844619999909, 3.933005155634746 ], [ 73.465544619999889, 3.932205155634747 ], [ 73.477444619999915, 3.942205155634753 ], [ 73.480244619999894, 3.940505155634753 ], [ 73.473844619999909, 3.933005155634746 ] ] ], [ [ [ 72.709644619999892, 3.995505155634746 ], [ 72.699144619999913, 3.997805155634751 ], [ 72.697744619999924, 4.000805155634751 ], [ 72.707744619999914, 4.003605155634745 ], [ 72.709644619999892, 3.995505155634746 ] ] ], [ [ [ 73.512144619999901, 4.093605155634748 ], [ 73.503844619999882, 4.093605155634748 ], [ 73.503044619999912, 4.106905155634749 ], [ 73.510744619999912, 4.100805155634745 ], [ 73.512144619999901, 4.093605155634748 ] ] ], [ [ [ 73.5035446199999, 4.164205155634747 ], [ 73.49524461999988, 4.162805155634743 ], [ 73.491044619999911, 4.17500515563475 ], [ 73.505244619999928, 4.178605155634742 ], [ 73.5035446199999, 4.164205155634747 ] ] ], [ [ [ 73.518544619999886, 4.191405155634754 ], [ 73.519144619999906, 4.176405155634754 ], [ 73.511344619999932, 4.182205155634747 ], [ 73.518544619999886, 4.191405155634754 ] ] ], [ [ [ 72.959644619999892, 4.268605155634745 ], [ 72.975744619999887, 4.267205155634741 ], [ 72.977744619999896, 4.261705155634743 ], [ 72.962444619999928, 4.262205155634746 ], [ 72.959644619999892, 4.268605155634745 ] ] ], [ [ [ 72.969644619999883, 4.877805155634746 ], [ 72.971344619999911, 4.89890515563475 ], [ 72.980244619999894, 4.901105155634752 ], [ 72.979444619999924, 4.895505155634751 ], [ 72.969644619999883, 4.877805155634746 ] ] ], [ [ [ 73.589644619999888, 5.273605155634755 ], [ 73.569444619999899, 5.271905155634755 ], [ 73.566944619999902, 5.277505155634742 ], [ 73.589644619999888, 5.286905155634742 ], [ 73.589644619999888, 5.273605155634755 ] ] ], [ [ [ 73.320244619999926, 5.361105155634746 ], [ 73.314944619999892, 5.365305155634744 ], [ 73.333544619999884, 5.366705155634747 ], [ 73.331644619999906, 5.363905155634754 ], [ 73.320244619999926, 5.361105155634746 ] ] ], [ [ [ 73.635244619999924, 5.385505155634746 ], [ 73.631944619999899, 5.383305155634744 ], [ 73.62024461999988, 5.420805155634753 ], [ 73.637444619999883, 5.412805155634743 ], [ 73.635244619999924, 5.385505155634746 ] ] ], [ [ [ 73.384144619999915, 5.709705155634751 ], [ 73.378044619999912, 5.712205155634749 ], [ 73.387744619999921, 5.741905155634754 ], [ 73.392744619999917, 5.728605155634753 ], [ 73.384144619999915, 5.709705155634751 ] ] ], [ [ [ 72.991344619999893, 5.761105155634752 ], [ 72.981644619999884, 5.75890515563475 ], [ 72.981644619999884, 5.771705155634749 ], [ 72.986844619999886, 5.770805155634747 ], [ 72.991344619999893, 5.761105155634752 ] ] ], [ [ [ 73.436344619999886, 5.827205155634744 ], [ 73.4296446199999, 5.827205155634744 ], [ 73.451044619999891, 5.849205155634749 ], [ 73.449144619999913, 5.837205155634749 ], [ 73.436344619999886, 5.827205155634744 ] ] ], [ [ [ 72.968844619999913, 5.850805155634745 ], [ 72.964944619999926, 5.847505155634749 ], [ 72.961044619999882, 5.867805155634741 ], [ 72.965744619999896, 5.861405155634742 ], [ 72.968844619999913, 5.850805155634745 ] ] ], [ [ [ 73.433044619999919, 5.902205155634746 ], [ 73.423544619999916, 5.90360515563475 ], [ 73.422144619999926, 5.911705155634749 ], [ 73.429444619999913, 5.911405155634753 ], [ 73.433044619999919, 5.902205155634746 ] ] ], [ [ [ 73.398344619999932, 5.955305155634747 ], [ 73.379444619999902, 5.966705155634742 ], [ 73.379444619999902, 5.971405155634741 ], [ 73.39334461999988, 5.968605155634748 ], [ 73.398344619999932, 5.955305155634747 ] ] ], [ [ [ 72.933244619999925, 5.960805155634745 ], [ 72.9282446199999, 5.955005155634751 ], [ 72.926044619999914, 5.971905155634744 ], [ 72.931944619999911, 5.970305155634748 ], [ 72.933244619999925, 5.960805155634745 ] ] ], [ [ [ 73.270544619999896, 6.185305155634751 ], [ 73.268544619999886, 6.175305155634746 ], [ 73.269944619999933, 6.193005155634751 ], [ 73.270544619999896, 6.185305155634751 ] ] ], [ [ [ 73.248044619999916, 6.231905155634749 ], [ 73.239644619999922, 6.227505155634745 ], [ 73.234644619999926, 6.236105155634746 ], [ 73.245744619999925, 6.238905155634754 ], [ 73.248044619999916, 6.231905155634749 ] ] ], [ [ [ 73.20444461999989, 6.317505155634748 ], [ 73.1902446199999, 6.320805155634744 ], [ 73.190744619999919, 6.324705155634746 ], [ 73.201644619999911, 6.327505155634753 ], [ 73.20444461999989, 6.317505155634748 ] ] ], [ [ [ 73.050244619999887, 6.429205155634747 ], [ 73.040744619999884, 6.430005155634746 ], [ 73.041344619999904, 6.444205155634748 ], [ 73.049144619999936, 6.44170515563475 ], [ 73.050244619999887, 6.429205155634747 ] ] ], [ [ [ 73.06744461999989, 6.661405155634753 ], [ 73.059944619999897, 6.657505155634752 ], [ 73.0680446199999, 6.672805155634748 ], [ 73.069644619999906, 6.668005155634745 ], [ 73.06744461999989, 6.661405155634753 ] ] ], [ [ [ 73.101044619999925, 6.696905155634752 ], [ 73.093244619999894, 6.697205155634748 ], [ 73.102444619999915, 6.715505155634744 ], [ 73.106044619999921, 6.710005155634747 ], [ 73.101044619999925, 6.696905155634752 ] ] ], [ [ [ 73.136944619999895, 6.726405155634751 ], [ 73.1291446199999, 6.733905155634744 ], [ 73.161944619999929, 6.784205155634751 ], [ 73.157144619999883, 6.757505155634746 ], [ 73.136944619999895, 6.726405155634751 ] ] ], [ [ [ 73.188244619999921, 6.819205155634748 ], [ 73.178544619999911, 6.822805155634754 ], [ 73.177744619999885, 6.833305155634747 ], [ 73.201644619999911, 6.828905155634743 ], [ 73.188244619999921, 6.819205155634748 ] ] ], [ [ [ 73.205244619999917, 6.883605155634754 ], [ 73.195544619999907, 6.889405155634748 ], [ 73.209944619999931, 6.926405155634754 ], [ 73.2141446199999, 6.897805155634742 ], [ 73.205244619999917, 6.883605155634754 ] ] ], [ [ [ 73.198844619999932, 6.947505155634744 ], [ 73.1916446199999, 6.95110515563475 ], [ 73.193544619999898, 6.978605155634753 ], [ 73.197744619999924, 6.978605155634753 ], [ 73.198844619999932, 6.947505155634744 ] ] ], [ [ [ 72.985544619999928, 7.012205155634746 ], [ 72.979944619999912, 7.011705155634743 ], [ 72.974944619999917, 7.029405155634748 ], [ 72.986044619999916, 7.019405155634743 ], [ 72.985544619999928, 7.012205155634746 ] ] ], [ [ [ 72.916044619999923, 7.081705155634751 ], [ 72.910244619999901, 7.082205155634753 ], [ 72.902744619999908, 7.093005155634742 ], [ 72.912544619999892, 7.093905155634744 ], [ 72.916044619999923, 7.081705155634751 ] ] ], [ [ [ 81.714944619999926, 7.681405155634749 ], [ 81.701644619999911, 7.681105155634754 ], [ 81.7127446199999, 7.705005155634751 ], [ 81.718044619999887, 7.692505155634748 ], [ 81.714944619999926, 7.681405155634749 ] ] ], [ [ [ 81.806944619999911, 7.477805155634755 ], [ 81.781344619999913, 7.492805155634741 ], [ 81.787444619999917, 7.567205155634753 ], [ 81.723244619999889, 7.738605155634744 ], [ 81.804144619999931, 7.60050515563475 ], [ 81.806944619999911, 7.477805155634755 ] ] ], [ [ [ 73.032244619999915, 8.246705155634743 ], [ 73.020844619999934, 8.268605155634745 ], [ 73.078844619999927, 8.310305155634751 ], [ 73.071944619999897, 8.271105155634743 ], [ 73.032244619999915, 8.246705155634743 ] ] ], [ [ [ 79.912444619999917, 9.018005155634754 ], [ 79.85054461999988, 9.001105155634747 ], [ 79.6930446199999, 9.092505155634754 ], [ 79.826344619999929, 9.083905155634753 ], [ 79.912444619999917, 9.018005155634754 ] ] ], [ [ [ 79.716344619999916, 9.477205155634749 ], [ 79.658044619999885, 9.499205155634755 ], [ 79.657444619999922, 9.555805155634744 ], [ 79.719144619999895, 9.520805155634747 ], [ 79.716344619999916, 9.477205155634749 ] ] ], [ [ [ 79.974444619999929, 9.615305155634744 ], [ 79.871844619999933, 9.634405155634752 ], [ 79.854644619999931, 9.750805155634751 ], [ 79.882144619999906, 9.760005155634744 ], [ 79.974444619999929, 9.615305155634744 ] ] ], [ [ [ 80.27464461999989, 9.775005155634744 ], [ 80.824444619999895, 9.26190515563475 ], [ 80.914644619999933, 8.943005155634751 ], [ 81.231044619999921, 8.651105155634752 ], [ 81.1305446199999, 8.500005155634753 ], [ 81.361344619999898, 8.487205155634754 ], [ 81.39194461999989, 8.149405155634753 ], [ 81.881644619999918, 7.28800515563475 ], [ 81.661044619999927, 6.440005155634751 ], [ 80.58714461999989, 5.917805155634753 ], [ 80.184344619999933, 6.034705155634754 ], [ 80.046044619999918, 6.239705155634752 ], [ 79.702444619999881, 8.079405155634745 ], [ 79.749144619999925, 8.265505155634742 ], [ 79.731044619999921, 8.009205155634746 ], [ 79.827744619999919, 7.995505155634746 ], [ 79.917144619999931, 8.937805155634749 ], [ 80.194944619999887, 9.470305155634748 ], [ 80.051944619999915, 9.594405155634746 ], [ 80.612144619999924, 9.443005155634751 ], [ 79.925744619999932, 9.744705155634747 ], [ 80.113644619999889, 9.80300515563475 ], [ 80.444144619999918, 9.571705155634746 ], [ 80.140544619999901, 9.792205155634747 ], [ 80.27464461999989, 9.775005155634744 ] ] ], [ [ [ 73.637544619999915, 10.052805155634744 ], [ 73.630244619999928, 10.071105155634754 ], [ 73.645544619999896, 10.097505155634749 ], [ 73.645244619999914, 10.068605155634742 ], [ 73.637544619999915, 10.052805155634744 ] ] ], [ [ [ 72.633644619999927, 10.550805155634748 ], [ 72.624744619999888, 10.552805155634744 ], [ 72.650544619999891, 10.577505155634753 ], [ 72.652444619999926, 10.570805155634744 ], [ 72.633644619999927, 10.550805155634748 ] ] ], [ [ [ 73.684144619999927, 10.823005155634746 ], [ 73.666344619999904, 10.822805155634754 ], [ 73.6622446199999, 10.827805155634749 ], [ 73.685244619999935, 10.830005155634751 ], [ 73.684144619999927, 10.823005155634746 ] ] ], [ [ [ 72.179944619999901, 10.817505155634748 ], [ 72.1705446199999, 10.809705155634745 ], [ 72.197444619999885, 10.872805155634751 ], [ 72.195544619999907, 10.848005155634752 ], [ 72.179944619999901, 10.817505155634748 ] ] ], [ [ [ 72.299144619999936, 10.938005155634755 ], [ 72.289444619999927, 10.942805155634744 ], [ 72.301344619999895, 10.954205155634753 ], [ 72.299444619999917, 10.949205155634743 ], [ 72.299144619999936, 10.938005155634755 ] ] ], [ [ [ 72.749444619999906, 11.108905155634744 ], [ 72.739144619999934, 11.105005155634743 ], [ 72.736644619999936, 11.107205155634745 ], [ 72.74724461999989, 11.120505155634746 ], [ 72.749444619999906, 11.108905155634744 ] ] ], [ [ [ 72.1074446199999, 11.202805155634749 ], [ 72.0997446199999, 11.20110515563475 ], [ 72.106944619999922, 11.214905155634753 ], [ 72.112044619999892, 11.21310515563475 ], [ 72.1074446199999, 11.202805155634749 ] ] ], [ [ [ 72.778344619999928, 11.188905155634743 ], [ 72.770844619999934, 11.20110515563475 ], [ 72.789144619999888, 11.256905155634755 ], [ 72.793544619999921, 11.251905155634745 ], [ 72.778344619999928, 11.188905155634743 ] ] ], [ [ [ 73.006944619999899, 11.476705155634747 ], [ 73.003344619999893, 11.475805155634745 ], [ 73.004444619999902, 11.507505155634746 ], [ 73.013344619999884, 11.502205155634755 ], [ 73.006944619999899, 11.476705155634747 ] ] ], [ [ [ 72.712444619999928, 11.688605155634747 ], [ 72.705544619999898, 11.681905155634752 ], [ 72.700844619999884, 11.686405155634745 ], [ 72.715244619999908, 11.700005155634742 ], [ 72.712444619999928, 11.688605155634747 ] ] ], [ [ [ 80.948044619999905, 15.736705155634738 ], [ 80.871344619999888, 15.80330515563476 ], [ 80.8785446199999, 15.843305155634752 ], [ 80.991944619999913, 15.765805155634737 ], [ 80.948044619999905, 15.736705155634738 ] ] ], [ [ [ 86.283644619999905, 20.038005155634735 ], [ 86.258644619999927, 20.038005155634735 ], [ 86.251344619999884, 20.04500515563474 ], [ 86.27604461999988, 20.050005155634736 ], [ 86.283644619999905, 20.038005155634735 ] ] ], [ [ [ 88.897144619999892, 21.525005155634759 ], [ 88.844944619999922, 21.526905155634736 ], [ 88.827744619999919, 21.599705155634737 ], [ 88.9085446199999, 21.568605155634756 ], [ 88.897144619999892, 21.525005155634759 ] ] ], [ [ [ 72.718044619999887, 21.606405155634761 ], [ 72.649944619999928, 21.605305155634753 ], [ 72.603344619999916, 21.643605155634745 ], [ 72.7661446199999, 21.655305155634736 ], [ 72.718044619999887, 21.606405155634761 ] ] ], [ [ [ 91.897444619999931, 21.476705155634747 ], [ 91.843844619999913, 21.690505155634739 ], [ 91.881044619999898, 21.755305155634758 ], [ 91.982144619999929, 21.623905155634745 ], [ 91.897444619999931, 21.476705155634747 ] ] ], [ [ [ 90.490544619999923, 21.803605155634742 ], [ 90.470844619999923, 21.807205155634747 ], [ 90.467444619999924, 21.820505155634734 ], [ 90.492744619999883, 21.814405155634759 ], [ 90.490544619999923, 21.803605155634742 ] ] ], [ [ [ 90.432444619999899, 21.820005155634746 ], [ 90.412744619999899, 21.823605155634752 ], [ 90.452744619999919, 21.850305155634757 ], [ 90.443244619999916, 21.82300515563476 ], [ 90.432444619999899, 21.820005155634746 ] ] ], [ [ [ 88.134644619999904, 21.620005155634757 ], [ 88.0449446199999, 21.660805155634748 ], [ 88.132444619999887, 21.876105155634761 ], [ 88.166644619999886, 21.769705155634753 ], [ 88.134644619999904, 21.620005155634757 ] ] ], [ [ [ 89.126644619999922, 21.714205155634758 ], [ 89.073244619999912, 21.768905155634755 ], [ 89.050544619999926, 21.914705155634735 ], [ 89.089544619999913, 21.786305155634736 ], [ 89.146344619999923, 21.748905155634745 ], [ 89.126644619999922, 21.714205155634758 ] ] ], [ [ [ 88.646344619999923, 21.825505155634758 ], [ 88.579144619999909, 21.826905155634748 ], [ 88.64194461999989, 21.92170515563474 ], [ 88.675744619999932, 21.907205155634742 ], [ 88.646344619999923, 21.825505155634758 ] ] ], [ [ [ 90.753044619999912, 21.891905155634745 ], [ 90.740244619999885, 21.897805155634742 ], [ 90.744444619999911, 21.922505155634738 ], [ 90.762144619999901, 21.906405155634744 ], [ 90.753044619999912, 21.891905155634745 ] ] ], [ [ [ 91.832744619999914, 21.72220515563474 ], [ 91.832744619999914, 21.88860515563475 ], [ 91.863044619999926, 21.92800515563475 ], [ 91.886344619999932, 21.842805155634736 ], [ 91.832744619999914, 21.72220515563474 ] ] ], [ [ [ 88.08854461999988, 21.849405155634756 ], [ 88.0666446199999, 21.881905155634755 ], [ 88.113044619999926, 21.948605155634752 ], [ 88.135244619999924, 21.907505155634752 ], [ 88.08854461999988, 21.849405155634756 ] ] ], [ [ [ 90.643844619999925, 21.906105155634762 ], [ 90.633344619999889, 21.930505155634748 ], [ 90.665544619999935, 21.955505155634754 ], [ 90.668044619999932, 21.939405155634759 ], [ 90.643844619999925, 21.906105155634762 ] ] ], [ [ [ 90.699144619999913, 21.954705155634755 ], [ 90.684944619999897, 21.940805155634749 ], [ 90.675244619999887, 21.950005155634742 ], [ 90.690544619999912, 21.972805155634759 ], [ 90.699144619999913, 21.954705155634755 ] ] ], [ [ [ 90.522444619999931, 21.855805155634741 ], [ 90.519644619999895, 21.935505155634743 ], [ 90.588244619999898, 21.981405155634761 ], [ 90.602444619999915, 21.936705155634755 ], [ 90.522444619999931, 21.855805155634741 ] ] ], [ [ [ 90.331044619999886, 21.840505155634744 ], [ 90.323044619999905, 21.92030515563475 ], [ 90.389944619999881, 21.995005155634757 ], [ 90.393844619999925, 21.985505155634755 ], [ 90.331044619999886, 21.840505155634744 ] ] ], [ [ [ 90.410744619999889, 21.899405155634739 ], [ 90.404144619999897, 22.020305155634745 ], [ 90.430244619999883, 22.042205155634761 ], [ 90.484944619999908, 21.965005155634756 ], [ 90.410744619999889, 21.899405155634739 ] ] ], [ [ [ 90.374144619999925, 22.010005155634744 ], [ 90.341644619999897, 21.966405155634746 ], [ 90.380244619999928, 22.050505155634752 ], [ 90.374144619999925, 22.010005155634744 ] ] ], [ [ [ 90.523544619999882, 21.991105155634742 ], [ 90.486844619999886, 22.078905155634757 ], [ 90.609644619999926, 22.166105155634753 ], [ 90.561644619999925, 22.029705155634744 ], [ 90.523544619999882, 21.991105155634742 ] ] ], [ [ [ 90.51694461999989, 22.162205155634737 ], [ 90.512144619999901, 22.171105155634748 ], [ 90.527744619999908, 22.17940515563474 ], [ 90.524444619999883, 22.168605155634751 ], [ 90.51694461999989, 22.162205155634737 ] ] ], [ [ [ 90.937444619999894, 22.112805155634746 ], [ 90.914644619999933, 22.131905155634755 ], [ 90.952144619999899, 22.209405155634741 ], [ 90.956344619999925, 22.13690515563475 ], [ 90.937444619999894, 22.112805155634746 ] ] ], [ [ [ 90.984944619999908, 22.182505155634757 ], [ 90.971844619999899, 22.24080515563476 ], [ 90.991644619999931, 22.259205155634746 ], [ 90.996644619999927, 22.226105155634755 ], [ 90.984944619999908, 22.182505155634757 ] ] ], [ [ [ 90.9493446199999, 22.221405155634741 ], [ 90.936644619999925, 22.237505155634736 ], [ 90.976344619999907, 22.35780515563475 ], [ 90.988544619999914, 22.286905155634756 ], [ 90.9493446199999, 22.221405155634741 ] ] ], [ [ [ 91.005844619999891, 22.368005155634748 ], [ 90.985244619999889, 22.385305155634754 ], [ 90.989944619999903, 22.414205155634747 ], [ 91.011944619999895, 22.38690515563475 ], [ 91.005844619999891, 22.368005155634748 ] ] ], [ [ [ 90.660244619999901, 22.356405155634761 ], [ 90.640244619999919, 22.308305155634756 ], [ 90.610244619999889, 22.451905155634748 ], [ 90.65104461999988, 22.395505155634751 ], [ 90.660244619999901, 22.356405155634761 ] ] ], [ [ [ 91.036044619999927, 22.405005155634754 ], [ 91.018044619999898, 22.414705155634735 ], [ 91.040544619999935, 22.453605155634747 ], [ 91.054444619999913, 22.420505155634757 ], [ 91.036044619999927, 22.405005155634754 ] ] ], [ [ [ 91.210544619999894, 22.412205155634737 ], [ 91.185544619999916, 22.392505155634737 ], [ 91.168544619999921, 22.46140515563475 ], [ 91.193844619999936, 22.453005155634756 ], [ 91.210544619999894, 22.412205155634737 ] ] ], [ [ [ 91.007444619999887, 22.425005155634736 ], [ 90.987744619999887, 22.440805155634749 ], [ 91.009144619999915, 22.476405155634737 ], [ 91.012144619999901, 22.474705155634737 ], [ 91.007444619999887, 22.425005155634736 ] ] ], [ [ [ 90.66304461999988, 22.435005155634755 ], [ 90.647444619999931, 22.427805155634744 ], [ 90.655544619999887, 22.478605155634753 ], [ 90.666944619999924, 22.462505155634759 ], [ 90.66304461999988, 22.435005155634755 ] ] ], [ [ [ 91.031644619999895, 22.084205155634734 ], [ 91.073044619999905, 22.507505155634746 ], [ 91.088044619999891, 22.525805155634757 ], [ 91.174644619999924, 22.218605155634762 ], [ 91.031644619999895, 22.084205155634734 ] ] ], [ [ [ 91.529644619999885, 22.347805155634759 ], [ 91.408344619999923, 22.47220515563474 ], [ 91.431644619999929, 22.623905155634745 ], [ 91.559944619999897, 22.435305155634737 ], [ 91.529644619999885, 22.347805155634759 ] ] ], [ [ [ 91.339444619999881, 22.630005155634748 ], [ 91.317744619999928, 22.608905155634758 ], [ 91.3046446199999, 22.628305155634749 ], [ 91.339944619999926, 22.636405155634762 ], [ 91.339444619999881, 22.630005155634748 ] ] ], [ [ [ 90.763844619999929, 22.064405155634759 ], [ 90.601044619999925, 22.034205155634751 ], [ 90.684644619999915, 22.392505155634737 ], [ 90.601344619999907, 22.777505155634756 ], [ 90.877444619999892, 22.457205155634753 ], [ 90.763844619999929, 22.064405155634759 ] ] ], [ [ [ 90.547144619999926, 22.71940515563476 ], [ 90.467144619999885, 22.866705155634762 ], [ 90.6910446199999, 22.846905155634758 ], [ 90.541544619999911, 22.783205155634747 ], [ 90.547144619999926, 22.71940515563476 ] ] ], [ [ [ 90.662144619999935, 22.956405155634755 ], [ 90.656044619999932, 22.912205155634737 ], [ 90.5041446199999, 22.963605155634738 ], [ 90.570844619999889, 23.040305155634755 ], [ 90.662144619999935, 22.956405155634755 ] ] ], [ [ [ 90.477444619999915, 23.007805155634756 ], [ 90.463244619999898, 23.059205155634757 ], [ 90.510744619999912, 23.061905155634761 ], [ 90.513844619999929, 23.048605155634746 ], [ 90.477444619999915, 23.007805155634756 ] ] ], [ [ [ 90.529644619999885, 23.047205155634757 ], [ 90.521944619999886, 23.05470515563475 ], [ 90.5449446199999, 23.065305155634761 ], [ 90.547744619999889, 23.058305155634756 ], [ 90.529644619999885, 23.047205155634757 ] ] ], [ [ [ 90.540744619999884, 23.343905155634744 ], [ 90.590244619999908, 23.302505155634762 ], [ 90.421644619999881, 23.383005155634734 ], [ 90.471344619999911, 23.376905155634759 ], [ 90.540744619999884, 23.343905155634744 ] ] ], [ [ [ 90.684944619999897, 23.48280515563475 ], [ 90.664444619999927, 23.489405155634742 ], [ 90.6502446199999, 23.50420515563475 ], [ 90.691944619999902, 23.497205155634745 ], [ 90.684944619999897, 23.48280515563475 ] ] ], [ [ [ 90.573544619999893, 23.564705155634741 ], [ 90.564344619999929, 23.576905155634748 ], [ 90.584144619999904, 23.583905155634753 ], [ 90.587444619999928, 23.577805155634749 ], [ 90.573544619999893, 23.564705155634741 ] ] ], [ [ [ 67.4493446199999, 24.002805155634761 ], [ 67.411944619999929, 24.005805155634746 ], [ 67.379444619999902, 24.051705155634735 ], [ 67.478544619999923, 24.046905155634747 ], [ 67.4493446199999, 24.002805155634761 ] ] ], [ [ [ 74.81744461999989, 37.021805155634738 ], [ 75.864444619999915, 36.65970515563474 ], [ 76.041644619999886, 36.237505155634736 ], [ 75.926044619999914, 36.077205155634758 ], [ 76.176944619999915, 35.814405155634759 ], [ 76.553044619999923, 35.90660515563475 ], [ 76.895244619999914, 35.612505155634736 ], [ 78.076344619999929, 35.496905155634735 ], [ 78.0238446199999, 35.274405155634739 ], [ 78.299144619999936, 34.655005155634754 ], [ 78.985344619999921, 34.350005155634747 ], [ 78.735744619999934, 34.068305155634746 ], [ 78.811644619999925, 33.525805155634757 ], [ 79.378244619999919, 33.106405155634761 ], [ 79.530244619999905, 32.728005155634762 ], [ 78.9710446199999, 32.350805155634745 ], [ 78.760544619999905, 32.63550515563476 ], [ 78.397744619999912, 32.548605155634746 ], [ 78.475944619999893, 32.243005155634748 ], [ 78.771144619999916, 31.981105155634751 ], [ 78.770544619999896, 31.30500515563476 ], [ 79.092444619999924, 31.437505155634753 ], [ 79.558844619999888, 30.954205155634739 ], [ 79.8791446199999, 30.959205155634734 ], [ 80.250244619999933, 30.740005155634762 ], [ 80.2070446199999, 30.575505155634758 ], [ 80.998844619999886, 30.26190515563475 ], [ 81.119444619999911, 30.019405155634743 ], [ 81.3777446199999, 30.166705155634745 ], [ 81.421044619999918, 30.385305155634754 ], [ 82.10054461999988, 30.342205155634744 ], [ 82.177744619999885, 30.063605155634761 ], [ 83.195244619999926, 29.630805155634746 ], [ 83.552744619999885, 29.185805155634753 ], [ 84.119144619999929, 29.260005155634744 ], [ 84.481044619999921, 28.736705155634738 ], [ 84.846644619999893, 28.544405155634749 ], [ 85.189944619999892, 28.603305155634743 ], [ 85.106644619999884, 28.309405155634735 ], [ 85.721344619999911, 28.279205155634756 ], [ 85.996344619999888, 27.889705155634758 ], [ 86.183544619999907, 28.163905155634737 ], [ 86.444944619999887, 27.90800515563474 ], [ 86.704144619999909, 28.111105155634746 ], [ 87.192744619999928, 27.82300515563476 ], [ 87.720544619999885, 27.80500515563476 ], [ 88.628844619999882, 28.119205155634759 ], [ 88.844944619999922, 27.996405155634747 ], [ 88.763344619999884, 27.543305155634741 ], [ 88.917344619999881, 27.320605155634738 ], [ 89.487444619999906, 28.057805155634739 ], [ 90.017444619999935, 28.325305155634751 ], [ 90.381644619999918, 28.251405155634743 ], [ 90.370544619999919, 28.080305155634747 ], [ 91.086944619999883, 27.970005155634752 ], [ 91.301344619999895, 28.081105155634745 ], [ 91.667144619999931, 27.941905155634757 ], [ 91.658444619999898, 27.764205155634741 ], [ 91.978344619999916, 27.728605155634753 ], [ 92.65104461999988, 27.920505155634757 ], [ 92.710444619999919, 28.141905155634745 ], [ 93.222044619999906, 28.319305155634751 ], [ 93.351944619999927, 28.618805155634746 ], [ 93.961744619999934, 28.669205155634742 ], [ 94.234544619999895, 29.073505155634749 ], [ 94.647544619999906, 29.333505155634739 ], [ 95.387744619999921, 29.035305155634759 ], [ 96.077444619999881, 29.468605155634762 ], [ 96.395244619999914, 29.255305155634758 ], [ 96.1488446199999, 29.059705155634745 ], [ 96.169144619999884, 28.903605155634736 ], [ 96.470844619999923, 29.056705155634759 ], [ 96.615844619999905, 28.790305155634755 ], [ 96.361644619999936, 28.392805155634747 ], [ 97.134944619999885, 28.381405155634738 ], [ 97.3805446199999, 27.991405155634752 ], [ 96.888844619999929, 27.61750515563476 ], [ 97.136644619999913, 27.085805155634759 ], [ 96.729144619999886, 27.36550515563475 ], [ 96.194144619999918, 27.270805155634761 ], [ 95.141344619999927, 26.612505155634736 ], [ 95.178044619999923, 26.058905155634747 ], [ 94.625544619999914, 25.397805155634742 ], [ 94.7344446199999, 25.024705155634749 ], [ 94.144444619999888, 23.847805155634759 ], [ 93.338744619999886, 24.077905155634753 ], [ 93.388644619999923, 23.223305155634748 ], [ 93.303344619999905, 23.014705155634758 ], [ 93.138044619999903, 23.048005155634755 ], [ 93.092744619999905, 22.714405155634736 ], [ 93.196644619999915, 22.256405155634738 ], [ 92.924444619999917, 22.005005155634748 ], [ 92.705544619999898, 22.15830515563475 ], [ 92.600844619999918, 21.982205155634759 ], [ 92.666044619999923, 21.293305155634741 ], [ 92.376844619999929, 21.474205155634749 ], [ 92.222144619999881, 21.358005155634757 ], [ 92.327444619999881, 20.738905155634754 ], [ 92.050244619999887, 21.15800515563474 ], [ 92.039444619999927, 21.660305155634759 ], [ 91.658344619999923, 22.554205155634762 ], [ 91.45584461999988, 22.790005155634745 ], [ 91.228844619999904, 22.585505155634749 ], [ 90.943544619999898, 22.582205155634753 ], [ 90.623844619999886, 23.058605155634737 ], [ 90.598544619999927, 23.46280515563474 ], [ 90.696344619999934, 23.478305155634743 ], [ 90.716644619999897, 23.54500515563474 ], [ 90.473544619999927, 23.57580515563474 ], [ 90.550244619999887, 23.383905155634736 ], [ 90.308844619999888, 23.414405155634753 ], [ 90.612444619999906, 23.22220515563474 ], [ 90.446644619999915, 23.065005155634751 ], [ 90.424344619999886, 22.770205155634741 ], [ 90.614144619999934, 22.310505155634743 ], [ 90.559944619999897, 22.203905155634757 ], [ 90.440544619999912, 22.071705155634746 ], [ 90.401344619999918, 22.26050515563476 ], [ 90.267444619999935, 21.844705155634742 ], [ 90.02464461999989, 21.860005155634738 ], [ 90.079944619999935, 22.15970515563474 ], [ 89.932144619999917, 21.997805155634737 ], [ 89.999944619999894, 22.483805155634755 ], [ 89.841044619999934, 22.267205155634755 ], [ 89.884644619999904, 21.88830515563474 ], [ 89.581044619999886, 21.701705155634741 ], [ 89.620744619999925, 22.32440515563475 ], [ 89.538844619999907, 21.985805155634736 ], [ 89.473544619999927, 22.286905155634756 ], [ 89.417444619999912, 21.71280515563474 ], [ 89.354644619999931, 21.968605155634762 ], [ 89.203844619999927, 21.650505155634747 ], [ 89.043844619999902, 22.136405155634762 ], [ 89.0055446199999, 21.903605155634736 ], [ 89.088844619999918, 21.628005155634739 ], [ 88.855544619999932, 21.632805155634756 ], [ 88.714944619999926, 21.560005155634755 ], [ 88.667744619999894, 22.202205155634758 ], [ 88.556944619999911, 21.813305155634751 ], [ 88.572144619999904, 21.560005155634755 ], [ 88.496044619999907, 21.950305155634751 ], [ 88.453844619999927, 21.615005155634762 ], [ 88.2541446199999, 21.548605155634746 ], [ 88.1993446199999, 22.155305155634736 ], [ 87.907744619999903, 22.42170515563474 ], [ 88.168044619999932, 22.091705155634756 ], [ 87.7963446199999, 21.698905155634762 ], [ 86.9633446199999, 21.381905155634755 ], [ 86.828044619999901, 21.152505155634756 ], [ 87.025544619999891, 20.674805155634758 ], [ 86.420244619999892, 19.98280515563475 ], [ 86.289644619999933, 20.060105155634758 ], [ 86.196344619999934, 20.075005155634742 ], [ 86.360844619999909, 19.960305155634742 ], [ 85.451344619999929, 19.660305155634759 ], [ 85.575044619999915, 19.835505155634749 ], [ 85.434844619999922, 19.887005155634753 ], [ 85.121944619999908, 19.513105155634761 ], [ 85.253944619999913, 19.654605155634741 ], [ 85.384744619999935, 19.613905155634754 ], [ 84.726544619999913, 19.124005155634748 ], [ 84.106344619999902, 18.292205155634761 ], [ 82.364444619999915, 17.100805155634745 ], [ 82.301744619999909, 16.583005155634751 ], [ 81.727244619999908, 16.310805155634753 ], [ 81.313344619999896, 16.363305155634762 ], [ 81.017244619999929, 15.775505155634747 ], [ 80.89194461999989, 16.026105155634738 ], [ 80.825244619999921, 15.751905155634759 ], [ 80.68474461999989, 15.900005155634759 ], [ 80.299744619999899, 15.720305155634762 ], [ 80.048844619999898, 15.048905155634742 ], [ 80.313044619999914, 13.439205155634752 ], [ 80.152444619999926, 13.718005155634742 ], [ 80.049444619999917, 13.617805155634741 ], [ 80.3497446199999, 13.335305155634742 ], [ 80.160244619999901, 12.473005155634752 ], [ 79.763044619999903, 11.64890515563475 ], [ 79.859744619999901, 10.288905155634751 ], [ 79.325044619999915, 10.280805155634752 ], [ 78.908044619999885, 9.479705155634747 ], [ 79.009144619999915, 9.331705155634751 ], [ 79.331644619999906, 9.264205155634755 ], [ 79.451344619999929, 9.150005155634744 ], [ 78.971144619999905, 9.273605155634755 ], [ 78.396644619999904, 9.089705155634746 ], [ 78.19244461999989, 8.904205155634742 ], [ 78.060544619999916, 8.36420515563475 ], [ 77.536144619999902, 8.071905155634752 ], [ 76.998644619999936, 8.365305155634744 ], [ 76.575844619999884, 8.876905155634745 ], [ 76.667444619999912, 9.003605155634745 ], [ 76.534144619999893, 8.965005155634742 ], [ 76.380244619999928, 9.281405155634744 ], [ 76.30774461999988, 9.496905155634749 ], [ 76.242744619999883, 9.96610515563475 ], [ 76.352244619999908, 9.522505155634747 ], [ 76.498644619999936, 9.532205155634742 ], [ 75.688844619999884, 11.435305155634751 ], [ 75.19244461999989, 12.007805155634742 ], [ 74.810244619999935, 12.864705155634752 ], [ 74.411944619999929, 14.483305155634753 ], [ 74.095544619999885, 14.788305155634745 ], [ 73.784444619999931, 15.403005155634744 ], [ 73.950244619999921, 15.400005155634744 ], [ 73.447744619999924, 16.055805155634758 ], [ 72.853844619999904, 18.660505155634738 ], [ 73.055544619999921, 19.01190515563475 ], [ 72.769944619999933, 18.943005155634737 ], [ 72.780544619999887, 19.312505155634753 ], [ 73.047244619999901, 19.217205155634744 ], [ 72.754444619999902, 19.369705155634747 ], [ 72.664144619999888, 19.870805155634756 ], [ 72.934444619999908, 20.774705155634749 ], [ 72.808044619999919, 21.126405155634743 ], [ 72.615844619999905, 21.09720515563474 ], [ 72.718044619999887, 21.196105155634754 ], [ 72.564144619999922, 21.378005155634739 ], [ 73.130844619999891, 21.753605155634759 ], [ 72.541644619999886, 21.663905155634737 ], [ 72.7344446199999, 21.986405155634756 ], [ 72.501344619999884, 21.981905155634749 ], [ 72.575544619999903, 22.195305155634756 ], [ 72.919144619999884, 22.267805155634747 ], [ 72.151944619999881, 22.283905155634741 ], [ 72.325844619999884, 22.156705155634754 ], [ 72.031644619999895, 21.942805155634758 ], [ 72.161944619999929, 21.835305155634742 ], [ 71.994144619999929, 21.847805155634759 ], [ 72.289144619999888, 21.610805155634736 ], [ 72.110544619999928, 21.201905155634748 ], [ 70.818844619999936, 20.697505155634744 ], [ 70.060844619999898, 21.144405155634743 ], [ 68.944444619999899, 22.294205155634742 ], [ 69.067244619999883, 22.480805155634741 ], [ 69.238344619999907, 22.273305155634759 ], [ 70.165544619999935, 22.548305155634736 ], [ 70.511344619999932, 22.985305155634748 ], [ 70.486644619999936, 23.125005155634753 ], [ 70.389444619999892, 22.935305155634737 ], [ 69.710244619999912, 22.742805155634741 ], [ 68.752444619999892, 23.089205155634758 ], [ 68.402444619999926, 23.520505155634751 ], [ 68.741344619999893, 23.844205155634754 ], [ 68.259144619999915, 23.579205155634739 ], [ 68.140244619999919, 23.604705155634761 ], [ 68.201144619999923, 23.664205155634747 ], [ 68.158044619999885, 23.89890515563475 ], [ 68.150744619999898, 23.688005155634741 ], [ 68.022144619999892, 23.937505155634753 ], [ 68.018044619999898, 23.765305155634749 ], [ 67.857144619999929, 23.910005155634749 ], [ 67.715244619999908, 23.789405155634753 ], [ 67.493544619999909, 23.890805155634737 ], [ 67.53804461999988, 23.938105155634744 ], [ 67.500644619999889, 23.974005155634742 ], [ 67.486644619999936, 24.04530515563475 ], [ 67.461144619999914, 24.065305155634761 ], [ 67.338044619999891, 24.089705155634746 ], [ 67.1516446199999, 24.610505155634755 ], [ 67.2541446199999, 24.746105155634737 ], [ 66.645544619999896, 24.829205155634739 ], [ 66.732744619999892, 25.197505155634744 ], [ 66.438044619999914, 25.593305155634752 ], [ 66.226944619999927, 25.593305155634752 ], [ 66.141544619999934, 25.50390515563474 ], [ 66.339944619999926, 25.552805155634744 ], [ 66.496644619999927, 25.398005155634749 ], [ 64.768844619999925, 25.321405155634736 ], [ 64.651944619999881, 25.162805155634757 ], [ 64.096344619999911, 25.32580515563474 ], [ 64.113844619999895, 25.453305155634737 ], [ 63.429144619999931, 25.215005155634756 ], [ 62.550844619999907, 25.258905155634736 ], [ 61.736644619999936, 25.042505155634743 ], [ 61.782144619999883, 25.190305155634761 ], [ 61.611044619999916, 25.197605155634747 ], [ 61.8580446199999, 26.234705155634757 ], [ 62.278044619999889, 26.354005155634738 ], [ 62.4296446199999, 26.564205155634752 ], [ 63.176344619999895, 26.631105155634756 ], [ 63.341944619999936, 27.122505155634755 ], [ 63.20584461999988, 27.267505155634737 ], [ 62.782444619999922, 27.26050515563476 ], [ 62.781344619999913, 28.266905155634745 ], [ 61.905544619999887, 28.55500515563476 ], [ 60.866244619999918, 29.863605155634744 ], [ 62.4844446199999, 29.406105155634762 ], [ 64.059144619999927, 29.414405155634753 ], [ 66.256644619999918, 29.851905155634753 ], [ 66.395544619999896, 30.940805155634749 ], [ 66.723044619999882, 31.212205155634749 ], [ 67.778044619999889, 31.332205155634753 ], [ 67.575544619999903, 31.53190515563476 ], [ 68.166044619999923, 31.833005155634751 ], [ 68.570844619999889, 31.825505155634758 ], [ 68.833044619999896, 31.603905155634735 ], [ 69.328244619999907, 31.940405155634735 ], [ 69.248044619999916, 32.443905155634738 ], [ 69.458344619999934, 32.670505155634757 ], [ 69.505244619999928, 33.034205155634751 ], [ 70.326944619999892, 33.331905155634743 ], [ 69.906344619999913, 34.035305155634759 ], [ 70.491344619999893, 33.943005155634737 ], [ 71.081944619999888, 34.055805155634758 ], [ 71.158844619999911, 34.348305155634748 ], [ 70.987444619999906, 34.551105155634744 ], [ 71.496044619999907, 34.959405155634741 ], [ 71.649444619999883, 35.425005155634736 ], [ 71.187544619999926, 36.047505155634738 ], [ 71.624144619999925, 36.458105155634755 ], [ 72.578544619999889, 36.825405155634755 ], [ 74.038244619999887, 36.814705155634741 ], [ 74.81744461999989, 37.021805155634738 ] ], [ [ 88.293244619999882, 21.674705155634754 ], [ 88.302144619999922, 21.620205155634736 ], [ 88.297144619999926, 21.772805155634742 ], [ 88.261944619999895, 21.800005155634736 ], [ 88.293244619999882, 21.674705155634754 ] ], [ [ 90.237744619999887, 22.192805155634758 ], [ 90.095244619999903, 22.061705155634755 ], [ 90.063844619999884, 21.995605155634749 ], [ 90.216044619999934, 22.114405155634742 ], [ 90.237744619999887, 22.192805155634758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 41, "LEVEL1_COD": 4, "LEVEL1_NAM": "ASIA-TROPICAL", "LEVEL2_NAM": "Indo-China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.219144619999895, 6.532505155634752 ], [ 99.180544619999921, 6.534705155634754 ], [ 99.159944619999919, 6.548905155634742 ], [ 99.256044619999898, 6.571905155634752 ], [ 99.219144619999895, 6.532505155634752 ] ] ], [ [ [ 99.668044619999932, 6.496405155634747 ], [ 99.594944619999922, 6.593905155634744 ], [ 99.662744619999899, 6.703005155634742 ], [ 99.703844619999927, 6.549405155634744 ], [ 99.668044619999932, 6.496405155634747 ] ] ], [ [ [ 100.536044619999927, 7.156105155634748 ], [ 100.520744619999903, 7.155005155634754 ], [ 100.534944619999919, 7.174205155634752 ], [ 100.541844619999893, 7.169705155634745 ], [ 100.536044619999927, 7.156105155634748 ] ] ], [ [ [ 93.912744619999899, 7.02860515563475 ], [ 93.902144619999888, 6.811105155634749 ], [ 93.823844619999932, 6.745505155634746 ], [ 93.671044619999918, 7.181905155634752 ], [ 93.828544619999889, 7.235005155634752 ], [ 93.912744619999899, 7.02860515563475 ] ] ], [ [ [ 99.389144619999911, 7.19470515563475 ], [ 99.368844619999891, 7.255305155634744 ], [ 99.393544619999886, 7.270505155634751 ], [ 99.419144619999884, 7.234205155634754 ], [ 99.389144619999911, 7.19470515563475 ] ] ], [ [ [ 93.662144619999935, 7.405805155634752 ], [ 93.652444619999926, 7.408605155634746 ], [ 93.654444619999936, 7.417505155634743 ], [ 93.664144619999888, 7.414005155634754 ], [ 93.662144619999935, 7.405805155634752 ] ] ], [ [ [ 93.639444619999892, 7.247205155634745 ], [ 93.5960446199999, 7.308905155634747 ], [ 93.693544619999898, 7.438905155634743 ], [ 93.728244619999884, 7.324705155634746 ], [ 93.639444619999892, 7.247205155634745 ] ] ], [ [ [ 99.110744619999934, 7.468005155634742 ], [ 99.042444619999912, 7.525805155634743 ], [ 99.024144619999902, 7.636705155634743 ], [ 99.074644619999901, 7.601905155634753 ], [ 99.110744619999934, 7.468005155634742 ] ] ], [ [ [ 99.119644619999917, 7.591905155634748 ], [ 99.045244619999892, 7.643005155634754 ], [ 99.04574461999988, 7.669405155634749 ], [ 99.121844619999933, 7.665305155634755 ], [ 99.119644619999917, 7.591905155634748 ] ] ], [ [ [ 98.435144619999903, 7.931805155634748 ], [ 98.424144619999936, 7.928605155634742 ], [ 98.418044619999932, 7.936105155634749 ], [ 98.436844619999931, 7.943605155634742 ], [ 98.435144619999903, 7.931805155634748 ] ] ], [ [ [ 93.573544619999893, 7.927805155634744 ], [ 93.5027446199999, 7.977205155634749 ], [ 93.540544619999935, 8.015505155634742 ], [ 93.571644619999915, 7.979405155634751 ], [ 93.573544619999893, 7.927805155634744 ] ] ], [ [ [ 93.454644619999897, 7.868905155634749 ], [ 93.349444619999929, 7.880005155634748 ], [ 93.31744461999989, 7.997505155634755 ], [ 93.387744619999921, 8.015805155634752 ], [ 93.454644619999897, 7.868905155634749 ] ] ], [ [ [ 98.603544619999923, 7.901105155634752 ], [ 98.573044619999905, 7.916905155634751 ], [ 98.52604461999988, 8.121405155634747 ], [ 98.611844619999886, 8.048605155634746 ], [ 98.603544619999923, 7.901105155634752 ] ] ], [ [ [ 98.399844619999897, 7.94170515563475 ], [ 98.305244619999883, 7.75720515563475 ], [ 98.282444619999922, 8.186405155634745 ], [ 98.401944619999881, 8.081405155634755 ], [ 98.399844619999897, 7.94170515563475 ] ] ], [ [ [ 98.616644619999931, 8.084405155634755 ], [ 98.568344619999891, 8.11720515563475 ], [ 98.628244619999919, 8.189205155634752 ], [ 98.635544619999905, 8.156705155634754 ], [ 98.616644619999931, 8.084405155634755 ] ] ], [ [ [ 93.488044619999926, 7.988905155634754 ], [ 93.4430446199999, 8.15360515563475 ], [ 93.513244619999909, 8.226405155634751 ], [ 93.537144619999935, 8.043905155634747 ], [ 93.488044619999926, 7.988905155634754 ] ] ], [ [ [ 93.169144619999884, 8.201405155634745 ], [ 93.059944619999897, 8.271705155634749 ], [ 93.073844619999932, 8.348005155634752 ], [ 93.099644619999935, 8.350005155634747 ], [ 93.169144619999884, 8.201405155634745 ] ] ], [ [ [ 93.609344619999888, 8.430005155634746 ], [ 93.595544619999885, 8.538605155634755 ], [ 93.601944619999927, 8.565305155634746 ], [ 93.626044619999902, 8.508005155634748 ], [ 93.609344619999888, 8.430005155634746 ] ] ], [ [ [ 106.600244619999899, 8.647805155634742 ], [ 106.555744619999928, 8.688905155634743 ], [ 106.659344619999899, 8.764705155634744 ], [ 106.660544619999882, 8.741905155634754 ], [ 106.600244619999899, 8.647805155634742 ] ] ], [ [ [ 98.266644619999909, 9.030505155634742 ], [ 98.243244619999928, 9.123605155634749 ], [ 98.280744619999894, 9.158005155634754 ], [ 98.324444619999895, 9.084205155634749 ], [ 98.266644619999909, 9.030505155634742 ] ] ], [ [ [ 92.774444619999883, 9.124705155634743 ], [ 92.708844619999923, 9.163605155634755 ], [ 92.761644619999913, 9.26360515563475 ], [ 92.812144619999913, 9.163305155634745 ], [ 92.774444619999883, 9.124705155634743 ] ] ], [ [ [ 103.477744619999896, 9.280505155634742 ], [ 103.46354461999988, 9.30000515563475 ], [ 103.498544619999905, 9.313605155634747 ], [ 103.497144619999915, 9.30170515563475 ], [ 103.477744619999896, 9.280505155634742 ] ] ], [ [ [ 97.8791446199999, 9.381905155634755 ], [ 97.835244619999912, 9.402805155634752 ], [ 97.847144619999881, 9.432205155634747 ], [ 97.866344619999893, 9.419705155634745 ], [ 97.8791446199999, 9.381905155634755 ] ] ], [ [ [ 97.8988446199999, 9.437505155634753 ], [ 97.866644619999931, 9.42670515563475 ], [ 97.847444619999919, 9.458605155634743 ], [ 97.883844619999934, 9.47550515563475 ], [ 97.8988446199999, 9.437505155634753 ] ] ], [ [ [ 99.681344619999891, 9.506105155634742 ], [ 99.664944619999915, 9.524405155634753 ], [ 99.708544619999884, 9.538605155634755 ], [ 99.701944619999892, 9.513305155634754 ], [ 99.681344619999891, 9.506105155634742 ] ] ], [ [ [ 98.467444619999924, 9.575005155634742 ], [ 98.457744619999914, 9.573905155634748 ], [ 98.457144619999895, 9.578905155634743 ], [ 98.469144619999895, 9.584705155634751 ], [ 98.467444619999924, 9.575005155634742 ] ] ], [ [ [ 99.976044619999925, 9.413605155634755 ], [ 99.932144619999917, 9.546905155634747 ], [ 100.08084461999988, 9.588605155634752 ], [ 100.068344619999891, 9.468005155634742 ], [ 99.976044619999925, 9.413605155634755 ] ] ], [ [ [ 99.685544619999916, 9.606705155634742 ], [ 99.676644619999934, 9.607505155634755 ], [ 99.673544619999916, 9.62920515563475 ], [ 99.688044619999914, 9.61550515563475 ], [ 99.685544619999916, 9.606705155634742 ] ] ], [ [ [ 114.377244619999885, 9.702805155634749 ], [ 114.37224461999989, 9.699705155634746 ], [ 114.368344619999903, 9.705005155634751 ], [ 114.373644619999936, 9.708305155634747 ], [ 114.377244619999885, 9.702805155634749 ] ] ], [ [ [ 106.262744619999921, 9.528905155634746 ], [ 106.193244619999916, 9.573005155634746 ], [ 106.088044619999891, 9.754405155634743 ], [ 106.29004461999989, 9.581005155634742 ], [ 106.262744619999921, 9.528905155634746 ] ] ], [ [ [ 98.407144619999883, 9.714205155634744 ], [ 98.380744619999916, 9.73280515563475 ], [ 98.408344619999923, 9.770805155634747 ], [ 98.42074461999988, 9.729205155634745 ], [ 98.407144619999883, 9.714205155634744 ] ] ], [ [ [ 100.081644619999906, 9.686705155634755 ], [ 99.990544619999923, 9.71140515563475 ], [ 99.987444619999906, 9.796405155634744 ], [ 100.077444619999881, 9.758605155634754 ], [ 100.081644619999906, 9.686705155634755 ] ] ], [ [ [ 98.035744619999889, 9.786405155634753 ], [ 98.008844619999934, 9.806705155634745 ], [ 98.024944619999928, 9.838305155634743 ], [ 98.060244619999935, 9.813605155634747 ], [ 98.035744619999889, 9.786405155634753 ] ] ], [ [ [ 106.544544619999897, 9.826805155634744 ], [ 106.528044619999889, 9.827505155634753 ], [ 106.418544619999921, 9.934405155634749 ], [ 106.485744619999934, 9.902205155634746 ], [ 106.544544619999897, 9.826805155634744 ] ] ], [ [ [ 98.14194461999989, 9.841705155634742 ], [ 98.171644619999881, 10.011105155634752 ], [ 98.292744619999894, 10.05300515563475 ], [ 98.293244619999882, 10.010305155634754 ], [ 98.14194461999989, 9.841705155634742 ] ] ], [ [ [ 98.186644619999925, 10.040305155634755 ], [ 98.167444619999912, 10.145505155634751 ], [ 98.198544619999893, 10.190005155634751 ], [ 98.238844619999895, 10.165805155634743 ], [ 98.186644619999925, 10.040305155634755 ] ] ], [ [ [ 106.660744619999889, 10.239405155634742 ], [ 106.625744619999921, 10.246905155634749 ], [ 106.614244619999909, 10.25290515563475 ], [ 106.655244619999905, 10.250005155634753 ], [ 106.660744619999889, 10.239405155634742 ] ] ], [ [ [ 106.637144619999901, 10.270005155634749 ], [ 106.752444619999892, 10.234405155634747 ], [ 106.726044619999925, 10.221405155634741 ], [ 106.64334461999988, 10.260305155634754 ], [ 106.537144619999935, 10.279405155634748 ], [ 106.511644619999913, 10.293605155634751 ], [ 106.637144619999901, 10.270005155634749 ] ] ], [ [ [ 104.083844619999923, 10.361905155634744 ], [ 104.0863446199999, 10.245505155634746 ], [ 104.026344619999918, 10.080305155634747 ], [ 103.83714461999989, 10.369405155634752 ], [ 104.083844619999923, 10.361905155634744 ] ] ], [ [ [ 107.092444619999924, 10.322205155634748 ], [ 107.063844619999884, 10.383305155634744 ], [ 107.168044619999932, 10.464205155634744 ], [ 107.205944619999912, 10.423105155634744 ], [ 107.092444619999924, 10.322205155634748 ] ] ], [ [ [ 97.907444619999922, 10.396905155634755 ], [ 97.890244619999919, 10.409205155634751 ], [ 97.903544619999934, 10.490805155634746 ], [ 97.942744619999928, 10.442805155634744 ], [ 97.907444619999922, 10.396905155634755 ] ] ], [ [ [ 103.7752446199999, 10.442505155634748 ], [ 103.748544619999905, 10.476405155634751 ], [ 103.760744619999912, 10.515005155634753 ], [ 103.798844619999898, 10.500005155634753 ], [ 103.7752446199999, 10.442505155634748 ] ] ], [ [ [ 106.895244619999914, 10.372205155634745 ], [ 106.884944619999885, 10.50890515563475 ], [ 106.934644619999915, 10.517205155634741 ], [ 106.979144619999886, 10.408905155634741 ], [ 106.895244619999914, 10.372205155634745 ] ] ], [ [ [ 98.216344619999916, 10.481405155634747 ], [ 98.182444619999899, 10.507505155634746 ], [ 98.238844619999895, 10.530005155634754 ], [ 98.227744619999896, 10.491105155634742 ], [ 98.216344619999916, 10.481405155634747 ] ] ], [ [ [ 108.958544619999884, 10.50420515563475 ], [ 108.930244619999883, 10.510305155634754 ], [ 108.930244619999883, 10.550305155634746 ], [ 108.953244619999907, 10.549205155634752 ], [ 108.958544619999884, 10.50420515563475 ] ] ], [ [ [ 106.904644619999885, 10.520805155634747 ], [ 106.850444619999905, 10.565305155634746 ], [ 106.871344619999888, 10.595505155634754 ], [ 106.852144619999933, 10.625505155634755 ], [ 106.879344619999927, 10.637205155634746 ], [ 106.904644619999885, 10.520805155634747 ] ] ], [ [ [ 106.852144619999933, 10.40360515563475 ], [ 106.7555446199999, 10.481405155634747 ], [ 106.786244619999934, 10.578105155634745 ], [ 106.753144619999887, 10.661005155634754 ], [ 106.856444619999934, 10.603905155634749 ], [ 106.8357446199999, 10.56970515563475 ], [ 106.852144619999933, 10.40360515563475 ] ] ], [ [ [ 115.825544619999903, 10.716405155634746 ], [ 115.818844619999936, 10.730805155634755 ], [ 115.841644619999897, 10.724705155634751 ], [ 115.841044619999934, 10.719405155634746 ], [ 115.825544619999903, 10.716405155634746 ] ] ], [ [ [ 115.784444619999931, 10.749705155634743 ], [ 115.77264461999988, 10.745305155634753 ], [ 115.767744619999917, 10.753905155634754 ], [ 115.779144619999897, 10.760805155634742 ], [ 115.784444619999931, 10.749705155634743 ] ] ], [ [ [ 103.314144619999922, 10.723005155634752 ], [ 103.269644619999895, 10.669705155634745 ], [ 103.193244619999916, 10.756405155634752 ], [ 103.24524461999988, 10.779405155634748 ], [ 103.314144619999922, 10.723005155634752 ] ] ], [ [ [ 115.853844619999904, 10.818905155634752 ], [ 115.836644619999902, 10.821905155634752 ], [ 115.831144619999918, 10.831105155634745 ], [ 115.848844619999909, 10.833005155634751 ], [ 115.853844619999904, 10.818905155634752 ] ] ], [ [ [ 115.802944619999892, 10.86250515563475 ], [ 115.790544619999935, 10.860005155634752 ], [ 115.7872446199999, 10.870305155634753 ], [ 115.796244619999925, 10.876005155634743 ], [ 115.802944619999892, 10.86250515563475 ] ] ], [ [ [ 98.523544619999882, 10.781705155634754 ], [ 98.494444619999911, 10.791905155634751 ], [ 98.490544619999923, 10.886405155634748 ], [ 98.550744619999932, 10.850305155634743 ], [ 98.523544619999882, 10.781705155634754 ] ] ], [ [ [ 92.492744619999883, 10.518305155634749 ], [ 92.346644619999893, 10.694205155634748 ], [ 92.494944619999899, 10.901105155634752 ], [ 92.576944619999892, 10.700805155634754 ], [ 92.492744619999883, 10.518305155634749 ] ] ], [ [ [ 97.919644619999929, 10.858305155634753 ], [ 97.885744619999912, 10.843605155634748 ], [ 97.916044619999923, 10.929405155634754 ], [ 97.948044619999905, 10.913605155634755 ], [ 97.919644619999929, 10.858305155634753 ] ] ], [ [ [ 98.21214461999989, 10.947805155634754 ], [ 98.269944619999933, 10.815805155634749 ], [ 98.264444619999892, 10.689705155634755 ], [ 98.075544619999903, 10.886105155634752 ], [ 98.21214461999989, 10.947805155634754 ] ] ], [ [ [ 98.437144619999913, 10.961905155634753 ], [ 98.429944619999901, 10.995805155634741 ], [ 98.452744619999919, 11.007805155634742 ], [ 98.453544619999889, 10.980005155634743 ], [ 98.437144619999913, 10.961905155634753 ] ] ], [ [ [ 98.533844619999911, 10.950505155634744 ], [ 98.470544619999885, 10.983905155634744 ], [ 98.524944619999928, 11.087205155634749 ], [ 98.547744619999889, 11.01360515563475 ], [ 98.533844619999911, 10.950505155634744 ] ] ], [ [ [ 98.256044619999898, 11.212505155634744 ], [ 98.231044619999921, 11.262505155634742 ], [ 98.277744619999908, 11.276405155634748 ], [ 98.298044619999928, 11.229205155634745 ], [ 98.256044619999898, 11.212505155634744 ] ] ], [ [ [ 103.028044619999889, 11.246405155634747 ], [ 102.986844619999886, 11.274405155634753 ], [ 102.986344619999898, 11.422205155634742 ], [ 103.041844619999893, 11.375505155634755 ], [ 103.028044619999889, 11.246405155634747 ] ] ], [ [ [ 92.633044619999907, 11.354205155634745 ], [ 92.594444619999933, 11.377205155634755 ], [ 92.643544619999886, 11.514205155634755 ], [ 92.703244619999907, 11.385505155634746 ], [ 92.633044619999907, 11.354205155634745 ] ] ], [ [ [ 103.032744619999903, 11.431905155634752 ], [ 102.995444619999887, 11.506105155634742 ], [ 103.009344619999922, 11.525005155634744 ], [ 103.043844619999902, 11.476105155634755 ], [ 103.032744619999903, 11.431905155634752 ] ] ], [ [ [ 92.271344619999923, 11.524405155634753 ], [ 92.229444619999924, 11.535505155634752 ], [ 92.216944619999936, 11.594705155634742 ], [ 92.275744619999898, 11.582205155634753 ], [ 92.271344619999923, 11.524405155634753 ] ] ], [ [ [ 102.5954446199999, 11.563605155634747 ], [ 102.531344619999913, 11.601405155634751 ], [ 102.560244619999935, 11.754405155634743 ], [ 102.604744619999906, 11.696905155634752 ], [ 102.5954446199999, 11.563605155634747 ] ] ], [ [ [ 98.207444619999933, 11.443605155634742 ], [ 98.166244619999929, 11.452205155634744 ], [ 98.289144619999888, 11.798605155634746 ], [ 98.280744619999894, 11.481705155634742 ], [ 98.207444619999933, 11.443605155634742 ] ] ], [ [ [ 98.498244619999923, 11.566105155634745 ], [ 98.425544619999926, 11.562505155634753 ], [ 98.371344619999888, 11.786105155634743 ], [ 98.548844619999898, 11.788305155634745 ], [ 98.498244619999923, 11.566105155634745 ] ] ], [ [ [ 97.487144619999924, 11.774405155634753 ], [ 97.447144619999904, 11.792205155634747 ], [ 97.437744619999933, 11.803305155634746 ], [ 97.461644619999902, 11.80300515563475 ], [ 97.487144619999924, 11.774405155634753 ] ] ], [ [ [ 98.089944619999926, 11.631105155634742 ], [ 98.033044619999885, 11.683005155634746 ], [ 98.007144619999906, 11.858305155634753 ], [ 98.015744619999907, 11.855505155634745 ], [ 98.089944619999926, 11.631105155634742 ] ] ], [ [ [ 97.668244619999882, 11.836905155634753 ], [ 97.633844619999934, 11.876105155634747 ], [ 97.664444619999927, 11.901105155634752 ], [ 97.677444619999903, 11.879705155634753 ], [ 97.668244619999882, 11.836905155634753 ] ] ], [ [ [ 98.271044619999884, 11.849705155634751 ], [ 98.251644619999922, 11.863905155634754 ], [ 98.260244619999924, 11.907205155634742 ], [ 98.28804461999988, 11.887505155634742 ], [ 98.271044619999884, 11.849705155634751 ] ] ], [ [ [ 98.256344619999936, 11.921105155634748 ], [ 98.226344619999907, 11.949705155634746 ], [ 98.251644619999922, 11.980305155634753 ], [ 98.269144619999906, 11.936105155634749 ], [ 98.256344619999936, 11.921105155634748 ] ] ], [ [ [ 93.058244619999925, 11.88860515563475 ], [ 92.943244619999916, 11.98280515563475 ], [ 92.978544619999923, 12.033605155634746 ], [ 93.025744619999898, 12.026905155634751 ], [ 93.058244619999925, 11.88860515563475 ] ] ], [ [ [ 98.499944619999894, 11.884405155634752 ], [ 98.465744619999896, 11.90360515563475 ], [ 98.438544619999902, 12.111405155634742 ], [ 98.664944619999915, 11.941905155634743 ], [ 98.499944619999894, 11.884405155634752 ] ] ], [ [ [ 93.136044619999893, 12.131905155634755 ], [ 93.125544619999914, 12.13390515563475 ], [ 93.131344619999936, 12.149205155634746 ], [ 93.138344619999884, 12.144505155634747 ], [ 93.136044619999893, 12.131905155634755 ] ] ], [ [ [ 102.435744619999923, 11.954205155634753 ], [ 102.291344619999904, 11.974405155634742 ], [ 102.250544619999914, 12.150005155634744 ], [ 102.356344619999902, 12.11080515563475 ], [ 102.435744619999923, 11.954205155634753 ] ] ], [ [ [ 93.093844619999913, 12.088005155634747 ], [ 93.060744619999923, 12.143905155634755 ], [ 93.086644619999902, 12.207205155634753 ], [ 93.103544619999923, 12.179305155634751 ], [ 93.093844619999913, 12.088005155634747 ] ] ], [ [ [ 109.332744619999914, 12.187805155634749 ], [ 109.284944619999919, 12.184705155634745 ], [ 109.24524461999988, 12.227505155634745 ], [ 109.3314446199999, 12.221105155634746 ], [ 109.332744619999914, 12.187805155634749 ] ] ], [ [ [ 92.750444619999882, 12.094805155634745 ], [ 92.748844619999886, 12.075505155634744 ], [ 92.79574461999988, 11.901905155634751 ], [ 92.718544619999932, 11.491105155634742 ], [ 92.524444619999883, 11.854205155634745 ], [ 92.711944619999883, 12.235005155634752 ], [ 92.750444619999882, 12.094805155634745 ] ] ], [ [ [ 93.865544619999923, 12.259205155634746 ], [ 93.845844619999923, 12.264705155634744 ], [ 93.848544619999927, 12.275805155634743 ], [ 93.873244619999923, 12.277505155634742 ], [ 93.865544619999923, 12.259205155634746 ] ] ], [ [ [ 98.14194461999989, 12.141905155634745 ], [ 98.038544619999925, 12.203005155634742 ], [ 98.055544619999921, 12.281105155634748 ], [ 98.124644619999913, 12.27860515563475 ], [ 98.14194461999989, 12.141905155634745 ] ] ], [ [ [ 92.782644619999928, 12.288105155634753 ], [ 92.775544619999891, 12.285005155634749 ], [ 92.774144619999902, 12.290505155634747 ], [ 92.783344619999923, 12.293905155634747 ], [ 92.782644619999928, 12.288105155634753 ] ] ], [ [ [ 102.244644619999917, 12.28800515563475 ], [ 102.236544619999904, 12.284305155634755 ], [ 102.236844619999886, 12.298905155634742 ], [ 102.243344619999903, 12.296405155634744 ], [ 102.244644619999917, 12.28800515563475 ] ] ], [ [ [ 109.393544619999886, 12.350305155634743 ], [ 109.387144619999901, 12.349705155634751 ], [ 109.385244619999924, 12.366905155634754 ], [ 109.395544619999896, 12.356705155634742 ], [ 109.393544619999886, 12.350305155634743 ] ] ], [ [ [ 98.640744619999907, 12.372205155634745 ], [ 98.626044619999902, 12.370505155634746 ], [ 98.619144619999929, 12.378905155634754 ], [ 98.639644619999899, 12.380505155634751 ], [ 98.640744619999907, 12.372205155634745 ] ] ], [ [ [ 92.904944619999924, 12.380805155634746 ], [ 92.881044619999898, 12.38390515563475 ], [ 92.872744619999935, 12.405805155634752 ], [ 92.910744619999889, 12.404205155634742 ], [ 92.904944619999924, 12.380805155634746 ] ] ], [ [ [ 98.617744619999883, 12.352905155634744 ], [ 98.682444619999899, 12.340505155634744 ], [ 98.559644619999915, 12.328905155634743 ], [ 98.540744619999884, 12.370505155634746 ], [ 98.617744619999883, 12.352905155634744 ] ] ], [ [ [ 98.091644619999897, 12.360505155634755 ], [ 98.0055446199999, 12.281905155634746 ], [ 97.937444619999894, 12.337505155634744 ], [ 98.076944619999892, 12.416405155634749 ], [ 98.091644619999897, 12.360505155634755 ] ] ], [ [ [ 98.501044619999902, 12.402205155634746 ], [ 98.471844619999899, 12.417805155634753 ], [ 98.498844619999886, 12.513905155634745 ], [ 98.515744619999907, 12.502505155634751 ], [ 98.501044619999902, 12.402205155634746 ] ] ], [ [ [ 98.285744619999889, 12.502505155634751 ], [ 98.243244619999928, 12.49220515563475 ], [ 98.229644619999931, 12.548005155634755 ], [ 98.264944619999881, 12.555805155634744 ], [ 98.285744619999889, 12.502505155634751 ] ] ], [ [ [ 97.853544619999923, 12.540005155634745 ], [ 97.817744619999928, 12.583305155634747 ], [ 97.837444619999928, 12.598005155634752 ], [ 97.867444619999901, 12.56670515563475 ], [ 97.853544619999923, 12.540005155634745 ] ] ], [ [ [ 98.349444619999929, 12.316905155634743 ], [ 98.3032446199999, 12.335505155634749 ], [ 98.321944619999897, 12.671105155634748 ], [ 98.466944619999936, 12.570805155634744 ], [ 98.349444619999929, 12.316905155634743 ] ] ], [ [ [ 97.872144619999915, 12.764205155634755 ], [ 97.837244619999922, 12.772405155634743 ], [ 97.844144619999895, 12.819405155634755 ], [ 97.8580446199999, 12.807505155634743 ], [ 97.872144619999915, 12.764205155634755 ] ] ], [ [ [ 100.688844619999884, 12.923605155634746 ], [ 100.671644619999881, 12.938305155634751 ], [ 100.676344619999895, 12.952805155634749 ], [ 100.684044619999895, 12.952705155634746 ], [ 100.688844619999884, 12.923605155634746 ] ] ], [ [ [ 92.6910446199999, 12.796105155634748 ], [ 92.668844619999902, 12.855305155634753 ], [ 92.714444619999881, 12.990005155634748 ], [ 92.731644619999884, 12.890305155634749 ], [ 92.6910446199999, 12.796105155634748 ] ] ], [ [ [ 100.818844619999936, 13.131705155634748 ], [ 100.805244619999883, 13.145805155634747 ], [ 100.808544619999907, 13.180205155634752 ], [ 100.821344619999934, 13.150505155634747 ], [ 100.818844619999936, 13.131705155634748 ] ] ], [ [ [ 98.304144619999931, 13.041705155634745 ], [ 98.298044619999928, 12.941405155634754 ], [ 98.239444619999915, 13.213305155634743 ], [ 98.263244619999909, 13.207505155634749 ], [ 98.304144619999931, 13.041705155634745 ] ] ], [ [ [ 92.875744619999921, 13.391405155634743 ], [ 92.869444619999911, 13.390805155634752 ], [ 92.866644619999931, 13.400505155634747 ], [ 92.876044619999902, 13.403905155634746 ], [ 92.875744619999921, 13.391405155634743 ] ] ], [ [ [ 94.276944619999881, 13.413605155634755 ], [ 94.263844619999929, 13.430305155634741 ], [ 94.284144619999893, 13.444205155634748 ], [ 94.291944619999924, 13.425805155634748 ], [ 94.276944619999881, 13.413605155634755 ] ] ], [ [ [ 92.750444619999882, 12.094805155634745 ], [ 92.736344619999898, 12.809705155634745 ], [ 93.042744619999894, 13.57140515563475 ], [ 93.045244619999892, 13.065505155634753 ], [ 92.874344619999931, 12.908905155634741 ], [ 92.959444619999886, 12.86250515563475 ], [ 92.991644619999931, 12.525005155634744 ], [ 92.750444619999882, 12.094805155634745 ] ], [ [ 92.873544619999905, 12.884605155634745 ], [ 92.858944619999932, 12.89890515563475 ], [ 92.826644619999911, 12.899405155634753 ], [ 92.868844619999891, 12.884705155634748 ], [ 92.8785446199999, 12.883605155634754 ], [ 92.882644619999894, 12.889605155634754 ], [ 92.873544619999905, 12.884605155634745 ] ] ], [ [ [ 93.049344619999886, 13.639405155634748 ], [ 92.998544619999905, 13.649405155634753 ], [ 92.993044619999921, 13.661705155634749 ], [ 93.036344619999909, 13.680005155634746 ], [ 93.049344619999886, 13.639405155634748 ] ] ], [ [ [ 97.921044619999918, 13.783005155634754 ], [ 97.909344619999899, 13.792805155634753 ], [ 97.921844619999888, 13.861705155634752 ], [ 97.934644619999915, 13.851705155634747 ], [ 97.921044619999918, 13.783005155634754 ] ] ], [ [ [ 97.924344619999886, 13.905805155634752 ], [ 97.923044619999928, 13.894405155634743 ], [ 97.918344619999914, 13.939105155634749 ], [ 97.923244619999934, 13.930305155634741 ], [ 97.924344619999886, 13.905805155634752 ] ] ], [ [ [ 93.3805446199999, 14.064205155634752 ], [ 93.372444619999897, 14.075305155634751 ], [ 93.386344619999932, 14.151705155634744 ], [ 93.400744619999898, 14.096105155634746 ], [ 93.3805446199999, 14.064205155634752 ] ] ], [ [ [ 97.806344619999891, 14.134405155634752 ], [ 97.789144619999888, 14.15530515563475 ], [ 97.814144619999922, 14.180005155634746 ], [ 97.825244619999921, 14.174205155634752 ], [ 97.806344619999891, 14.134405155634752 ] ] ], [ [ [ 93.689944619999892, 14.853905155634749 ], [ 93.692144619999908, 14.890805155634752 ], [ 93.7210446199999, 14.910305155634745 ], [ 93.716044619999934, 14.888005155634744 ], [ 93.689944619999892, 14.853905155634749 ] ] ], [ [ [ 97.669644619999929, 15.521405155634753 ], [ 97.66304461999988, 15.497205155634745 ], [ 97.654144619999897, 15.578305155634737 ], [ 97.665244619999896, 15.57640515563476 ], [ 97.669644619999929, 15.521405155634753 ] ] ], [ [ [ 111.202444619999881, 15.781105155634762 ], [ 111.196644619999915, 15.785505155634738 ], [ 111.207444619999933, 15.790805155634743 ], [ 111.208044619999896, 15.785005155634749 ], [ 111.202444619999881, 15.781105155634762 ] ] ], [ [ [ 94.797744619999889, 15.791705155634745 ], [ 94.728044619999935, 15.815305155634761 ], [ 94.820544619999907, 15.94800515563476 ], [ 94.839444619999881, 15.874405155634761 ], [ 94.797744619999889, 15.791705155634745 ] ] ], [ [ [ 94.583344619999934, 16.009705155634762 ], [ 94.415744619999884, 15.868005155634748 ], [ 94.648744619999889, 16.245205155634736 ], [ 94.660744619999889, 16.13720515563476 ], [ 94.583344619999934, 16.009705155634762 ] ] ], [ [ [ 111.716644619999897, 16.44940515563475 ], [ 111.713844619999918, 16.447505155634744 ], [ 111.700044619999915, 16.461505155634754 ], [ 111.708044619999896, 16.462205155634749 ], [ 111.716644619999897, 16.44940515563475 ] ] ], [ [ [ 97.569144619999918, 16.233605155634748 ], [ 97.465744619999896, 16.316105155634759 ], [ 97.515544619999901, 16.506105155634756 ], [ 97.616644619999931, 16.465305155634738 ], [ 97.569144619999918, 16.233605155634748 ] ] ], [ [ [ 107.919444619999922, 16.349405155634756 ], [ 107.866944619999913, 16.359405155634747 ], [ 107.661144619999902, 16.572605155634747 ], [ 107.779444619999936, 16.490305155634744 ], [ 107.919444619999922, 16.349405155634756 ] ] ], [ [ [ 112.749144619999925, 16.656105155634762 ], [ 112.740544619999923, 16.656105155634762 ], [ 112.732744619999892, 16.667205155634761 ], [ 112.739444619999915, 16.668005155634759 ], [ 112.749144619999925, 16.656105155634762 ] ] ], [ [ [ 112.343844619999913, 16.831105155634745 ], [ 112.333644619999916, 16.833605155634743 ], [ 112.333044619999896, 16.839405155634736 ], [ 112.341044619999934, 16.841105155634736 ], [ 112.343844619999913, 16.831105155634745 ] ] ], [ [ [ 112.337444619999928, 16.943605155634756 ], [ 112.333844619999923, 16.943605155634756 ], [ 112.33084461999988, 16.949205155634743 ], [ 112.337444619999928, 16.950005155634742 ], [ 112.337444619999928, 16.943605155634756 ] ] ], [ [ [ 112.218844619999913, 16.975005155634747 ], [ 112.211644619999902, 16.972505155634749 ], [ 112.208644619999916, 16.981705155634742 ], [ 112.218344619999925, 16.984405155634747 ], [ 112.218844619999913, 16.975005155634747 ] ] ], [ [ [ 112.2752446199999, 16.974705155634737 ], [ 112.26834461999988, 16.980805155634741 ], [ 112.280844619999925, 16.985505155634755 ], [ 112.281344619999913, 16.98250515563474 ], [ 112.2752446199999, 16.974705155634737 ] ] ], [ [ [ 93.671044619999918, 18.86750515563476 ], [ 93.749944619999894, 18.86750515563476 ], [ 93.703044619999901, 18.668005155634759 ], [ 93.484344619999888, 18.869705155634747 ], [ 93.671044619999918, 18.86750515563476 ] ] ], [ [ [ 93.790944619999891, 19.231305155634757 ], [ 93.896644619999904, 19.205005155634737 ], [ 93.942144619999908, 18.862505155634736 ], [ 93.490544619999923, 19.400805155634757 ], [ 93.790944619999891, 19.231305155634757 ] ] ], [ [ [ 93.801644619999934, 19.268605155634745 ], [ 93.644144619999906, 19.481905155634749 ], [ 93.68274461999988, 19.560505155634743 ], [ 93.968244619999894, 19.420805155634739 ], [ 93.801644619999934, 19.268605155634745 ] ] ], [ [ [ 93.513044619999903, 19.744405155634738 ], [ 93.437744619999933, 19.799405155634744 ], [ 93.395844619999934, 19.955305155634747 ], [ 93.498544619999905, 19.880505155634737 ], [ 93.513044619999903, 19.744405155634738 ] ] ], [ [ [ 93.024444619999883, 19.827805155634749 ], [ 92.908844619999911, 20.060805155634753 ], [ 92.912444619999917, 20.08670515563476 ], [ 92.95444461999989, 20.063605155634761 ], [ 93.024444619999883, 19.827805155634749 ] ] ], [ [ [ 107.730244619999894, 20.127805155634761 ], [ 107.713044619999891, 20.12920515563475 ], [ 107.711644619999902, 20.131905155634755 ], [ 107.738244619999932, 20.144405155634743 ], [ 107.730244619999894, 20.127805155634761 ] ] ], [ [ [ 107.378244619999919, 20.799205155634738 ], [ 107.343244619999894, 20.810005155634755 ], [ 107.334944619999931, 20.846705155634751 ], [ 107.382444619999887, 20.824205155634743 ], [ 107.378244619999919, 20.799205155634738 ] ] ], [ [ [ 107.068844619999936, 20.728605155634753 ], [ 106.989144619999934, 20.735305155634748 ], [ 106.908044619999885, 20.832205155634753 ], [ 107.033844619999911, 20.856105155634751 ], [ 107.068844619999936, 20.728605155634753 ] ] ], [ [ [ 106.7527446199999, 20.854205155634745 ], [ 106.747144619999915, 20.853005155634762 ], [ 106.719144619999895, 20.870805155634756 ], [ 106.741044619999911, 20.871105155634737 ], [ 106.7527446199999, 20.854205155634745 ] ] ], [ [ [ 106.873244619999923, 20.787205155634737 ], [ 106.770844619999934, 20.852505155634745 ], [ 106.781344619999913, 20.922505155634738 ], [ 106.8363446199999, 20.898305155634759 ], [ 106.873244619999923, 20.787205155634737 ] ] ], [ [ [ 106.948044619999905, 20.936405155634745 ], [ 106.932144619999917, 20.936905155634761 ], [ 106.927444619999903, 20.944705155634736 ], [ 106.940644619999887, 20.944305155634751 ], [ 106.948044619999905, 20.936405155634745 ] ] ], [ [ [ 107.488544619999914, 20.839205155634758 ], [ 107.464644619999888, 20.821405155634736 ], [ 107.554144619999931, 20.966105155634736 ], [ 107.5455446199999, 20.918005155634759 ], [ 107.488544619999914, 20.839205155634758 ] ] ], [ [ [ 106.916644619999886, 20.954405155634745 ], [ 106.905544619999887, 20.954405155634745 ], [ 106.888044619999903, 20.965505155634744 ], [ 106.910244619999901, 20.960505155634749 ], [ 106.916644619999886, 20.954405155634745 ] ] ], [ [ [ 107.4607446199999, 20.942205155634738 ], [ 107.46214461999989, 20.967505155634754 ], [ 107.476044619999925, 20.97220515563474 ], [ 107.473244619999889, 20.954405155634745 ], [ 107.4607446199999, 20.942205155634738 ] ] ], [ [ [ 106.7535446199999, 20.95080515563474 ], [ 106.695544619999907, 20.954705155634755 ], [ 106.679444619999913, 20.977505155634745 ], [ 106.751644619999922, 20.958605155634743 ], [ 106.7535446199999, 20.95080515563474 ] ] ], [ [ [ 107.746944619999908, 20.937205155634743 ], [ 107.736644619999936, 21.007805155634756 ], [ 107.747744619999935, 21.019205155634737 ], [ 107.790744619999884, 20.983205155634735 ], [ 107.746944619999908, 20.937205155634743 ] ] ], [ [ [ 107.4627446199999, 20.903005155634744 ], [ 107.395144619999883, 20.897705155634739 ], [ 107.476644619999888, 20.947005155634756 ], [ 107.554444619999913, 21.038005155634735 ], [ 107.4627446199999, 20.903005155634744 ] ] ], [ [ [ 107.824444619999895, 20.983005155634757 ], [ 107.813544619999902, 21.011405155634762 ], [ 107.859344619999888, 21.037805155634757 ], [ 107.862444619999906, 21.021105155634743 ], [ 107.824444619999895, 20.983005155634757 ] ] ], [ [ [ 107.578244619999907, 20.977205155634735 ], [ 107.567144619999908, 21.020505155634751 ], [ 107.620744619999925, 21.117805155634741 ], [ 107.6088446199999, 21.073305155634742 ], [ 107.578244619999907, 20.977205155634735 ] ] ], [ [ [ 107.513244619999909, 21.128305155634749 ], [ 107.520344619999889, 21.14290515563475 ], [ 107.532044619999908, 21.144405155634743 ], [ 107.530244619999905, 21.140505155634756 ], [ 107.513244619999909, 21.128305155634749 ] ] ], [ [ [ 107.383844619999934, 21.046405155634758 ], [ 107.471944619999931, 21.271405155634753 ], [ 107.604444619999924, 21.218905155634744 ], [ 107.511444619999907, 21.149705155634749 ], [ 107.463044619999891, 21.089405155634736 ], [ 107.383844619999934, 21.046405155634758 ] ] ], [ [ [ 107.742744619999883, 21.308905155634747 ], [ 107.708344619999934, 21.305305155634741 ], [ 107.8180446199999, 21.356405155634761 ], [ 107.816944619999902, 21.347805155634759 ], [ 107.742744619999883, 21.308905155634747 ] ] ], [ [ [ 107.996644619999927, 21.394705155634753 ], [ 107.933244619999925, 21.364205155634735 ], [ 107.828544619999889, 21.371405155634747 ], [ 107.959444619999886, 21.400505155634747 ], [ 107.996644619999927, 21.394705155634753 ] ] ], [ [ [ 97.806644619999929, 28.344205155634754 ], [ 98.146644619999904, 28.146905155634741 ], [ 98.316344619999882, 27.541905155634751 ], [ 98.458844619999923, 27.672505155634738 ], [ 98.699644619999901, 27.539205155634747 ], [ 98.778244619999896, 26.636405155634762 ], [ 98.730544619999932, 26.177205155634752 ], [ 98.5680446199999, 26.123005155634743 ], [ 98.7107446199999, 25.855505155634759 ], [ 98.530744619999894, 25.84550515563474 ], [ 98.326644619999911, 25.551705155634735 ], [ 98.1910446199999, 25.615305155634744 ], [ 97.552444619999903, 24.743005155634748 ], [ 97.543044619999932, 24.476705155634747 ], [ 97.759944619999885, 24.257505155634746 ], [ 97.535544619999882, 23.939705155634741 ], [ 97.649944619999928, 23.851705155634747 ], [ 98.064444619999904, 24.089105155634755 ], [ 98.890744619999907, 24.160105155634753 ], [ 98.677144619999922, 23.968005155634742 ], [ 98.927444619999903, 23.189205155634752 ], [ 99.503844619999882, 23.089705155634746 ], [ 99.566344619999882, 22.938005155634741 ], [ 99.162744619999899, 22.159205155634751 ], [ 99.964444619999881, 22.048905155634756 ], [ 99.973544619999927, 21.733905155634758 ], [ 100.193244619999916, 21.44140515563474 ], [ 100.58854461999988, 21.456105155634745 ], [ 101.120544619999919, 21.770505155634751 ], [ 101.281944619999933, 21.180305155634741 ], [ 101.784644619999881, 21.142805155634747 ], [ 101.765244619999919, 21.834405155634741 ], [ 101.574444619999895, 22.209205155634734 ], [ 101.691344619999882, 22.47220515563474 ], [ 102.140744619999907, 22.396305155634749 ], [ 102.484144619999881, 22.77390515563475 ], [ 103.0469446199999, 22.435005155634755 ], [ 103.3363446199999, 22.796405155634758 ], [ 103.531644619999895, 22.583605155634743 ], [ 103.655244619999905, 22.782505155634752 ], [ 103.964444619999881, 22.499105155634751 ], [ 104.109144619999881, 22.798305155634736 ], [ 104.369944619999899, 22.685805155634753 ], [ 104.731344619999902, 22.81670515563475 ], [ 104.907444619999922, 23.180305155634741 ], [ 105.353844619999904, 23.334705155634751 ], [ 105.872444619999897, 22.910305155634759 ], [ 106.707144619999895, 22.865005155634762 ], [ 106.787444619999917, 22.76390515563476 ], [ 106.551644619999934, 22.45680515563474 ], [ 106.693244619999916, 22.030805155634752 ], [ 107.029144619999897, 21.936705155634755 ], [ 107.362744619999887, 21.605305155634753 ], [ 107.783044619999885, 21.666905155634751 ], [ 108.068344619999891, 21.491405155634752 ], [ 107.414644619999933, 21.32610515563475 ], [ 107.369944619999899, 21.022205155634751 ], [ 107.154444619999936, 20.925005155634736 ], [ 107.144944619999933, 21.040505155634762 ], [ 106.863544619999914, 20.871005155634762 ], [ 106.794644619999929, 21.02530515563474 ], [ 106.643844619999925, 21.021405155634753 ], [ 106.776944619999881, 20.699205155634743 ], [ 106.597144619999881, 20.632605155634749 ], [ 106.5666446199999, 20.283905155634741 ], [ 105.959144619999904, 19.927805155634744 ], [ 105.610544619999928, 19.00390515563474 ], [ 105.883544619999896, 18.499205155634755 ], [ 106.5098446199999, 17.956105155634745 ], [ 106.424944619999906, 17.741705155634762 ], [ 106.698844619999932, 17.399705155634749 ], [ 107.818544619999898, 16.30470515563475 ], [ 108.188544619999902, 16.199205155634743 ], [ 108.200544619999903, 15.998005155634743 ], [ 108.241044619999911, 16.154205155634756 ], [ 108.332444619999933, 16.150005155634759 ], [ 108.305744619999928, 15.948305155634742 ], [ 108.624944619999894, 15.482205155634759 ], [ 108.830244619999917, 15.420805155634753 ], [ 109.304444619999913, 13.864405155634742 ], [ 109.228844619999904, 13.408605155634746 ], [ 109.466344619999916, 12.893305155634749 ], [ 109.197444619999885, 12.633305155634744 ], [ 109.337444619999928, 12.373605155634749 ], [ 109.145544619999896, 12.435505155634743 ], [ 109.269944619999933, 11.892505155634751 ], [ 109.173244619999934, 12.120505155634746 ], [ 109.181344619999891, 11.631105155634742 ], [ 108.965244619999908, 11.312205155634743 ], [ 107.2661446199999, 10.376105155634747 ], [ 106.998744619999911, 10.657205155634742 ], [ 106.961144619999914, 10.46610515563475 ], [ 106.939944619999892, 10.598305155634748 ], [ 106.882744619999926, 10.645505155634751 ], [ 106.744144619999929, 10.670005155634755 ], [ 106.591544619999922, 10.42970515563475 ], [ 106.738544619999914, 10.469405155634746 ], [ 106.784644619999881, 10.277505155634742 ], [ 106.424444619999917, 10.31070515563475 ], [ 106.776344619999918, 10.080005155634751 ], [ 106.590244619999908, 9.977505155634745 ], [ 106.290544619999935, 10.250805155634751 ], [ 106.4907446199999, 10.007805155634742 ], [ 106.685244619999935, 9.898605155634755 ], [ 106.618044619999921, 9.811405155634745 ], [ 106.1171446199999, 10.238305155634748 ], [ 106.572444619999885, 9.73920515563475 ], [ 106.543044619999932, 9.583605155634743 ], [ 106.393544619999886, 9.533605155634746 ], [ 105.823644619999925, 10.00420515563475 ], [ 106.194044619999886, 9.366905155634754 ], [ 105.527144619999888, 9.126105155634747 ], [ 105.301344619999895, 8.771405155634753 ], [ 104.853044619999935, 8.558905155634747 ], [ 104.742744619999883, 8.605005155634743 ], [ 104.923844619999898, 8.746105155634751 ], [ 104.797144619999926, 8.795505155634743 ], [ 104.860544619999928, 9.692505155634748 ], [ 105.0449446199999, 9.931405155634749 ], [ 105.114944619999903, 9.857205155634745 ], [ 104.990244619999885, 10.101105155634755 ], [ 104.610244619999889, 10.168905155634747 ], [ 104.250744619999921, 10.56670515563475 ], [ 103.926844619999883, 10.590305155634752 ], [ 103.623244619999923, 10.495505155634746 ], [ 103.516044619999889, 10.638005155634744 ], [ 103.721844619999899, 10.866105155634742 ], [ 103.555244619999883, 11.156905155634746 ], [ 103.348844619999909, 10.884705155634748 ], [ 103.129644619999908, 10.883005155634748 ], [ 103.101344619999907, 11.348605155634743 ], [ 103.028844619999916, 11.541905155634751 ], [ 102.956344619999925, 11.551405155634754 ], [ 103.084344619999911, 11.723905155634753 ], [ 102.893044619999898, 11.828005155634742 ], [ 102.954344619999915, 11.56970515563475 ], [ 102.644944619999933, 12.172505155634752 ], [ 102.3377446199999, 12.195305155634742 ], [ 102.362144619999924, 12.351705155634747 ], [ 102.236844619999886, 12.310005155634755 ], [ 102.060644619999891, 12.566305155634751 ], [ 101.746644619999927, 12.707205155634753 ], [ 100.932144619999917, 12.611405155634742 ], [ 100.976344619999907, 13.462805155634754 ], [ 100.048044619999928, 13.410005155634749 ], [ 100.021344619999923, 12.194205155634748 ], [ 99.149144619999902, 10.36550515563475 ], [ 99.237444619999906, 9.25420515563475 ], [ 99.847744619999901, 9.300805155634748 ], [ 99.958544619999884, 8.625305155634749 ], [ 100.22414461999989, 8.440805155634749 ], [ 100.572144619999904, 7.191105155634745 ], [ 100.270744619999903, 7.793305155634755 ], [ 100.184944619999897, 7.510505155634746 ], [ 100.421044619999918, 7.159405155634744 ], [ 100.529144619999897, 7.128005155634753 ], [ 100.614344619999883, 7.177805155634744 ], [ 100.793544619999921, 6.958005155634751 ], [ 101.567144619999908, 6.830505155634754 ], [ 102.095244619999903, 6.236105155634746 ], [ 101.824144619999913, 5.739405155634742 ], [ 101.569944619999887, 5.916705155634745 ], [ 101.139644619999899, 5.631905155634755 ], [ 100.990244619999885, 5.78800515563475 ], [ 101.115444619999892, 6.248905155634745 ], [ 100.8574446199999, 6.234405155634747 ], [ 100.7541446199999, 6.501905155634745 ], [ 100.387444619999883, 6.536105155634743 ], [ 100.293844619999902, 6.703905155634743 ], [ 100.127044619999936, 6.424905155634747 ], [ 99.684344619999933, 6.880005155634748 ], [ 99.749644619999913, 7.124405155634747 ], [ 99.386644619999913, 7.304405155634754 ], [ 99.259744619999935, 7.655805155634752 ], [ 98.770244619999914, 8.020305155634745 ], [ 98.656344619999913, 8.383605155634754 ], [ 98.430744619999928, 8.143005155634754 ], [ 98.274144619999902, 8.274405155634753 ], [ 98.193244619999916, 8.563605155634747 ], [ 98.3391446199999, 9.010505155634746 ], [ 98.328044619999901, 9.207505155634749 ], [ 98.562144619999913, 9.730005155634743 ], [ 98.746644619999927, 10.331905155634743 ], [ 98.546644619999881, 9.981705155634742 ], [ 98.458044619999896, 10.722805155634745 ], [ 98.7107446199999, 10.918305155634755 ], [ 98.743544619999909, 11.666905155634751 ], [ 98.891044619999889, 11.693905155634752 ], [ 98.597444619999919, 11.751705155634752 ], [ 98.721844619999899, 11.976105155634755 ], [ 98.70584461999988, 12.224505155634745 ], [ 98.533144619999916, 12.245705155634752 ], [ 98.703544619999889, 12.340005155634742 ], [ 98.583344619999934, 13.172805155634748 ], [ 98.185544619999916, 14.059205155634743 ], [ 98.138844619999929, 13.539705155634749 ], [ 98.089444619999881, 14.178605155634742 ], [ 97.797244619999901, 14.882005155634744 ], [ 97.72554461999988, 15.842805155634736 ], [ 97.568844619999936, 16.068605155634756 ], [ 97.737444619999906, 16.563905155634743 ], [ 97.378044619999912, 16.495005155634757 ], [ 96.878044619999912, 17.450005155634742 ], [ 96.777744619999908, 16.703905155634757 ], [ 96.379644619999908, 16.501405155634743 ], [ 96.241944619999913, 16.803705155634745 ], [ 96.26834461999988, 16.389705155634758 ], [ 96.006744619999893, 16.383105155634738 ], [ 95.428544619999911, 15.729705155634761 ], [ 95.285544619999882, 15.733305155634739 ], [ 95.364944619999903, 15.989205155634735 ], [ 95.360744619999934, 16.144705155634753 ], [ 95.216344619999916, 15.782805155634762 ], [ 95.137144619999901, 16.13720515563476 ], [ 95.039944619999915, 15.805805155634758 ], [ 94.848844619999909, 15.779705155634744 ], [ 94.9907446199999, 16.246705155634757 ], [ 94.650544619999891, 15.854205155634745 ], [ 94.793044619999932, 16.153605155634736 ], [ 94.560244619999935, 15.941905155634757 ], [ 94.6796446199999, 16.11580515563476 ], [ 94.631044619999898, 16.342805155634736 ], [ 94.245544619999919, 15.960005155634761 ], [ 94.231944619999922, 16.348305155634748 ], [ 94.614644619999922, 17.546405155634758 ], [ 94.238544619999914, 18.737805155634746 ], [ 94.033044619999885, 18.856105155634751 ], [ 94.047344619999933, 19.245005155634757 ], [ 93.976044619999925, 19.143005155634754 ], [ 93.874244619999899, 19.256005155634753 ], [ 93.991944619999913, 19.457205155634753 ], [ 93.59914461999989, 19.719705155634742 ], [ 93.728544619999923, 19.931705155634759 ], [ 93.128244619999919, 20.085505155634749 ], [ 93.246644619999927, 19.823905155634762 ], [ 93.136744619999888, 19.983305155634739 ], [ 93.12994461999989, 19.835505155634749 ], [ 92.972144619999881, 20.122805155634737 ], [ 93.116344619999893, 20.181105155634739 ], [ 92.9921446199999, 20.14890515563475 ], [ 93.081644619999906, 20.548605155634746 ], [ 92.860744619999934, 20.121105155634737 ], [ 92.796044619999918, 20.490005155634762 ], [ 92.634944619999885, 20.692205155634738 ], [ 92.732744619999892, 20.258305155634744 ], [ 92.207444619999933, 21.143605155634745 ], [ 92.357144619999929, 21.471405155634741 ], [ 92.66934461999989, 21.29700515563475 ], [ 92.700544619999903, 22.155805155634752 ], [ 92.924344619999886, 22.005005155634748 ], [ 93.196644619999915, 22.256405155634738 ], [ 93.092744619999905, 22.714405155634736 ], [ 93.138044619999903, 23.048005155634755 ], [ 93.3032446199999, 23.014705155634758 ], [ 93.388544619999891, 23.223305155634748 ], [ 93.338744619999886, 24.077905155634753 ], [ 94.15104461999988, 23.855305155634753 ], [ 94.734344619999888, 25.024705155634749 ], [ 94.625544619999914, 25.397805155634742 ], [ 95.178044619999923, 26.058905155634747 ], [ 95.141344619999927, 26.612505155634736 ], [ 96.194144619999918, 27.270805155634761 ], [ 96.729144619999886, 27.36550515563475 ], [ 97.136644619999913, 27.085805155634759 ], [ 96.888844619999929, 27.61750515563476 ], [ 97.361044619999916, 27.940805155634749 ], [ 97.555244619999883, 28.548005155634755 ], [ 97.806644619999929, 28.344205155634754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 42, "LEVEL1_COD": 4, "LEVEL1_NAM": "ASIA-TROPICAL", "LEVEL2_NAM": "Malesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.914144619999888, -12.198094844365258 ], [ 96.902444619999926, -12.19999484436525 ], [ 96.914744619999908, -12.151994844365248 ], [ 96.924444619999917, -12.182794844365247 ], [ 96.914144619999888, -12.198094844365258 ] ] ], [ [ [ 96.862744619999887, -12.196094844365248 ], [ 96.819444619999899, -12.178094844365248 ], [ 96.826344619999929, -12.128294844365257 ], [ 96.866944619999913, -12.188094844365253 ], [ 96.862744619999887, -12.196094844365248 ] ] ], [ [ [ 123.214644619999888, -10.812194844365251 ], [ 122.844144619999895, -10.929994844365254 ], [ 122.80774461999988, -10.794694844365253 ], [ 123.390244619999919, -10.436994844365245 ], [ 123.394444619999888, -10.684194844365251 ], [ 123.214644619999888, -10.812194844365251 ] ] ], [ [ [ 121.859944619999908, -10.610294844365256 ], [ 121.690744619999919, -10.566394844365249 ], [ 121.996944619999908, -10.441094844365253 ], [ 121.982744619999892, -10.534694844365248 ], [ 121.859944619999908, -10.610294844365256 ] ] ], [ [ [ 105.736344619999898, -10.504594844365258 ], [ 105.701444619999904, -10.510994844365257 ], [ 105.629044619999888, -10.437294844365255 ], [ 105.736644619999936, -10.384094844365251 ], [ 105.736344619999898, -10.504594844365258 ] ] ], [ [ [ 123.400544619999891, -10.342794844365258 ], [ 123.308544619999907, -10.276694844365252 ], [ 123.453244619999907, -10.139694844365252 ], [ 123.508044619999907, -10.182794844365247 ], [ 123.400544619999891, -10.342794844365258 ] ] ], [ [ [ 120.029144619999897, -9.383294844365253 ], [ 120.810244619999935, -9.979194844365253 ], [ 120.724444619999929, -10.199694844365254 ], [ 120.164644619999933, -10.231394844365255 ], [ 119.632144619999906, -9.773294844365253 ], [ 119.12024461999988, -9.726694844365255 ], [ 118.931044619999909, -9.561094844365257 ], [ 119.282144619999883, -9.358894844365253 ], [ 120.029144619999897, -9.383294844365253 ] ] ], [ [ [ 115.594744619999915, -8.804194844365256 ], [ 115.469944619999922, -8.734394844365255 ], [ 115.512544619999915, -8.669994844365249 ], [ 115.605844619999914, -8.706694844365245 ], [ 115.594744619999915, -8.804194844365256 ] ] ], [ [ [ 119.690544619999912, -8.802794844365252 ], [ 119.6074446199999, -8.773594844365249 ], [ 119.633044619999907, -8.600794844365254 ], [ 119.719944619999922, -8.686994844365245 ], [ 119.690544619999912, -8.802794844365252 ] ] ], [ [ [ 113.388844619999929, -8.497194844365254 ], [ 113.2955446199999, -8.500594844365253 ], [ 113.285744619999889, -8.439994844365245 ], [ 113.396644619999904, -8.452494844365248 ], [ 113.388844619999929, -8.497194844365254 ] ] ], [ [ [ 122.969444619999933, -8.572494844365252 ], [ 122.988044619999926, -8.456694844365245 ], [ 123.177744619999885, -8.442194844365247 ], [ 123.167444619999912, -8.474194844365257 ], [ 122.969444619999933, -8.572494844365252 ] ] ], [ [ [ 119.461644619999902, -8.440294844365255 ], [ 119.585544619999894, -8.563094844365253 ], [ 119.447144619999904, -8.754194844365259 ], [ 119.373844619999886, -8.724194844365257 ], [ 119.461644619999902, -8.440294844365255 ] ] ], [ [ [ 127.253044619999912, -8.477494844365253 ], [ 126.472444619999919, -8.952494844365248 ], [ 125.354644619999931, -9.294194844365251 ], [ 124.426344619999895, -10.167494844365251 ], [ 123.811644619999925, -10.375794844365245 ], [ 123.488244619999932, -10.316394844365249 ], [ 123.762144619999901, -10.078894844365252 ], [ 123.575244619999921, -10.028294844365249 ], [ 123.674644619999924, -9.629494844365254 ], [ 124.951844619999918, -8.950094844365253 ], [ 125.145244619999914, -8.634694844365256 ], [ 127.00494461999989, -8.324494844365248 ], [ 127.253044619999912, -8.477494844365253 ] ] ], [ [ [ 123.281044619999932, -8.405794844365246 ], [ 123.022744619999912, -8.413294844365254 ], [ 123.016044619999889, -8.378094844365251 ], [ 123.220844619999923, -8.233594844365257 ], [ 123.344144619999895, -8.269994844365257 ], [ 123.281044619999932, -8.405794844365246 ] ] ], [ [ [ 116.549144619999936, -8.774994844365253 ], [ 116.577444619999881, -8.900794844365251 ], [ 116.259444619999897, -8.923294844365245 ], [ 115.844144619999895, -8.755294844365253 ], [ 116.073044619999905, -8.731094844365245 ], [ 116.102444619999915, -8.406394844365252 ], [ 116.387444619999883, -8.204994844365245 ], [ 116.735744619999934, -8.36309484436525 ], [ 116.549144619999936, -8.774994844365253 ] ] ], [ [ [ 128.219944619999922, -8.210594844365247 ], [ 128.208244619999903, -8.287194844365246 ], [ 128.079944619999935, -8.25949484436525 ], [ 128.10684461999989, -8.211094844365249 ], [ 128.219944619999922, -8.210594844365247 ] ] ], [ [ [ 123.764444619999892, -8.327194844365252 ], [ 123.536044619999927, -8.566994844365254 ], [ 123.217444619999924, -8.536694844365257 ], [ 123.473144619999914, -8.352094844365254 ], [ 123.402444619999926, -8.274994844365253 ], [ 123.582144619999895, -8.378094844365251 ], [ 123.794444619999922, -8.181394844365258 ], [ 123.939144619999922, -8.242494844365254 ], [ 123.764444619999892, -8.327194844365252 ] ] ], [ [ [ 124.290544619999935, -8.329194844365247 ], [ 124.115244619999885, -8.555594844365245 ], [ 123.906944619999933, -8.452494844365248 ], [ 124.269444619999888, -8.180594844365245 ], [ 124.290544619999935, -8.329194844365247 ] ] ], [ [ [ 129.008044619999907, -8.269494844365255 ], [ 128.922144619999926, -8.261994844365248 ], [ 128.828244619999907, -8.198894844365256 ], [ 128.969644619999883, -8.183894844365255 ], [ 129.008044619999907, -8.269494844365255 ] ] ], [ [ [ 127.668244619999882, -8.244494844365249 ], [ 127.605744619999882, -8.206994844365255 ], [ 127.771044619999884, -8.188894844365251 ], [ 127.761344619999932, -8.214494844365248 ], [ 127.668244619999882, -8.244494844365249 ] ] ], [ [ [ 117.540744619999884, -8.390294844365258 ], [ 117.481344619999902, -8.191394844365249 ], [ 117.675744619999932, -8.156094844365256 ], [ 117.6910446199999, -8.186094844365257 ], [ 117.540744619999884, -8.390294844365258 ] ] ], [ [ [ 125.581644619999906, -8.317494844365257 ], [ 125.496044619999907, -8.269494844365255 ], [ 125.641344619999927, -8.13579484436525 ], [ 125.647444619999931, -8.149994844365253 ], [ 125.581644619999906, -8.317494844365257 ] ] ], [ [ [ 119.072444619999885, -8.267494844365245 ], [ 119.014144619999911, -8.205794844365258 ], [ 119.078544619999889, -8.133894844365258 ], [ 119.136944619999895, -8.195594844365246 ], [ 119.072444619999885, -8.267494844365245 ] ] ], [ [ [ 124.577744619999919, -8.13579484436525 ], [ 125.090244619999908, -8.156094844365256 ], [ 125.139644619999899, -8.329194844365247 ], [ 124.350744619999887, -8.454494844365257 ], [ 124.577744619999919, -8.13579484436525 ] ] ], [ [ [ 127.843544619999932, -8.10109484436525 ], [ 128.10054461999988, -8.138594844365258 ], [ 128.127444619999892, -8.171694844365248 ], [ 128.0252446199999, -8.267494844365245 ], [ 127.843544619999932, -8.10109484436525 ] ] ], [ [ [ 130.804144619999931, -8.352194844365258 ], [ 131.013044619999903, -8.089694844365255 ], [ 131.180244619999883, -8.129694844365247 ], [ 130.959344619999911, -8.236994844365256 ], [ 130.804144619999931, -8.352194844365258 ] ] ], [ [ [ 118.311844619999931, -8.374694844365251 ], [ 118.648344619999932, -8.294494844365246 ], [ 118.666044619999923, -8.552194844365246 ], [ 118.779144619999897, -8.308894844365255 ], [ 118.996944619999908, -8.313594844365255 ], [ 119.178044619999923, -8.720294844365256 ], [ 118.457144619999895, -8.871994844365247 ], [ 118.406344619999913, -8.584694844365245 ], [ 118.154944619999924, -8.871994844365247 ], [ 117.046044619999918, -9.11139484436525 ], [ 116.751344619999884, -9.00949484436525 ], [ 116.802744619999885, -8.590794844365249 ], [ 117.122744619999935, -8.378594844365253 ], [ 117.565544619999912, -8.411994844365253 ], [ 117.966344619999916, -8.748594844365257 ], [ 118.284344619999899, -8.594194844365248 ], [ 117.832144619999895, -8.373294844365248 ], [ 117.738844619999895, -8.148594844365249 ], [ 118.098544619999927, -8.108594844365257 ], [ 118.311844619999931, -8.374694844365251 ] ] ], [ [ [ 122.981044619999921, -8.14949484436525 ], [ 122.832444619999933, -8.601694844365255 ], [ 121.765544619999901, -8.89219484436525 ], [ 121.389944619999881, -8.798094844365252 ], [ 121.016344619999927, -8.949694844365254 ], [ 120.577144619999899, -8.793894844365255 ], [ 119.893844619999925, -8.850294844365251 ], [ 119.796244619999925, -8.720294844365256 ], [ 119.909644619999881, -8.464194844365252 ], [ 120.522444619999931, -8.257194844365259 ], [ 121.511044619999893, -8.607794844365259 ], [ 122.039444619999927, -8.443594844365251 ], [ 122.288244619999887, -8.644494844365255 ], [ 122.889944619999881, -8.287194844365246 ], [ 122.946944619999897, -8.203594844365256 ], [ 122.737144619999924, -8.229494844365249 ], [ 122.800244619999887, -8.110794844365245 ], [ 122.981044619999921, -8.14949484436525 ] ] ], [ [ [ 115.502244619999885, -8.17859484436525 ], [ 115.707744619999914, -8.409194844365246 ], [ 115.126044619999902, -8.854194844365253 ], [ 115.161944619999929, -8.678194844365251 ], [ 114.602444619999915, -8.390294844365258 ], [ 114.445544619999907, -8.104694844365255 ], [ 115.502244619999885, -8.17859484436525 ] ] ], [ [ [ 127.213844619999918, -8.113294844365257 ], [ 127.153044619999889, -8.099194844365257 ], [ 127.181644619999929, -8.021994844365253 ], [ 127.226344619999907, -8.036694844365257 ], [ 127.213844619999918, -8.113294844365257 ] ] ], [ [ [ 129.764444619999892, -8.061094844365257 ], [ 129.584144619999904, -7.907794844365256 ], [ 129.60684461999989, -7.803894844365246 ], [ 129.843244619999894, -7.840594844365256 ], [ 129.764444619999892, -8.061094844365257 ] ] ], [ [ [ 130.989144619999934, -7.723294844365256 ], [ 130.984144619999881, -7.664194844365255 ], [ 131.128844619999882, -7.626694844365247 ], [ 131.093844619999913, -7.692494844365257 ], [ 130.989144619999934, -7.723294844365256 ] ] ], [ [ [ 126.721344619999911, -7.673094844365252 ], [ 126.790544619999935, -7.749694844365251 ], [ 126.418244619999882, -7.932194844365256 ], [ 125.772144619999892, -8.008894844365258 ], [ 125.972144619999881, -7.658594844365254 ], [ 126.621844619999933, -7.564994844365245 ], [ 126.721344619999911, -7.673094844365252 ] ] ], [ [ [ 127.381044619999898, -7.658594844365254 ], [ 127.368044619999921, -7.513894844365254 ], [ 127.481944619999922, -7.528894844365254 ], [ 127.481044619999921, -7.589494844365248 ], [ 127.381044619999898, -7.658594844365254 ] ] ], [ [ [ 130.929944619999901, -7.562794844365257 ], [ 130.844344619999902, -7.547194844365251 ], [ 130.849044619999916, -7.503094844365251 ], [ 130.976044619999925, -7.50779484436525 ], [ 130.929944619999901, -7.562794844365257 ] ] ], [ [ [ 131.072744619999924, -7.511394844365256 ], [ 131.003344619999893, -7.424994844365258 ], [ 131.177444619999903, -7.408594844365254 ], [ 131.134444619999897, -7.463594844365247 ], [ 131.072744619999924, -7.511394844365256 ] ] ], [ [ [ 121.778544619999934, -7.424494844365256 ], [ 121.761944619999895, -7.359194844365248 ], [ 121.830544619999898, -7.342794844365258 ], [ 121.831944619999888, -7.388894844365254 ], [ 121.778544619999934, -7.424494844365256 ] ] ], [ [ [ 121.10824461999988, -7.394494844365255 ], [ 121.069944619999887, -7.379494844365254 ], [ 121.093244619999894, -7.304694844365258 ], [ 121.168544619999921, -7.352194844365258 ], [ 121.10824461999988, -7.394494844365255 ] ] ], [ [ [ 131.272744619999912, -7.372794844365245 ], [ 131.216644619999897, -7.359194844365248 ], [ 131.263044619999903, -7.30059484436525 ], [ 131.301644619999934, -7.323594844365246 ], [ 131.272744619999912, -7.372794844365245 ] ] ], [ [ [ 120.931344619999891, -7.283594844365254 ], [ 121.063544619999902, -7.304694844365258 ], [ 120.789644619999933, -7.277494844365251 ], [ 120.819144619999918, -7.259194844365254 ], [ 120.931344619999891, -7.283594844365254 ] ] ], [ [ [ 131.736044619999916, -7.214194844365252 ], [ 131.334344619999911, -8.008894844365258 ], [ 131.109644619999926, -8.000794844365245 ], [ 131.243244619999928, -7.479994844365251 ], [ 131.539444619999927, -7.143594844365253 ], [ 131.736044619999916, -7.214194844365252 ] ] ], [ [ [ 131.927144619999922, -7.106994844365246 ], [ 131.968844619999913, -7.254494844365254 ], [ 131.728544619999923, -7.158594844365254 ], [ 131.746844619999933, -7.116994844365252 ], [ 131.927144619999922, -7.106994844365246 ] ] ], [ [ [ 128.639944619999881, -7.219194844365248 ], [ 128.52604461999988, -7.143594844365253 ], [ 128.615244619999885, -7.064694844365249 ], [ 128.703044619999901, -7.114494844365254 ], [ 128.639944619999881, -7.219194844365248 ] ] ], [ [ [ 114.402444619999926, -7.181094844365248 ], [ 114.324144619999913, -7.163294844365254 ], [ 114.293244619999882, -7.082494844365257 ], [ 114.37024461999988, -7.066094844365253 ], [ 114.402444619999926, -7.181094844365248 ] ] ], [ [ [ 120.741644619999931, -7.075594844365256 ], [ 120.669144619999884, -7.145594844365249 ], [ 120.6305446199999, -7.016394844365252 ], [ 120.640244619999919, -7.012194844365254 ], [ 120.741644619999931, -7.075594844365256 ] ] ], [ [ [ 113.991344619999893, -6.880294844365253 ], [ 114.127444619999892, -6.976394844365245 ], [ 113.503844619999882, -7.225294844365251 ], [ 112.687744619999933, -7.051094844365252 ], [ 112.921644619999881, -6.893294844365258 ], [ 113.991344619999893, -6.880294844365253 ] ] ], [ [ [ 115.293344619999914, -6.838794844365253 ], [ 115.461944619999883, -6.850594844365247 ], [ 115.570844619999889, -6.925794844365257 ], [ 115.291044619999923, -7.008294844365253 ], [ 115.293344619999914, -6.838794844365253 ] ] ], [ [ [ 131.592144619999885, -6.678894844365246 ], [ 131.626344619999884, -6.707494844365257 ], [ 131.535744619999889, -6.801394844365248 ], [ 131.528244619999896, -6.751694844365247 ], [ 131.592144619999885, -6.678894844365246 ] ] ], [ [ [ 134.668844619999902, -6.774194844365255 ], [ 134.626344619999884, -6.715594844365256 ], [ 134.697744619999924, -6.586394844365245 ], [ 134.741644619999931, -6.628594844365253 ], [ 134.668844619999902, -6.774194844365255 ] ] ], [ [ [ 105.1930446199999, -6.684494844365247 ], [ 105.113044619999926, -6.611694844365246 ], [ 105.2535446199999, -6.527194844365255 ], [ 105.2535446199999, -6.635594844365258 ], [ 105.1930446199999, -6.684494844365247 ] ] ], [ [ [ 134.683844619999888, -6.561094844365257 ], [ 134.633344619999889, -6.490294844365252 ], [ 134.683244619999925, -6.45169484436525 ], [ 134.746844619999933, -6.523094844365247 ], [ 134.683844619999888, -6.561094844365257 ] ] ], [ [ [ 134.831844619999913, -6.471994844365256 ], [ 134.78804461999988, -6.393094844365251 ], [ 134.857944619999898, -6.289494844365251 ], [ 134.888844619999929, -6.332494844365257 ], [ 134.831844619999913, -6.471994844365256 ] ] ], [ [ [ 134.586044619999882, -6.391694844365247 ], [ 134.542144619999931, -6.535794844365256 ], [ 134.4556446199999, -6.427594844365245 ], [ 134.3454446199999, -6.356994844365246 ], [ 134.586044619999882, -6.391694844365247 ] ] ], [ [ [ 134.3440446199999, -6.804194844365256 ], [ 134.198044619999905, -6.921994844365258 ], [ 134.067144619999908, -6.82669484436525 ], [ 134.102744619999896, -6.173094844365252 ], [ 134.514644619999899, -6.584994844365255 ], [ 134.3440446199999, -6.804194844365256 ] ] ], [ [ [ 134.156344619999913, -6.047494844365247 ], [ 134.22554461999988, -6.031394844365252 ], [ 134.228244619999884, -6.13749484436525 ], [ 134.403544619999934, -6.286094844365252 ], [ 134.133844619999934, -6.154694844365252 ], [ 134.156344619999913, -6.047494844365247 ] ] ], [ [ [ 134.731344619999902, -6.036694844365257 ], [ 134.603044619999935, -6.370594844365257 ], [ 134.268044619999898, -6.117194844365258 ], [ 134.607144619999929, -5.952794844365258 ], [ 134.731344619999902, -6.036694844365257 ] ] ], [ [ [ 106.163244619999887, -6.01419484436525 ], [ 106.983544619999918, -6.083894844365247 ], [ 107.026944619999881, -5.914194844365255 ], [ 107.331944619999888, -5.961694844365255 ], [ 107.650544619999891, -6.249994844365247 ], [ 108.311044619999905, -6.260294844365248 ], [ 108.734344619999888, -6.814994844365245 ], [ 110.390744619999907, -6.979694844365255 ], [ 110.725244619999899, -6.463094844365258 ], [ 110.9199446199999, -6.409994844365258 ], [ 111.152744619999908, -6.69999484436525 ], [ 111.489944619999903, -6.629194844365259 ], [ 112.083344619999934, -6.90889484436525 ], [ 112.560244619999935, -6.912194844365246 ], [ 112.605544619999932, -7.207494844365257 ], [ 112.827744619999919, -7.284994844365258 ], [ 112.845544619999885, -7.599694844365246 ], [ 113.297144619999926, -7.792494844365251 ], [ 114.037144619999935, -7.611094844365255 ], [ 114.448244619999912, -7.80059484436525 ], [ 114.371644619999927, -8.521094844365251 ], [ 114.621044619999907, -8.746694844365251 ], [ 113.232744619999892, -8.281094844365256 ], [ 112.646644619999904, -8.434194844365251 ], [ 111.7949446199999, -8.259994844365252 ], [ 111.65104461999988, -8.362494844365258 ], [ 109.289644619999933, -7.699494844365248 ], [ 108.16304461999988, -7.783094844365252 ], [ 107.466044619999934, -7.503894844365249 ], [ 106.423244619999934, -7.371394844365255 ], [ 106.509444619999897, -6.979194844365253 ], [ 105.243244619999928, -6.810294844365245 ], [ 105.480244619999894, -6.819194844365256 ], [ 105.637144619999901, -6.467794844365258 ], [ 105.801044619999914, -6.467194844365252 ], [ 106.005844619999891, -5.908594844365254 ], [ 106.163244619999887, -6.01419484436525 ] ] ], [ [ [ 124.058244619999925, -6.027194844365255 ], [ 123.965744619999896, -5.948094844365258 ], [ 123.976644619999888, -5.875794844365245 ], [ 124.0680446199999, -5.97139484436525 ], [ 124.058244619999925, -6.027194844365255 ] ] ], [ [ [ 120.481944619999922, -6.483594844365257 ], [ 120.4402446199999, -5.931694844365254 ], [ 120.479944619999912, -5.766694844365247 ], [ 120.561344619999886, -6.02449484436525 ], [ 120.481944619999922, -6.483594844365257 ] ] ], [ [ [ 104.836044619999882, -5.828094844365253 ], [ 104.7963446199999, -5.800794844365257 ], [ 104.768844619999925, -5.747794844365245 ], [ 104.848344619999921, -5.774994844365253 ], [ 104.836044619999882, -5.828094844365253 ] ] ], [ [ [ 112.692744619999928, -5.852794844365249 ], [ 112.5877446199999, -5.843894844365252 ], [ 112.634944619999885, -5.739494844365254 ], [ 112.726944619999927, -5.746394844365255 ], [ 112.692744619999928, -5.852794844365249 ] ] ], [ [ [ 132.741344619999893, -5.950294844365246 ], [ 132.628844619999882, -5.63449484436525 ], [ 132.693244619999916, -5.59639484436525 ], [ 132.809144619999927, -5.813094844365253 ], [ 132.741344619999893, -5.950294844365246 ] ] ], [ [ [ 132.7955446199999, -5.686394844365253 ], [ 132.738544619999914, -5.63919484436525 ], [ 132.781044619999932, -5.532794844365256 ], [ 132.809644619999915, -5.558894844365255 ], [ 132.7955446199999, -5.686394844365253 ] ] ], [ [ [ 132.340444619999914, -5.577194844365252 ], [ 132.314944619999892, -5.558894844365255 ], [ 132.301844619999883, -5.51719484436525 ], [ 132.376544619999891, -5.538294844365254 ], [ 132.340444619999914, -5.577194844365252 ] ] ], [ [ [ 123.810744619999923, -5.599194844365257 ], [ 123.705244619999917, -5.502794844365255 ], [ 123.688244619999921, -5.472194844365248 ], [ 123.802744619999885, -5.533594844365254 ], [ 123.810744619999923, -5.599194844365257 ] ] ], [ [ [ 134.577144619999899, -5.429994844365254 ], [ 134.729144619999886, -5.979494844365249 ], [ 134.6502446199999, -5.932494844365252 ], [ 134.302144619999922, -6.025794844365251 ], [ 134.381044619999898, -5.800294844365254 ], [ 134.206344619999925, -5.708094844365249 ], [ 134.577144619999899, -5.429994844365254 ] ] ], [ [ [ 132.849344619999897, -6.003294844365257 ], [ 132.937944619999882, -5.678094844365248 ], [ 133.168844619999902, -5.295594844365255 ], [ 133.111844619999886, -5.59169484436525 ], [ 132.849344619999897, -6.003294844365257 ] ] ], [ [ [ 102.384944619999885, -5.485794844365245 ], [ 102.256944619999899, -5.454494844365257 ], [ 102.10054461999988, -5.332494844365257 ], [ 102.380744619999916, -5.372494844365249 ], [ 102.384944619999885, -5.485794844365245 ] ] ], [ [ [ 123.625744619999921, -5.376694844365247 ], [ 123.562144619999913, -5.364994844365256 ], [ 123.521044619999884, -5.251994844365257 ], [ 123.6271446199999, -5.282494844365246 ], [ 123.625744619999921, -5.376694844365247 ] ] ], [ [ [ 122.01694461999989, -5.474194844365257 ], [ 121.808544619999907, -5.272194844365245 ], [ 121.913244619999887, -5.058594844365246 ], [ 122.059944619999897, -5.231994844365246 ], [ 122.01694461999989, -5.474194844365257 ] ] ], [ [ [ 115.782444619999922, -4.831994844365255 ], [ 115.783344619999923, -4.795794844365247 ], [ 115.853044619999935, -4.747194844365254 ], [ 115.852444619999915, -4.785594844365249 ], [ 115.782444619999922, -4.831994844365255 ] ] ], [ [ [ 131.7421446199999, -4.768594844365253 ], [ 131.730544619999932, -4.755594844365248 ], [ 131.721544619999918, -4.691994844365254 ], [ 131.754444619999902, -4.723294844365256 ], [ 131.7421446199999, -4.768594844365253 ] ] ], [ [ [ 122.737744619999887, -4.651094844365247 ], [ 122.605544619999932, -5.420294844365259 ], [ 122.284944619999919, -5.384994844365252 ], [ 122.371044619999907, -4.759694844365256 ], [ 122.737744619999887, -4.651094844365247 ] ] ], [ [ [ 129.934344619999933, -4.566394844365249 ], [ 129.9002446199999, -4.567794844365253 ], [ 129.859144619999881, -4.556694844365254 ], [ 129.938544619999902, -4.507494844365254 ], [ 129.934344619999933, -4.566394844365249 ] ] ], [ [ [ 129.874644619999913, -4.530794844365246 ], [ 129.861044619999916, -4.521394844365247 ], [ 129.879644619999908, -4.505594844365248 ], [ 129.885744619999912, -4.521394844365247 ], [ 129.874644619999913, -4.530794844365246 ] ] ], [ [ [ 131.670244619999892, -4.536994844365253 ], [ 131.653044619999889, -4.529494844365246 ], [ 131.610444619999896, -4.428294844365254 ], [ 131.672144619999926, -4.487194844365249 ], [ 131.670244619999892, -4.536994844365253 ] ] ], [ [ [ 123.2127446199999, -4.697494844365252 ], [ 123.20584461999988, -4.84639484436525 ], [ 123.0455446199999, -4.757494844365254 ], [ 122.979644619999931, -5.107194844365253 ], [ 123.215544619999889, -5.297494844365247 ], [ 122.651344619999918, -5.686394844365253 ], [ 122.568544619999898, -5.506994844365252 ], [ 122.742744619999883, -5.246994844365247 ], [ 122.903544619999934, -4.484994844365247 ], [ 123.081944619999888, -4.385294844365248 ], [ 123.2127446199999, -4.697494844365252 ] ] ], [ [ [ 131.342744619999905, -4.117494844365254 ], [ 131.304344619999881, -4.124194844365249 ], [ 131.272744619999912, -4.073594844365246 ], [ 131.289944619999915, -4.068894844365246 ], [ 131.342744619999905, -4.117494844365254 ] ] ], [ [ [ 101.034344619999899, -4.025794844365251 ], [ 101.027444619999926, -4.005294844365253 ], [ 101.048544619999916, -3.994994844365252 ], [ 101.055544619999921, -4.008894844365258 ], [ 101.034344619999899, -4.025794844365251 ] ] ], [ [ [ 131.244644619999917, -4.045594844365255 ], [ 131.214344619999906, -4.016994844365257 ], [ 131.209644619999892, -3.983294844365247 ], [ 131.244644619999917, -4.001994844365257 ], [ 131.244644619999917, -4.045594844365255 ] ] ], [ [ [ 123.08854461999988, -4.008894844365258 ], [ 123.253844619999882, -4.062794844365257 ], [ 123.153844619999916, -4.241694844365256 ], [ 122.957744619999914, -4.100294844365251 ], [ 123.08854461999988, -4.008894844365258 ] ] ], [ [ [ 131.435744619999923, -4.076394844365254 ], [ 131.393844619999925, -4.037494844365256 ], [ 131.378844619999882, -3.960794844365253 ], [ 131.419444619999922, -3.960294844365251 ], [ 131.435744619999923, -4.076394844365254 ] ] ], [ [ [ 127.228244619999884, -3.90419484436525 ], [ 127.156344619999913, -3.876094844365255 ], [ 127.1488446199999, -3.830294844365255 ], [ 127.237144619999924, -3.831094844365253 ], [ 127.228244619999884, -3.90419484436525 ] ] ], [ [ [ 128.779144619999897, -3.703894844365252 ], [ 128.751044619999902, -3.704494844365257 ], [ 128.748244619999923, -3.643094844365251 ], [ 128.790744619999884, -3.638894844365254 ], [ 128.779144619999897, -3.703894844365252 ] ] ], [ [ [ 123.125544619999914, -3.626694844365247 ], [ 123.05774461999988, -3.578094844365253 ], [ 123.157744619999903, -3.546394844365253 ], [ 123.182444619999899, -3.602494844365253 ], [ 123.125544619999914, -3.626694844365247 ] ] ], [ [ [ 128.402744619999908, -3.640794844365246 ], [ 128.431044619999909, -3.522494844365255 ], [ 128.563244619999921, -3.57669484436525 ], [ 128.522744619999912, -3.616994844365252 ], [ 128.402744619999908, -3.640794844365246 ] ] ], [ [ [ 122.351944619999927, -3.560794844365248 ], [ 122.291044619999923, -3.582194844365247 ], [ 122.279944619999924, -3.572494844365252 ], [ 122.320544619999907, -3.514894844365259 ], [ 122.351944619999927, -3.560794844365248 ] ] ], [ [ [ 128.334944619999931, -3.625794844365245 ], [ 128.117744619999883, -3.776994844365248 ], [ 128.212944619999917, -3.646394844365247 ], [ 127.918244619999882, -3.740794844365254 ], [ 128.2732446199999, -3.512194844365254 ], [ 128.334944619999931, -3.625794844365245 ] ] ], [ [ [ 128.664644619999933, -3.538294844365254 ], [ 128.720744619999891, -3.619194844365254 ], [ 128.554944619999901, -3.509694844365256 ], [ 128.583744619999891, -3.494394844365246 ], [ 128.664644619999933, -3.538294844365254 ] ] ], [ [ [ 122.445244619999926, -3.490594844365248 ], [ 122.405544619999887, -3.442494844365257 ], [ 122.41304461999988, -3.38449484436525 ], [ 122.471844619999899, -3.456994844365255 ], [ 122.445244619999926, -3.490594844365248 ] ] ], [ [ [ 116.382744619999926, -3.645594844365249 ], [ 116.316944619999902, -3.537494844365256 ], [ 116.416944619999924, -3.377494844365245 ], [ 116.428044619999923, -3.451394844365254 ], [ 116.382744619999926, -3.645594844365249 ] ] ], [ [ [ 127.632744619999926, -3.365294844365252 ], [ 127.51834461999988, -3.331694844365245 ], [ 127.481044619999921, -3.293294844365249 ], [ 127.569644619999906, -3.263894844365254 ], [ 127.632744619999926, -3.365294844365252 ] ] ], [ [ [ 116.118244619999928, -4.036094844365252 ], [ 116.008544619999896, -3.649194844365255 ], [ 116.267744619999917, -3.223094844365249 ], [ 116.308044619999919, -3.901394844365257 ], [ 116.118244619999928, -4.036094844365252 ] ] ], [ [ [ 127.770244619999914, -3.254494844365254 ], [ 127.675744619999932, -3.254494844365254 ], [ 127.636044619999893, -3.225794844365254 ], [ 127.759444619999897, -3.153094844365256 ], [ 127.770244619999914, -3.254494844365254 ] ] ], [ [ [ 100.524444619999883, -3.186194844365247 ], [ 100.4907446199999, -3.162794844365251 ], [ 100.500544619999914, -3.127194844365249 ], [ 100.530544619999887, -3.174994844365258 ], [ 100.524444619999883, -3.186194844365247 ] ] ], [ [ [ 126.993844619999891, -3.144994844365257 ], [ 127.08714461999989, -3.367194844365258 ], [ 127.264644619999899, -3.382194844365259 ], [ 127.236644619999936, -3.617494844365254 ], [ 126.700744619999909, -3.834494844365253 ], [ 126.017444619999935, -3.354494844365249 ], [ 126.103044619999935, -3.100594844365247 ], [ 126.993844619999891, -3.144994844365257 ] ] ], [ [ [ 127.884644619999904, -3.038294844365254 ], [ 127.820544619999907, -3.021694844365257 ], [ 127.991644619999931, -2.929994844365254 ], [ 127.945744619999914, -3.016994844365257 ], [ 127.884644619999904, -3.038294844365254 ] ] ], [ [ [ 106.889144619999911, -3.02449484436525 ], [ 106.821344619999934, -3.023894844365245 ], [ 106.721844619999899, -2.960294844365251 ], [ 106.812444619999894, -2.893094844365251 ], [ 106.889144619999911, -3.02449484436525 ] ] ], [ [ [ 107.427144619999922, -2.938894844365251 ], [ 107.361344619999898, -2.871094844365246 ], [ 107.476344619999907, -2.821394844365258 ], [ 107.4921446199999, -2.887794844365246 ], [ 107.427144619999922, -2.938894844365251 ] ] ], [ [ [ 107.079644619999897, -2.911694844365257 ], [ 107.037144619999935, -2.864994844365256 ], [ 107.072744619999924, -2.819994844365254 ], [ 107.110544619999928, -2.860294844365256 ], [ 107.079644619999897, -2.911694844365257 ] ] ], [ [ [ 129.812444619999894, -2.919694844365253 ], [ 130.584144619999904, -3.133294844365253 ], [ 130.873244619999923, -3.583294844365255 ], [ 130.829944619999935, -3.872794844365245 ], [ 129.897444619999931, -3.335794844365253 ], [ 129.508844619999934, -3.298094844365252 ], [ 129.515744619999907, -3.470594844365252 ], [ 128.968244619999894, -3.353594844365247 ], [ 128.878244619999919, -3.207794844365253 ], [ 128.478244619999884, -3.463094844365258 ], [ 128.173844619999898, -3.068894844365246 ], [ 127.906044619999932, -3.537494844365256 ], [ 127.856044619999921, -3.186694844365249 ], [ 128.173844619999898, -2.855594844365257 ], [ 129.136044619999893, -2.964194844365252 ], [ 129.5266446199999, -2.783594844365254 ], [ 129.812444619999894, -2.919694844365253 ] ] ], [ [ [ 100.4627446199999, -3.133294844365253 ], [ 100.459444619999886, -3.333894844365247 ], [ 100.176344619999895, -2.799994844365258 ], [ 100.464644619999888, -3.014994844365248 ], [ 100.4627446199999, -3.133294844365253 ] ] ], [ [ [ 107.832744619999914, -2.534994844365258 ], [ 108.265744619999907, -2.755594844365248 ], [ 108.073244619999912, -3.235294844365256 ], [ 107.866944619999913, -3.051094844365252 ], [ 107.609344619999888, -3.211394844365245 ], [ 107.64964461999989, -2.585794844365253 ], [ 107.832744619999914, -2.534994844365258 ] ] ], [ [ [ 100.031044619999932, -2.841994844365246 ], [ 99.961044619999882, -2.551694844365258 ], [ 99.987144619999924, -2.489194844365258 ], [ 100.2141446199999, -2.718594844365256 ], [ 100.031044619999932, -2.841994844365246 ] ] ], [ [ [ 99.741044619999911, -2.376394844365251 ], [ 99.701344619999929, -2.353094844365245 ], [ 99.703544619999889, -2.342794844365258 ], [ 99.737144619999924, -2.350294844365251 ], [ 99.741044619999911, -2.376394844365251 ] ] ], [ [ [ 123.166944619999924, -2.193194844365252 ], [ 123.1516446199999, -2.194194844365256 ], [ 123.168044619999932, -2.176394844365248 ], [ 123.171644619999881, -2.185294844365245 ], [ 123.166944619999924, -2.193194844365252 ] ] ], [ [ [ 123.449744619999933, -2.125594844365253 ], [ 123.4402446199999, -2.123094844365255 ], [ 123.438044619999914, -2.11139484436525 ], [ 123.456044619999886, -2.115594844365248 ], [ 123.449744619999933, -2.125594844365253 ] ] ], [ [ [ 99.859644619999926, -2.37079484436525 ], [ 99.569944619999887, -2.222194844365248 ], [ 99.568544619999898, -2.02919484436525 ], [ 99.688244619999921, -2.072194844365256 ], [ 99.859644619999926, -2.37079484436525 ] ] ], [ [ [ 123.885544619999905, -2.075594844365256 ], [ 123.844444619999933, -2.053894844365246 ], [ 123.864944619999903, -2.008594844365248 ], [ 123.877444619999892, -2.016994844365257 ], [ 123.885544619999905, -2.075594844365256 ] ] ], [ [ [ 123.767744619999917, -2.047494844365247 ], [ 123.758344619999889, -2.020294844365253 ], [ 123.777444619999926, -1.998294844365248 ], [ 123.782744619999903, -2.023094844365247 ], [ 123.767744619999917, -2.047494844365247 ] ] ], [ [ [ 126.056644619999929, -2.482494844365249 ], [ 125.894644619999895, -2.213294844365251 ], [ 125.918044619999932, -1.972194844365248 ], [ 126.000244619999933, -2.016094844365256 ], [ 126.056644619999929, -2.482494844365249 ] ] ], [ [ [ 124.366644619999931, -2.011394844365256 ], [ 124.348844619999909, -2.024994844365253 ], [ 124.300744619999932, -1.976994844365251 ], [ 124.357144619999929, -1.966094844365259 ], [ 124.366644619999931, -2.011394844365256 ] ] ], [ [ [ 123.478044619999935, -1.946094844365248 ], [ 123.466944619999936, -1.943594844365251 ], [ 123.484644619999926, -1.935294844365245 ], [ 123.486044619999916, -1.940794844365257 ], [ 123.478044619999935, -1.946094844365248 ] ] ], [ [ [ 123.5449446199999, -1.927794844365252 ], [ 123.535544619999882, -1.924994844365258 ], [ 123.543044619999932, -1.913294844365254 ], [ 123.549644619999924, -1.918894844365255 ], [ 123.5449446199999, -1.927794844365252 ] ] ], [ [ [ 123.659344619999899, -1.963294844365251 ], [ 123.651344619999918, -1.953894844365252 ], [ 123.654144619999897, -1.901694844365252 ], [ 123.658044619999885, -1.918794844365252 ], [ 123.659344619999899, -1.963294844365251 ] ] ], [ [ [ 123.716944619999936, -1.955794844365258 ], [ 123.700544619999903, -1.936694844365249 ], [ 123.732144619999929, -1.899694844365257 ], [ 123.741044619999911, -1.938894844365251 ], [ 123.716944619999936, -1.955794844365258 ] ] ], [ [ [ 123.6910446199999, -1.914194844365255 ], [ 123.672444619999908, -1.899694844365257 ], [ 123.672444619999908, -1.884694844365256 ], [ 123.6902446199999, -1.901094844365247 ], [ 123.6910446199999, -1.914194844365255 ] ] ], [ [ [ 123.828844619999927, -2.010594844365258 ], [ 123.7835446199999, -1.979194844365253 ], [ 123.782744619999903, -1.878594844365253 ], [ 123.855444619999901, -1.954494844365257 ], [ 123.828844619999927, -2.010594844365258 ] ] ], [ [ [ 123.764944619999881, -1.877194844365249 ], [ 123.757444619999887, -1.873594844365257 ], [ 123.767144619999897, -1.862794844365254 ], [ 123.769644619999895, -1.866994844365252 ], [ 123.764944619999881, -1.877194844365249 ] ] ], [ [ [ 123.387844619999896, -1.883194844365249 ], [ 123.366944619999913, -1.875794844365245 ], [ 123.368244619999928, -1.856394844365255 ], [ 123.386044619999893, -1.873094844365255 ], [ 123.387844619999896, -1.883194844365249 ] ] ], [ [ [ 99.286044619999927, -1.826394844365254 ], [ 99.251944619999904, -1.820794844365253 ], [ 99.269144619999906, -1.789994844365253 ], [ 99.284144619999893, -1.794194844365251 ], [ 99.286044619999927, -1.826394844365254 ] ] ], [ [ [ 125.438244619999921, -1.806694844365254 ], [ 125.988544619999914, -1.788894844365245 ], [ 126.34914461999989, -1.823094844365258 ], [ 125.466644619999897, -1.939994844365245 ], [ 125.3391446199999, -1.868294844365252 ], [ 125.438244619999921, -1.806694844365254 ] ] ], [ [ [ 123.079144619999909, -1.906394844365252 ], [ 123.0660446199999, -1.823594844365246 ], [ 123.120744619999925, -1.754494844365254 ], [ 123.154144619999897, -1.832494844365257 ], [ 123.079144619999909, -1.906394844365252 ] ] ], [ [ [ 108.696944619999897, -1.723094844365249 ], [ 108.681944619999911, -1.699694844365254 ], [ 108.779644619999885, -1.704494844365257 ], [ 108.761344619999932, -1.721694844365246 ], [ 108.696944619999897, -1.723094844365249 ] ] ], [ [ [ 123.297744619999889, -1.791394844365257 ], [ 123.267444619999935, -1.766994844365257 ], [ 123.369644619999917, -1.673094844365252 ], [ 123.3805446199999, -1.716994844365246 ], [ 123.297744619999889, -1.791394844365257 ] ] ], [ [ [ 125.006644619999918, -1.718894844365252 ], [ 125.288244619999887, -1.730594844365257 ], [ 125.323244619999912, -1.887194844365254 ], [ 124.409144619999893, -2.017494844365245 ], [ 124.327444619999881, -1.879694844365247 ], [ 124.405744619999894, -1.658094844365252 ], [ 125.006644619999918, -1.718894844365252 ] ] ], [ [ [ 108.84914461999989, -1.670794844365247 ], [ 108.799644619999924, -1.568094844365248 ], [ 108.930544619999921, -1.544194844365251 ], [ 108.950544619999903, -1.628294844365257 ], [ 108.84914461999989, -1.670794844365247 ] ] ], [ [ [ 106.090744619999896, -1.771694844365257 ], [ 106.318344619999891, -2.435794844365248 ], [ 106.781644619999895, -2.591994844365246 ], [ 106.601944619999927, -2.913094844365247 ], [ 106.717744619999905, -3.098294844365256 ], [ 105.978244619999884, -2.822794844365248 ], [ 105.744644619999917, -2.129194844365259 ], [ 105.132144619999906, -2.067494844365257 ], [ 105.573544619999893, -1.52919484436525 ], [ 105.805744619999928, -1.797794844365256 ], [ 105.709144619999904, -1.547494844365247 ], [ 105.915544619999935, -1.497494844365249 ], [ 106.090744619999896, -1.771694844365257 ] ] ], [ [ [ 127.328244619999907, -1.439994844365245 ], [ 127.272744619999912, -1.413294844365254 ], [ 127.366644619999931, -1.36609484436525 ], [ 127.361844619999886, -1.411994844365253 ], [ 127.328244619999907, -1.439994844365245 ] ] ], [ [ [ 127.879444619999902, -1.426994844365254 ], [ 128.145244619999914, -1.680594844365245 ], [ 127.378244619999919, -1.633894844365258 ], [ 127.625744619999921, -1.331094844365253 ], [ 127.879444619999902, -1.426994844365254 ] ] ], [ [ [ 109.144944619999933, -1.316694844365259 ], [ 109.104644619999931, -1.289994844365253 ], [ 109.171844619999888, -1.25779484436525 ], [ 109.180744619999928, -1.276994844365248 ], [ 109.144944619999933, -1.316694844365259 ] ] ], [ [ [ 127.614644619999922, -1.25779484436525 ], [ 127.495544619999919, -1.268894844365249 ], [ 127.45584461999988, -1.234494844365258 ], [ 127.550544619999926, -1.171694844365248 ], [ 127.614644619999922, -1.25779484436525 ] ] ], [ [ [ 109.228544619999923, -1.233294844365247 ], [ 109.219644619999883, -1.192794844365253 ], [ 109.258044619999907, -1.169494844365246 ], [ 109.26694461999989, -1.203094844365253 ], [ 109.228544619999923, -1.233294844365247 ] ] ], [ [ [ 123.194944619999887, -1.297494844365247 ], [ 123.230544619999932, -1.398894844365245 ], [ 123.455244619999917, -1.236694844365246 ], [ 123.533344619999923, -1.429694844365258 ], [ 123.292744619999894, -1.420794844365247 ], [ 123.166044619999923, -1.624494844365245 ], [ 123.1291446199999, -1.331094844365253 ], [ 122.861044619999916, -1.581094844365253 ], [ 122.897444619999931, -1.186694844365249 ], [ 123.186644619999925, -1.147494844365255 ], [ 123.194944619999887, -1.297494844365247 ] ] ], [ [ [ 104.213844619999918, -1.039494844365251 ], [ 104.200744619999909, -1.037194844365246 ], [ 104.243244619999928, -1.023594844365249 ], [ 104.241344619999893, -1.032494844365246 ], [ 104.213844619999918, -1.039494844365251 ] ] ], [ [ [ 109.623744619999911, -0.984794844365254 ], [ 109.778844619999916, -1.138594844365258 ], [ 109.467144619999885, -1.296994844365258 ], [ 109.4493446199999, -1.040594844365245 ], [ 109.623744619999911, -0.984794844365254 ] ] ], [ [ [ 98.929144619999931, -0.950294844365246 ], [ 99.2766446199999, -1.614694844365246 ], [ 99.238844619999895, -1.78389484436525 ], [ 98.873044619999916, -1.674994844365258 ], [ 98.603044619999935, -1.223094844365249 ], [ 98.661944619999929, -0.965294844365246 ], [ 98.929144619999931, -0.950294844365246 ] ] ], [ [ [ 117.2955446199999, -0.878294844365257 ], [ 117.272144619999892, -0.876994844365257 ], [ 117.288544619999925, -0.831694844365245 ], [ 117.308544619999907, -0.858294844365247 ], [ 117.2955446199999, -0.878294844365257 ] ] ], [ [ [ 127.281044619999932, -0.80829484436525 ], [ 127.153544619999934, -0.769994844365257 ], [ 127.20444461999989, -0.619194844365254 ], [ 127.289444619999927, -0.688594844365255 ], [ 127.281044619999932, -0.80829484436525 ] ] ], [ [ [ 98.515244619999919, -0.632194844365259 ], [ 98.49524461999988, -0.626094844365255 ], [ 98.489144619999934, -0.599494844365253 ], [ 98.509644619999904, -0.600794844365254 ], [ 98.515244619999919, -0.632194844365259 ] ] ], [ [ [ 121.912744619999899, -0.474694844365246 ], [ 121.729144619999886, -0.482794844365259 ], [ 121.64334461999988, -0.548094844365252 ], [ 121.741344619999893, -0.418594844365245 ], [ 121.912744619999899, -0.474694844365246 ] ] ], [ [ [ 104.228244619999884, -0.417194844365255 ], [ 104.197444619999885, -0.410794844365256 ], [ 104.197444619999885, -0.395794844365255 ], [ 104.231644619999884, -0.391694844365247 ], [ 104.228244619999884, -0.417194844365255 ] ] ], [ [ [ 104.496044619999907, -0.626994844365257 ], [ 104.344644619999883, -0.583594844365251 ], [ 104.284344619999899, -0.397194844365245 ], [ 104.531044619999932, -0.373894844365253 ], [ 104.496044619999907, -0.626994844365257 ] ] ], [ [ [ 122.011344619999932, -0.414494844365251 ], [ 121.896944619999886, -0.412194844365246 ], [ 121.854444619999924, -0.365794844365254 ], [ 122.044444619999922, -0.332794844365253 ], [ 122.011344619999932, -0.414494844365251 ] ] ], [ [ [ 127.574944619999883, -0.32329484436525 ], [ 127.651944619999881, -0.708294844365255 ], [ 127.896344619999923, -0.776094844365247 ], [ 127.817744619999928, -0.87079484436525 ], [ 127.460544619999894, -0.816694844365259 ], [ 127.303544619999911, -0.519194844365245 ], [ 127.3180446199999, -0.344494844365258 ], [ 127.574944619999883, -0.32329484436525 ] ] ], [ [ [ 104.444144619999918, -0.326094844365258 ], [ 104.402444619999926, -0.285594844365249 ], [ 104.488044619999926, -0.278094844365256 ], [ 104.494944619999899, -0.310794844365248 ], [ 104.444144619999918, -0.326094844365258 ] ] ], [ [ [ 122.083344619999934, -0.410294844365254 ], [ 122.059344619999933, -0.341094844365259 ], [ 122.086944619999883, -0.265594844365253 ], [ 122.140244619999919, -0.382194844365259 ], [ 122.083344619999934, -0.410294844365254 ] ] ], [ [ [ 127.183044619999919, -0.528894844365254 ], [ 127.104944619999912, -0.297194844365251 ], [ 127.2338446199999, -0.256094844365251 ], [ 127.281044619999932, -0.384194844365254 ], [ 127.183044619999919, -0.528894844365254 ] ] ], [ [ [ 98.501644619999922, -0.539694844365258 ], [ 98.326044619999891, -0.539694844365258 ], [ 98.430244619999883, -0.246394844365255 ], [ 98.511944619999895, -0.370594844365257 ], [ 98.501644619999922, -0.539694844365258 ] ] ], [ [ [ 103.619144619999929, -0.389694844365252 ], [ 103.454644619999897, -0.362194844365249 ], [ 103.533344619999923, -0.234194844365248 ], [ 103.759644619999904, -0.312194844365251 ], [ 103.619144619999929, -0.389694844365252 ] ] ], [ [ [ 122.225744619999887, -0.278094844365256 ], [ 122.144944619999933, -0.247794844365245 ], [ 122.140244619999919, -0.229494844365249 ], [ 122.188844619999884, -0.197194844365256 ], [ 122.225744619999887, -0.278094844365256 ] ] ], [ [ [ 122.363544619999914, -0.284194844365246 ], [ 122.267744619999917, -0.251994844365257 ], [ 122.223844619999909, -0.200594844365256 ], [ 122.328044619999901, -0.230794844365249 ], [ 122.363544619999914, -0.284194844365246 ] ] ], [ [ [ 103.5532446199999, -0.196394844365258 ], [ 103.505244619999928, -0.197794844365248 ], [ 103.501344619999884, -0.194994844365254 ], [ 103.534644619999881, -0.184194844365251 ], [ 103.5532446199999, -0.196394844365258 ] ] ], [ [ [ 121.613844619999895, -0.206694844365245 ], [ 121.562444619999894, -0.156694844365248 ], [ 121.631944619999899, -0.123094844365255 ], [ 121.647444619999931, -0.164994844365253 ], [ 121.613844619999895, -0.206694844365245 ] ] ], [ [ [ 97.876644619999922, -0.105294844365247 ], [ 97.868344619999903, -0.108994844365256 ], [ 97.823844619999932, -0.067794844365253 ], [ 97.866944619999913, -0.064194844365247 ], [ 97.876644619999922, -0.105294844365247 ] ] ], [ [ [ 104.876644619999922, -0.065594844365251 ], [ 104.831844619999913, -0.060794844365248 ], [ 104.842144619999885, -0.02449484436525 ], [ 104.851844619999895, -0.025794844365251 ], [ 104.876644619999922, -0.065594844365251 ] ] ], [ [ [ 98.547444619999908, -0.370594844365257 ], [ 98.544144619999884, -0.386394844365256 ], [ 98.291944619999924, -0.012194844365254 ], [ 98.444144619999918, -0.061394844365253 ], [ 98.547444619999908, -0.370594844365257 ] ] ], [ [ [ 104.740244619999885, -0.136994844365248 ], [ 104.929444619999913, -0.334194844365257 ], [ 104.432444619999899, -0.201994844365245 ], [ 104.535244619999901, 0.017205155634741 ], [ 104.740244619999885, -0.136994844365248 ] ] ], [ [ [ 129.5546446199999, -0.213594844365247 ], [ 129.536344619999909, -0.222494844365258 ], [ 129.288244619999887, 0.041405155634749 ], [ 129.540544619999935, -0.138894844365254 ], [ 129.5546446199999, -0.213594844365247 ] ] ], [ [ [ 127.457144619999895, -0.012194844365254 ], [ 127.392744619999917, 0.006905155634755 ], [ 127.410544619999882, 0.144205155634751 ], [ 127.447744619999924, 0.139405155634748 ], [ 127.457144619999895, -0.012194844365254 ] ] ], [ [ [ 104.481944619999922, 0.023605155634755 ], [ 104.407144619999883, 0.090005155634742 ], [ 104.409144619999893, 0.171705155634754 ], [ 104.491344619999893, 0.076905155634748 ], [ 104.481944619999922, 0.023605155634755 ] ] ], [ [ [ 98.834744619999924, 0.10780515563475 ], [ 98.640844619999882, 0.076905155634748 ], [ 98.513344619999884, 0.133005155634748 ], [ 98.762744619999921, 0.171705155634754 ], [ 98.834744619999924, 0.10780515563475 ] ] ], [ [ [ 104.701944619999892, 0.023605155634755 ], [ 104.591344619999916, 0.098905155634753 ], [ 104.491344619999893, 0.237205155634754 ], [ 104.5449446199999, 0.221705155634751 ], [ 104.701944619999892, 0.023605155634755 ] ] ], [ [ [ 102.859644619999926, 0.274405155634753 ], [ 102.833844619999923, 0.281105155634748 ], [ 102.926844619999883, 0.322205155634748 ], [ 102.917444619999912, 0.298905155634742 ], [ 102.859644619999926, 0.274405155634753 ] ] ], [ [ [ 104.411844619999897, 0.292205155634747 ], [ 104.350244619999899, 0.336105155634755 ], [ 104.342744619999905, 0.370805155634741 ], [ 104.426344619999895, 0.323605155634752 ], [ 104.411844619999897, 0.292205155634747 ] ] ], [ [ [ 127.385244619999924, 0.270805155634747 ], [ 127.327744619999919, 0.336705155634746 ], [ 127.388544619999891, 0.378605155634745 ], [ 127.42074461999988, 0.32440515563475 ], [ 127.385244619999924, 0.270805155634747 ] ] ], [ [ [ 103.073544619999893, 0.571705155634746 ], [ 103.064144619999922, 0.571705155634746 ], [ 103.037944619999905, 0.654705155634744 ], [ 103.0660446199999, 0.646405155634753 ], [ 103.073544619999893, 0.571705155634746 ] ] ], [ [ [ 104.281644619999895, 0.623005155634743 ], [ 104.264644619999899, 0.62920515563475 ], [ 104.237144619999924, 0.689405155634745 ], [ 104.281644619999895, 0.665505155634747 ], [ 104.281644619999895, 0.623005155634743 ] ] ], [ [ [ 103.483544619999918, 0.616905155634754 ], [ 103.465544619999889, 0.630505155634751 ], [ 103.513544619999891, 0.699205155634743 ], [ 103.521044619999884, 0.679405155634754 ], [ 103.483544619999918, 0.616905155634754 ] ] ], [ [ [ 103.185244619999935, 0.508005155634748 ], [ 103.133244619999914, 0.567505155634748 ], [ 103.222944619999907, 0.703305155634752 ], [ 103.296844619999888, 0.553905155634752 ], [ 103.185244619999935, 0.508005155634748 ] ] ], [ [ [ 127.403844619999916, 0.619705155634747 ], [ 127.359144619999881, 0.647805155634742 ], [ 127.383844619999934, 0.751905155634745 ], [ 127.446344619999934, 0.712805155634754 ], [ 127.403844619999916, 0.619705155634747 ] ] ], [ [ [ 104.294144619999884, 0.706705155634751 ], [ 104.202144619999899, 0.724405155634742 ], [ 104.189944619999892, 0.775305155634754 ], [ 104.273544619999882, 0.791705155634745 ], [ 104.294144619999884, 0.706705155634751 ] ] ], [ [ [ 104.598244619999889, 0.758005155634748 ], [ 104.515544619999901, 0.749205155634755 ], [ 104.508544619999896, 0.756105155634742 ], [ 104.551644619999934, 0.795005155634755 ], [ 104.598244619999889, 0.758005155634748 ] ] ], [ [ [ 103.094144619999895, 0.723905155634753 ], [ 103.077144619999899, 0.750505155634755 ], [ 103.105244619999894, 0.797805155634748 ], [ 103.116844619999881, 0.762805155634751 ], [ 103.094144619999895, 0.723905155634753 ] ] ], [ [ [ 103.7210446199999, 0.75890515563475 ], [ 103.693844619999936, 0.769705155634753 ], [ 103.662144619999935, 0.832205155634753 ], [ 103.715744619999896, 0.792505155634743 ], [ 103.7210446199999, 0.75890515563475 ] ] ], [ [ [ 127.322144619999904, 0.750005155634753 ], [ 127.278244619999896, 0.821105155634754 ], [ 127.324144619999913, 0.86420515563475 ], [ 127.374944619999894, 0.812205155634743 ], [ 127.322144619999904, 0.750005155634753 ] ] ], [ [ [ 103.525744619999898, 0.80000515563475 ], [ 103.434644619999915, 0.843005155634742 ], [ 103.419144619999884, 0.871105155634751 ], [ 103.489644619999922, 0.84580515563475 ], [ 103.525744619999898, 0.80000515563475 ] ] ], [ [ [ 103.936344619999886, 0.766405155634743 ], [ 103.840544619999889, 0.845005155634752 ], [ 103.819944619999887, 0.886105155634752 ], [ 103.889144619999911, 0.859405155634747 ], [ 103.936344619999886, 0.766405155634743 ] ] ], [ [ [ 103.832144619999895, 0.756105155634742 ], [ 103.757444619999887, 0.808905155634747 ], [ 103.734144619999881, 0.88690515563475 ], [ 103.819944619999887, 0.825805155634754 ], [ 103.832144619999895, 0.756105155634742 ] ] ], [ [ [ 103.436844619999931, 0.647205155634751 ], [ 103.339444619999881, 0.789705155634749 ], [ 103.37994461999989, 0.891705155634753 ], [ 103.507444619999887, 0.746405155634747 ], [ 103.436844619999931, 0.647205155634751 ] ] ], [ [ [ 103.478544619999923, 0.868305155634744 ], [ 103.452444619999881, 0.868305155634744 ], [ 103.405244619999905, 0.908905155634741 ], [ 103.4613446199999, 0.915805155634743 ], [ 103.478544619999923, 0.868305155634744 ] ] ], [ [ [ 104.242744619999883, 0.81970515563475 ], [ 104.175544619999926, 0.790805155634743 ], [ 104.094644619999883, 0.947205155634748 ], [ 104.259144619999915, 0.867805155634741 ], [ 104.242744619999883, 0.81970515563475 ] ] ], [ [ [ 103.934944619999897, 0.926105155634744 ], [ 103.840544619999889, 0.975305155634743 ], [ 103.836844619999908, 1.010305155634754 ], [ 103.938544619999902, 0.999205155634755 ], [ 103.934944619999897, 0.926105155634744 ] ] ], [ [ [ 104.843044619999887, 0.957505155634749 ], [ 104.825744619999909, 0.956705155634751 ], [ 104.793544619999921, 1.024705155634749 ], [ 104.839444619999881, 1.018605155634745 ], [ 104.843044619999887, 0.957505155634749 ] ] ], [ [ [ 107.556644619999929, 0.965805155634754 ], [ 107.528544619999934, 1.006105155634742 ], [ 107.550544619999926, 1.037805155634743 ], [ 107.596344619999911, 1.008005155634748 ], [ 107.556644619999929, 0.965805155634754 ] ] ], [ [ [ 120.677144619999922, 1.035505155634752 ], [ 120.667744619999894, 1.034205155634751 ], [ 120.616344619999893, 1.071905155634752 ], [ 120.638844619999929, 1.07610515563475 ], [ 120.677144619999922, 1.035505155634752 ] ] ], [ [ [ 120.388044619999903, 1.020005155634749 ], [ 120.366044619999911, 1.032205155634742 ], [ 120.386044619999893, 1.080805155634749 ], [ 120.404444619999936, 1.065005155634751 ], [ 120.388044619999903, 1.020005155634749 ] ] ], [ [ [ 103.4396446199999, 0.98750515563475 ], [ 103.319644619999906, 1.040305155634755 ], [ 103.341644619999897, 1.119705155634747 ], [ 103.388844619999929, 1.124705155634743 ], [ 103.4396446199999, 0.98750515563475 ] ] ], [ [ [ 102.624244619999899, 0.994105155634742 ], [ 102.924944619999906, 0.914405155634753 ], [ 103.041344619999904, 0.714205155634744 ], [ 102.406044619999932, 0.878005155634753 ], [ 102.498544619999905, 0.943005155634751 ], [ 102.486344619999898, 1.13220515563475 ], [ 102.624244619999899, 0.994105155634742 ] ] ], [ [ [ 103.037144619999935, 1.037805155634743 ], [ 103.146944619999886, 0.837505155634744 ], [ 102.657744619999903, 1.054205155634747 ], [ 102.783044619999885, 1.161705155634749 ], [ 103.037144619999935, 1.037805155634743 ] ] ], [ [ [ 104.0335446199999, 0.982205155634745 ], [ 103.901344619999918, 1.093905155634744 ], [ 104.119344619999936, 1.183605155634751 ], [ 104.139944619999881, 1.05000515563475 ], [ 104.0335446199999, 0.982205155634745 ] ] ], [ [ [ 104.666844619999893, 1.023805155634747 ], [ 104.583244619999903, 0.819205155634748 ], [ 104.230244619999894, 1.084205155634749 ], [ 104.413244619999887, 1.196705155634746 ], [ 104.666844619999893, 1.023805155634747 ] ] ], [ [ [ 102.395244619999914, 0.923905155634742 ], [ 102.238244619999932, 1.078905155634743 ], [ 102.213044619999891, 1.405005155634754 ], [ 102.476044619999925, 1.226705155634747 ], [ 102.395244619999914, 0.923905155634742 ] ] ], [ [ [ 103.844944619999922, 1.259205155634746 ], [ 103.648044619999894, 1.302505155634748 ], [ 103.684444619999908, 1.411105155634743 ], [ 103.996944619999908, 1.376705155634752 ], [ 103.844944619999922, 1.259205155634746 ] ] ], [ [ [ 97.526344619999918, 1.417205155634747 ], [ 97.936344619999886, 0.978005155634747 ], [ 97.810744619999923, 0.549705155634754 ], [ 97.114644619999922, 1.393305155634749 ], [ 97.526344619999918, 1.417205155634747 ] ] ], [ [ [ 125.214944619999926, 1.389205155634755 ], [ 125.166344619999904, 1.395305155634745 ], [ 125.299444619999917, 1.526105155634752 ], [ 125.267144619999897, 1.405005155634754 ], [ 125.214944619999926, 1.389205155634755 ] ] ], [ [ [ 102.496044619999907, 1.44470515563475 ], [ 102.491844619999881, 1.259705155634748 ], [ 101.994344619999936, 1.611105155634746 ], [ 102.434944619999897, 1.527505155634742 ], [ 102.496044619999907, 1.44470515563475 ] ] ], [ [ [ 125.141644619999909, 1.421405155634744 ], [ 124.902444619999926, 0.975305155634743 ], [ 124.246044619999907, 0.375005155634753 ], [ 123.645844619999934, 0.281105155634748 ], [ 123.262744619999921, 0.313305155634751 ], [ 123.068844619999936, 0.511405155634748 ], [ 121.7955446199999, 0.422205155634742 ], [ 121.533844619999911, 0.53800515563475 ], [ 121.101344619999907, 0.407205155634742 ], [ 120.549144619999936, 0.536105155634743 ], [ 120.2421446199999, 0.345005155634752 ], [ 120.019944619999933, -0.075294844365246 ], [ 120.0660446199999, -0.61309484436525 ], [ 120.513544619999891, -1.000294844365257 ], [ 120.666344619999904, -1.395594844365249 ], [ 121.083044619999896, -1.423594844365255 ], [ 121.622144619999915, -0.804994844365254 ], [ 121.927744619999885, -0.963294844365251 ], [ 122.223844619999909, -0.761094844365246 ], [ 122.915244619999896, -0.765794844365246 ], [ 122.728244619999884, -0.655594844365254 ], [ 123.070844619999889, -0.559694844365254 ], [ 123.411344619999909, -0.653594844365259 ], [ 123.447744619999924, -0.835294844365251 ], [ 123.331344619999925, -1.057194844365256 ], [ 123.153044619999889, -0.896694844365257 ], [ 122.819944619999887, -0.913294844365254 ], [ 122.375244619999933, -1.491394844365246 ], [ 121.836644619999902, -1.691394844365249 ], [ 121.666644619999886, -1.924494844365256 ], [ 121.298044619999928, -1.803094844365248 ], [ 122.477444619999915, -3.158094844365252 ], [ 122.194944619999887, -3.571094844365248 ], [ 122.599444619999929, -3.883594844365248 ], [ 122.687144619999913, -4.142794844365255 ], [ 122.857744619999892, -4.076394844365254 ], [ 122.895544619999896, -4.396394844365247 ], [ 122.104644619999931, -4.526094844365247 ], [ 122.088844619999918, -4.840794844365249 ], [ 121.553044619999923, -4.746694844365251 ], [ 121.614644619999922, -4.064694844365249 ], [ 120.881344619999936, -3.536994844365253 ], [ 121.071344619999934, -3.20169484436525 ], [ 121.076044619999891, -2.758894844365258 ], [ 120.771944619999886, -2.612494844365258 ], [ 120.200244619999921, -2.964994844365251 ], [ 120.4085446199999, -3.258594844365248 ], [ 120.422144619999926, -4.678294844365254 ], [ 120.266044619999889, -5.152794844365246 ], [ 120.4627446199999, -5.624194844365249 ], [ 120.325744619999909, -5.511694844365252 ], [ 119.768544619999886, -5.708894844365247 ], [ 119.464944619999926, -5.563594844365255 ], [ 119.351944619999927, -5.336394844365245 ], [ 119.626044619999902, -4.191394844365249 ], [ 119.506044619999898, -3.527194844365255 ], [ 119.29574461999988, -3.426994844365254 ], [ 118.922144619999926, -3.569694844365259 ], [ 118.888544619999891, -2.889694844365252 ], [ 118.759144619999915, -2.774194844365255 ], [ 119.141644619999909, -2.459694844365245 ], [ 119.2113446199999, -2.011994844365248 ], [ 119.353244619999884, -1.938894844365251 ], [ 119.308844619999888, -1.265294844365258 ], [ 119.517144619999897, -0.876394844365251 ], [ 119.718544619999932, -0.653594844365259 ], [ 119.863044619999926, -0.843894844365252 ], [ 119.801344619999895, -0.120594844365257 ], [ 119.622744619999935, -0.005294844365253 ], [ 119.833044619999896, -0.089694844365255 ], [ 119.778044619999889, 0.229705155634747 ], [ 120.032444619999922, 0.712805155634754 ], [ 120.287144619999935, 0.989705155634752 ], [ 120.573044619999905, 0.775305155634754 ], [ 120.950544619999903, 1.342505155634754 ], [ 121.572744619999924, 1.058305155634741 ], [ 122.464444619999881, 0.999205155634755 ], [ 122.846244619999936, 0.814705155634755 ], [ 123.203044619999901, 0.956705155634751 ], [ 123.8391446199999, 0.829405155634745 ], [ 124.588044619999891, 1.189705155634755 ], [ 124.555744619999928, 1.370005155634743 ], [ 124.9710446199999, 1.69470515563475 ], [ 125.1705446199999, 1.639205155634755 ], [ 125.141644619999909, 1.421405155634744 ] ] ], [ [ [ 98.56544461999988, 1.620505155634746 ], [ 98.4479446199999, 1.640505155634742 ], [ 98.427444619999903, 1.678905155634752 ], [ 98.555044619999933, 1.681705155634745 ], [ 98.56544461999988, 1.620505155634746 ] ] ], [ [ [ 97.1171446199999, 2.011105155634752 ], [ 97.063844619999884, 2.079405155634745 ], [ 97.092744619999905, 2.11250515563475 ], [ 97.1482446199999, 2.065805155634749 ], [ 97.1171446199999, 2.011105155634752 ] ] ], [ [ [ 101.601644619999888, 1.709205155634749 ], [ 101.398044619999894, 1.98920515563475 ], [ 101.645444619999921, 2.120005155634743 ], [ 101.775744619999898, 1.946105155634754 ], [ 101.601644619999888, 1.709205155634749 ] ] ], [ [ [ 96.641044619999889, 2.065805155634749 ], [ 96.612144619999924, 2.080805155634749 ], [ 96.610744619999934, 2.121905155634749 ], [ 96.669144619999884, 2.108905155634744 ], [ 96.641044619999889, 2.065805155634749 ] ] ], [ [ [ 96.640544619999901, 2.152805155634752 ], [ 96.614344619999883, 2.161105155634743 ], [ 96.597944619999907, 2.191105155634745 ], [ 96.648544619999882, 2.178905155634752 ], [ 96.640544619999901, 2.152805155634752 ] ] ], [ [ [ 127.894944619999933, 1.796705155634754 ], [ 127.989644619999922, 1.346705155634751 ], [ 127.626344619999884, 0.965005155634742 ], [ 127.793544619999921, 0.795005155634755 ], [ 128.167144619999931, 1.131405155634752 ], [ 128.211044619999882, 1.396705155634749 ], [ 128.726344619999907, 1.556905155634752 ], [ 128.697444619999885, 1.101905155634753 ], [ 128.210244619999912, 0.784705155634754 ], [ 128.673544619999916, 0.558005155634746 ], [ 128.683044619999919, 0.345505155634754 ], [ 128.825744619999909, 0.30300515563475 ], [ 128.905244619999905, 0.200305155634751 ], [ 128.073844619999932, 0.46610515563475 ], [ 127.876644619999922, 0.310505155634743 ], [ 128.036944619999929, -0.403294844365249 ], [ 128.395244619999914, -0.894694844365247 ], [ 128.037744619999899, -0.711094844365249 ], [ 127.666044619999923, -0.225794844365254 ], [ 127.522144619999892, 0.598305155634748 ], [ 127.619644619999917, 0.847805155634745 ], [ 127.394944619999933, 1.05470515563475 ], [ 127.568844619999936, 1.741905155634754 ], [ 128.0546446199999, 2.195305155634742 ], [ 127.894944619999933, 1.796705155634754 ] ] ], [ [ [ 97.327744619999919, 2.032205155634742 ], [ 97.207144619999895, 2.171905155634747 ], [ 97.103544619999923, 2.220005155634752 ], [ 97.28804461999988, 2.224205155634749 ], [ 97.327744619999919, 2.032205155634742 ] ] ], [ [ [ 127.7949446199999, 2.205505155634754 ], [ 127.748244619999923, 2.226105155634755 ], [ 127.756644619999918, 2.270505155634751 ], [ 127.813544619999902, 2.261705155634743 ], [ 127.7949446199999, 2.205505155634754 ] ] ], [ [ [ 118.571344619999934, 2.316405155634754 ], [ 118.636644619999913, 2.264405155634748 ], [ 118.64964461999989, 2.17670515563475 ], [ 118.560544619999916, 2.264405155634748 ], [ 118.571344619999934, 2.316405155634754 ] ] ], [ [ [ 104.12024461999988, 2.318905155634752 ], [ 104.149944619999928, 2.30300515563475 ], [ 104.154944619999924, 2.287805155634743 ], [ 104.101044619999925, 2.294205155634742 ], [ 104.12024461999988, 2.318905155634752 ] ] ], [ [ [ 125.430744619999928, 2.313005155634755 ], [ 125.392444619999935, 2.32140515563475 ], [ 125.367744619999883, 2.369205155634745 ], [ 125.450744619999909, 2.379405155634743 ], [ 125.430744619999928, 2.313005155634755 ] ] ], [ [ [ 128.161044619999927, 2.282205155634742 ], [ 128.119044619999897, 2.338305155634743 ], [ 128.16304461999988, 2.404205155634742 ], [ 128.189144619999922, 2.361105155634746 ], [ 128.161044619999927, 2.282205155634742 ] ] ], [ [ [ 109.06744461999989, 2.485005155634752 ], [ 109.020244619999914, 2.48280515563475 ], [ 108.973144619999914, 2.540205155634752 ], [ 109.1074446199999, 2.530005155634754 ], [ 109.06744461999989, 2.485005155634752 ] ] ], [ [ [ 128.497944619999885, 2.05000515563475 ], [ 128.2766446199999, 2.017305155634745 ], [ 128.232144619999929, 2.306105155634754 ], [ 128.5646446199999, 2.632805155634742 ], [ 128.691944619999902, 2.415005155634745 ], [ 128.497944619999885, 2.05000515563475 ] ] ], [ [ [ 111.3708446199999, 2.360305155634748 ], [ 111.303544619999911, 2.448005155634746 ], [ 111.327444619999881, 2.781405155634744 ], [ 111.383844619999934, 2.680005155634746 ], [ 111.3708446199999, 2.360305155634748 ] ] ], [ [ [ 125.406344619999913, 2.626705155634752 ], [ 125.354644619999931, 2.724405155634742 ], [ 125.414444619999927, 2.807205155634747 ], [ 125.450744619999909, 2.767505155634751 ], [ 125.406344619999913, 2.626705155634752 ] ] ], [ [ [ 106.244944619999899, 2.736705155634752 ], [ 106.235644619999903, 2.735205155634745 ], [ 106.197744619999924, 2.812205155634743 ], [ 106.243044619999921, 2.786705155634749 ], [ 106.244944619999899, 2.736705155634752 ] ] ], [ [ [ 104.171044619999918, 2.705305155634747 ], [ 104.123244619999923, 2.781705155634754 ], [ 104.171844619999888, 2.895005155634749 ], [ 104.221644619999893, 2.729705155634747 ], [ 104.171044619999918, 2.705305155634747 ] ] ], [ [ [ 96.432144619999917, 2.343005155634742 ], [ 95.818844619999936, 2.654705155634744 ], [ 95.696844619999922, 2.818905155634752 ], [ 95.883244619999914, 2.918905155634747 ], [ 96.431344619999891, 2.503305155634749 ], [ 96.432144619999917, 2.343005155634742 ] ] ], [ [ [ 108.832444619999933, 2.845005155634752 ], [ 108.773544619999882, 2.891405155634743 ], [ 108.883344619999889, 3.001705155634752 ], [ 108.888044619999903, 2.892805155634747 ], [ 108.832444619999933, 2.845005155634752 ] ] ], [ [ [ 107.759444619999897, 2.974205155634749 ], [ 107.765544619999901, 3.021705155634749 ], [ 107.812144619999913, 3.001105155634747 ], [ 107.809344619999933, 2.983005155634743 ], [ 107.759444619999897, 2.974205155634749 ] ] ], [ [ [ 105.724944619999917, 2.833905155634753 ], [ 105.683844619999888, 3.006405155634752 ], [ 105.698244619999912, 3.060505155634743 ], [ 105.848844619999909, 2.979205155634745 ], [ 105.724944619999917, 2.833905155634753 ] ] ], [ [ [ 106.289444619999927, 3.159705155634754 ], [ 106.2127446199999, 3.121405155634747 ], [ 106.203244619999907, 3.226705155634747 ], [ 106.248544619999905, 3.220005155634752 ], [ 106.289444619999927, 3.159705155634754 ] ] ], [ [ [ 117.523044619999894, 3.285505155634752 ], [ 117.427744619999885, 3.27390515563475 ], [ 117.411344619999909, 3.302805155634744 ], [ 117.461944619999883, 3.343905155634744 ], [ 117.523044619999894, 3.285505155634752 ] ] ], [ [ [ 106.280544619999887, 3.230805155634755 ], [ 106.234644619999926, 3.256105155634742 ], [ 106.287444619999917, 3.373305155634753 ], [ 106.291644619999886, 3.269205155634751 ], [ 106.280544619999887, 3.230805155634755 ] ] ], [ [ [ 117.664144619999888, 3.284205155634751 ], [ 117.555744619999928, 3.31970515563475 ], [ 117.539444619999927, 3.42670515563475 ], [ 117.672444619999908, 3.419705155634745 ], [ 117.664144619999888, 3.284205155634751 ] ] ], [ [ [ 117.6074446199999, 3.477205155634749 ], [ 117.468844619999913, 3.522205155634751 ], [ 117.433244619999925, 3.559205155634743 ], [ 117.587444619999928, 3.524405155634753 ], [ 117.6074446199999, 3.477205155634749 ] ] ], [ [ [ 117.885544619999905, 3.456705155634751 ], [ 117.775744619999898, 3.531905155634746 ], [ 117.789644619999933, 3.577805155634749 ], [ 117.8657446199999, 3.548905155634742 ], [ 117.885544619999905, 3.456705155634751 ] ] ], [ [ [ 117.390744619999907, 3.561905155634747 ], [ 117.517444619999935, 3.474405155634742 ], [ 117.216644619999897, 3.545505155634743 ], [ 117.270844619999934, 3.59280515563475 ], [ 117.390744619999907, 3.561905155634747 ] ] ], [ [ [ 125.883844619999934, 3.362205155634754 ], [ 125.791644619999886, 3.412205155634751 ], [ 125.663544619999925, 3.718305155634752 ], [ 125.911344619999909, 3.491705155634747 ], [ 125.883844619999934, 3.362205155634754 ] ] ], [ [ [ 117.825244619999921, 3.74050515563475 ], [ 117.7949446199999, 3.743305155634744 ], [ 117.788244619999887, 3.750005155634753 ], [ 117.815544619999912, 3.755505155634751 ], [ 117.825244619999921, 3.74050515563475 ] ] ], [ [ [ 126.844144619999895, 3.738005155634752 ], [ 126.792144619999931, 3.733305155634753 ], [ 126.744644619999917, 3.847805155634745 ], [ 126.803844619999893, 3.830005155634751 ], [ 126.844144619999895, 3.738005155634752 ] ] ], [ [ [ 117.847744619999901, 3.797205155634742 ], [ 117.7949446199999, 3.80470515563475 ], [ 117.730744619999882, 3.863605155634744 ], [ 117.801944619999915, 3.855305155634753 ], [ 117.847744619999901, 3.797205155634742 ] ] ], [ [ [ 126.7113446199999, 3.798005155634755 ], [ 126.611344619999898, 3.975005155634747 ], [ 126.6080446199999, 4.041105155634753 ], [ 126.723544619999927, 3.911705155634749 ], [ 126.7113446199999, 3.798005155634755 ] ] ], [ [ [ 117.6896446199999, 3.974205155634749 ], [ 117.603244619999884, 4.03030515563475 ], [ 117.646344619999923, 4.140305155634749 ], [ 117.749944619999894, 4.068605155634742 ], [ 117.6896446199999, 3.974205155634749 ] ] ], [ [ [ 108.181644619999929, 3.647505155634747 ], [ 107.991644619999931, 4.024205155634746 ], [ 108.181644619999929, 4.19640515563475 ], [ 108.406944619999933, 3.875805155634751 ], [ 108.181644619999929, 3.647505155634747 ] ] ], [ [ [ 117.886944619999895, 4.026905155634751 ], [ 117.832144619999895, 4.044705155634745 ], [ 117.638844619999929, 4.228605155634753 ], [ 117.903844619999916, 4.173805155634753 ], [ 117.886944619999895, 4.026905155634751 ] ] ], [ [ [ 118.681944619999911, 4.499705155634743 ], [ 118.752444619999892, 4.480505155634745 ], [ 118.762744619999921, 4.463605155634752 ], [ 118.689444619999904, 4.441105155634745 ], [ 118.681944619999911, 4.499705155634743 ] ] ], [ [ [ 126.759644619999904, 3.98580515563475 ], [ 126.690544619999912, 4.070005155634746 ], [ 126.740544619999923, 4.541905155634751 ], [ 126.916044619999923, 4.273605155634755 ], [ 126.759644619999904, 3.98580515563475 ] ] ], [ [ [ 118.510544619999905, 4.529205155634742 ], [ 118.495544619999919, 4.531905155634746 ], [ 118.495544619999919, 4.551105155634744 ], [ 118.513844619999929, 4.55170515563475 ], [ 118.510544619999905, 4.529205155634742 ] ] ], [ [ [ 118.570244619999926, 4.600805155634745 ], [ 118.529744619999917, 4.600305155634743 ], [ 118.343844619999913, 4.670505155634743 ], [ 118.478844619999904, 4.689205155634752 ], [ 118.570244619999926, 4.600805155634745 ] ] ], [ [ [ 125.491344619999893, 4.73280515563475 ], [ 125.479544619999899, 4.733305155634753 ], [ 125.493044619999921, 4.745105155634747 ], [ 125.496044619999907, 4.742805155634741 ], [ 125.491344619999893, 4.73280515563475 ] ] ], [ [ [ 107.964444619999881, 4.674705155634754 ], [ 107.938244619999921, 4.701905155634748 ], [ 108.004644619999908, 4.772205155634751 ], [ 107.998544619999905, 4.701905155634748 ], [ 107.964444619999881, 4.674705155634754 ] ] ], [ [ [ 119.472144619999881, 4.648005155634749 ], [ 119.46354461999988, 4.641405155634743 ], [ 119.45584461999988, 4.908905155634741 ], [ 119.510544619999905, 4.763905155634745 ], [ 119.472144619999881, 4.648005155634749 ] ] ], [ [ [ 119.947644619999892, 5.077905155634753 ], [ 119.940544619999912, 5.072505155634744 ], [ 119.934144619999927, 5.075805155634754 ], [ 119.942144619999908, 5.083605155634743 ], [ 119.947644619999892, 5.077905155634753 ] ] ], [ [ [ 120.244144619999929, 5.300805155634748 ], [ 120.226244619999932, 5.307405155634754 ], [ 120.231044619999921, 5.325005155634742 ], [ 120.244644619999917, 5.30470515563475 ], [ 120.244144619999929, 5.300805155634748 ] ] ], [ [ [ 120.2535446199999, 5.233305155634753 ], [ 120.22414461999989, 5.124705155634743 ], [ 120.049344619999886, 5.183605155634751 ], [ 119.831044619999886, 5.059205155634743 ], [ 120.177744619999885, 5.343605155634748 ], [ 120.2535446199999, 5.233305155634753 ] ] ], [ [ [ 115.2330446199999, 5.259705155634748 ], [ 115.158344619999923, 5.257805155634742 ], [ 115.241944619999913, 5.384705155634748 ], [ 115.263044619999903, 5.298005155634755 ], [ 115.2330446199999, 5.259705155634748 ] ] ], [ [ [ 125.416044619999923, 5.361305155634753 ], [ 125.3574446199999, 5.362205155634754 ], [ 125.329944619999935, 5.387205155634746 ], [ 125.405744619999894, 5.430305155634741 ], [ 125.416044619999923, 5.361305155634753 ] ] ], [ [ [ 100.288844619999907, 5.256105155634742 ], [ 100.203844619999927, 5.271105155634743 ], [ 100.183844619999888, 5.462505155634744 ], [ 100.320244619999926, 5.427805155634744 ], [ 100.288844619999907, 5.256105155634742 ] ] ], [ [ [ 125.478244619999884, 5.388305155634754 ], [ 125.450444619999928, 5.420605155634746 ], [ 125.479444619999924, 5.491905155634754 ], [ 125.49524461999988, 5.423005155634755 ], [ 125.478244619999884, 5.388305155634754 ] ] ], [ [ [ 120.869644619999917, 5.491405155634752 ], [ 120.811844619999931, 5.53030515563475 ], [ 120.843244619999894, 5.585005155634747 ], [ 120.909944619999919, 5.536105155634743 ], [ 120.869644619999917, 5.491405155634752 ] ] ], [ [ [ 95.738544619999914, 5.585305155634742 ], [ 96.347744619999901, 5.222805155634745 ], [ 97.518844619999925, 5.246705155634743 ], [ 97.91304461999988, 4.886405155634748 ], [ 98.017144619999897, 4.551105155634744 ], [ 98.280244619999905, 4.42330515563475 ], [ 98.270444619999921, 4.142505155634751 ], [ 99.977744619999896, 2.947505155634744 ], [ 99.954344619999915, 2.693005155634751 ], [ 100.001644619999922, 2.601905155634753 ], [ 100.045444619999898, 2.73280515563475 ], [ 100.133044619999907, 2.523305155634745 ], [ 100.209144619999904, 2.703305155634752 ], [ 100.412144619999935, 2.293005155634745 ], [ 100.94244461999989, 1.820505155634748 ], [ 100.797144619999926, 2.214405155634751 ], [ 101.055544619999921, 2.286405155634753 ], [ 101.410444619999907, 1.717205155634744 ], [ 102.135544619999905, 1.373305155634753 ], [ 102.2107446199999, 1.015005155634753 ], [ 102.421844619999888, 0.800505155634752 ], [ 102.932444619999899, 0.695005155634746 ], [ 103.081844619999913, 0.445505155634748 ], [ 102.575544619999903, 0.176905155634742 ], [ 102.427444619999903, 0.246905155634749 ], [ 102.539944619999915, 0.166705155634745 ], [ 102.904344619999904, 0.262805155634751 ], [ 103.351044619999925, 0.536105155634743 ], [ 103.739644619999922, 0.281105155634748 ], [ 103.814144619999922, -0.000994844365252 ], [ 103.269644619999895, -0.258894844365258 ], [ 103.4907446199999, -0.216994844365246 ], [ 103.342344619999892, -0.364094844365255 ], [ 103.599944619999917, -0.441094844365253 ], [ 103.360744619999934, -0.702194844365252 ], [ 103.741044619999911, -0.995594844365257 ], [ 104.218544619999932, -1.069994844365254 ], [ 104.3791446199999, -1.041394844365257 ], [ 104.489444619999915, -1.924994844365258 ], [ 104.879444619999902, -2.146994844365253 ], [ 104.532444619999922, -2.772794844365251 ], [ 104.862144619999924, -2.289494844365251 ], [ 105.612444619999906, -2.394194844365245 ], [ 105.808544619999907, -2.896694844365257 ], [ 106.055244619999883, -3.031394844365252 ], [ 105.8160446199999, -3.674994844365258 ], [ 105.956644619999906, -3.852194844365258 ], [ 105.809944619999897, -4.242494844365254 ], [ 105.904444619999936, -4.548594844365255 ], [ 105.7324446199999, -5.897794844365251 ], [ 105.268544619999886, -5.444194844365256 ], [ 105.145844619999934, -5.795594844365255 ], [ 104.5449446199999, -5.506394844365246 ], [ 104.714944619999926, -5.915294844365249 ], [ 104.560744619999923, -5.929794844365247 ], [ 103.891044619999889, -5.11139484436525 ], [ 102.326044619999891, -4.006094844365251 ], [ 102.224644619999935, -3.652494844365251 ], [ 101.626844619999929, -3.246094844365246 ], [ 100.905544619999887, -2.319494844365252 ], [ 100.866344619999893, -1.926394844365248 ], [ 100.293544619999921, -0.806394844365258 ], [ 99.635744619999912, 0.076905155634748 ], [ 99.136044619999893, 0.261405155634748 ], [ 98.702444619999881, 1.561105155634749 ], [ 98.770844619999934, 1.748605155634749 ], [ 97.751844619999929, 2.269205155634751 ], [ 97.596844619999899, 2.866905155634754 ], [ 96.880244619999928, 3.677505155634748 ], [ 96.488844619999895, 3.76360515563475 ], [ 95.531044619999932, 4.682805155634753 ], [ 95.230744619999882, 5.570805155634744 ], [ 95.738544619999914, 5.585305155634742 ] ] ], [ [ [ 95.1579446199999, 5.594705155634742 ], [ 95.1088446199999, 5.61250515563475 ], [ 95.142444619999935, 5.660805155634748 ], [ 95.189144619999922, 5.614405155634742 ], [ 95.1579446199999, 5.594705155634742 ] ] ], [ [ [ 115.672244619999901, 5.707205155634753 ], [ 115.666644619999886, 5.705805155634749 ], [ 115.6277446199999, 5.728305155634743 ], [ 115.654444619999936, 5.73580515563475 ], [ 115.672244619999901, 5.707205155634753 ] ] ], [ [ [ 95.119644619999917, 5.67030515563475 ], [ 95.076644619999911, 5.666905155634751 ], [ 95.008044619999907, 5.735305155634748 ], [ 95.063544619999902, 5.749405155634747 ], [ 95.119644619999917, 5.67030515563475 ] ] ], [ [ [ 121.183844619999888, 5.787505155634747 ], [ 121.139144619999911, 5.785305155634745 ], [ 121.146344619999923, 5.848905155634753 ], [ 121.206944619999888, 5.810505155634743 ], [ 121.183844619999888, 5.787505155634747 ] ] ], [ [ [ 118.1719446199999, 5.812205155634743 ], [ 118.178844619999893, 5.848905155634753 ], [ 118.2330446199999, 5.848305155634748 ], [ 118.221944619999931, 5.823905155634748 ], [ 118.1719446199999, 5.812205155634743 ] ] ], [ [ [ 95.342444619999924, 5.774205155634746 ], [ 95.2766446199999, 5.797205155634742 ], [ 95.217744619999905, 5.91300515563475 ], [ 95.381644619999918, 5.849705155634751 ], [ 95.342444619999924, 5.774205155634746 ] ] ], [ [ [ 116.059444619999908, 6.003005155634753 ], [ 116.0161446199999, 6.026905155634751 ], [ 116.01694461999989, 6.035805155634748 ], [ 116.056644619999929, 6.040005155634745 ], [ 116.059444619999908, 6.003005155634753 ] ] ], [ [ [ 121.425744619999932, 5.952505155634753 ], [ 121.28804461999988, 5.854205155634745 ], [ 120.868844619999891, 5.943605155634742 ], [ 121.117444619999901, 6.088305155634743 ], [ 121.425744619999932, 5.952505155634753 ] ] ], [ [ [ 121.863044619999926, 6.016405155634743 ], [ 121.953244619999907, 6.051105155634744 ], [ 121.8588446199999, 5.99050515563475 ], [ 121.762744619999921, 6.090805155634754 ], [ 121.863044619999926, 6.016405155634743 ] ] ], [ [ [ 115.609144619999881, 6.195305155634742 ], [ 115.592744619999905, 6.204705155634741 ], [ 115.607744619999892, 6.221105155634746 ], [ 115.619444619999911, 6.205505155634754 ], [ 115.609144619999881, 6.195305155634742 ] ] ], [ [ [ 120.568344619999891, 6.244705155634747 ], [ 120.477744619999896, 6.264205155634755 ], [ 120.600844619999918, 6.395705155634744 ], [ 120.57944461999989, 6.253605155634745 ], [ 120.568344619999891, 6.244705155634747 ] ] ], [ [ [ 99.873244619999923, 6.416105155634753 ], [ 99.922944619999896, 6.330805155634749 ], [ 99.812944619999882, 6.156705155634754 ], [ 99.640744619999907, 6.419705155634745 ], [ 99.873244619999923, 6.416105155634753 ] ] ], [ [ [ 100.654944619999924, 6.448305155634742 ], [ 100.822744619999924, 6.436105155634749 ], [ 100.8574446199999, 6.234405155634747 ], [ 101.115444619999892, 6.248905155634745 ], [ 100.990244619999885, 5.78800515563475 ], [ 101.139644619999899, 5.631905155634755 ], [ 101.569944619999887, 5.916705155634745 ], [ 101.833844619999923, 5.743305155634744 ], [ 102.095244619999903, 6.236105155634746 ], [ 102.341644619999897, 6.169405155634749 ], [ 103.126344619999884, 5.371405155634747 ], [ 103.4410446199999, 4.765305155634749 ], [ 103.334644619999892, 3.74220515563475 ], [ 103.478044619999935, 3.506705155634748 ], [ 103.4402446199999, 2.917805155634753 ], [ 103.820244619999926, 2.577505155634753 ], [ 104.275744619999898, 1.36550515563475 ], [ 104.099644619999935, 1.372505155634755 ], [ 103.959344619999911, 1.646905155634755 ], [ 103.997944619999885, 1.432805155634753 ], [ 103.688244619999921, 1.44940515563475 ], [ 103.512144619999901, 1.269505155634747 ], [ 103.370744619999925, 1.536705155634749 ], [ 101.284944619999919, 2.84110515563475 ], [ 101.29434461999989, 3.268905155634755 ], [ 100.697144619999904, 3.903905155634746 ], [ 100.869944619999899, 4.023005155634749 ], [ 100.614344619999883, 4.177205155634752 ], [ 100.605544619999932, 4.79830515563475 ], [ 100.361044619999916, 5.086105155634755 ], [ 100.355544619999932, 5.963905155634748 ], [ 100.126844619999929, 6.419605155634741 ], [ 100.214944619999926, 6.711105155634755 ], [ 100.654944619999924, 6.448305155634742 ] ] ], [ [ [ 122.230244619999894, 6.660805155634748 ], [ 122.033844619999911, 6.411105155634743 ], [ 121.794644619999929, 6.593605155634748 ], [ 122.023544619999882, 6.751105155634747 ], [ 122.230244619999894, 6.660805155634748 ] ] ], [ [ [ 117.493544619999909, 6.742505155634746 ], [ 117.466944619999936, 6.642505155634751 ], [ 117.337244619999922, 6.651405155634748 ], [ 117.408044619999885, 6.746105155634751 ], [ 117.493544619999909, 6.742505155634746 ] ] ], [ [ [ 116.789144619999888, 6.579205155634753 ], [ 117.178344619999905, 6.990305155634744 ], [ 117.290844619999916, 6.635805155634742 ], [ 117.738844619999895, 6.390005155634753 ], [ 117.5997446199999, 6.189705155634755 ], [ 117.673844619999898, 5.980005155634743 ], [ 117.503044619999912, 5.896105155634743 ], [ 118.008844619999934, 6.061705155634755 ], [ 118.124644619999913, 5.861405155634742 ], [ 117.909444619999931, 5.801405155634754 ], [ 117.960244619999912, 5.681405155634749 ], [ 118.373644619999936, 5.807505155634743 ], [ 119.2758446199999, 5.345005155634752 ], [ 119.069744619999881, 5.070005155634746 ], [ 118.701644619999911, 4.943005155634751 ], [ 118.350844619999918, 5.035805155634748 ], [ 118.140544619999901, 4.888305155634754 ], [ 118.280244619999905, 4.682205155634747 ], [ 118.596944619999931, 4.518905155634755 ], [ 118.552244619999897, 4.351705155634747 ], [ 117.988344619999907, 4.223905155634753 ], [ 117.6930446199999, 4.374705155634743 ], [ 117.392744619999917, 4.139705155634744 ], [ 117.782144619999883, 3.788905155634751 ], [ 117.760244619999924, 3.639205155634755 ], [ 117.076344619999929, 3.643305155634749 ], [ 117.030244619999905, 3.599705155634751 ], [ 117.444144619999918, 3.430505155634748 ], [ 117.273044619999894, 3.222805155634745 ], [ 117.619644619999917, 3.088605155634752 ], [ 117.671644619999881, 2.801105155634744 ], [ 118.096644619999893, 2.305505155634748 ], [ 117.825744619999909, 2.103605155634753 ], [ 117.871844619999933, 1.876705155634752 ], [ 119.009444619999897, 0.986905155634744 ], [ 118.797744619999889, 0.800505155634752 ], [ 118.343844619999913, 0.843005155634742 ], [ 117.891644619999909, 1.115805155634746 ], [ 118.034944619999919, 0.810305155634751 ], [ 117.7421446199999, 0.739705155634752 ], [ 117.467444619999924, 0.103605155634753 ], [ 117.441744619999895, -0.523894844365245 ], [ 117.62994461999989, -0.421994844365258 ], [ 117.622444619999897, -0.779694844365252 ], [ 117.265844619999882, -0.821694844365254 ], [ 116.923544619999916, -1.254494844365254 ], [ 116.743244619999928, -1.024194844365255 ], [ 116.7555446199999, -1.367494844365254 ], [ 116.222444619999919, -1.77919484436525 ], [ 116.443844619999936, -1.779694844365252 ], [ 116.327144619999899, -2.147494844365255 ], [ 116.604144619999886, -2.229694844365255 ], [ 116.513044619999903, -2.556994844365249 ], [ 116.299644619999924, -2.524994844365253 ], [ 116.274444619999883, -2.999994844365247 ], [ 116.131944619999899, -2.82329484436525 ], [ 116.216344619999916, -3.142794844365255 ], [ 115.975744619999887, -3.60109484436525 ], [ 114.640744619999907, -4.186394844365253 ], [ 114.481044619999921, -3.498594844365257 ], [ 114.102144619999933, -3.356394844365255 ], [ 113.671044619999918, -3.47609484436525 ], [ 113.6088446199999, -3.173094844365252 ], [ 113.363544619999914, -3.261394844365256 ], [ 113.0646446199999, -2.993894844365258 ], [ 112.6516446199999, -3.415294844365249 ], [ 112.245744619999925, -3.313894844365251 ], [ 111.896344619999923, -3.573894844365256 ], [ 111.749644619999913, -2.741994844365252 ], [ 111.550244619999887, -3.02449484436525 ], [ 111.3357446199999, -2.921094844365257 ], [ 110.962444619999928, -3.09639484436525 ], [ 110.754644619999908, -3.032794844365256 ], [ 110.933544619999907, -2.886994844365248 ], [ 110.66304461999988, -3.081394844365249 ], [ 110.551044619999914, -2.869194844365254 ], [ 110.277144619999888, -3.014994844365248 ], [ 110.125744619999921, -2.046994844365258 ], [ 109.903544619999934, -1.828294844365246 ], [ 110.05774461999988, -1.333894844365247 ], [ 109.729644619999931, -0.953594844365256 ], [ 109.279944619999924, -0.868094844365245 ], [ 109.259444619999897, -0.666694844365253 ], [ 109.514444619999892, -0.726994844365251 ], [ 109.15104461999988, -0.546694844365248 ], [ 109.043044619999932, -0.251994844365257 ], [ 109.194444619999899, -0.199194844365252 ], [ 109.165544619999935, 0.106405155634747 ], [ 108.917444619999912, 0.317505155634748 ], [ 108.8454446199999, 0.810605155634747 ], [ 108.958544619999884, 1.17670515563475 ], [ 109.095844619999923, 1.211705155634746 ], [ 109.264944619999881, 1.393305155634749 ], [ 108.981944619999922, 1.211705155634746 ], [ 109.075244619999921, 1.544705155634745 ], [ 109.648544619999882, 2.073405155634745 ], [ 109.928344619999905, 1.689205155634752 ], [ 110.333344619999934, 1.802205155634752 ], [ 110.730444619999901, 1.543905155634747 ], [ 110.674444619999917, 1.445305155634742 ], [ 110.821944619999897, 1.568105155634754 ], [ 111.155544619999887, 1.363905155634754 ], [ 111.376944619999904, 1.343905155634744 ], [ 111.000044619999926, 1.575605155634747 ], [ 111.372744619999935, 2.150805155634743 ], [ 111.168544619999921, 2.152205155634746 ], [ 111.223344619999921, 2.421105155634748 ], [ 111.368144619999896, 2.339105155634755 ], [ 111.450244619999921, 2.368605155634754 ], [ 111.444744619999881, 2.69170515563475 ], [ 113.010544619999905, 3.160505155634752 ], [ 113.926044619999914, 4.244205155634745 ], [ 113.972744619999901, 4.590605155634748 ], [ 114.300844619999907, 4.595505155634754 ], [ 115.040244619999896, 5.047505155634752 ], [ 115.052744619999885, 4.79830515563475 ], [ 115.546144619999893, 5.05300515563475 ], [ 115.378844619999882, 5.39890515563475 ], [ 115.848844619999909, 5.563905155634743 ], [ 116.762544619999915, 7.023605155634755 ], [ 116.789144619999888, 6.579205155634753 ] ] ], [ [ [ 118.5335446199999, 7.035005155634749 ], [ 118.540244619999896, 6.965305155634752 ], [ 118.418144619999907, 7.022805155634742 ], [ 118.511344619999932, 7.050505155634752 ], [ 118.5335446199999, 7.035005155634749 ] ] ], [ [ [ 125.7949446199999, 6.932805155634753 ], [ 125.6699446199999, 7.075005155634742 ], [ 125.699144619999913, 7.19170515563475 ], [ 125.796044619999918, 7.121905155634749 ], [ 125.7949446199999, 6.932805155634753 ] ] ], [ [ [ 117.283344619999923, 7.314705155634755 ], [ 117.249744619999888, 7.17670515563475 ], [ 117.0666446199999, 7.101905155634753 ], [ 117.074144619999913, 7.287505155634747 ], [ 117.283344619999923, 7.314705155634755 ] ] ], [ [ [ 116.872444619999897, 7.220005155634752 ], [ 116.856944619999922, 7.183905155634747 ], [ 116.879444619999902, 7.275505155634747 ], [ 117.0021446199999, 7.35350515563475 ], [ 116.872444619999897, 7.220005155634752 ] ] ], [ [ [ 117.022144619999892, 7.808905155634747 ], [ 116.949944619999883, 8.032205155634742 ], [ 117.065544619999912, 8.078605155634747 ], [ 117.093844619999913, 7.908905155634741 ], [ 117.022144619999892, 7.808905155634747 ] ] ], [ [ [ 117.298844619999898, 8.182205155634747 ], [ 117.268044619999898, 8.306105155634754 ], [ 117.3180446199999, 8.331105155634745 ], [ 117.346644619999893, 8.212505155634744 ], [ 117.298844619999898, 8.182205155634747 ] ] ], [ [ [ 126.236644619999936, 9.009305155634749 ], [ 126.231644619999884, 8.998005155634743 ], [ 126.229444619999924, 9.013005155634744 ], [ 126.236644619999936, 9.009305155634749 ] ] ], [ [ [ 126.263544619999891, 9.001105155634747 ], [ 126.263044619999903, 8.996805155634746 ], [ 126.246644619999927, 9.01360515563475 ], [ 126.260544619999905, 9.006705155634748 ], [ 126.263544619999891, 9.001105155634747 ] ] ], [ [ [ 124.778544619999934, 9.075505155634744 ], [ 124.643544619999886, 9.15530515563475 ], [ 124.672744619999889, 9.253005155634753 ], [ 124.778844619999916, 9.207205155634753 ], [ 124.778544619999934, 9.075505155634744 ] ] ], [ [ [ 123.674944619999906, 9.226405155634751 ], [ 123.609344619999888, 9.092205155634744 ], [ 123.457144619999895, 9.190505155634753 ], [ 123.600244619999899, 9.298605155634746 ], [ 123.674944619999906, 9.226405155634751 ] ] ], [ [ [ 123.773544619999882, 9.544205155634742 ], [ 123.744644619999917, 9.595305155634748 ], [ 123.844944619999922, 9.636105155634752 ], [ 123.866044619999911, 9.596105155634746 ], [ 123.773544619999882, 9.544205155634742 ] ] ], [ [ [ 125.952444619999881, 9.557505155634743 ], [ 125.900544619999891, 9.616905155634754 ], [ 125.938244619999921, 9.756405155634752 ], [ 125.991044619999911, 9.661905155634742 ], [ 125.952444619999881, 9.557505155634743 ] ] ], [ [ [ 126.048544619999916, 9.231905155634749 ], [ 126.186044619999905, 9.242805155634741 ], [ 126.325244619999921, 8.917205155634747 ], [ 126.083544619999884, 8.607505155634755 ], [ 126.392144619999897, 8.507505155634746 ], [ 126.362144619999924, 7.901905155634751 ], [ 126.551944619999915, 7.692205155634753 ], [ 126.5857446199999, 7.285005155634749 ], [ 126.280744619999894, 6.923005155634755 ], [ 126.346344619999911, 6.797205155634742 ], [ 126.165244619999896, 6.881705155634748 ], [ 126.1916446199999, 6.272205155634751 ], [ 125.855544619999932, 7.349705155634751 ], [ 125.652144619999888, 7.236705155634752 ], [ 125.3771446199999, 6.719705155634742 ], [ 125.703244619999907, 6.027205155634746 ], [ 125.405544619999887, 5.563305155634751 ], [ 125.1916446199999, 5.767205155634741 ], [ 125.263544619999891, 6.091705155634742 ], [ 124.956944619999888, 5.851405155634751 ], [ 124.185744619999923, 6.210505155634749 ], [ 123.948544619999893, 6.823305155634742 ], [ 124.268544619999886, 7.374405155634747 ], [ 123.676644619999934, 7.812505155634753 ], [ 123.458844619999923, 7.810505155634743 ], [ 123.334644619999892, 7.557805155634753 ], [ 123.454644619999897, 7.367505155634746 ], [ 123.124944619999894, 7.503905155634754 ], [ 123.117244619999894, 7.728905155634749 ], [ 122.832744619999914, 7.275305155634754 ], [ 122.816944619999902, 7.732205155634745 ], [ 122.623844619999886, 7.773005155634749 ], [ 122.149944619999928, 6.90530515563475 ], [ 121.921044619999918, 6.994205155634745 ], [ 122.223244619999889, 7.962205155634749 ], [ 122.923044619999928, 8.150805155634743 ], [ 123.023544619999882, 8.486105155634746 ], [ 123.3046446199999, 8.523005155634749 ], [ 123.3791446199999, 8.727205155634749 ], [ 123.8180446199999, 8.476905155634753 ], [ 123.868244619999928, 8.164205155634747 ], [ 123.671044619999918, 7.953905155634743 ], [ 124.222744619999901, 8.210305155634742 ], [ 124.432144619999917, 8.615305155634744 ], [ 124.727444619999915, 8.486405155634742 ], [ 124.803844619999893, 9.001705155634752 ], [ 125.090544619999889, 8.825305155634751 ], [ 125.514644619999899, 9.006705155634748 ], [ 125.4402446199999, 9.809205155634743 ], [ 126.048544619999916, 9.231905155634749 ] ] ], [ [ [ 124.574144619999913, 9.854705155634747 ], [ 124.566944619999902, 9.849005155634742 ], [ 124.564944619999892, 9.860705155634747 ], [ 124.573444619999918, 9.863905155634754 ], [ 124.574144619999913, 9.854705155634747 ] ] ], [ [ [ 123.384444619999897, 9.878905155634754 ], [ 123.384144619999915, 9.875005155634753 ], [ 123.372144619999915, 9.880505155634751 ], [ 123.380244619999928, 9.887805155634751 ], [ 123.384444619999897, 9.878905155634754 ] ] ], [ [ [ 126.114144619999934, 9.745005155634743 ], [ 125.945544619999907, 9.830805155634749 ], [ 126.060244619999935, 10.054205155634747 ], [ 126.174744619999899, 9.805205155634752 ], [ 126.114144619999934, 9.745005155634743 ] ] ], [ [ [ 125.286944619999929, 9.909205155634751 ], [ 125.135244619999924, 10.064205155634752 ], [ 125.125844619999896, 10.155005155634754 ], [ 125.217444619999924, 10.122205155634745 ], [ 125.286944619999929, 9.909205155634751 ] ] ], [ [ [ 124.4838446199999, 10.050805155634748 ], [ 124.564344619999929, 10.022205155634751 ], [ 124.602744619999896, 9.767805155634747 ], [ 124.365544619999923, 9.626905155634745 ], [ 123.793244619999882, 9.729405155634751 ], [ 124.1488446199999, 10.146905155634755 ], [ 124.4838446199999, 10.050805155634748 ] ] ], [ [ [ 125.659344619999899, 9.824705155634746 ], [ 125.475244619999899, 10.131105155634742 ], [ 125.645244619999914, 10.468905155634744 ], [ 125.711944619999883, 9.894205155634751 ], [ 125.659344619999899, 9.824705155634746 ] ] ], [ [ [ 119.827144619999899, 10.439705155634755 ], [ 119.758344619999889, 10.556905155634752 ], [ 120.002444619999892, 10.591405155634746 ], [ 119.993244619999928, 10.527505155634742 ], [ 119.827144619999899, 10.439705155634755 ] ] ], [ [ [ 124.3671446199999, 10.60780515563475 ], [ 124.275744619999898, 10.587805155634754 ], [ 124.321844619999922, 10.707405155634746 ], [ 124.3785446199999, 10.685005155634755 ], [ 124.3671446199999, 10.60780515563475 ] ] ], [ [ [ 124.437444619999894, 10.625005155634753 ], [ 124.390744619999907, 10.645805155634747 ], [ 124.451344619999929, 10.715005155634742 ], [ 124.517444619999935, 10.659405155634744 ], [ 124.437444619999894, 10.625005155634753 ] ] ], [ [ [ 122.635244619999924, 10.443605155634742 ], [ 122.479644619999931, 10.487805155634746 ], [ 122.659344619999899, 10.748305155634753 ], [ 122.731044619999921, 10.617805155634741 ], [ 122.635244619999924, 10.443605155634742 ] ] ], [ [ [ 125.802444619999903, 10.688905155634743 ], [ 125.662444619999917, 10.750805155634751 ], [ 125.681044619999909, 10.812805155634749 ], [ 125.8146446199999, 10.730305155634753 ], [ 125.802444619999903, 10.688905155634743 ] ] ], [ [ [ 121.062144619999913, 10.796705155634754 ], [ 121.002444619999892, 10.827805155634749 ], [ 121.077444619999881, 10.906405155634744 ], [ 121.091944619999936, 10.847805155634745 ], [ 121.062144619999913, 10.796705155634754 ] ] ], [ [ [ 123.563844619999884, 10.794205155634742 ], [ 123.136344619999932, 9.836105155634755 ], [ 123.2963446199999, 9.229705155634747 ], [ 123.014644619999899, 9.033905155634741 ], [ 122.413844619999907, 9.65830515563475 ], [ 122.452744619999919, 9.973305155634748 ], [ 122.85824461999988, 10.097505155634749 ], [ 122.952444619999881, 10.894405155634743 ], [ 123.224444619999929, 10.996705155634743 ], [ 123.563844619999884, 10.794205155634742 ] ] ], [ [ [ 125.672444619999908, 11.090005155634742 ], [ 125.665544619999935, 11.10350515563475 ], [ 125.681944619999911, 11.103605155634753 ], [ 125.682444619999899, 11.099205155634749 ], [ 125.672444619999908, 11.090005155634742 ] ] ], [ [ [ 124.019844619999901, 11.118905155634749 ], [ 124.026144619999911, 10.382905155634745 ], [ 123.638544619999891, 10.07610515563475 ], [ 123.310244619999935, 9.411905155634742 ], [ 123.374944619999894, 9.994405155634752 ], [ 124.050244619999887, 11.277505155634742 ], [ 124.019844619999901, 11.118905155634749 ] ] ], [ [ [ 123.750744619999921, 11.147505155634747 ], [ 123.692744619999928, 11.221405155634741 ], [ 123.7330446199999, 11.300505155634752 ], [ 123.786944619999929, 11.184205155634743 ], [ 123.750744619999921, 11.147505155634747 ] ] ], [ [ [ 119.533844619999911, 11.36250515563475 ], [ 119.525144619999935, 11.361105155634746 ], [ 119.522344619999899, 11.365705155634743 ], [ 119.540444619999903, 11.372105155634742 ], [ 119.533844619999911, 11.36250515563475 ] ] ], [ [ [ 119.508544619999896, 11.335605155634752 ], [ 119.48324461999988, 10.881405155634752 ], [ 119.712444619999928, 10.497505155634755 ], [ 119.328544619999889, 10.309405155634749 ], [ 119.199644619999901, 10.046105155634748 ], [ 118.7541446199999, 9.926405155634754 ], [ 118.753344619999893, 9.654505155634752 ], [ 118.354444619999924, 9.193605155634742 ], [ 117.185744619999923, 8.325505155634744 ], [ 117.662144619999935, 9.076905155634748 ], [ 118.027144619999888, 9.259205155634746 ], [ 118.753444619999925, 10.127005155634748 ], [ 118.801044619999914, 10.034705155634754 ], [ 119.006544619999886, 10.439305155634742 ], [ 119.136044619999893, 10.381905155634755 ], [ 119.312444619999894, 10.582505155634749 ], [ 119.216944619999936, 10.960005155634747 ], [ 119.456044619999886, 10.723605155634743 ], [ 119.302444619999903, 11.002805155634746 ], [ 119.508544619999896, 11.335605155634752 ] ] ], [ [ [ 119.832444619999933, 11.376905155634745 ], [ 119.765244619999919, 11.401105155634752 ], [ 119.7141446199999, 11.475305155634743 ], [ 119.871344619999888, 11.506705155634748 ], [ 119.832444619999933, 11.376905155634745 ] ] ], [ [ [ 124.638844619999929, 11.293305155634755 ], [ 124.948344619999887, 11.424605155634751 ], [ 125.029944619999924, 11.195805155634744 ], [ 125.010244619999924, 10.750505155634755 ], [ 125.271644619999904, 10.297505155634752 ], [ 125.120544619999919, 10.176905155634742 ], [ 124.980244619999894, 10.37920515563475 ], [ 125.014644619999899, 10.027805155634752 ], [ 124.764644619999899, 10.19640515563475 ], [ 124.781944619999933, 10.77860515563475 ], [ 124.595244619999903, 11.011105155634752 ], [ 124.4213446199999, 10.913305155634745 ], [ 124.289644619999933, 11.541405155634749 ], [ 124.638844619999929, 11.293305155634755 ] ] ], [ [ [ 124.584644619999892, 11.472505155634749 ], [ 124.457144619999895, 11.474405155634742 ], [ 124.338844619999918, 11.680805155634744 ], [ 124.531344619999913, 11.67970515563475 ], [ 124.584644619999892, 11.472505155634749 ] ] ], [ [ [ 124.832544619999908, 11.529705155634744 ], [ 124.769144619999906, 11.56670515563475 ], [ 124.718044619999887, 11.727205155634749 ], [ 124.842744619999905, 11.591705155634742 ], [ 124.832544619999908, 11.529705155634744 ] ] ], [ [ [ 122.229444619999924, 11.797805155634748 ], [ 122.586644619999902, 11.521105155634743 ], [ 122.83084461999988, 11.608605155634748 ], [ 122.883544619999896, 11.428605155634742 ], [ 123.153044619999889, 11.600305155634743 ], [ 123.1285446199999, 11.174405155634744 ], [ 121.943244619999916, 10.416405155634749 ], [ 122.098844619999909, 11.700005155634742 ], [ 121.848044619999882, 11.760005155634744 ], [ 121.95444461999989, 11.927505155634748 ], [ 122.229444619999924, 11.797805155634748 ] ] ], [ [ [ 119.965244619999908, 11.656905155634746 ], [ 119.872444619999897, 11.892805155634747 ], [ 119.884944619999885, 11.976105155634755 ], [ 120.070544619999907, 11.865005155634748 ], [ 119.965244619999908, 11.656905155634746 ] ] ], [ [ [ 120.254444619999902, 11.982905155634754 ], [ 120.279644619999885, 11.932805155634753 ], [ 120.264444619999892, 11.807505155634743 ], [ 120.202744619999919, 11.946105155634754 ], [ 120.254444619999902, 11.982905155634754 ] ] ], [ [ [ 120.084944619999931, 11.966405155634746 ], [ 120.065944619999925, 11.963605155634752 ], [ 120.062644619999901, 11.993105155634751 ], [ 120.071344619999934, 11.990305155634744 ], [ 120.084944619999931, 11.966405155634746 ] ] ], [ [ [ 119.958844619999923, 12.028005155634744 ], [ 119.952444619999881, 12.021605155634745 ], [ 119.948844619999932, 12.024605155634745 ], [ 119.956844619999913, 12.036705155634749 ], [ 119.958844619999923, 12.028005155634744 ] ] ], [ [ [ 121.137444619999883, 12.157505155634752 ], [ 121.042744619999894, 12.229405155634751 ], [ 121.045344619999923, 12.289905155634742 ], [ 121.088044619999891, 12.28330515563475 ], [ 121.137444619999883, 12.157505155634752 ] ] ], [ [ [ 120.254444619999902, 11.982905155634754 ], [ 119.972944619999907, 12.024205155634746 ], [ 119.888044619999903, 12.333605155634743 ], [ 120.244644619999917, 12.17970515563475 ], [ 120.254444619999902, 11.982905155634754 ] ] ], [ [ [ 122.681044619999909, 12.308005155634746 ], [ 122.640244619999919, 12.264405155634748 ], [ 122.432444619999899, 12.461105155634755 ], [ 122.669444619999922, 12.483605155634748 ], [ 122.681044619999909, 12.308005155634746 ] ] ], [ [ [ 124.463844619999918, 12.520805155634747 ], [ 125.143044619999898, 12.576905155634748 ], [ 125.2969446199999, 12.457505155634749 ], [ 125.299944619999906, 12.286905155634742 ], [ 125.515744619999907, 12.171105155634748 ], [ 125.445544619999907, 11.610505155634755 ], [ 125.644444619999888, 11.343305155634752 ], [ 125.534044619999918, 11.195405155634745 ], [ 125.662144619999935, 11.19640515563475 ], [ 125.760244619999924, 11.011705155634743 ], [ 125.269444619999888, 11.128005155634753 ], [ 124.969944619999922, 11.447505155634744 ], [ 124.843544619999932, 11.466405155634746 ], [ 125.042444619999912, 11.747205155634745 ], [ 124.386944619999895, 12.190305155634746 ], [ 124.258044619999907, 12.555505155634748 ], [ 124.463844619999918, 12.520805155634747 ] ] ], [ [ [ 123.878244619999919, 12.216905155634748 ], [ 124.076344619999929, 11.718305155634752 ], [ 123.530244619999905, 12.208605155634743 ], [ 123.144144619999906, 11.933305155634741 ], [ 123.301644619999934, 12.244705155634747 ], [ 123.242944619999889, 12.607505155634755 ], [ 123.878244619999919, 12.216905155634748 ] ] ], [ [ [ 122.306944619999911, 12.486405155634742 ], [ 122.248044619999916, 12.561105155634749 ], [ 122.283044619999885, 12.633305155634744 ], [ 122.332744619999914, 12.528905155634746 ], [ 122.306944619999911, 12.486405155634742 ] ] ], [ [ [ 123.792144619999931, 12.345005155634752 ], [ 123.6902446199999, 12.455005155634751 ], [ 123.585544619999894, 12.660505155634752 ], [ 123.727744619999896, 12.601705155634747 ], [ 123.792144619999931, 12.345005155634752 ] ] ], [ [ [ 122.048544619999916, 12.17670515563475 ], [ 121.917744619999894, 12.30300515563475 ], [ 122.122744619999935, 12.676905155634742 ], [ 122.138244619999909, 12.570805155634744 ], [ 122.048544619999916, 12.17670515563475 ] ] ], [ [ [ 123.382444619999887, 12.691905155634743 ], [ 122.951644619999911, 13.029205155634742 ], [ 122.931244619999916, 13.109205155634754 ], [ 123.048544619999916, 13.134705155634748 ], [ 123.382444619999887, 12.691905155634743 ] ] ], [ [ [ 124.218044619999887, 13.172505155634752 ], [ 124.109944619999908, 13.187505155634753 ], [ 124.078244619999907, 13.211105155634755 ], [ 124.163244619999887, 13.232205155634745 ], [ 124.218044619999887, 13.172505155634752 ] ] ], [ [ [ 124.046044619999918, 13.220505155634754 ], [ 123.956044619999886, 13.232505155634755 ], [ 123.914744619999908, 13.285405155634749 ], [ 124.094944619999922, 13.264705155634744 ], [ 124.046044619999918, 13.220505155634754 ] ] ], [ [ [ 123.91304461999988, 13.243005155634748 ], [ 123.853844619999904, 13.267205155634741 ], [ 123.852144619999933, 13.352405155634742 ], [ 123.930744619999928, 13.32440515563475 ], [ 123.890444619999926, 13.278805155634743 ], [ 123.91304461999988, 13.243005155634748 ] ] ], [ [ [ 122.152244619999919, 13.396405155634753 ], [ 122.132944619999932, 13.400405155634743 ], [ 122.126744619999897, 13.422405155634749 ], [ 122.152444619999926, 13.404205155634742 ], [ 122.152244619999919, 13.396405155634753 ] ] ], [ [ [ 120.721644619999893, 13.477805155634755 ], [ 120.988044619999926, 13.521705155634749 ], [ 121.5021446199999, 13.14890515563475 ], [ 121.559344619999933, 12.605805155634755 ], [ 121.220544619999885, 12.230505155634745 ], [ 120.801144619999889, 12.722805155634745 ], [ 120.652444619999926, 13.186705155634755 ], [ 120.303544619999911, 13.440805155634749 ], [ 120.721644619999893, 13.477805155634755 ] ] ], [ [ [ 122.1234446199999, 13.404105155634753 ], [ 122.003344619999893, 13.202205155634744 ], [ 121.813244619999921, 13.448605155634752 ], [ 122.009144619999915, 13.54530515563475 ], [ 122.1234446199999, 13.404105155634753 ] ] ], [ [ [ 122.735244619999889, 13.774205155634746 ], [ 122.728044619999935, 13.777805155634752 ], [ 122.745144619999905, 13.780905155634741 ], [ 122.741344619999893, 13.775805155634743 ], [ 122.735244619999889, 13.774205155634746 ] ] ], [ [ [ 120.281944619999933, 13.75420515563475 ], [ 120.27464461999989, 13.668305155634755 ], [ 120.079944619999935, 13.849205155634749 ], [ 120.149444619999883, 13.853305155634743 ], [ 120.281944619999933, 13.75420515563475 ] ] ], [ [ [ 124.301044619999914, 13.952205155634744 ], [ 124.294144619999884, 13.952805155634749 ], [ 124.298544619999916, 13.963305155634743 ], [ 124.305544619999921, 13.956405155634755 ], [ 124.301044619999914, 13.952205155634744 ] ] ], [ [ [ 124.342144619999885, 13.942205155634753 ], [ 124.312744619999933, 13.955005155634751 ], [ 124.326344619999929, 13.981805155634746 ], [ 124.351644619999888, 13.950305155634751 ], [ 124.342144619999885, 13.942205155634753 ] ] ], [ [ [ 124.287344619999885, 13.946205155634743 ], [ 124.418044619999932, 13.788605155634755 ], [ 124.208044619999896, 13.515305155634749 ], [ 124.030544619999887, 13.663905155634751 ], [ 124.131044619999898, 14.061705155634755 ], [ 124.287344619999885, 13.946205155634743 ] ] ], [ [ [ 122.171044619999918, 13.998605155634749 ], [ 121.995544619999919, 14.104705155634747 ], [ 121.917444619999912, 14.185305155634751 ], [ 122.124344619999931, 14.088905155634748 ], [ 122.171044619999918, 13.998605155634749 ] ] ], [ [ [ 122.2541446199999, 14.722505155634749 ], [ 122.1171446199999, 14.796705155634754 ], [ 122.098144619999914, 14.836705155634746 ], [ 122.213044619999891, 14.839205155634744 ], [ 122.2541446199999, 14.722505155634749 ] ] ], [ [ [ 122.050744619999932, 14.996705155634743 ], [ 122.032444619999922, 14.713305155634743 ], [ 121.930744619999928, 14.62920515563475 ], [ 121.819144619999918, 14.991705155634747 ], [ 122.050744619999932, 14.996705155634743 ] ] ], [ [ [ 121.256644619999918, 18.566105155634759 ], [ 121.936644619999925, 18.269405155634743 ], [ 122.241644619999931, 18.512805155634751 ], [ 122.342444619999924, 18.310605155634747 ], [ 122.172744619999889, 18.079705155634755 ], [ 122.170244619999892, 17.607205155634759 ], [ 122.533344619999923, 17.099405155634756 ], [ 122.206344619999925, 16.23420515563474 ], [ 121.563244619999921, 15.903005155634744 ], [ 121.643044619999898, 15.713005155634747 ], [ 121.378844619999882, 15.332205155634753 ], [ 121.699944619999883, 14.697505155634744 ], [ 121.7338446199999, 14.170805155634753 ], [ 122.23324461999988, 13.897205155634751 ], [ 122.309344619999933, 14.015305155634749 ], [ 122.165544619999935, 14.158005155634754 ], [ 122.713244619999898, 14.338305155634743 ], [ 123.038844619999907, 14.069405155634755 ], [ 123.123244619999923, 13.697105155634745 ], [ 123.320544619999907, 13.791905155634751 ], [ 123.229644619999931, 14.002205155634755 ], [ 123.343044619999887, 14.086905155634753 ], [ 123.924944619999906, 13.789205155634747 ], [ 123.579944619999935, 13.718305155634752 ], [ 123.531944619999933, 13.575505155634744 ], [ 123.871344619999888, 13.231905155634749 ], [ 123.762744619999921, 13.061705155634755 ], [ 124.195744619999914, 13.057805155634753 ], [ 124.082744619999914, 12.540505155634747 ], [ 123.848844619999909, 12.731905155634749 ], [ 124.028544619999934, 12.963005155634747 ], [ 123.729144619999886, 12.853605155634753 ], [ 123.322144619999904, 13.008605155634754 ], [ 123.201944619999892, 13.418605155634751 ], [ 122.5609446199999, 13.936605155634751 ], [ 122.6074446199999, 13.163905155634751 ], [ 122.403544619999934, 13.519205155634751 ], [ 121.754644619999908, 13.964405155634751 ], [ 121.279444619999936, 13.593905155634744 ], [ 120.879444619999902, 13.902505155634742 ], [ 120.716644619999897, 13.925305155634746 ], [ 120.661044619999927, 13.768305155634749 ], [ 120.592144619999885, 14.231105155634751 ], [ 120.9830446199999, 14.486905155634744 ], [ 120.956644619999906, 14.63690515563475 ], [ 120.551644619999934, 14.826905155634748 ], [ 120.611044619999916, 14.492805155634741 ], [ 120.493244619999928, 14.42970515563475 ], [ 120.293244619999882, 14.808305155634741 ], [ 120.086044619999882, 14.785305155634745 ], [ 119.909144619999893, 15.856105155634751 ], [ 119.7521446199999, 15.96280515563474 ], [ 119.786944619999929, 16.32300515563476 ], [ 119.993844619999891, 16.348605155634758 ], [ 119.935244619999935, 16.242805155634741 ], [ 120.156644619999895, 16.036105155634758 ], [ 120.421844619999888, 16.155805155634752 ], [ 120.317144619999908, 16.631105155634756 ], [ 120.461044619999882, 17.407205155634742 ], [ 120.33854461999988, 17.571705155634746 ], [ 120.570544619999907, 18.49080515563476 ], [ 121.256644619999918, 18.566105155634759 ] ] ], [ [ [ 121.400544619999891, 18.84720515563474 ], [ 121.292744619999894, 18.842205155634744 ], [ 121.279444619999936, 18.866105155634742 ], [ 121.484344619999888, 18.882805155634756 ], [ 121.400544619999891, 18.84720515563474 ] ] ], [ [ [ 121.882744619999926, 18.833305155634761 ], [ 121.833044619999896, 18.880505155634737 ], [ 121.946044619999896, 19.004405155634757 ], [ 121.996744619999902, 18.960605155634752 ], [ 121.882744619999926, 18.833305155634761 ] ] ], [ [ [ 121.251344619999884, 19.01190515563475 ], [ 121.201944619999892, 19.065305155634761 ], [ 121.220244619999903, 19.172805155634748 ], [ 121.251644619999922, 19.110005155634738 ], [ 121.251344619999884, 19.01190515563475 ] ] ], [ [ [ 121.539644619999933, 19.266705155634739 ], [ 121.4213446199999, 19.286905155634756 ], [ 121.372744619999935, 19.364405155634742 ], [ 121.531244619999882, 19.389005155634734 ], [ 121.539644619999933, 19.266705155634739 ] ] ], [ [ [ 121.974644619999935, 19.480005155634743 ], [ 121.907444619999922, 19.517505155634737 ], [ 121.903044619999889, 19.550305155634746 ], [ 121.993544619999909, 19.565305155634761 ], [ 121.974644619999935, 19.480005155634743 ] ] ], [ [ [ 121.886944619999895, 20.28330515563475 ], [ 121.841944619999936, 20.282505155634752 ], [ 121.845944619999898, 20.35180515563475 ], [ 121.884944619999885, 20.322805155634754 ], [ 121.886944619999895, 20.28330515563475 ] ] ], [ [ [ 121.95444461999989, 20.348605155634758 ], [ 121.923844619999898, 20.407205155634742 ], [ 122.0266446199999, 20.483305155634739 ], [ 122.038844619999907, 20.463005155634747 ], [ 121.95444461999989, 20.348605155634758 ] ] ], [ [ [ 121.812144619999913, 20.686705155634755 ], [ 121.786344619999909, 20.71940515563476 ], [ 121.870744619999925, 20.834705155634751 ], [ 121.883344619999889, 20.765305155634749 ], [ 121.812144619999913, 20.686705155634755 ] ] ], [ [ [ 121.957144619999895, 21.110505155634755 ], [ 121.9493446199999, 21.106105155634751 ], [ 121.948944619999907, 21.117405155634756 ], [ 121.952144619999899, 21.118005155634748 ], [ 121.957144619999895, 21.110505155634755 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 43, "LEVEL1_COD": 4, "LEVEL1_NAM": "ASIA-TROPICAL", "LEVEL2_NAM": "Papuasia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.080744619999905, -11.498094844365255 ], [ 160.439144619999922, -11.681394844365258 ], [ 160.527444619999926, -11.808094844365257 ], [ 159.9607446199999, -11.521694844365257 ], [ 160.080744619999905, -11.498094844365255 ] ] ], [ [ [ 153.770744619999903, -11.616394844365246 ], [ 153.376044619999902, -11.567194844365247 ], [ 153.198044619999905, -11.324194844365252 ], [ 153.686644619999925, -11.526994844365248 ], [ 153.770744619999903, -11.616394844365246 ] ] ], [ [ [ 154.297744619999889, -11.391994844365257 ], [ 154.106644619999884, -11.439694844365249 ], [ 154.003344619999893, -11.383894844365258 ], [ 154.153844619999916, -11.314194844365247 ], [ 154.297744619999889, -11.391994844365257 ] ] ], [ [ [ 159.853244619999884, -11.324694844365254 ], [ 159.8032446199999, -11.316094844365253 ], [ 159.7766446199999, -11.28859484436525 ], [ 159.841644619999897, -11.303894844365246 ], [ 159.853244619999884, -11.324694844365254 ] ] ], [ [ [ 153.241044619999911, -11.268894844365249 ], [ 153.210444619999919, -11.285794844365256 ], [ 153.091044619999934, -11.197194844365256 ], [ 153.213844619999918, -11.224694844365246 ], [ 153.241044619999911, -11.268894844365249 ] ] ], [ [ [ 162.474944619999917, -10.855594844365257 ], [ 162.464644619999888, -10.818294844365255 ], [ 162.481344619999902, -10.807494844365252 ], [ 162.500544619999914, -10.839994844365251 ], [ 162.474944619999917, -10.855594844365257 ] ] ], [ [ [ 152.873244619999923, -10.662194844365246 ], [ 152.744344619999936, -10.71669484436525 ], [ 152.540744619999884, -10.630594844365248 ], [ 152.790244619999896, -10.619694844365256 ], [ 152.873244619999923, -10.662194844365246 ] ] ], [ [ [ 151.069644619999906, -10.611094844365255 ], [ 151.042144619999931, -10.676994844365254 ], [ 150.909944619999919, -10.654694844365252 ], [ 150.934644619999915, -10.600794844365254 ], [ 151.069644619999906, -10.611094844365255 ] ] ], [ [ [ 150.892144619999897, -10.650794844365251 ], [ 150.785244619999901, -10.634694844365256 ], [ 150.790744619999884, -10.542194844365255 ], [ 150.9002446199999, -10.553094844365248 ], [ 150.892144619999897, -10.650794844365251 ] ] ], [ [ [ 161.751344619999884, -10.294494844365246 ], [ 161.712944619999917, -10.249694844365251 ], [ 161.719944619999922, -10.214694844365255 ], [ 161.771844619999911, -10.254494844365254 ], [ 161.751344619999884, -10.294494844365246 ] ] ], [ [ [ 161.545244619999892, -10.276694844365252 ], [ 162.108544619999918, -10.44999484436525 ], [ 162.390744619999907, -10.841994844365246 ], [ 161.778244619999896, -10.720794844365258 ], [ 161.498544619999905, -10.36779484436525 ], [ 161.283344619999923, -10.331994844365255 ], [ 161.301344619999895, -10.206694844365245 ], [ 161.545244619999892, -10.276694844365252 ] ] ], [ [ [ 151.116044619999911, -10.046694844365248 ], [ 151.281344619999913, -9.923294844365245 ], [ 151.229144619999886, -10.201094844365258 ], [ 150.958544619999884, -10.110294844365256 ], [ 150.759944619999885, -9.707794844365253 ], [ 151.116044619999911, -10.046694844365248 ] ] ], [ [ [ 161.974644619999935, -9.853094844365245 ], [ 161.931644619999929, -9.761094844365246 ], [ 161.944644619999906, -9.690294844365255 ], [ 161.974044619999916, -9.689694844365249 ], [ 161.974644619999935, -9.853094844365245 ] ] ], [ [ [ 161.387444619999883, -9.468594844365256 ], [ 161.381344619999936, -9.469494844365258 ], [ 161.385544619999905, -9.454494844365257 ], [ 161.388844619999929, -9.457794844365253 ], [ 161.387444619999883, -9.468594844365256 ] ] ], [ [ [ 161.569044619999886, -9.724194844365257 ], [ 161.397144619999892, -9.669494844365246 ], [ 161.4051446199999, -9.472294844365251 ], [ 161.349944619999917, -9.338894844365257 ], [ 161.569044619999886, -9.724194844365257 ] ] ], [ [ [ 150.666644619999886, -9.438294844365245 ], [ 150.804344619999881, -9.432794844365247 ], [ 150.921644619999881, -9.670794844365247 ], [ 150.514444619999892, -9.623294844365248 ], [ 150.421844619999888, -9.389494844365245 ], [ 150.666644619999886, -9.438294844365245 ] ] ], [ [ [ 159.938244619999921, -9.433594844365246 ], [ 160.386344619999932, -9.426694844365258 ], [ 160.831044619999886, -9.861994844365256 ], [ 159.828044619999901, -9.796994844365258 ], [ 159.601844619999895, -9.317194844365247 ], [ 159.938244619999921, -9.433594844365246 ] ] ], [ [ [ 150.3391446199999, -9.524694844365257 ], [ 150.10824461999988, -9.368594844365248 ], [ 150.189144619999922, -9.211094844365249 ], [ 150.333044619999896, -9.276694844365252 ], [ 150.3391446199999, -9.524694844365257 ] ] ], [ [ [ 159.828544619999889, -9.172494844365247 ], [ 159.801844619999883, -9.141994844365257 ], [ 159.811344619999886, -9.110794844365245 ], [ 159.845744619999891, -9.138094844365256 ], [ 159.828544619999889, -9.172494844365247 ] ] ], [ [ [ 160.411044619999927, -9.136694844365252 ], [ 160.359144619999881, -9.190794844365257 ], [ 160.212444619999928, -9.170594844365255 ], [ 160.271344619999923, -9.15419484436525 ], [ 160.318544619999898, -9.060294844365245 ], [ 160.411044619999927, -9.136694844365252 ] ] ], [ [ [ 159.204344619999915, -9.133294844365253 ], [ 159.168044619999932, -9.102794844365249 ], [ 159.228244619999884, -9.025594844365258 ], [ 159.236644619999936, -9.091994844365246 ], [ 159.204344619999915, -9.133294844365253 ] ] ], [ [ [ 160.299344619999886, -9.058094844365257 ], [ 160.264444619999892, -9.131894844365249 ], [ 160.076044619999891, -9.046694844365248 ], [ 160.19244461999989, -8.996694844365251 ], [ 160.299344619999886, -9.058094844365257 ] ] ], [ [ [ 159.147444619999931, -9.108894844365253 ], [ 159.099344619999897, -9.119694844365256 ], [ 159.032444619999922, -9.060294844365245 ], [ 159.137144619999901, -8.994494844365249 ], [ 159.147444619999931, -9.108894844365253 ] ] ], [ [ [ 152.814944619999892, -8.972794844365254 ], [ 152.997144619999915, -9.173094844365252 ], [ 152.835444619999919, -9.235594844365252 ], [ 152.497744619999935, -9.021694844365257 ], [ 152.814944619999892, -8.972794844365254 ] ] ], [ [ [ 160.112144619999924, -8.997194844365254 ], [ 160.065744619999919, -9.017494844365245 ], [ 160.073244619999912, -8.947794844365248 ], [ 160.109644619999926, -8.963294844365251 ], [ 160.112144619999924, -8.997194844365254 ] ] ], [ [ [ 160.047144619999926, -8.915294844365249 ], [ 160.010744619999912, -8.902494844365251 ], [ 160.008344619999889, -8.884694844365256 ], [ 160.029344619999904, -8.880294844365253 ], [ 160.047144619999926, -8.915294844365249 ] ] ], [ [ [ 161.060744619999923, -8.748094844365255 ], [ 161.044444619999922, -8.772494844365255 ], [ 161.009444619999897, -8.754194844365259 ], [ 161.031344619999913, -8.737794844365254 ], [ 161.060744619999923, -8.748094844365255 ] ] ], [ [ [ 157.633844619999934, -8.748094844365255 ], [ 157.619944619999899, -8.800794844365257 ], [ 157.443844619999936, -8.714994844365251 ], [ 157.556344619999891, -8.691994844365254 ], [ 157.633844619999934, -8.748094844365255 ] ] ], [ [ [ 158.205244619999917, -8.833294844365255 ], [ 158.14964461999989, -8.781394844365252 ], [ 158.21354461999988, -8.681094844365248 ], [ 158.253844619999882, -8.793294844365249 ], [ 158.205244619999917, -8.833294844365255 ] ] ], [ [ [ 158.003044619999912, -8.771094844365251 ], [ 157.875444619999882, -8.609994844365247 ], [ 158.116844619999881, -8.533294844365258 ], [ 158.105744619999882, -8.698094844365258 ], [ 158.003044619999912, -8.771094844365251 ] ] ], [ [ [ 151.124944619999894, -8.42559484436525 ], [ 151.102444619999915, -8.741894844365248 ], [ 151.144444619999888, -8.830594844365251 ], [ 150.996844619999933, -8.528594844365259 ], [ 151.124944619999894, -8.42559484436525 ] ] ], [ [ [ 143.638044619999903, -8.733094844365255 ], [ 143.240444619999892, -8.487194844365249 ], [ 143.183544619999907, -8.419994844365249 ], [ 143.467144619999885, -8.527794844365246 ], [ 143.638044619999903, -8.733094844365255 ] ] ], [ [ [ 157.408344619999923, -8.500794844365245 ], [ 157.326644619999911, -8.641094844365256 ], [ 157.384444619999897, -8.734494844365258 ], [ 157.199144619999913, -8.565794844365257 ], [ 157.353544619999923, -8.410594844365249 ], [ 157.408344619999923, -8.500794844365245 ] ] ], [ [ [ 159.683244619999925, -8.546994844365258 ], [ 159.537444619999917, -8.468294844365246 ], [ 159.568844619999936, -8.378894844365249 ], [ 159.643044619999898, -8.394494844365255 ], [ 159.683244619999925, -8.546994844365258 ] ] ], [ [ [ 162.741044619999911, -8.373894844365253 ], [ 162.758844619999934, -8.373894844365253 ], [ 162.761644619999913, -8.378094844365251 ], [ 162.725244619999899, -8.381394844365246 ], [ 162.741044619999911, -8.373894844365253 ] ] ], [ [ [ 143.572744619999924, -8.493894844365258 ], [ 143.354944619999912, -8.418094844365257 ], [ 143.314344619999929, -8.376694844365247 ], [ 143.578244619999907, -8.373894844365253 ], [ 143.572744619999924, -8.493894844365258 ] ] ], [ [ [ 143.687144619999913, -8.439694844365249 ], [ 143.584344619999911, -8.357794844365259 ], [ 143.607144619999929, -8.332794844365253 ], [ 143.672144619999926, -8.354494844365249 ], [ 143.687144619999913, -8.439694844365249 ] ] ], [ [ [ 160.974344619999897, -8.847494844365258 ], [ 161.165544619999935, -8.974194844365257 ], [ 161.37794461999988, -9.634994844365252 ], [ 160.809144619999927, -9.064994844365245 ], [ 160.580244619999917, -8.329994844365245 ], [ 160.751044619999902, -8.312194844365251 ], [ 160.979144619999886, -8.584694844365245 ], [ 160.974344619999897, -8.847494844365258 ] ] ], [ [ [ 157.124644619999913, -8.255294844365253 ], [ 157.151344619999918, -8.342794844365258 ], [ 157.023044619999894, -8.190794844365257 ], [ 157.081344619999925, -8.196394844365258 ], [ 157.124644619999913, -8.255294844365253 ] ] ], [ [ [ 143.697444619999885, -8.245294844365247 ], [ 143.6516446199999, -8.199694844365254 ], [ 143.73324461999988, -8.174694844365249 ], [ 143.755244619999928, -8.213894844365257 ], [ 143.697444619999885, -8.245294844365247 ] ] ], [ [ [ 157.207444619999933, -8.270294844365253 ], [ 157.202744619999919, -8.292794844365247 ], [ 157.092444619999924, -8.165794844365251 ], [ 157.180744619999928, -8.170594844365255 ], [ 157.207444619999933, -8.270294844365253 ] ] ], [ [ [ 138.873544619999905, -8.414694844365258 ], [ 138.580244619999917, -8.376694844365247 ], [ 138.544744619999904, -8.333094844365249 ], [ 138.814144619999922, -8.154694844365252 ], [ 138.873544619999905, -8.414694844365258 ] ] ], [ [ [ 143.677744619999885, -8.174694844365249 ], [ 143.621544619999895, -8.151694844365252 ], [ 143.604944619999912, -8.108894844365253 ], [ 143.700244619999921, -8.106094844365245 ], [ 143.677744619999885, -8.174694844365249 ] ] ], [ [ [ 156.844944619999922, -8.118294844365252 ], [ 156.783344619999923, -8.098094844365249 ], [ 156.782744619999903, -8.05529484436525 ], [ 156.829944619999935, -8.076394844365254 ], [ 156.844944619999922, -8.118294844365252 ] ] ], [ [ [ 143.731044619999921, -8.071694844365254 ], [ 143.58854461999988, -8.071694844365254 ], [ 143.5652446199999, -8.019994844365257 ], [ 143.65104461999988, -8.008294844365253 ], [ 143.731044619999921, -8.071694844365254 ] ] ], [ [ [ 157.631544619999886, -8.23639484436525 ], [ 157.905744619999894, -8.479694844365255 ], [ 157.811844619999931, -8.62079484436525 ], [ 157.534944619999919, -8.255294844365253 ], [ 157.214344619999906, -8.243094844365245 ], [ 157.497444619999897, -7.965594844365256 ], [ 157.631544619999886, -8.23639484436525 ] ] ], [ [ [ 156.598844619999909, -8.203094844365253 ], [ 156.531844619999902, -8.091994844365246 ], [ 156.542144619999931, -7.944694844365259 ], [ 156.603844619999904, -8.048294844365245 ], [ 156.598844619999909, -8.203094844365253 ] ] ], [ [ [ 157.156044619999932, -8.150294844365249 ], [ 156.967744619999905, -8.046394844365253 ], [ 157.027144619999888, -7.865294844365252 ], [ 157.183544619999907, -7.931694844365254 ], [ 157.156044619999932, -8.150294844365249 ] ] ], [ [ [ 145.193544619999898, -7.867194844365258 ], [ 145.180544619999921, -7.861094844365255 ], [ 145.182444619999899, -7.827794844365258 ], [ 145.197444619999885, -7.854994844365251 ], [ 145.193544619999898, -7.867194844365258 ] ] ], [ [ [ 143.999644619999913, -7.824494844365248 ], [ 143.923544619999916, -7.78859484436525 ], [ 143.8771446199999, -7.709694844365245 ], [ 143.966844619999904, -7.748294844365248 ], [ 143.999644619999913, -7.824494844365248 ] ] ], [ [ [ 158.571844619999922, -7.703594844365256 ], [ 158.532144619999883, -7.691394844365249 ], [ 158.549944619999906, -7.664194844365255 ], [ 158.570544619999907, -7.677794844365252 ], [ 158.571844619999922, -7.703594844365256 ] ] ], [ [ [ 156.706644619999906, -7.897194844365245 ], [ 156.504444619999902, -7.707794844365253 ], [ 156.554344619999881, -7.578594844365256 ], [ 156.808544619999907, -7.726694844365255 ], [ 156.706644619999906, -7.897194844365245 ] ] ], [ [ [ 158.530744619999894, -7.65419484436525 ], [ 158.359344619999888, -7.640594844365253 ], [ 158.312744619999933, -7.580794844365258 ], [ 158.381844619999924, -7.567194844365247 ], [ 158.530744619999894, -7.65419484436525 ] ] ], [ [ [ 159.852444619999915, -8.333894844365247 ], [ 159.886944619999895, -8.566394844365249 ], [ 159.622444619999897, -8.360594844365252 ], [ 158.843244619999894, -7.975294844365251 ], [ 158.487444619999906, -7.554194844365256 ], [ 159.852444619999915, -8.333894844365247 ] ] ], [ [ [ 158.429344619999881, -7.529694844365252 ], [ 158.370444619999887, -7.552794844365252 ], [ 158.262744619999921, -7.477494844365253 ], [ 158.271644619999904, -7.465794844365249 ], [ 158.429344619999881, -7.529694844365252 ] ] ], [ [ [ 157.781644619999895, -7.47609484436525 ], [ 157.709144619999904, -7.47609484436525 ], [ 157.683544619999907, -7.415594844365245 ], [ 157.749344619999931, -7.393894844365249 ], [ 157.781644619999895, -7.47609484436525 ] ] ], [ [ [ 138.968244619999894, -7.556094844365248 ], [ 138.881944619999899, -8.036094844365252 ], [ 138.444744619999881, -8.383294844365253 ], [ 137.635244619999924, -8.429994844365254 ], [ 138.154644619999885, -7.513894844365254 ], [ 138.70444461999989, -7.362494844365258 ], [ 138.968244619999894, -7.556094844365248 ] ] ], [ [ [ 155.587444619999928, -7.390594844365253 ], [ 155.517744619999917, -7.389694844365252 ], [ 155.510744619999912, -7.35109484436525 ], [ 155.584644619999892, -7.331994844365255 ], [ 155.587444619999928, -7.390594844365253 ] ] ], [ [ [ 155.8588446199999, -7.100294844365251 ], [ 155.769144619999906, -7.129494844365254 ], [ 155.669644619999929, -7.088094844365258 ], [ 155.740244619999885, -6.967494844365248 ], [ 155.8588446199999, -7.100294844365251 ] ] ], [ [ [ 156.110244619999889, -6.941094844365253 ], [ 156.084944619999931, -6.989494844365254 ], [ 156.074644619999901, -6.819194844365256 ], [ 156.094644619999883, -6.820594844365246 ], [ 156.110244619999889, -6.941094844365253 ] ] ], [ [ [ 156.019944619999933, -6.824694844365254 ], [ 155.999944619999894, -6.80359484436525 ], [ 156.045244619999892, -6.78859484436525 ], [ 156.046644619999881, -6.803094844365248 ], [ 156.019944619999933, -6.824694844365254 ] ] ], [ [ [ 138.690544619999912, -6.761394844365256 ], [ 138.738544619999914, -6.768094844365251 ], [ 138.78664461999989, -6.840794844365249 ], [ 138.611044619999916, -6.736094844365255 ], [ 138.690544619999912, -6.761394844365256 ] ] ], [ [ [ 157.428844619999893, -7.324494844365248 ], [ 157.528244619999896, -7.376394844365251 ], [ 156.936044619999905, -7.219194844365248 ], [ 156.438544619999902, -6.643594844365253 ], [ 157.042444619999912, -6.901694844365252 ], [ 157.428844619999893, -7.324494844365248 ] ] ], [ [ [ 149.053544619999911, -6.094194844365248 ], [ 149.043244619999882, -6.093294844365246 ], [ 149.044544619999897, -6.087894844365252 ], [ 149.058244619999925, -6.086694844365255 ], [ 149.053544619999911, -6.094194844365248 ] ] ], [ [ [ 148.061444619999918, -5.777094844365251 ], [ 147.865044619999935, -5.747794844365245 ], [ 147.780244619999905, -5.494194844365254 ], [ 148.044144619999884, -5.601994844365251 ], [ 148.061444619999918, -5.777094844365251 ] ] ], [ [ [ 159.7127446199999, -5.516694844365247 ], [ 159.703244619999907, -5.513894844365254 ], [ 159.7141446199999, -5.483894844365253 ], [ 159.723844619999909, -5.489994844365256 ], [ 159.7127446199999, -5.516694844365247 ] ] ], [ [ [ 154.882444619999887, -5.543294844365249 ], [ 155.073544619999893, -5.561694844365249 ], [ 155.43274461999988, -6.12079484436525 ], [ 155.813644619999934, -6.371394844365255 ], [ 155.918544619999921, -6.807794844365247 ], [ 155.558844619999888, -6.852494844365253 ], [ 155.239944619999903, -6.622494844365249 ], [ 155.2141446199999, -6.32029484436525 ], [ 154.744344619999936, -5.939794844365252 ], [ 154.753644619999932, -5.518094844365251 ], [ 154.882444619999887, -5.543294844365249 ] ] ], [ [ [ 159.528544619999934, -5.498894844365253 ], [ 159.498244619999923, -5.477194844365258 ], [ 159.496344619999888, -5.466994844365246 ], [ 159.509944619999885, -5.470794844365258 ], [ 159.528544619999934, -5.498894844365253 ] ] ], [ [ [ 159.403844619999916, -5.44829484436525 ], [ 159.371544619999895, -5.440794844365257 ], [ 159.348844619999909, -5.415794844365251 ], [ 159.359144619999881, -5.41359484436525 ], [ 159.403844619999916, -5.44829484436525 ] ] ], [ [ [ 148.120744619999925, -5.468294844365246 ], [ 148.071644619999915, -5.424494844365256 ], [ 148.099644619999935, -5.377494844365245 ], [ 148.144944619999933, -5.418294844365249 ], [ 148.120744619999925, -5.468294844365246 ] ] ], [ [ [ 159.2521446199999, -5.312794844365257 ], [ 159.250244619999933, -5.324194844365252 ], [ 159.248844619999886, -5.293094844365257 ], [ 159.2521446199999, -5.296394844365253 ], [ 159.2521446199999, -5.312794844365257 ] ] ], [ [ [ 147.602144619999933, -5.361994844365256 ], [ 147.560444619999885, -5.318894844365246 ], [ 147.609144619999881, -5.288094844365247 ], [ 147.642744619999917, -5.333894844365247 ], [ 147.602144619999933, -5.361994844365256 ] ] ], [ [ [ 147.153244619999896, -5.449694844365254 ], [ 147.008044619999907, -5.350294844365251 ], [ 147.121044619999907, -5.191094844365253 ], [ 147.228844619999904, -5.363894844365248 ], [ 147.153244619999896, -5.449694844365254 ] ] ], [ [ [ 154.675544619999926, -5.440794844365257 ], [ 154.530244619999905, -5.133894844365258 ], [ 154.639144619999911, -5.016394844365252 ], [ 154.728344619999916, -5.202794844365258 ], [ 154.675544619999926, -5.440794844365257 ] ] ], [ [ [ 149.156844619999902, -4.923094844365252 ], [ 149.117944619999889, -4.889494844365245 ], [ 149.161944619999929, -4.866394844365246 ], [ 149.181644619999929, -4.89219484436525 ], [ 149.156844619999902, -4.923094844365252 ] ] ], [ [ [ 146.246544619999895, -4.857494844365249 ], [ 146.1993446199999, -4.833594844365251 ], [ 146.219944619999922, -4.788294844365254 ], [ 146.262444619999883, -4.819694844365259 ], [ 146.246544619999895, -4.857494844365249 ] ] ], [ [ [ 149.557144619999917, -4.718894844365252 ], [ 149.470244619999903, -4.709994844365255 ], [ 149.455744619999905, -4.679194844365256 ], [ 149.540244619999896, -4.653894844365254 ], [ 149.557144619999917, -4.718894844365252 ] ] ], [ [ [ 159.51694461999989, -4.578094844365253 ], [ 159.511344619999932, -4.57669484436525 ], [ 159.518844619999925, -4.536394844365248 ], [ 159.523044619999894, -4.563894844365251 ], [ 159.51694461999989, -4.578094844365253 ] ] ], [ [ [ 145.951344619999929, -4.764494844365245 ], [ 145.872444619999897, -4.672494844365247 ], [ 145.981644619999884, -4.527494844365251 ], [ 146.054144619999931, -4.661394844365248 ], [ 145.951344619999929, -4.764494844365245 ] ] ], [ [ [ 154.155244619999905, -4.438094844365253 ], [ 154.126644619999922, -4.379394844365251 ], [ 154.132744619999926, -4.371694844365251 ], [ 154.152744619999908, -4.379394844365251 ], [ 154.155244619999905, -4.438094844365253 ] ] ], [ [ [ 152.235244619999889, -4.207194844365247 ], [ 152.405744619999894, -4.688894844365251 ], [ 152.241344619999893, -4.984494844365258 ], [ 151.970744619999891, -4.993294844365252 ], [ 152.0960446199999, -5.457194844365247 ], [ 151.825544619999903, -5.60109484436525 ], [ 151.459344619999911, -5.535794844365256 ], [ 151.384644619999904, -5.807194844365256 ], [ 150.468544619999932, -6.276094844365247 ], [ 149.634644619999904, -6.308094844365257 ], [ 149.311844619999931, -6.057194844365256 ], [ 149.056844619999936, -6.164194844365255 ], [ 148.323044619999905, -5.675394844365258 ], [ 148.428544619999911, -5.451094844365258 ], [ 149.220744619999891, -5.606094844365245 ], [ 149.880744619999916, -5.534994844365258 ], [ 150.088844619999918, -5.00779484436525 ], [ 150.204944619999935, -5.070594844365246 ], [ 150.042444619999912, -5.308594844365246 ], [ 150.164444619999927, -5.551394844365248 ], [ 150.924344619999886, -5.487194844365249 ], [ 151.262144619999901, -4.98639484436525 ], [ 151.676044619999914, -4.908094844365252 ], [ 151.511644619999913, -4.204494844365257 ], [ 151.969344619999902, -4.33699484436525 ], [ 152.235244619999889, -4.207194844365247 ] ] ], [ [ [ 133.575244619999921, -4.251894844365253 ], [ 133.615544619999923, -4.30059484436525 ], [ 133.314144619999922, -4.104394844365245 ], [ 133.421044619999918, -4.173294844365245 ], [ 133.575244619999921, -4.251894844365253 ] ] ], [ [ [ 145.05774461999988, -4.135294844365248 ], [ 145.022144619999892, -4.07669484436525 ], [ 145.068844619999936, -4.044994844365249 ], [ 145.109944619999908, -4.098294844365256 ], [ 145.05774461999988, -4.135294844365248 ] ] ], [ [ [ 153.645544619999896, -4.140294844365258 ], [ 153.584344619999911, -4.095794844365258 ], [ 153.6585446199999, -4.019194844365245 ], [ 153.671644619999881, -4.104694844365255 ], [ 153.645544619999896, -4.140294844365258 ] ] ], [ [ [ 134.159744619999913, -3.934994844365249 ], [ 134.199444619999895, -3.99109484436525 ], [ 134.072744619999924, -3.934194844365251 ], [ 134.098844619999909, -3.919194844365251 ], [ 134.159744619999913, -3.934994844365249 ] ] ], [ [ [ 153.258344619999889, -3.498894844365253 ], [ 153.211044619999882, -3.488594844365252 ], [ 153.193844619999936, -3.468594844365256 ], [ 153.233544619999918, -3.446694844365254 ], [ 153.258344619999889, -3.498894844365253 ] ] ], [ [ [ 133.619644619999917, -3.449394844365258 ], [ 133.610244619999889, -3.435794844365248 ], [ 133.623244619999923, -3.429494844365252 ], [ 133.62994461999989, -3.439194844365247 ], [ 133.619644619999917, -3.449394844365258 ] ] ], [ [ [ 154.833044619999896, -3.510294844365248 ], [ 154.818544619999898, -3.530294844365258 ], [ 154.799444619999917, -3.424994844365258 ], [ 154.830244619999917, -3.480294844365247 ], [ 154.833044619999896, -3.510294844365248 ] ] ], [ [ [ 132.703544619999889, -3.519194844365245 ], [ 132.632144619999906, -3.448094844365258 ], [ 132.623244619999923, -3.421394844365253 ], [ 132.674144619999936, -3.418594844365245 ], [ 132.703544619999889, -3.519194844365245 ] ] ], [ [ [ 153.345244619999903, -3.411994844365253 ], [ 153.343244619999894, -3.416694844365253 ], [ 153.262444619999883, -3.404494844365246 ], [ 153.333544619999884, -3.371394844365255 ], [ 153.345244619999903, -3.411994844365253 ] ] ], [ [ [ 152.646344619999923, -3.228594844365247 ], [ 152.538844619999907, -3.106094844365245 ], [ 152.599644619999935, -3.048094844365252 ], [ 152.648544619999882, -3.048594844365255 ], [ 152.646344619999923, -3.228594844365247 ] ] ], [ [ [ 150.941344619999882, -2.921994844365258 ], [ 151.021644619999904, -2.971994844365256 ], [ 150.766044619999889, -2.979494844365249 ], [ 150.879044619999888, -2.90889484436525 ], [ 150.941344619999882, -2.921994844365258 ] ] ], [ [ [ 152.069944619999887, -3.001394844365251 ], [ 151.960444619999919, -2.887194844365254 ], [ 151.973544619999927, -2.848094844365249 ], [ 152.078844619999927, -2.928294844365254 ], [ 152.069944619999887, -3.001394844365251 ] ] ], [ [ [ 152.0021446199999, -2.828894844365252 ], [ 151.931644619999929, -2.832494844365257 ], [ 151.932444619999899, -2.708294844365255 ], [ 152.009144619999915, -2.749494844365245 ], [ 152.0021446199999, -2.828894844365252 ] ] ], [ [ [ 131.579644619999897, -2.656394844365252 ], [ 131.5652446199999, -2.651694844365252 ], [ 131.654444619999936, -2.621394844365255 ], [ 131.617444619999901, -2.646094844365251 ], [ 131.579644619999897, -2.656394844365252 ] ] ], [ [ [ 152.022144619999892, -2.667494844365251 ], [ 151.957744619999914, -2.664694844365258 ], [ 151.9838446199999, -2.596094844365254 ], [ 152.035244619999901, -2.631094844365251 ], [ 152.022144619999892, -2.667494844365251 ] ] ], [ [ [ 150.9065446199999, -2.635994844365257 ], [ 152.055744619999928, -3.247794844365245 ], [ 153.006944619999899, -4.093594844365256 ], [ 153.132144619999906, -4.378594844365253 ], [ 152.974644619999935, -4.766694844365247 ], [ 152.735444619999896, -4.660794844365256 ], [ 152.6916446199999, -4.180594844365245 ], [ 152.289444619999927, -3.579494844365257 ], [ 150.729644619999931, -2.740594844365248 ], [ 150.894944619999933, -2.704994844365245 ], [ 150.811344619999886, -2.559994844365249 ], [ 150.9065446199999, -2.635994844365257 ] ] ], [ [ [ 133.594944619999922, -2.525594844365258 ], [ 133.5258446199999, -2.486694844365246 ], [ 133.499144619999925, -2.42559484436525 ], [ 133.614444619999915, -2.477494844365253 ], [ 133.594944619999922, -2.525594844365258 ] ] ], [ [ [ 150.458244619999903, -2.653594844365259 ], [ 150.184144619999927, -2.685294844365245 ], [ 149.948544619999893, -2.471694844365246 ], [ 150.216344619999916, -2.377794844365255 ], [ 150.443244619999916, -2.475794844365254 ], [ 150.458244619999903, -2.653594844365259 ] ] ], [ [ [ 134.56744461999989, -2.453094844365253 ], [ 134.516644619999909, -2.396894844365249 ], [ 134.568844619999936, -2.292794844365247 ], [ 134.582444619999933, -2.433894844365255 ], [ 134.56744461999989, -2.453094844365253 ] ] ], [ [ [ 147.812444619999894, -2.349694844365246 ], [ 147.756944619999899, -2.352494844365253 ], [ 147.8152446199999, -2.243594844365248 ], [ 147.879044619999888, -2.293594844365245 ], [ 147.812444619999894, -2.349694844365246 ] ] ], [ [ [ 134.368844619999891, -2.158094844365252 ], [ 134.325544619999903, -2.088594844365247 ], [ 134.385844619999887, -2.003894844365249 ], [ 134.423544619999916, -2.048294844365245 ], [ 134.368844619999891, -2.158094844365252 ] ] ], [ [ [ 147.300744619999932, -2.025294844365249 ], [ 147.448044619999905, -2.01419484436525 ], [ 147.201844619999918, -2.191694844365259 ], [ 146.524944619999928, -2.190794844365257 ], [ 146.638544619999891, -1.978594844365247 ], [ 147.300744619999932, -2.025294844365249 ] ] ], [ [ [ 134.176044619999914, -1.944994844365254 ], [ 134.160544619999882, -1.845594844365252 ], [ 134.2338446199999, -1.740794844365254 ], [ 134.248844619999886, -1.782494844365246 ], [ 134.176044619999914, -1.944994844365254 ] ] ], [ [ [ 142.866344619999893, -1.697794844365248 ], [ 142.864344619999883, -1.713594844365247 ], [ 142.813544619999902, -1.732794844365259 ], [ 142.821044619999896, -1.695794844365253 ], [ 142.866344619999893, -1.697794844365248 ] ] ], [ [ [ 130.188544619999902, -2.064194844365247 ], [ 129.911944619999929, -2.003894844365249 ], [ 129.715744619999896, -1.88579484436525 ], [ 130.35054461999988, -1.680194844365246 ], [ 130.435244619999935, -1.977794844365249 ], [ 130.188544619999902, -2.064194844365247 ] ] ], [ [ [ 136.293544619999921, -1.688594844365255 ], [ 136.902144619999888, -1.799194844365246 ], [ 136.218844619999913, -1.874394844365256 ], [ 135.418044619999932, -1.609994844365247 ], [ 136.293544619999921, -1.688594844365255 ] ] ], [ [ [ 135.138344619999884, -1.485294844365256 ], [ 135.32944461999989, -1.487494844365258 ], [ 135.33084461999988, -1.49279484436525 ], [ 135.094444619999933, -1.512794844365246 ], [ 135.138344619999884, -1.485294844365256 ] ] ], [ [ [ 144.521844619999911, -1.395594844365249 ], [ 144.506044619999898, -1.389494844365245 ], [ 144.5055446199999, -1.380594844365248 ], [ 144.516344619999927, -1.381994844365252 ], [ 144.521844619999911, -1.395594844365249 ] ] ], [ [ [ 149.719644619999883, -1.43329484436525 ], [ 149.73184461999989, -1.603294844365251 ], [ 149.527744619999908, -1.454494844365257 ], [ 149.579944619999935, -1.355294844365247 ], [ 149.719644619999883, -1.43329484436525 ] ] ], [ [ [ 129.928844619999893, -1.211394844365245 ], [ 129.8357446199999, -1.24279484436525 ], [ 129.740544619999923, -1.208594844365251 ], [ 129.866644619999931, -1.142794844365255 ], [ 129.928844619999893, -1.211394844365245 ] ] ], [ [ [ 144.520544619999896, -1.12079484436525 ], [ 144.514444619999892, -1.11609484436525 ], [ 144.517144619999897, -1.098294844365256 ], [ 144.522444619999931, -1.105294844365247 ], [ 144.520544619999896, -1.12079484436525 ] ] ], [ [ [ 134.922444619999908, -1.138094844365256 ], [ 134.799744619999899, -1.03859484436525 ], [ 134.843044619999887, -0.941894844365251 ], [ 134.993044619999921, -1.023594844365249 ], [ 134.922444619999908, -1.138094844365256 ] ] ], [ [ [ 130.931344619999891, -0.936394844365253 ], [ 131.074644619999901, -0.972794844365254 ], [ 130.964444619999881, -1.357194844365253 ], [ 130.638844619999929, -0.983894844365253 ], [ 130.931344619999891, -0.936394844365253 ] ] ], [ [ [ 130.916344619999904, -0.794694844365253 ], [ 130.7963446199999, -0.876394844365251 ], [ 130.396944619999886, -0.926394844365248 ], [ 130.486644619999936, -0.835294844365251 ], [ 130.916344619999904, -0.794694844365253 ] ] ], [ [ [ 135.487744619999887, -0.67559484436525 ], [ 135.856344619999902, -0.705594844365251 ], [ 136.386144619999925, -1.12079484436525 ], [ 135.892244619999929, -1.191394844365249 ], [ 135.757244619999881, -0.825594844365256 ], [ 135.3671446199999, -0.652794844365246 ], [ 135.487744619999887, -0.67559484436525 ] ] ], [ [ [ 130.606044619999921, -0.541094844365247 ], [ 130.466044619999934, -0.527494844365251 ], [ 130.45584461999988, -0.468594844365256 ], [ 130.660244619999901, -0.426694844365258 ], [ 130.606044619999921, -0.541094844365247 ] ] ], [ [ [ 133.111944619999917, -0.536394844365248 ], [ 133.402444619999926, -0.728894844365257 ], [ 134.111044619999916, -0.835294844365251 ], [ 134.029444619999936, -0.97139484436525 ], [ 134.281144619999907, -1.357794844365259 ], [ 134.0877446199999, -1.675794844365257 ], [ 134.159744619999913, -2.319394844365249 ], [ 134.466644619999897, -2.86439484436525 ], [ 134.4830446199999, -2.529694844365252 ], [ 134.636144619999925, -2.513894844365254 ], [ 134.696944619999897, -2.967794844365258 ], [ 134.853344619999916, -2.904694844365252 ], [ 134.812744619999933, -3.128594844365253 ], [ 135.0041446199999, -3.341394844365254 ], [ 135.491944619999913, -3.358294844365247 ], [ 136.254744619999883, -2.576094844365258 ], [ 136.356644619999884, -2.253894844365249 ], [ 137.190544619999912, -2.103094844365245 ], [ 137.131044619999898, -1.792794844365247 ], [ 137.863544619999914, -1.471694844365246 ], [ 139.780844619999925, -2.36139484436525 ], [ 140.158644619999905, -2.323594844365246 ], [ 140.721844619999899, -2.489994844365256 ], [ 140.724444619999929, -2.636394844365256 ], [ 141.2141446199999, -2.622194844365254 ], [ 142.551844619999883, -3.218294844365246 ], [ 143.516044619999889, -3.434494844365247 ], [ 144.01694461999989, -3.810594844365255 ], [ 144.511644619999913, -3.820794844365253 ], [ 145.735444619999896, -4.802794844365252 ], [ 145.766344619999927, -5.485294844365256 ], [ 147.476844619999895, -5.974194844365257 ], [ 147.826344619999929, -6.337194844365257 ], [ 147.819444619999899, -6.713094844365258 ], [ 146.9710446199999, -6.743094844365245 ], [ 146.946344619999934, -6.959494844365253 ], [ 147.178544619999911, -7.463894844365257 ], [ 147.718544619999932, -7.932494844365252 ], [ 148.135244619999924, -8.066094844365253 ], [ 148.230544619999932, -8.559694844365254 ], [ 148.445744619999914, -8.678894844365246 ], [ 148.588844619999918, -9.07029484436525 ], [ 149.3146446199999, -9.018894844365249 ], [ 149.219944619999922, -9.474694844365246 ], [ 150.008844619999934, -9.631394844365246 ], [ 150.051844619999883, -9.724194844365257 ], [ 149.717444619999924, -9.82669484436525 ], [ 149.914144619999888, -10.04889484436525 ], [ 150.878244619999919, -10.231694844365251 ], [ 150.369044619999897, -10.32199484436525 ], [ 150.691344619999882, -10.561094844365257 ], [ 150.209644619999892, -10.700594844365256 ], [ 149.85054461999988, -10.546994844365258 ], [ 150.078844619999927, -10.462794844365249 ], [ 149.747744619999935, -10.342794844365258 ], [ 147.952444619999881, -10.145794844365255 ], [ 147.055244619999883, -9.46669484436525 ], [ 146.891644619999909, -9.272494844365255 ], [ 146.972444619999919, -9.02919484436525 ], [ 146.586644619999902, -8.999194844365249 ], [ 146.089644619999888, -8.091094844365259 ], [ 145.182644619999905, -7.813794844365248 ], [ 144.879644619999908, -7.782494844365246 ], [ 144.862444619999906, -7.610594844365252 ], [ 144.588244619999898, -7.657494844365246 ], [ 144.520544619999896, -7.501994844365257 ], [ 144.508344619999889, -7.621394844365255 ], [ 144.406844619999902, -7.519494844365255 ], [ 144.467744619999905, -7.743094844365245 ], [ 144.310744619999923, -7.616694844365256 ], [ 144.212944619999917, -7.795294844365259 ], [ 143.664844619999883, -7.467694844365255 ], [ 143.957944619999921, -7.978594844365247 ], [ 143.35824461999988, -7.902494844365251 ], [ 143.611844619999886, -8.243894844365258 ], [ 142.973244619999889, -8.344194844365248 ], [ 142.696344619999934, -8.267494844365245 ], [ 142.437444619999894, -8.331394844365249 ], [ 142.386644619999913, -8.193594844365251 ], [ 142.327744619999919, -8.163894844365245 ], [ 142.137144619999901, -8.225594844365247 ], [ 142.314144619999922, -8.179994844365254 ], [ 142.439344619999929, -8.371394844365255 ], [ 143.096544619999918, -8.463594844365247 ], [ 143.392744619999917, -8.770294844365253 ], [ 143.3671446199999, -9.01079484436525 ], [ 142.638844619999929, -9.334694844365245 ], [ 142.209944619999931, -9.164994844365253 ], [ 141.117444619999901, -9.229994844365251 ], [ 139.985244619999889, -8.193594844365251 ], [ 140.146044619999884, -7.884694844365256 ], [ 139.915844619999916, -8.114694844365246 ], [ 139.366344619999893, -8.206394844365249 ], [ 139.218244619999894, -8.089194844365252 ], [ 138.911944619999929, -8.299994844365258 ], [ 138.83714461999989, -8.125594844365253 ], [ 138.994944619999899, -7.863894844365248 ], [ 139.095544619999885, -7.564194844365247 ], [ 138.661144619999902, -7.203294844365246 ], [ 139.050544619999926, -7.251694844365247 ], [ 139.175844619999907, -7.238894844365248 ], [ 139.222444619999919, -7.162494844365256 ], [ 138.847444619999919, -7.153894844365254 ], [ 138.561944619999906, -6.90889484436525 ], [ 139.189444619999904, -6.969394844365254 ], [ 138.681944619999911, -6.720594844365252 ], [ 138.167744619999894, -5.793294844365249 ], [ 138.35824461999988, -5.68029484436525 ], [ 138.077444619999881, -5.738894844365248 ], [ 138.064444619999904, -5.406094844365256 ], [ 135.928344619999905, -4.498594844365257 ], [ 135.204644619999897, -4.459694844365245 ], [ 134.643544619999886, -4.121394844365255 ], [ 134.694944619999887, -3.939694844365249 ], [ 134.965544619999889, -3.939694844365249 ], [ 134.675844619999907, -3.914394844365248 ], [ 134.521644619999904, -4.026394844365257 ], [ 134.215744619999896, -3.963094844365258 ], [ 134.160544619999882, -3.773594844365249 ], [ 133.637444619999883, -3.491694844365256 ], [ 133.828844619999927, -2.961694844365255 ], [ 133.394944619999933, -3.742194844365258 ], [ 133.449744619999933, -3.871394844365255 ], [ 133.237444619999906, -4.076394844365254 ], [ 132.909744619999913, -4.096894844365252 ], [ 132.750844619999896, -3.718294844365246 ], [ 132.927744619999885, -3.557494844365252 ], [ 132.8180446199999, -3.303094844365248 ], [ 131.95584461999988, -2.783594844365254 ], [ 132.317744619999928, -2.682194844365256 ], [ 132.722744619999901, -2.817194844365247 ], [ 133.238844619999895, -2.416094844365247 ], [ 133.648544619999882, -2.543894844365255 ], [ 133.684144619999927, -2.716394844365254 ], [ 133.955544619999898, -2.329194844365247 ], [ 133.950844619999884, -2.207794844365253 ], [ 133.787744619999899, -2.25779484436525 ], [ 133.936344619999886, -2.103094844365245 ], [ 133.643844619999925, -2.238594844365252 ], [ 132.301344619999895, -2.269394844365252 ], [ 132.039444619999927, -2.083894844365247 ], [ 131.882444619999887, -1.64219484436525 ], [ 131.278844619999916, -1.379194844365259 ], [ 131.207744619999914, -1.527194844365255 ], [ 130.96354461999988, -1.403094844365256 ], [ 131.248844619999886, -1.096894844365252 ], [ 131.2555446199999, -0.822794844365248 ], [ 131.873044619999916, -0.693894844365246 ], [ 132.269744619999926, -0.384194844365254 ], [ 133.111944619999917, -0.536394844365248 ] ] ], [ [ [ 130.669744619999904, -0.328894844365252 ], [ 130.6622446199999, -0.325294844365246 ], [ 130.666344619999904, -0.315794844365257 ], [ 130.671044619999918, -0.317794844365253 ], [ 130.669744619999904, -0.328894844365252 ] ] ], [ [ [ 130.877444619999892, -0.019194844365245 ], [ 131.298044619999928, -0.164194844365255 ], [ 131.2555446199999, -0.387794844365246 ], [ 130.96354461999988, -0.359694844365251 ], [ 130.688244619999921, -0.079394844365254 ], [ 130.915844619999916, -0.40889484436525 ], [ 130.213244619999898, -0.206694844365245 ], [ 130.877444619999892, -0.019194844365245 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 50, "LEVEL1_COD": 5, "LEVEL1_NAM": "AUSTRALASIA", "LEVEL2_NAM": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.362744619999887, -43.398094844365247 ], [ 147.302744619999885, -43.513294844365248 ], [ 147.122944619999885, -43.421994844365258 ], [ 147.291944619999924, -43.261994844365248 ], [ 147.362744619999887, -43.398094844365247 ] ] ], [ [ [ 147.4296446199999, -43.253594844365253 ], [ 147.291944619999924, -43.164494844365251 ], [ 147.359944619999908, -43.073594844365246 ], [ 147.3982446199999, -43.122194844365254 ], [ 147.4296446199999, -43.253594844365253 ] ] ], [ [ [ 148.1705446199999, -42.663894844365245 ], [ 148.097744619999901, -42.666094844365247 ], [ 148.014144619999911, -42.753094844365251 ], [ 148.021044619999884, -42.618094844365245 ], [ 148.1705446199999, -42.663894844365245 ] ] ], [ [ [ 148.333244619999903, -42.358894844365253 ], [ 148.242744619999883, -42.327494844365248 ], [ 148.231044619999921, -42.30189484436525 ], [ 148.319044619999886, -42.312794844365257 ], [ 148.333244619999903, -42.358894844365253 ] ] ], [ [ [ 145.107744619999892, -40.821694844365254 ], [ 146.586044619999882, -41.186694844365249 ], [ 146.722444619999919, -41.069494844365252 ], [ 146.9410446199999, -41.169694844365253 ], [ 146.818244619999916, -41.057794844365247 ], [ 147.013044619999903, -40.976394844365245 ], [ 147.867444619999901, -40.88279484436525 ], [ 147.973844619999909, -40.743294844365252 ], [ 148.223244619999889, -40.850794844365254 ], [ 148.365444619999892, -42.214994844365251 ], [ 148.183844619999888, -41.943094844365248 ], [ 147.842944619999912, -42.869494844365249 ], [ 147.998844619999886, -42.904694844365252 ], [ 147.99524461999988, -43.229694844365255 ], [ 147.789644619999933, -43.246994844365247 ], [ 147.631544619999886, -43.065594844365251 ], [ 147.693544619999898, -42.937194844365251 ], [ 147.896344619999923, -43.029994844365248 ], [ 147.825744619999909, -42.931994844365249 ], [ 147.557444619999899, -42.830594844365251 ], [ 147.436844619999931, -43.044994844365249 ], [ 147.31744461999989, -42.846694844365246 ], [ 147.246344619999888, -43.271694844365257 ], [ 146.9710446199999, -43.134694844365256 ], [ 147.10054461999988, -43.297494844365247 ], [ 146.916644619999886, -43.617894844365253 ], [ 146.038244619999887, -43.498094844365255 ], [ 145.931044619999909, -43.373094844365255 ], [ 146.236344619999898, -43.327194844365252 ], [ 145.851344619999907, -43.307194844365256 ], [ 145.496844619999933, -42.957794844365253 ], [ 145.205244619999917, -42.256994844365252 ], [ 145.469344619999902, -42.523094844365247 ], [ 145.551844619999883, -42.344194844365248 ], [ 145.280244619999905, -42.181094844365248 ], [ 144.682444619999899, -41.223294844365256 ], [ 144.701344619999929, -40.759194844365254 ], [ 145.107744619999892, -40.821694844365254 ] ] ], [ [ [ 144.926344619999895, -40.722494844365258 ], [ 144.865244619999885, -40.674194844365246 ], [ 144.924144619999936, -40.615294844365252 ], [ 145.016044619999889, -40.695594844365246 ], [ 144.926344619999895, -40.722494844365258 ] ] ], [ [ [ 148.200244619999921, -40.594194844365248 ], [ 148.119344619999936, -40.566394844365249 ], [ 148.097144619999881, -40.53389484436525 ], [ 148.215744619999896, -40.501994844365257 ], [ 148.200244619999921, -40.594194844365248 ] ] ], [ [ [ 144.7555446199999, -40.596694844365246 ], [ 144.717444619999924, -40.503894844365249 ], [ 144.779644619999885, -40.409394844365252 ], [ 144.790544619999935, -40.493094844365245 ], [ 144.7555446199999, -40.596694844365246 ] ] ], [ [ [ 144.941344619999882, -40.458894844365247 ], [ 144.872144619999915, -40.47139484436525 ], [ 144.832144619999895, -40.433594844365246 ], [ 144.949644619999901, -40.387194844365254 ], [ 144.941344619999882, -40.458894844365247 ] ] ], [ [ [ 148.354644619999931, -40.315594844365251 ], [ 148.475744619999887, -40.443894844365246 ], [ 147.993544619999909, -40.420594844365255 ], [ 148.068244619999916, -40.347194844365248 ], [ 148.354644619999931, -40.315594844365251 ] ] ], [ [ [ 148.177444619999903, -40.256994844365252 ], [ 147.760744619999912, -39.883594844365248 ], [ 147.881844619999924, -39.754194844365259 ], [ 148.279344619999904, -39.965794844365249 ], [ 148.330544619999898, -40.222194844365248 ], [ 148.177444619999903, -40.256994844365252 ] ] ], [ [ [ 143.957744619999914, -40.109994844365247 ], [ 143.834644619999892, -39.924494844365256 ], [ 143.972944619999907, -39.57329484436525 ], [ 144.147444619999931, -39.927194844365246 ], [ 143.957744619999914, -40.109994844365247 ] ] ], [ [ [ 147.353544619999923, -39.499394844365256 ], [ 147.307444619999899, -39.487494844365258 ], [ 147.344344619999902, -39.448094844365258 ], [ 147.375744619999921, -39.464194844365252 ], [ 147.353544619999923, -39.499394844365256 ] ] ], [ [ [ 147.299944619999906, -39.482194844365253 ], [ 147.285244619999901, -39.473894844365248 ], [ 147.31544461999988, -39.431994844365249 ], [ 147.311044619999905, -39.469994844365246 ], [ 147.299944619999906, -39.482194844365253 ] ] ], [ [ [ 146.655544619999887, -38.769694844365247 ], [ 146.544744619999904, -38.800294844365254 ], [ 146.467744619999905, -38.758094844365246 ], [ 146.574144619999913, -38.746394844365255 ], [ 146.655544619999887, -38.769694844365247 ] ] ], [ [ [ 145.311644619999925, -38.467794844365258 ], [ 145.361344619999898, -38.569194844365256 ], [ 145.113544619999914, -38.528894844365254 ], [ 145.1902446199999, -38.466894844365257 ], [ 145.311644619999925, -38.467794844365258 ] ] ], [ [ [ 145.492744619999883, -38.374394844365256 ], [ 145.355844619999914, -38.431094844365248 ], [ 145.271044619999884, -38.363294844365257 ], [ 145.305844619999903, -38.296994844365258 ], [ 145.492744619999883, -38.374394844365256 ] ] ], [ [ [ 137.584944619999931, -35.650794844365251 ], [ 138.112744619999887, -35.869694844365256 ], [ 137.749344619999931, -35.86779484436525 ], [ 137.457744619999914, -36.086694844365255 ], [ 136.71214461999989, -36.056694844365254 ], [ 136.534444619999931, -35.912494844365256 ], [ 136.605844619999914, -35.758094844365246 ], [ 137.584944619999931, -35.650794844365251 ] ] ], [ [ [ 136.49524461999988, -35.17559484436525 ], [ 136.438844619999884, -35.167494844365251 ], [ 136.434444619999908, -35.158094844365252 ], [ 136.466644619999897, -35.138594844365258 ], [ 136.49524461999988, -35.17559484436525 ] ] ], [ [ [ 136.202744619999919, -35.076994844365245 ], [ 136.155544619999887, -35.063594844365255 ], [ 136.086644619999902, -34.947194844365256 ], [ 136.195844619999889, -35.026394844365257 ], [ 136.202744619999919, -35.076994844365245 ] ] ], [ [ [ 118.471944619999931, -34.938294844365245 ], [ 118.435844619999898, -34.924694844365249 ], [ 118.424744619999899, -34.907794844365256 ], [ 118.476344619999907, -34.918094844365257 ], [ 118.471944619999931, -34.938294844365245 ] ] ], [ [ [ 137.3580446199999, -34.540294844365249 ], [ 137.334444619999886, -34.515594844365253 ], [ 137.3657446199999, -34.477794844365249 ], [ 137.376644619999922, -34.513294844365248 ], [ 137.3580446199999, -34.540294844365249 ] ] ], [ [ [ 122.246944619999908, -34.151694844365252 ], [ 122.228044619999935, -34.151694844365252 ], [ 122.229944619999912, -34.112194844365249 ], [ 122.2555446199999, -34.124394844365256 ], [ 122.246944619999908, -34.151694844365252 ] ] ], [ [ [ 123.207444619999933, -34.111994844365256 ], [ 123.170244619999892, -34.117194844365258 ], [ 123.167744619999894, -34.094394844365254 ], [ 123.215844619999928, -34.086094844365249 ], [ 123.207444619999933, -34.111994844365256 ] ] ], [ [ [ 134.486644619999936, -33.779994844365248 ], [ 134.480244619999894, -33.714194844365252 ], [ 134.540244619999896, -33.696694844365254 ], [ 134.551644619999934, -33.741694844365256 ], [ 134.486644619999936, -33.779994844365248 ] ] ], [ [ [ 133.589444619999881, -32.311694844365249 ], [ 133.533644619999905, -32.304394844365248 ], [ 133.674944619999906, -32.240594844365248 ], [ 133.676344619999895, -32.245594844365257 ], [ 133.589444619999881, -32.311694844365249 ] ] ], [ [ [ 115.680244619999883, -32.228294844365251 ], [ 115.660844619999921, -32.233594844365257 ], [ 115.6488446199999, -32.152194844365255 ], [ 115.658844619999911, -32.156394844365252 ], [ 115.680244619999883, -32.228294844365251 ] ] ], [ [ [ 159.070844619999889, -31.523594844365249 ], [ 159.101944619999927, -31.571094844365248 ], [ 159.070844619999889, -31.599994844365256 ], [ 159.0449446199999, -31.524694844365257 ], [ 159.070844619999889, -31.523594844365249 ] ] ], [ [ [ 167.983344619999912, -29.066094844365253 ], [ 167.923544619999916, -29.056694844365254 ], [ 167.912444619999917, -29.005294844365253 ], [ 167.997744619999935, -29.024994844365253 ], [ 167.983344619999912, -29.066094844365253 ] ] ], [ [ [ 153.451344619999929, -27.729194844365253 ], [ 153.433544619999907, -27.416094844365247 ], [ 153.538544619999925, -27.416694844365253 ], [ 153.474944619999917, -27.613894844365248 ], [ 153.451344619999929, -27.729194844365253 ] ] ], [ [ [ 153.414944619999915, -27.248094844365255 ], [ 153.425244619999887, -27.362794844365254 ], [ 153.356044619999921, -27.068094844365248 ], [ 153.454144619999909, -27.017794844365255 ], [ 153.414944619999915, -27.248094844365255 ] ] ], [ [ [ 113.209144619999904, -26.140794844365246 ], [ 112.953344619999882, -25.786994844365253 ], [ 112.951144619999923, -25.488594844365252 ], [ 113.004444619999902, -25.495594844365257 ], [ 113.209144619999904, -26.140794844365246 ] ] ], [ [ [ 153.003644619999932, -25.339994844365251 ], [ 152.9824446199999, -25.331694844365245 ], [ 152.948844619999932, -25.272494844365255 ], [ 152.992444619999901, -25.307794844365247 ], [ 153.003644619999932, -25.339994844365251 ] ] ], [ [ [ 113.073644619999925, -25.233594844365257 ], [ 113.061644619999925, -25.278594844365259 ], [ 113.101644619999888, -25.097194844365248 ], [ 113.073644619999925, -25.233594844365257 ] ] ], [ [ [ 113.139744619999931, -24.926694844365258 ], [ 113.114944619999903, -24.99579484436525 ], [ 113.147244619999924, -24.759994844365252 ], [ 113.160244619999901, -24.787494844365256 ], [ 113.139744619999931, -24.926694844365258 ] ] ], [ [ [ 153.077144619999899, -25.798594844365255 ], [ 152.9430446199999, -25.55829484436525 ], [ 153.281644619999895, -24.699194844365252 ], [ 153.371044619999907, -25.01419484436525 ], [ 153.077144619999899, -25.798594844365255 ] ] ], [ [ [ 151.382144619999906, -23.88279484436525 ], [ 151.330544619999898, -23.813294844365245 ], [ 151.326944619999892, -23.753094844365251 ], [ 151.385244619999924, -23.846694844365246 ], [ 151.382144619999906, -23.88279484436525 ] ] ], [ [ [ 151.269444619999888, -23.780594844365254 ], [ 151.0660446199999, -23.605294844365247 ], [ 151.019944619999933, -23.454494844365257 ], [ 151.203044619999901, -23.528894844365254 ], [ 151.269444619999888, -23.780594844365254 ] ] ], [ [ [ 150.982144619999929, -23.195594844365246 ], [ 150.947244619999935, -23.195594844365246 ], [ 150.978344619999916, -23.150594844365258 ], [ 150.9921446199999, -23.183594844365246 ], [ 150.982144619999929, -23.195594844365246 ] ] ], [ [ [ 149.735544619999928, -22.423094844365252 ], [ 149.711644619999902, -22.429994844365254 ], [ 149.733544619999918, -22.340594844365256 ], [ 149.760844619999887, -22.363894844365248 ], [ 149.735544619999928, -22.423094844365252 ] ] ], [ [ [ 150.491644619999931, -22.354694844365255 ], [ 150.458344619999934, -22.310594844365255 ], [ 150.489944619999903, -22.213094844365258 ], [ 150.560244619999935, -22.304494844365252 ], [ 150.491644619999931, -22.354694844365255 ] ] ], [ [ [ 149.9008446199999, -22.228294844365251 ], [ 149.8657446199999, -22.17389484436525 ], [ 149.908344619999923, -22.046994844365258 ], [ 149.930844619999903, -22.134194844365254 ], [ 149.9008446199999, -22.228294844365251 ] ] ], [ [ [ 150.336944619999883, -21.775594844365258 ], [ 150.293544619999921, -21.750594844365253 ], [ 150.294444619999922, -21.744394844365246 ], [ 150.3588446199999, -21.733294844365247 ], [ 150.336944619999883, -21.775594844365258 ] ] ], [ [ [ 150.286944619999929, -21.687494844365247 ], [ 150.241944619999913, -21.667194844365255 ], [ 150.253844619999882, -21.638094844365256 ], [ 150.305244619999883, -21.659994844365258 ], [ 150.286944619999929, -21.687494844365247 ] ] ], [ [ [ 115.454944619999935, -20.782494844365246 ], [ 115.378044619999912, -20.876094844365255 ], [ 115.303844619999893, -20.872794844365245 ], [ 115.435244619999935, -20.667194844365255 ], [ 115.454944619999935, -20.782494844365246 ] ] ], [ [ [ 149.0666446199999, -20.526694844365252 ], [ 149.036944619999929, -20.501694844365247 ], [ 149.074944619999883, -20.486894844365253 ], [ 149.083044619999896, -20.494394844365246 ], [ 149.0666446199999, -20.526694844365252 ] ] ], [ [ [ 149.006344619999936, -20.318294844365255 ], [ 148.955544619999898, -20.291394844365257 ], [ 148.97554461999988, -20.154994844365248 ], [ 149.037444619999917, -20.276094844365247 ], [ 149.006344619999936, -20.318294844365255 ] ] ], [ [ [ 148.935744619999923, -20.171894844365255 ], [ 148.881944619999899, -20.130294844365253 ], [ 148.970244619999903, -20.048594844365255 ], [ 148.978044619999935, -20.074694844365254 ], [ 148.935744619999923, -20.171894844365255 ] ] ], [ [ [ 148.471344619999911, -20.046394844365253 ], [ 148.445244619999926, -20.032494844365246 ], [ 148.449744619999933, -19.970794844365258 ], [ 148.482144619999929, -20.006094844365251 ], [ 148.471344619999911, -20.046394844365253 ] ] ], [ [ [ 146.867744619999883, -19.164994844365253 ], [ 146.809444619999908, -19.178294844365254 ], [ 146.77604461999988, -19.131094844365251 ], [ 146.864444619999915, -19.104694844365255 ], [ 146.867744619999883, -19.164994844365253 ] ] ], [ [ [ 146.299444619999917, -18.48939484436525 ], [ 146.220544619999885, -18.468294844365246 ], [ 146.084944619999931, -18.250794844365245 ], [ 146.269744619999926, -18.30829484436525 ], [ 146.299444619999917, -18.48939484436525 ] ] ], [ [ [ 139.576044619999891, -17.095794844365258 ], [ 139.428344619999905, -17.146094844365251 ], [ 139.3988446199999, -17.091394844365254 ], [ 139.5027446199999, -16.996694844365251 ], [ 139.576044619999891, -17.095794844365258 ] ] ], [ [ [ 139.112144619999924, -16.862194844365249 ], [ 139.090744619999896, -16.82669484436525 ], [ 139.139944619999881, -16.810594844365255 ], [ 139.155844619999925, -16.829494844365257 ], [ 139.112144619999924, -16.862194844365249 ] ] ], [ [ [ 139.736344619999898, -16.497194844365254 ], [ 139.489144619999934, -16.538094844365247 ], [ 139.140244619999919, -16.754994844365257 ], [ 139.306644619999929, -16.462494844365253 ], [ 139.736344619999898, -16.497194844365254 ] ] ], [ [ [ 149.629444619999902, -15.706694844365245 ], [ 149.618544619999909, -15.711094844365249 ], [ 149.621644619999927, -15.702194844365252 ], [ 149.629444619999902, -15.706694844365245 ] ] ], [ [ [ 136.667244619999906, -15.776694844365252 ], [ 136.612744619999887, -15.729194844365253 ], [ 136.634944619999885, -15.676094844365252 ], [ 136.713044619999891, -15.697794844365248 ], [ 136.667244619999906, -15.776694844365252 ] ] ], [ [ [ 136.741944619999913, -15.752194844365249 ], [ 136.734144619999881, -15.648094844365247 ], [ 136.809444619999908, -15.650294844365249 ], [ 136.825844619999884, -15.693294844365255 ], [ 136.741944619999913, -15.752194844365249 ] ] ], [ [ [ 137.067244619999883, -15.829494844365257 ], [ 136.934444619999908, -15.698894844365256 ], [ 137.003044619999912, -15.591394844365254 ], [ 137.093044619999887, -15.766394844365252 ], [ 137.067244619999883, -15.829494844365257 ] ] ], [ [ [ 136.529944619999924, -15.645294844365253 ], [ 136.519444619999888, -15.549694844365249 ], [ 136.57944461999989, -15.511094844365246 ], [ 136.597744619999901, -15.61609484436525 ], [ 136.529944619999924, -15.645294844365253 ] ] ], [ [ [ 136.851344619999907, -15.634194844365254 ], [ 136.841944619999936, -15.549694844365249 ], [ 136.8785446199999, -15.501894844365253 ], [ 136.883044619999907, -15.589194844365252 ], [ 136.851344619999907, -15.634194844365254 ] ] ], [ [ [ 124.621644619999927, -15.412194844365246 ], [ 124.522444619999931, -15.44529484436525 ], [ 124.493044619999921, -15.286694844365257 ], [ 124.55974461999989, -15.259994844365252 ], [ 124.621644619999927, -15.412194844365246 ] ] ], [ [ [ 124.426344619999895, -15.314994844365245 ], [ 124.381044619999898, -15.324194844365252 ], [ 124.336644619999902, -15.296094844365257 ], [ 124.437444619999894, -15.249394844365256 ], [ 124.426344619999895, -15.314994844365245 ] ] ], [ [ [ 124.8160446199999, -15.281094844365256 ], [ 124.797444619999908, -15.239694844365246 ], [ 124.849944619999917, -15.247194844365254 ], [ 124.847744619999901, -15.257194844365259 ], [ 124.8160446199999, -15.281094844365256 ] ] ], [ [ [ 128.191944619999902, -15.188594844365255 ], [ 128.114644619999922, -15.131894844365249 ], [ 128.120544619999919, -15.043094844365257 ], [ 128.192744619999928, -15.125294844365257 ], [ 128.191944619999902, -15.188594844365255 ] ] ], [ [ [ 124.943344619999891, -15.029994844365248 ], [ 124.861944619999917, -14.991894844365248 ], [ 124.874644619999913, -14.952194844365252 ], [ 124.924444619999917, -14.944994844365254 ], [ 124.943344619999891, -15.029994844365248 ] ] ], [ [ [ 128.4410446199999, -15.037494844365256 ], [ 128.357144619999929, -14.959994844365255 ], [ 128.35054461999988, -14.871094844365246 ], [ 128.393844619999925, -14.909394844365252 ], [ 128.4410446199999, -15.037494844365256 ] ] ], [ [ [ 135.764944619999881, -14.90419484436525 ], [ 135.699444619999895, -14.907794844365256 ], [ 135.728344619999916, -14.836694844365255 ], [ 135.766044619999889, -14.851694844365255 ], [ 135.764944619999881, -14.90419484436525 ] ] ], [ [ [ 129.62994461999989, -14.879394844365251 ], [ 129.5891446199999, -14.841094844365259 ], [ 129.580544619999898, -14.802794844365252 ], [ 129.630844619999891, -14.850794844365254 ], [ 129.62994461999989, -14.879394844365251 ] ] ], [ [ [ 129.589444619999881, -14.907794844365256 ], [ 129.592444619999924, -14.96669484436525 ], [ 129.501944619999904, -14.78859484436525 ], [ 129.532744619999903, -14.804194844365256 ], [ 129.589444619999881, -14.907794844365256 ] ] ], [ [ [ 145.476044619999925, -14.669394844365257 ], [ 145.468344619999925, -14.687194844365251 ], [ 145.438644619999934, -14.671894844365255 ], [ 145.449944619999883, -14.645594844365249 ], [ 145.476044619999925, -14.669394844365257 ] ] ], [ [ [ 125.138344619999884, -14.648594844365249 ], [ 125.084744619999924, -14.617194844365258 ], [ 125.159444619999931, -14.438294844365245 ], [ 125.209144619999904, -14.486894844365253 ], [ 125.138344619999884, -14.648594844365249 ] ] ], [ [ [ 126.606344619999902, -13.895594844365249 ], [ 126.511944619999895, -13.909394844365252 ], [ 126.502444619999892, -13.877794844365255 ], [ 126.517444619999935, -13.872194844365254 ], [ 126.606344619999902, -13.895594844365249 ] ] ], [ [ [ 136.288344619999918, -13.733294844365247 ], [ 136.241944619999913, -13.846694844365246 ], [ 136.105544619999932, -13.818094844365248 ], [ 136.198844619999932, -13.664694844365258 ], [ 136.288344619999918, -13.733294844365247 ] ] ], [ [ [ 136.711644619999902, -13.835794844365253 ], [ 136.912444619999917, -13.774394844365247 ], [ 136.699444619999895, -14.12079484436525 ], [ 136.974444619999929, -14.152794844365246 ], [ 136.9416446199999, -14.277794844365246 ], [ 136.378044619999912, -14.216394844365254 ], [ 136.454144619999909, -13.838294844365251 ], [ 136.713244619999898, -13.651994844365248 ], [ 136.711644619999902, -13.835794844365253 ] ] ], [ [ [ 136.1508446199999, -13.485794844365245 ], [ 136.16164461999989, -13.531094844365256 ], [ 136.098844619999909, -13.361094844365255 ], [ 136.178844619999893, -13.446394844365258 ], [ 136.1508446199999, -13.485794844365245 ] ] ], [ [ [ 122.974444619999929, -12.273594844365249 ], [ 122.966944619999936, -12.279694844365252 ], [ 122.964444619999881, -12.268894844365249 ], [ 122.974444619999929, -12.273594844365249 ] ] ], [ [ [ 136.820544619999907, -12.140594844365253 ], [ 136.800544619999926, -12.094194844365248 ], [ 136.826044619999891, -12.072194844365256 ], [ 136.831044619999886, -12.130594844365248 ], [ 136.820544619999907, -12.140594844365253 ] ] ], [ [ [ 132.404644619999885, -12.140794844365246 ], [ 132.341644619999897, -12.102794844365249 ], [ 132.340244619999908, -12.089694844365255 ], [ 132.402144619999888, -12.072194844365256 ], [ 132.404644619999885, -12.140794844365246 ] ] ], [ [ [ 134.909944619999919, -12.121094844365246 ], [ 134.8785446199999, -12.113594844365252 ], [ 134.866944619999913, -12.066694844365259 ], [ 134.927744619999885, -12.072794844365248 ], [ 134.909944619999919, -12.121094844365246 ] ] ], [ [ [ 134.985744619999934, -12.034194844365246 ], [ 134.944944619999887, -12.061394844365253 ], [ 134.911344619999909, -12.022194844365245 ], [ 134.959944619999931, -12.011694844365252 ], [ 134.985744619999934, -12.034194844365246 ] ] ], [ [ [ 136.281944619999933, -12.035594844365249 ], [ 136.189444619999904, -12.083894844365247 ], [ 136.158344619999923, -12.071394844365258 ], [ 136.306344619999891, -11.976894844365248 ], [ 136.281944619999933, -12.035594844365249 ] ] ], [ [ [ 135.115544619999923, -11.934394844365258 ], [ 135.056044619999909, -11.95169484436525 ], [ 135.047444619999908, -11.945594844365246 ], [ 135.064944619999892, -11.91359484436525 ], [ 135.115544619999923, -11.934394844365258 ] ] ], [ [ [ 136.473544619999927, -11.911094844365252 ], [ 136.469444619999933, -11.840594844365256 ], [ 136.494944619999899, -11.803094844365248 ], [ 136.498544619999905, -11.817794844365253 ], [ 136.473544619999927, -11.911094844365252 ] ] ], [ [ [ 136.589444619999881, -11.780594844365254 ], [ 136.527144619999888, -11.809194844365251 ], [ 136.516044619999889, -11.798594844365255 ], [ 136.624644619999913, -11.740294844365252 ], [ 136.589444619999881, -11.780594844365254 ] ] ], [ [ [ 136.012744619999921, -11.719194844365248 ], [ 135.959944619999931, -11.684194844365251 ], [ 136.053844619999893, -11.659994844365258 ], [ 136.053344619999905, -11.669494844365246 ], [ 136.012744619999921, -11.719194844365248 ] ] ], [ [ [ 132.560244619999935, -11.72439484436525 ], [ 132.513844619999929, -11.643894844365249 ], [ 132.643044619999898, -11.648094844365247 ], [ 132.631344619999936, -11.711094844365249 ], [ 132.560244619999935, -11.72439484436525 ] ] ], [ [ [ 133.383844619999934, -11.667494844365251 ], [ 133.366944619999913, -11.614694844365246 ], [ 133.4824446199999, -11.586894844365247 ], [ 133.481644619999884, -11.609994844365247 ], [ 133.383844619999934, -11.667494844365251 ] ] ], [ [ [ 136.470544619999885, -11.519194844365245 ], [ 136.373244619999923, -11.592494844365248 ], [ 136.178344619999905, -11.687794844365257 ], [ 136.478844619999904, -11.466094844365259 ], [ 136.470544619999885, -11.519194844365245 ] ] ], [ [ [ 133.5055446199999, -11.503894844365249 ], [ 133.431344619999891, -11.50779484436525 ], [ 133.391344619999927, -11.543894844365255 ], [ 133.469444619999933, -11.460794844365253 ], [ 133.5055446199999, -11.503894844365249 ] ] ], [ [ [ 130.491044619999911, -11.688594844365255 ], [ 130.6157446199999, -11.821094844365248 ], [ 130.016344619999927, -11.779694844365252 ], [ 130.342444619999924, -11.323594844365246 ], [ 130.491044619999911, -11.688594844365255 ] ] ], [ [ [ 130.573344619999887, -11.34939484436525 ], [ 131.142244619999929, -11.254494844365254 ], [ 131.223044619999882, -11.405294844365258 ], [ 131.274944619999928, -11.189194844365247 ], [ 131.539144619999888, -11.461694844365255 ], [ 130.958844619999923, -11.938894844365251 ], [ 130.497144619999915, -11.648094844365247 ], [ 130.377444619999892, -11.170594844365255 ], [ 130.573344619999887, -11.34939484436525 ] ] ], [ [ [ 132.623844619999886, -11.27919484436525 ], [ 132.512444619999883, -11.143094844365251 ], [ 132.578844619999927, -11.022494844365255 ], [ 132.626344619999884, -11.177794844365252 ], [ 132.623844619999886, -11.27919484436525 ] ] ], [ [ [ 136.536144619999902, -11.454994844365245 ], [ 136.508044619999907, -11.40719484436525 ], [ 136.771944619999886, -11.019694844365247 ], [ 136.724944619999917, -11.206894844365252 ], [ 136.536144619999902, -11.454994844365245 ] ] ], [ [ [ 142.512744619999921, -10.866894844365248 ], [ 142.791044619999923, -11.087794844365249 ], [ 142.865244619999885, -11.846094844365254 ], [ 143.199144619999913, -11.987494844365258 ], [ 143.075844619999884, -12.335794844365253 ], [ 143.429144619999931, -12.61439484436525 ], [ 143.531644619999895, -13.762194844365254 ], [ 143.782244619999915, -14.413294844365254 ], [ 144.012244619999933, -14.488294844365257 ], [ 144.510544619999905, -14.168294844365249 ], [ 144.674644619999924, -14.555794844365252 ], [ 145.315844619999893, -14.945594844365246 ], [ 145.403644619999909, -16.462194844365257 ], [ 145.806044619999909, -16.913094844365247 ], [ 145.960544619999894, -16.895294844365253 ], [ 145.878044619999912, -17.062794844365257 ], [ 146.106644619999884, -17.683594844365246 ], [ 146.009444619999897, -18.23809484436525 ], [ 146.211944619999883, -18.491694844365256 ], [ 146.336944619999883, -18.536694844365257 ], [ 146.2752446199999, -18.883894844365258 ], [ 147.139444619999892, -19.402794844365246 ], [ 147.432444619999899, -19.412794844365251 ], [ 147.410844619999921, -19.306094844365248 ], [ 147.6713446199999, -19.826394844365254 ], [ 147.821044619999896, -19.709694844365245 ], [ 148.411344619999909, -20.206894844365252 ], [ 148.455244619999917, -20.059994844365249 ], [ 148.777444619999926, -20.232494844365249 ], [ 148.935544619999916, -20.532794844365256 ], [ 148.790244619999896, -20.456894844365252 ], [ 148.6916446199999, -20.624394844365256 ], [ 149.214644619999888, -21.079994844365245 ], [ 149.661144619999902, -22.496694844365251 ], [ 149.814744619999885, -22.379994844365257 ], [ 150.043344619999914, -22.650794844365251 ], [ 149.920244619999892, -22.347794844365254 ], [ 150.034144619999893, -22.149694844365257 ], [ 150.55774461999988, -22.576994844365245 ], [ 150.637244619999933, -22.343894844365252 ], [ 150.819144619999918, -22.731894844365257 ], [ 150.8671446199999, -23.504994844365257 ], [ 151.538544619999925, -24.089194844365252 ], [ 151.683844619999888, -23.988894844365248 ], [ 151.937244619999888, -24.221694844365246 ], [ 152.665844619999916, -25.24279484436525 ], [ 152.910844619999921, -25.289394844365248 ], [ 152.917244619999906, -25.731694844365251 ], [ 153.181944619999911, -25.949394844365258 ], [ 153.071044619999896, -26.318094844365248 ], [ 153.157244619999915, -27.082794844365253 ], [ 153.033844619999911, -27.179394844365248 ], [ 153.576344619999929, -28.202794844365258 ], [ 153.625544619999914, -28.666694844365253 ], [ 153.018544619999886, -30.568594844365251 ], [ 153.052444619999903, -31.034994844365258 ], [ 152.511644619999913, -32.129194844365259 ], [ 152.529644619999885, -32.403594844365259 ], [ 151.452744619999919, -33.319194844365256 ], [ 151.272744619999912, -33.969394844365254 ], [ 151.096344619999911, -34.008894844365258 ], [ 151.198044619999905, -34.061994844365245 ], [ 150.840544619999889, -34.55829484436525 ], [ 150.840544619999889, -35.082794844365253 ], [ 150.683844619999888, -35.039194844365255 ], [ 150.162444619999917, -35.940594844365251 ], [ 149.902444619999926, -36.923294844365245 ], [ 149.973844619999909, -37.520594844365249 ], [ 149.457144619999895, -37.783294844365258 ], [ 147.764444619999892, -37.979994844365251 ], [ 146.873544619999905, -38.651694844365252 ], [ 146.223044619999882, -38.712494844365253 ], [ 146.288544619999925, -38.918894844365255 ], [ 146.470844619999923, -38.806094844365248 ], [ 146.394144619999906, -39.147194844365245 ], [ 146.137744619999921, -38.843094844365254 ], [ 145.904444619999936, -38.856994844365246 ], [ 145.8180446199999, -38.652494844365251 ], [ 145.416044619999923, -38.545794844365247 ], [ 145.557144619999917, -38.376394844365251 ], [ 145.447244619999935, -38.227794844365249 ], [ 145.2561446199999, -38.236094844365255 ], [ 144.8988446199999, -38.504494844365254 ], [ 144.761144619999925, -38.377794844365255 ], [ 145.132444619999887, -38.140294844365258 ], [ 144.929144619999931, -37.869194844365254 ], [ 144.365544619999923, -38.131094844365251 ], [ 144.702444619999881, -38.145594844365249 ], [ 144.658844619999911, -38.284994844365258 ], [ 144.363244619999932, -38.324494844365248 ], [ 143.543844619999902, -38.859994844365247 ], [ 142.388844619999929, -38.364694844365246 ], [ 141.743544619999909, -38.267494844365245 ], [ 141.571344619999934, -38.417194844365255 ], [ 141.103544619999923, -38.113894844365248 ], [ 140.529944619999924, -38.000294844365257 ], [ 139.814444619999904, -37.299694844365249 ], [ 139.820544619999907, -36.545794844365247 ], [ 139.077344619999906, -35.682594844365255 ], [ 139.667744619999894, -36.230794844365249 ], [ 139.096744619999924, -35.615894844365258 ], [ 139.163344619999918, -35.504994844365257 ], [ 139.33714461999989, -35.694194844365256 ], [ 139.355244619999894, -35.372494844365249 ], [ 139.184444619999908, -35.318094844365248 ], [ 138.966044619999934, -35.41189484436525 ], [ 138.993044619999921, -35.557194844365256 ], [ 138.529444619999936, -35.655794844365246 ], [ 138.093044619999887, -35.62079484436525 ], [ 138.439144619999922, -35.346094844365254 ], [ 138.514144619999911, -35.028094844365256 ], [ 138.496044619999907, -34.728894844365257 ], [ 138.098044619999882, -34.137194844365254 ], [ 137.744644619999917, -35.138594844365258 ], [ 136.830544619999898, -35.254694844365247 ], [ 137.019944619999933, -34.901094844365247 ], [ 137.437744619999933, -34.934694844365254 ], [ 137.449944619999883, -34.151394844365257 ], [ 137.950244619999921, -33.559394844365258 ], [ 137.813044619999914, -33.271394844365247 ], [ 138.047744619999889, -33.125294844365257 ], [ 137.773344619999932, -32.523594844365249 ], [ 137.778344619999928, -32.992494844365254 ], [ 137.488244619999932, -33.127794844365255 ], [ 137.209944619999931, -33.666094844365247 ], [ 136.419744619999904, -34.036094844365252 ], [ 135.93274461999988, -34.541994844365249 ], [ 135.798544619999916, -34.813594844365255 ], [ 136.011944619999895, -34.743294844365252 ], [ 135.954144619999909, -35.010294844365248 ], [ 135.105844619999914, -34.599994844365256 ], [ 135.211644619999902, -34.433594844365246 ], [ 135.386144619999925, -34.641994844365257 ], [ 135.506944619999899, -34.618094844365245 ], [ 135.258044619999907, -33.999394844365256 ], [ 134.839444619999881, -33.635594844365258 ], [ 134.70584461999988, -33.175294844365254 ], [ 134.269144619999906, -33.159694844365248 ], [ 134.064944619999892, -32.721094844365254 ], [ 134.280244619999905, -32.72439484436525 ], [ 134.184144619999927, -32.486694844365246 ], [ 133.851944619999927, -32.544994844365249 ], [ 133.952144619999899, -32.394694844365247 ], [ 133.622144619999915, -32.098294844365256 ], [ 133.417244619999906, -32.213294844365251 ], [ 132.764444619999892, -31.950794844365248 ], [ 132.203844619999927, -32.031694844365248 ], [ 131.152144619999888, -31.474194844365257 ], [ 128.987444619999906, -31.694194844365256 ], [ 127.267744619999917, -32.278294844365249 ], [ 125.968344619999925, -32.266094844365256 ], [ 124.752444619999892, -32.895794844365255 ], [ 124.281944619999933, -32.985594844365252 ], [ 123.959444619999886, -33.55529484436525 ], [ 123.540844619999916, -33.905794844365246 ], [ 122.118344619999903, -34.028594844365259 ], [ 121.997444619999897, -33.824494844365248 ], [ 120.00494461999989, -33.928894844365246 ], [ 119.325544619999903, -34.44699484436525 ], [ 118.91164461999989, -34.453094844365253 ], [ 117.831144619999918, -35.034694844365248 ], [ 117.934444619999908, -35.125794844365245 ], [ 116.4633446199999, -35.000794844365245 ], [ 115.973644619999902, -34.819494844365252 ], [ 115.501144619999934, -34.386094844365246 ], [ 115.008044619999907, -34.263094844365256 ], [ 114.9887446199999, -33.522494844365255 ], [ 115.363644619999889, -33.633094844365246 ], [ 115.711144619999914, -33.269994844365257 ], [ 115.593644619999907, -32.671394844365253 ], [ 115.619744619999892, -32.599194844365257 ], [ 115.701644619999911, -32.521094844365251 ], [ 115.715544619999889, -32.779694844365252 ], [ 115.739444619999915, -31.865294844365252 ], [ 115.0455446199999, -30.506994844365252 ], [ 114.885544619999905, -29.201094844365258 ], [ 114.157444619999922, -28.097794844365254 ], [ 113.936944619999906, -27.198894844365256 ], [ 113.224444619999929, -26.239194844365258 ], [ 113.279144619999897, -26.018294844365258 ], [ 113.641344619999927, -26.652794844365246 ], [ 113.855844619999914, -26.507494844365254 ], [ 113.391644619999909, -25.718094844365254 ], [ 113.469444619999933, -25.540794844365251 ], [ 113.732244619999904, -25.878094844365251 ], [ 113.711944619999883, -26.19529484436525 ], [ 113.878844619999882, -26.028894844365254 ], [ 114.0660446199999, -26.461894844365247 ], [ 114.220844619999923, -26.306394844365258 ], [ 114.259144619999915, -25.846694844365246 ], [ 113.389744619999931, -24.429394844365248 ], [ 113.532244619999915, -23.757194844365259 ], [ 113.76834461999988, -23.441694844365259 ], [ 113.807444619999899, -22.93329484436525 ], [ 113.656344619999913, -22.604694844365255 ], [ 114.018044619999898, -21.850794844365254 ], [ 114.176644619999934, -21.815594844365251 ], [ 114.153844619999916, -22.527794844365246 ], [ 114.372444619999897, -22.442494844365257 ], [ 114.65104461999988, -21.839994844365251 ], [ 115.445544619999907, -21.521994844365253 ], [ 116.707444619999933, -20.649194844365255 ], [ 117.688044619999914, -20.675794844365257 ], [ 118.178344619999905, -20.344994844365246 ], [ 118.801044619999914, -20.285794844365256 ], [ 119.082444619999933, -19.967494844365248 ], [ 119.584944619999931, -20.070594844365246 ], [ 121.027444619999926, -19.592194844365252 ], [ 121.488544619999914, -19.123094844365255 ], [ 121.809944619999897, -18.461694844365255 ], [ 122.353344619999916, -18.105594844365257 ], [ 122.174944619999906, -17.243294844365252 ], [ 122.5786446199999, -16.959194844365257 ], [ 122.522444619999931, -16.846694844365246 ], [ 122.752244619999885, -16.762194844365254 ], [ 122.917744619999894, -16.415594844365245 ], [ 123.061144619999936, -16.446394844365258 ], [ 122.957244619999926, -16.589194844365252 ], [ 123.575244619999921, -17.597494844365258 ], [ 123.596644619999893, -16.989994844365256 ], [ 123.861944619999917, -17.211094844365249 ], [ 123.918344619999914, -17.204494844365257 ], [ 123.7949446199999, -17.009194844365254 ], [ 123.891644619999909, -16.893294844365258 ], [ 123.424444619999917, -16.502494844365245 ], [ 123.708844619999923, -16.43029484436525 ], [ 123.569744619999881, -16.171894844365255 ], [ 123.729444619999924, -16.138894844365254 ], [ 123.891344619999927, -16.378894844365249 ], [ 123.964444619999881, -16.245594844365257 ], [ 124.238544619999914, -16.406694844365248 ], [ 124.899444619999883, -16.414994844365253 ], [ 124.400544619999891, -16.329494844365257 ], [ 124.728344619999916, -15.810594844365255 ], [ 124.401344619999918, -15.871094844365246 ], [ 124.447744619999924, -15.48639484436525 ], [ 124.656344619999913, -15.479694844365255 ], [ 124.702244619999931, -15.252494844365245 ], [ 125.181844619999936, -15.520694844365252 ], [ 125.1208446199999, -15.315594844365251 ], [ 124.904144619999897, -15.331894844365252 ], [ 125.045844619999912, -15.15889484436525 ], [ 124.825544619999903, -15.155794844365246 ], [ 125.078344619999882, -14.999694844365251 ], [ 125.16304461999988, -15.164194844365255 ], [ 125.16164461999989, -15.03389484436525 ], [ 125.309444619999908, -15.152794844365246 ], [ 125.4333446199999, -15.138594844365258 ], [ 125.135544619999905, -14.741394844365246 ], [ 125.336144619999914, -14.523094844365247 ], [ 125.588844619999918, -14.549394844365253 ], [ 125.606944619999922, -14.223094844365249 ], [ 125.729744619999906, -14.276994844365248 ], [ 125.637244619999933, -14.634994844365252 ], [ 125.718844619999913, -14.400294844365249 ], [ 125.902744619999908, -14.643594844365253 ], [ 126.0372446199999, -14.516694844365247 ], [ 126.146644619999904, -14.129994844365257 ], [ 126.019444619999888, -13.919194844365251 ], [ 126.217444619999924, -13.961894844365247 ], [ 126.287744619999899, -14.233094844365255 ], [ 126.502444619999892, -13.964694844365255 ], [ 126.60054461999988, -14.229694844365255 ], [ 126.862744619999887, -13.749194844365249 ], [ 127.1305446199999, -13.975794844365254 ], [ 127.420844619999912, -13.949694844365254 ], [ 128.169444619999922, -14.702794844365258 ], [ 128.013644619999923, -15.499994844365247 ], [ 128.129244619999895, -15.212894844365252 ], [ 128.289944619999915, -15.405294844365258 ], [ 128.194144619999918, -15.056694844365254 ], [ 128.314944619999892, -14.907794844365256 ], [ 128.350844619999918, -15.044694844365253 ], [ 128.452444619999881, -15.046394844365253 ], [ 128.380244619999928, -14.808594844365246 ], [ 128.530244619999905, -14.759194844365254 ], [ 129.089444619999881, -14.899394844365247 ], [ 129.1910446199999, -15.182494844365252 ], [ 129.219944619999922, -14.843094844365254 ], [ 129.327744619999919, -14.864994844365256 ], [ 129.7324446199999, -15.197194844365256 ], [ 129.643844619999925, -14.837194844365257 ], [ 129.799944619999906, -14.865294844365252 ], [ 129.944444619999899, -14.767794844365255 ], [ 129.674944619999906, -14.766394844365252 ], [ 129.586644619999902, -14.621094844365246 ], [ 129.788544619999925, -14.534994844365258 ], [ 129.537444619999917, -14.549194844365246 ], [ 129.37024461999988, -14.333294844365255 ], [ 129.732744619999892, -13.994694844365256 ], [ 129.886144619999925, -13.44529484436525 ], [ 130.027744619999908, -13.516994844365257 ], [ 130.264444619999892, -13.325294844365246 ], [ 130.142044619999922, -12.923494844365251 ], [ 130.322444619999885, -12.899194844365255 ], [ 130.499344619999931, -12.603094844365245 ], [ 130.597744619999901, -12.706694844365245 ], [ 130.695244619999926, -12.702494844365248 ], [ 130.583044619999896, -12.395294844365253 ], [ 130.896344619999923, -12.640294844365258 ], [ 130.815844619999893, -12.441694844365259 ], [ 131.026944619999881, -12.358294844365247 ], [ 131.027144619999888, -12.145594844365249 ], [ 131.486344619999898, -12.297194844365251 ], [ 132.360244619999889, -12.20169484436525 ], [ 132.383644619999927, -12.379994844365257 ], [ 132.446644619999915, -12.146394844365247 ], [ 132.754444619999902, -12.13279484436525 ], [ 132.6277446199999, -12.041994844365249 ], [ 132.6910446199999, -11.654994844365248 ], [ 132.489944619999903, -11.476894844365248 ], [ 132.092444619999924, -11.526394844365257 ], [ 131.76694461999989, -11.316394844365249 ], [ 131.979944619999912, -11.125594844365253 ], [ 132.169444619999922, -11.410294844365254 ], [ 132.14334461999988, -11.133294844365253 ], [ 132.337444619999928, -11.129194844365259 ], [ 132.675844619999907, -11.509694844365256 ], [ 132.918044619999932, -11.336894844365247 ], [ 133.183044619999919, -11.71669484436525 ], [ 133.613544619999914, -11.834994844365255 ], [ 133.908344619999923, -11.736094844365255 ], [ 133.836944619999883, -11.853594844365247 ], [ 134.055844619999903, -11.84639484436525 ], [ 134.206644619999906, -12.061694844365249 ], [ 134.770544619999896, -11.993294844365252 ], [ 134.8657446199999, -12.130794844365255 ], [ 135.231344619999902, -12.294494844365246 ], [ 135.908044619999885, -11.763094844365256 ], [ 135.669744619999904, -12.196694844365254 ], [ 136.023044619999894, -12.111894844365253 ], [ 136.039744619999908, -12.471694844365246 ], [ 136.290244619999896, -12.418094844365257 ], [ 136.365244619999885, -12.238594844365252 ], [ 136.178344619999905, -12.16359484436525 ], [ 136.562244619999888, -11.934394844365258 ], [ 136.668344619999914, -12.28219484436525 ], [ 136.783844619999911, -12.172494844365247 ], [ 136.981944619999922, -12.356894844365257 ], [ 136.620744619999925, -12.825294844365246 ], [ 136.494444619999911, -12.77919484436525 ], [ 136.458044619999896, -13.252494844365245 ], [ 136.35054461999988, -13.052494844365256 ], [ 135.923844619999898, -13.281394844365252 ], [ 135.845844619999923, -13.603894844365257 ], [ 136.020244619999914, -13.76249484436525 ], [ 135.873544619999905, -14.192194844365247 ], [ 135.372744619999935, -14.728894844365257 ], [ 135.456644619999906, -14.941094844365253 ], [ 136.765844619999882, -15.904494844365246 ], [ 137.730844619999914, -16.246094844365246 ], [ 138.1902446199999, -16.704994844365245 ], [ 139.017444619999935, -16.903094844365256 ], [ 139.260544619999905, -17.342494844365248 ], [ 140.018544619999886, -17.712794844365249 ], [ 140.494944619999899, -17.640794844365246 ], [ 140.859644619999926, -17.411094844365252 ], [ 141.426944619999915, -16.079194844365247 ], [ 141.665844619999916, -15.036094844365252 ], [ 141.466044619999934, -13.906694844365248 ], [ 141.688244619999921, -13.26079484436525 ], [ 141.583844619999923, -12.989194844365258 ], [ 141.798544619999916, -12.685794844365248 ], [ 141.940844619999893, -12.875794844365245 ], [ 141.752444619999892, -12.467194844365252 ], [ 141.589444619999881, -12.546994844365258 ], [ 141.852444619999915, -11.984394844365255 ], [ 142.028844619999916, -12.062194844365251 ], [ 142.14194461999989, -10.956694844365245 ], [ 142.446944619999897, -10.708894844365247 ], [ 142.615244619999885, -10.752194844365249 ], [ 142.512744619999921, -10.866894844365248 ] ] ], [ [ [ 142.265844619999882, -10.683594844365246 ], [ 142.1833446199999, -10.770294844365253 ], [ 142.115244619999885, -10.660594844365249 ], [ 142.216944619999936, -10.610294844365256 ], [ 142.265844619999882, -10.683594844365246 ] ] ], [ [ [ 142.278044619999889, -10.643594844365253 ], [ 142.249744619999888, -10.587494844365253 ], [ 142.314144619999922, -10.584194844365257 ], [ 142.321044619999896, -10.622494844365249 ], [ 142.278044619999889, -10.643594844365253 ] ] ], [ [ [ 142.230844619999914, -10.568894844365246 ], [ 142.191344619999882, -10.565794844365257 ], [ 142.226644619999888, -10.525294844365249 ], [ 142.242744619999883, -10.543894844365255 ], [ 142.230844619999914, -10.568894844365246 ] ] ], [ [ [ 142.321044619999896, -10.548594844365255 ], [ 142.292244619999906, -10.53389484436525 ], [ 142.3180446199999, -10.513894844365254 ], [ 142.32944461999989, -10.536094844365252 ], [ 142.321044619999896, -10.548594844365255 ] ] ], [ [ [ 142.285544619999882, -10.264694844365252 ], [ 142.189444619999904, -10.204194844365247 ], [ 142.225844619999918, -10.146094844365251 ], [ 142.330544619999898, -10.171994844365258 ], [ 142.285544619999882, -10.264694844365252 ] ] ], [ [ [ 142.157744619999903, -10.189694844365249 ], [ 142.089644619999888, -10.133894844365258 ], [ 142.143544619999886, -10.051694844365258 ], [ 142.196044619999896, -10.093894844365252 ], [ 142.157744619999903, -10.189694844365249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 51, "LEVEL1_COD": 5, "LEVEL1_NAM": "AUSTRALASIA", "LEVEL2_NAM": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 169.185444619999885, -52.576994844365252 ], [ 169.028244619999896, -52.559194844365251 ], [ 169.000744619999921, -52.507194844365252 ], [ 169.205244619999917, -52.441394844365249 ], [ 169.185444619999885, -52.576994844365252 ] ] ], [ [ [ 166.096544619999918, -50.923094844365252 ], [ 165.973544619999927, -50.905294844365251 ], [ 165.923544619999916, -50.856394844365255 ], [ 166.2204446199999, -50.88749484436525 ], [ 166.096544619999918, -50.923094844365252 ] ] ], [ [ [ 165.995544619999919, -50.603594844365254 ], [ 165.979144619999886, -50.608294844365254 ], [ 165.969344619999902, -50.604994844365251 ], [ 166.0035446199999, -50.594994844365253 ], [ 165.995544619999919, -50.603594844365254 ] ] ], [ [ [ 166.250744619999921, -50.826994844365252 ], [ 165.895544619999896, -50.850594844365254 ], [ 165.886944619999895, -50.804394844365248 ], [ 166.1993446199999, -50.527194844365255 ], [ 166.250744619999921, -50.826994844365252 ] ] ], [ [ [ 166.321844619999922, -50.506994844365252 ], [ 166.309144619999927, -50.507194844365252 ], [ 166.284944619999919, -50.505294844365253 ], [ 166.331844619999913, -50.494694844365249 ], [ 166.321844619999922, -50.506994844365252 ] ] ], [ [ [ 178.816344619999882, -49.723894844365255 ], [ 178.715244619999908, -49.685294844365252 ], [ 178.814944619999892, -49.613594844365252 ], [ 178.841044619999934, -49.633594844365248 ], [ 178.816344619999882, -49.723894844365255 ] ] ], [ [ [ 166.632144619999906, -48.040794844365251 ], [ 166.619644619999917, -48.056694844365254 ], [ 166.563844619999884, -48.039494844365251 ], [ 166.622144619999915, -47.995594844365257 ], [ 166.632144619999906, -48.040794844365251 ] ] ], [ [ [ 179.076844619999918, -47.680594844365245 ], [ 179.061044619999905, -47.685794844365248 ], [ 179.049144619999936, -47.67559484436525 ], [ 179.069644619999906, -47.661694844365257 ], [ 179.076844619999918, -47.680594844365245 ] ] ], [ [ [ 167.434944619999897, -47.248594844365257 ], [ 167.426644619999934, -47.222494844365258 ], [ 167.486844619999886, -47.214194844365252 ], [ 167.468844619999913, -47.235294844365256 ], [ 167.434944619999897, -47.248594844365257 ] ] ], [ [ [ 167.685744619999923, -46.796694844365248 ], [ 167.6585446199999, -46.783594844365254 ], [ 167.663544619999925, -46.759994844365252 ], [ 167.718844619999913, -46.771394844365247 ], [ 167.685744619999923, -46.796694844365248 ] ] ], [ [ [ 168.191944619999902, -46.905294844365258 ], [ 168.048244619999934, -46.935794844365248 ], [ 168.259444619999897, -47.003294844365257 ], [ 168.156344619999913, -47.114994844365256 ], [ 167.519144619999906, -47.274194844365255 ], [ 167.810744619999923, -46.916394844365257 ], [ 167.775744619999898, -46.700294844365246 ], [ 168.191944619999902, -46.905294844365258 ] ] ], [ [ [ 166.716344619999916, -45.741694844365256 ], [ 166.652444619999926, -45.74579484436525 ], [ 166.50494461999989, -45.719194844365248 ], [ 166.7107446199999, -45.615294844365252 ], [ 166.716344619999916, -45.741694844365256 ] ] ], [ [ [ 167.009944619999885, -45.310294844365245 ], [ 166.891344619999927, -45.250294844365257 ], [ 166.96214461999989, -45.153294844365249 ], [ 167.029644619999885, -45.296394844365253 ], [ 167.009944619999885, -45.310294844365245 ] ] ], [ [ [ -176.16225538000009, -44.324694844365254 ], [ -176.221755380000104, -44.341094844365259 ], [ -176.235855380000089, -44.234694844365251 ], [ -176.115855380000085, -44.263294844365248 ], [ -176.16225538000009, -44.324694844365254 ] ] ], [ [ [ -176.452255380000082, -43.736094844365255 ], [ -176.269255380000089, -43.763894844365254 ], [ -176.535555380000091, -43.767494844365245 ], [ -176.354755380000086, -44.01249484436525 ], [ -176.605555380000084, -44.119194844365254 ], [ -176.534255380000104, -43.870294844365247 ], [ -176.848055380000091, -43.812194844365251 ], [ -176.452255380000082, -43.736094844365255 ] ] ], [ [ [ 174.320544619999907, -41.21969484436525 ], [ 174.193244619999916, -41.232494844365249 ], [ 174.398044619999894, -41.107794844365259 ], [ 174.380244619999928, -41.19829484436525 ], [ 174.320544619999907, -41.21969484436525 ] ] ], [ [ [ 173.805744619999928, -40.927794844365252 ], [ 173.823244619999912, -40.76249484436525 ], [ 173.963844619999918, -40.710594844365247 ], [ 173.925744619999932, -40.86309484436525 ], [ 173.805744619999928, -40.927794844365252 ] ] ], [ [ [ 174.320544619999907, -41.21969484436525 ], [ 174.044444619999922, -41.442494844365257 ], [ 174.236344619999898, -41.837194844365257 ], [ 173.285444619999907, -42.958094844365249 ], [ 172.760744619999912, -43.239194844365258 ], [ 172.775744619999898, -43.612194844365249 ], [ 173.059644619999915, -43.653094844365256 ], [ 173.091644619999897, -43.856394844365255 ], [ 172.424944619999906, -43.733594844365257 ], [ 171.346444619999886, -44.292194844365255 ], [ 171.195744619999914, -44.927494844365256 ], [ 170.554344619999881, -45.888094844365256 ], [ 170.783044619999885, -45.878294844365257 ], [ 170.342444619999924, -45.973594844365252 ], [ 169.701844619999918, -46.558094844365257 ], [ 168.357744619999892, -46.604494844365249 ], [ 168.373844619999886, -46.421994844365258 ], [ 168.185444619999885, -46.342494844365248 ], [ 167.832144619999895, -46.398594844365249 ], [ 167.534344619999899, -46.152794844365246 ], [ 166.768044619999898, -46.223594844365252 ], [ 166.670244619999892, -46.153594844365259 ], [ 166.946944619999897, -45.94529484436525 ], [ 166.6705446199999, -46.087194844365257 ], [ 166.467144619999885, -45.990594844365248 ], [ 166.476844619999895, -45.809694844365254 ], [ 166.974044619999916, -45.734994844365247 ], [ 166.775744619999898, -45.662794844365251 ], [ 167.041344619999904, -45.501394844365251 ], [ 166.704344619999915, -45.574494844365248 ], [ 166.821644619999915, -45.320594844365246 ], [ 167.211844619999908, -45.475294844365251 ], [ 167.051044619999914, -45.333294844365255 ], [ 167.30774461999988, -45.318594844365251 ], [ 166.996844619999933, -45.145794844365255 ], [ 167.320744619999914, -44.871394844365255 ], [ 167.507744619999926, -45.000694844365256 ], [ 167.453044619999901, -44.788894844365245 ], [ 168.374944619999894, -44.037794844365251 ], [ 169.721544619999918, -43.57329484436525 ], [ 170.794144619999884, -42.901394844365257 ], [ 171.14964461999989, -42.563594844365255 ], [ 171.510744619999912, -41.764494844365245 ], [ 172.064944619999892, -41.403594844365259 ], [ 172.1088446199999, -40.885594844365258 ], [ 172.6271446199999, -40.511994844365248 ], [ 172.71214461999989, -40.495594844365257 ], [ 172.991344619999893, -40.52919484436525 ], [ 172.656844619999902, -40.653294844365249 ], [ 172.855744619999882, -40.853094844365245 ], [ 173.013244619999909, -40.796694844365248 ], [ 173.105544619999932, -41.313294844365245 ], [ 173.984644619999926, -40.896994844365253 ], [ 173.778544619999934, -41.015594844365253 ], [ 173.953044619999901, -41.060594844365255 ], [ 173.775744619999898, -41.289694844365258 ], [ 174.128844619999882, -41.187194844365251 ], [ 173.893544619999886, -41.192794844365253 ], [ 174.032744619999903, -40.999694844365251 ], [ 174.323844619999932, -41.01079484436525 ], [ 174.209944619999931, -41.197494844365252 ], [ 174.0266446199999, -41.236094844365255 ], [ 174.206344619999925, -41.269494844365255 ], [ 174.320544619999907, -41.21969484436525 ] ] ], [ [ [ 177.001344619999884, -37.870594844365257 ], [ 176.97414461999989, -37.875594844365253 ], [ 176.964644619999888, -37.863594844365252 ], [ 176.979944619999912, -37.848094844365249 ], [ 177.001344619999884, -37.870594844365257 ] ] ], [ [ [ 176.438544619999902, -37.650294844365249 ], [ 176.429144619999931, -37.644994844365257 ], [ 176.446944619999897, -37.604694844365255 ], [ 176.459344619999911, -37.622794844365245 ], [ 176.438544619999902, -37.650294844365249 ] ] ], [ [ [ 175.169444619999922, -36.829194844365247 ], [ 175.088844619999918, -36.833594844365251 ], [ 175.002444619999892, -36.792794844365247 ], [ 175.193844619999936, -36.727494844365253 ], [ 175.169444619999922, -36.829194844365247 ] ] ], [ [ [ 175.827144619999899, -36.630794844365255 ], [ 175.7963446199999, -36.627494844365245 ], [ 175.770244619999914, -36.580794844365258 ], [ 175.802444619999903, -36.576094844365258 ], [ 175.827144619999899, -36.630794844365255 ] ] ], [ [ [ 174.863844619999895, -36.459694844365245 ], [ 174.8440446199999, -36.457494844365257 ], [ 174.869944619999899, -36.388894844365254 ], [ 174.907144619999883, -36.45169484436525 ], [ 174.863844619999895, -36.459694844365245 ] ] ], [ [ [ 175.149344619999908, -36.213294844365251 ], [ 175.114644619999922, -36.231694844365251 ], [ 175.079644619999897, -36.200794844365248 ], [ 175.121844619999933, -36.170594844365255 ], [ 175.149344619999908, -36.213294844365251 ] ] ], [ [ [ 175.544644619999929, -36.347794844365254 ], [ 175.3588446199999, -36.229394844365245 ], [ 175.371844619999933, -36.070594844365246 ], [ 175.529344619999904, -36.17859484436525 ], [ 175.544644619999929, -36.347794844365254 ] ] ], [ [ [ 173.038844619999907, -34.436894844365256 ], [ 172.908344619999923, -34.544194844365251 ], [ 173.269144619999906, -35.019694844365247 ], [ 173.450744619999909, -34.807794844365247 ], [ 173.467444619999924, -34.988894844365248 ], [ 174.101044619999925, -35.121094844365246 ], [ 174.008044619999907, -35.214994844365251 ], [ 174.143544619999886, -35.328594844365256 ], [ 174.319944619999887, -35.232794844365259 ], [ 174.602444619999915, -35.844494844365258 ], [ 174.361844619999886, -35.723294844365256 ], [ 174.346844619999899, -35.833094844365249 ], [ 174.525544619999891, -35.849194844365257 ], [ 174.781044619999932, -36.266994844365257 ], [ 174.707744619999914, -36.541694844365253 ], [ 174.854344619999893, -36.847794844365254 ], [ 175.278244619999896, -36.965294844365246 ], [ 175.373244619999923, -37.21669484436525 ], [ 175.579144619999909, -37.244494844365249 ], [ 175.353544619999923, -36.481894844365257 ], [ 175.840744619999896, -36.754194844365259 ], [ 175.707444619999933, -36.869994844365252 ], [ 175.8454446199999, -36.839694844365255 ], [ 175.887144619999901, -37.244194844365254 ], [ 176.169444619999922, -37.620294844365247 ], [ 175.946344619999934, -37.523094844365247 ], [ 175.994344619999936, -37.638894844365254 ], [ 177.159344619999899, -38.013294844365248 ], [ 177.473544619999927, -37.962494844365253 ], [ 178.017944619999923, -37.550794844365257 ], [ 178.56544461999988, -37.713294844365251 ], [ 178.347444619999919, -38.011094844365246 ], [ 178.300544619999926, -38.536394844365248 ], [ 177.928844619999893, -38.722194844365248 ], [ 177.909944619999919, -39.256994844365252 ], [ 177.628844619999882, -39.071094844365248 ], [ 177.054944619999901, -39.204494844365257 ], [ 176.897744619999912, -39.438094844365253 ], [ 176.946644619999915, -39.664494844365251 ], [ 177.120744619999925, -39.668594844365245 ], [ 176.834144619999904, -40.181694844365254 ], [ 175.984644619999926, -41.231394844365255 ], [ 175.323044619999905, -41.614494844365254 ], [ 175.186044619999905, -41.424994844365258 ], [ 174.866044619999911, -41.424994844365258 ], [ 174.887444619999883, -41.22439484436525 ], [ 174.591844619999904, -41.278594844365259 ], [ 175.1277446199999, -40.713594844365247 ], [ 175.155544619999887, -40.095794844365258 ], [ 173.962944619999917, -39.541694844365253 ], [ 173.751844619999929, -39.28859484436525 ], [ 174.5877446199999, -38.828894844365252 ], [ 174.724344619999897, -38.185794844365248 ], [ 174.9402446199999, -38.10109484436525 ], [ 174.791044619999923, -37.852794844365249 ], [ 174.974944619999917, -37.749994844365247 ], [ 174.848244619999889, -37.769694844365247 ], [ 174.717444619999924, -37.424994844365258 ], [ 174.840444619999914, -37.291394844365257 ], [ 174.717144619999885, -37.365294844365252 ], [ 174.549644619999924, -37.073594844365246 ], [ 174.703844619999927, -37.197794844365248 ], [ 174.887444619999883, -37.059194844365251 ], [ 174.770244619999914, -36.936694844365249 ], [ 174.502444619999892, -37.037494844365256 ], [ 174.187744619999933, -36.496994844365247 ], [ 174.453044619999901, -36.651094844365247 ], [ 174.422144619999926, -36.36609484436525 ], [ 174.268544619999886, -36.342194844365252 ], [ 174.505244619999928, -36.231394844365255 ], [ 174.065744619999919, -36.168294844365249 ], [ 173.913844619999907, -35.869694844365256 ], [ 173.987744619999887, -36.134194844365254 ], [ 174.180544619999921, -36.282494844365246 ], [ 174.080744619999905, -36.409394844365252 ], [ 173.3988446199999, -35.573894844365256 ], [ 173.655544619999887, -35.313294844365245 ], [ 173.380444619999935, -35.528094844365256 ], [ 173.087444619999928, -35.211394844365245 ], [ 173.189344619999929, -35.012794844365246 ], [ 172.722444619999919, -34.495294844365247 ], [ 173.038844619999907, -34.436894844365256 ] ] ], [ [ [ 172.157144619999883, -34.17389484436525 ], [ 172.133344619999889, -34.153294844365249 ], [ 172.186844619999931, -34.152494844365251 ], [ 172.181844619999936, -34.157794844365256 ], [ 172.157144619999883, -34.17389484436525 ] ] ], [ [ [ -178.605355380000105, -30.581094844365253 ], [ -178.608955380000083, -30.587594844365256 ], [ -178.613055380000105, -30.587194844365257 ], [ -178.612555380000089, -30.574494844365248 ], [ -178.605355380000105, -30.581094844365253 ] ] ], [ [ [ -177.846155380000084, -29.278594844365259 ], [ -177.923655380000099, -29.284694844365248 ], [ -177.952555380000092, -29.22609484436525 ], [ -177.869155380000109, -29.242494844365254 ], [ -177.846155380000084, -29.278594844365259 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 60, "LEVEL1_COD": 6, "LEVEL1_NAM": "PACIFIC", "LEVEL2_NAM": "Southwestern Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.534444619999931, -22.693894844365246 ], [ 167.508044619999907, -22.688294844365245 ], [ 167.531344619999913, -22.651094844365247 ], [ 167.556644619999929, -22.674394844365253 ], [ 167.534444619999931, -22.693894844365246 ] ] ], [ [ [ 167.501644619999922, -22.672194844365251 ], [ 167.419144619999884, -22.646394844365247 ], [ 167.434644619999915, -22.543094844365257 ], [ 167.553844619999893, -22.612494844365258 ], [ 167.501644619999922, -22.672194844365251 ] ] ], [ [ [ 166.8160446199999, -22.463294844365251 ], [ 166.772444619999931, -22.456094844365253 ], [ 166.811644619999925, -22.394994844365257 ], [ 166.842744619999905, -22.408594844365254 ], [ 166.8160446199999, -22.463294844365251 ] ] ], [ [ [ 171.313844619999884, -22.331394844365249 ], [ 171.304444619999913, -22.338594844365247 ], [ 171.300844619999907, -22.334994844365255 ], [ 171.304944619999901, -22.327794844365258 ], [ 171.313844619999884, -22.331394844365249 ] ] ], [ [ [ 166.050544619999926, -22.079494844365257 ], [ 166.027144619999888, -22.054694844365258 ], [ 166.0455446199999, -22.034494844365256 ], [ 166.052744619999885, -22.05059484436525 ], [ 166.050544619999926, -22.079494844365257 ] ] ], [ [ [ 166.450244619999921, -21.704494844365257 ], [ 166.428544619999911, -21.703894844365252 ], [ 166.415544619999935, -21.691394844365249 ], [ 166.440844619999893, -21.688594844365255 ], [ 166.450244619999921, -21.704494844365257 ] ] ], [ [ [ 168.002244619999885, -21.451894844365256 ], [ 168.095244619999903, -21.455594844365251 ], [ 168.12024461999988, -21.631094844365251 ], [ 167.970244619999903, -21.648594844365249 ], [ 167.808844619999888, -21.38579484436525 ], [ 168.002244619999885, -21.451894844365256 ] ] ], [ [ [ -174.9108553800001, -21.426694844365258 ], [ -174.974655380000087, -21.365794844365254 ], [ -174.911455380000092, -21.306094844365248 ], [ -174.9108553800001, -21.426694844365258 ] ] ], [ [ [ 167.842744619999905, -21.143894844365249 ], [ 167.801344619999895, -21.119494844365249 ], [ 167.802444619999903, -21.100294844365251 ], [ 167.820244619999926, -21.099994844365256 ], [ 167.842744619999905, -21.143894844365249 ] ] ], [ [ [ -175.145855380000086, -21.178094844365248 ], [ -175.047255380000081, -21.139394844365256 ], [ -175.145255380000094, -21.268094844365251 ], [ -175.359455380000099, -21.099194844365257 ], [ -175.145855380000086, -21.178094844365248 ] ] ], [ [ [ 166.448044619999905, -20.734194844365248 ], [ 166.418844619999902, -20.739994844365256 ], [ 166.388544619999891, -20.725794844365254 ], [ 166.459144619999904, -20.71969484436525 ], [ 166.448044619999905, -20.734194844365248 ] ] ], [ [ [ 167.2872446199999, -20.756394844365246 ], [ 167.465244619999908, -21.058094844365257 ], [ 167.398044619999894, -21.177794844365252 ], [ 167.059644619999915, -20.988594844365252 ], [ 167.1902446199999, -20.806994844365249 ], [ 167.049444619999917, -20.721694844365246 ], [ 167.2872446199999, -20.756394844365246 ] ] ], [ [ [ -178.707755380000094, -20.674394844365253 ], [ -178.737255380000079, -20.666094844365247 ], [ -178.730555380000084, -20.646094844365251 ], [ -178.720855380000103, -20.648094844365247 ], [ -178.707755380000094, -20.674394844365253 ] ] ], [ [ [ 166.624644619999913, -20.406094844365256 ], [ 166.625744619999921, -20.601694844365255 ], [ 166.499144619999925, -20.717794844365258 ], [ 166.557144619999917, -20.402194844365255 ], [ 166.624644619999913, -20.406094844365256 ] ] ], [ [ [ -174.760855380000095, -20.276394844365257 ], [ -174.785355380000084, -20.271694844365257 ], [ -174.791955380000104, -20.234694844365251 ], [ -174.760055380000097, -20.237194844365249 ], [ -174.760855380000095, -20.276394844365257 ] ] ], [ [ [ 164.28804461999988, -20.255594844365248 ], [ 164.2752446199999, -20.248894844365253 ], [ 164.270244619999914, -20.21969484436525 ], [ 164.277744619999908, -20.226394844365245 ], [ 164.28804461999988, -20.255594844365248 ] ] ], [ [ [ 169.8460446199999, -20.252194844365249 ], [ 169.761944619999895, -20.234394844365255 ], [ 169.745544619999919, -20.149394844365247 ], [ 169.886644619999913, -20.170594844365255 ], [ 169.8460446199999, -20.252194844365249 ] ] ], [ [ [ 163.943844619999936, -20.170594844365255 ], [ 163.922444619999908, -20.169694844365253 ], [ 163.906944619999933, -20.143894844365249 ], [ 163.923844619999898, -20.143094844365251 ], [ 163.943844619999936, -20.170594844365255 ] ] ], [ [ [ 164.3166446199999, -20.327194844365252 ], [ 164.5061446199999, -20.305794844365252 ], [ 165.223344619999921, -20.765294844365258 ], [ 165.630844619999891, -21.279694844365252 ], [ 166.947444619999885, -22.089994844365251 ], [ 167.014744619999931, -22.321394844365258 ], [ 166.451944619999892, -22.316694844365259 ], [ 166.116344619999893, -21.946394844365258 ], [ 165.259944619999885, -21.558094844365257 ], [ 164.381944619999899, -20.779994844365248 ], [ 163.989444619999915, -20.087194844365257 ], [ 164.3166446199999, -20.327194844365252 ] ] ], [ [ [ 164.234144619999881, -20.161994844365253 ], [ 164.161144619999902, -20.113294844365257 ], [ 164.163344619999918, -20.065294844365255 ], [ 164.209644619999892, -20.115294844365252 ], [ 164.234144619999881, -20.161994844365253 ] ] ], [ [ [ 163.821644619999915, -20.082794844365253 ], [ 163.790244619999896, -20.061994844365245 ], [ 163.7969446199999, -20.040794844365251 ], [ 163.817744619999928, -20.040794844365251 ], [ 163.821644619999915, -20.082794844365253 ] ] ], [ [ [ 163.977144619999933, -20.081694844365245 ], [ 163.939944619999892, -20.068094844365248 ], [ 163.949444619999895, -20.002194844365249 ], [ 163.981944619999922, -20.049494844365256 ], [ 163.977144619999933, -20.081694844365245 ] ] ], [ [ [ -174.41395538000009, -19.926694844365258 ], [ -174.422555380000091, -19.909994844365258 ], [ -174.39085538000009, -19.881694844365256 ], [ -174.388955380000084, -19.900594844365258 ], [ -174.41395538000009, -19.926694844365258 ] ] ], [ [ [ -178.211455380000075, -19.852494844365253 ], [ -178.223055380000091, -19.845594844365252 ], [ -178.209755380000104, -19.826394844365254 ], [ -178.198055380000085, -19.835794844365253 ], [ -178.211455380000075, -19.852494844365253 ] ] ], [ [ [ -174.318555380000078, -19.82199484436525 ], [ -174.354955380000092, -19.811994844365245 ], [ -174.315855380000102, -19.76419484436525 ], [ -174.306455380000102, -19.771994844365253 ], [ -174.318555380000078, -19.82199484436525 ] ] ], [ [ [ -175.056655380000109, -19.800794844365257 ], [ -175.098555380000107, -19.749694844365251 ], [ -175.081655380000086, -19.706394844365249 ], [ -175.050255380000095, -19.728294844365251 ], [ -175.056655380000109, -19.800794844365257 ] ] ], [ [ [ -174.272555380000085, -19.752794844365255 ], [ -174.3072553800001, -19.740794844365254 ], [ -174.256155380000109, -19.688094844365253 ], [ -174.249155380000104, -19.707194844365247 ], [ -174.272555380000085, -19.752794844365255 ] ] ], [ [ [ -175.018355380000088, -19.691394844365249 ], [ -175.035955380000075, -19.677994844365259 ], [ -175.005555380000089, -19.652494844365251 ], [ -175.003955380000093, -19.664494844365251 ], [ -175.018355380000088, -19.691394844365249 ] ] ], [ [ [ 163.6719446199999, -19.785794844365256 ], [ 163.634444619999897, -19.710594844365247 ], [ 163.619644619999917, -19.625794844365245 ], [ 163.700844619999884, -19.766394844365252 ], [ 163.6719446199999, -19.785794844365256 ] ] ], [ [ [ -174.24445538000009, -19.656094844365256 ], [ -174.281955380000085, -19.63449484436525 ], [ -174.291955380000104, -19.594394844365254 ], [ -174.280055380000078, -19.592794844365258 ], [ -174.24445538000009, -19.656094844365256 ] ] ], [ [ [ 163.6074446199999, -19.604194844365253 ], [ 163.5680446199999, -19.573094844365258 ], [ 163.576644619999911, -19.549494844365256 ], [ 163.612444619999906, -19.596094844365254 ], [ 163.6074446199999, -19.604194844365253 ] ] ], [ [ [ 170.217444619999924, -19.559394844365258 ], [ 170.205244619999917, -19.524994844365253 ], [ 170.2324446199999, -19.524194844365255 ], [ 170.234144619999881, -19.547794844365256 ], [ 170.217444619999924, -19.559394844365258 ] ] ], [ [ [ 169.498244619999923, -19.544994844365249 ], [ 169.3497446199999, -19.636894844365258 ], [ 169.2324446199999, -19.350294844365251 ], [ 169.353544619999923, -19.331394844365249 ], [ 169.498244619999923, -19.544994844365249 ] ] ], [ [ [ 169.594944619999922, -19.273594844365249 ], [ 169.578544619999889, -19.26249484436525 ], [ 169.594944619999922, -19.231394844365255 ], [ 169.60054461999988, -19.237194844365249 ], [ 169.594944619999922, -19.273594844365249 ] ] ], [ [ [ -178.396655380000084, -19.184994844365249 ], [ -178.425055380000089, -19.177494844365256 ], [ -178.398655380000093, -19.129194844365259 ], [ -178.386455380000086, -19.138894844365254 ], [ -178.396655380000084, -19.184994844365249 ] ] ], [ [ [ 179.779644619999885, -19.19529484436525 ], [ 179.739644619999922, -19.181894844365246 ], [ 179.773044619999894, -19.123294844365248 ], [ 179.797444619999908, -19.184394844365258 ], [ 179.779644619999885, -19.19529484436525 ] ] ], [ [ [ 159.949444619999895, -19.343294844365246 ], [ 159.922244619999901, -19.250794844365245 ], [ 159.951044619999891, -19.11439484436525 ], [ 159.978844619999904, -19.171694844365248 ], [ 159.949444619999895, -19.343294844365246 ] ] ], [ [ [ -178.538555380000105, -19.181994844365249 ], [ -178.596955380000082, -19.155794844365246 ], [ -178.585855380000083, -19.113594844365252 ], [ -178.550855380000087, -19.11779484436525 ], [ -178.538555380000105, -19.181994844365249 ] ] ], [ [ [ -169.888055380000083, -19.144494844365255 ], [ -169.931655380000109, -19.016694844365247 ], [ -169.817455380000098, -18.968294844365246 ], [ -169.781355380000093, -19.067794844365253 ], [ -169.888055380000083, -19.144494844365255 ] ] ], [ [ [ 178.498244619999923, -18.989994844365256 ], [ 178.094144619999895, -19.162794844365251 ], [ 177.951044619999891, -19.131394844365246 ], [ 178.306944619999911, -18.935594844365255 ], [ 178.498244619999923, -18.989994844365256 ] ] ], [ [ [ -178.936755380000079, -18.98939484436525 ], [ -178.967255380000097, -18.978294844365251 ], [ -178.949455380000074, -18.925794844365257 ], [ -178.93335538000008, -18.936894844365256 ], [ -178.936755380000079, -18.98939484436525 ] ] ], [ [ [ -179.783655380000084, -18.946394844365258 ], [ -179.840055380000081, -18.950794844365248 ], [ -179.868855380000099, -19.005294844365253 ], [ -179.844955380000101, -18.922494844365247 ], [ -179.783655380000084, -18.946394844365258 ] ] ], [ [ [ 178.528044619999889, -18.910794844365256 ], [ 178.497144619999915, -18.933894844365255 ], [ 178.476644619999888, -18.883094844365246 ], [ 178.521644619999904, -18.859694844365251 ], [ 178.528044619999889, -18.910794844365256 ] ] ], [ [ [ -174.646955380000094, -18.830294844365255 ], [ -174.675055380000089, -18.804494844365252 ], [ -174.649755380000101, -18.783094844365252 ], [ -174.623055380000096, -18.809394844365258 ], [ -174.646955380000094, -18.830294844365255 ] ] ], [ [ [ -174.061355380000094, -18.70469484436525 ], [ -174.090255380000087, -18.703094844365253 ], [ -174.097855380000084, -18.696394844365258 ], [ -174.073655380000105, -18.681094844365248 ], [ -174.061355380000094, -18.70469484436525 ] ] ], [ [ [ -174.019755380000106, -18.717194844365252 ], [ -174.034055380000098, -18.714694844365255 ], [ -174.042255380000086, -18.680494844365256 ], [ -174.019155380000086, -18.694494844365252 ], [ -174.019755380000106, -18.717194844365252 ] ] ], [ [ [ -174.089755380000099, -18.674194844365246 ], [ -174.123855380000094, -18.704494844365257 ], [ -174.128055380000092, -18.703294844365246 ], [ -174.115855380000085, -18.671394844365253 ], [ -174.089755380000099, -18.674194844365246 ] ] ], [ [ [ -178.498655380000088, -18.674694844365249 ], [ -178.521355380000102, -18.661394844365248 ], [ -178.506655380000097, -18.635294844365248 ], [ -178.473055380000091, -18.650594844365258 ], [ -178.498655380000088, -18.674694844365249 ] ] ], [ [ [ 169.305244619999883, -18.978894844365257 ], [ 168.989144619999934, -18.880794844365255 ], [ 169.018544619999886, -18.639994844365248 ], [ 169.148044619999894, -18.640294844365258 ], [ 169.305244619999883, -18.978894844365257 ] ] ], [ [ [ -173.910555380000091, -18.638094844365256 ], [ -173.986955380000097, -18.684194844365251 ], [ -174.070555380000087, -18.632494844365254 ], [ -173.939255380000077, -18.568894844365246 ], [ -173.910555380000091, -18.638094844365256 ] ] ], [ [ [ 179.912744619999899, -18.641994844365257 ], [ 179.837444619999928, -18.576394844365254 ], [ 179.963844619999918, -18.540594844365245 ], [ 179.966644619999897, -18.559994844365249 ], [ 179.912744619999899, -18.641994844365257 ] ] ], [ [ [ 177.663344619999918, -18.590294844365246 ], [ 177.619144619999929, -18.538294844365254 ], [ 177.630844619999891, -18.491894844365248 ], [ 177.6516446199999, -18.509694844365256 ], [ 177.663344619999918, -18.590294844365246 ] ] ], [ [ [ 178.132744619999926, -18.417494844365251 ], [ 178.1094446199999, -18.407494844365246 ], [ 178.139744619999931, -18.351894844365248 ], [ 178.156644619999895, -18.377794844365255 ], [ 178.132744619999926, -18.417494844365251 ] ] ], [ [ [ -178.778355380000107, -18.249694844365251 ], [ -178.843855380000093, -18.216994844365246 ], [ -178.8286553800001, -18.189994844365245 ], [ -178.747555380000108, -18.201394844365254 ], [ -178.778355380000107, -18.249694844365251 ] ] ], [ [ [ 179.351944619999927, -18.121094844365246 ], [ 179.245744619999925, -18.036394844365248 ], [ 179.266644619999909, -17.936094844365257 ], [ 179.353344619999916, -18.009194844365254 ], [ 179.351944619999927, -18.121094844365246 ] ] ], [ [ [ -179.011755380000096, -17.995294844365247 ], [ -179.070555380000087, -17.963294844365251 ], [ -179.068355380000099, -17.932494844365252 ], [ -178.991155380000095, -17.950794844365248 ], [ -179.011755380000096, -17.995294844365247 ] ] ], [ [ [ -178.286955380000109, -17.966094844365259 ], [ -178.340055380000081, -17.955794844365258 ], [ -178.347855380000084, -17.894194844365245 ], [ -178.24445538000009, -17.917794844365247 ], [ -178.286955380000109, -17.966094844365259 ] ] ], [ [ [ 179.4219446199999, -17.848294844365256 ], [ 179.396044619999884, -17.82199484436525 ], [ 179.392744619999917, -17.786394844365248 ], [ 179.421044619999918, -17.797194844365251 ], [ 179.4219446199999, -17.848294844365256 ] ] ], [ [ [ -179.292555380000096, -17.78389484436525 ], [ -179.331155380000098, -17.771994844365253 ], [ -179.319155380000097, -17.727494844365253 ], [ -179.284955380000099, -17.740794844365254 ], [ -179.292555380000096, -17.78389484436525 ] ] ], [ [ [ 178.820244619999926, -17.74279484436525 ], [ 178.747744619999935, -17.71969484436525 ], [ 178.791944619999924, -17.621094844365246 ], [ 178.853044619999935, -17.669694844365253 ], [ 178.820244619999926, -17.74279484436525 ] ] ], [ [ [ 168.574644619999901, -17.692794844365253 ], [ 168.384144619999915, -17.829994844365245 ], [ 168.148044619999894, -17.71969484436525 ], [ 168.311144619999936, -17.531394844365252 ], [ 168.574644619999901, -17.692794844365253 ] ] ], [ [ [ -179.141955380000098, -17.476994844365251 ], [ -179.173355380000089, -17.467794844365258 ], [ -179.178855380000101, -17.433094844365257 ], [ -179.143355380000088, -17.431094844365248 ], [ -179.141955380000098, -17.476994844365251 ] ] ], [ [ [ 178.280844619999925, -17.403094844365256 ], [ 178.598344619999921, -17.643094844365251 ], [ 178.678044619999923, -18.078294844365246 ], [ 177.960244619999912, -18.268294844365258 ], [ 177.299144619999936, -18.078594844365256 ], [ 177.256644619999918, -17.874194844365249 ], [ 177.510244619999924, -17.50949484436525 ], [ 178.1930446199999, -17.301094844365252 ], [ 178.280844619999925, -17.403094844365256 ] ] ], [ [ [ 177.112444619999906, -17.314494844365257 ], [ 177.100244619999899, -17.271094844365251 ], [ 177.14194461999989, -17.247794844365245 ], [ 177.158344619999923, -17.266694844365247 ], [ 177.112444619999906, -17.314494844365257 ] ] ], [ [ [ -179.128655380000083, -17.283594844365254 ], [ -179.153355380000107, -17.28219484436525 ], [ -179.162855380000082, -17.250794844365245 ], [ -179.1214553800001, -17.258594844365248 ], [ -179.128655380000083, -17.283594844365254 ] ] ], [ [ [ 179.399444619999883, -17.394394844365252 ], [ 179.357144619999929, -17.25949484436525 ], [ 179.433044619999919, -17.242194844365258 ], [ 179.448044619999905, -17.315794844365257 ], [ 179.399444619999883, -17.394394844365252 ] ] ], [ [ [ -178.925255380000095, -17.257194844365259 ], [ -178.985855380000089, -17.318094844365248 ], [ -179.020055380000088, -17.153094844365256 ], [ -178.922255380000081, -17.197794844365248 ], [ -178.925255380000095, -17.257194844365259 ] ] ], [ [ [ 177.263644619999923, -17.123594844365257 ], [ 177.199444619999895, -17.170294844365259 ], [ 177.177144619999922, -17.162194844365246 ], [ 177.281144619999907, -17.05189484436525 ], [ 177.263644619999923, -17.123594844365257 ] ] ], [ [ [ 178.333044619999896, -16.835794844365253 ], [ 178.282244619999915, -16.833894844365247 ], [ 178.277144619999888, -16.789394844365248 ], [ 178.329944619999935, -16.796394844365253 ], [ 178.333044619999896, -16.835794844365253 ] ] ], [ [ [ 179.947444619999885, -17.002794844365255 ], [ 179.882444619999887, -16.964194844365252 ], [ 180.000044619999926, -16.787394844365252 ], [ 180.000044619999926, -16.965694844365245 ], [ 179.947444619999885, -17.002794844365255 ] ] ], [ [ [ -179.993355380000082, -16.955294844365255 ], [ -179.999955380000102, -16.787394844365252 ], [ -179.861655380000087, -16.68029484436525 ], [ -179.821155380000107, -16.781094844365256 ], [ -179.993355380000082, -16.955294844365255 ] ] ], [ [ [ 177.4430446199999, -16.837794844365249 ], [ 177.559944619999897, -16.677494844365256 ], [ 177.593044619999887, -16.687794844365257 ], [ 177.521644619999904, -16.789994844365253 ], [ 177.4430446199999, -16.837794844365249 ] ] ], [ [ [ 179.929444619999913, -16.659194844365246 ], [ 179.884444619999897, -16.657494844365246 ], [ 179.947744619999924, -16.61309484436525 ], [ 179.949144619999913, -16.643594844365253 ], [ 179.929444619999913, -16.659194844365246 ] ] ], [ [ [ 168.399144619999902, -16.782794844365256 ], [ 168.168544619999921, -16.80529484436525 ], [ 168.148344619999932, -16.580594844365251 ], [ 168.184144619999927, -16.576094844365258 ], [ 168.399144619999902, -16.782794844365256 ] ] ], [ [ [ 180.000044619999926, -16.537894844365255 ], [ 179.981044619999921, -16.524394844365247 ], [ 180.000044619999926, -16.494294844365257 ], [ 180.000044619999926, -16.537894844365255 ] ] ], [ [ [ -179.97615538000008, -16.535294844365254 ], [ -179.988655380000097, -16.476994844365251 ], [ -179.896455380000077, -16.431094844365248 ], [ -179.926955380000095, -16.518894844365249 ], [ -179.97615538000008, -16.535294844365254 ] ] ], [ [ [ 168.231044619999921, -16.516094844365256 ], [ 168.201344619999929, -16.500594844365253 ], [ 168.242444619999901, -16.429194844365256 ], [ 168.255844619999891, -16.435594844365255 ], [ 168.231044619999921, -16.516094844365256 ] ] ], [ [ [ 179.958044619999896, -16.197494844365252 ], [ 179.478544619999923, -16.701094844365258 ], [ 179.932444619999899, -16.460794844365253 ], [ 179.871344619999888, -16.664994844365253 ], [ 179.951944619999892, -16.741894844365248 ], [ 179.902144619999888, -16.769494844365255 ], [ 179.331944619999888, -16.802194844365246 ], [ 179.265844619999882, -16.690594844365251 ], [ 178.747144619999915, -17.011994844365248 ], [ 178.478844619999904, -16.781694844365248 ], [ 178.981944619999922, -16.46969484436525 ], [ 179.958044619999896, -16.197494844365252 ] ] ], [ [ [ -179.968855380000093, -16.167594844365254 ], [ -179.999955380000102, -16.154694844365252 ], [ -179.941155380000083, -16.128394844365246 ], [ -179.944755380000089, -16.147394844365252 ], [ -179.968855380000093, -16.167594844365254 ] ] ], [ [ [ 168.215244619999908, -16.174194844365246 ], [ 168.304144619999931, -16.339394844365245 ], [ 167.917744619999894, -16.260294844365248 ], [ 168.14334461999988, -16.089694844365255 ], [ 168.215244619999908, -16.174194844365246 ] ] ], [ [ [ 167.416644619999886, -16.109994844365247 ], [ 167.753844619999882, -16.339394844365245 ], [ 167.772444619999931, -16.534994844365258 ], [ 167.417444619999912, -16.53219484436525 ], [ 167.177744619999885, -15.899194844365255 ], [ 167.416644619999886, -16.109994844365247 ] ] ], [ [ [ 167.209144619999904, -15.755594844365248 ], [ 167.091644619999897, -15.707194844365247 ], [ 167.077444619999881, -15.640294844365258 ], [ 167.227144619999933, -15.637794844365246 ], [ 167.209144619999904, -15.755594844365248 ] ] ], [ [ [ -175.644755380000106, -15.629194844365259 ], [ -175.6839553800001, -15.589694844365255 ], [ -175.621355380000097, -15.560794844365248 ], [ -175.609455380000099, -15.600594844365247 ], [ -175.644755380000106, -15.629194844365259 ] ] ], [ [ [ 167.258644619999927, -15.588094844365258 ], [ 167.239144619999934, -15.574394844365258 ], [ 167.276944619999881, -15.546094844365257 ], [ 167.288844619999907, -15.573894844365256 ], [ 167.258644619999927, -15.588094844365258 ] ] ], [ [ [ 167.202444619999881, -15.608594844365257 ], [ 167.128044619999912, -15.605594844365257 ], [ 167.110244619999889, -15.589994844365251 ], [ 167.190544619999912, -15.52919484436525 ], [ 167.202444619999881, -15.608594844365257 ] ] ], [ [ [ 168.2107446199999, -15.998094844365255 ], [ 168.112144619999924, -15.681894844365246 ], [ 168.153344619999928, -15.492194844365258 ], [ 168.266644619999909, -15.87079484436525 ], [ 168.2107446199999, -15.998094844365255 ] ] ], [ [ [ 167.855844619999914, -15.485794844365245 ], [ 167.668344619999914, -15.44699484436525 ], [ 168.002244619999885, -15.289994844365253 ], [ 167.930544619999921, -15.418894844365255 ], [ 167.855844619999914, -15.485794844365245 ] ] ], [ [ [ 167.175244619999887, -15.266694844365247 ], [ 167.16304461999988, -15.265294844365258 ], [ 167.1636446199999, -15.254194844365259 ], [ 167.179444619999913, -15.256694844365256 ], [ 167.175244619999887, -15.266694844365247 ] ] ], [ [ [ 167.144444619999888, -14.97139484436525 ], [ 167.118844619999891, -14.964494844365248 ], [ 167.096344619999911, -14.932494844365252 ], [ 167.15104461999988, -14.957794844365253 ], [ 167.144444619999888, -14.97139484436525 ] ] ], [ [ [ 168.169144619999884, -15.395794844365255 ], [ 168.135844619999887, -15.396694844365257 ], [ 168.105844619999914, -14.919994844365249 ], [ 168.1902446199999, -15.214694844365255 ], [ 168.169144619999884, -15.395794844365255 ] ] ], [ [ [ 166.802744619999885, -15.157494844365246 ], [ 167.058844619999888, -14.944994844365254 ], [ 167.237744619999887, -15.524294844365258 ], [ 167.151144619999911, -15.520294844365253 ], [ 167.071644619999915, -15.598094844365249 ], [ 166.902744619999908, -15.582794844365253 ], [ 166.814744619999885, -15.663094844365247 ], [ 166.761944619999895, -15.642794844365255 ], [ 166.523544619999882, -14.845794844365258 ], [ 166.592744619999905, -14.624394844365256 ], [ 166.802744619999885, -15.157494844365246 ] ] ], [ [ [ -170.542555380000096, -14.297494844365247 ], [ -170.550255380000095, -14.298294844365245 ], [ -170.560855380000078, -14.287794844365251 ], [ -170.540055380000098, -14.28389484436525 ], [ -170.542555380000096, -14.297494844365247 ] ] ], [ [ [ -170.637255380000084, -14.289494844365251 ], [ -170.743855380000099, -14.375594844365253 ], [ -170.826155380000102, -14.32499484436525 ], [ -170.560055380000108, -14.265794844365246 ], [ -170.637255380000084, -14.289494844365251 ] ] ], [ [ [ -178.042355380000089, -14.318094844365248 ], [ -178.14055538000008, -14.316394844365249 ], [ -178.189455380000084, -14.236094844365255 ], [ -178.129955380000098, -14.246894844365258 ], [ -178.042355380000089, -14.318094844365248 ] ] ], [ [ [ -169.444455380000079, -14.261694844365252 ], [ -169.513055380000083, -14.275794844365251 ], [ -169.536155380000082, -14.231694844365251 ], [ -169.445555380000087, -14.226694844365255 ], [ -169.444455380000079, -14.261694844365252 ] ] ], [ [ [ -169.625555380000094, -14.189694844365249 ], [ -169.641655380000088, -14.186094844365257 ], [ -169.644755380000106, -14.176094844365252 ], [ -169.621955380000088, -14.168594844365245 ], [ -169.625555380000094, -14.189694844365249 ] ] ], [ [ [ -169.681155380000092, -14.191694844365259 ], [ -169.693055380000089, -14.188894844365251 ], [ -169.690855380000102, -14.167494844365251 ], [ -169.659755380000092, -14.179894844365251 ], [ -169.681155380000092, -14.191694844365259 ] ] ], [ [ [ 167.527444619999926, -14.32669484436525 ], [ 167.394944619999933, -14.308094844365257 ], [ 167.4136446199999, -14.178894844365246 ], [ 167.588244619999898, -14.172794844365256 ], [ 167.527444619999926, -14.32669484436525 ] ] ], [ [ [ -171.429755380000103, -14.019694844365247 ], [ -171.911155380000082, -14.01249484436525 ], [ -172.064755380000094, -13.874394844365256 ], [ -171.822255380000087, -13.807494844365252 ], [ -171.429755380000103, -14.019694844365247 ] ] ], [ [ [ 167.479144619999886, -13.94829484436525 ], [ 167.385544619999905, -13.827194844365252 ], [ 167.476644619999888, -13.706694844365245 ], [ 167.577744619999919, -13.847194844365248 ], [ 167.479144619999886, -13.94829484436525 ] ] ], [ [ [ 167.705544619999898, -13.674994844365258 ], [ 167.635244619999924, -13.697494844365252 ], [ 167.623544619999905, -13.691894844365251 ], [ 167.687744619999933, -13.621694844365251 ], [ 167.705544619999898, -13.674994844365258 ] ] ], [ [ [ 167.347244619999913, -13.561394844365253 ], [ 167.293344619999914, -13.526394844365257 ], [ 167.322244619999935, -13.486894844365253 ], [ 167.369444619999911, -13.524994844365253 ], [ 167.347244619999913, -13.561394844365253 ] ] ], [ [ [ -172.2858553800001, -13.48639484436525 ], [ -172.214155380000079, -13.807794844365247 ], [ -172.527255380000099, -13.803894844365246 ], [ -172.780655380000098, -13.533294844365258 ], [ -172.2858553800001, -13.48639484436525 ] ] ], [ [ [ 166.677444619999903, -13.452494844365248 ], [ 166.664444619999927, -13.45169484436525 ], [ 166.6508446199999, -13.409694844365248 ], [ 166.694144619999918, -13.415794844365251 ], [ 166.677444619999903, -13.452494844365248 ] ] ], [ [ [ 166.631644619999918, -13.381394844365246 ], [ 166.597444619999919, -13.346094844365254 ], [ 166.5960446199999, -13.334194844365257 ], [ 166.641344619999927, -13.356894844365257 ], [ 166.631644619999918, -13.381394844365246 ] ] ], [ [ [ 166.62024461999988, -13.271394844365247 ], [ 166.57944461999989, -13.261394844365256 ], [ 166.587444619999928, -13.223094844365249 ], [ 166.638344619999884, -13.221694844365246 ], [ 166.62024461999988, -13.271394844365247 ] ] ], [ [ [ -176.161455380000092, -13.352794844365249 ], [ -176.19105538000008, -13.286994844365253 ], [ -176.156155380000087, -13.213594844365247 ], [ -176.121055380000087, -13.263294844365248 ], [ -176.161455380000092, -13.352794844365249 ] ] ], [ [ [ 166.559644619999915, -13.186394844365253 ], [ 166.52604461999988, -13.174694844365249 ], [ 166.521344619999923, -13.070594844365246 ], [ 166.564944619999892, -13.091894844365257 ], [ 166.559644619999915, -13.186394844365253 ] ] ], [ [ [ 177.119444619999911, -12.514494844365245 ], [ 177.060244619999935, -12.516994844365257 ], [ 177.026944619999881, -12.507194844365259 ], [ 177.119144619999929, -12.484694844365251 ], [ 177.119444619999911, -12.514494844365245 ] ] ], [ [ [ 166.85054461999988, -11.69699484436525 ], [ 166.789444619999927, -11.67389484436525 ], [ 166.761344619999932, -11.579494844365257 ], [ 166.931844619999936, -11.667194844365255 ], [ 166.85054461999988, -11.69699484436525 ] ] ], [ [ [ -165.422255380000081, -11.548294844365245 ], [ -165.436455380000098, -11.549194844365246 ], [ -165.435055380000108, -11.537494844365256 ], [ -165.4142553800001, -11.537794844365251 ], [ -165.422255380000081, -11.548294844365245 ] ] ], [ [ [ 166.535244619999901, -11.363894844365248 ], [ 166.4921446199999, -11.349694844365246 ], [ 166.518044619999898, -11.271094844365251 ], [ 166.580544619999898, -11.324194844365252 ], [ 166.535244619999901, -11.363894844365248 ] ] ], [ [ [ -171.064755380000094, -11.055794844365252 ], [ -171.077755380000099, -11.066394844365249 ], [ -171.090555380000097, -11.057794844365247 ], [ -171.0786553800001, -11.048094844365252 ], [ -171.064755380000094, -11.055794844365252 ] ] ], [ [ [ -165.826655380000091, -10.888294844365248 ], [ -165.848655380000082, -10.890594844365253 ], [ -165.850355380000082, -10.884194844365254 ], [ -165.831155380000098, -10.876994844365257 ], [ -165.826655380000091, -10.888294844365248 ] ] ], [ [ [ 166.139944619999881, -10.761094844365246 ], [ 165.883044619999907, -10.873594844365257 ], [ 165.777444619999926, -10.804994844365254 ], [ 165.904144619999897, -10.673594844365255 ], [ 166.139944619999881, -10.761094844365246 ] ] ], [ [ [ -161.022855380000095, -10.431394844365258 ], [ -161.043355380000094, -10.419694844365253 ], [ -161.048655380000099, -10.392794844365255 ], [ -161.023055380000073, -10.423094844365252 ], [ -161.022855380000095, -10.431394844365258 ] ] ], [ [ [ -160.975655380000092, -10.395594844365249 ], [ -160.993355380000082, -10.385594844365258 ], [ -161.012555380000094, -10.354194844365253 ], [ -160.973655380000082, -10.378094844365251 ], [ -160.975655380000092, -10.395594844365249 ] ] ], [ [ [ -161.084455380000094, -10.041994844365249 ], [ -161.090655380000101, -10.018294844365258 ], [ -161.072255380000087, -10.008094844365246 ], [ -161.072255380000087, -10.011994844365248 ], [ -161.084455380000094, -10.041994844365249 ] ] ], [ [ [ 167.203844619999927, -9.963594844365247 ], [ 167.1902446199999, -9.956994844365255 ], [ 167.188244619999921, -9.942194844365247 ], [ 167.207944619999921, -9.950794844365248 ], [ 167.203844619999927, -9.963594844365247 ] ] ], [ [ [ 167.1277446199999, -9.880794844365255 ], [ 167.110744619999934, -9.878594844365253 ], [ 167.107944619999898, -9.869194844365254 ], [ 167.126344619999884, -9.867194844365258 ], [ 167.1277446199999, -9.880794844365255 ] ] ], [ [ [ 167.103244619999884, -9.851694844365255 ], [ 167.092144619999885, -9.851694844365255 ], [ 167.089344619999906, -9.847494844365258 ], [ 167.108544619999918, -9.840794844365249 ], [ 167.103244619999884, -9.851694844365255 ] ] ], [ [ [ -171.214755380000099, -9.377494844365245 ], [ -171.223955380000092, -9.378894844365249 ], [ -171.224655380000087, -9.345594844365252 ], [ -171.211455380000075, -9.36309484436525 ], [ -171.214755380000099, -9.377494844365245 ] ] ], [ [ [ -171.844455380000085, -9.214194844365252 ], [ -171.860555380000108, -9.206694844365245 ], [ -171.853855380000084, -9.168094844365257 ], [ -171.844755380000095, -9.184694844365254 ], [ -171.844455380000085, -9.214194844365252 ] ] ], [ [ [ -157.941755380000075, -8.982494844365249 ], [ -157.972255380000092, -8.981894844365257 ], [ -158.008355380000097, -8.951394844365254 ], [ -157.9964553800001, -8.94999484436525 ], [ -157.941755380000075, -8.982494844365249 ] ] ], [ [ [ -172.483955380000083, -8.587194844365257 ], [ -172.493055380000101, -8.582494844365257 ], [ -172.496955380000088, -8.553894844365246 ], [ -172.483655380000101, -8.566694844365259 ], [ -172.483955380000083, -8.587194844365257 ] ] ], [ [ [ 179.222344619999888, -8.554194844365256 ], [ 179.213244619999898, -8.56129484436525 ], [ 179.203744619999895, -8.462394844365249 ], [ 179.231044619999921, -8.504894844365253 ], [ 179.222344619999888, -8.554194844365256 ] ] ], [ [ [ 178.366944619999913, -8.062794844365257 ], [ 178.355844619999914, -8.061394844365253 ], [ 178.369644619999917, -8.027494844365251 ], [ 178.374944619999894, -8.028894844365254 ], [ 178.366944619999913, -8.062794844365257 ] ] ], [ [ [ 178.397744619999912, -8.015294844365258 ], [ 178.391544619999934, -7.999994844365247 ], [ 178.403044619999889, -7.991394844365246 ], [ 178.406644619999895, -8.003594844365253 ], [ 178.397744619999912, -8.015294844365258 ] ] ], [ [ [ 178.700544619999903, -7.482194844365253 ], [ 178.687444619999894, -7.478894844365257 ], [ 178.690844619999893, -7.464494844365248 ], [ 178.702744619999919, -7.471894844365252 ], [ 178.700544619999903, -7.482194844365253 ] ] ], [ [ [ 177.158844619999911, -7.187794844365257 ], [ 177.146344619999923, -7.188594844365255 ], [ 177.142244619999929, -7.173594844365255 ], [ 177.150544619999891, -7.174994844365258 ], [ 177.158844619999911, -7.187794844365257 ] ] ], [ [ [ 176.310244619999935, -6.285594844365249 ], [ 176.295244619999892, -6.278094844365256 ], [ 176.308844619999888, -6.257494844365254 ], [ 176.314444619999904, -6.276094844365247 ], [ 176.310244619999935, -6.285594844365249 ] ] ], [ [ [ 177.295844619999912, -6.113894844365248 ], [ 177.278044619999889, -6.106394844365255 ], [ 177.281344619999913, -6.089394844365245 ], [ 177.308844619999888, -6.098894844365248 ], [ 177.295844619999912, -6.113894844365248 ] ] ], [ [ [ 176.139744619999931, -5.690594844365251 ], [ 176.130244619999928, -5.693294844365255 ], [ 176.129344619999927, -5.674994844365258 ], [ 176.135544619999905, -5.67559484436525 ], [ 176.139744619999931, -5.690594844365251 ] ] ], [ [ [ 176.081344619999925, -5.665294844365249 ], [ 176.077444619999881, -5.668094844365257 ], [ 176.066344619999882, -5.665294844365249 ], [ 176.07944461999989, -5.657794844365256 ], [ 176.081344619999925, -5.665294844365249 ] ] ], [ [ [ -172.187555380000106, -4.531694844365248 ], [ -172.219255380000106, -4.528894844365254 ], [ -172.231455380000085, -4.504494844365254 ], [ -172.196455380000089, -4.491994844365252 ], [ -172.187555380000106, -4.531694844365248 ] ] ], [ [ [ -171.231755380000095, -4.461394844365245 ], [ -171.258955380000089, -4.458594844365251 ], [ -171.264555380000104, -4.446394844365258 ], [ -171.235555380000108, -4.438094844365253 ], [ -171.231755380000095, -4.461394844365245 ] ] ], [ [ [ -171.07805538000008, -3.141694844365247 ], [ -171.089755380000099, -3.13749484436525 ], [ -171.086455380000075, -3.108894844365253 ], [ -171.080855380000088, -3.110294844365256 ], [ -171.07805538000008, -3.141694844365247 ] ] ], [ [ [ -171.627855380000085, -2.832494844365257 ], [ -171.626355380000092, -2.869494844365249 ], [ -171.725655380000092, -2.772794844365251 ], [ -171.694155380000097, -2.768594844365253 ], [ -171.627855380000085, -2.832494844365257 ] ] ], [ [ [ 176.848244619999889, -2.669494844365246 ], [ 176.776344619999918, -2.62079484436525 ], [ 176.774144619999902, -2.607794844365259 ], [ 176.833244619999903, -2.633894844365258 ], [ 176.848244619999889, -2.669494844365246 ] ] ], [ [ [ 175.971844619999899, -2.504994844365257 ], [ 175.960244619999912, -2.505794844365255 ], [ 175.964344619999906, -2.481094844365245 ], [ 175.9710446199999, -2.486694844365246 ], [ 175.971844619999899, -2.504994844365257 ] ] ], [ [ [ 175.586044619999882, -1.919694844365253 ], [ 175.581844619999913, -1.922494844365247 ], [ 175.547744619999889, -1.821694844365254 ], [ 175.592744619999905, -1.883294844365253 ], [ 175.586044619999882, -1.919694844365253 ] ] ], [ [ [ 175.531344619999913, -1.806094844365248 ], [ 175.496344619999888, -1.779494844365246 ], [ 175.493544619999909, -1.769694844365247 ], [ 175.519644619999895, -1.777794844365246 ], [ 175.531344619999913, -1.806094844365248 ] ] ], [ [ [ 175.041944619999924, -1.552494844365256 ], [ 175.001644619999922, -1.528594844365259 ], [ 175.046044619999918, -1.434694844365254 ], [ 175.069444619999899, -1.474494844365253 ], [ 175.041944619999924, -1.552494844365256 ] ] ], [ [ [ 174.873244619999923, -1.408094844365252 ], [ 174.8574446199999, -1.408594844365254 ], [ 174.853544619999923, -1.399194844365255 ], [ 174.863844619999895, -1.397794844365251 ], [ 174.873244619999923, -1.408094844365252 ] ] ], [ [ [ 176.464644619999888, -1.435294844365245 ], [ 176.447444619999885, -1.431394844365258 ], [ 176.390544619999901, -1.324494844365248 ], [ 176.4213446199999, -1.348294844365256 ], [ 176.464644619999888, -1.435294844365245 ] ] ], [ [ [ 175.954644619999897, -1.27919484436525 ], [ 176.021844619999911, -1.365594844365248 ], [ 176.018244619999905, -1.389494844365245 ], [ 175.934144619999927, -1.302494844365256 ], [ 175.954644619999897, -1.27919484436525 ] ] ], [ [ [ 174.767744619999917, -1.255794844365255 ], [ 174.748544619999905, -1.250594844365253 ], [ 174.716344619999916, -1.139994844365248 ], [ 174.767144619999897, -1.207194844365247 ], [ 174.767744619999917, -1.255794844365255 ] ] ], [ [ [ 174.458444619999909, -0.652594844365254 ], [ 174.499944619999894, -0.799694844365249 ], [ 174.489644619999922, -0.816694844365259 ], [ 174.478544619999923, -0.819494844365252 ], [ 174.458444619999909, -0.652594844365254 ] ] ], [ [ [ 174.458444619999909, -0.652594844365254 ], [ 174.399144619999902, -0.616694844365256 ], [ 174.3771446199999, -0.597494844365258 ], [ 174.457944619999921, -0.638594844365258 ], [ 174.458444619999909, -0.652594844365254 ] ] ], [ [ [ 166.929144619999931, -0.552194844365246 ], [ 166.904444619999936, -0.528894844365254 ], [ 166.930544619999921, -0.493294844365252 ], [ 166.958544619999884, -0.506394844365246 ], [ 166.929144619999931, -0.552194844365246 ] ] ], [ [ [ 173.617944619999889, 0.133605155634754 ], [ 173.604144619999886, 0.212505155634744 ], [ 173.631544619999886, 0.216705155634742 ], [ 173.636344619999932, 0.176905155634742 ], [ 173.617944619999889, 0.133605155634754 ] ] ], [ [ [ -176.456155380000098, 0.215805155634754 ], [ -176.46705538000009, 0.216705155634742 ], [ -176.468355380000105, 0.222205155634754 ], [ -176.453955380000082, 0.226105155634755 ], [ -176.456155380000098, 0.215805155634754 ] ] ], [ [ [ 173.409644619999881, 0.203605155634747 ], [ 173.399344619999908, 0.200305155634751 ], [ 173.402144619999888, 0.233005155634743 ], [ 173.425544619999926, 0.215305155634752 ], [ 173.409644619999881, 0.203605155634747 ] ] ], [ [ [ 173.384944619999885, 0.244205155634745 ], [ 173.371344619999888, 0.250305155634749 ], [ 173.376544619999891, 0.266105155634747 ], [ 173.382144619999906, 0.264705155634744 ], [ 173.384944619999885, 0.244205155634745 ] ] ], [ [ [ 173.931844619999936, 0.298005155634755 ], [ 173.923544619999916, 0.302205155634752 ], [ 173.939344619999929, 0.320805155634744 ], [ 173.942144619999908, 0.31670515563475 ], [ 173.931844619999936, 0.298005155634755 ] ] ], [ [ [ 173.830544619999898, 0.448305155634742 ], [ 173.9085446199999, 0.402205155634746 ], [ 173.921644619999881, 0.379705155634753 ], [ 173.804944619999901, 0.431105155634754 ], [ 173.830544619999898, 0.448305155634742 ] ] ], [ [ [ -176.632255380000089, 0.793005155634745 ], [ -176.644455380000096, 0.795505155634743 ], [ -176.64315538000011, 0.812805155634749 ], [ -176.632755380000106, 0.808605155634751 ], [ -176.632255380000089, 0.793005155634745 ] ] ], [ [ [ 173.021844619999911, 1.006705155634748 ], [ 173.084144619999904, 0.951905155634748 ], [ 173.047744619999889, 0.892205155634741 ], [ 172.990244619999885, 0.826405155634745 ], [ 172.981344619999902, 0.821705155634746 ], [ 173.021844619999911, 1.006705155634748 ] ] ], [ [ [ 172.9396446199999, 1.336105155634755 ], [ 172.924344619999886, 1.336905155634753 ], [ 172.914144619999888, 1.346405155634741 ], [ 172.943544619999898, 1.34580515563475 ], [ 172.9396446199999, 1.336105155634755 ] ] ], [ [ [ 173.126544619999891, 1.349205155634749 ], [ 173.112944619999894, 1.345005155634752 ], [ 173.098544619999927, 1.351405155634751 ], [ 173.119044619999897, 1.373305155634753 ], [ 173.126544619999891, 1.349205155634749 ] ] ], [ [ [ 173.062144619999913, 1.410305155634745 ], [ 173.039644619999933, 1.417805155634753 ], [ 173.034644619999881, 1.444405155634755 ], [ 173.056644619999929, 1.418305155634755 ], [ 173.062144619999913, 1.410305155634745 ] ] ], [ [ [ 173.012744619999921, 1.472505155634749 ], [ 173.016344619999927, 1.465005155634742 ], [ 172.997144619999915, 1.500505155634755 ], [ 173.001044619999902, 1.495305155634753 ], [ 173.012744619999921, 1.472505155634749 ] ] ], [ [ [ 172.98184461999989, 1.529405155634748 ], [ 172.9607446199999, 1.553305155634746 ], [ 172.955244619999917, 1.619205155634745 ], [ 172.966844619999904, 1.596705155634751 ], [ 172.98184461999989, 1.529405155634748 ] ] ], [ [ [ 172.884644619999904, 1.838305155634743 ], [ 172.856644619999884, 1.843905155634744 ], [ 172.834144619999904, 1.863605155634744 ], [ 172.857944619999898, 1.861705155634752 ], [ 172.884644619999904, 1.838305155634743 ] ] ], [ [ [ 173.014944619999881, 1.706105155634745 ], [ 173.0252446199999, 1.816405155634754 ], [ 172.929944619999901, 1.936105155634749 ], [ 173.027144619999888, 1.821105155634754 ], [ 173.014944619999881, 1.706105155634745 ] ] ], [ [ [ 172.891644619999909, 1.930005155634746 ], [ 172.882644619999894, 1.932805155634753 ], [ 172.885544619999905, 1.943905155634752 ], [ 172.894944619999933, 1.939705155634755 ], [ 172.891644619999909, 1.930005155634746 ] ] ], [ [ [ 173.328844619999927, 1.940305155634746 ], [ 173.311044619999905, 1.958005155634751 ], [ 173.349344619999897, 1.965805155634754 ], [ 173.349944619999917, 1.950505155634744 ], [ 173.328844619999927, 1.940305155634746 ] ] ], [ [ [ 173.342944619999912, 1.98280515563475 ], [ 173.313544619999902, 1.973905155634753 ], [ 173.325244619999921, 2.015805155634752 ], [ 173.3377446199999, 2.009405155634752 ], [ 173.342944619999912, 1.98280515563475 ] ] ], [ [ [ 172.87024461999988, 3.064405155634745 ], [ 172.774944619999928, 3.002205155634755 ], [ 172.749044619999893, 3.024205155634746 ], [ 172.828544619999889, 3.063005155634755 ], [ 172.87024461999988, 3.064405155634745 ] ] ], [ [ [ 172.968244619999894, 3.248605155634749 ], [ 172.957444619999933, 3.281405155634744 ], [ 172.976544619999913, 3.296405155634744 ], [ 172.980744619999882, 3.293605155634751 ], [ 172.968244619999894, 3.248605155634749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 61, "LEVEL1_COD": 6, "LEVEL1_NAM": "PACIFIC", "LEVEL2_NAM": "South-Central Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -109.24145538000009, -27.133094844365246 ], [ -109.427855380000096, -27.201994844365245 ], [ -109.449155380000093, -27.193094844365248 ], [ -109.39085538000009, -27.066694844365259 ], [ -109.24145538000009, -27.133094844365246 ] ] ], [ [ [ -105.456455380000094, -26.460594844365247 ], [ -105.459455380000094, -26.464694844365255 ], [ -105.474155380000099, -26.453094844365253 ], [ -105.462555380000097, -26.453594844365256 ], [ -105.456455380000094, -26.460594844365247 ] ] ], [ [ [ -130.076955380000072, -25.07969484436525 ], [ -130.100855380000098, -25.076094844365258 ], [ -130.104455380000104, -25.058594844365246 ], [ -130.064955380000072, -25.063294844365245 ], [ -130.076955380000072, -25.07969484436525 ] ] ], [ [ [ -124.780855380000091, -24.675794844365257 ], [ -124.792755380000088, -24.674394844365253 ], [ -124.795955380000095, -24.666794844365256 ], [ -124.772555380000085, -24.666994844365249 ], [ -124.780855380000091, -24.675794844365257 ] ] ], [ [ [ -128.289155380000096, -24.409694844365248 ], [ -128.341955380000087, -24.369694844365256 ], [ -128.336955380000092, -24.329194844365247 ], [ -128.303855380000073, -24.330294844365255 ], [ -128.289155380000096, -24.409694844365248 ] ] ], [ [ [ -147.618955380000102, -23.855294844365247 ], [ -147.667555380000096, -23.885594844365258 ], [ -147.701355380000109, -23.875794844365245 ], [ -147.68195538000009, -23.855594844365257 ], [ -147.618955380000102, -23.855294844365247 ] ] ], [ [ [ -149.456155380000098, -23.393894844365249 ], [ -149.506955380000079, -23.403094844365256 ], [ -149.531455380000097, -23.369494844365249 ], [ -149.466155380000089, -23.341394844365254 ], [ -149.456155380000098, -23.393894844365249 ] ] ], [ [ [ -152.789755380000088, -22.653594844365259 ], [ -152.80695538000009, -22.666394844365257 ], [ -152.823055380000085, -22.65419484436525 ], [ -152.80695538000009, -22.636394844365256 ], [ -152.789755380000088, -22.653594844365259 ] ] ], [ [ [ -151.329755380000108, -22.512794844365246 ], [ -151.346155380000084, -22.524694844365257 ], [ -151.37005538000011, -22.431394844365258 ], [ -151.322255380000087, -22.455794844365258 ], [ -151.329755380000108, -22.512794844365246 ] ] ], [ [ [ -157.89055538000008, -21.938094844365253 ], [ -157.945055380000099, -21.940594844365251 ], [ -157.962855380000093, -21.90419484436525 ], [ -157.921955380000099, -21.880294844365253 ], [ -157.89055538000008, -21.938094844365253 ] ] ], [ [ [ -159.741155380000095, -21.254194844365259 ], [ -159.834755380000104, -21.247794844365245 ], [ -159.833955380000077, -21.195794844365253 ], [ -159.752555380000103, -21.193094844365248 ], [ -159.741155380000095, -21.254194844365259 ] ] ], [ [ [ -157.317055380000113, -20.17859484436525 ], [ -157.337555380000083, -20.176994844365254 ], [ -157.332255380000106, -20.133094844365246 ], [ -157.309155380000107, -20.147794844365251 ], [ -157.317055380000113, -20.17859484436525 ] ] ], [ [ [ -158.0983553800001, -20.016094844365256 ], [ -158.126755380000077, -20.00949484436525 ], [ -158.118655380000092, -19.973094844365249 ], [ -158.081955380000096, -19.986894844365253 ], [ -158.0983553800001, -20.016094844365256 ] ] ], [ [ [ -158.27955538000009, -19.817794844365253 ], [ -158.262555380000094, -19.836694844365255 ], [ -158.292155380000111, -19.832194844365247 ], [ -158.27955538000009, -19.817794844365253 ] ] ], [ [ [ -157.708655380000096, -19.853094844365245 ], [ -157.741355380000073, -19.814194844365247 ], [ -157.713955380000073, -19.770294844365253 ], [ -157.70335538000009, -19.833294844365255 ], [ -157.708655380000096, -19.853094844365245 ] ] ], [ [ [ -139.210255380000092, -19.325594844365256 ], [ -139.194755380000089, -19.340294844365246 ], [ -139.216655380000077, -19.371394844365255 ], [ -139.198955380000086, -19.34169484436525 ], [ -139.210255380000092, -19.325594844365256 ] ] ], [ [ [ -138.761455380000086, -19.282494844365246 ], [ -138.807255380000072, -19.282794844365256 ], [ -138.771955380000094, -19.274694844365257 ], [ -138.761455380000086, -19.282494844365246 ] ] ], [ [ [ -158.928655380000095, -19.270294844365253 ], [ -158.943955380000091, -19.271994844365253 ], [ -158.951955380000072, -19.242494844365254 ], [ -158.924755380000079, -19.260294844365248 ], [ -158.928655380000095, -19.270294844365253 ] ] ], [ [ [ -140.659755380000092, -19.133294844365253 ], [ -140.674255380000091, -19.150594844365258 ], [ -140.721455380000094, -19.121094844365246 ], [ -140.667855380000105, -19.118094844365245 ], [ -140.659755380000092, -19.133294844365253 ] ] ], [ [ [ -159.788355380000098, -18.890594844365253 ], [ -159.803355380000085, -18.86139484436525 ], [ -159.784255380000104, -18.841394844365254 ], [ -159.778455380000082, -18.844294844365251 ], [ -159.788355380000098, -18.890594844365253 ] ] ], [ [ [ -140.963755380000094, -18.065694844365254 ], [ -140.999955380000074, -18.073894844365256 ], [ -141.000055380000106, -18.070594844365246 ], [ -140.963755380000094, -18.065694844365254 ] ] ], [ [ [ -140.963755380000094, -18.065694844365254 ], [ -140.9108553800001, -18.095594844365252 ], [ -140.811355380000094, -18.217494844365248 ], [ -140.912755380000078, -18.100594844365247 ], [ -140.963755380000094, -18.065694844365254 ] ] ], [ [ [ -163.163355380000098, -18.089394844365245 ], [ -163.170355380000103, -18.079494844365257 ], [ -163.154755380000097, -18.056694844365254 ], [ -163.153355380000107, -18.069694844365259 ], [ -163.163355380000098, -18.089394844365245 ] ] ], [ [ [ -140.654655380000094, -17.742494844365254 ], [ -140.682255380000072, -17.790294844365249 ], [ -140.758855380000085, -17.842694844365255 ], [ -140.689155380000102, -17.791394844365257 ], [ -140.654655380000094, -17.742494844365254 ] ] ], [ [ [ -140.797755380000098, -17.780594844365254 ], [ -140.833055380000076, -17.816094844365253 ], [ -140.799455380000097, -17.775594844365258 ], [ -140.696455380000089, -17.714194844365252 ], [ -140.797755380000098, -17.780594844365254 ] ] ], [ [ [ -140.654655380000094, -17.742494844365254 ], [ -140.658655380000084, -17.713894844365257 ], [ -140.691155380000112, -17.705594844365251 ], [ -140.654455380000087, -17.709694844365245 ], [ -140.654655380000094, -17.742494844365254 ] ] ], [ [ [ -150.623155380000071, -17.675094844365248 ], [ -150.62775538000011, -17.679694844365258 ], [ -150.63315538000009, -17.669194844365251 ], [ -150.623155380000071, -17.675094844365248 ] ] ], [ [ [ -150.63315538000009, -17.669194844365251 ], [ -150.649755380000101, -17.666094844365247 ], [ -150.642855380000071, -17.645594844365249 ], [ -150.623955380000098, -17.654494844365246 ], [ -150.63315538000009, -17.669194844365251 ] ] ], [ [ [ -150.623155380000071, -17.675094844365248 ], [ -150.613955380000107, -17.658294844365258 ], [ -150.628655380000112, -17.636394844365256 ], [ -150.60885538000008, -17.659994844365258 ], [ -150.623155380000071, -17.675094844365248 ] ] ], [ [ [ -149.319255380000072, -17.745494844365254 ], [ -149.560255380000086, -17.743894844365258 ], [ -149.606355380000082, -17.575294844365246 ], [ -149.326155380000102, -17.545494844365251 ], [ -149.125255380000112, -17.867994844365256 ], [ -149.319255380000072, -17.745494844365254 ] ] ], [ [ [ -149.738055380000105, -17.49579484436525 ], [ -149.794455380000102, -17.593894844365252 ], [ -149.899755380000101, -17.511994844365248 ], [ -149.761155380000105, -17.472194844365248 ], [ -149.738055380000105, -17.49579484436525 ] ] ], [ [ [ -149.567255380000091, -16.987794844365254 ], [ -149.584755380000104, -16.997494844365249 ], [ -149.581155380000098, -16.987194844365249 ], [ -149.567255380000091, -16.987794844365254 ] ] ], [ [ [ -150.955555380000078, -16.777794844365246 ], [ -150.981155380000075, -16.822194844365256 ], [ -151.000055380000106, -16.807194844365256 ], [ -151.000055380000106, -16.766394844365252 ], [ -150.955555380000078, -16.777794844365246 ] ] ], [ [ [ -151.4339553800001, -16.737794844365254 ], [ -151.350555380000088, -16.85109484436525 ], [ -151.456655380000086, -16.917194844365255 ], [ -151.493055380000101, -16.770294844365253 ], [ -151.4339553800001, -16.737794844365254 ] ] ], [ [ [ -145.154155380000077, -16.718894844365252 ], [ -145.122255380000098, -16.746094844365246 ], [ -145.178055380000103, -16.713294844365251 ], [ -145.154155380000077, -16.718894844365252 ] ] ], [ [ [ -151.000055380000106, -16.748894844365253 ], [ -151.038355380000098, -16.774694844365257 ], [ -151.033055380000093, -16.693594844365251 ], [ -151.000055380000106, -16.748894844365253 ] ] ], [ [ [ -151.000055380000106, -16.748894844365253 ], [ -151.000055380000106, -16.685794844365248 ], [ -150.973955380000092, -16.74579484436525 ], [ -151.000055380000106, -16.748894844365253 ] ] ], [ [ [ -143.626155380000085, -16.613594844365252 ], [ -143.569755380000089, -16.628294844365257 ], [ -143.598655380000082, -16.630594844365248 ], [ -143.626155380000085, -16.613594844365252 ] ] ], [ [ [ -143.626155380000085, -16.613594844365252 ], [ -143.637755380000101, -16.610594844365252 ], [ -143.649155380000082, -16.59939484436525 ], [ -143.626155380000085, -16.613594844365252 ] ] ], [ [ [ -151.484455380000099, -16.582194844365247 ], [ -151.4339553800001, -16.61609484436525 ], [ -151.481955380000102, -16.687194844365251 ], [ -151.551455380000107, -16.624194844365249 ], [ -151.484455380000099, -16.582194844365247 ] ] ], [ [ [ -143.649155380000082, -16.59939484436525 ], [ -143.681155380000092, -16.57969484436525 ], [ -143.761355380000111, -16.55359484436525 ], [ -143.708655380000096, -16.563894844365251 ], [ -143.665055380000098, -16.583894844365247 ], [ -143.649155380000082, -16.59939484436525 ] ] ], [ [ [ -151.718655380000087, -16.480594844365257 ], [ -151.717255380000097, -16.528294844365249 ], [ -151.732755380000071, -16.545594844365255 ], [ -151.763055380000083, -16.47439484436525 ], [ -151.718655380000087, -16.480594844365257 ] ] ], [ [ [ -143.865255380000093, -16.452194844365252 ], [ -143.832255380000106, -16.473594844365252 ], [ -143.922155380000106, -16.44529484436525 ], [ -143.865255380000093, -16.452194844365252 ] ] ], [ [ [ -152.2464553800001, -16.44529484436525 ], [ -152.251155380000085, -16.456394844365249 ], [ -152.275555380000071, -16.44829484436525 ], [ -152.260355380000078, -16.435594844365255 ], [ -152.2464553800001, -16.44529484436525 ] ] ], [ [ [ -144.380355380000083, -16.340594844365256 ], [ -144.353055380000086, -16.361094844365255 ], [ -144.415555380000086, -16.339494844365248 ], [ -144.380355380000083, -16.340594844365256 ] ] ], [ [ [ -151.822555380000097, -16.226394844365245 ], [ -151.785555380000091, -16.250794844365245 ], [ -151.835355380000095, -16.261394844365256 ], [ -151.822555380000097, -16.226394844365245 ] ] ], [ [ [ -146.322555380000097, -16.183094844365257 ], [ -146.37115538000009, -16.186394844365253 ], [ -146.398055380000073, -16.150794844365251 ], [ -146.352755380000076, -16.114694844365246 ], [ -146.322555380000097, -16.183094844365257 ] ] ], [ [ [ -145.613055380000105, -16.059394844365258 ], [ -145.572255380000087, -16.147794844365251 ], [ -145.552255380000076, -16.23939484436525 ], [ -145.498055380000096, -16.30829484436525 ], [ -145.613055380000105, -16.059394844365258 ] ] ], [ [ [ -145.91365538000008, -15.869694844365256 ], [ -145.900555380000071, -15.892794844365255 ], [ -145.959755380000104, -15.843294844365246 ], [ -145.91365538000008, -15.869694844365256 ] ] ], [ [ [ -148.236955380000097, -15.867194844365258 ], [ -148.28725538000009, -15.849194844365257 ], [ -148.266955380000098, -15.801394844365248 ], [ -148.223055380000091, -15.85109484436525 ], [ -148.236955380000097, -15.867194844365258 ] ] ], [ [ [ -146.485555380000108, -15.816994844365254 ], [ -146.486455380000109, -15.834194844365257 ], [ -146.510555380000085, -15.790794844365251 ], [ -146.485555380000108, -15.816994844365254 ] ] ], [ [ [ -145.130855380000071, -15.773894844365245 ], [ -145.098055380000091, -15.789194844365255 ], [ -145.093055380000095, -15.850294844365251 ], [ -145.055555380000101, -15.894994844365257 ], [ -145.053955380000104, -15.935294844365245 ], [ -145.130855380000071, -15.773894844365245 ] ] ], [ [ [ -144.620555380000098, -15.749194844365249 ], [ -144.637755380000101, -15.759694844365256 ], [ -144.648655380000093, -15.729694844365255 ], [ -144.631955380000079, -15.724694844365246 ], [ -144.620555380000098, -15.749194844365249 ] ] ], [ [ [ -146.868055380000101, -15.656094844365256 ], [ -146.880255380000108, -15.678894844365246 ], [ -146.89055538000008, -15.672794844365256 ], [ -146.878655380000112, -15.654694844365252 ], [ -146.868055380000101, -15.656094844365256 ] ] ], [ [ [ -145.437255380000096, -15.487494844365258 ], [ -145.443655380000109, -15.502194844365249 ], [ -145.558855380000097, -15.457494844365257 ], [ -145.437255380000096, -15.487494844365258 ] ] ], [ [ [ -146.316455380000093, -15.314494844365257 ], [ -146.348655380000082, -15.319694844365259 ], [ -146.378955380000093, -15.302794844365252 ], [ -146.316455380000093, -15.314494844365257 ] ] ], [ [ [ -147.786355380000089, -15.212494844365253 ], [ -147.736455380000109, -15.237794844365254 ], [ -147.758655380000107, -15.235594844365252 ], [ -147.786355380000089, -15.212494844365253 ] ] ], [ [ [ -148.223955380000092, -15.126694844365247 ], [ -148.235255380000098, -15.130594844365248 ], [ -148.249755380000096, -15.11439484436525 ], [ -148.223955380000092, -15.126694844365247 ] ] ], [ [ [ -147.516955380000098, -15.074694844365254 ], [ -147.435555380000096, -15.142794844365255 ], [ -147.53725538000009, -15.069394844365249 ], [ -147.516955380000098, -15.074694844365254 ] ] ], [ [ [ -147.941955380000081, -15.067194844365247 ], [ -147.936455380000098, -15.084394844365249 ], [ -147.945555380000087, -15.077494844365248 ], [ -147.941955380000081, -15.067194844365247 ] ] ], [ [ [ -144.532255380000095, -14.961394844365245 ], [ -144.548655380000099, -14.971694844365246 ], [ -144.559155380000107, -14.970794844365258 ], [ -144.550355380000099, -14.960594844365247 ], [ -144.532255380000095, -14.961394844365245 ] ] ], [ [ [ -147.637755380000101, -14.962794844365249 ], [ -147.636155380000105, -14.972494844365258 ], [ -147.652755380000087, -14.959994844365255 ], [ -147.637755380000101, -14.962794844365249 ] ] ], [ [ [ -147.858655380000073, -14.953594844365256 ], [ -147.866155380000095, -14.969194844365248 ], [ -147.865555380000103, -14.956994844365255 ], [ -147.858655380000073, -14.953594844365256 ] ] ], [ [ [ -147.687855380000087, -14.94529484436525 ], [ -147.708355380000086, -14.945794844365253 ], [ -147.710255380000092, -14.936694844365249 ], [ -147.701455380000084, -14.936694844365249 ], [ -147.687855380000087, -14.94529484436525 ] ] ], [ [ [ -147.716155380000089, -14.938594844365255 ], [ -147.761655380000093, -14.938894844365251 ], [ -147.747555380000108, -14.93029484436525 ], [ -147.716155380000089, -14.938594844365255 ] ] ], [ [ [ -148.109755380000081, -14.905594844365254 ], [ -148.043055380000112, -14.956994844365255 ], [ -148.127855380000085, -14.904694844365252 ], [ -148.109755380000081, -14.905594844365254 ] ] ], [ [ [ -148.629455380000081, -14.895594844365249 ], [ -148.640055380000092, -14.871094844365246 ], [ -148.706155380000098, -14.854494844365249 ], [ -148.639155380000091, -14.865594844365248 ], [ -148.629455380000081, -14.895594844365249 ] ] ], [ [ [ -145.219755380000095, -14.603894844365257 ], [ -145.198655380000105, -14.66189484436525 ], [ -145.243355380000082, -14.718094844365254 ], [ -145.262555380000094, -14.699694844365254 ], [ -145.219755380000095, -14.603894844365257 ] ] ], [ [ [ -145.151755380000111, -14.55189484436525 ], [ -145.138655380000102, -14.581394844365249 ], [ -145.167555380000096, -14.621894844365258 ], [ -145.193955380000091, -14.564994844365245 ], [ -145.151755380000111, -14.55189484436525 ] ] ], [ [ [ -145.039755380000088, -14.484694844365251 ], [ -145.049155380000087, -14.495294844365247 ], [ -145.039455380000106, -14.472794844365254 ], [ -145.039755380000088, -14.484694844365251 ] ] ], [ [ [ -146.303055380000103, -14.437194844365251 ], [ -146.319455380000079, -14.438294844365245 ], [ -146.280255380000085, -14.429994844365254 ], [ -146.303055380000103, -14.437194844365251 ] ] ], [ [ [ -146.222855380000112, -14.450594844365256 ], [ -146.230355380000105, -14.456694844365245 ], [ -146.256155380000109, -14.431394844365258 ], [ -146.235255380000098, -14.42859484436525 ], [ -146.222855380000112, -14.450594844365256 ] ] ], [ [ [ -145.930355380000094, -14.44529484436525 ], [ -145.973955380000092, -14.449394844365258 ], [ -145.915855380000096, -14.426694844365258 ], [ -145.930355380000094, -14.44529484436525 ] ] ], [ [ [ -144.890055380000092, -14.388094844365256 ], [ -144.853355380000096, -14.403594844365259 ], [ -144.952555380000092, -14.409694844365248 ], [ -144.918355380000094, -14.403594844365259 ], [ -144.890055380000092, -14.388094844365256 ] ] ], [ [ [ -145.855355380000105, -14.339294844365256 ], [ -145.838655380000091, -14.356094844365245 ], [ -145.841955380000087, -14.37079484436525 ], [ -145.855355380000105, -14.339294844365256 ] ] ], [ [ [ -145.855355380000105, -14.339294844365256 ], [ -145.876155380000085, -14.335794844365253 ], [ -145.925355380000099, -14.352194844365258 ], [ -145.906455380000097, -14.335594844365247 ], [ -145.864455380000095, -14.329994844365245 ], [ -145.855355380000105, -14.339294844365256 ] ] ], [ [ [ -151.783655380000084, -11.466394844365254 ], [ -151.808055380000098, -11.449694844365254 ], [ -151.814455380000084, -11.392494844365245 ], [ -151.778655380000089, -11.436694844365249 ], [ -151.783655380000084, -11.466394844365254 ] ] ], [ [ [ -138.630355380000083, -10.543094844365257 ], [ -138.691455380000093, -10.524994844365253 ], [ -138.690355380000085, -10.42559484436525 ], [ -138.608955380000111, -10.469994844365246 ], [ -138.630355380000083, -10.543094844365257 ] ] ], [ [ [ -152.391455380000082, -10.105294844365247 ], [ -152.396455380000077, -10.107194844365253 ], [ -152.406755380000106, -10.097194844365248 ], [ -152.395655380000107, -10.095794844365258 ], [ -152.391455380000082, -10.105294844365247 ] ] ], [ [ [ -138.812255380000096, -9.999994844365247 ], [ -138.844755380000095, -9.981894844365257 ], [ -138.832855380000098, -9.947194844365256 ], [ -138.812255380000096, -9.999994844365247 ] ] ], [ [ [ -150.224155380000099, -9.954194844365247 ], [ -150.23305538000011, -9.938594844365255 ], [ -150.220555380000093, -9.92389484436525 ], [ -150.215855380000107, -9.929694844365258 ], [ -150.224155380000099, -9.954194844365247 ] ] ], [ [ [ -150.22535538000011, -9.915794844365251 ], [ -150.233655380000073, -9.911694844365257 ], [ -150.228955380000087, -9.890794844365246 ], [ -150.219255380000106, -9.901394844365257 ], [ -150.22535538000011, -9.915794844365251 ] ] ], [ [ [ -139.073655380000105, -9.887194844365254 ], [ -139.038055380000088, -9.942494844365257 ], [ -139.131455380000091, -9.999994844365247 ], [ -139.117255380000074, -9.916694844365253 ], [ -139.073655380000105, -9.887194844365254 ] ] ], [ [ [ -139.000055380000106, -9.812194844365251 ], [ -139.055355380000094, -9.862194844365249 ], [ -139.167555380000096, -9.773594844365249 ], [ -139.042755380000074, -9.70469484436525 ], [ -139.000055380000106, -9.812194844365251 ] ] ], [ [ [ -139.000055380000106, -9.812194844365251 ], [ -139.000055380000106, -9.698094844365258 ], [ -138.801455380000107, -9.744494844365249 ], [ -138.901155380000091, -9.808894844365255 ], [ -139.000055380000106, -9.812194844365251 ] ] ], [ [ [ -140.035555380000091, -9.451094844365258 ], [ -140.133055380000087, -9.409394844365252 ], [ -140.10035538000011, -9.345494844365248 ], [ -140.018055380000078, -9.365294844365252 ], [ -140.035555380000091, -9.451094844365258 ] ] ], [ [ [ -139.552855380000096, -8.868094844365245 ], [ -139.506955380000079, -8.886394844365256 ], [ -139.492855380000094, -8.943894844365246 ], [ -139.612255380000079, -8.925794844365257 ], [ -139.552855380000096, -8.868094844365245 ] ] ], [ [ [ -140.158155380000096, -8.794394844365257 ], [ -140.010355380000078, -8.795594844365255 ], [ -140.008055380000087, -8.921094844365257 ], [ -140.228955380000087, -8.935294844365245 ], [ -140.158155380000096, -8.794394844365257 ] ] ], [ [ [ -140.681455380000102, -7.999994844365247 ], [ -140.700255380000101, -8.053894844365246 ], [ -140.723055380000091, -8.043294844365249 ], [ -140.681455380000102, -7.999994844365247 ] ] ], [ [ [ -140.681455380000102, -7.999994844365247 ], [ -140.720555380000093, -7.999994844365247 ], [ -140.638055380000083, -7.964194844365252 ], [ -140.648955380000075, -7.991994844365252 ], [ -140.681455380000102, -7.999994844365247 ] ] ], [ [ [ -140.551455380000107, -7.908294844365258 ], [ -140.579455380000098, -7.934694844365254 ], [ -140.600555380000088, -7.931994844365249 ], [ -140.564455380000084, -7.897194844365245 ], [ -140.551455380000107, -7.908294844365258 ] ] ], [ [ [ -155.878055380000092, -5.639994844365248 ], [ -155.913155380000092, -5.638094844365256 ], [ -155.928055380000103, -5.618894844365258 ], [ -155.856155380000075, -5.619494844365249 ], [ -155.878055380000092, -5.639994844365248 ] ] ], [ [ [ -154.939255380000077, -4.045594844365255 ], [ -154.956455380000079, -4.102494844365253 ], [ -155.0161553800001, -4.060794844365248 ], [ -154.962555380000083, -4.031994844365258 ], [ -154.939255380000077, -4.045594844365255 ] ] ], [ [ [ -160.021155380000096, -0.398094844365247 ], [ -160.039755380000088, -0.395294844365253 ], [ -160.048655380000099, -0.383594844365248 ], [ -160.017755380000096, -0.374694844365251 ], [ -160.021155380000096, -0.398094844365247 ] ] ], [ [ [ -157.431655380000109, 2.021405155634753 ], [ -157.350855380000098, 1.971905155634744 ], [ -157.343155380000098, 1.84110515563475 ], [ -157.179455380000093, 1.714405155634751 ], [ -157.571455380000089, 1.858905155634744 ], [ -157.429455380000093, 1.831705155634751 ], [ -157.431655380000109, 2.021405155634753 ] ] ], [ [ [ -159.340055380000081, 3.920805155634753 ], [ -159.248855380000094, 3.827205155634744 ], [ -159.271755380000087, 3.789705155634749 ], [ -159.40455538000009, 3.86420515563475 ], [ -159.340055380000081, 3.920805155634753 ] ] ], [ [ [ -160.394755380000106, 4.685505155634743 ], [ -160.420055380000093, 4.700005155634742 ], [ -160.405655380000098, 4.725305155634743 ], [ -160.379755380000091, 4.718305155634752 ], [ -160.394755380000106, 4.685505155634743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 62, "LEVEL1_COD": 6, "LEVEL1_NAM": "PACIFIC", "LEVEL2_NAM": "Northwestern Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.226644619999888, 5.292805155634753 ], [ 132.21214461999989, 5.296105155634748 ], [ 132.208344619999934, 5.311105155634749 ], [ 132.230244619999894, 5.307205155634747 ], [ 132.226644619999888, 5.292805155634753 ] ] ], [ [ [ 153.674444619999917, 5.286905155634742 ], [ 153.659944619999919, 5.291705155634745 ], [ 153.7113446199999, 5.31970515563475 ], [ 153.709144619999904, 5.306705155634745 ], [ 153.674444619999917, 5.286905155634742 ] ] ], [ [ [ 163.007444619999887, 5.263005155634744 ], [ 162.904144619999897, 5.307205155634747 ], [ 163.016344619999927, 5.378305155634749 ], [ 163.043344619999914, 5.32310515563475 ], [ 163.007444619999887, 5.263005155634744 ] ] ], [ [ [ 168.113544619999914, 5.600305155634743 ], [ 168.094944619999922, 5.613305155634748 ], [ 168.124344619999931, 5.641705155634753 ], [ 168.131344619999936, 5.623605155634749 ], [ 168.113544619999914, 5.600305155634743 ] ] ], [ [ [ 168.090244619999908, 5.630505155634751 ], [ 168.074944619999883, 5.631905155634755 ], [ 168.077144619999899, 5.650305155634754 ], [ 168.090744619999896, 5.640805155634752 ], [ 168.090244619999908, 5.630505155634751 ] ] ], [ [ [ 171.751944619999904, 6.080505155634754 ], [ 171.730844619999914, 6.077205155634744 ], [ 171.727144619999933, 6.086105155634755 ], [ 171.732844619999923, 6.095705155634747 ], [ 171.751944619999904, 6.080505155634754 ] ] ], [ [ [ 172.090544619999889, 6.219705155634742 ], [ 172.0863446199999, 6.216905155634748 ], [ 172.074144619999913, 6.222205155634754 ], [ 172.080244619999917, 6.229705155634747 ], [ 172.090544619999889, 6.219705155634742 ] ] ], [ [ [ 143.063644619999934, 6.707205155634753 ], [ 143.0546446199999, 6.714705155634746 ], [ 143.063644619999934, 6.719405155634746 ], [ 143.067244619999883, 6.715805155634754 ], [ 143.063644619999934, 6.707205155634753 ] ] ], [ [ [ 149.320244619999926, 6.698305155634742 ], [ 149.313244619999921, 6.702505155634753 ], [ 149.324944619999883, 6.721905155634744 ], [ 149.327744619999919, 6.711105155634755 ], [ 149.320244619999926, 6.698305155634742 ] ] ], [ [ [ 157.942244619999883, 6.718605155634748 ], [ 157.931944619999911, 6.721905155634744 ], [ 157.952444619999881, 6.734405155634747 ], [ 157.949744619999933, 6.724705155634751 ], [ 157.942244619999883, 6.718605155634748 ] ] ], [ [ [ 157.973544619999927, 6.738305155634748 ], [ 157.9641446199999, 6.741105155634742 ], [ 157.992744619999883, 6.751905155634745 ], [ 157.987144619999924, 6.745305155634753 ], [ 157.973544619999927, 6.738305155634748 ] ] ], [ [ [ 134.166044619999923, 6.885305155634754 ], [ 134.138544619999891, 6.897505155634747 ], [ 134.139444619999892, 6.934705155634745 ], [ 134.174944619999906, 6.923905155634742 ], [ 134.166044619999923, 6.885305155634754 ] ] ], [ [ [ 158.297744619999889, 6.786105155634743 ], [ 158.175844619999907, 6.79830515563475 ], [ 158.120744619999925, 6.92970515563475 ], [ 158.318844619999936, 6.930305155634741 ], [ 158.297744619999889, 6.786105155634743 ] ] ], [ [ [ 158.253844619999882, 6.983305155634753 ], [ 158.241644619999931, 6.992805155634741 ], [ 158.259944619999885, 7.000305155634749 ], [ 158.262244619999933, 6.995505155634746 ], [ 158.253844619999882, 6.983305155634753 ] ] ], [ [ [ 134.274944619999928, 7.010305155634754 ], [ 134.227744619999896, 6.987805155634746 ], [ 134.278344619999928, 7.070805155634744 ], [ 134.284444619999931, 7.058005155634746 ], [ 134.274944619999928, 7.010305155634754 ] ] ], [ [ [ 171.914144619999888, 7.092505155634754 ], [ 171.894144619999906, 7.101705155634747 ], [ 171.929944619999901, 7.13390515563475 ], [ 171.934644619999915, 7.120005155634743 ], [ 171.914144619999888, 7.092505155634754 ] ] ], [ [ [ 134.392744619999917, 7.140305155634749 ], [ 134.353844619999904, 7.168005155634745 ], [ 134.381944619999899, 7.192505155634748 ], [ 134.4002446199999, 7.151705155634744 ], [ 134.392744619999917, 7.140305155634749 ] ] ], [ [ [ 134.3777446199999, 7.215805155634754 ], [ 134.344144619999895, 7.269405155634743 ], [ 134.438844619999884, 7.278905155634746 ], [ 134.446344619999934, 7.249705155634743 ], [ 134.3777446199999, 7.215805155634754 ] ] ], [ [ [ 168.768044619999898, 7.29830515563475 ], [ 168.786344619999909, 7.288905155634751 ], [ 168.670244619999892, 7.328905155634743 ], [ 168.674444619999917, 7.331405155634755 ], [ 168.768044619999898, 7.29830515563475 ] ] ], [ [ [ 134.470844619999923, 7.361105155634746 ], [ 134.517444619999935, 7.340805155634754 ], [ 134.517444619999935, 7.308005155634746 ], [ 134.448344619999887, 7.331905155634743 ], [ 134.470844619999923, 7.361105155634746 ] ] ], [ [ [ 151.860544619999928, 7.318605155634742 ], [ 151.838244619999898, 7.361905155634744 ], [ 151.839944619999926, 7.370305155634753 ], [ 151.866644619999931, 7.358605155634748 ], [ 151.860544619999928, 7.318605155634742 ] ] ], [ [ [ 149.201644619999911, 7.363305155634748 ], [ 149.194744619999881, 7.361405155634742 ], [ 149.203044619999901, 7.376405155634743 ], [ 149.20444461999989, 7.367505155634746 ], [ 149.201644619999911, 7.363305155634748 ] ] ], [ [ [ 149.191344619999882, 7.375505155634755 ], [ 149.181044619999909, 7.373605155634749 ], [ 149.177744619999885, 7.382505155634746 ], [ 149.188044619999914, 7.384405155634752 ], [ 149.191344619999882, 7.375505155634755 ] ] ], [ [ [ 143.920244619999892, 7.379705155634753 ], [ 143.911944619999929, 7.382505155634746 ], [ 143.914144619999888, 7.391405155634743 ], [ 143.919744619999904, 7.390005155634753 ], [ 143.920244619999892, 7.379705155634753 ] ] ], [ [ [ 151.639144619999911, 7.326705155634755 ], [ 151.567244619999883, 7.34110515563475 ], [ 151.608344619999912, 7.395305155634745 ], [ 151.6508446199999, 7.372205155634745 ], [ 151.639144619999911, 7.326705155634755 ] ] ], [ [ [ 151.91164461999989, 7.445005155634746 ], [ 151.863044619999926, 7.419705155634745 ], [ 151.854944619999912, 7.423905155634742 ], [ 151.866644619999931, 7.463905155634748 ], [ 151.91164461999989, 7.445005155634746 ] ] ], [ [ [ 168.574644619999901, 7.398005155634749 ], [ 168.554944619999901, 7.423005155634755 ], [ 168.558544619999907, 7.471405155634741 ], [ 168.5652446199999, 7.464405155634751 ], [ 168.574644619999901, 7.398005155634749 ] ] ], [ [ [ 146.193344619999891, 7.50420515563475 ], [ 146.1796446199999, 7.505505155634751 ], [ 146.1796446199999, 7.510805155634742 ], [ 146.187244619999888, 7.515605155634745 ], [ 146.193344619999891, 7.50420515563475 ] ] ], [ [ [ 168.967144619999885, 7.574205155634743 ], [ 168.961644619999902, 7.57310515563475 ], [ 168.944444619999899, 7.615305155634744 ], [ 168.974944619999917, 7.601105155634755 ], [ 168.967144619999885, 7.574205155634743 ] ] ], [ [ [ 134.561344619999886, 7.371905155634749 ], [ 134.485244619999889, 7.438005155634755 ], [ 134.634144619999915, 7.729405155634751 ], [ 134.654644619999885, 7.600305155634743 ], [ 134.561344619999886, 7.371905155634749 ] ] ], [ [ [ 168.251344619999884, 7.749405155634747 ], [ 168.233544619999918, 7.748605155634749 ], [ 168.220244619999903, 7.766905155634745 ], [ 168.250844619999896, 7.75720515563475 ], [ 168.251344619999884, 7.749405155634747 ] ] ], [ [ [ 149.674944619999906, 8.575505155634744 ], [ 149.659444619999931, 8.590305155634752 ], [ 149.688844619999884, 8.617505155634746 ], [ 149.6902446199999, 8.608005155634743 ], [ 149.674944619999906, 8.575505155634744 ] ] ], [ [ [ 150.378044619999912, 8.617505155634746 ], [ 150.373244619999923, 8.612805155634746 ], [ 150.366644619999931, 8.626405155634743 ], [ 150.375544619999914, 8.626905155634745 ], [ 150.378044619999912, 8.617505155634746 ] ] ], [ [ [ 167.738844619999895, 8.725305155634743 ], [ 167.724444619999929, 8.729705155634747 ], [ 167.7407446199999, 8.747805155634751 ], [ 167.745544619999919, 8.739405155634742 ], [ 167.738844619999895, 8.725305155634743 ] ] ], [ [ [ 170.844944619999922, 8.88690515563475 ], [ 170.834944619999931, 8.893305155634749 ], [ 170.846944619999931, 8.916105155634753 ], [ 170.855544619999932, 8.904205155634742 ], [ 170.844944619999922, 8.88690515563475 ] ] ], [ [ [ 150.130244619999928, 8.978305155634743 ], [ 150.118244619999928, 8.976405155634751 ], [ 150.128044619999912, 8.992505155634746 ], [ 150.135544619999905, 8.986705155634752 ], [ 150.130244619999928, 8.978305155634743 ] ] ], [ [ [ 165.536944619999929, 9.197205155634748 ], [ 165.522444619999931, 9.207805155634745 ], [ 165.526944619999881, 9.218605155634748 ], [ 165.536344619999909, 9.207505155634749 ], [ 165.536944619999929, 9.197205155634748 ] ] ], [ [ [ 166.829944619999935, 9.322205155634748 ], [ 166.818344619999891, 9.32440515563475 ], [ 166.811644619999925, 9.335605155634752 ], [ 166.830244619999917, 9.335805155634745 ], [ 166.829944619999935, 9.322205155634748 ] ] ], [ [ [ 170.248044619999916, 9.544705155634745 ], [ 170.244944619999899, 9.533605155634746 ], [ 170.233344619999912, 9.558905155634747 ], [ 170.243844619999891, 9.560505155634743 ], [ 170.248044619999916, 9.544705155634745 ] ] ], [ [ [ 138.209144619999904, 9.52390515563475 ], [ 138.131644619999918, 9.498905155634745 ], [ 138.060244619999935, 9.415305155634755 ], [ 138.133644619999927, 9.571905155634752 ], [ 138.209144619999904, 9.52390515563475 ] ] ], [ [ [ 170.153844619999916, 9.639405155634748 ], [ 170.135544619999905, 9.633305155634744 ], [ 170.16164461999989, 9.645305155634745 ], [ 170.153844619999916, 9.639405155634748 ] ] ], [ [ [ 169.971644619999893, 10.436405155634745 ], [ 169.963844619999918, 10.433305155634741 ], [ 169.944144619999918, 10.45110515563475 ], [ 169.9607446199999, 10.44640515563475 ], [ 169.971644619999893, 10.436405155634745 ] ] ], [ [ [ 166.885244619999924, 11.144705155634753 ], [ 166.8671446199999, 11.145305155634745 ], [ 166.841344619999916, 11.153305155634754 ], [ 166.900544619999891, 11.168605155634751 ], [ 166.885244619999924, 11.144705155634753 ] ] ], [ [ [ 169.866944619999913, 11.23280515563475 ], [ 169.855544619999932, 11.231905155634749 ], [ 169.8588446199999, 11.241405155634752 ], [ 169.869144619999929, 11.23750515563475 ], [ 169.866944619999913, 11.23280515563475 ] ] ], [ [ [ 162.338244619999898, 11.351905155634753 ], [ 162.326344619999929, 11.351405155634751 ], [ 162.323544619999893, 11.354205155634745 ], [ 162.341644619999897, 11.362205155634754 ], [ 162.338244619999898, 11.351905155634753 ] ] ], [ [ [ 167.520844619999934, 11.377805155634746 ], [ 167.512444619999883, 11.380805155634746 ], [ 167.512244619999933, 11.393905155634755 ], [ 167.52604461999988, 11.386705155634743 ], [ 167.520844619999934, 11.377805155634746 ] ] ], [ [ [ 165.556044619999909, 11.615805155634746 ], [ 165.553844619999893, 11.611105155634746 ], [ 165.513044619999903, 11.63860515563475 ], [ 165.547244619999901, 11.634405155634752 ], [ 165.556044619999909, 11.615805155634746 ] ] ], [ [ [ 165.291644619999886, 11.700505155634744 ], [ 165.277444619999926, 11.696705155634746 ], [ 165.271944619999886, 11.706405155634755 ], [ 165.284744619999913, 11.714205155634744 ], [ 165.291644619999886, 11.700505155634744 ] ] ], [ [ [ 144.709444619999886, 13.235005155634752 ], [ 144.655244619999905, 13.427805155634744 ], [ 144.875244619999933, 13.65360515563475 ], [ 144.953344619999882, 13.584205155634749 ], [ 144.709444619999886, 13.235005155634752 ] ] ], [ [ [ 145.281644619999895, 14.15830515563475 ], [ 145.206344619999925, 14.105305155634753 ], [ 145.119944619999899, 14.122505155634755 ], [ 145.237144619999924, 14.195005155634746 ], [ 145.281644619999895, 14.15830515563475 ] ] ], [ [ [ 168.987744619999887, 14.580805155634749 ], [ 168.974944619999917, 14.581105155634745 ], [ 169.003844619999882, 14.598005155634752 ], [ 169.001344619999884, 14.587805155634754 ], [ 168.987744619999887, 14.580805155634749 ] ] ], [ [ [ 145.535244619999901, 14.828305155634752 ], [ 145.529644619999885, 14.848305155634748 ], [ 145.570244619999926, 14.845005155634752 ], [ 145.563844619999884, 14.833605155634743 ], [ 145.535244619999901, 14.828305155634752 ] ] ], [ [ [ 145.624144619999925, 14.908005155634754 ], [ 145.572244619999935, 15.010005155634744 ], [ 145.633044619999907, 15.083905155634753 ], [ 145.662744619999899, 14.976705155634747 ], [ 145.624144619999925, 14.908005155634754 ] ] ], [ [ [ 145.736044619999916, 15.133605155634754 ], [ 145.679144619999931, 15.105305155634753 ], [ 145.8180446199999, 15.265805155634752 ], [ 145.820244619999926, 15.25720515563475 ], [ 145.736044619999916, 15.133605155634754 ] ] ], [ [ [ 145.655844619999925, 16.334705155634751 ], [ 145.634444619999897, 16.376105155634761 ], [ 145.714644619999888, 16.355805155634741 ], [ 145.696944619999897, 16.336105155634741 ], [ 145.655844619999925, 16.334705155634751 ] ] ], [ [ [ 145.798344619999909, 16.680305155634741 ], [ 145.779144619999897, 16.678905155634752 ], [ 145.774944619999928, 16.705305155634747 ], [ 145.801644619999934, 16.700505155634758 ], [ 145.798344619999909, 16.680305155634741 ] ] ], [ [ [ 145.860744619999934, 17.287205155634737 ], [ 145.841344619999916, 17.292505155634743 ], [ 145.840244619999908, 17.317205155634738 ], [ 145.867444619999901, 17.304205155634762 ], [ 145.860744619999934, 17.287205155634737 ] ] ], [ [ [ 145.860744619999934, 17.567805155634758 ], [ 145.824444619999895, 17.577505155634739 ], [ 145.833844619999923, 17.605005155634743 ], [ 145.865544619999923, 17.598305155634748 ], [ 145.860744619999934, 17.567805155634758 ] ] ], [ [ [ 145.736044619999916, 18.043905155634761 ], [ 145.779144619999897, 18.170805155634739 ], [ 145.824444619999895, 18.163005155634735 ], [ 145.828544619999889, 18.11750515563476 ], [ 145.736044619999916, 18.043905155634761 ] ] ], [ [ [ 145.679144619999931, 18.721405155634741 ], [ 145.64334461999988, 18.751405155634743 ], [ 145.663344619999918, 18.810305155634737 ], [ 145.710544619999894, 18.768305155634735 ], [ 145.679144619999931, 18.721405155634741 ] ] ], [ [ [ 166.646344619999923, 19.279405155634734 ], [ 166.6074446199999, 19.30500515563476 ], [ 166.627544619999924, 19.324605155634757 ], [ 166.660244619999901, 19.309405155634735 ], [ 166.646344619999923, 19.279405155634734 ] ] ], [ [ [ 145.405844619999925, 19.652805155634738 ], [ 145.381644619999918, 19.663905155634737 ], [ 145.389144619999911, 19.688905155634743 ], [ 145.415244619999896, 19.677205155634752 ], [ 145.405844619999925, 19.652805155634738 ] ] ], [ [ [ 145.256944619999899, 20.010805155634742 ], [ 145.227444619999915, 20.021905155634741 ], [ 145.2421446199999, 20.052205155634752 ], [ 145.273544619999882, 20.036405155634739 ], [ 145.256944619999899, 20.010805155634742 ] ] ], [ [ [ 144.921044619999918, 20.518305155634735 ], [ 144.899144619999902, 20.526105155634738 ], [ 144.9136446199999, 20.556405155634749 ], [ 144.934944619999897, 20.544205155634742 ], [ 144.921044619999918, 20.518305155634735 ] ] ], [ [ [ 153.958544619999884, 24.29500515563474 ], [ 153.939744619999885, 24.300805155634762 ], [ 153.952744619999919, 24.321405155634736 ], [ 153.965744619999896, 24.313605155634761 ], [ 153.958544619999884, 24.29500515563474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 63, "LEVEL1_COD": 6, "LEVEL1_NAM": "PACIFIC", "LEVEL2_NAM": "North-Central Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.522555380000085, 16.728905155634735 ], [ -169.53895538000009, 16.724205155634749 ], [ -169.543155380000087, 16.727705155634752 ], [ -169.531755380000106, 16.73250515563474 ], [ -169.522555380000085, 16.728905155634735 ] ] ], [ [ [ -155.005555380000089, 19.328905155634757 ], [ -155.292555380000096, 19.27390515563475 ], [ -155.660355380000112, 18.924705155634754 ], [ -155.859455380000099, 19.032805155634762 ], [ -156.050055380000089, 19.735805155634736 ], [ -155.813855380000092, 19.999205155634755 ], [ -155.864455380000095, 20.269205155634737 ], [ -155.158655380000084, 19.962505155634759 ], [ -154.792855380000105, 19.538605155634755 ], [ -155.005555380000089, 19.328905155634757 ] ] ], [ [ [ -156.547255380000081, 20.52530515563474 ], [ -156.661955380000109, 20.506905155634755 ], [ -156.698655380000105, 20.53470515563474 ], [ -156.585255380000092, 20.607205155634759 ], [ -156.547255380000081, 20.52530515563474 ] ] ], [ [ [ -156.891955380000098, 20.744205155634759 ], [ -156.968355380000105, 20.745005155634757 ], [ -157.048355380000089, 20.918005155634759 ], [ -156.812255380000096, 20.843605155634762 ], [ -156.891955380000098, 20.744205155634759 ] ] ], [ [ [ -156.4733553800001, 20.898005155634749 ], [ -156.236955380000097, 20.939205155634752 ], [ -155.988655380000097, 20.748005155634743 ], [ -156.420055380000093, 20.588605155634738 ], [ -156.702255380000111, 20.924405155634744 ], [ -156.600055380000072, 21.052205155634752 ], [ -156.4733553800001, 20.898005155634749 ] ] ], [ [ [ -156.894455380000096, 21.161105155634758 ], [ -156.703955380000082, 21.15800515563474 ], [ -157.304755380000074, 21.100505155634735 ], [ -157.188655380000085, 21.209705155634751 ], [ -156.894455380000096, 21.161105155634758 ] ] ], [ [ [ -160.530655380000098, 21.643905155634755 ], [ -160.537755380000078, 21.632205155634736 ], [ -160.541155380000077, 21.641405155634757 ], [ -160.530655380000098, 21.643905155634755 ] ] ], [ [ [ -157.730355380000105, 21.411705155634749 ], [ -157.708655380000096, 21.268605155634745 ], [ -158.103655380000077, 21.29530515563475 ], [ -158.273355380000112, 21.580505155634754 ], [ -157.971955380000111, 21.69940515563475 ], [ -157.730355380000105, 21.411705155634749 ] ] ], [ [ [ -160.114955380000083, 21.887505155634742 ], [ -160.199755380000113, 21.78360515563476 ], [ -160.247755380000086, 21.813605155634761 ], [ -160.061355380000094, 22.01390515563476 ], [ -160.114955380000083, 21.887505155634742 ] ] ], [ [ [ -159.43365538000009, 21.881405155634738 ], [ -159.751955380000084, 21.977805155634755 ], [ -159.785355380000112, 22.061405155634745 ], [ -159.351655380000096, 22.221405155634741 ], [ -159.43365538000009, 21.881405155634738 ] ] ], [ [ [ -161.9416553800001, 23.039405155634753 ], [ -161.947755380000103, 23.038005155634735 ], [ -161.948355380000095, 23.047205155634757 ], [ -161.938355380000075, 23.046405155634758 ], [ -161.9416553800001, 23.039405155634753 ] ] ], [ [ [ -164.696155380000107, 23.564705155634741 ], [ -164.706155380000098, 23.564205155634752 ], [ -164.707555380000088, 23.576705155634741 ], [ -164.696655380000095, 23.578005155634756 ], [ -164.696155380000107, 23.564705155634741 ] ] ], [ [ [ -167.990555380000103, 25.002505155634751 ], [ -168.001155380000085, 25.00390515563474 ], [ -168.005855380000099, 25.017505155634737 ], [ -168.000655380000097, 25.018305155634735 ], [ -167.990555380000103, 25.002505155634751 ] ] ], [ [ [ -171.723555380000107, 25.762505155634742 ], [ -171.731355380000082, 25.760805155634742 ], [ -171.724655380000087, 25.791705155634745 ], [ -171.717255380000097, 25.777205155634746 ], [ -171.723555380000107, 25.762505155634742 ] ] ], [ [ [ -173.946155380000107, 26.063305155634751 ], [ -173.960855380000083, 26.064705155634741 ], [ -173.960855380000083, 26.079405155634745 ], [ -173.944755380000089, 26.080805155634735 ], [ -173.946155380000107, 26.063305155634751 ] ] ], [ [ [ -177.334455380000094, 28.194205155634748 ], [ -177.342255380000097, 28.193905155634738 ], [ -177.321655380000095, 28.213605155634738 ], [ -177.317455380000098, 28.20080515563474 ], [ -177.334455380000094, 28.194205155634748 ] ] ], [ [ [ -177.388055380000083, 28.186405155634745 ], [ -177.389755380000082, 28.21280515563474 ], [ -177.358055380000081, 28.219205155634754 ], [ -177.362755380000095, 28.205805155634735 ], [ -177.388055380000083, 28.186405155634745 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 70, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Subarctic America" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.105355380000105, 51.213005155634747 ], [ -179.142055380000102, 51.268605155634745 ], [ -179.087255380000101, 51.290805155634743 ], [ -179.057055380000094, 51.248305155634753 ], [ -179.105355380000105, 51.213005155634747 ] ] ], [ [ [ -178.962555380000083, 51.311705155634755 ], [ -178.985255380000098, 51.373905155634745 ], [ -178.950055380000094, 51.396905155634741 ], [ -178.900355380000093, 51.355005155634743 ], [ -178.962555380000083, 51.311705155634755 ] ] ], [ [ [ 178.992944619999889, 51.575005155634742 ], [ 179.246544619999895, 51.407205155634742 ], [ 179.471344619999911, 51.36750515563476 ], [ 179.2521446199999, 51.347505155634749 ], [ 178.636344619999932, 51.637805155634751 ], [ 178.992944619999889, 51.575005155634742 ] ] ], [ [ [ -79.250855380000104, 51.770005155634735 ], [ -79.295655380000085, 51.757005155634758 ], [ -79.306855380000087, 51.768305155634735 ], [ -79.217255380000097, 51.794305155634746 ], [ -79.250855380000104, 51.770005155634735 ] ] ], [ [ [ 178.392144619999897, 51.763005155634758 ], [ 178.234344619999888, 51.811905155634761 ], [ 178.222944619999907, 51.830805155634735 ], [ 178.329944619999935, 51.815005155634751 ], [ 178.392144619999897, 51.763005155634758 ] ] ], [ [ [ -178.777055380000093, 51.745505155634746 ], [ -178.853355380000096, 51.771105155634743 ], [ -178.842555380000078, 51.819105155634745 ], [ -178.742855380000094, 51.807805155634739 ], [ -178.777055380000093, 51.745505155634746 ] ] ], [ [ [ -176.336455380000075, 51.721705155634751 ], [ -176.39255538000009, 51.738605155634744 ], [ -176.414555380000081, 51.855005155634743 ], [ -176.277055380000093, 51.860305155634748 ], [ -176.336455380000075, 51.721705155634751 ] ] ], [ [ [ -176.012855380000076, 51.830305155634747 ], [ -176.143355380000088, 51.774405155634739 ], [ -176.219455380000085, 51.831405155634755 ], [ -176.179255380000086, 51.881605155634745 ], [ -176.012855380000076, 51.830305155634747 ] ] ], [ [ [ -175.951155380000102, 51.868905155634749 ], [ -175.956755380000089, 51.847505155634749 ], [ -176.093155380000098, 51.885305155634754 ], [ -176.001955380000084, 51.908905155634741 ], [ -175.951155380000102, 51.868905155634749 ] ] ], [ [ [ -177.813955380000095, 51.719705155634742 ], [ -177.950055380000094, 51.606405155634761 ], [ -178.100855380000098, 51.664705155634735 ], [ -177.955255380000096, 51.764705155634758 ], [ -178.218155380000098, 51.871905155634735 ], [ -177.937255380000096, 51.918005155634759 ], [ -177.813955380000095, 51.719705155634742 ] ] ], [ [ [ -177.122255380000098, 51.784405155634758 ], [ -177.260655380000088, 51.671905155634747 ], [ -177.704455380000098, 51.70080515563474 ], [ -177.157255380000095, 51.938305155634751 ], [ -177.043955380000085, 51.895305155634745 ], [ -177.122255380000098, 51.784405155634758 ] ] ], [ [ [ -175.7250553800001, 51.930505155634748 ], [ -175.729255380000097, 51.966105155634736 ], [ -175.657555380000076, 51.956905155634743 ], [ -175.663355380000098, 51.953605155634747 ], [ -175.7250553800001, 51.930505155634748 ] ] ], [ [ [ -79.296555380000086, 51.958505155634739 ], [ -79.309555380000091, 51.95110515563475 ], [ -79.340955380000082, 51.959205155634734 ], [ -79.307555380000082, 51.981905155634749 ], [ -79.296555380000086, 51.958505155634739 ] ] ], [ [ [ -176.55065538000008, 51.905805155634752 ], [ -176.642255380000108, 51.857205155634759 ], [ -176.429755380000103, 51.730305155634753 ], [ -176.9750553800001, 51.59580515563475 ], [ -176.777055380000093, 51.941605155634747 ], [ -176.55065538000008, 51.905805155634752 ] ] ], [ [ [ 178.536944619999929, 51.893605155634745 ], [ 178.466844619999904, 51.920505155634757 ], [ 178.468244619999894, 51.984705155634757 ], [ 178.606044619999921, 51.947805155634754 ], [ 178.536944619999929, 51.893605155634745 ] ] ], [ [ [ -175.865055380000086, 51.963605155634738 ], [ -175.918055380000084, 51.963905155634748 ], [ -175.946755380000099, 51.978905155634735 ], [ -175.801955380000095, 51.982205155634759 ], [ -175.865055380000086, 51.963605155634738 ] ] ], [ [ [ -79.207455380000084, 52.01390515563476 ], [ -79.235955380000092, 52.001005155634758 ], [ -79.249655380000092, 52.012705155634748 ], [ -79.229955380000092, 52.024605155634745 ], [ -79.207455380000084, 52.01390515563476 ] ] ], [ [ [ 179.737444619999906, 51.903005155634744 ], [ 179.560744619999923, 51.883605155634754 ], [ 179.486044619999916, 51.97220515563474 ], [ 179.6585446199999, 52.024705155634749 ], [ 179.737444619999906, 51.903005155634744 ] ] ], [ [ [ -79.349255380000102, 52.097705155634756 ], [ -79.394955380000084, 51.943605155634756 ], [ -79.655755380000102, 51.948505155634749 ], [ -79.633955380000089, 52.029105155634753 ], [ -79.349255380000102, 52.097705155634756 ] ] ], [ [ [ -176.03725538000009, 51.964405155634736 ], [ -176.166455380000087, 51.99250515563476 ], [ -176.190855380000102, 52.060005155634755 ], [ -176.046155380000101, 52.102205155634735 ], [ -176.03725538000009, 51.964405155634736 ] ] ], [ [ [ -78.972155380000089, 52.105205155634749 ], [ -79.025655380000103, 52.103405155634746 ], [ -79.025955380000084, 52.113805155634751 ], [ -78.976355380000086, 52.121005155634762 ], [ -78.972155380000089, 52.105205155634749 ] ] ], [ [ [ 177.684644619999915, 52.080005155634737 ], [ 177.604944619999912, 51.92030515563475 ], [ 177.241044619999911, 51.876905155634759 ], [ 177.5954446199999, 52.125005155634753 ], [ 177.684644619999915, 52.080005155634737 ] ] ], [ [ [ -79.051555380000082, 52.123105155634747 ], [ -79.110055380000091, 52.113205155634759 ], [ -79.140255380000099, 52.116105155634742 ], [ -79.110755380000086, 52.14430515563474 ], [ -79.051555380000082, 52.123105155634747 ] ] ], [ [ [ -173.51585538000009, 52.106905155634749 ], [ -173.172555380000091, 52.10750515563474 ], [ -172.95565538000011, 52.085505155634749 ], [ -173.495055380000082, 52.015005155634739 ], [ -174.057055380000094, 52.120305155634739 ], [ -173.51585538000009, 52.106905155634749 ] ] ], [ [ [ -79.398055380000102, 52.25390515563474 ], [ -79.429155380000083, 52.241305155634748 ], [ -79.53125538000009, 52.248805155634741 ], [ -79.495955380000083, 52.278405155634758 ], [ -79.398055380000102, 52.25390515563474 ] ] ], [ [ [ 175.961044619999882, 52.335505155634749 ], [ 175.912444619999917, 52.336905155634739 ], [ 175.881844619999924, 52.372505155634755 ], [ 175.987744619999887, 52.353605155634753 ], [ 175.961044619999882, 52.335505155634749 ] ] ], [ [ [ -172.388355380000093, 52.289705155634735 ], [ -172.521455380000077, 52.243005155634748 ], [ -172.628055380000092, 52.258305155634744 ], [ -172.438355380000075, 52.391905155634745 ], [ -172.301155380000097, 52.343905155634744 ], [ -172.388355380000093, 52.289705155634735 ] ] ], [ [ [ -173.995355380000092, 52.291105155634753 ], [ -174.444155380000097, 52.041905155634751 ], [ -175.335855380000083, 52.014105155634738 ], [ -174.279155380000077, 52.210005155634761 ], [ -174.446155380000107, 52.313005155634741 ], [ -174.184555380000091, 52.416905155634751 ], [ -173.995355380000092, 52.291105155634753 ] ] ], [ [ [ -78.737655380000092, 52.446405155634736 ], [ -78.767755380000096, 52.428705155634745 ], [ -78.813255380000101, 52.438305155634751 ], [ -78.78095538000008, 52.46450515563474 ], [ -78.737655380000092, 52.446405155634736 ] ] ], [ [ [ 173.787744619999899, 52.501105155634761 ], [ 173.735444619999896, 52.353305155634743 ], [ 173.375244619999933, 52.399405155634739 ], [ 173.630744619999916, 52.50390515563474 ], [ 173.787744619999899, 52.501105155634761 ] ] ], [ [ [ -171.235255380000098, 52.45080515563474 ], [ -171.308455380000083, 52.449205155634743 ], [ -171.308055380000098, 52.499405155634761 ], [ -171.217255380000097, 52.51050515563476 ], [ -171.235255380000098, 52.45080515563474 ] ] ], [ [ [ -79.190355380000085, 52.557105155634744 ], [ -79.201255380000106, 52.547805155634748 ], [ -79.230055380000096, 52.557305155634751 ], [ -79.202855380000102, 52.575605155634761 ], [ -79.190355380000085, 52.557105155634744 ] ] ], [ [ [ -79.615855380000085, 52.554505155634743 ], [ -79.675555380000105, 52.55300515563475 ], [ -79.679855380000106, 52.570505155634734 ], [ -79.635255380000103, 52.602805155634755 ], [ -79.615855380000085, 52.554505155634743 ] ] ], [ [ [ -170.605555380000084, 52.590805155634754 ], [ -170.795055380000093, 52.532505155634752 ], [ -170.841655380000077, 52.554105155634758 ], [ -170.676155380000097, 52.694105155634745 ], [ -170.605555380000084, 52.590805155634754 ] ] ], [ [ [ 174.177744619999885, 52.705505155634754 ], [ 174.116644619999931, 52.705505155634754 ], [ 174.0743446199999, 52.715005155634756 ], [ 174.111344619999898, 52.74050515563475 ], [ 174.177744619999885, 52.705505155634754 ] ] ], [ [ [ -170.114755380000076, 52.718305155634752 ], [ -170.189455380000084, 52.724405155634756 ], [ -170.180055380000084, 52.783905155634741 ], [ -170.055055380000084, 52.765305155634749 ], [ -170.114755380000076, 52.718305155634752 ] ] ], [ [ [ -169.675055380000089, 52.817805155634758 ], [ -169.731155380000075, 52.770505155634751 ], [ -170.013055380000083, 52.818305155634746 ], [ -169.781155380000087, 52.885305155634754 ], [ -169.675055380000089, 52.817805155634758 ] ] ], [ [ [ -170.040855380000096, 52.853005155634762 ], [ -170.085355380000095, 52.859405155634747 ], [ -170.1274553800001, 52.88860515563475 ], [ -169.993955380000102, 52.901905155634736 ], [ -170.040855380000096, 52.853005155634762 ] ] ], [ [ [ 173.299944619999906, 52.882205155634736 ], [ 173.433844619999888, 52.829205155634739 ], [ 172.928544619999911, 52.743905155634749 ], [ 172.476344619999907, 52.924405155634744 ], [ 172.78664461999989, 53.01190515563475 ], [ 173.299944619999906, 52.882205155634736 ] ] ], [ [ [ -169.724455380000109, 52.943305155634746 ], [ -169.752555380000103, 53.026405155634748 ], [ -169.676755380000088, 53.031705155634754 ], [ -169.666755380000097, 53.000005155634753 ], [ -169.724455380000109, 52.943305155634746 ] ] ], [ [ [ -79.821755380000099, 53.088305155634757 ], [ -79.922955380000104, 53.072805155634754 ], [ -79.961555380000078, 53.079605155634752 ], [ -79.880655380000093, 53.17970515563475 ], [ -79.821755380000099, 53.088305155634757 ] ] ], [ [ [ -81.333655380000096, 53.219505155634735 ], [ -80.804055380000079, 52.968505155634759 ], [ -80.689855380000097, 52.68770515563476 ], [ -82.084555380000097, 52.995305155634739 ], [ -81.333655380000096, 53.219505155634735 ] ] ], [ [ [ -80.024655380000098, 53.240105155634737 ], [ -80.101255380000083, 53.23280515563475 ], [ -80.028655380000089, 53.383805155634761 ], [ -79.952055380000104, 53.341105155634736 ], [ -80.024655380000098, 53.240105155634737 ] ] ], [ [ [ -168.243655380000092, 53.251105155634761 ], [ -168.470355380000086, 53.046905155634747 ], [ -169.086755380000085, 52.828005155634756 ], [ -168.6214553800001, 53.272205155634751 ], [ -168.358955380000083, 53.259705155634762 ], [ -168.351955380000106, 53.475505155634735 ], [ -167.795355380000103, 53.495505155634746 ], [ -168.243655380000092, 53.251105155634761 ] ] ], [ [ [ -166.210055380000085, 53.705305155634747 ], [ -166.293355380000094, 53.793005155634759 ], [ -166.090055380000081, 53.839405155634736 ], [ -166.115255380000093, 53.777205155634746 ], [ -166.210055380000085, 53.705305155634747 ] ] ], [ [ [ -166.607555380000093, 53.829705155634755 ], [ -166.373655380000088, 54.002205155634741 ], [ -166.215055380000081, 53.92830515563476 ], [ -166.570855380000097, 53.710305155634742 ], [ -166.277255380000099, 53.678605155634742 ], [ -166.752855380000085, 53.446405155634736 ], [ -167.846355380000091, 53.308605155634737 ], [ -167.167255380000086, 53.463005155634747 ], [ -167.030055380000078, 53.701905155634748 ], [ -166.803955380000104, 53.64890515563475 ], [ -167.154155380000077, 53.82610515563475 ], [ -167.024255380000085, 53.955505155634754 ], [ -166.635355380000078, 54.001105155634761 ], [ -166.607555380000093, 53.829705155634755 ] ] ], [ [ [ -165.251755380000077, 54.07610515563475 ], [ -165.297855380000101, 54.037505155634747 ], [ -165.481955380000102, 54.07440515563475 ], [ -165.284455380000082, 54.090505155634744 ], [ -165.251755380000077, 54.07610515563475 ] ] ], [ [ [ -164.931155380000092, 54.105305155634753 ], [ -165.076455380000084, 54.06670515563475 ], [ -165.221955380000082, 54.090005155634756 ], [ -165.128955380000093, 54.128005155634739 ], [ -164.931155380000092, 54.105305155634753 ] ] ], [ [ [ -165.696955380000077, 54.084705155634751 ], [ -166.03895538000009, 54.036105155634758 ], [ -166.1231553800001, 54.116405155634752 ], [ -165.938355380000075, 54.22050515563474 ], [ -165.696955380000077, 54.084705155634751 ] ] ], [ [ [ -165.5606553800001, 54.110305155634748 ], [ -165.682055380000094, 54.238005155634752 ], [ -165.486455380000109, 54.288005155634735 ], [ -165.485855380000089, 54.173305155634736 ], [ -165.5606553800001, 54.110305155634748 ] ] ], [ [ [ -162.400555380000071, 54.369405155634738 ], [ -162.446455380000089, 54.371405155634747 ], [ -162.489755380000076, 54.40970515563474 ], [ -162.368355380000082, 54.38830515563474 ], [ -162.400555380000071, 54.369405155634738 ] ] ], [ [ [ -81.068355380000099, 54.377905155634735 ], [ -81.089155380000079, 54.377705155634757 ], [ -81.112155380000104, 54.408705155634735 ], [ -81.083555380000092, 54.418705155634754 ], [ -81.068355380000099, 54.377905155634735 ] ] ], [ [ [ -162.543955380000085, 54.381405155634738 ], [ -162.76585538000009, 54.40660515563475 ], [ -162.831155380000098, 54.494105155634756 ], [ -162.592255380000097, 54.452205155634758 ], [ -162.543955380000085, 54.381405155634738 ] ] ], [ [ [ -79.570455380000084, 54.758705155634757 ], [ -79.586455380000103, 54.742805155634741 ], [ -79.622955380000093, 54.752805155634761 ], [ -79.610355380000101, 54.767305155634759 ], [ -79.570455380000084, 54.758705155634757 ] ] ], [ [ [ -79.678855380000101, 54.757505155634746 ], [ -79.712355380000105, 54.743005155634748 ], [ -79.745555380000098, 54.754405155634757 ], [ -79.657155380000091, 54.783405155634753 ], [ -79.678855380000101, 54.757505155634746 ] ] ], [ [ [ -79.508355380000097, 54.802005155634745 ], [ -79.546255380000105, 54.794805155634762 ], [ -79.551655380000085, 54.809205155634757 ], [ -79.526455380000101, 54.814005155634746 ], [ -79.508355380000097, 54.802005155634745 ] ] ], [ [ [ -79.415955380000099, 54.84610515563476 ], [ -79.598255380000097, 54.827005155634751 ], [ -79.782455380000101, 54.774905155634755 ], [ -79.570055380000099, 54.866305155634748 ], [ -79.086655380000082, 54.917905155634756 ], [ -79.415955380000099, 54.84610515563476 ] ] ], [ [ [ -132.61945538000009, 54.754405155634757 ], [ -132.783155380000096, 54.865305155634744 ], [ -132.781155380000087, 54.925305155634746 ], [ -132.618855380000099, 54.896105155634743 ], [ -132.61945538000009, 54.754405155634757 ] ] ], [ [ [ -159.295055380000093, 54.86690515563474 ], [ -159.336155380000093, 54.927205155634752 ], [ -159.206955380000096, 54.924405155634744 ], [ -159.224455380000109, 54.896705155634734 ], [ -159.295055380000093, 54.86690515563474 ] ] ], [ [ [ -162.293055380000112, 54.834205155634734 ], [ -162.395555380000076, 54.867805155634741 ], [ -162.434455380000088, 54.931105155634739 ], [ -162.232755380000071, 54.965305155634738 ], [ -162.293055380000112, 54.834205155634734 ] ] ], [ [ [ -131.325855380000093, 54.856905155634749 ], [ -131.378055380000092, 54.863605155634744 ], [ -131.482755380000071, 54.930805155634758 ], [ -131.236455380000109, 54.995305155634739 ], [ -131.325855380000093, 54.856905155634749 ] ] ], [ [ [ -163.41365538000008, 54.891105155634747 ], [ -163.370055380000082, 54.785005155634749 ], [ -163.048655380000099, 54.668305155634741 ], [ -164.085055380000085, 54.621905155634735 ], [ -164.66395538000009, 54.391905155634745 ], [ -164.952255380000082, 54.57580515563474 ], [ -164.432755380000089, 54.930505155634748 ], [ -163.545855380000091, 55.050005155634736 ], [ -163.41365538000008, 54.891105155634747 ] ] ], [ [ [ -159.434155380000107, 54.940505155634739 ], [ -159.479155380000094, 55.014205155634741 ], [ -159.349455380000109, 55.049205155634738 ], [ -159.338655380000091, 54.971905155634758 ], [ -159.434155380000107, 54.940505155634739 ] ] ], [ [ [ -161.739755380000076, 55.056105155634739 ], [ -161.781755380000106, 55.062205155634743 ], [ -161.906955380000113, 55.151405155634748 ], [ -161.641455380000082, 55.113305155634762 ], [ -161.739755380000076, 55.056105155634739 ] ] ], [ [ [ -132.674755380000079, 55.03300515563474 ], [ -132.864755380000076, 55.030005155634754 ], [ -132.853355380000096, 55.159405155634758 ], [ -132.732255380000083, 55.140305155634749 ], [ -132.674755380000079, 55.03300515563474 ] ] ], [ [ [ -159.519455380000096, 55.064105155634749 ], [ -159.655655380000098, 55.05500515563476 ], [ -159.535355380000112, 55.247505155634755 ], [ -159.505055380000101, 55.175305155634746 ], [ -159.519455380000096, 55.064105155634749 ] ] ], [ [ [ -132.835855380000112, 54.889205155634741 ], [ -132.680055380000113, 54.666105155634753 ], [ -133.122555380000108, 54.939405155634759 ], [ -133.195555380000087, 55.230305155634753 ], [ -132.835855380000112, 54.889205155634741 ] ] ], [ [ [ -161.561955380000086, 55.218005155634742 ], [ -161.635055380000097, 55.186905155634761 ], [ -161.706155380000098, 55.204705155634755 ], [ -161.533655380000084, 55.252805155634761 ], [ -161.561955380000086, 55.218005155634742 ] ] ], [ [ [ -131.425855380000087, 55.211105155634741 ], [ -131.372255380000098, 55.01360515563475 ], [ -131.617555380000113, 55.011105155634752 ], [ -131.579755380000108, 55.257505155634746 ], [ -131.425855380000087, 55.211105155634741 ] ] ], [ [ [ -159.843355380000105, 55.132505155634746 ], [ -160.204455380000098, 54.872205155634745 ], [ -160.244755380000072, 54.901405155634748 ], [ -160.194455380000079, 55.11690515563474 ], [ -160.005855380000071, 55.107205155634759 ], [ -159.882255380000089, 55.290805155634743 ], [ -159.843355380000105, 55.132505155634746 ] ] ], [ [ [ -133.249755380000096, 55.209205155634734 ], [ -133.427855380000096, 55.203605155634747 ], [ -133.439455380000084, 55.301905155634742 ], [ -133.29665538000009, 55.330505155634754 ], [ -133.249755380000096, 55.209205155634734 ] ] ], [ [ [ -160.333055380000076, 55.248005155634743 ], [ -160.48305538000011, 55.290005155634745 ], [ -160.528155380000101, 55.320505155634734 ], [ -160.346955380000111, 55.368605155634739 ], [ -160.333055380000076, 55.248005155634743 ] ] ], [ [ [ -160.695555380000087, 55.400005155634759 ], [ -160.543955380000085, 55.38550515563476 ], [ -160.575055380000094, 55.233005155634757 ], [ -160.461655380000082, 55.187205155634743 ], [ -160.816455380000093, 55.118305155634758 ], [ -160.8483553800001, 55.330305155634747 ], [ -160.695555380000087, 55.400005155634759 ] ] ], [ [ [ -133.5983553800001, 55.233905155634758 ], [ -133.653655380000089, 55.369405155634738 ], [ -133.446955380000077, 55.410305155634759 ], [ -133.443055380000089, 55.374405155634761 ], [ -133.5983553800001, 55.233905155634758 ] ] ], [ [ [ -131.725055380000072, 55.134705155634762 ], [ -131.815055380000103, 55.191905155634757 ], [ -131.846155380000084, 55.42000515563474 ], [ -131.616655380000111, 55.28360515563476 ], [ -131.725055380000072, 55.134705155634762 ] ] ], [ [ [ -163.146455380000077, 55.393305155634735 ], [ -163.177555380000086, 55.401705155634758 ], [ -163.194755380000089, 55.421905155634747 ], [ -163.136955380000074, 55.436105155634735 ], [ -163.146455380000077, 55.393305155634735 ] ] ], [ [ [ -160.178955380000104, 55.396105155634743 ], [ -160.313955380000095, 55.391105155634747 ], [ -160.341955380000087, 55.416905155634751 ], [ -160.249755380000096, 55.463005155634747 ], [ -160.178955380000104, 55.396105155634743 ] ] ], [ [ [ -133.505055380000101, 55.427205155634752 ], [ -133.601655380000096, 55.447505155634744 ], [ -133.421455380000111, 55.483605155634748 ], [ -133.428955380000104, 55.439405155634759 ], [ -133.505055380000101, 55.427205155634752 ] ] ], [ [ [ -77.578955380000082, 55.452905155634753 ], [ -77.660255380000081, 55.438405155634754 ], [ -77.447255380000087, 55.547605155634741 ], [ -77.446955380000105, 55.519705155634753 ], [ -77.578955380000082, 55.452905155634753 ] ] ], [ [ [ -133.57805538000008, 55.497805155634737 ], [ -133.645555380000076, 55.441105155634759 ], [ -133.758055380000087, 55.487205155634754 ], [ -133.702555380000092, 55.551405155634754 ], [ -133.57805538000008, 55.497805155634737 ] ] ], [ [ [ -133.289455380000106, 55.475805155634745 ], [ -133.345255380000083, 55.445805155634744 ], [ -133.436755380000079, 55.527505155634756 ], [ -133.30835538000008, 55.55470515563475 ], [ -133.289455380000106, 55.475805155634745 ] ] ], [ [ [ -77.306055380000089, 55.602905155634758 ], [ -77.383755380000082, 55.572605155634747 ], [ -77.410055380000102, 55.577005155634751 ], [ -77.269555380000099, 55.639405155634748 ], [ -77.306055380000089, 55.602905155634758 ] ] ], [ [ [ -79.340455380000094, 55.678505155634738 ], [ -79.372255380000098, 55.686505155634748 ], [ -79.374155380000104, 55.737105155634751 ], [ -79.346055380000081, 55.738105155634756 ], [ -79.340455380000094, 55.678505155634738 ] ] ], [ [ [ -79.230355380000105, 55.676105155634744 ], [ -79.256555380000094, 55.669705155634759 ], [ -79.140055380000092, 55.736105155634746 ], [ -79.158555380000081, 55.713305155634757 ], [ -79.230355380000105, 55.676105155634744 ] ] ], [ [ [ -79.258555380000104, 55.708105155634755 ], [ -79.299555380000101, 55.704605155634752 ], [ -79.190855380000102, 55.764905155634736 ], [ -79.198055380000085, 55.749805155634746 ], [ -79.258555380000104, 55.708105155634755 ] ] ], [ [ [ -133.505655380000093, 55.693305155634746 ], [ -133.677855380000096, 55.784205155634751 ], [ -133.299755380000079, 55.793605155634751 ], [ -133.318655380000109, 55.765805155634737 ], [ -133.505655380000093, 55.693305155634746 ] ] ], [ [ [ -79.299855380000082, 55.784605155634736 ], [ -79.33605538000009, 55.787705155634754 ], [ -79.262155380000081, 55.84410515563475 ], [ -79.256555380000094, 55.819205155634748 ], [ -79.299855380000082, 55.784605155634736 ] ] ], [ [ [ -158.864155380000085, 55.803905155634752 ], [ -158.832755380000094, 55.893905155634755 ], [ -158.709755380000104, 55.831405155634755 ], [ -158.715055380000081, 55.827505155634739 ], [ -158.864155380000085, 55.803905155634752 ] ] ], [ [ [ -133.242255380000074, 55.776705155634758 ], [ -133.309755380000098, 55.821105155634754 ], [ -133.329155380000088, 55.877505155634751 ], [ -133.215555380000097, 55.861905155634744 ], [ -133.242255380000074, 55.776705155634758 ] ] ], [ [ [ -155.580355380000071, 55.774405155634739 ], [ -155.714455380000089, 55.782505155634752 ], [ -155.740055380000086, 55.828605155634747 ], [ -155.563955380000095, 55.918605155634751 ], [ -155.580355380000071, 55.774405155634739 ] ] ], [ [ [ -134.249755380000096, 55.819405155634755 ], [ -134.338955380000073, 55.918005155634759 ], [ -134.096655380000072, 55.918305155634741 ], [ -134.221155380000084, 55.850805155634745 ], [ -134.249755380000096, 55.819405155634755 ] ] ], [ [ [ -133.847855380000112, 55.847505155634749 ], [ -133.900355380000093, 55.847505155634749 ], [ -133.927255380000076, 55.911905155634756 ], [ -133.847855380000112, 55.935305155634737 ], [ -133.847855380000112, 55.847505155634749 ] ] ], [ [ [ -131.050555380000105, 55.799705155634754 ], [ -130.938055380000094, 55.562205155634743 ], [ -131.142855380000071, 55.196905155634752 ], [ -131.281155380000087, 55.226405155634737 ], [ -131.225855380000098, 55.406105155634762 ], [ -131.461655380000082, 55.286105155634758 ], [ -131.271955380000094, 55.431405155634749 ], [ -131.348955380000092, 55.645005155634735 ], [ -131.317855380000083, 55.444705155634736 ], [ -131.455555380000078, 55.325505155634758 ], [ -131.418955380000085, 55.519705155634753 ], [ -131.497255380000098, 55.50390515563474 ], [ -131.521955380000094, 55.293005155634759 ], [ -131.822255380000087, 55.450305155634751 ], [ -131.6839553800001, 55.833305155634761 ], [ -131.265055380000092, 55.960805155634759 ], [ -131.050555380000105, 55.799705155634754 ] ] ], [ [ [ -131.519455380000096, 55.915505155634762 ], [ -131.576955380000072, 55.931905155634738 ], [ -131.399455380000092, 55.963905155634748 ], [ -131.410355380000112, 55.943005155634737 ], [ -131.519455380000096, 55.915505155634762 ] ] ], [ [ [ -79.080655380000081, 55.851005155634752 ], [ -79.140455380000105, 55.802305155634755 ], [ -78.989055380000082, 56.058805155634744 ], [ -78.979955380000092, 56.002405155634747 ], [ -79.080655380000081, 55.851005155634752 ] ] ], [ [ [ -78.869655380000097, 56.062305155634746 ], [ -78.914055380000093, 56.048805155634753 ], [ -78.947455380000093, 56.051705155634735 ], [ -78.836555380000078, 56.080305155634747 ], [ -78.869655380000097, 56.062305155634746 ] ] ], [ [ [ -133.69535538000008, 55.896405155634753 ], [ -133.793055380000112, 55.948305155634742 ], [ -133.679755380000074, 56.06640515563474 ], [ -133.278155380000101, 56.139705155634758 ], [ -133.69535538000008, 55.896405155634753 ] ] ], [ [ [ -76.756155380000081, 56.103105155634736 ], [ -76.835155380000089, 56.101005155634752 ], [ -76.823355380000095, 56.145305155634745 ], [ -76.783955380000094, 56.149805155634752 ], [ -76.756155380000081, 56.103105155634736 ] ] ], [ [ [ -76.7875553800001, 56.185305155634737 ], [ -76.838555380000088, 56.192505155634748 ], [ -76.837155380000098, 56.223905155634739 ], [ -76.791555380000091, 56.210205155634739 ], [ -76.7875553800001, 56.185305155634737 ] ] ], [ [ [ -79.066255380000086, 56.241505155634755 ], [ -79.088755380000094, 56.250405155634738 ], [ -79.055455380000097, 56.291105155634753 ], [ -79.040455380000083, 56.27760515563476 ], [ -79.066255380000086, 56.241505155634755 ] ] ], [ [ [ -133.931155380000092, 56.288305155634745 ], [ -133.946455380000089, 56.291105155634753 ], [ -133.948055380000085, 56.301905155634742 ], [ -133.925555380000105, 56.298005155634755 ], [ -133.931155380000092, 56.288305155634745 ] ] ], [ [ [ -78.03265538000008, 56.280005155634754 ], [ -78.064155380000102, 56.279505155634737 ], [ -78.077355380000085, 56.298205155634761 ], [ -78.02525538000009, 56.303705155634745 ], [ -78.03265538000008, 56.280005155634754 ] ] ], [ [ [ -77.932755380000089, 56.298305155634736 ], [ -77.953155380000084, 56.293305155634741 ], [ -77.984555380000103, 56.30330515563476 ], [ -77.887855380000104, 56.300905155634737 ], [ -77.932755380000089, 56.298305155634736 ] ] ], [ [ [ -76.727155380000085, 56.296205155634752 ], [ -76.774855380000105, 56.276805155634761 ], [ -76.8029553800001, 56.286805155634752 ], [ -76.735555380000079, 56.335705155634756 ], [ -76.727155380000085, 56.296205155634752 ] ] ], [ [ [ -133.488655380000097, 56.336905155634739 ], [ -133.166155380000077, 56.320505155634734 ], [ -133.07805538000008, 56.052505155634762 ], [ -132.629755380000091, 55.925305155634746 ], [ -132.144155380000086, 55.480505155634759 ], [ -132.562555380000106, 55.567805155634758 ], [ -132.086455380000075, 55.272805155634742 ], [ -132.239155380000085, 55.193005155634737 ], [ -131.988655380000097, 55.264205155634741 ], [ -132.218655380000087, 54.99250515563476 ], [ -131.963055380000071, 55.025805155634757 ], [ -132.003955380000093, 54.690505155634739 ], [ -132.593355380000105, 54.964405155634736 ], [ -132.511955380000074, 55.106405155634761 ], [ -132.641455380000082, 55.250305155634734 ], [ -132.666655380000094, 55.138005155634758 ], [ -133.222555380000074, 55.28300515563474 ], [ -132.867555380000113, 55.353905155634735 ], [ -133.128655380000112, 55.494705155634747 ], [ -132.908355380000103, 55.628005155634739 ], [ -133.372255380000098, 55.620505155634746 ], [ -133.135055380000097, 55.881105155634756 ], [ -133.258355380000097, 56.152505155634756 ], [ -133.617255380000074, 56.207505155634735 ], [ -133.488655380000097, 56.336905155634739 ] ] ], [ [ [ -132.094455380000113, 56.093305155634752 ], [ -132.121955380000088, 55.932205155634747 ], [ -132.318955380000091, 55.912205155634737 ], [ -132.716955380000087, 56.151405155634748 ], [ -132.417855380000105, 56.350805155634745 ], [ -132.395055380000088, 56.221905155634758 ], [ -132.094455380000113, 56.093305155634752 ] ] ], [ [ [ -77.80865538000009, 56.352705155634752 ], [ -77.840655380000101, 56.361005155634743 ], [ -77.772555380000085, 56.377105155634737 ], [ -77.787155380000087, 56.361105155634746 ], [ -77.80865538000009, 56.352705155634752 ] ] ], [ [ [ -79.62715538000009, 56.272905155634746 ], [ -79.652955380000094, 56.269805155634756 ], [ -79.559355380000085, 56.399605155634745 ], [ -79.542255380000086, 56.380805155634746 ], [ -79.62715538000009, 56.272905155634746 ] ] ], [ [ [ -78.875555380000094, 56.118605155634739 ], [ -78.841355380000095, 56.349105155634746 ], [ -78.723455380000104, 56.42060515563476 ], [ -78.6916553800001, 56.215405155634741 ], [ -78.875555380000094, 56.118605155634739 ] ] ], [ [ [ -77.505255380000079, 56.394405155634743 ], [ -77.523155380000105, 56.387505155634742 ], [ -77.547755380000098, 56.389905155634736 ], [ -77.497155380000095, 56.428605155634742 ], [ -77.505255380000079, 56.394405155634743 ] ] ], [ [ [ -132.500855380000075, 56.353305155634743 ], [ -132.493855380000099, 56.435805155634753 ], [ -132.386755380000096, 56.398605155634741 ], [ -132.392255380000108, 56.384405155634752 ], [ -132.500855380000075, 56.353305155634743 ] ] ], [ [ [ -132.817255380000091, 56.233905155634758 ], [ -133.057755380000089, 56.347505155634749 ], [ -132.635555380000085, 56.434205155634757 ], [ -132.642255380000108, 56.280305155634736 ], [ -132.817255380000091, 56.233905155634758 ] ] ], [ [ [ -76.668055380000084, 56.44770515563475 ], [ -76.6899553800001, 56.439505155634762 ], [ -76.739955380000083, 56.44140515563474 ], [ -76.709255380000087, 56.466205155634739 ], [ -76.668055380000084, 56.44770515563475 ] ] ], [ [ [ -132.132555380000099, 56.345305155634762 ], [ -131.947255380000087, 56.232205155634759 ], [ -132.056155380000092, 56.111405155634756 ], [ -132.3483553800001, 56.273005155634749 ], [ -132.373855380000094, 56.484405155634747 ], [ -132.132555380000099, 56.345305155634762 ] ] ], [ [ [ -79.619055380000106, 56.39920515563476 ], [ -79.910755380000097, 56.215605155634748 ], [ -80.128155380000095, 56.194305155634751 ], [ -79.557055380000094, 56.514305155634744 ], [ -79.619055380000106, 56.39920515563476 ] ] ], [ [ [ -153.958955380000077, 56.502805155634761 ], [ -154.063055380000094, 56.499205155634755 ], [ -154.134455380000077, 56.505505155634737 ], [ -153.873855380000094, 56.55330515563476 ], [ -153.958955380000077, 56.502805155634761 ] ] ], [ [ [ -156.996655380000107, 56.555505155634748 ], [ -156.971355380000091, 56.534405155634758 ], [ -157.329755380000108, 56.535805155634748 ], [ -157.251755380000077, 56.581705155634737 ], [ -156.996655380000107, 56.555505155634748 ] ] ], [ [ [ -78.943355380000099, 56.377205155634741 ], [ -79.21705538000009, 55.873305155634753 ], [ -78.999355380000083, 56.368105155634751 ], [ -79.10115538000008, 56.307205155634747 ], [ -79.177855380000096, 56.040405155634758 ], [ -79.3089553800001, 55.86550515563475 ], [ -79.199955380000091, 56.198905155634762 ], [ -79.486855380000094, 55.859605155634753 ], [ -79.720955380000106, 55.875405155634738 ], [ -79.555255380000091, 56.107005155634752 ], [ -79.888355380000093, 55.824605155634757 ], [ -80.074755380000084, 55.882705155634753 ], [ -79.582155380000103, 56.253505155634755 ], [ -79.49415538000008, 56.408205155634747 ], [ -79.504655380000088, 56.534305155634755 ], [ -79.457255380000106, 56.370305155634739 ], [ -79.670355380000103, 56.09550515563474 ], [ -79.425055380000089, 56.256305155634735 ], [ -79.308455380000083, 56.582605155634738 ], [ -78.943355380000099, 56.377205155634741 ] ] ], [ [ [ -79.176955380000095, 56.555905155634761 ], [ -79.210555380000102, 56.570905155634748 ], [ -79.172155380000106, 56.59550515563474 ], [ -79.166855380000101, 56.568905155634738 ], [ -79.176955380000095, 56.555905155634761 ] ] ], [ [ [ -132.398055380000073, 56.583605155634743 ], [ -132.42165538000009, 56.567205155634738 ], [ -132.435055380000108, 56.589705155634746 ], [ -132.379455380000081, 56.600505155634735 ], [ -132.398055380000073, 56.583605155634743 ] ] ], [ [ [ -154.481455380000085, 56.601705155634747 ], [ -154.414755380000088, 56.584705155634751 ], [ -154.402855380000091, 56.54670515563474 ], [ -154.787455380000097, 56.415005155634745 ], [ -154.481455380000085, 56.601705155634747 ] ] ], [ [ [ -154.211955380000092, 56.498905155634745 ], [ -154.352555380000098, 56.541705155634745 ], [ -154.085055380000085, 56.608005155634757 ], [ -154.106955380000102, 56.536705155634749 ], [ -154.211955380000092, 56.498905155634745 ] ] ], [ [ [ -169.673355380000089, 56.608605155634748 ], [ -169.521455380000077, 56.613605155634744 ], [ -169.471355380000091, 56.592205155634744 ], [ -169.786155380000082, 56.613905155634754 ], [ -169.673355380000089, 56.608605155634748 ] ] ], [ [ [ -79.179355380000089, 56.638005155634758 ], [ -79.188155380000097, 56.617805155634741 ], [ -79.315255380000082, 56.63890515563476 ], [ -79.257955380000084, 56.674205155634738 ], [ -79.179355380000089, 56.638005155634758 ] ] ], [ [ [ -78.770955380000089, 56.670705155634735 ], [ -78.786855380000105, 56.659905155634746 ], [ -78.88285538000008, 56.678805155634748 ], [ -78.828955380000082, 56.689705155634741 ], [ -78.770955380000089, 56.670705155634735 ] ] ], [ [ [ -76.670155380000097, 56.569005155634741 ], [ -76.723655380000082, 56.597505155634749 ], [ -76.661755380000102, 56.70140515563476 ], [ -76.651755380000083, 56.684505155634739 ], [ -76.670155380000097, 56.569005155634741 ] ] ], [ [ [ -78.773155380000105, 56.718005155634742 ], [ -78.815355380000085, 56.71480515563475 ], [ -78.827955380000105, 56.726305155634762 ], [ -78.783755380000088, 56.736405155634756 ], [ -78.773155380000105, 56.718005155634742 ] ] ], [ [ [ -76.660955380000104, 56.739905155634759 ], [ -76.702755380000099, 56.739205155634735 ], [ -76.705255380000096, 56.74990515563475 ], [ -76.6685553800001, 56.763505155634746 ], [ -76.660955380000104, 56.739905155634759 ] ] ], [ [ [ -79.586755380000085, 56.640305155634749 ], [ -79.632355380000092, 56.635305155634754 ], [ -79.606355380000082, 56.768905155634755 ], [ -79.531955380000085, 56.691505155634744 ], [ -79.586755380000085, 56.640305155634749 ] ] ], [ [ [ -132.773055380000073, 56.494705155634747 ], [ -132.943055380000089, 56.514405155634748 ], [ -132.873655380000088, 56.796105155634748 ], [ -132.528955380000099, 56.595305155634762 ], [ -132.773055380000073, 56.494705155634747 ] ] ], [ [ [ -79.945455380000084, 56.73310515563476 ], [ -79.981855380000098, 56.814205155634752 ], [ -79.897755380000092, 56.83210515563475 ], [ -79.894655380000103, 56.79530515563475 ], [ -79.945455380000084, 56.73310515563476 ] ] ], [ [ [ -76.685755380000103, 56.860205155634745 ], [ -76.720255380000083, 56.853305155634743 ], [ -76.720455380000089, 56.870905155634759 ], [ -76.692055380000085, 56.878405155634752 ], [ -76.685755380000103, 56.860205155634745 ] ] ], [ [ [ -79.700355380000104, 56.833905155634753 ], [ -79.748755380000091, 56.855205155634749 ], [ -79.754455380000081, 56.906205155634737 ], [ -79.729055380000091, 56.905905155634755 ], [ -79.700355380000104, 56.833905155634753 ] ] ], [ [ [ -79.809255380000081, 56.78160515563475 ], [ -79.937355380000099, 56.863005155634752 ], [ -79.936355380000094, 56.892505155634737 ], [ -79.853455380000099, 56.929605155634746 ], [ -79.809255380000081, 56.78160515563475 ] ] ], [ [ [ -133.987555380000089, 56.870805155634756 ], [ -133.902855380000091, 56.753005155634739 ], [ -134.024155380000082, 56.648505155634737 ], [ -133.830555380000078, 56.796105155634748 ], [ -133.69135538000009, 56.599705155634737 ], [ -133.92055538000011, 56.614205155634735 ], [ -133.846155380000084, 56.290805155634743 ], [ -133.973255380000097, 56.356105155634751 ], [ -133.9733553800001, 56.081705155634737 ], [ -134.065555380000092, 56.305805155634758 ], [ -134.123055380000096, 55.995805155634756 ], [ -134.283955380000094, 56.349405155634756 ], [ -134.043955380000085, 56.363605155634744 ], [ -134.065355380000085, 56.550505155634752 ], [ -134.301655380000085, 56.556105155634739 ], [ -134.408955380000094, 56.829405155634745 ], [ -133.987555380000089, 56.870805155634756 ] ] ], [ [ [ -76.706055380000095, 56.957205155634753 ], [ -76.735055380000091, 56.947905155634757 ], [ -76.746955380000088, 56.959705155634751 ], [ -76.714355380000086, 56.970305155634762 ], [ -76.706055380000095, 56.957205155634753 ] ] ], [ [ [ -76.695455380000084, 57.014005155634734 ], [ -76.71275538000009, 57.001705155634752 ], [ -76.742555380000084, 57.008405155634748 ], [ -76.734755380000081, 57.030405155634739 ], [ -76.695455380000084, 57.014005155634734 ] ] ], [ [ [ -78.771055380000092, 57.042405155634739 ], [ -78.786455380000092, 57.03330515563475 ], [ -78.811555380000101, 57.035505155634738 ], [ -78.786855380000105, 57.054305155634736 ], [ -78.771055380000092, 57.042405155634739 ] ] ], [ [ [ -133.317855380000083, 56.993905155634749 ], [ -132.97645538000009, 56.928905155634752 ], [ -132.925055380000089, 56.643305155634735 ], [ -133.351955380000106, 56.838605155634738 ], [ -133.081955380000096, 56.52390515563475 ], [ -133.575555380000083, 56.433605155634737 ], [ -133.696955380000077, 56.831905155634743 ], [ -133.89055538000008, 56.896905155634741 ], [ -133.736155380000099, 56.893005155634754 ], [ -134.018055380000078, 57.014705155634758 ], [ -133.317855380000083, 56.993905155634749 ] ] ], [ [ [ -76.680755380000079, 57.073805155634759 ], [ -76.729155380000094, 57.073705155634755 ], [ -76.755155380000105, 57.155405155634739 ], [ -76.676955380000095, 57.129705155634738 ], [ -76.680755380000079, 57.073805155634759 ] ] ], [ [ [ -78.540155380000101, 57.160105155634753 ], [ -78.556455380000102, 57.149305155634735 ], [ -78.591355380000095, 57.161105155634758 ], [ -78.550755380000084, 57.168005155634759 ], [ -78.540155380000101, 57.160105155634753 ] ] ], [ [ [ -78.369555380000094, 57.160505155634738 ], [ -78.402555380000081, 57.168705155634754 ], [ -78.359655380000106, 57.192805155634758 ], [ -78.288155380000092, 57.174105155634734 ], [ -78.369555380000094, 57.160505155634738 ] ] ], [ [ [ -153.253355380000073, 56.998305155634753 ], [ -153.407555380000076, 57.072805155634754 ], [ -153.272855380000095, 57.198605155634752 ], [ -152.883055380000087, 57.15030515563474 ], [ -153.253355380000073, 56.998305155634753 ] ] ], [ [ [ -170.166155380000077, 57.163305155634745 ], [ -170.280655380000098, 57.105005155634743 ], [ -170.41395538000009, 57.174205155634738 ], [ -170.1505553800001, 57.228305155634743 ], [ -170.166155380000077, 57.163305155634745 ] ] ], [ [ [ -76.772255380000104, 57.216905155634734 ], [ -76.804655380000099, 57.216805155634759 ], [ -76.805255380000091, 57.260805155634742 ], [ -76.766955380000098, 57.240905155634735 ], [ -76.772255380000104, 57.216905155634734 ] ] ], [ [ [ -78.409455380000082, 57.262005155634753 ], [ -78.481655380000092, 57.257905155634759 ], [ -78.51585538000009, 57.273205155634756 ], [ -78.359755380000081, 57.287205155634737 ], [ -78.409455380000082, 57.262005155634753 ] ] ], [ [ [ -135.795855380000091, 56.986405155634756 ], [ -135.708955380000077, 57.161405155634739 ], [ -135.846955380000111, 57.31670515563475 ], [ -135.710555380000073, 57.323605155634752 ], [ -135.546155380000073, 57.129405155634757 ], [ -135.795855380000091, 56.986405155634756 ] ] ], [ [ [ -78.798355380000089, 57.333005155634751 ], [ -78.877555380000103, 57.327505155634739 ], [ -78.904055380000102, 57.34720515563474 ], [ -78.830555380000078, 57.34440515563476 ], [ -78.798355380000089, 57.333005155634751 ] ] ], [ [ [ -78.465255380000087, 57.343905155634744 ], [ -78.493555380000089, 57.335905155634762 ], [ -78.548255380000086, 57.347805155634759 ], [ -78.525155380000086, 57.359705155634757 ], [ -78.465255380000087, 57.343905155634744 ] ] ], [ [ [ -78.582255380000106, 57.396205155634746 ], [ -78.600855380000098, 57.376805155634756 ], [ -78.637255380000084, 57.385305155634754 ], [ -78.609955380000088, 57.400405155634743 ], [ -78.582255380000106, 57.396205155634746 ] ] ], [ [ [ -76.787955380000085, 57.309805155634749 ], [ -76.855055380000096, 57.322105155634759 ], [ -76.872955380000093, 57.418705155634754 ], [ -76.806555380000106, 57.376805155634756 ], [ -76.787955380000085, 57.309805155634749 ] ] ], [ [ [ -134.792555380000096, 57.300305155634746 ], [ -134.864455380000095, 57.329405155634745 ], [ -134.97475538000009, 57.415305155634755 ], [ -134.813655380000085, 57.416905155634751 ], [ -134.792555380000096, 57.300305155634746 ] ] ], [ [ [ -78.629955380000098, 57.452905155634753 ], [ -78.639455380000101, 57.443205155634743 ], [ -78.705155380000093, 57.450605155634761 ], [ -78.656355380000093, 57.462205155634749 ], [ -78.629955380000098, 57.452905155634753 ] ] ], [ [ [ -79.838255380000078, 57.403905155634746 ], [ -79.884755380000087, 57.423105155634758 ], [ -79.889355380000097, 57.467005155634737 ], [ -79.827855380000102, 57.467605155634757 ], [ -79.838255380000078, 57.403905155634746 ] ] ], [ [ [ -78.780455380000092, 57.458905155634753 ], [ -78.810455380000093, 57.456205155634748 ], [ -78.815955380000105, 57.470705155634747 ], [ -78.770955380000089, 57.480805155634741 ], [ -78.780455380000092, 57.458905155634753 ] ] ], [ [ [ -78.530255380000085, 57.503505155634755 ], [ -78.549055380000084, 57.494605155634744 ], [ -78.59345538000008, 57.498605155634735 ], [ -78.555055380000084, 57.51790515563475 ], [ -78.530255380000085, 57.503505155634755 ] ] ], [ [ [ -76.904755380000097, 57.513405155634743 ], [ -76.936155380000088, 57.507705155634753 ], [ -76.943355380000099, 57.552405155634759 ], [ -76.918055380000084, 57.549805155634758 ], [ -76.904755380000097, 57.513405155634743 ] ] ], [ [ [ -134.937555380000106, 57.358905155634758 ], [ -134.616455380000104, 56.72110515563476 ], [ -134.653655380000089, 56.163005155634735 ], [ -135.04665538000009, 56.528305155634754 ], [ -134.847855380000112, 56.685505155634743 ], [ -135.115255380000093, 56.598605155634758 ], [ -135.12005538000011, 56.827505155634739 ], [ -135.367255380000074, 56.828005155634756 ], [ -135.333055380000076, 57.244405155634738 ], [ -135.672855380000101, 57.351905155634753 ], [ -135.478355380000096, 57.363905155634754 ], [ -135.397855380000095, 57.554205155634762 ], [ -134.937555380000106, 57.358905155634758 ] ] ], [ [ [ -79.748355380000106, 57.522405155634758 ], [ -79.784755380000092, 57.495605155634749 ], [ -79.855955380000097, 57.532505155634752 ], [ -79.794555380000105, 57.604405155634751 ], [ -79.748355380000106, 57.522405155634758 ] ] ], [ [ [ -77.065755380000098, 57.75450515563476 ], [ -77.083455380000089, 57.750905155634754 ], [ -77.094255380000078, 57.776605155634755 ], [ -77.067555380000101, 57.777505155634756 ], [ -77.065755380000098, 57.75450515563476 ] ] ], [ [ [ -153.208955380000077, 57.812505155634753 ], [ -153.453955380000082, 57.883905155634736 ], [ -153.536455380000092, 57.934705155634745 ], [ -153.353355380000096, 57.936405155634745 ], [ -153.208955380000077, 57.812505155634753 ] ] ], [ [ [ -152.354455380000104, 57.890305155634749 ], [ -152.456455380000079, 57.90860515563476 ], [ -152.503355380000073, 57.933005155634746 ], [ -152.417255380000086, 57.976405155634737 ], [ -152.354455380000104, 57.890305155634749 ] ] ], [ [ [ -153.116955380000093, 57.950005155634742 ], [ -152.816955380000081, 57.916905155634751 ], [ -152.911755380000102, 57.829405155634745 ], [ -152.876355380000092, 57.726905155634753 ], [ -152.480555380000112, 57.904705155634744 ], [ -152.326455380000084, 57.814105155634749 ], [ -152.550855380000087, 57.698605155634752 ], [ -152.151455380000073, 57.604405155634751 ], [ -152.345255380000083, 57.424205155634738 ], [ -152.746355380000097, 57.509405155634752 ], [ -153.022855380000095, 57.473605155634758 ], [ -152.595855380000103, 57.370005155634757 ], [ -153.169455380000102, 57.34550515563474 ], [ -152.956155380000098, 57.25390515563474 ], [ -153.260355380000078, 57.227805155634755 ], [ -153.500055380000106, 57.063905155634743 ], [ -153.731655380000092, 57.059705155634745 ], [ -153.550055380000089, 56.983005155634757 ], [ -153.979755380000086, 56.738605155634744 ], [ -154.149455380000092, 56.746105155634737 ], [ -153.737755380000095, 57.130805155634746 ], [ -154.096355380000091, 56.963305155634757 ], [ -154.009455380000077, 57.113905155634754 ], [ -154.24615538000009, 57.146905155634741 ], [ -154.479455380000104, 57.120305155634739 ], [ -154.10115538000008, 57.116405155634752 ], [ -154.297855380000101, 56.848905155634739 ], [ -154.530055380000078, 56.99050515563475 ], [ -154.607255380000083, 57.26050515563476 ], [ -154.801155380000097, 57.286105155634758 ], [ -154.207255380000106, 57.666705155634745 ], [ -154.005855380000071, 57.643905155634755 ], [ -153.886155380000105, 57.405005155634754 ], [ -153.766955380000098, 57.313005155634741 ], [ -153.628055380000092, 57.269405155634743 ], [ -153.880355380000083, 57.643005155634754 ], [ -153.581155380000098, 57.612505155634736 ], [ -153.928355380000085, 57.811105155634735 ], [ -153.726955380000106, 57.901905155634736 ], [ -153.496955380000088, 57.627205155634741 ], [ -153.315355380000085, 57.725805155634745 ], [ -153.479155380000094, 57.839405155634736 ], [ -153.213055380000071, 57.788305155634745 ], [ -153.048055380000108, 57.827505155634739 ], [ -153.292255380000086, 58.001705155634752 ], [ -153.116955380000093, 57.950005155634742 ] ] ], [ [ [ -136.437255380000096, 57.846405155634741 ], [ -136.54665538000009, 57.960805155634759 ], [ -136.484455380000099, 58.093305155634752 ], [ -136.330555380000078, 58.010305155634754 ], [ -136.376055380000082, 57.984005155634762 ], [ -136.437255380000096, 57.846405155634741 ] ] ], [ [ [ -153.185255380000086, 58.092505155634754 ], [ -153.055855380000082, 58.035505155634738 ], [ -152.887855380000076, 57.991105155634742 ], [ -153.418055380000112, 58.058905155634747 ], [ -153.185255380000086, 58.092505155634754 ] ] ], [ [ [ -77.635555380000085, 58.153905155634746 ], [ -77.656655380000103, 58.15060515563475 ], [ -77.760055380000097, 58.188405155634754 ], [ -77.71105538000009, 58.196005155634751 ], [ -77.635555380000085, 58.153905155634746 ] ] ], [ [ [ -77.786555380000095, 58.218905155634744 ], [ -77.816255380000086, 58.209405155634741 ], [ -77.850955380000102, 58.235405155634751 ], [ -77.835255380000092, 58.242705155634738 ], [ -77.786555380000095, 58.218905155634744 ] ] ], [ [ [ -151.847255380000092, 58.169705155634759 ], [ -151.896655380000084, 58.194105155634745 ], [ -151.835555380000073, 58.268605155634745 ], [ -151.791155380000077, 58.240005155634762 ], [ -151.847255380000092, 58.169705155634759 ] ] ], [ [ [ -135.742755380000091, 58.256105155634756 ], [ -135.482555380000093, 58.155505155634742 ], [ -135.707755380000094, 57.978305155634743 ], [ -135.399155380000082, 58.139405155634748 ], [ -134.930355380000094, 58.028005155634744 ], [ -134.970055380000076, 57.885305155634754 ], [ -135.204755380000108, 57.942205155634738 ], [ -135.010555380000085, 57.776905155634736 ], [ -135.887555380000094, 57.988605155634744 ], [ -135.296955380000099, 57.731705155634742 ], [ -134.92165538000009, 57.756905155634755 ], [ -134.843355380000105, 57.46280515563474 ], [ -135.804155380000111, 57.76330515563474 ], [ -135.542855380000105, 57.47220515563474 ], [ -135.830855380000088, 57.385805155634742 ], [ -136.069155380000097, 57.600305155634757 ], [ -135.951655380000091, 57.616405155634752 ], [ -136.41225538000009, 57.815805155634749 ], [ -136.326455380000084, 57.991105155634742 ], [ -136.029755380000097, 57.849205155634749 ], [ -136.418355380000094, 58.089705155634746 ], [ -136.352255380000088, 58.21940515563476 ], [ -136.167255380000086, 58.098005155634738 ], [ -136.131955380000079, 58.221905155634758 ], [ -135.742755380000091, 58.256105155634756 ] ] ], [ [ [ -77.892655380000093, 58.260305155634754 ], [ -77.925055380000089, 58.252705155634757 ], [ -78.047955380000104, 58.314705155634741 ], [ -77.951555380000087, 58.293705155634754 ], [ -77.892655380000093, 58.260305155634754 ] ] ], [ [ [ -78.099655380000087, 58.329905155634762 ], [ -78.107355380000087, 58.316505155634744 ], [ -78.147855380000095, 58.325505155634758 ], [ -78.120155380000085, 58.338705155634742 ], [ -78.099655380000087, 58.329905155634762 ] ] ], [ [ [ -134.454455380000098, 58.313305155634751 ], [ -134.259755380000087, 58.195005155634746 ], [ -134.6839553800001, 58.298305155634736 ], [ -134.566955380000081, 58.340805155634754 ], [ -134.454455380000098, 58.313305155634751 ] ] ], [ [ [ -67.585655380000105, 58.288305155634745 ], [ -67.652555380000081, 58.271205155634746 ], [ -67.700855380000093, 58.287305155634741 ], [ -67.609755380000081, 58.367605155634735 ], [ -67.585655380000105, 58.288305155634745 ] ] ], [ [ [ -67.529755380000097, 58.367705155634738 ], [ -67.524855380000105, 58.353905155634735 ], [ -67.564055380000099, 58.362905155634749 ], [ -67.551455380000078, 58.377105155634737 ], [ -67.529755380000097, 58.367705155634738 ] ] ], [ [ [ -135.554155380000111, 58.330005155634737 ], [ -135.667855380000105, 58.333305155634761 ], [ -135.72615538000008, 58.359405155634747 ], [ -135.625255380000112, 58.383005155634734 ], [ -135.554155380000111, 58.330005155634737 ] ] ], [ [ [ -78.174655380000104, 58.376905155634759 ], [ -78.203255380000087, 58.360105155634741 ], [ -78.251955380000084, 58.38550515563476 ], [ -78.2096553800001, 58.392305155634759 ], [ -78.174655380000104, 58.376905155634759 ] ] ], [ [ [ -134.674755380000079, 58.160505155634738 ], [ -134.169155380000092, 58.15970515563474 ], [ -133.875855380000075, 57.672805155634748 ], [ -134.28865538000008, 58.077205155634758 ], [ -134.271155380000096, 57.873605155634735 ], [ -133.864755380000076, 57.458305155634761 ], [ -134.054155380000111, 57.460005155634761 ], [ -133.860255380000098, 57.360505155634755 ], [ -134.174755380000079, 57.384405155634752 ], [ -134.077555380000092, 57.259405155634752 ], [ -134.486655380000087, 57.025505155634747 ], [ -134.613355380000087, 57.225005155634747 ], [ -134.503155380000095, 57.375005155634753 ], [ -134.310255380000086, 57.336105155634741 ], [ -134.572555380000097, 57.489705155634752 ], [ -134.34975538000009, 57.542805155634753 ], [ -134.654455380000087, 57.598305155634748 ], [ -134.956655380000086, 58.407805155634762 ], [ -134.674755380000079, 58.160505155634738 ] ] ], [ [ [ -78.24585538000008, 58.414705155634735 ], [ -78.275155380000086, 58.406805155634757 ], [ -78.327055380000104, 58.432405155634754 ], [ -78.275155380000086, 58.438305155634751 ], [ -78.24585538000008, 58.414705155634735 ] ] ], [ [ [ -80.784255380000104, 58.440705155634745 ], [ -80.842755380000085, 58.432305155634751 ], [ -80.846855380000079, 58.44310515563474 ], [ -80.809055380000103, 58.47540515563476 ], [ -80.784255380000104, 58.440705155634745 ] ] ], [ [ [ -152.409255380000104, 58.36550515563475 ], [ -151.985855380000089, 58.34550515563474 ], [ -151.972855380000112, 58.233005155634757 ], [ -152.278155380000101, 58.261405155634762 ], [ -152.274455380000092, 58.127805155634761 ], [ -152.786955380000109, 57.99250515563476 ], [ -153.231455380000085, 58.169205155634742 ], [ -152.904755380000097, 58.165305155634755 ], [ -153.105855380000094, 58.264405155634748 ], [ -152.793055380000112, 58.28190515563476 ], [ -152.658055380000093, 58.477205155634735 ], [ -152.409255380000104, 58.36550515563475 ] ] ], [ [ [ -78.714555380000093, 58.574205155634743 ], [ -78.747255380000098, 58.566505155634744 ], [ -78.769355380000093, 58.603305155634743 ], [ -78.74755538000008, 58.598005155634738 ], [ -78.714555380000093, 58.574205155634743 ] ] ], [ [ [ -78.634655380000083, 58.583205155634758 ], [ -78.665155380000101, 58.582305155634756 ], [ -78.67735538000008, 58.60780515563475 ], [ -78.615355380000096, 58.613205155634759 ], [ -78.634655380000083, 58.583205155634758 ] ] ], [ [ [ -152.493855380000099, 58.47220515563474 ], [ -152.660555380000091, 58.543305155634741 ], [ -152.345855380000103, 58.627205155634741 ], [ -152.342255380000097, 58.593305155634752 ], [ -152.493855380000099, 58.47220515563474 ] ] ], [ [ [ -78.717455380000104, 58.630505155634737 ], [ -78.773155380000105, 58.635105155634747 ], [ -78.805855380000082, 58.671205155634752 ], [ -78.753355380000102, 58.666805155634748 ], [ -78.717455380000104, 58.630505155634737 ] ] ], [ [ [ -79.750455380000091, 58.728305155634743 ], [ -79.786555380000095, 58.71880515563474 ], [ -79.836955380000092, 58.731205155634754 ], [ -79.803555380000091, 58.754905155634745 ], [ -79.750455380000091, 58.728305155634743 ] ] ], [ [ [ -80.085855380000083, 58.730205155634749 ], [ -80.125355380000087, 58.73310515563476 ], [ -80.131755380000101, 58.759705155634762 ], [ -80.065755380000098, 58.767205155634755 ], [ -80.085855380000083, 58.730205155634749 ] ] ], [ [ [ -78.707155380000103, 58.773205155634756 ], [ -78.753455380000105, 58.764805155634761 ], [ -78.779655380000094, 58.789705155634735 ], [ -78.719855380000098, 58.79700515563475 ], [ -78.707155380000103, 58.773205155634756 ] ] ], [ [ [ -160.956955380000096, 58.556905155634738 ], [ -161.11315538000008, 58.655305155634736 ], [ -160.687255380000096, 58.818305155634746 ], [ -160.902555380000081, 58.578305155634737 ], [ -160.956955380000096, 58.556905155634738 ] ] ], [ [ [ -66.140355380000102, 58.824305155634747 ], [ -66.156655380000103, 58.81640515563474 ], [ -66.187955380000091, 58.82240515563474 ], [ -66.156355380000093, 58.836605155634757 ], [ -66.140355380000102, 58.824305155634747 ] ] ], [ [ [ -78.960355380000095, 58.816905155634757 ], [ -79.006355380000088, 58.820605155634738 ], [ -79.003255380000098, 58.853605155634753 ], [ -78.969755380000095, 58.852605155634748 ], [ -78.960355380000095, 58.816905155634757 ] ] ], [ [ [ -78.464055380000104, 58.922505155634738 ], [ -78.516855380000095, 58.916505155634738 ], [ -78.539355380000103, 58.930705155634755 ], [ -78.493255380000079, 58.947805155634754 ], [ -78.464055380000104, 58.922505155634738 ] ] ], [ [ [ -66.02525538000009, 58.92940515563474 ], [ -66.051155380000097, 58.923305155634736 ], [ -66.098555380000079, 58.94170515563475 ], [ -66.041055380000103, 58.947205155634762 ], [ -66.02525538000009, 58.92940515563474 ] ] ], [ [ [ -152.313355380000075, 58.90830515563475 ], [ -152.360255380000098, 58.916405155634735 ], [ -152.161455380000092, 58.942205155634738 ], [ -152.258055380000087, 58.914705155634735 ], [ -152.313355380000075, 58.90830515563475 ] ] ], [ [ [ -69.441455380000093, 58.96940515563476 ], [ -69.449455380000103, 58.956205155634748 ], [ -69.486955380000097, 58.969605155634738 ], [ -69.471355380000091, 58.977905155634758 ], [ -69.441455380000093, 58.96940515563476 ] ] ], [ [ [ -65.943755380000084, 58.972605155634753 ], [ -65.985655380000082, 58.964205155634758 ], [ -65.999455380000086, 58.979805155634736 ], [ -65.975455380000085, 58.988105155634756 ], [ -65.943755380000084, 58.972605155634753 ] ] ], [ [ [ -69.059855380000101, 58.961105155634741 ], [ -69.102055380000081, 58.95540515563475 ], [ -69.129755380000091, 58.961805155634735 ], [ -69.062955380000091, 59.007005155634758 ], [ -69.059855380000101, 58.961105155634741 ] ] ], [ [ [ -69.385755380000091, 59.020205155634741 ], [ -69.404455380000087, 59.006905155634755 ], [ -69.421855380000096, 59.018805155634752 ], [ -69.414955380000094, 59.035805155634748 ], [ -69.385755380000091, 59.020205155634741 ] ] ], [ [ [ -80.652255380000099, 59.109705155634757 ], [ -80.672155380000106, 59.098905155634739 ], [ -80.704955380000087, 59.102805155634755 ], [ -80.6839553800001, 59.118905155634749 ], [ -80.652255380000099, 59.109705155634757 ] ] ], [ [ [ -69.128755380000086, 59.099605155634762 ], [ -69.136655380000093, 59.075505155634758 ], [ -69.168855380000082, 59.086205155634744 ], [ -69.165455380000083, 59.120205155634736 ], [ -69.128755380000086, 59.099605155634762 ] ] ], [ [ [ -80.6548553800001, 59.315705155634745 ], [ -80.68335538000008, 59.324605155634757 ], [ -80.6548553800001, 59.355905155634744 ], [ -80.640655380000084, 59.344505155634735 ], [ -80.6548553800001, 59.315705155634745 ] ] ], [ [ [ -80.320055380000099, 59.342005155634737 ], [ -80.36315538000008, 59.334505155634744 ], [ -80.385955380000098, 59.351705155634747 ], [ -80.345855380000103, 59.36120515563475 ], [ -80.320055380000099, 59.342005155634737 ] ] ], [ [ [ -65.639355380000097, 59.355505155634759 ], [ -65.663055380000088, 59.343405155634755 ], [ -65.691555380000096, 59.373105155634747 ], [ -65.658955380000094, 59.377805155634761 ], [ -65.639355380000097, 59.355505155634759 ] ] ], [ [ [ -150.691755380000075, 59.306605155634756 ], [ -150.776655380000079, 59.328905155634757 ], [ -150.616655380000111, 59.389705155634758 ], [ -150.622555380000108, 59.353305155634743 ], [ -150.691755380000075, 59.306605155634756 ] ] ], [ [ [ -65.588955380000101, 59.393805155634752 ], [ -65.595555380000093, 59.380305155634758 ], [ -65.628655380000083, 59.394205155634737 ], [ -65.600655380000092, 59.407205155634742 ], [ -65.588955380000101, 59.393805155634752 ] ] ], [ [ [ -153.411455380000092, 59.330305155634747 ], [ -153.533955380000094, 59.330505155634754 ], [ -153.552255380000076, 59.364705155634752 ], [ -153.403155380000101, 59.40690515563476 ], [ -153.411455380000092, 59.330305155634747 ] ] ], [ [ [ -80.626655380000102, 59.399405155634739 ], [ -80.655455380000092, 59.39430515563474 ], [ -80.662055380000083, 59.408705155634735 ], [ -80.619955380000079, 59.41290515563476 ], [ -80.626655380000102, 59.399405155634739 ] ] ], [ [ [ -80.540455380000083, 59.388405155634743 ], [ -80.57835538000009, 59.401305155634745 ], [ -80.557955380000095, 59.454105155634736 ], [ -80.519655380000103, 59.442905155634762 ], [ -80.540455380000083, 59.388405155634743 ] ] ], [ [ [ -150.311455380000098, 59.420505155634757 ], [ -150.420355380000103, 59.397805155634742 ], [ -150.440355380000085, 59.401105155634738 ], [ -150.286155380000082, 59.459405155634741 ], [ -150.311455380000098, 59.420505155634757 ] ] ], [ [ [ -80.557655380000085, 59.654805155634747 ], [ -80.585355380000095, 59.640905155634741 ], [ -80.624855380000099, 59.648805155634747 ], [ -80.583455380000089, 59.675705155634759 ], [ -80.557655380000085, 59.654805155634747 ] ] ], [ [ [ -80.473855380000089, 59.645705155634758 ], [ -80.503455380000105, 59.677405155634759 ], [ -80.431155380000092, 59.690005155634751 ], [ -80.442555380000101, 59.659305155634755 ], [ -80.473855380000089, 59.645705155634758 ] ] ], [ [ [ -80.347555380000102, 59.614405155634742 ], [ -80.283855380000091, 59.723605155634758 ], [ -80.224055380000095, 59.714205155634758 ], [ -80.222255380000092, 59.682705155634736 ], [ -80.347555380000102, 59.614405155634742 ] ] ], [ [ [ -137.056855380000087, 59.069205155634748 ], [ -136.583955380000077, 59.163305155634745 ], [ -136.463655380000091, 59.469705155634742 ], [ -136.233955380000111, 59.525805155634757 ], [ -136.310555380000096, 59.612505155634736 ], [ -135.473655380000082, 59.801905155634742 ], [ -135.097255380000092, 59.621405155634747 ], [ -134.951955380000072, 59.280005155634754 ], [ -133.430055380000113, 58.459205155634734 ], [ -132.226655380000096, 57.204705155634755 ], [ -132.336955380000092, 57.088305155634757 ], [ -132.027555380000081, 57.036405155634739 ], [ -132.103055380000086, 56.866705155634762 ], [ -131.860955380000092, 56.798805155634753 ], [ -131.824155380000093, 56.596905155634758 ], [ -130.088655380000091, 56.118005155634748 ], [ -130.014855380000085, 55.909605155634736 ], [ -130.174755380000079, 55.754405155634757 ], [ -129.990555380000103, 55.281705155634754 ], [ -130.498055380000096, 54.831405155634755 ], [ -130.71275538000009, 54.767805155634747 ], [ -130.741355380000073, 54.966405155634746 ], [ -130.910555380000091, 54.791905155634751 ], [ -130.982255380000083, 55.051105155634744 ], [ -130.702855380000074, 55.11690515563474 ], [ -130.460555380000073, 55.322505155634744 ], [ -130.727855380000108, 55.126405155634743 ], [ -131.056155380000092, 55.122805155634737 ], [ -130.937255380000096, 55.28300515563474 ], [ -130.613955380000107, 55.296105155634748 ], [ -130.864155380000085, 55.308605155634737 ], [ -130.886955380000074, 55.710505155634749 ], [ -131.169455380000102, 55.94170515563475 ], [ -131.010355380000078, 56.106405155634761 ], [ -131.900555380000071, 55.855305155634753 ], [ -131.752555380000103, 55.807805155634739 ], [ -131.95505538000009, 55.501105155634761 ], [ -132.175855380000087, 55.590305155634738 ], [ -132.245255380000089, 55.723905155634739 ], [ -131.947555380000097, 55.961905155634739 ], [ -131.960255380000092, 56.165505155634762 ], [ -131.769755380000106, 56.196905155634752 ], [ -132.337255380000101, 56.519205155634737 ], [ -132.305255380000091, 56.634505155634756 ], [ -132.547855380000101, 56.627805155634761 ], [ -132.362255380000079, 56.820305155634756 ], [ -132.768955380000079, 56.843905155634744 ], [ -132.791455380000087, 57.088005155634747 ], [ -133.508355380000097, 57.193605155634756 ], [ -133.471955380000111, 57.279405155634734 ], [ -133.242555380000113, 57.27530515563474 ], [ -133.083955380000077, 57.321905155634752 ], [ -133.063055380000094, 57.348905155634739 ], [ -133.432255380000072, 57.346905155634758 ], [ -133.509255380000099, 57.49190515563474 ], [ -133.311155380000088, 57.589705155634746 ], [ -133.583655380000096, 57.568305155634746 ], [ -133.64055538000008, 57.696405155634736 ], [ -133.000655380000097, 57.515005155634739 ], [ -133.536155380000082, 57.757505155634746 ], [ -133.55695538000009, 57.902505155634756 ], [ -133.121355380000097, 57.85750515563474 ], [ -133.567255380000091, 57.922805155634748 ], [ -133.69135538000009, 57.787505155634747 ], [ -133.814355380000109, 57.971905155634758 ], [ -133.670855380000091, 58.147505155634761 ], [ -133.909455380000111, 57.978605155634753 ], [ -134.055055380000113, 58.071905155634752 ], [ -134.010055380000097, 58.397505155634761 ], [ -133.769155380000086, 58.518305155634735 ], [ -133.979155380000094, 58.494105155634756 ], [ -134.154155380000077, 58.197805155634754 ], [ -134.510055380000097, 58.353905155634735 ], [ -134.761455380000086, 58.382205155634736 ], [ -134.947255380000087, 58.814705155634741 ], [ -135.147255380000104, 58.841105155634736 ], [ -135.335255380000092, 59.468305155634752 ], [ -135.459155380000084, 59.281405155634744 ], [ -135.304755380000074, 59.083605155634743 ], [ -135.550555380000105, 59.228905155634735 ], [ -135.049755380000079, 58.341405155634746 ], [ -135.151955380000089, 58.206705155634737 ], [ -135.481155380000075, 58.476605155634743 ], [ -135.915555380000086, 58.383005155634734 ], [ -135.836955380000092, 58.543905155634761 ], [ -136.068355380000071, 58.817805155634758 ], [ -135.769455380000096, 58.90030515563474 ], [ -136.16225538000009, 59.03360515563476 ], [ -136.095555380000093, 58.856405155634761 ], [ -136.234755380000081, 58.750805155634751 ], [ -137.056855380000087, 59.069205155634748 ] ] ], [ [ [ -65.3243553800001, 59.842905155634739 ], [ -65.327255380000082, 59.824905155634738 ], [ -65.361555380000084, 59.842605155634757 ], [ -65.345655380000096, 59.848905155634739 ], [ -65.3243553800001, 59.842905155634739 ] ] ], [ [ [ -80.002555380000103, 59.78960515563476 ], [ -80.064155380000102, 59.767805155634747 ], [ -80.20305538000008, 59.779205155634756 ], [ -80.082955380000101, 59.875705155634748 ], [ -80.002555380000103, 59.78960515563476 ] ] ], [ [ [ -79.946855380000102, 59.927305155634755 ], [ -79.996955380000088, 59.922105155634753 ], [ -80.01125538000008, 59.945805155634744 ], [ -79.977755380000104, 59.954005155634761 ], [ -79.946855380000102, 59.927305155634755 ] ] ], [ [ [ -79.861455380000081, 59.945705155634741 ], [ -79.915555380000086, 59.939105155634749 ], [ -79.832555380000088, 59.973305155634748 ], [ -79.861455380000081, 59.945705155634741 ] ] ], [ [ [ -43.648055380000102, 59.847505155634749 ], [ -43.902255380000099, 59.790305155634755 ], [ -44.115555380000103, 59.829205155634739 ], [ -43.958055380000104, 59.979705155634761 ], [ -43.648055380000102, 59.847505155634749 ] ] ], [ [ [ -43.295055380000093, 59.920805155634739 ], [ -43.327855380000102, 59.997205155634745 ], [ -43.204155380000088, 59.968305155634752 ], [ -43.230355380000105, 59.938005155634741 ], [ -43.295055380000093, 59.920805155634739 ] ] ], [ [ [ -144.585055380000085, 59.810305155634737 ], [ -144.503955380000093, 59.894405155634743 ], [ -144.208955380000077, 60.005505155634737 ], [ -144.411155380000082, 59.916405155634735 ], [ -144.585055380000085, 59.810305155634737 ] ] ], [ [ [ -44.313955380000095, 59.871905155634735 ], [ -44.24415538000008, 60.011705155634743 ], [ -43.992255380000103, 60.008305155634744 ], [ -44.145555380000104, 59.899505155634742 ], [ -44.313955380000095, 59.871905155634735 ] ] ], [ [ [ -43.400055380000083, 59.926105155634744 ], [ -43.509155380000095, 59.912505155634747 ], [ -43.45335538000009, 60.038005155634735 ], [ -43.340355380000091, 60.010005155634744 ], [ -43.400055380000083, 59.926105155634744 ] ] ], [ [ [ -148.161155380000082, 59.941105155634759 ], [ -148.24585538000008, 59.942505155634748 ], [ -147.992255380000074, 60.040305155634755 ], [ -148.095555380000093, 59.96280515563474 ], [ -148.161155380000082, 59.941105155634759 ] ] ], [ [ [ -148.027855380000091, 59.946605155634742 ], [ -147.883355380000097, 60.067205155634738 ], [ -147.817255380000091, 60.068905155634738 ], [ -147.880855380000071, 59.995805155634756 ], [ -148.027855380000091, 59.946605155634742 ] ] ], [ [ [ -44.409455380000082, 59.947805155634754 ], [ -44.434455380000088, 60.141405155634757 ], [ -44.201655380000091, 60.046105155634748 ], [ -44.307555380000082, 59.977805155634755 ], [ -44.409455380000082, 59.947805155634754 ] ] ], [ [ [ -148.115555380000103, 59.996405155634747 ], [ -147.967255380000097, 60.153005155634744 ], [ -147.876655380000102, 60.103905155634735 ], [ -147.944455380000079, 60.07640515563476 ], [ -148.115555380000103, 59.996405155634747 ] ] ], [ [ [ -43.354155380000094, 60.084405155634741 ], [ -43.131155380000081, 60.055305155634741 ], [ -43.575055380000094, 60.078005155634756 ], [ -43.572855380000078, 59.914705155634735 ], [ -44.132755380000106, 60.140805155634737 ], [ -43.354155380000094, 60.084405155634741 ] ] ], [ [ [ -45.232555380000093, 60.143305155634735 ], [ -45.275855380000081, 60.130505155634737 ], [ -45.300055380000089, 60.145805155634761 ], [ -45.2661553800001, 60.187505155634753 ], [ -45.232555380000093, 60.143305155634735 ] ] ], [ [ [ -148.033955380000094, 60.189405155634759 ], [ -148.151455380000073, 60.041905155634751 ], [ -148.309755380000098, 60.029705155634744 ], [ -148.224455380000109, 60.108305155634739 ], [ -148.033955380000094, 60.189405155634759 ] ] ], [ [ [ -147.849955380000097, 59.776905155634736 ], [ -147.193655380000109, 60.353305155634743 ], [ -146.923355380000089, 60.309205155634757 ], [ -147.531155380000087, 59.851905155634753 ], [ -147.849955380000097, 59.776905155634736 ] ] ], [ [ [ -148.079455380000098, 60.282805155634762 ], [ -148.14255538000009, 60.320505155634734 ], [ -147.983355380000091, 60.383905155634736 ], [ -148.016955380000098, 60.290805155634743 ], [ -148.079455380000098, 60.282805155634762 ] ] ], [ [ [ -45.365055380000086, 60.185305155634737 ], [ -45.353955380000087, 60.382505155634746 ], [ -45.152255380000099, 60.376405155634743 ], [ -45.190355380000085, 60.260305155634754 ], [ -45.365055380000086, 60.185305155634737 ] ] ], [ [ [ -145.122755380000086, 60.307205155634747 ], [ -145.216655380000077, 60.310505155634743 ], [ -145.281955380000113, 60.330005155634737 ], [ -145.086955380000092, 60.416705155634745 ], [ -145.122755380000086, 60.307205155634747 ] ] ], [ [ [ -166.109755380000081, 60.399105155634757 ], [ -165.681455380000102, 60.294705155634759 ], [ -165.559755380000098, 59.923605155634746 ], [ -166.209255380000087, 59.85750515563474 ], [ -166.083355380000086, 59.775805155634757 ], [ -166.193055380000089, 59.754405155634757 ], [ -167.418055380000084, 60.189405155634759 ], [ -166.109755380000081, 60.399105155634757 ] ] ], [ [ [ -64.655255380000085, 60.463305155634757 ], [ -64.487555380000089, 60.390805155634737 ], [ -64.896355380000102, 60.445405155634759 ], [ -64.865055380000086, 60.465405155634741 ], [ -64.655255380000085, 60.463305155634757 ] ] ], [ [ [ -146.353955380000087, 60.407505155634752 ], [ -146.078955380000082, 60.405305155634736 ], [ -146.602255380000088, 60.238005155634752 ], [ -146.486155380000099, 60.36750515563476 ], [ -146.724155380000099, 60.374705155634743 ], [ -146.353955380000087, 60.407505155634752 ] ] ], [ [ [ -147.711955380000092, 60.376105155634761 ], [ -147.759755380000087, 60.165505155634762 ], [ -147.909755380000092, 60.234705155634757 ], [ -147.703955380000082, 60.511405155634762 ], [ -147.711955380000092, 60.376105155634761 ] ] ], [ [ [ -151.955555380000078, 60.422805155634748 ], [ -151.951155380000102, 60.51220515563476 ], [ -151.856455380000085, 60.489705155634752 ], [ -151.853355380000096, 60.48420515563474 ], [ -151.955555380000078, 60.422805155634748 ] ] ], [ [ [ -94.643155380000081, 60.498305155634753 ], [ -94.68195538000009, 60.496605155634754 ], [ -94.741455380000104, 60.508705155634757 ], [ -94.688755380000089, 60.517305155634759 ], [ -94.643155380000081, 60.498305155634753 ] ] ], [ [ [ -68.294555380000105, 60.205005155634737 ], [ -68.5161553800001, 60.252805155634761 ], [ -68.293855380000082, 60.566605155634747 ], [ -67.920955380000095, 60.471505155634745 ], [ -68.294555380000105, 60.205005155634737 ] ] ], [ [ [ -172.520355380000098, 60.38830515563474 ], [ -172.206955380000096, 60.313005155634741 ], [ -173.053655380000095, 60.497205155634745 ], [ -172.916755380000097, 60.603905155634735 ], [ -172.520355380000098, 60.38830515563474 ] ] ], [ [ [ -146.246955380000088, 60.455005155634737 ], [ -146.320555380000087, 60.494105155634756 ], [ -145.749755380000096, 60.594705155634742 ], [ -146.056455380000102, 60.488005155634752 ], [ -146.246955380000088, 60.455005155634737 ] ] ], [ [ [ -64.641755380000092, 60.615405155634747 ], [ -64.711655380000082, 60.571405155634736 ], [ -64.741055380000091, 60.577205155634758 ], [ -64.675055380000089, 60.616505155634755 ], [ -64.641755380000092, 60.615405155634747 ] ] ], [ [ [ -64.756955380000079, 60.604505155634754 ], [ -64.799355380000094, 60.60350515563475 ], [ -64.700155380000098, 60.660605155634741 ], [ -64.703955380000082, 60.646405155634753 ], [ -64.756955380000079, 60.604505155634754 ] ] ], [ [ [ -45.95475538000008, 60.61550515563475 ], [ -45.970855380000103, 60.681905155634738 ], [ -45.783355380000103, 60.660805155634748 ], [ -45.811455380000098, 60.63690515563475 ], [ -45.95475538000008, 60.61550515563475 ] ] ], [ [ [ -147.372755380000086, 60.661705155634749 ], [ -147.313955380000095, 60.677505155634762 ], [ -147.471655380000072, 60.62890515563474 ], [ -147.475555380000088, 60.688905155634743 ], [ -147.372755380000086, 60.661705155634749 ] ] ], [ [ [ -45.888655380000102, 60.695805155634744 ], [ -45.985255380000098, 60.692205155634738 ], [ -46.091955380000087, 60.63550515563476 ], [ -46.20475538000008, 60.672805155634748 ], [ -46.006955380000079, 60.706405155634755 ], [ -45.888655380000102, 60.695805155634744 ] ] ], [ [ [ -147.925555380000105, 60.662205155634737 ], [ -147.99505538000011, 60.693905155634738 ], [ -148.004255380000075, 60.726905155634753 ], [ -147.846155380000084, 60.700005155634742 ], [ -147.925555380000105, 60.662205155634737 ] ] ], [ [ [ -148.14085538000009, 60.642205155634755 ], [ -148.223055380000091, 60.698605155634752 ], [ -148.214155380000079, 60.754405155634757 ], [ -148.108655380000073, 60.736405155634756 ], [ -148.14085538000009, 60.642205155634755 ] ] ], [ [ [ -46.345555380000093, 60.668005155634759 ], [ -46.450555380000083, 60.676405155634754 ], [ -46.499455380000086, 60.699205155634743 ], [ -46.277255380000099, 60.772205155634751 ], [ -46.345555380000093, 60.668005155634759 ] ] ], [ [ [ -47.234455380000099, 60.769405155634743 ], [ -47.30695538000009, 60.769705155634753 ], [ -47.358355380000091, 60.791705155634745 ], [ -47.315555380000092, 60.806905155634738 ], [ -47.234455380000099, 60.769405155634743 ] ] ], [ [ [ -46.980355380000105, 60.772805155634742 ], [ -47.021455380000106, 60.778005155634744 ], [ -47.049455380000097, 60.805305155634741 ], [ -47.011155380000105, 60.808005155634746 ], [ -46.980355380000105, 60.772805155634742 ] ] ], [ [ [ -78.6154553800001, 60.71170515563476 ], [ -78.741555380000079, 60.709405155634741 ], [ -78.322855380000078, 60.791705155634745 ], [ -78.375655380000097, 60.752105155634737 ], [ -78.6154553800001, 60.71170515563476 ] ] ], [ [ [ -47.161455380000092, 60.798005155634755 ], [ -47.203955380000082, 60.801405155634754 ], [ -47.226955380000078, 60.818005155634737 ], [ -47.152855380000091, 60.81670515563475 ], [ -47.161455380000092, 60.798005155634755 ] ] ], [ [ [ -47.7541553800001, 60.80470515563475 ], [ -47.650855380000081, 60.754705155634738 ], [ -47.902855380000091, 60.676405155634754 ], [ -48.238955380000078, 60.795505155634757 ], [ -47.7541553800001, 60.80470515563475 ] ] ], [ [ [ -47.101955380000078, 60.822805155634754 ], [ -47.176455380000078, 60.827805155634749 ], [ -47.192555380000101, 60.835805155634759 ], [ -47.083655380000096, 60.874705155634743 ], [ -47.101955380000078, 60.822805155634754 ] ] ], [ [ [ -164.988355380000087, 60.822505155634744 ], [ -165.01755538000009, 60.874405155634761 ], [ -164.903655380000089, 60.853605155634753 ], [ -164.915855380000096, 60.84580515563475 ], [ -164.988355380000087, 60.822505155634744 ] ] ], [ [ [ -47.231455380000085, 60.841905155634734 ], [ -47.258655380000079, 60.855805155634741 ], [ -47.178355380000085, 60.871905155634735 ], [ -47.178055380000103, 60.86690515563474 ], [ -47.231455380000085, 60.841905155634734 ] ] ], [ [ [ -146.753355380000073, 60.807205155634747 ], [ -146.810255380000086, 60.813305155634751 ], [ -146.831955380000096, 60.83640515563475 ], [ -146.744155380000109, 60.881405155634738 ], [ -146.753355380000073, 60.807205155634747 ] ] ], [ [ [ -70.056855380000087, 60.882805155634756 ], [ -70.0880553800001, 60.874705155634743 ], [ -70.097355380000096, 60.883405155634748 ], [ -70.066155380000083, 60.909505155634761 ], [ -70.056855380000087, 60.882805155634756 ] ] ], [ [ [ -147.15085538000011, 60.860305155634748 ], [ -147.295855380000091, 60.876905155634759 ], [ -147.317855380000083, 60.884205155634746 ], [ -147.075355380000076, 60.89920515563476 ], [ -147.15085538000011, 60.860305155634748 ] ] ], [ [ [ -47.14085538000009, 60.87920515563475 ], [ -47.17165538000009, 60.883605155634754 ], [ -47.073355380000095, 60.926705155634735 ], [ -47.088955380000101, 60.89890515563475 ], [ -47.14085538000009, 60.87920515563475 ] ] ], [ [ [ -147.928955380000104, 60.806905155634738 ], [ -148.133055380000087, 60.799705155634754 ], [ -148.106655380000092, 60.912505155634747 ], [ -147.960855380000112, 60.900805155634757 ], [ -147.928955380000104, 60.806905155634738 ] ] ], [ [ [ -47.029455380000087, 60.897205155634751 ], [ -47.050355380000099, 60.895305155634745 ], [ -46.958055380000104, 60.925505155634752 ], [ -46.982555380000093, 60.907805155634762 ], [ -47.029455380000087, 60.897205155634751 ] ] ], [ [ [ -46.753655380000083, 60.750305155634734 ], [ -46.845055380000105, 60.76050515563476 ], [ -46.164455380000078, 60.922505155634738 ], [ -46.190555380000092, 60.890005155634739 ], [ -46.753655380000083, 60.750305155634734 ] ] ], [ [ [ -46.466455380000099, 60.922205155634757 ], [ -46.514155380000091, 60.930505155634748 ], [ -46.526655380000079, 60.988905155634754 ], [ -46.429455380000093, 60.975805155634745 ], [ -46.466455380000099, 60.922205155634757 ] ] ], [ [ [ -69.987555380000089, 60.975805155634745 ], [ -70.038755380000083, 60.941605155634747 ], [ -70.065955380000105, 60.987305155634758 ], [ -69.970555380000093, 61.020305155634745 ], [ -69.987555380000089, 60.975805155634745 ] ] ], [ [ [ -48.073655380000105, 61.053905155634752 ], [ -48.330855380000088, 61.053605155634742 ], [ -48.370555380000098, 61.078605155634747 ], [ -48.243355380000082, 61.098605155634758 ], [ -48.073655380000105, 61.053905155634752 ] ] ], [ [ [ -48.934455380000088, 61.249205155634755 ], [ -48.874155380000104, 61.301405155634754 ], [ -48.724155380000099, 61.291405155634735 ], [ -48.773055380000102, 61.274405155634739 ], [ -48.934455380000088, 61.249205155634755 ] ] ], [ [ [ -71.530555380000095, 61.304105155634758 ], [ -71.607355380000087, 61.307205155634747 ], [ -71.619955380000079, 61.317805155634758 ], [ -71.550755380000084, 61.333805155634749 ], [ -71.530555380000095, 61.304105155634758 ] ] ], [ [ [ -48.583355380000086, 61.312805155634734 ], [ -48.653655380000089, 61.309705155634745 ], [ -48.833055380000104, 61.335005155634761 ], [ -48.523355380000083, 61.361105155634746 ], [ -48.583355380000086, 61.312805155634734 ] ] ], [ [ [ -64.756555380000094, 61.322505155634744 ], [ -64.780055380000078, 61.308305155634756 ], [ -64.812755380000084, 61.320205155634753 ], [ -64.742155380000099, 61.368205155634755 ], [ -64.756555380000094, 61.322505155634744 ] ] ], [ [ [ -42.45305538000008, 61.44140515563474 ], [ -42.496655380000078, 61.455005155634737 ], [ -42.389755380000082, 61.488905155634754 ], [ -42.39225538000008, 61.483905155634758 ], [ -42.45305538000008, 61.44140515563474 ] ] ], [ [ [ -77.837155380000098, 61.627205155634741 ], [ -77.881755380000101, 61.616805155634736 ], [ -77.966955380000087, 61.646805155634738 ], [ -77.928555380000091, 61.661205155634761 ], [ -77.837155380000098, 61.627205155634741 ] ] ], [ [ [ -64.804655380000099, 61.617005155634743 ], [ -64.718855380000093, 61.475805155634745 ], [ -64.91195538000008, 61.313005155634741 ], [ -65.465055380000081, 61.622805155634737 ], [ -64.804655380000099, 61.617005155634743 ] ] ], [ [ [ -49.089755380000099, 61.633305155634744 ], [ -49.140055380000092, 61.626605155634749 ], [ -49.194455380000079, 61.662205155634737 ], [ -49.149455380000092, 61.700505155634758 ], [ -49.089755380000099, 61.633305155634744 ] ] ], [ [ [ -65.311155380000088, 61.730205155634749 ], [ -65.368655380000092, 61.698105155634735 ], [ -65.399855380000105, 61.698205155634739 ], [ -65.362555380000089, 61.724805155634741 ], [ -65.311155380000088, 61.730205155634749 ] ] ], [ [ [ -49.39225538000008, 61.706905155634743 ], [ -49.465855380000079, 61.713905155634748 ], [ -49.485255380000098, 61.751405155634743 ], [ -49.3500553800001, 61.743005155634748 ], [ -49.39225538000008, 61.706905155634743 ] ] ], [ [ [ -65.818455380000103, 61.766805155634742 ], [ -65.87885538000009, 61.764605155634754 ], [ -65.931855380000087, 61.796305155634755 ], [ -65.881355380000088, 61.820605155634738 ], [ -65.818455380000103, 61.766805155634742 ] ] ], [ [ [ -65.712155380000098, 61.762505155634742 ], [ -65.756855380000104, 61.755705155634743 ], [ -65.749855380000099, 61.823105155634735 ], [ -65.720555380000093, 61.825205155634748 ], [ -65.712155380000098, 61.762505155634742 ] ] ], [ [ [ -65.800555380000105, 61.813705155634736 ], [ -65.840555380000097, 61.822605155634747 ], [ -65.847155380000089, 61.85350515563475 ], [ -65.763855380000081, 61.849705155634737 ], [ -65.800555380000105, 61.813705155634736 ] ] ], [ [ [ -72.060855380000106, 61.864405155634742 ], [ -72.057855380000092, 61.849605155634762 ], [ -72.154955380000104, 61.872705155634762 ], [ -72.12285538000009, 61.875905155634754 ], [ -72.060855380000106, 61.864405155634742 ] ] ], [ [ [ -42.269155380000086, 61.750305155634734 ], [ -42.16195538000008, 61.856705155634742 ], [ -42.084455380000094, 61.875005155634753 ], [ -42.12115538000009, 61.772805155634742 ], [ -42.269155380000086, 61.750305155634734 ] ] ], [ [ [ -93.022355380000079, 61.830805155634735 ], [ -93.12085538000008, 61.839005155634752 ], [ -93.25785538000008, 61.890905155634741 ], [ -93.076355380000081, 61.913005155634735 ], [ -93.022355380000079, 61.830805155634735 ] ] ], [ [ [ -64.854755380000086, 61.721705155634751 ], [ -65.156055380000083, 61.794705155634759 ], [ -65.23415538000009, 61.924405155634744 ], [ -65.056855380000087, 61.904805155634747 ], [ -64.854755380000086, 61.721705155634751 ] ] ], [ [ [ -49.440555380000092, 61.874705155634743 ], [ -49.570555380000087, 61.883605155634754 ], [ -49.634155380000095, 61.930805155634758 ], [ -49.419455380000102, 61.930505155634748 ], [ -49.440555380000092, 61.874705155634743 ] ] ], [ [ [ -72.401455380000101, 62.009705155634762 ], [ -72.438355380000104, 61.998105155634747 ], [ -72.527455380000106, 62.023505155634737 ], [ -72.483255380000088, 62.034105155634748 ], [ -72.401455380000101, 62.009705155634762 ] ] ], [ [ [ -65.888455380000096, 62.042505155634743 ], [ -65.912655380000103, 62.03190515563476 ], [ -65.948155380000088, 62.041905155634751 ], [ -65.920855380000091, 62.061205155634738 ], [ -65.888455380000096, 62.042505155634743 ] ] ], [ [ [ -67.572855380000078, 62.129705155634738 ], [ -67.611555380000084, 62.125005155634753 ], [ -67.634655380000083, 62.141605155634736 ], [ -67.59205538000009, 62.151205155634742 ], [ -67.572855380000078, 62.129705155634738 ] ] ], [ [ [ -65.851355380000086, 62.123005155634743 ], [ -65.889655380000079, 62.085305155634742 ], [ -65.9981553800001, 62.132305155634739 ], [ -65.916755380000097, 62.155005155634754 ], [ -65.851355380000086, 62.123005155634743 ] ] ], [ [ [ -49.663355380000098, 62.180305155634741 ], [ -49.751155380000085, 62.190305155634761 ], [ -49.798355380000089, 62.213905155634748 ], [ -49.650355380000093, 62.237805155634746 ], [ -49.663355380000098, 62.180305155634741 ] ] ], [ [ [ -79.533555380000081, 62.383005155634734 ], [ -79.311955380000086, 62.169405155634749 ], [ -79.732355380000087, 61.622105155634742 ], [ -80.303155380000078, 61.828005155634756 ], [ -80.307755380000089, 62.083805155634749 ], [ -80.072255380000087, 62.375105155634756 ], [ -79.533555380000081, 62.383005155634734 ] ] ], [ [ [ -64.283055380000093, 62.445605155634738 ], [ -64.317855380000083, 62.433405155634759 ], [ -64.349255380000102, 62.439305155634756 ], [ -64.284155380000101, 62.462605155634762 ], [ -64.283055380000093, 62.445605155634738 ] ] ], [ [ [ -65.018955380000079, 62.505305155634758 ], [ -65.043355380000094, 62.500405155634738 ], [ -65.105655380000087, 62.517205155634755 ], [ -65.067555380000101, 62.528905155634746 ], [ -65.018955380000079, 62.505305155634758 ] ] ], [ [ [ -69.990955380000088, 62.544305155634746 ], [ -70.022455380000082, 62.532505155634752 ], [ -70.060555380000096, 62.557805155634739 ], [ -70.028955380000099, 62.564205155634752 ], [ -69.990955380000088, 62.544305155634746 ] ] ], [ [ [ -64.468355380000105, 62.543805155634757 ], [ -64.519155380000086, 62.383205155634741 ], [ -64.938355380000104, 62.462505155634759 ], [ -64.778955380000099, 62.563905155634743 ], [ -64.468355380000105, 62.543805155634757 ] ] ], [ [ [ -64.304255380000086, 62.541205155634756 ], [ -64.314155380000102, 62.530105155634757 ], [ -64.360755380000086, 62.546205155634752 ], [ -64.332555380000088, 62.569105155634745 ], [ -64.304255380000086, 62.541205155634756 ] ] ], [ [ [ -64.131355380000088, 62.534905155634746 ], [ -64.214355380000086, 62.537405155634744 ], [ -64.240555380000103, 62.553605155634742 ], [ -64.20475538000008, 62.571305155634761 ], [ -64.131355380000088, 62.534905155634746 ] ] ], [ [ [ -42.277255380000099, 62.577205155634758 ], [ -42.131155380000081, 62.564705155634741 ], [ -42.125555380000094, 62.496405155634747 ], [ -42.257255380000089, 62.506105155634756 ], [ -42.277255380000099, 62.577205155634758 ] ] ], [ [ [ -77.897755380000092, 62.545805155634739 ], [ -77.976955380000078, 62.538105155634739 ], [ -78.1137553800001, 62.580505155634754 ], [ -77.992455380000081, 62.588605155634738 ], [ -77.897755380000092, 62.545805155634739 ] ] ], [ [ [ -77.763655380000102, 62.547205155634757 ], [ -77.804555380000096, 62.540005155634745 ], [ -77.835855380000083, 62.588305155634757 ], [ -77.690755380000098, 62.578305155634737 ], [ -77.763655380000102, 62.547205155634757 ] ] ], [ [ [ -64.905855380000105, 62.548005155634755 ], [ -64.953255380000087, 62.539805155634738 ], [ -65.061655380000104, 62.559605155634742 ], [ -64.832755380000094, 62.590605155634748 ], [ -64.905855380000105, 62.548005155634755 ] ] ], [ [ [ -91.066555380000096, 62.650105155634762 ], [ -91.196955380000105, 62.665805155634743 ], [ -91.25385538000009, 62.695005155634746 ], [ -91.041155380000106, 62.67200515563475 ], [ -91.066555380000096, 62.650105155634762 ] ] ], [ [ [ -74.004355380000078, 62.59410515563475 ], [ -74.415255380000104, 62.638505155634746 ], [ -74.647655380000089, 62.716305155634743 ], [ -74.44135538000009, 62.717805155634736 ], [ -74.004355380000078, 62.59410515563475 ] ] ], [ [ [ -41.99615538000009, 62.775005155634759 ], [ -41.861955380000097, 62.734705155634757 ], [ -42.447855380000078, 62.751405155634743 ], [ -42.326155380000102, 62.799705155634754 ], [ -41.99615538000009, 62.775005155634759 ] ] ], [ [ [ -70.808755380000093, 62.826705155634741 ], [ -70.411855380000105, 62.71340515563476 ], [ -70.2541553800001, 62.550405155634749 ], [ -70.735455380000104, 62.545905155634742 ], [ -70.897255380000104, 62.712105155634745 ], [ -70.802555380000086, 62.768105155634757 ], [ -71.248355380000106, 62.875605155634744 ], [ -70.808755380000093, 62.826705155634741 ] ] ], [ [ [ -70.923055380000079, 62.883505155634751 ], [ -70.931455380000102, 62.870205155634736 ], [ -71.053455380000088, 62.889905155634736 ], [ -70.999755380000096, 62.90630515563474 ], [ -70.923055380000079, 62.883505155634751 ] ] ], [ [ [ -66.439055380000099, 62.859405155634747 ], [ -66.477955380000083, 62.851205155634759 ], [ -66.568955380000091, 62.914405155634753 ], [ -66.47615538000008, 62.89890515563475 ], [ -66.439055380000099, 62.859405155634747 ] ] ], [ [ [ -71.062855380000087, 62.925405155634749 ], [ -71.110455380000104, 62.919005155634736 ], [ -71.198355380000095, 62.943005155634737 ], [ -71.129855380000095, 62.957605155634738 ], [ -71.062855380000087, 62.925405155634749 ] ] ], [ [ [ -63.741155380000095, 62.932005155634741 ], [ -63.799555380000101, 62.922405155634735 ], [ -63.80835538000008, 62.93540515563474 ], [ -63.702555380000092, 62.947205155634762 ], [ -63.741155380000095, 62.932005155634741 ] ] ], [ [ [ -81.900055380000083, 62.942905155634762 ], [ -82.0161553800001, 62.695605155634738 ], [ -83.047455380000088, 62.18740515563475 ], [ -83.720055380000105, 62.134405155634752 ], [ -83.961155380000093, 62.432105155634744 ], [ -83.3483553800001, 62.917205155634761 ], [ -81.900055380000083, 62.942905155634762 ] ] ], [ [ [ -41.561455380000098, 62.873605155634735 ], [ -41.588655380000091, 63.002505155634751 ], [ -41.458355380000086, 63.016405155634757 ], [ -41.472255380000092, 62.971405155634741 ], [ -41.561455380000098, 62.873605155634735 ] ] ], [ [ [ -82.616255380000098, 63.015105155634743 ], [ -82.706955380000096, 62.986105155634746 ], [ -82.74415538000008, 62.991205155634745 ], [ -82.667555380000096, 63.026205155634742 ], [ -82.616255380000098, 63.015105155634743 ] ] ], [ [ [ -71.409255380000104, 62.999005155634748 ], [ -71.454955380000087, 62.995805155634756 ], [ -71.522355380000079, 63.015205155634746 ], [ -71.42735538000008, 63.021205155634746 ], [ -71.409255380000104, 62.999005155634748 ] ] ], [ [ [ -66.881955380000079, 63.010405155634757 ], [ -66.925255380000095, 62.991605155634758 ], [ -67.082755380000094, 63.085405155634746 ], [ -67.006355380000088, 63.089605155634743 ], [ -66.881955380000079, 63.010405155634757 ] ] ], [ [ [ -50.636655380000093, 63.073905155634762 ], [ -50.670355380000103, 63.02530515563474 ], [ -50.755055380000101, 63.061905155634761 ], [ -50.66195538000008, 63.103005155634762 ], [ -50.636655380000093, 63.073905155634762 ] ] ], [ [ [ -41.333955380000106, 63.050305155634746 ], [ -41.464455380000089, 63.049205155634738 ], [ -41.526455380000101, 63.081405155634755 ], [ -41.373355380000106, 63.110005155634738 ], [ -41.333955380000106, 63.050305155634746 ] ] ], [ [ [ -50.799755380000079, 63.081705155634737 ], [ -50.788055380000088, 63.186605155634751 ], [ -50.682855380000092, 63.116705155634762 ], [ -50.700555380000083, 63.103905155634735 ], [ -50.799755380000079, 63.081705155634737 ] ] ], [ [ [ -50.618055380000101, 63.114705155634752 ], [ -50.612255380000079, 63.201705155634741 ], [ -50.468655380000087, 63.153305155634754 ], [ -50.50785538000008, 63.132505155634746 ], [ -50.618055380000101, 63.114705155634752 ] ] ], [ [ [ -41.209455380000094, 63.157805155634762 ], [ -41.184455380000088, 63.122805155634737 ], [ -41.466455380000099, 63.171405155634758 ], [ -41.435855380000106, 63.209205155634734 ], [ -41.209455380000094, 63.157805155634762 ] ] ], [ [ [ -67.777155380000096, 63.175305155634746 ], [ -67.833155380000079, 63.171205155634752 ], [ -67.877255380000094, 63.214605155634743 ], [ -67.820055380000099, 63.225905155634749 ], [ -67.777155380000096, 63.175305155634746 ] ] ], [ [ [ -64.713655380000091, 63.211205155634744 ], [ -64.76155538000009, 63.208605155634743 ], [ -64.75955538000008, 63.234405155634747 ], [ -64.71875538000009, 63.238305155634762 ], [ -64.713655380000091, 63.211205155634744 ] ] ], [ [ [ -68.123955380000098, 63.237905155634749 ], [ -68.168055380000084, 63.217105155634741 ], [ -68.2053553800001, 63.259405155634752 ], [ -68.1505553800001, 63.262105155634757 ], [ -68.123955380000098, 63.237905155634749 ] ] ], [ [ [ -67.826455380000084, 63.262105155634757 ], [ -67.871855380000085, 63.248605155634735 ], [ -67.919255380000095, 63.261405155634762 ], [ -67.877555380000103, 63.273305155634759 ], [ -67.826455380000084, 63.262105155634757 ] ] ], [ [ [ -83.677555380000086, 63.257005155634758 ], [ -83.719655380000091, 63.258505155634751 ], [ -83.728455380000099, 63.274505155634742 ], [ -83.648455380000087, 63.28900515563474 ], [ -83.677555380000086, 63.257005155634758 ] ] ], [ [ [ -67.984455380000099, 63.212905155634743 ], [ -68.013755380000106, 63.195305155634756 ], [ -68.136955380000103, 63.291105155634753 ], [ -68.088155380000103, 63.302005155634745 ], [ -67.984455380000099, 63.212905155634743 ] ] ], [ [ [ -67.956255380000101, 63.389905155634736 ], [ -67.942055380000085, 63.360305155634748 ], [ -67.997955380000093, 63.383505155634751 ], [ -67.974555380000083, 63.398305155634759 ], [ -67.956255380000101, 63.389905155634736 ] ] ], [ [ [ -76.615855380000085, 63.385405155634757 ], [ -76.638555380000099, 63.378505155634755 ], [ -76.675755380000084, 63.383505155634751 ], [ -76.642755380000096, 63.405405155634739 ], [ -76.615855380000085, 63.385405155634757 ] ] ], [ [ [ -170.82805538000008, 63.415005155634745 ], [ -170.627655380000078, 63.377205155634741 ], [ -170.853355380000096, 63.417805155634753 ], [ -170.82805538000008, 63.415005155634745 ] ] ], [ [ [ -63.933255380000105, 63.443205155634743 ], [ -63.98245538000009, 63.43540515563474 ], [ -63.977055380000081, 63.455005155634737 ], [ -63.933255380000105, 63.443205155634743 ] ] ], [ [ [ -78.217955380000092, 63.475305155634757 ], [ -77.695755380000094, 63.431405155634749 ], [ -77.503255380000098, 63.234405155634747 ], [ -77.96705538000009, 63.095205155634758 ], [ -78.545355380000103, 63.387105155634757 ], [ -78.217955380000092, 63.475305155634757 ] ] ], [ [ [ -90.647455380000082, 63.447805155634754 ], [ -90.694155380000097, 63.447505155634744 ], [ -90.749355380000083, 63.468205155634749 ], [ -90.709055380000081, 63.479205155634745 ], [ -90.647455380000082, 63.447805155634754 ] ] ], [ [ [ -41.095855380000103, 63.22110515563476 ], [ -41.430855380000082, 63.231405155634761 ], [ -41.871955380000088, 63.466705155634756 ], [ -41.673655380000099, 63.489705155634752 ], [ -41.095855380000103, 63.22110515563476 ] ] ], [ [ [ -91.033955380000094, 63.491705155634762 ], [ -91.078855380000078, 63.47540515563476 ], [ -91.114755380000105, 63.499005155634748 ], [ -91.094655380000091, 63.503705155634762 ], [ -91.033955380000094, 63.491705155634762 ] ] ], [ [ [ -64.108755380000105, 63.494305155634734 ], [ -64.135655380000088, 63.487905155634749 ], [ -64.170055380000093, 63.496105155634737 ], [ -64.113555380000093, 63.512005155634753 ], [ -64.108755380000105, 63.494305155634734 ] ] ], [ [ [ -67.992855380000094, 63.498105155634747 ], [ -68.017655380000093, 63.481705155634742 ], [ -68.07035538000008, 63.493505155634736 ], [ -68.040555380000086, 63.516405155634757 ], [ -67.992855380000094, 63.498105155634747 ] ] ], [ [ [ -91.215855380000079, 63.498105155634747 ], [ -91.285355380000084, 63.503305155634749 ], [ -91.290855380000096, 63.520905155634736 ], [ -91.228555380000103, 63.521005155634739 ], [ -91.215855380000079, 63.498105155634747 ] ] ], [ [ [ -78.487855380000099, 63.458505155634739 ], [ -78.566855380000078, 63.457305155634756 ], [ -78.579155380000088, 63.466905155634734 ], [ -78.467155380000094, 63.525505155634747 ], [ -78.487855380000099, 63.458505155634739 ] ] ], [ [ [ -90.569155380000097, 63.504605155634735 ], [ -90.640155380000095, 63.498005155634743 ], [ -90.664955380000094, 63.514405155634748 ], [ -90.589255380000083, 63.526105155634738 ], [ -90.569155380000097, 63.504605155634735 ] ] ], [ [ [ -51.273655380000093, 63.476905155634753 ], [ -51.357255380000083, 63.468305155634752 ], [ -51.358055380000081, 63.483305155634739 ], [ -51.20475538000008, 63.499205155634755 ], [ -51.273655380000093, 63.476905155634753 ] ] ], [ [ [ -90.887055380000106, 63.541505155634738 ], [ -90.754755380000091, 63.53960515563476 ], [ -90.722255380000092, 63.523005155634749 ], [ -90.961955380000092, 63.534905155634746 ], [ -90.887055380000106, 63.541505155634738 ] ] ], [ [ [ -71.581155380000098, 63.521505155634756 ], [ -71.622155380000095, 63.514005155634734 ], [ -71.628055380000092, 63.523805155634747 ], [ -71.587855380000093, 63.549405155634744 ], [ -71.581155380000098, 63.521505155634756 ] ] ], [ [ [ -64.861655380000087, 63.396405155634753 ], [ -64.975755380000095, 63.446405155634736 ], [ -65.03125538000009, 63.549405155634744 ], [ -64.90765538000008, 63.533205155634747 ], [ -64.861655380000087, 63.396405155634753 ] ] ], [ [ [ -72.185255380000086, 63.555705155634755 ], [ -72.213555380000088, 63.555405155634745 ], [ -72.248855380000094, 63.570405155634759 ], [ -72.179655380000099, 63.578305155634737 ], [ -72.185255380000086, 63.555705155634755 ] ] ], [ [ [ -91.39995538000008, 63.55300515563475 ], [ -91.522055380000097, 63.575005155634742 ], [ -91.5238553800001, 63.59410515563475 ], [ -91.339155380000079, 63.572305155634737 ], [ -91.39995538000008, 63.55300515563475 ] ] ], [ [ [ -64.239255380000088, 63.553705155634745 ], [ -64.277755380000087, 63.543805155634757 ], [ -64.315355380000085, 63.589905155634753 ], [ -64.27495538000008, 63.588305155634757 ], [ -64.239255380000088, 63.553705155634745 ] ] ], [ [ [ -67.713655380000091, 63.572805155634754 ], [ -67.73845538000009, 63.556405155634749 ], [ -67.7858553800001, 63.591205155634739 ], [ -67.747355380000101, 63.609105155634737 ], [ -67.713655380000091, 63.572805155634754 ] ] ], [ [ [ -71.673155380000082, 63.594205155634754 ], [ -71.721055380000081, 63.582005155634747 ], [ -71.774455380000092, 63.594005155634747 ], [ -71.631755380000101, 63.608805155634755 ], [ -71.673155380000082, 63.594205155634754 ] ] ], [ [ [ -72.254455380000081, 63.601605155634743 ], [ -72.313355380000104, 63.590705155634751 ], [ -72.385755380000091, 63.604605155634758 ], [ -72.341655380000105, 63.624505155634736 ], [ -72.254455380000081, 63.601605155634743 ] ] ], [ [ [ -64.096855380000079, 63.557705155634736 ], [ -64.162055380000083, 63.541505155634738 ], [ -64.210855380000083, 63.621605155634754 ], [ -64.157155380000091, 63.625005155634753 ], [ -64.096855380000079, 63.557705155634736 ] ] ], [ [ [ -68.702855380000102, 63.607605155634744 ], [ -68.744855380000104, 63.606405155634761 ], [ -68.757255380000089, 63.617405155634756 ], [ -68.706955380000096, 63.630105155634752 ], [ -68.702855380000102, 63.607605155634744 ] ] ], [ [ [ -162.377455380000072, 63.544405155634749 ], [ -162.562555380000106, 63.538605155634755 ], [ -162.7036553800001, 63.571705155634746 ], [ -162.420355380000103, 63.637505155634742 ], [ -162.377455380000072, 63.544405155634749 ] ] ], [ [ [ -63.976555380000093, 63.601305155634762 ], [ -63.9947553800001, 63.595205155634758 ], [ -64.073855380000083, 63.619105155634756 ], [ -63.993455380000086, 63.628805155634737 ], [ -63.976555380000093, 63.601305155634762 ] ] ], [ [ [ -64.135855380000095, 63.304305155634736 ], [ -64.386355380000083, 63.428805155634748 ], [ -64.475855380000098, 63.607705155634747 ], [ -64.346855380000079, 63.638705155634753 ], [ -64.135855380000095, 63.304305155634736 ] ] ], [ [ [ -72.388755380000106, 63.633705155634757 ], [ -72.459155380000084, 63.616805155634736 ], [ -72.521155380000096, 63.63490515563474 ], [ -72.486655380000087, 63.65230515563475 ], [ -72.388755380000106, 63.633705155634757 ] ] ], [ [ [ -91.494355380000087, 63.645505155634751 ], [ -91.515255380000099, 63.633805155634761 ], [ -91.550155380000092, 63.636405155634762 ], [ -91.499755380000096, 63.666405155634735 ], [ -91.494355380000087, 63.645505155634751 ] ] ], [ [ [ -68.746755380000081, 63.654105155634753 ], [ -68.784855380000096, 63.641405155634757 ], [ -68.809455380000088, 63.646905155634741 ], [ -68.766655380000088, 63.67170515563474 ], [ -68.746755380000081, 63.654105155634753 ] ] ], [ [ [ -68.647755380000092, 63.654405155634734 ], [ -68.697255380000087, 63.648805155634747 ], [ -68.70475538000008, 63.660905155634751 ], [ -68.659155380000101, 63.672405155634735 ], [ -68.647755380000092, 63.654405155634734 ] ] ], [ [ [ -71.836955380000092, 63.610605155634758 ], [ -71.8714553800001, 63.620305155634739 ], [ -71.807955380000095, 63.677205155634752 ], [ -71.78725538000009, 63.638805155634756 ], [ -71.836955380000092, 63.610605155634758 ] ] ], [ [ [ -77.353255380000093, 63.682305155634751 ], [ -76.841355380000095, 63.623805155634741 ], [ -76.571155380000079, 63.469805155634745 ], [ -77.005955380000103, 63.413605155634755 ], [ -77.39255538000009, 63.567305155634742 ], [ -77.353255380000093, 63.682305155634751 ] ] ], [ [ [ -72.593555380000083, 63.655805155634752 ], [ -72.633955380000089, 63.63550515563476 ], [ -72.760255380000103, 63.660805155634748 ], [ -72.485955380000092, 63.681005155634736 ], [ -72.593555380000083, 63.655805155634752 ] ] ], [ [ [ -64.092455380000104, 63.708805155634749 ], [ -64.160255380000081, 63.694905155634743 ], [ -64.207855380000098, 63.716605155634753 ], [ -64.117155380000099, 63.750805155634751 ], [ -64.092455380000104, 63.708805155634749 ] ] ], [ [ [ -72.659755380000092, 63.708305155634761 ], [ -72.704555380000102, 63.700905155634743 ], [ -72.716355380000095, 63.729205155634745 ], [ -72.643855380000105, 63.742305155634753 ], [ -72.659755380000092, 63.708305155634761 ] ] ], [ [ [ -71.922855380000101, 63.655305155634736 ], [ -71.973155380000094, 63.65230515563475 ], [ -71.910455380000087, 63.75450515563476 ], [ -71.866455380000104, 63.720405155634737 ], [ -71.922855380000101, 63.655305155634736 ] ] ], [ [ [ -72.765255380000099, 63.707905155634748 ], [ -72.808055380000098, 63.696705155634746 ], [ -72.83575538000008, 63.746405155634747 ], [ -72.758755380000082, 63.753805155634737 ], [ -72.765255380000099, 63.707905155634748 ] ] ], [ [ [ -64.305055380000084, 63.749105155634751 ], [ -64.339455380000089, 63.72540515563476 ], [ -64.36515538000009, 63.771205155634746 ], [ -64.337355380000105, 63.78300515563474 ], [ -64.305055380000084, 63.749105155634751 ] ] ], [ [ [ -171.465655380000101, 63.606705155634742 ], [ -170.300055380000089, 63.694105155634745 ], [ -169.544755380000083, 63.359105155634737 ], [ -168.700855380000093, 63.290505155634762 ], [ -168.8500553800001, 63.155305155634736 ], [ -169.317055380000085, 63.186105155634735 ], [ -169.666155380000077, 62.943305155634746 ], [ -170.518955380000079, 63.378005155634739 ], [ -170.856755380000095, 63.461905155634739 ], [ -171.461155380000093, 63.314705155634741 ], [ -171.850855380000098, 63.508605155634754 ], [ -171.726955380000106, 63.792205155634761 ], [ -171.465655380000101, 63.606705155634742 ] ] ], [ [ [ -64.242455380000081, 63.854005155634738 ], [ -64.262955380000079, 63.790305155634755 ], [ -64.402355380000103, 63.850805155634745 ], [ -64.297955380000104, 63.849005155634742 ], [ -64.242455380000081, 63.854005155634738 ] ] ], [ [ [ -64.572555380000097, 63.789505155634757 ], [ -64.427455380000083, 63.716805155634759 ], [ -64.906655380000103, 63.822205155634762 ], [ -64.690355380000085, 63.926205155634747 ], [ -64.572555380000097, 63.789505155634757 ] ] ], [ [ [ -77.71075538000008, 64.03160515563475 ], [ -77.614655380000102, 64.020505155634751 ], [ -78.01555538000008, 63.951005155634746 ], [ -77.946555380000092, 64.014405155634748 ], [ -77.71075538000008, 64.03160515563475 ] ] ], [ [ [ -64.93505538000008, 64.069605155634761 ], [ -65.014455380000101, 64.066605155634747 ], [ -65.06635538000009, 64.084805155634754 ], [ -64.981955380000102, 64.107605155634744 ], [ -64.93505538000008, 64.069605155634761 ] ] ], [ [ [ -73.135655380000088, 64.107705155634747 ], [ -73.1625553800001, 64.096305155634738 ], [ -73.2250553800001, 64.108605155634748 ], [ -73.19135538000009, 64.131705155634748 ], [ -73.135655380000088, 64.107705155634747 ] ] ], [ [ [ -72.994855380000104, 64.124405155634761 ], [ -73.057655380000085, 64.100805155634745 ], [ -73.096155380000084, 64.112305155634758 ], [ -73.032155380000091, 64.151805155634761 ], [ -72.994855380000104, 64.124405155634761 ] ] ], [ [ [ -64.501955380000084, 64.104205155634745 ], [ -64.578555380000097, 64.104705155634761 ], [ -64.600755380000095, 64.145905155634736 ], [ -64.460555380000102, 64.13060515563474 ], [ -64.501955380000084, 64.104205155634745 ] ] ], [ [ [ -76.584855380000079, 64.172705155634745 ], [ -76.610355380000101, 64.151905155634736 ], [ -76.712655380000086, 64.158805155634738 ], [ -76.662855380000082, 64.179305155634736 ], [ -76.584855380000079, 64.172705155634745 ] ] ], [ [ [ -52.000855380000104, 64.127805155634761 ], [ -52.063655380000085, 64.163905155634737 ], [ -51.905855380000105, 64.188905155634743 ], [ -51.905855380000105, 64.175505155634752 ], [ -52.000855380000104, 64.127805155634761 ] ] ], [ [ [ -81.433055380000098, 64.179805155634753 ], [ -81.465055380000081, 64.179605155634746 ], [ -81.522855380000095, 64.203505155634744 ], [ -81.368955380000102, 64.209605155634748 ], [ -81.433055380000098, 64.179805155634753 ] ] ], [ [ [ -65.049055380000084, 64.16570515563474 ], [ -65.151555380000104, 64.151505155634752 ], [ -65.219455380000085, 64.219005155634747 ], [ -65.112655380000092, 64.213905155634748 ], [ -65.049055380000084, 64.16570515563474 ] ] ], [ [ [ -73.322455380000093, 64.146105155634743 ], [ -73.370655380000102, 64.140605155634759 ], [ -73.472955380000087, 64.169505155634752 ], [ -73.331455380000079, 64.231005155634747 ], [ -73.322455380000093, 64.146105155634743 ] ] ], [ [ [ -76.520355380000098, 64.199005155634737 ], [ -76.53895538000009, 64.184705155634745 ], [ -76.609455380000099, 64.199605155634757 ], [ -76.56605538000008, 64.233005155634757 ], [ -76.520355380000098, 64.199005155634737 ] ] ], [ [ [ -64.787055380000083, 64.204505155634749 ], [ -64.838955380000101, 64.204205155634739 ], [ -64.875355380000087, 64.234605155634753 ], [ -64.830255380000096, 64.241805155634736 ], [ -64.787055380000083, 64.204505155634749 ] ] ], [ [ [ -64.596255380000088, 64.216105155634736 ], [ -64.656355380000093, 64.220905155634753 ], [ -64.535555380000091, 64.235405155634751 ], [ -64.533255380000099, 64.223805155634736 ], [ -64.596255380000088, 64.216105155634736 ] ] ], [ [ [ -73.178655380000095, 64.225205155634754 ], [ -73.216355380000095, 64.216705155634756 ], [ -73.255155380000105, 64.242405155634756 ], [ -73.215255380000087, 64.25420515563475 ], [ -73.178655380000095, 64.225205155634754 ] ] ], [ [ [ -64.702855380000102, 64.240305155634744 ], [ -64.742055380000096, 64.230305155634753 ], [ -64.764555380000104, 64.252805155634761 ], [ -64.733255380000088, 64.258705155634757 ], [ -64.702855380000102, 64.240305155634744 ] ] ], [ [ [ -76.612055380000101, 64.238705155634747 ], [ -76.633855380000085, 64.226405155634737 ], [ -76.692855380000083, 64.24020515563474 ], [ -76.639055380000087, 64.260405155634757 ], [ -76.612055380000101, 64.238705155634747 ] ] ], [ [ [ -73.539455380000078, 64.248005155634743 ], [ -73.568555380000106, 64.247605155634758 ], [ -73.603555380000103, 64.265605155634759 ], [ -73.549555380000101, 64.28130515563474 ], [ -73.539455380000078, 64.248005155634743 ] ] ], [ [ [ -40.674155380000087, 64.291405155634735 ], [ -40.679455380000093, 64.208605155634743 ], [ -41.052855380000096, 64.23280515563475 ], [ -40.875255380000084, 64.302205155634752 ], [ -40.674155380000087, 64.291405155634735 ] ] ], [ [ [ -41.125555380000094, 64.288305155634745 ], [ -41.185255380000086, 64.257505155634746 ], [ -41.374155380000104, 64.285005155634749 ], [ -41.296955380000099, 64.317205155634738 ], [ -41.125555380000094, 64.288305155634745 ] ] ], [ [ [ -64.982555380000093, 64.215805155634754 ], [ -65.088255380000078, 64.260005155634744 ], [ -65.088355380000081, 64.345705155634747 ], [ -64.926055380000093, 64.26390515563476 ], [ -64.982555380000093, 64.215805155634754 ] ] ], [ [ [ -75.553155380000078, 64.323805155634759 ], [ -75.570855380000097, 64.304105155634758 ], [ -75.754755380000091, 64.329805155634759 ], [ -75.708655380000096, 64.35750515563474 ], [ -75.553155380000078, 64.323805155634759 ] ] ], [ [ [ -73.937955380000091, 64.315005155634751 ], [ -73.981255380000079, 64.303405155634735 ], [ -74.011655380000093, 64.353005155634762 ], [ -73.925055380000089, 64.34580515563475 ], [ -73.937955380000091, 64.315005155634751 ] ] ], [ [ [ -51.567255380000091, 64.256105155634756 ], [ -51.439755380000094, 64.362505155634736 ], [ -51.321455380000089, 64.32640515563476 ], [ -51.39255538000009, 64.286105155634758 ], [ -51.567255380000091, 64.256105155634756 ] ] ], [ [ [ -73.778955380000099, 64.27530515563474 ], [ -73.864755380000105, 64.335905155634762 ], [ -73.817855380000083, 64.375705155634748 ], [ -73.756555380000094, 64.36750515563476 ], [ -73.778955380000099, 64.27530515563474 ] ] ], [ [ [ -64.913355380000098, 64.396005155634739 ], [ -64.833355380000086, 64.37490515563475 ], [ -64.814455380000084, 64.334305155634738 ], [ -64.981155380000104, 64.39260515563474 ], [ -64.913355380000098, 64.396005155634739 ] ] ], [ [ [ -74.483255380000088, 64.402505155634756 ], [ -74.539955380000094, 64.38860515563475 ], [ -74.589755380000099, 64.395305155634745 ], [ -74.546455380000083, 64.423005155634755 ], [ -74.483255380000088, 64.402505155634756 ] ] ], [ [ [ -74.256555380000094, 64.433205155634752 ], [ -74.3654553800001, 64.429905155634756 ], [ -74.450055380000094, 64.44910515563474 ], [ -74.354255380000097, 64.489305155634739 ], [ -74.256555380000094, 64.433205155634752 ] ] ], [ [ [ -73.767655380000093, 64.443605155634756 ], [ -73.827055380000104, 64.440905155634752 ], [ -73.780755380000102, 64.516305155634754 ], [ -73.73415538000009, 64.481205155634754 ], [ -73.767655380000093, 64.443605155634756 ] ] ], [ [ [ -74.245155380000085, 64.492605155634735 ], [ -74.271955380000094, 64.481105155634751 ], [ -74.369655380000097, 64.530005155634754 ], [ -74.262155380000081, 64.537105155634762 ], [ -74.245155380000085, 64.492605155634735 ] ] ], [ [ [ -51.239755380000105, 64.214705155634746 ], [ -51.341955380000087, 64.253305155634749 ], [ -51.025055380000083, 64.549405155634744 ], [ -50.819155380000097, 64.541605155634741 ], [ -51.239755380000105, 64.214705155634746 ] ] ], [ [ [ -51.323655380000105, 64.373605155634735 ], [ -51.421455380000083, 64.413305155634745 ], [ -51.091955380000087, 64.56670515563475 ], [ -51.234455380000099, 64.413305155634745 ], [ -51.323655380000105, 64.373605155634735 ] ] ], [ [ [ -65.101855380000103, 64.573405155634745 ], [ -65.132155380000086, 64.554305155634736 ], [ -65.252955380000088, 64.559705155634745 ], [ -65.140355380000102, 64.593005155634742 ], [ -65.101855380000103, 64.573405155634745 ] ] ], [ [ [ -52.083055380000104, 64.591405155634746 ], [ -52.141955380000098, 64.597805155634759 ], [ -52.149155380000082, 64.627205155634741 ], [ -52.120055380000082, 64.629105155634747 ], [ -52.083055380000104, 64.591405155634746 ] ] ], [ [ [ -65.419155380000092, 64.663705155634759 ], [ -65.230855380000094, 64.641605155634736 ], [ -65.671155380000101, 64.541705155634745 ], [ -65.392655380000093, 64.731805155634746 ], [ -65.419155380000092, 64.663705155634759 ] ] ], [ [ [ -66.136355380000083, 64.90970515563474 ], [ -66.1505553800001, 64.893405155634738 ], [ -66.231455380000085, 64.915505155634762 ], [ -66.182355380000104, 64.931805155634734 ], [ -66.136355380000083, 64.90970515563474 ] ] ], [ [ [ -40.180055380000084, 64.431105155634739 ], [ -40.490355380000096, 64.49080515563476 ], [ -40.573955380000086, 64.686905155634761 ], [ -40.864755380000105, 64.90860515563476 ], [ -40.542855380000105, 64.84410515563475 ], [ -40.180055380000084, 64.431105155634739 ] ] ], [ [ [ -63.327355380000085, 64.919905155634737 ], [ -63.382155380000086, 64.918405155634744 ], [ -63.446355380000085, 64.97880515563476 ], [ -63.398055380000102, 64.987105155634751 ], [ -63.327355380000085, 64.919905155634737 ] ] ], [ [ [ -40.49585538000008, 65.015305155634749 ], [ -40.616155380000095, 65.027805155634738 ], [ -40.625255380000084, 65.038605155634755 ], [ -40.556455380000102, 65.073905155634762 ], [ -40.49585538000008, 65.015305155634749 ] ] ], [ [ [ -63.975755380000095, 65.055405155634745 ], [ -64.014055380000087, 65.043305155634741 ], [ -64.041155380000106, 65.061105155634735 ], [ -64.00185538000008, 65.078705155634751 ], [ -63.975755380000095, 65.055405155634745 ] ] ], [ [ [ -52.396655380000084, 65.109405155634747 ], [ -52.361455380000081, 65.186905155634761 ], [ -52.245055380000082, 65.181605155634756 ], [ -52.348955380000092, 65.125805155634751 ], [ -52.396655380000084, 65.109405155634747 ] ] ], [ [ [ -63.042455380000092, 65.258905155634736 ], [ -63.070155380000102, 65.258305155634744 ], [ -63.070755380000094, 65.288505155634752 ], [ -63.018555380000095, 65.286705155634749 ], [ -63.042455380000092, 65.258905155634736 ] ] ], [ [ [ -63.253955380000093, 65.259105155634742 ], [ -63.299055380000084, 65.250105155634756 ], [ -63.326755380000094, 65.29840515563474 ], [ -63.224855380000093, 65.301005155634741 ], [ -63.253955380000093, 65.259105155634742 ] ] ], [ [ [ -63.324755380000084, 65.335805155634759 ], [ -63.347155380000089, 65.322805155634754 ], [ -63.401655380000079, 65.340005155634756 ], [ -63.37255538000008, 65.355505155634759 ], [ -63.324755380000084, 65.335805155634759 ] ] ], [ [ [ -66.969855380000098, 65.293005155634759 ], [ -67.033155380000096, 65.285905155634751 ], [ -67.069655380000086, 65.315405155634735 ], [ -66.983155380000085, 65.365005155634762 ], [ -66.969855380000098, 65.293005155634759 ] ] ], [ [ [ -39.49445538000009, 65.320005155634746 ], [ -39.564455380000084, 65.265805155634737 ], [ -39.804455380000093, 65.333905155634753 ], [ -39.72645538000009, 65.370805155634756 ], [ -39.49445538000009, 65.320005155634746 ] ] ], [ [ [ -66.838155380000103, 65.39490515563476 ], [ -66.881855380000104, 65.390505155634756 ], [ -66.894455380000096, 65.401505155634752 ], [ -66.855055380000096, 65.421505155634762 ], [ -66.838155380000103, 65.39490515563476 ] ] ], [ [ [ -66.996755380000081, 65.431605155634756 ], [ -67.042155380000082, 65.419905155634737 ], [ -67.049455380000097, 65.432005155634741 ], [ -67.015255380000099, 65.456405155634755 ], [ -66.996755380000081, 65.431605155634756 ] ] ], [ [ [ -39.277855380000091, 65.46140515563475 ], [ -39.289455380000078, 65.453005155634756 ], [ -39.386955380000103, 65.501905155634759 ], [ -39.238955380000078, 65.508605155634754 ], [ -39.277855380000091, 65.46140515563475 ] ] ], [ [ [ -52.928355380000085, 65.425305155634746 ], [ -53.013055380000083, 65.44940515563475 ], [ -53.087855380000093, 65.49250515563476 ], [ -52.871955380000088, 65.51360515563475 ], [ -52.928355380000085, 65.425305155634746 ] ] ], [ [ [ -63.156355380000093, 65.522705155634739 ], [ -63.227255380000088, 65.520105155634738 ], [ -63.287355380000093, 65.545805155634739 ], [ -63.251555380000099, 65.558405155634759 ], [ -63.156355380000093, 65.522705155634739 ] ] ], [ [ [ -62.459555380000097, 65.569305155634751 ], [ -62.522455380000082, 65.53160515563475 ], [ -62.504655380000088, 65.570005155634746 ], [ -62.459555380000097, 65.569305155634751 ] ] ], [ [ [ -67.222455380000099, 65.551405155634754 ], [ -67.272855380000095, 65.544105155634739 ], [ -67.280255380000085, 65.561805155634758 ], [ -67.23845538000009, 65.574005155634737 ], [ -67.222455380000099, 65.551405155634754 ] ] ], [ [ [ -37.0375553800001, 65.532805155634762 ], [ -37.191555380000096, 65.532605155634755 ], [ -37.213355380000081, 65.578005155634756 ], [ -37.09975538000009, 65.584405155634741 ], [ -37.0375553800001, 65.532805155634762 ] ] ], [ [ [ -38.849155380000099, 65.518605155634745 ], [ -38.956655380000086, 65.508005155634734 ], [ -38.958655380000096, 65.517805155634747 ], [ -38.761155380000105, 65.541605155634741 ], [ -38.849155380000099, 65.518605155634745 ] ] ], [ [ [ -62.791155380000106, 65.523505155634737 ], [ -62.93535538000009, 65.551305155634751 ], [ -62.927055380000098, 65.585605155634752 ], [ -62.891655380000088, 65.602005155634757 ], [ -62.791155380000106, 65.523505155634737 ] ] ], [ [ [ -62.456455380000079, 65.606605155634739 ], [ -62.519855380000081, 65.603005155634762 ], [ -62.517155380000105, 65.627105155634737 ], [ -62.4673553800001, 65.618105155634751 ], [ -62.456455380000079, 65.606605155634739 ] ] ], [ [ [ -52.995055380000082, 65.548905155634756 ], [ -53.167855380000105, 65.555805155634758 ], [ -53.232555380000093, 65.598305155634748 ], [ -52.848055380000091, 65.644105155634762 ], [ -52.995055380000082, 65.548905155634756 ] ] ], [ [ [ -65.819255380000101, 65.69170515563475 ], [ -65.8440553800001, 65.684405155634735 ], [ -65.884955380000093, 65.688905155634743 ], [ -65.831055380000095, 65.723205155634744 ], [ -65.819255380000101, 65.69170515563475 ] ] ], [ [ [ -36.995555380000098, 65.584405155634741 ], [ -37.105355380000105, 65.606905155634749 ], [ -37.212555380000083, 65.684405155634735 ], [ -36.992255380000103, 65.70110515563475 ], [ -36.995555380000098, 65.584405155634741 ] ] ], [ [ [ -62.300855380000087, 65.726205155634759 ], [ -62.187155380000092, 65.652105155634743 ], [ -62.493655380000092, 65.666405155634735 ], [ -62.476855380000103, 65.729705155634761 ], [ -62.300855380000087, 65.726205155634759 ] ] ], [ [ [ -67.491855380000089, 65.732005155634752 ], [ -67.533955380000094, 65.703205155634762 ], [ -67.795055380000093, 65.700105155634745 ], [ -67.746355380000097, 65.731705155634742 ], [ -67.491855380000089, 65.732005155634752 ] ] ], [ [ [ -67.379855380000095, 65.73250515563474 ], [ -67.40025538000009, 65.71880515563474 ], [ -67.447555380000097, 65.736705155634738 ], [ -67.419255380000095, 65.743705155634743 ], [ -67.379855380000095, 65.73250515563474 ] ] ], [ [ [ -67.684955380000105, 65.783505155634757 ], [ -67.713155380000103, 65.78190515563476 ], [ -67.730255380000102, 65.793505155634747 ], [ -67.657955380000089, 65.799905155634761 ], [ -67.684955380000105, 65.783505155634757 ] ] ], [ [ [ -67.395655380000079, 65.808205155634752 ], [ -67.419055380000088, 65.79130515563476 ], [ -67.457355380000081, 65.79870515563475 ], [ -67.444855380000092, 65.813505155634758 ], [ -67.395655380000079, 65.808205155634752 ] ] ], [ [ [ -83.375055380000106, 65.809905155634752 ], [ -83.461755380000085, 65.800905155634737 ], [ -83.535055380000102, 65.83640515563475 ], [ -83.256655380000097, 65.826605155634738 ], [ -83.375055380000106, 65.809905155634752 ] ] ], [ [ [ -36.798355380000089, 65.750505155634741 ], [ -36.842555380000078, 65.733605155634748 ], [ -36.942755380000079, 65.819705155634736 ], [ -36.776955380000089, 65.863905155634754 ], [ -36.798355380000089, 65.750505155634741 ] ] ], [ [ [ -65.565755380000098, 65.858005155634757 ], [ -65.602755380000104, 65.837705155634737 ], [ -65.640955380000094, 65.84550515563474 ], [ -65.595955380000106, 65.888705155634753 ], [ -65.565755380000098, 65.858005155634757 ] ] ], [ [ [ -37.394155380000086, 65.813605155634761 ], [ -37.269455380000096, 65.755805155634746 ], [ -37.4947553800001, 65.808305155634756 ], [ -37.311655380000104, 65.688005155634741 ], [ -37.485055380000091, 65.607205155634759 ], [ -37.865855380000085, 65.57300515563476 ], [ -37.989155380000085, 65.698305155634742 ], [ -37.686955380000086, 65.904205155634756 ], [ -37.394155380000086, 65.813605155634761 ] ] ], [ [ [ -85.501955380000084, 65.785505155634738 ], [ -85.199855380000088, 65.766605155634736 ], [ -85.088655380000091, 65.598905155634739 ], [ -85.303055380000103, 65.536305155634736 ], [ -84.887655380000098, 65.202805155634749 ], [ -84.472755380000081, 65.460905155634762 ], [ -84.162455380000097, 65.229005155634738 ], [ -83.445755380000094, 65.140705155634762 ], [ -81.815255380000082, 64.551305155634751 ], [ -81.608055380000081, 64.169405155634749 ], [ -81.950055380000094, 63.985405155634751 ], [ -80.933455380000083, 63.97850515563475 ], [ -80.933855380000097, 64.102705155634752 ], [ -80.540755380000093, 63.972105155634736 ], [ -80.637655380000098, 63.846405155634741 ], [ -80.196855380000102, 63.745105155634761 ], [ -81.085255380000092, 63.448405155634745 ], [ -82.414055380000093, 63.663405155634749 ], [ -82.515655380000084, 63.753305155634749 ], [ -82.386955380000103, 63.901005155634735 ], [ -83.129655380000088, 63.967405155634751 ], [ -82.945455380000084, 64.125405155634738 ], [ -83.101655380000096, 64.180505155634748 ], [ -83.640455380000105, 64.033705155634735 ], [ -83.602755380000104, 63.792105155634758 ], [ -84.305655380000104, 63.631705155634748 ], [ -84.495155380000085, 63.342005155634737 ], [ -85.410755380000097, 63.098105155634741 ], [ -85.662155380000087, 63.324605155634757 ], [ -85.653555380000086, 63.677005155634745 ], [ -87.146555380000081, 63.572505155634744 ], [ -87.210955380000087, 63.674005155634759 ], [ -87.006455380000091, 63.872705155634762 ], [ -86.220255380000083, 64.107105155634756 ], [ -86.414455380000078, 64.566905155634757 ], [ -86.190955380000105, 64.832205155634753 ], [ -86.03265538000008, 65.688605155634761 ], [ -85.583655380000096, 65.910605155634741 ], [ -85.501955380000084, 65.785505155634738 ] ] ], [ [ [ -36.319755380000089, 65.821905155634752 ], [ -36.37115538000009, 65.877505155634751 ], [ -36.183055380000098, 65.878005155634739 ], [ -36.212255380000101, 65.858605155634748 ], [ -36.319755380000089, 65.821905155634752 ] ] ], [ [ [ -62.149855380000105, 65.86550515563475 ], [ -62.209755380000104, 65.857405155634737 ], [ -62.303255380000081, 65.929505155634743 ], [ -62.151455380000101, 65.915205155634752 ], [ -62.149855380000105, 65.86550515563475 ] ] ], [ [ [ -36.620055380000082, 65.79530515563475 ], [ -36.748355380000106, 65.90970515563474 ], [ -36.507255380000089, 65.956905155634743 ], [ -36.511955380000103, 65.913305155634745 ], [ -36.620055380000082, 65.79530515563475 ] ] ], [ [ [ -66.9767553800001, 65.964605155634743 ], [ -67.053455380000088, 65.964705155634746 ], [ -67.077855380000102, 65.988505155634741 ], [ -67.002255380000094, 65.99220515563475 ], [ -66.9767553800001, 65.964605155634743 ] ] ], [ [ [ -83.511955380000103, 65.99050515563475 ], [ -83.55095538000009, 65.988305155634762 ], [ -83.578155380000084, 66.001405155634743 ], [ -83.497155380000095, 66.000405155634738 ], [ -83.511955380000103, 65.99050515563475 ] ] ], [ [ [ -84.739655380000102, 65.546505155634762 ], [ -85.105855380000094, 65.743505155634736 ], [ -85.150455380000096, 65.996405155634747 ], [ -84.854755380000086, 65.97680515563475 ], [ -84.587855380000093, 65.655305155634736 ], [ -84.739655380000102, 65.546505155634762 ] ] ], [ [ [ -83.571755380000099, 66.053405155634735 ], [ -83.605055380000096, 66.037105155634762 ], [ -83.660055380000102, 66.04070515563474 ], [ -83.602655380000101, 66.070105155634749 ], [ -83.571755380000099, 66.053405155634735 ] ] ], [ [ [ -68.061755380000079, 66.008505155634751 ], [ -68.118355380000082, 66.016305155634754 ], [ -68.129955380000098, 66.072805155634754 ], [ -68.028755380000092, 66.069805155634739 ], [ -68.061755380000079, 66.008505155634751 ] ] ], [ [ [ -85.016255380000104, 66.067705155634755 ], [ -85.042055380000079, 66.066605155634747 ], [ -85.09945538000008, 66.083705155634746 ], [ -85.029055380000102, 66.09580515563475 ], [ -85.016255380000104, 66.067705155634755 ] ] ], [ [ [ -53.525355380000093, 66.042505155634743 ], [ -53.621955380000088, 66.038305155634745 ], [ -53.679755380000103, 66.081905155634743 ], [ -53.423055380000079, 66.084405155634741 ], [ -53.525355380000093, 66.042505155634743 ] ] ], [ [ [ -83.713355380000081, 65.793705155634754 ], [ -83.253355380000102, 65.68370515563474 ], [ -83.996555380000103, 65.729905155634739 ], [ -84.4493553800001, 66.129305155634754 ], [ -84.007355380000092, 66.063105155634744 ], [ -83.675255380000095, 65.90030515563474 ], [ -83.713355380000081, 65.793705155634754 ] ] ], [ [ [ -83.647355380000079, 66.082005155634747 ], [ -83.694355380000104, 66.083605155634743 ], [ -83.6000553800001, 66.125605155634744 ], [ -83.608655380000101, 66.103405155634746 ], [ -83.647355380000079, 66.082005155634747 ] ] ], [ [ [ -84.611955380000097, 66.132105155634761 ], [ -84.650655380000103, 66.131305155634735 ], [ -84.6899553800001, 66.181005155634736 ], [ -84.563055380000094, 66.14290515563475 ], [ -84.611955380000097, 66.132105155634761 ] ] ], [ [ [ -66.341255380000092, 66.176805155634739 ], [ -66.369255380000084, 66.166205155634756 ], [ -66.401955380000089, 66.180305155634741 ], [ -66.361455380000081, 66.194605155634761 ], [ -66.341255380000092, 66.176805155634739 ] ] ], [ [ [ -166.659255380000104, 66.103305155634743 ], [ -166.443655380000109, 66.180805155634758 ], [ -166.169455380000102, 66.221405155634741 ], [ -166.58775538000009, 66.116405155634752 ], [ -166.659255380000104, 66.103305155634743 ] ] ], [ [ [ -84.225655380000092, 66.180205155634738 ], [ -84.287355380000093, 66.195905155634748 ], [ -84.291655380000094, 66.220305155634762 ], [ -84.239055380000082, 66.225705155634742 ], [ -84.225655380000092, 66.180205155634738 ] ] ], [ [ [ -35.499755380000096, 66.174105155634734 ], [ -35.5375553800001, 66.225505155634735 ], [ -35.385055380000097, 66.24080515563476 ], [ -35.42165538000009, 66.209105155634759 ], [ -35.499755380000096, 66.174105155634734 ] ] ], [ [ [ -62.198055380000085, 66.234905155634735 ], [ -62.172755380000098, 66.21510515563476 ], [ -62.446855380000102, 66.222505155634749 ], [ -62.293655380000104, 66.263405155634743 ], [ -62.198055380000085, 66.234905155634735 ] ] ], [ [ [ -62.076955380000101, 66.254905155634745 ], [ -62.132555380000099, 66.251605155634749 ], [ -62.154655380000094, 66.278405155634758 ], [ -62.115755380000081, 66.292205155634761 ], [ -62.076955380000101, 66.254905155634745 ] ] ], [ [ [ -67.549455380000097, 66.318505155634753 ], [ -67.585255380000092, 66.308805155634744 ], [ -67.633855380000085, 66.321205155634757 ], [ -67.5923553800001, 66.342805155634736 ], [ -67.549455380000097, 66.318505155634753 ] ] ], [ [ [ -83.114655380000102, 66.298305155634736 ], [ -82.989155380000085, 66.279705155634744 ], [ -83.353055380000086, 66.296405155634758 ], [ -83.285355380000084, 66.368805155634746 ], [ -83.114655380000102, 66.298305155634736 ] ] ], [ [ [ -66.911155380000082, 66.341705155634756 ], [ -66.990555380000103, 66.340305155634738 ], [ -67.043955380000085, 66.388405155634743 ], [ -67.005855380000099, 66.384805155634737 ], [ -66.911155380000082, 66.341705155634756 ] ] ], [ [ [ -66.610355380000101, 66.288705155634759 ], [ -66.833155380000079, 66.321205155634757 ], [ -66.965455380000094, 66.39920515563476 ], [ -66.862455380000085, 66.406505155634747 ], [ -66.610355380000101, 66.288705155634759 ] ] ], [ [ [ -66.925855380000087, 66.443305155634746 ], [ -66.981155380000104, 66.438305155634751 ], [ -67.063855380000092, 66.453805155634754 ], [ -66.951655380000091, 66.47650515563474 ], [ -66.925855380000087, 66.443305155634746 ] ] ], [ [ [ -61.4673553800001, 66.471205155634735 ], [ -61.52355538000009, 66.468105155634746 ], [ -61.528455380000082, 66.480505155634759 ], [ -61.497055380000091, 66.499505155634736 ], [ -61.4673553800001, 66.471205155634735 ] ] ], [ [ [ -66.860855380000089, 66.50020515563476 ], [ -66.88455538000008, 66.494405155634738 ], [ -66.954155380000088, 66.504405155634757 ], [ -66.927155380000102, 66.518905155634755 ], [ -66.860855380000089, 66.50020515563476 ] ] ], [ [ [ -165.364455380000095, 66.426405155634754 ], [ -165.470855380000103, 66.414105155634743 ], [ -164.762255380000084, 66.538305155634745 ], [ -164.876955380000084, 66.502805155634761 ], [ -165.364455380000095, 66.426405155634754 ] ] ], [ [ [ -84.025155380000086, 66.744105155634756 ], [ -84.080155380000093, 66.731905155634749 ], [ -84.081755380000089, 66.747605155634758 ], [ -84.045055380000093, 66.755105155634752 ], [ -84.025155380000086, 66.744105155634756 ] ] ], [ [ [ -33.861955380000097, 66.793905155634761 ], [ -33.961155380000093, 66.788905155634737 ], [ -33.970555380000093, 66.839705155634746 ], [ -33.884455380000105, 66.872505155634755 ], [ -33.861955380000097, 66.793905155634761 ] ] ], [ [ [ -53.070855380000097, 66.866105155634742 ], [ -53.205855380000088, 66.822805155634754 ], [ -53.464155380000079, 66.798905155634756 ], [ -53.345855380000103, 66.873905155634745 ], [ -52.868255380000079, 66.897205155634751 ], [ -53.070855380000097, 66.866105155634742 ] ] ], [ [ [ -107.242955380000097, 66.960505155634749 ], [ -107.262355380000088, 66.936105155634735 ], [ -107.328055380000094, 66.968005155634742 ], [ -107.324455380000089, 66.978905155634735 ], [ -107.242955380000097, 66.960505155634749 ] ] ], [ [ [ -107.806355380000099, 66.891005155634744 ], [ -107.861855380000094, 66.902405155634753 ], [ -107.839255380000097, 66.97850515563475 ], [ -107.789855380000091, 66.979005155634738 ], [ -107.806355380000099, 66.891005155634744 ] ] ], [ [ [ -63.034455380000082, 66.963005155634747 ], [ -63.118055380000101, 66.965805155634754 ], [ -63.138455380000096, 66.995605155634749 ], [ -63.030755380000102, 66.992605155634735 ], [ -63.034455380000082, 66.963005155634747 ] ] ], [ [ [ -107.965555380000097, 66.893805155634752 ], [ -108.016755380000092, 66.896705155634734 ], [ -108.093555380000097, 66.980505155634759 ], [ -108.006255380000098, 66.994805155634751 ], [ -107.965555380000097, 66.893805155634752 ] ] ], [ [ [ -62.932455380000079, 67.01190515563475 ], [ -63.1000553800001, 67.030605155634746 ], [ -63.126355380000092, 67.046305155634755 ], [ -62.975955380000102, 67.064405155634759 ], [ -62.932455380000079, 67.01190515563475 ] ] ], [ [ [ -62.154155380000105, 67.078905155634757 ], [ -62.233155380000085, 67.073705155634755 ], [ -62.274255380000085, 67.084605155634748 ], [ -62.124355380000083, 67.096505155634745 ], [ -62.154155380000105, 67.078905155634757 ] ] ], [ [ [ -63.13285538000008, 67.088805155634745 ], [ -63.172455380000088, 67.087905155634743 ], [ -63.206455380000079, 67.114305155634739 ], [ -63.090755380000104, 67.100605155634739 ], [ -63.13285538000008, 67.088805155634745 ] ] ], [ [ [ -107.775155380000086, 67.04560515563476 ], [ -107.816455380000093, 67.105905155634744 ], [ -107.748755380000091, 67.132505155634746 ], [ -107.736155380000099, 67.108805155634755 ], [ -107.775155380000086, 67.04560515563476 ] ] ], [ [ [ -62.653555380000086, 67.049505155634748 ], [ -62.854955380000092, 67.038305155634745 ], [ -62.379055380000096, 67.159505155634761 ], [ -62.528655380000089, 67.113305155634762 ], [ -62.653555380000086, 67.049505155634748 ] ] ], [ [ [ -107.361955380000097, 67.069505155634758 ], [ -107.531055380000097, 67.098605155634758 ], [ -107.612955380000088, 67.176905155634742 ], [ -107.472055380000086, 67.15090515563476 ], [ -107.361955380000097, 67.069505155634758 ] ] ], [ [ [ -33.431155380000092, 67.142205155634755 ], [ -33.47615538000008, 67.180505155634748 ], [ -33.342655380000082, 67.20510515563474 ], [ -33.396655380000084, 67.155805155634752 ], [ -33.431155380000092, 67.142205155634755 ] ] ], [ [ [ -95.366655380000083, 67.225005155634747 ], [ -95.465255380000087, 67.22820515563474 ], [ -95.524155380000082, 67.260805155634742 ], [ -95.34515538000008, 67.263205155634736 ], [ -95.366655380000083, 67.225005155634747 ] ] ], [ [ [ -107.61645538000009, 67.252605155634754 ], [ -107.665455380000097, 67.232905155634754 ], [ -107.666855380000086, 67.287505155634747 ], [ -107.635255380000089, 67.288205155634742 ], [ -107.61645538000009, 67.252605155634754 ] ] ], [ [ [ -63.902555380000081, 67.308505155634762 ], [ -63.932955380000095, 67.298305155634736 ], [ -63.980355380000105, 67.304005155634755 ], [ -63.94735538000009, 67.321305155634761 ], [ -63.902555380000081, 67.308505155634762 ] ] ], [ [ [ -63.585955380000087, 67.349505155634759 ], [ -63.3988553800001, 67.302205155634752 ], [ -63.799055380000084, 67.291805155634748 ], [ -63.698655380000105, 67.348905155634739 ], [ -63.585955380000087, 67.349505155634759 ] ] ], [ [ [ -63.818655380000081, 67.355105155634746 ], [ -63.8714553800001, 67.346605155634748 ], [ -63.881355380000088, 67.355605155634734 ], [ -63.833855380000102, 67.372505155634755 ], [ -63.818655380000081, 67.355105155634746 ] ] ], [ [ [ -33.252255380000094, 67.29530515563475 ], [ -33.283055380000093, 67.296105155634748 ], [ -33.327855380000102, 67.336105155634741 ], [ -33.256955380000079, 67.376105155634761 ], [ -33.252255380000094, 67.29530515563475 ] ] ], [ [ [ -63.895655380000079, 67.432805155634739 ], [ -63.941955380000081, 67.421505155634762 ], [ -63.952755380000099, 67.456905155634743 ], [ -63.896555380000081, 67.459205155634734 ], [ -63.895655380000079, 67.432805155634739 ] ] ], [ [ [ -107.888755380000092, 67.427105155634749 ], [ -107.910655380000094, 67.306805155634734 ], [ -108.095655380000096, 67.401505155634752 ], [ -107.891855380000095, 67.483405155634742 ], [ -107.888755380000092, 67.427105155634749 ] ] ], [ [ [ -108.158355380000089, 67.456605155634762 ], [ -108.231255380000093, 67.463005155634747 ], [ -108.174355380000094, 67.534805155634743 ], [ -108.16395538000009, 67.516205155634751 ], [ -108.158355380000089, 67.456605155634762 ] ] ], [ [ [ -108.382055380000097, 67.558505155634762 ], [ -108.332155380000088, 67.552005155634745 ], [ -108.267155380000091, 67.552005155634745 ], [ -108.351555380000093, 67.463605155634738 ], [ -108.382055380000097, 67.558505155634762 ] ] ], [ [ [ -96.247055380000091, 67.598705155634761 ], [ -96.283255380000099, 67.596705155634751 ], [ -96.29295538000008, 67.605305155634753 ], [ -96.225455380000085, 67.617905155634745 ], [ -96.247055380000091, 67.598705155634761 ] ] ], [ [ [ -63.796155380000101, 67.497705155634762 ], [ -63.985255380000098, 67.49020515563474 ], [ -64.076755380000094, 67.532705155634758 ], [ -63.926655380000085, 67.630805155634746 ], [ -63.796155380000101, 67.497705155634762 ] ] ], [ [ [ -108.340255380000087, 67.599105155634746 ], [ -108.394455380000096, 67.596405155634741 ], [ -108.408555380000095, 67.637705155634748 ], [ -108.331855380000093, 67.608605155634748 ], [ -108.340255380000087, 67.599105155634746 ] ] ], [ [ [ -108.019355380000093, 67.480305155634753 ], [ -108.104555380000093, 67.492805155634741 ], [ -108.096055380000095, 67.652705155634735 ], [ -107.905855380000091, 67.560105155634758 ], [ -108.019355380000093, 67.480305155634753 ] ] ], [ [ [ -97.374355380000083, 67.737505155634736 ], [ -97.332955380000101, 67.69140515563474 ], [ -97.551055380000093, 67.684505155634739 ], [ -97.430055380000084, 67.745305155634739 ], [ -97.374355380000083, 67.737505155634736 ] ] ], [ [ [ -53.658955380000094, 67.675805155634762 ], [ -53.753655380000083, 67.736605155634734 ], [ -53.763055380000083, 67.776905155634736 ], [ -53.587855380000093, 67.733605155634748 ], [ -53.658955380000094, 67.675805155634762 ] ] ], [ [ [ -109.061255380000091, 67.76330515563474 ], [ -109.092655380000096, 67.760605155634735 ], [ -109.138055380000097, 67.781505155634747 ], [ -109.05865538000009, 67.790105155634748 ], [ -109.061255380000091, 67.76330515563474 ] ] ], [ [ [ -97.833155380000079, 67.776605155634755 ], [ -97.869955380000079, 67.772005155634744 ], [ -97.872755380000086, 67.793705155634754 ], [ -97.834555380000097, 67.801505155634757 ], [ -97.833155380000079, 67.776605155634755 ] ] ], [ [ [ -114.288455380000087, 67.777805155634738 ], [ -114.311855380000097, 67.771405155634753 ], [ -114.371855380000099, 67.791405155634735 ], [ -114.317855380000097, 67.801605155634761 ], [ -114.288455380000087, 67.777805155634738 ] ] ], [ [ [ -97.924155380000087, 67.818205155634743 ], [ -97.955855380000088, 67.816005155634755 ], [ -97.998455380000081, 67.825505155634758 ], [ -97.906955380000085, 67.827205155634758 ], [ -97.924155380000087, 67.818205155634743 ] ] ], [ [ [ -96.103955380000087, 67.80930515563476 ], [ -96.158855380000091, 67.808905155634747 ], [ -96.164155380000096, 67.819205155634748 ], [ -96.06005538000008, 67.842505155634754 ], [ -96.103955380000087, 67.80930515563476 ] ] ], [ [ [ -109.003555380000094, 67.823305155634742 ], [ -109.034955380000099, 67.820605155634738 ], [ -109.074855380000088, 67.840205155634735 ], [ -109.06765538000009, 67.851405155634737 ], [ -109.003555380000094, 67.823305155634742 ] ] ], [ [ [ -113.719455380000099, 67.87920515563475 ], [ -113.781555380000086, 67.861105155634746 ], [ -113.815855380000087, 67.868005155634748 ], [ -113.810455380000093, 67.88490515563474 ], [ -113.719455380000099, 67.87920515563475 ] ] ], [ [ [ -113.910555380000091, 67.867705155634738 ], [ -114.172355380000099, 67.862705155634742 ], [ -114.210355380000095, 67.886505155634737 ], [ -114.132155380000086, 67.898805155634747 ], [ -113.910555380000091, 67.867705155634738 ] ] ], [ [ [ -97.88625538000008, 67.88120515563476 ], [ -97.90765538000008, 67.868705155634743 ], [ -97.949655380000081, 67.873105155634747 ], [ -97.940555380000092, 67.90970515563474 ], [ -97.88625538000008, 67.88120515563476 ] ] ], [ [ [ -64.764755380000082, 67.884705155634762 ], [ -64.813255380000101, 67.880805155634746 ], [ -64.826255380000106, 67.892105155634752 ], [ -64.772455380000082, 67.910105155634753 ], [ -64.764755380000082, 67.884705155634762 ] ] ], [ [ [ -113.239855380000094, 67.915805155634743 ], [ -113.275555380000085, 67.88830515563474 ], [ -113.508055380000087, 67.908905155634741 ], [ -113.309055380000089, 67.924205155634738 ], [ -113.239855380000094, 67.915805155634743 ] ] ], [ [ [ -108.427255380000091, 67.914105155634743 ], [ -108.458255380000097, 67.902705155634735 ], [ -108.521755380000087, 67.931205155634743 ], [ -108.481255380000093, 67.934505155634739 ], [ -108.427255380000091, 67.914105155634743 ] ] ], [ [ [ -110.94565538000009, 67.864005155634757 ], [ -111.024655380000098, 67.861605155634734 ], [ -110.780955380000094, 67.942505155634748 ], [ -110.832755380000094, 67.899905155634755 ], [ -110.94565538000009, 67.864005155634757 ] ] ], [ [ [ -114.108455380000095, 67.942505155634748 ], [ -114.207555380000088, 67.939805155634744 ], [ -114.230055380000096, 67.955305155634747 ], [ -114.110755380000086, 67.956705155634737 ], [ -114.108455380000095, 67.942505155634748 ] ] ], [ [ [ -108.073955380000086, 67.896605155634759 ], [ -108.169655380000094, 67.899605155634745 ], [ -108.199155380000093, 67.918505155634747 ], [ -108.069655380000086, 67.964205155634758 ], [ -108.073955380000086, 67.896605155634759 ] ] ], [ [ [ -107.867155380000085, 67.95540515563475 ], [ -107.892355380000097, 67.916405155634735 ], [ -107.919655380000094, 67.923005155634755 ], [ -107.924055380000098, 67.956305155634752 ], [ -107.867155380000085, 67.95540515563475 ] ] ], [ [ [ -108.883955380000089, 67.835305155634742 ], [ -109.005255380000094, 67.872805155634737 ], [ -109.106755380000095, 67.97050515563474 ], [ -108.890755380000087, 67.957005155634747 ], [ -108.883955380000089, 67.835305155634742 ] ] ], [ [ [ -113.717855380000088, 67.971705155634751 ], [ -113.937355380000099, 67.957005155634747 ], [ -113.976255380000097, 67.96340515563476 ], [ -113.805555380000087, 67.99050515563475 ], [ -113.717855380000088, 67.971705155634751 ] ] ], [ [ [ -65.328455380000094, 67.969905155634748 ], [ -65.396755380000087, 67.961305155634747 ], [ -65.436955380000086, 67.989405155634742 ], [ -65.354155380000094, 67.997705155634762 ], [ -65.328455380000094, 67.969905155634748 ] ] ], [ [ [ -110.31765538000009, 67.995405155634742 ], [ -110.343255380000087, 67.991205155634745 ], [ -110.404955380000089, 68.012105155634757 ], [ -110.290455380000097, 68.033505155634757 ], [ -110.31765538000009, 67.995405155634742 ] ] ], [ [ [ -65.423055380000079, 68.031805155634757 ], [ -65.492355380000106, 68.02700515563474 ], [ -65.55235538000008, 68.050505155634752 ], [ -65.492955380000097, 68.069705155634736 ], [ -65.423055380000079, 68.031805155634757 ] ] ], [ [ [ -108.472755380000095, 68.041405155634735 ], [ -108.508855380000085, 68.038405155634749 ], [ -108.431655380000095, 68.076505155634734 ], [ -108.433955380000086, 68.064005155634746 ], [ -108.472755380000095, 68.041405155634735 ] ] ], [ [ [ -109.30865538000009, 67.983205155634735 ], [ -109.391355380000093, 67.986705155634738 ], [ -109.494855380000089, 68.030805155634752 ], [ -109.364155380000085, 68.072505155634744 ], [ -109.30865538000009, 67.983205155634735 ] ] ], [ [ [ -108.300755380000098, 68.071205155634757 ], [ -108.360555380000093, 68.068205155634743 ], [ -108.375455380000091, 68.077605155634743 ], [ -108.291455380000087, 68.087905155634743 ], [ -108.300755380000098, 68.071205155634757 ] ] ], [ [ [ -98.959855380000093, 68.024605155634745 ], [ -99.047355380000099, 68.022405155634758 ], [ -99.059855380000087, 68.065505155634739 ], [ -98.969855380000098, 68.081505155634758 ], [ -98.959855380000093, 68.024605155634745 ] ] ], [ [ [ -107.782755380000097, 67.99020515563474 ], [ -107.854255380000097, 68.000605155634744 ], [ -107.866255380000098, 68.08980515563475 ], [ -107.702655380000095, 68.075905155634743 ], [ -107.782755380000097, 67.99020515563474 ] ] ], [ [ [ -110.142455380000087, 68.040105155634748 ], [ -110.199655380000095, 68.05440515563474 ], [ -110.023955380000089, 68.091905155634734 ], [ -110.053755380000098, 68.064305155634756 ], [ -110.142455380000087, 68.040105155634748 ] ] ], [ [ [ -53.347255380000092, 68.010005155634744 ], [ -53.380355380000083, 68.012505155634742 ], [ -53.473055380000091, 68.069105155634745 ], [ -53.225255380000078, 68.058605155634737 ], [ -53.347255380000092, 68.010005155634744 ] ] ], [ [ [ -65.930355380000094, 68.04870515563475 ], [ -66.005655380000093, 68.057505155634757 ], [ -65.92135538000008, 68.136205155634755 ], [ -65.888355380000093, 68.114905155634759 ], [ -65.930355380000094, 68.04870515563475 ] ] ], [ [ [ -109.86515538000009, 68.111605155634734 ], [ -109.951755380000094, 68.105605155634734 ], [ -109.956155380000098, 68.119405155634738 ], [ -109.852155380000099, 68.143005155634754 ], [ -109.86515538000009, 68.111605155634734 ] ] ], [ [ [ -51.293355380000094, 68.100805155634745 ], [ -51.891655380000088, 68.060005155634755 ], [ -52.007555380000099, 68.076705155634741 ], [ -51.2053553800001, 68.121605155634754 ], [ -51.293355380000094, 68.100805155634745 ] ] ], [ [ [ -65.618955380000102, 68.121105155634737 ], [ -65.697955380000082, 68.09720515563474 ], [ -65.734755380000081, 68.10980515563476 ], [ -65.685455380000093, 68.15830515563475 ], [ -65.618955380000102, 68.121105155634737 ] ] ], [ [ [ -112.716255380000092, 68.132005155634758 ], [ -112.773355380000098, 68.118605155634739 ], [ -112.897455380000096, 68.153705155634739 ], [ -112.863355380000087, 68.171805155634743 ], [ -112.716255380000092, 68.132005155634758 ] ] ], [ [ [ -107.397655380000089, 68.159005155634745 ], [ -107.498755380000091, 68.153105155634748 ], [ -107.502455380000086, 68.168705155634754 ], [ -107.434255380000096, 68.173905155634756 ], [ -107.397655380000089, 68.159005155634745 ] ] ], [ [ [ -74.276155380000091, 68.063505155634758 ], [ -73.500755380000101, 67.98310515563476 ], [ -73.381255380000084, 67.833005155634751 ], [ -74.476555380000093, 67.768405155634738 ], [ -74.809255380000081, 68.00620515563476 ], [ -74.36345538000009, 68.175805155634762 ], [ -74.276155380000091, 68.063505155634758 ] ] ], [ [ [ -109.236755380000091, 68.15090515563476 ], [ -109.266555380000085, 68.144805155634756 ], [ -109.325955380000096, 68.171605155634737 ], [ -109.282855380000086, 68.178905155634752 ], [ -109.236755380000091, 68.15090515563476 ] ] ], [ [ [ -104.405755380000087, 68.111505155634759 ], [ -104.484655380000092, 68.121005155634762 ], [ -104.478555380000088, 68.163405155634749 ], [ -104.383955380000089, 68.184505155634739 ], [ -104.405755380000087, 68.111505155634759 ] ] ], [ [ [ -66.762855380000104, 68.161705155634749 ], [ -66.793855380000082, 68.160405155634734 ], [ -66.810555380000096, 68.173605155634746 ], [ -66.729255380000097, 68.181105155634739 ], [ -66.762855380000104, 68.161705155634749 ] ] ], [ [ [ -111.749055380000087, 68.174005155634759 ], [ -111.797255380000095, 68.167305155634736 ], [ -111.820455380000098, 68.179205155634762 ], [ -111.755755380000096, 68.189405155634759 ], [ -111.749055380000087, 68.174005155634759 ] ] ], [ [ [ -109.027055380000093, 68.174205155634738 ], [ -109.112455380000085, 68.181105155634739 ], [ -109.119255380000098, 68.200005155634742 ], [ -109.073555380000087, 68.211005155634737 ], [ -109.027055380000093, 68.174205155634738 ] ] ], [ [ [ -107.309255380000096, 68.188405155634754 ], [ -107.353855380000098, 68.183405155634759 ], [ -107.382155380000086, 68.200705155634736 ], [ -107.241655380000097, 68.212905155634743 ], [ -107.309255380000096, 68.188405155634754 ] ] ], [ [ [ -98.653955380000099, 68.192905155634762 ], [ -98.705855380000088, 68.196905155634752 ], [ -98.709555380000097, 68.21940515563476 ], [ -98.663455380000102, 68.222105155634736 ], [ -98.653955380000099, 68.192905155634762 ] ] ], [ [ [ -31.7541553800001, 68.153905155634746 ], [ -31.930355380000094, 68.173605155634746 ], [ -31.958055380000104, 68.206605155634762 ], [ -31.737055380000101, 68.224205155634749 ], [ -31.765955380000094, 68.191905155634757 ], [ -31.69135538000009, 68.176005155634741 ], [ -31.7541553800001, 68.153905155634746 ] ] ], [ [ [ -74.103355380000096, 68.156705155634754 ], [ -74.156355380000093, 68.163105155634739 ], [ -74.197155380000083, 68.220005155634752 ], [ -74.113655380000097, 68.223305155634748 ], [ -74.103355380000096, 68.156705155634754 ] ] ], [ [ [ -109.682755380000089, 68.154505155634737 ], [ -109.753455380000091, 68.167905155634756 ], [ -109.533955380000094, 68.221005155634757 ], [ -109.627655380000093, 68.187905155634738 ], [ -109.682755380000089, 68.154505155634737 ] ] ], [ [ [ -29.8380553800001, 68.140805155634737 ], [ -30.002855380000085, 68.168305155634741 ], [ -30.011655380000093, 68.207505155634735 ], [ -29.694755380000089, 68.208605155634743 ], [ -29.8380553800001, 68.140805155634737 ] ] ], [ [ [ -113.276955380000089, 68.222005155634761 ], [ -113.350555380000088, 68.222805155634759 ], [ -113.352155380000099, 68.237105155634751 ], [ -113.279355380000098, 68.243405155634761 ], [ -113.276955380000089, 68.222005155634761 ] ] ], [ [ [ -96.333355380000086, 68.243205155634755 ], [ -96.428955380000104, 68.209505155634744 ], [ -96.443455380000103, 68.218005155634742 ], [ -96.366955380000093, 68.258505155634751 ], [ -96.333355380000086, 68.243205155634755 ] ] ], [ [ [ -52.070855380000097, 68.115305155634744 ], [ -52.315855380000102, 68.168905155634761 ], [ -51.454155380000088, 68.257805155634756 ], [ -51.54665538000009, 68.20080515563474 ], [ -52.070855380000097, 68.115305155634744 ] ] ], [ [ [ -111.375255380000098, 68.243605155634739 ], [ -111.431755380000098, 68.241705155634762 ], [ -111.450755380000089, 68.261205155634755 ], [ -111.360155380000094, 68.25590515563475 ], [ -111.375255380000098, 68.243605155634739 ] ] ], [ [ [ -66.254855380000095, 68.234405155634747 ], [ -66.366555380000079, 68.151905155634736 ], [ -66.676555380000082, 68.194205155634748 ], [ -66.222455380000099, 68.266805155634742 ], [ -66.254855380000095, 68.234405155634747 ] ] ], [ [ [ -78.545555380000081, 68.229005155634738 ], [ -78.628255380000098, 68.223505155634754 ], [ -78.666855380000101, 68.25390515563474 ], [ -78.577555380000092, 68.285305155634759 ], [ -78.545555380000081, 68.229005155634738 ] ] ], [ [ [ -66.55835538000008, 68.279405155634734 ], [ -66.638455380000096, 68.273705155634744 ], [ -66.644755380000106, 68.287505155634747 ], [ -66.569155380000097, 68.293805155634757 ], [ -66.55835538000008, 68.279405155634734 ] ] ], [ [ [ -111.612255380000093, 68.230805155634741 ], [ -111.717255380000097, 68.248905155634745 ], [ -111.478355380000096, 68.292505155634743 ], [ -111.479955380000092, 68.281505155634747 ], [ -111.612255380000093, 68.230805155634741 ] ] ], [ [ [ -86.630155380000105, 67.742105155634746 ], [ -86.953555380000097, 67.872505155634755 ], [ -86.877755380000082, 68.011805155634747 ], [ -87.055555380000101, 68.105505155634759 ], [ -86.712655380000086, 68.309205155634757 ], [ -86.455155380000093, 68.217505155634754 ], [ -86.443555380000106, 67.872805155634737 ], [ -86.630155380000105, 67.742105155634746 ] ] ], [ [ [ -66.797755380000098, 68.278605155634736 ], [ -66.820455380000084, 68.270605155634755 ], [ -66.974155380000099, 68.291105155634753 ], [ -66.910955380000104, 68.310205155634762 ], [ -66.797755380000098, 68.278605155634736 ] ] ], [ [ [ -106.862955380000088, 68.279005155634749 ], [ -106.890755380000087, 68.26820515563476 ], [ -107.019255380000089, 68.304805155634753 ], [ -106.971455380000094, 68.313505155634758 ], [ -106.862955380000088, 68.279005155634749 ] ] ], [ [ [ -66.708355380000086, 68.308905155634747 ], [ -66.743155380000104, 68.298905155634756 ], [ -66.819055380000094, 68.31270515563476 ], [ -66.741155380000095, 68.326205155634753 ], [ -66.708355380000086, 68.308905155634747 ] ] ], [ [ [ -105.079855380000097, 68.322305155634737 ], [ -105.110655380000097, 68.31700515563476 ], [ -105.124455380000086, 68.326605155634738 ], [ -105.084255380000087, 68.343105155634746 ], [ -105.079855380000097, 68.322305155634737 ] ] ], [ [ [ -111.513655380000088, 68.321205155634757 ], [ -111.553155380000092, 68.315505155634739 ], [ -111.599355380000091, 68.33240515563476 ], [ -111.513555380000085, 68.340905155634758 ], [ -111.513655380000088, 68.321205155634757 ] ] ], [ [ [ -100.041355380000098, 68.286005155634754 ], [ -100.082955380000087, 68.28300515563474 ], [ -100.132155380000086, 68.314505155634762 ], [ -100.068455380000088, 68.344205155634754 ], [ -100.041355380000098, 68.286005155634754 ] ] ], [ [ [ -75.725555380000088, 68.328005155634756 ], [ -75.07405538000009, 68.159405155634758 ], [ -75.201655380000091, 67.477305155634738 ], [ -75.769355380000093, 67.274305155634735 ], [ -76.73845538000009, 67.218905155634744 ], [ -77.210055380000085, 67.403105155634748 ], [ -77.301855380000092, 67.738805155634751 ], [ -76.852555380000098, 68.170105155634744 ], [ -75.725555380000088, 68.328005155634756 ] ] ], [ [ [ -79.0358553800001, 68.196705155634746 ], [ -79.220555380000093, 68.228405155634746 ], [ -79.223655380000082, 68.347505155634749 ], [ -78.854455380000104, 68.301805155634739 ], [ -79.0358553800001, 68.196705155634746 ] ] ], [ [ [ -66.804655380000099, 68.353005155634762 ], [ -66.894255380000089, 68.342905155634739 ], [ -66.947155380000083, 68.349905155634744 ], [ -66.878055380000092, 68.38490515563474 ], [ -66.804655380000099, 68.353005155634762 ] ] ], [ [ [ -99.006955380000093, 68.368205155634755 ], [ -99.052055380000098, 68.358405155634742 ], [ -99.074555380000092, 68.378605155634759 ], [ -99.039255380000085, 68.391705155634739 ], [ -99.006955380000093, 68.368205155634755 ] ] ], [ [ [ -66.669755380000083, 68.393905155634755 ], [ -66.694555380000082, 68.378805155634737 ], [ -66.757455380000096, 68.390905155634741 ], [ -66.733955380000083, 68.409805155634743 ], [ -66.669755380000083, 68.393905155634755 ] ] ], [ [ [ -98.777655380000084, 68.401305155634745 ], [ -98.828555380000097, 68.396705155634734 ], [ -98.853455380000085, 68.404805155634747 ], [ -98.785955380000104, 68.421905155634747 ], [ -98.777655380000084, 68.401305155634745 ] ] ], [ [ [ -104.972555380000088, 68.412805155634757 ], [ -105.004155380000086, 68.409105155634748 ], [ -105.045655380000099, 68.42770515563474 ], [ -104.972855380000098, 68.435505155634743 ], [ -104.972555380000088, 68.412805155634757 ] ] ], [ [ [ -111.010555380000099, 68.431105155634739 ], [ -111.025055380000097, 68.417205155634761 ], [ -111.078555380000097, 68.417405155634739 ], [ -111.06335538000009, 68.443805155634735 ], [ -111.010555380000099, 68.431105155634739 ] ] ], [ [ [ -100.687355380000099, 68.412605155634751 ], [ -100.763455380000096, 68.415205155634752 ], [ -100.793555380000086, 68.440205155634757 ], [ -100.749255380000093, 68.452105155634754 ], [ -100.687355380000099, 68.412605155634751 ] ] ], [ [ [ -74.190955380000105, 68.267405155634762 ], [ -74.320055380000099, 68.29100515563475 ], [ -74.425255380000095, 68.445605155634738 ], [ -74.117955380000097, 68.344505155634735 ], [ -74.190955380000105, 68.267405155634762 ] ] ], [ [ [ -106.049755380000093, 68.443605155634756 ], [ -106.141455380000096, 68.435805155634753 ], [ -106.180155380000087, 68.456105155634745 ], [ -106.035255380000095, 68.453305155634737 ], [ -106.049755380000093, 68.443605155634756 ] ] ], [ [ [ -79.116555380000079, 68.456905155634743 ], [ -79.134655380000083, 68.44740515563474 ], [ -79.18505538000008, 68.452005155634751 ], [ -79.173255380000086, 68.46880515563474 ], [ -79.116555380000079, 68.456905155634743 ] ] ], [ [ [ -99.036355380000089, 68.426405155634754 ], [ -99.104055380000091, 68.436805155634758 ], [ -99.141255380000089, 68.460105155634736 ], [ -99.061955380000086, 68.463805155634745 ], [ -99.036355380000089, 68.426405155634754 ] ] ], [ [ [ -52.988955380000078, 68.35780515563475 ], [ -53.111955380000097, 68.35780515563475 ], [ -53.211955380000092, 68.401405155634748 ], [ -52.854155380000094, 68.433305155634756 ], [ -52.988955380000078, 68.35780515563475 ] ] ], [ [ [ -110.840155380000098, 68.458005155634751 ], [ -111.004955380000098, 68.478005155634762 ], [ -110.675255380000095, 68.514605155634754 ], [ -110.704455380000098, 68.479705155634761 ], [ -110.840155380000098, 68.458005155634751 ] ] ], [ [ [ -74.452655380000095, 68.510005155634744 ], [ -74.501355380000092, 68.501705155634752 ], [ -74.52355538000009, 68.512405155634738 ], [ -74.500755380000101, 68.53360515563476 ], [ -74.452655380000095, 68.510005155634744 ] ] ], [ [ [ -67.26585538000009, 68.536605155634746 ], [ -67.365855380000085, 68.536805155634752 ], [ -67.38455538000008, 68.553805155634748 ], [ -67.30095538000009, 68.552205155634752 ], [ -67.26585538000009, 68.536605155634746 ] ] ], [ [ [ -52.749755380000096, 68.484705155634757 ], [ -52.834155380000084, 68.515505155634756 ], [ -52.884155380000095, 68.548905155634756 ], [ -52.809455380000088, 68.568605155634756 ], [ -52.749755380000096, 68.484705155634757 ] ] ], [ [ [ -110.488855380000089, 68.526505155634752 ], [ -110.587255380000087, 68.51390515563476 ], [ -110.676755380000088, 68.551805155634739 ], [ -110.569455380000093, 68.572605155634747 ], [ -110.488855380000089, 68.526505155634752 ] ] ], [ [ [ -104.541455380000087, 68.394105155634762 ], [ -104.844655380000091, 68.436105155634735 ], [ -104.99615538000009, 68.553205155634757 ], [ -104.431555380000091, 68.506905155634755 ], [ -104.541455380000087, 68.394105155634762 ] ] ], [ [ [ -105.143755380000087, 68.551405155634754 ], [ -105.156355380000093, 68.526105155634738 ], [ -105.239055380000096, 68.571905155634752 ], [ -105.230555380000098, 68.584705155634751 ], [ -105.143755380000087, 68.551405155634754 ] ] ], [ [ [ -52.641655380000088, 68.530005155634754 ], [ -52.694755380000089, 68.546105155634748 ], [ -52.439455380000084, 68.560805155634753 ], [ -52.523055380000102, 68.542205155634761 ], [ -52.641655380000088, 68.530005155634754 ] ] ], [ [ [ -110.399555380000095, 68.573905155634762 ], [ -110.445555380000087, 68.569705155634736 ], [ -110.496055380000087, 68.579305155634742 ], [ -110.419255380000095, 68.588205155634753 ], [ -110.399555380000095, 68.573905155634762 ] ] ], [ [ [ -113.748655380000088, 68.581005155634742 ], [ -113.908555380000095, 68.58840515563476 ], [ -113.923955380000095, 68.606505155634736 ], [ -113.783455380000092, 68.598805155634736 ], [ -113.748655380000088, 68.581005155634742 ] ] ], [ [ [ -67.934555380000091, 68.634305155634749 ], [ -67.814755380000094, 68.628505155634755 ], [ -67.785055380000102, 68.612005155634748 ], [ -67.99615538000009, 68.616405155634752 ], [ -67.934555380000091, 68.634305155634749 ] ] ], [ [ [ -51.941955380000081, 68.59440515563476 ], [ -52.049455380000097, 68.575005155634742 ], [ -52.421455380000083, 68.571405155634736 ], [ -51.803355380000085, 68.627205155634741 ], [ -51.941955380000081, 68.59440515563476 ] ] ], [ [ [ -105.341755380000095, 68.628705155634762 ], [ -105.391755380000092, 68.632605155634749 ], [ -105.399655380000098, 68.649705155634749 ], [ -105.347455380000099, 68.651105155634738 ], [ -105.341755380000095, 68.628705155634762 ] ] ], [ [ [ -114.028655380000089, 68.636205155634755 ], [ -114.029955380000089, 68.608905155634758 ], [ -114.179155380000097, 68.655205155634761 ], [ -114.130555380000089, 68.668005155634759 ], [ -114.028655380000089, 68.636205155634755 ] ] ], [ [ [ -74.572955380000082, 68.573305155634742 ], [ -74.817555380000101, 68.561705155634755 ], [ -74.918655380000104, 68.626605155634749 ], [ -74.736255380000102, 68.670105155634744 ], [ -74.572955380000082, 68.573305155634742 ] ] ], [ [ [ -51.035355380000084, 68.639405155634748 ], [ -51.211155380000093, 68.645305155634745 ], [ -51.2327553800001, 68.666605155634741 ], [ -51.129455380000081, 68.682705155634736 ], [ -51.035355380000084, 68.639405155634748 ] ] ], [ [ [ -78.524655380000098, 68.576305155634756 ], [ -78.78095538000008, 68.472505155634749 ], [ -78.994555380000094, 68.497205155634745 ], [ -78.716355380000095, 68.598305155634748 ], [ -78.84345538000008, 68.681005155634736 ], [ -78.524655380000098, 68.576305155634756 ] ] ], [ [ [ -52.134755380000087, 68.70110515563475 ], [ -52.327555380000092, 68.632705155634753 ], [ -53.120555380000098, 68.564105155634749 ], [ -52.634155380000095, 68.710305155634742 ], [ -52.134755380000087, 68.70110515563475 ] ] ], [ [ [ -74.942255380000091, 68.428405155634735 ], [ -74.834555380000097, 68.407105155634738 ], [ -75.007555380000099, 68.343405155634755 ], [ -75.455755380000085, 68.612805155634746 ], [ -75.031355380000093, 68.65690515563476 ], [ -74.819655380000086, 68.487405155634761 ], [ -74.942255380000091, 68.428405155634735 ] ] ], [ [ [ -75.066955380000081, 68.727005155634757 ], [ -75.130755380000096, 68.702105155634754 ], [ -75.186155380000088, 68.731205155634754 ], [ -75.154355380000084, 68.751705155634752 ], [ -75.066955380000081, 68.727005155634757 ] ] ], [ [ [ -68.455655380000081, 68.803905155634752 ], [ -67.915755380000093, 68.750705155634748 ], [ -67.772355380000079, 68.70540515563475 ], [ -68.508355380000097, 68.79560515563476 ], [ -68.455655380000081, 68.803905155634752 ] ] ], [ [ [ -101.776455380000087, 68.62920515563475 ], [ -101.853355380000096, 68.568805155634735 ], [ -102.24745538000009, 68.684405155634735 ], [ -101.823355380000095, 68.815005155634751 ], [ -101.679055380000094, 68.733905155634758 ], [ -101.776455380000087, 68.62920515563475 ] ] ], [ [ [ -84.918155380000087, 68.791805155634748 ], [ -84.951755380000094, 68.790805155634743 ], [ -84.98245538000009, 68.807005155634741 ], [ -84.928155380000078, 68.816205155634762 ], [ -84.918155380000087, 68.791805155634748 ] ] ], [ [ [ -85.196155380000079, 68.818605155634756 ], [ -85.161555380000095, 68.79530515563475 ], [ -85.234455380000099, 68.817605155634752 ], [ -85.196155380000079, 68.818605155634756 ] ] ], [ [ [ -67.594155380000103, 68.813005155634741 ], [ -67.642755380000096, 68.80440515563474 ], [ -67.696855380000102, 68.816605155634747 ], [ -67.554655380000099, 68.822505155634744 ], [ -67.594155380000103, 68.813005155634741 ] ] ], [ [ [ -89.926755380000088, 68.722105155634736 ], [ -90.021355380000102, 68.711105155634741 ], [ -90.032855380000086, 68.844205155634754 ], [ -89.877655380000078, 68.79840515563474 ], [ -89.926755380000088, 68.722105155634736 ] ] ], [ [ [ -132.507255380000089, 68.836905155634739 ], [ -132.533555380000109, 68.826305155634756 ], [ -132.606555380000088, 68.837705155634737 ], [ -132.561755380000079, 68.850705155634742 ], [ -132.507255380000089, 68.836905155634739 ] ] ], [ [ [ -67.786555380000095, 68.849805155634741 ], [ -67.818555380000106, 68.842805155634736 ], [ -67.850355380000082, 68.846705155634751 ], [ -67.813255380000101, 68.875005155634753 ], [ -67.786555380000095, 68.849805155634741 ] ] ], [ [ [ -67.898155380000105, 68.876405155634743 ], [ -67.927455380000083, 68.856305155634757 ], [ -67.969555380000088, 68.865105155634737 ], [ -67.954055380000085, 68.881405155634738 ], [ -67.898155380000105, 68.876405155634743 ] ] ], [ [ [ -67.6154553800001, 68.85950515563475 ], [ -67.671455380000083, 68.853705155634756 ], [ -67.725655380000092, 68.865905155634735 ], [ -67.694855380000092, 68.882205155634736 ], [ -67.6154553800001, 68.85950515563475 ] ] ], [ [ [ -135.870455380000095, 68.890105155634743 ], [ -135.846455380000094, 68.872805155634737 ], [ -135.991255380000098, 68.887505155634742 ], [ -135.989455380000095, 68.901005155634735 ], [ -135.870455380000095, 68.890105155634743 ] ] ], [ [ [ -114.355155380000099, 68.874205155634755 ], [ -114.428055380000089, 68.871305155634744 ], [ -114.457355380000095, 68.893305155634735 ], [ -114.359855380000099, 68.908105155634743 ], [ -114.355155380000099, 68.874205155634755 ] ] ], [ [ [ -90.06435538000008, 68.886105155634752 ], [ -90.098155380000094, 68.885305155634754 ], [ -90.11485538000008, 68.897805155634742 ], [ -90.032955380000089, 68.92170515563474 ], [ -90.06435538000008, 68.886105155634752 ] ] ], [ [ [ -67.726055380000105, 68.908105155634743 ], [ -67.768655380000098, 68.900505155634747 ], [ -67.801755380000088, 68.913705155634759 ], [ -67.683055380000098, 68.921005155634745 ], [ -67.726055380000105, 68.908105155634743 ] ] ], [ [ [ -85.142955380000103, 68.910905155634751 ], [ -85.214555380000093, 68.914105155634743 ], [ -85.246255380000093, 68.926905155634742 ], [ -85.126755380000105, 68.921005155634745 ], [ -85.142955380000103, 68.910905155634751 ] ] ], [ [ [ -135.85805538000011, 68.921505155634762 ], [ -135.882255380000089, 68.91290515563476 ], [ -135.947455380000093, 68.929805155634753 ], [ -135.886955380000074, 68.935305155634737 ], [ -135.85805538000011, 68.921505155634762 ] ] ], [ [ [ -67.908055380000093, 68.908705155634735 ], [ -67.946055380000104, 68.906005155634759 ], [ -67.988055380000105, 68.942205155634738 ], [ -67.934755380000098, 68.950205155634748 ], [ -67.908055380000093, 68.908705155634735 ] ] ], [ [ [ -132.86945538000009, 68.934105155634754 ], [ -132.962655380000086, 68.934105155634754 ], [ -132.984455380000099, 68.951805155634744 ], [ -132.896455380000077, 68.948305155634742 ], [ -132.86945538000009, 68.934105155634754 ] ] ], [ [ [ -135.696755380000099, 68.921905155634747 ], [ -135.750655380000097, 68.907405155634748 ], [ -135.875655380000097, 68.964405155634736 ], [ -135.8209553800001, 68.964005155634752 ], [ -135.696755380000099, 68.921905155634747 ] ] ], [ [ [ -135.550055380000089, 68.911805155634752 ], [ -135.619055380000077, 68.910505155634738 ], [ -135.714155380000079, 68.973405155634751 ], [ -135.479355380000072, 68.984605155634753 ], [ -135.550055380000089, 68.911805155634752 ] ] ], [ [ [ -136.013255380000089, 68.972505155634749 ], [ -136.061355380000094, 68.963705155634742 ], [ -136.098955380000092, 68.973005155634738 ], [ -136.033855380000091, 68.999305155634758 ], [ -136.013255380000089, 68.972505155634749 ] ] ], [ [ [ -85.265055380000092, 68.991305155634748 ], [ -85.32405538000009, 68.983805155634755 ], [ -85.336155380000093, 68.99960515563474 ], [ -85.315355380000085, 69.009605155634759 ], [ -85.265055380000092, 68.991305155634748 ] ] ], [ [ [ -135.879655380000088, 68.997805155634737 ], [ -135.934455380000088, 68.989505155634745 ], [ -135.963755380000094, 69.01190515563475 ], [ -135.871255380000093, 69.011005155634749 ], [ -135.879655380000088, 68.997805155634737 ] ] ], [ [ [ -89.942955380000086, 68.965705155634751 ], [ -90.024555380000095, 68.958205155634758 ], [ -90.027255380000099, 69.011805155634747 ], [ -89.935555380000096, 69.008905155634736 ], [ -89.942955380000086, 68.965705155634751 ] ] ], [ [ [ -100.189955380000086, 68.810305155634737 ], [ -100.324655380000095, 68.712505155634759 ], [ -100.602855380000094, 68.793705155634754 ], [ -100.387355380000088, 69.029505155634737 ], [ -100.189955380000086, 68.810305155634737 ] ] ], [ [ [ -85.424855380000082, 69.018705155634748 ], [ -85.441155380000083, 69.006905155634755 ], [ -85.491755380000086, 69.023505155634737 ], [ -85.460855380000083, 69.036605155634746 ], [ -85.424855380000082, 69.018705155634748 ] ] ], [ [ [ -105.751255380000089, 69.013405155634743 ], [ -105.812355380000099, 69.018405155634738 ], [ -105.831955380000096, 69.038205155634742 ], [ -105.769255380000089, 69.040305155634755 ], [ -105.751255380000089, 69.013405155634743 ] ] ], [ [ [ -85.117455380000081, 69.038405155634749 ], [ -85.165855380000096, 69.037705155634754 ], [ -85.188555380000082, 69.046805155634743 ], [ -85.122255380000098, 69.067905155634762 ], [ -85.117455380000081, 69.038405155634749 ] ] ], [ [ [ -85.241955380000093, 69.046205155634752 ], [ -85.290455380000083, 69.045405155634754 ], [ -85.3226553800001, 69.054805155634753 ], [ -85.290555380000086, 69.074805155634735 ], [ -85.241955380000093, 69.046205155634752 ] ] ], [ [ [ -100.321355380000085, 69.057605155634761 ], [ -100.349055380000095, 69.051505155634757 ], [ -100.407855380000086, 69.073905155634762 ], [ -100.375955380000093, 69.08180515563474 ], [ -100.321355380000085, 69.057605155634761 ] ] ], [ [ [ -85.451455380000084, 69.067605155634752 ], [ -85.495055380000082, 69.06670515563475 ], [ -85.517655380000093, 69.077505155634739 ], [ -85.506055380000106, 69.091105155634736 ], [ -85.451455380000084, 69.067605155634752 ] ] ], [ [ [ -136.111155380000099, 69.075905155634743 ], [ -136.131355380000088, 69.068205155634743 ], [ -136.219755380000095, 69.089705155634746 ], [ -136.159055380000098, 69.104005155634738 ], [ -136.111155380000099, 69.075905155634743 ] ] ], [ [ [ -85.044555380000105, 69.097405155634746 ], [ -85.084755380000104, 69.089605155634743 ], [ -85.122155380000095, 69.097305155634743 ], [ -85.081555380000083, 69.108605155634748 ], [ -85.044555380000105, 69.097405155634746 ] ] ], [ [ [ -90.016855380000095, 69.090905155634758 ], [ -90.061855380000083, 69.083505155634739 ], [ -90.089455380000089, 69.091205155634739 ], [ -90.054955380000081, 69.116205155634745 ], [ -90.016855380000095, 69.090905155634758 ] ] ], [ [ [ -85.269755380000106, 69.114205155634735 ], [ -85.286855380000105, 69.099005155634742 ], [ -85.407955380000089, 69.099605155634762 ], [ -85.375955380000079, 69.118005155634748 ], [ -85.269755380000106, 69.114205155634735 ] ] ], [ [ [ -99.829355380000095, 69.08950515563474 ], [ -99.867955380000097, 69.08840515563476 ], [ -99.888755380000092, 69.094705155634742 ], [ -99.845855380000089, 69.120205155634736 ], [ -99.829355380000095, 69.08950515563474 ] ] ], [ [ [ -105.930955380000086, 69.08980515563475 ], [ -105.957855380000098, 69.084605155634748 ], [ -106.013355380000093, 69.107405155634737 ], [ -105.959455380000094, 69.117905155634745 ], [ -105.930955380000086, 69.08980515563475 ] ] ], [ [ [ -90.170155380000097, 69.075905155634743 ], [ -90.321055380000104, 69.097105155634736 ], [ -90.322555380000097, 69.114405155634742 ], [ -90.191255380000086, 69.138805155634756 ], [ -90.170155380000097, 69.075905155634743 ] ] ], [ [ [ -100.013855380000095, 68.942105155634735 ], [ -100.169455380000088, 68.989405155634742 ], [ -100.22005538000009, 69.058905155634747 ], [ -100.095755380000085, 69.149305155634735 ], [ -100.013855380000095, 68.942105155634735 ] ] ], [ [ [ -67.900655380000103, 69.130405155634762 ], [ -67.931255380000096, 69.125005155634753 ], [ -67.983255380000088, 69.135005155634744 ], [ -67.9322553800001, 69.150705155634753 ], [ -67.900655380000103, 69.130405155634762 ] ] ], [ [ [ -89.926555380000082, 69.124705155634743 ], [ -89.955655380000081, 69.124505155634736 ], [ -89.985355380000101, 69.138105155634761 ], [ -89.893355380000088, 69.143905155634755 ], [ -89.926555380000082, 69.124705155634743 ] ] ], [ [ [ -136.139455380000072, 69.146305155634749 ], [ -136.179055380000079, 69.133305155634744 ], [ -136.200655380000086, 69.157805155634762 ], [ -136.170655380000085, 69.155105155634757 ], [ -136.139455380000072, 69.146305155634749 ] ] ], [ [ [ -90.690855380000102, 69.144105155634762 ], [ -90.720355380000086, 69.141305155634754 ], [ -90.770155380000091, 69.161505155634742 ], [ -90.66995538000009, 69.15230515563475 ], [ -90.690855380000102, 69.144105155634762 ] ] ], [ [ [ -136.049555380000072, 69.16400515563474 ], [ -136.09975538000009, 69.159105155634748 ], [ -136.101055380000105, 69.174005155634759 ], [ -136.066255380000086, 69.174705155634754 ], [ -136.049555380000072, 69.16400515563474 ] ] ], [ [ [ -90.729455380000104, 69.198605155634752 ], [ -90.731955380000102, 69.184805155634749 ], [ -90.783955380000094, 69.192905155634762 ], [ -90.758055380000087, 69.202705155634746 ], [ -90.729455380000104, 69.198605155634752 ] ] ], [ [ [ -101.601255380000097, 69.086005155634737 ], [ -101.666455380000087, 69.205005155634737 ], [ -101.473555380000093, 69.214105155634755 ], [ -101.47775538000009, 69.128805155634737 ], [ -101.601255380000097, 69.086005155634737 ] ] ], [ [ [ -90.143055380000078, 69.184205155634757 ], [ -90.240655380000078, 69.207505155634735 ], [ -90.241455380000104, 69.228305155634743 ], [ -90.111955380000097, 69.193805155634735 ], [ -90.143055380000078, 69.184205155634757 ] ] ], [ [ [ -90.787755380000078, 69.227605155634748 ], [ -90.826855380000097, 69.22680515563475 ], [ -90.858055380000081, 69.243005155634748 ], [ -90.812155380000092, 69.254105155634747 ], [ -90.787755380000078, 69.227605155634748 ] ] ], [ [ [ -135.63655538000009, 69.293805155634757 ], [ -135.656955380000113, 69.286205155634761 ], [ -135.736155380000099, 69.306205155634743 ], [ -135.69905538000009, 69.320405155634759 ], [ -135.63655538000009, 69.293805155634757 ] ] ], [ [ [ -90.540855380000096, 69.320405155634759 ], [ -90.59945538000008, 69.218105155634746 ], [ -90.775155380000086, 69.32580515563474 ], [ -90.679655380000099, 69.36520515563474 ], [ -90.540855380000096, 69.320405155634759 ] ] ], [ [ [ -135.295655380000085, 69.35750515563474 ], [ -135.29555538000011, 69.316805155634754 ], [ -135.364255380000088, 69.361105155634746 ], [ -135.324755380000113, 69.37150515563475 ], [ -135.295655380000085, 69.35750515563474 ] ] ], [ [ [ -135.433455380000112, 69.370905155634759 ], [ -135.434755380000098, 69.351305155634762 ], [ -135.504055380000096, 69.361005155634743 ], [ -135.465755380000076, 69.377505155634751 ], [ -135.433455380000112, 69.370905155634759 ] ] ], [ [ [ -78.324755380000084, 69.277105155634743 ], [ -78.875855380000104, 68.92770515563474 ], [ -79.417755380000102, 68.898305155634759 ], [ -79.210055380000085, 69.114205155634735 ], [ -78.655755380000102, 69.266705155634739 ], [ -78.653355380000079, 69.390705155634762 ], [ -78.343855380000093, 69.393805155634752 ], [ -78.324755380000084, 69.277105155634743 ] ] ], [ [ [ -80.127255380000094, 69.374305155634758 ], [ -80.188955380000095, 69.368705155634743 ], [ -80.246955380000088, 69.397505155634761 ], [ -80.188255380000101, 69.408705155634735 ], [ -80.127255380000094, 69.374305155634758 ] ] ], [ [ [ -90.322155380000083, 69.26330515563474 ], [ -90.384455380000105, 69.270005155634735 ], [ -90.490955380000088, 69.376305155634739 ], [ -90.175555380000105, 69.382405155634743 ], [ -90.322155380000083, 69.26330515563474 ] ] ], [ [ [ -76.966355380000095, 69.417905155634756 ], [ -76.689455380000084, 69.38520515563475 ], [ -76.993655380000092, 69.152705155634735 ], [ -77.413555380000105, 69.276905155634736 ], [ -77.318455380000103, 69.432205155634747 ], [ -76.966355380000095, 69.417905155634756 ] ] ], [ [ [ -81.754055380000096, 69.444305155634751 ], [ -81.530355380000088, 69.433605155634737 ], [ -81.4947553800001, 69.406005155634759 ], [ -81.946855380000102, 69.38060515563474 ], [ -81.754055380000096, 69.444305155634751 ] ] ], [ [ [ -135.388255380000089, 69.445005155634746 ], [ -135.476955380000106, 69.426205155634747 ], [ -135.5161553800001, 69.433205155634752 ], [ -135.442055380000113, 69.458905155634753 ], [ -135.388255380000089, 69.445005155634746 ] ] ], [ [ [ -135.574855380000088, 69.460805155634759 ], [ -135.619955380000079, 69.453205155634762 ], [ -135.767455380000087, 69.487805155634746 ], [ -135.620755380000105, 69.485305155634748 ], [ -135.574855380000088, 69.460805155634759 ] ] ], [ [ [ -130.822855380000078, 69.446405155634736 ], [ -130.849355380000077, 69.438505155634758 ], [ -130.876355380000092, 69.440505155634739 ], [ -130.821155380000107, 69.493705155634743 ], [ -130.822855380000078, 69.446405155634736 ] ] ], [ [ [ -82.332155380000103, 69.462705155634737 ], [ -82.371855380000085, 69.462305155634752 ], [ -82.469955380000101, 69.481505155634736 ], [ -82.309655380000095, 69.472305155634743 ], [ -82.332155380000103, 69.462705155634737 ] ] ], [ [ [ -82.014055380000087, 69.435205155634762 ], [ -82.059155380000078, 69.433505155634762 ], [ -82.263355380000093, 69.494805155634751 ], [ -81.976955380000078, 69.459905155634758 ], [ -82.014055380000087, 69.435205155634762 ] ] ], [ [ [ -135.194955380000096, 69.478005155634762 ], [ -135.250055380000106, 69.472305155634743 ], [ -135.331455380000079, 69.487705155634742 ], [ -135.28785538000011, 69.507605155634749 ], [ -135.194955380000096, 69.478005155634762 ] ] ], [ [ [ -81.487955380000102, 69.471905155634758 ], [ -81.560755380000103, 69.460905155634762 ], [ -81.774855380000105, 69.519805155634756 ], [ -81.684255380000081, 69.538805155634762 ], [ -81.487955380000102, 69.471905155634758 ] ] ], [ [ [ -82.321455380000089, 69.516105155634747 ], [ -82.442955380000086, 69.52390515563475 ], [ -82.480855380000094, 69.547805155634748 ], [ -82.330455380000103, 69.552805155634744 ], [ -82.321455380000089, 69.516105155634747 ] ] ], [ [ [ -101.220855380000089, 69.561405155634745 ], [ -101.037655380000089, 69.545405155634754 ], [ -100.936255380000091, 69.465705155634751 ], [ -101.223555380000093, 69.382805155634756 ], [ -101.322655380000086, 69.552605155634737 ], [ -101.220855380000089, 69.561405155634745 ] ] ], [ [ [ -95.357855380000103, 69.568505155634753 ], [ -95.387555380000094, 69.56670515563475 ], [ -95.402955380000094, 69.589105155634755 ], [ -95.358355380000091, 69.589205155634758 ], [ -95.357855380000103, 69.568505155634753 ] ] ], [ [ [ -133.885755380000091, 69.553505155634738 ], [ -133.935755380000103, 69.545405155634754 ], [ -133.972755380000081, 69.563705155634736 ], [ -133.831055380000095, 69.571305155634761 ], [ -133.885755380000091, 69.553505155634738 ] ] ], [ [ [ -96.644855380000081, 69.594505155634735 ], [ -96.179455380000093, 69.590005155634756 ], [ -96.110955380000092, 69.436905155634761 ], [ -96.230155380000099, 69.379105155634747 ], [ -96.644855380000081, 69.594505155634735 ] ] ], [ [ [ -134.011755380000096, 69.585805155634759 ], [ -134.046155380000073, 69.57300515563476 ], [ -134.128155380000095, 69.601305155634762 ], [ -134.001655380000102, 69.598805155634736 ], [ -134.011755380000096, 69.585805155634759 ] ] ], [ [ [ -130.673655380000099, 69.557205155634747 ], [ -130.72615538000008, 69.547505155634738 ], [ -130.767255380000108, 69.567105155634735 ], [ -130.701455380000084, 69.608205155634735 ], [ -130.673655380000099, 69.557205155634747 ] ] ], [ [ [ -67.409255380000104, 69.552605155634737 ], [ -67.664855380000091, 69.516105155634747 ], [ -67.828255380000087, 69.525005155634759 ], [ -67.5726553800001, 69.609105155634737 ], [ -67.409255380000104, 69.552605155634737 ] ] ], [ [ [ -96.811755380000079, 69.58070515563476 ], [ -96.841355380000095, 69.578605155634747 ], [ -96.867755380000091, 69.599005155634742 ], [ -96.829855380000083, 69.616705155634762 ], [ -96.811755380000079, 69.58070515563476 ] ] ], [ [ [ -135.236155380000099, 69.611005155634743 ], [ -135.289855380000091, 69.60150515563474 ], [ -135.315155380000078, 69.616305155634748 ], [ -135.234955380000088, 69.622005155634739 ], [ -135.236155380000099, 69.611005155634743 ] ] ], [ [ [ -135.485155380000094, 69.565905155634752 ], [ -135.554155380000111, 69.58670515563476 ], [ -135.399155380000082, 69.626905155634759 ], [ -135.43255538000011, 69.58180515563474 ], [ -135.485155380000094, 69.565905155634752 ] ] ], [ [ [ -95.541655380000094, 69.597105155634736 ], [ -95.375755380000101, 69.499505155634736 ], [ -95.475155380000103, 69.366305155634748 ], [ -95.768055380000078, 69.346005155634757 ], [ -95.629255380000103, 69.429505155634743 ], [ -95.824755380000084, 69.589905155634753 ], [ -95.768755380000101, 69.475305155634757 ], [ -95.994855380000104, 69.377405155634747 ], [ -95.889555380000104, 69.626505155634746 ], [ -95.541655380000094, 69.597105155634736 ] ] ], [ [ [ -138.867255380000074, 69.588305155634757 ], [ -139.121055380000087, 69.529205155634756 ], [ -139.332455380000113, 69.566105155634759 ], [ -139.120255380000089, 69.650005155634759 ], [ -138.867255380000074, 69.588305155634757 ] ] ], [ [ [ -134.152055380000093, 69.669505155634752 ], [ -134.185555380000096, 69.659105155634748 ], [ -134.239155380000085, 69.688205155634748 ], [ -134.187855380000087, 69.68400515563475 ], [ -134.152055380000093, 69.669505155634752 ] ] ], [ [ [ -134.149155380000082, 69.528305155634754 ], [ -133.744155380000109, 69.546205155634752 ], [ -134.949255380000096, 68.889205155634741 ], [ -135.951555380000087, 69.183905155634747 ], [ -135.499055380000073, 69.104105155634741 ], [ -135.840255380000087, 69.280605155634746 ], [ -135.486555380000084, 69.184905155634752 ], [ -135.571955380000077, 69.315205155634757 ], [ -135.187855380000087, 69.250605155634744 ], [ -135.273155380000105, 69.410705155634744 ], [ -135.161355380000089, 69.44170515563475 ], [ -134.481355380000082, 69.445005155634746 ], [ -134.614855380000108, 69.506905155634755 ], [ -134.446255380000082, 69.557905155634742 ], [ -134.491355380000073, 69.688905155634743 ], [ -134.149155380000082, 69.528305155634754 ] ] ], [ [ [ -134.749155380000104, 69.677405155634759 ], [ -134.931855380000087, 69.673805155634753 ], [ -134.936255380000091, 69.687605155634756 ], [ -134.728055380000086, 69.684905155634752 ], [ -134.749155380000104, 69.677405155634759 ] ] ], [ [ [ -67.806155380000092, 69.67000515563474 ], [ -67.964055380000104, 69.530205155634761 ], [ -68.333555380000092, 69.590305155634738 ], [ -67.984255380000093, 69.71310515563475 ], [ -67.806155380000092, 69.67000515563474 ] ] ], [ [ [ -134.361555380000084, 69.715005155634756 ], [ -134.414055380000093, 69.701905155634748 ], [ -134.4459553800001, 69.717305155634747 ], [ -134.388755380000077, 69.725205155634754 ], [ -134.361555380000084, 69.715005155634756 ] ] ], [ [ [ -23.286655380000099, 69.641105155634747 ], [ -23.506955380000079, 69.657805155634762 ], [ -23.593055380000095, 69.713005155634747 ], [ -23.289455380000078, 69.738305155634762 ], [ -23.286655380000099, 69.641105155634747 ] ] ], [ [ [ -125.256055380000092, 69.729505155634754 ], [ -125.27525538000009, 69.712405155634755 ], [ -125.360355380000087, 69.724205155634749 ], [ -125.316855380000092, 69.743705155634743 ], [ -125.256055380000092, 69.729505155634754 ] ] ], [ [ [ -91.522255380000104, 69.740005155634762 ], [ -91.597055380000086, 69.739605155634749 ], [ -91.636055380000101, 69.745405155634742 ], [ -91.501355380000092, 69.746605155634754 ], [ -91.522255380000104, 69.740005155634762 ] ] ], [ [ [ -78.002555380000103, 69.695505155634734 ], [ -78.125955380000079, 69.598005155634738 ], [ -78.890955380000094, 69.481005155634747 ], [ -78.190955380000105, 69.764505155634751 ], [ -78.002555380000103, 69.695505155634734 ] ] ], [ [ [ -76.961155380000093, 69.753005155634739 ], [ -76.981455380000085, 69.743805155634746 ], [ -77.052855380000096, 69.752005155634762 ], [ -77.014655380000079, 69.775805155634757 ], [ -76.961155380000093, 69.753005155634739 ] ] ], [ [ [ -134.272055380000097, 69.775405155634743 ], [ -134.335155380000089, 69.755505155634737 ], [ -134.416255380000109, 69.765105155634743 ], [ -134.333955380000077, 69.787605155634751 ], [ -134.272055380000097, 69.775405155634743 ] ] ], [ [ [ -79.256555380000094, 69.764305155634744 ], [ -79.322255380000087, 69.752105155634737 ], [ -79.345855380000103, 69.767305155634759 ], [ -79.306055380000089, 69.78960515563476 ], [ -79.256555380000094, 69.764305155634744 ] ] ], [ [ [ -83.051855380000092, 69.773105155634752 ], [ -83.239355380000092, 69.784205155634751 ], [ -83.307955380000095, 69.810505155634743 ], [ -83.021655380000084, 69.792905155634756 ], [ -83.051855380000092, 69.773105155634752 ] ] ], [ [ [ -79.4459553800001, 69.769005155634758 ], [ -79.3577553800001, 69.70510515563474 ], [ -80.085455380000099, 69.631905155634755 ], [ -80.055455380000097, 69.519005155634758 ], [ -80.832655380000091, 69.708205155634758 ], [ -79.4459553800001, 69.769005155634758 ] ] ], [ [ [ -82.518855380000105, 69.762405155634738 ], [ -82.627355380000097, 69.750505155634741 ], [ -82.869255380000084, 69.800105155634739 ], [ -82.733355380000091, 69.819905155634743 ], [ -82.518855380000105, 69.762405155634738 ] ] ], [ [ [ -91.540555380000086, 69.785205155634756 ], [ -91.605655380000087, 69.78470515563474 ], [ -91.717855380000088, 69.803805155634748 ], [ -91.619355380000087, 69.828105155634759 ], [ -91.540555380000086, 69.785205155634756 ] ] ], [ [ [ -83.569355380000104, 69.807805155634739 ], [ -83.700855380000093, 69.738905155634754 ], [ -83.905055380000078, 69.831005155634742 ], [ -83.728155380000089, 69.836505155634754 ], [ -83.569355380000104, 69.807805155634739 ] ] ], [ [ [ -91.290155380000101, 69.820405155634759 ], [ -91.340455380000094, 69.819605155634761 ], [ -91.384055380000092, 69.827305155634761 ], [ -91.351055380000105, 69.847405155634746 ], [ -91.290155380000101, 69.820405155634759 ] ] ], [ [ [ -131.834655380000072, 69.803705155634745 ], [ -131.887055380000106, 69.812505155634753 ], [ -131.711855380000088, 69.84610515563476 ], [ -131.716255380000092, 69.832605155634738 ], [ -131.834655380000072, 69.803705155634745 ] ] ], [ [ [ -91.44135538000009, 69.845605155634743 ], [ -91.502855380000085, 69.83640515563475 ], [ -91.511455380000086, 69.846905155634758 ], [ -91.464555380000093, 69.85810515563476 ], [ -91.44135538000009, 69.845605155634743 ] ] ], [ [ [ -50.505355380000083, 69.810505155634743 ], [ -50.535055380000102, 69.811905155634761 ], [ -50.606455380000085, 69.856405155634761 ], [ -50.409755380000092, 69.861105155634746 ], [ -50.505355380000083, 69.810505155634743 ] ] ], [ [ [ -82.480655380000087, 69.807805155634739 ], [ -82.578755380000104, 69.81640515563474 ], [ -82.703455380000094, 69.872605155634758 ], [ -82.593655380000087, 69.868905155634749 ], [ -82.480655380000087, 69.807805155634739 ] ] ], [ [ [ -91.757955380000084, 69.839005155634752 ], [ -91.828255380000087, 69.83670515563476 ], [ -91.861555380000084, 69.849305155634752 ], [ -91.683555380000087, 69.868905155634749 ], [ -91.757955380000084, 69.839005155634752 ] ] ], [ [ [ -97.239955380000083, 69.875705155634748 ], [ -97.2798553800001, 69.87350515563476 ], [ -97.320855380000097, 69.881505155634741 ], [ -97.288055380000088, 69.901005155634735 ], [ -97.239955380000083, 69.875705155634748 ] ] ], [ [ [ -97.485755380000086, 69.672105155634753 ], [ -96.220755380000099, 69.310105155634758 ], [ -96.156855380000081, 69.060305155634737 ], [ -95.992255380000103, 69.235805155634736 ], [ -95.835855380000083, 68.908805155634738 ], [ -95.258955380000089, 68.852505155634745 ], [ -96.579355380000095, 68.472605155634753 ], [ -98.124955380000102, 68.704105155634736 ], [ -98.330155380000093, 68.862705155634742 ], [ -98.674255380000091, 68.798305155634736 ], [ -98.947455380000093, 68.960005155634761 ], [ -99.271655380000098, 68.869005155634753 ], [ -99.576155380000088, 69.039405155634753 ], [ -98.42765538000009, 69.32580515563474 ], [ -98.612755380000095, 69.436105155634735 ], [ -98.575255380000101, 69.592405155634751 ], [ -98.019755380000106, 69.45110515563475 ], [ -98.359055380000086, 69.695205155634753 ], [ -97.977055380000081, 69.909405155634758 ], [ -97.485755380000086, 69.672105155634753 ] ] ], [ [ [ -78.068455380000103, 69.858705155634752 ], [ -78.114555380000098, 69.847505155634749 ], [ -78.139255380000094, 69.859405155634747 ], [ -78.088255380000078, 69.916905155634751 ], [ -78.068455380000103, 69.858705155634752 ] ] ], [ [ [ -50.923355380000089, 69.892805155634747 ], [ -50.653955380000099, 69.836605155634757 ], [ -50.965355380000091, 69.724405155634756 ], [ -50.958355380000086, 69.550505155634752 ], [ -51.241455380000104, 69.529405155634734 ], [ -51.388055380000083, 69.705305155634747 ], [ -51.006955380000079, 69.880005155634748 ], [ -51.362855380000099, 69.851905155634753 ], [ -51.221155380000084, 69.913005155634735 ], [ -50.923355380000089, 69.892805155634747 ] ] ], [ [ [ -79.927455380000083, 69.948205155634739 ], [ -79.904455380000087, 69.92970515563475 ], [ -79.981355380000082, 69.940405155634735 ], [ -79.967155380000094, 69.950105155634745 ], [ -79.927455380000083, 69.948205155634739 ] ] ], [ [ [ -97.3791553800001, 69.90830515563475 ], [ -97.444755380000089, 69.910805155634748 ], [ -97.495055380000082, 69.951505155634734 ], [ -97.386055380000101, 69.966905155634734 ], [ -97.3791553800001, 69.90830515563475 ] ] ], [ [ [ -79.998455380000081, 69.972605155634753 ], [ -80.026355380000098, 69.966905155634734 ], [ -80.037055380000083, 69.977905155634758 ], [ -79.992255380000103, 69.987905155634749 ], [ -79.998455380000081, 69.972605155634753 ] ] ], [ [ [ -124.949355380000085, 70.119305155634734 ], [ -125.023755380000097, 70.108305155634739 ], [ -125.094255380000092, 70.121105155634737 ], [ -124.981955380000088, 70.148505155634737 ], [ -124.949355380000085, 70.119305155634734 ] ] ], [ [ [ -87.046155380000101, 70.128405155634752 ], [ -86.670655380000085, 70.12950515563476 ], [ -86.485355380000101, 70.013405155634743 ], [ -87.342455380000104, 70.096605155634748 ], [ -87.046155380000101, 70.128405155634752 ] ] ], [ [ [ -68.456255380000101, 70.162405155634744 ], [ -68.493355380000082, 70.15200515563474 ], [ -68.54325538000009, 70.161205155634761 ], [ -68.496755380000081, 70.186905155634761 ], [ -68.456255380000101, 70.162405155634744 ] ] ], [ [ [ -87.292455380000092, 70.158205155634747 ], [ -87.39855538000009, 70.16600515563475 ], [ -87.418055380000084, 70.178105155634753 ], [ -87.341455380000099, 70.184405155634735 ], [ -87.292455380000092, 70.158205155634747 ] ] ], [ [ [ -124.992055380000096, 70.181605155634756 ], [ -125.009755380000087, 70.170705155634735 ], [ -125.067155380000088, 70.182105155634744 ], [ -125.012955380000093, 70.195405155634759 ], [ -124.992055380000096, 70.181605155634756 ] ] ], [ [ [ -68.586655380000082, 70.19340515563475 ], [ -68.633255380000094, 70.189505155634762 ], [ -68.650955380000084, 70.198805155634759 ], [ -68.619255380000084, 70.21510515563476 ], [ -68.586655380000082, 70.19340515563475 ] ] ], [ [ [ -112.591155380000089, 70.271405155634753 ], [ -112.661955380000094, 70.273405155634762 ], [ -112.690255380000096, 70.294005155634736 ], [ -112.638955380000098, 70.302605155634737 ], [ -112.591155380000089, 70.271405155634753 ] ] ], [ [ [ -112.922055380000089, 70.285605155634741 ], [ -113.109555380000089, 70.286705155634749 ], [ -113.13655538000009, 70.305505155634748 ], [ -112.957155380000088, 70.307305155634751 ], [ -112.922055380000089, 70.285605155634741 ] ] ], [ [ [ -52.693055380000089, 69.917505155634743 ], [ -51.996955380000088, 69.798605155634746 ], [ -51.903955380000099, 69.731905155634749 ], [ -52.026655380000079, 69.673605155634746 ], [ -51.833355380000086, 69.626105155634761 ], [ -53.574755380000084, 69.229405155634751 ], [ -54.269155380000086, 69.402205155634746 ], [ -53.386455380000086, 69.439705155634741 ], [ -53.576655380000091, 69.474105155634746 ], [ -53.347555380000102, 69.579705155634755 ], [ -53.791955380000104, 69.45110515563475 ], [ -53.991955380000093, 69.491605155634758 ], [ -53.951455380000084, 69.605505155634759 ], [ -54.99445538000009, 69.694705155634736 ], [ -54.389455380000101, 69.675305155634746 ], [ -54.936155380000088, 69.84550515563474 ], [ -54.753955380000093, 69.964405155634736 ], [ -54.229455380000104, 69.913005155634735 ], [ -54.82975538000008, 70.078305155634737 ], [ -54.761155380000105, 70.24050515563475 ], [ -54.429155380000083, 70.309705155634745 ], [ -53.266455380000082, 70.195005155634746 ], [ -52.693055380000089, 69.917505155634743 ] ] ], [ [ [ -100.692055380000099, 70.258005155634734 ], [ -100.787155380000087, 70.268805155634752 ], [ -100.804755380000088, 70.313205155634748 ], [ -100.699255380000096, 70.30270515563474 ], [ -100.692055380000099, 70.258005155634734 ] ] ], [ [ [ -111.758655380000093, 70.296505155634762 ], [ -112.027355380000088, 70.294705155634759 ], [ -112.251855380000094, 70.354005155634738 ], [ -111.920955380000095, 70.333205155634758 ], [ -111.758655380000093, 70.296505155634762 ] ] ], [ [ [ -100.091555380000088, 70.376105155634761 ], [ -100.160155380000091, 70.382805155634756 ], [ -100.164555380000095, 70.399905155634755 ], [ -100.055255380000091, 70.416805155634748 ], [ -100.091555380000088, 70.376105155634761 ] ] ], [ [ [ -54.661455380000092, 70.372505155634755 ], [ -54.934755380000098, 70.375505155634741 ], [ -55.027855380000091, 70.483005155634757 ], [ -54.737255380000079, 70.433605155634737 ], [ -54.661455380000092, 70.372505155634755 ] ] ], [ [ [ -116.534955380000099, 70.466105155634736 ], [ -116.613055380000091, 70.462305155634752 ], [ -116.633355380000097, 70.476305155634762 ], [ -116.588355380000095, 70.485305155634748 ], [ -116.534955380000099, 70.466105155634736 ] ] ], [ [ [ -115.527955380000094, 70.531805155634757 ], [ -115.59975538000009, 70.521805155634738 ], [ -115.600155380000089, 70.543605155634751 ], [ -115.527955380000094, 70.531805155634757 ] ] ], [ [ [ -116.164355380000089, 70.518805155634752 ], [ -116.201855380000097, 70.51820515563476 ], [ -116.236455380000095, 70.525005155634759 ], [ -116.116155380000095, 70.535405155634734 ], [ -116.164355380000089, 70.518805155634752 ] ] ], [ [ [ -115.87115538000009, 70.536405155634739 ], [ -115.973755380000085, 70.530005155634754 ], [ -115.998955380000098, 70.549005155634759 ], [ -115.785055380000088, 70.553505155634738 ], [ -115.87115538000009, 70.536405155634739 ] ] ], [ [ [ -116.54195538000009, 70.554905155634756 ], [ -116.335655380000091, 70.515205155634746 ], [ -116.300255380000095, 70.497505155634755 ], [ -116.735955380000092, 70.546405155634758 ], [ -116.54195538000009, 70.554905155634756 ] ] ], [ [ [ -116.866755380000086, 70.525105155634762 ], [ -117.181755380000098, 70.521705155634734 ], [ -117.270155380000091, 70.541905155634751 ], [ -117.091055380000086, 70.569405155634755 ], [ -116.866755380000086, 70.525105155634762 ] ] ], [ [ [ -128.273455380000087, 70.529905155634751 ], [ -128.261955380000074, 70.629705155634738 ], [ -128.098755380000085, 70.601405155634737 ], [ -128.121555380000075, 70.573205155634739 ], [ -128.273455380000087, 70.529905155634751 ] ] ], [ [ [ -103.383955380000089, 70.62290515563474 ], [ -103.442455380000098, 70.625405155634738 ], [ -103.453055380000094, 70.651005155634735 ], [ -103.382555380000099, 70.657705155634758 ], [ -103.383955380000089, 70.62290515563474 ] ] ], [ [ [ -103.153855380000095, 70.63660515563474 ], [ -103.228755380000095, 70.640205155634746 ], [ -103.236955380000097, 70.660705155634744 ], [ -103.189455380000098, 70.673205155634761 ], [ -103.153855380000095, 70.63660515563474 ] ] ], [ [ [ -100.325055380000094, 70.600905155634749 ], [ -100.137155380000095, 70.578705155634751 ], [ -100.45205538000009, 70.493505155634736 ], [ -100.660055380000088, 70.665205155634752 ], [ -100.325055380000094, 70.600905155634749 ] ] ], [ [ [ -80.95475538000008, 70.679205155634762 ], [ -80.995255380000089, 70.668705155634754 ], [ -81.024355380000088, 70.689005155634746 ], [ -80.992955380000097, 70.703305155634737 ], [ -80.95475538000008, 70.679205155634762 ] ] ], [ [ [ -103.287455380000097, 70.694905155634743 ], [ -103.322855380000092, 70.691605155634747 ], [ -103.360555380000093, 70.71940515563476 ], [ -103.309455380000088, 70.723505155634754 ], [ -103.287455380000097, 70.694905155634743 ] ] ], [ [ [ -51.512855380000104, 70.653905155634746 ], [ -51.694455380000079, 70.677805155634744 ], [ -51.861655380000087, 70.72220515563474 ], [ -51.692555380000101, 70.727805155634755 ], [ -51.512855380000104, 70.653905155634746 ] ] ], [ [ [ -27.68535538000009, 70.733905155634758 ], [ -27.748955380000098, 70.877505155634751 ], [ -27.2755553800001, 70.875005155634753 ], [ -27.391655380000088, 70.805805155634758 ], [ -27.68535538000009, 70.733905155634758 ] ] ], [ [ [ -51.565855380000102, 70.864705155634752 ], [ -51.650855380000081, 70.835005155634761 ], [ -52.16225538000009, 70.886705155634743 ], [ -52.023055380000102, 70.979105155634741 ], [ -51.565855380000102, 70.864705155634752 ] ] ], [ [ [ -87.549955380000085, 71.03160515563475 ], [ -87.61345538000009, 71.03190515563476 ], [ -87.665955380000099, 71.040905155634746 ], [ -87.643155380000081, 71.066605155634747 ], [ -87.549955380000085, 71.03160515563475 ] ] ], [ [ [ -71.402055380000093, 70.960605155634752 ], [ -72.055655380000104, 70.825205155634748 ], [ -72.217655380000082, 70.919605155634756 ], [ -71.926855380000092, 71.072205155634762 ], [ -71.402055380000093, 70.960605155634752 ] ] ], [ [ [ -25.394755380000106, 70.911605155634746 ], [ -25.294455380000102, 70.65970515563474 ], [ -26.029755380000097, 70.521105155634743 ], [ -28.136655380000093, 70.454705155634755 ], [ -27.149655380000098, 70.874405155634761 ], [ -26.331655380000086, 70.928905155634752 ], [ -25.711655380000082, 71.080505155634754 ], [ -25.394755380000106, 70.911605155634746 ] ] ], [ [ [ -25.3089553800001, 71.014405155634748 ], [ -25.414455380000078, 71.02390515563475 ], [ -25.579155380000088, 71.102205155634735 ], [ -25.460555380000102, 71.104105155634741 ], [ -25.3089553800001, 71.014405155634748 ] ] ], [ [ [ -71.231555380000088, 71.093305155634752 ], [ -71.281355380000093, 71.099705155634737 ], [ -71.111355380000106, 71.148305155634759 ], [ -71.124755380000096, 71.133405155634748 ], [ -71.231555380000088, 71.093305155634752 ] ] ], [ [ [ -25.282555380000105, 71.131905155634755 ], [ -25.4005553800001, 71.131405155634738 ], [ -25.472655380000106, 71.151805155634761 ], [ -25.359755380000081, 71.205305155634747 ], [ -25.282555380000105, 71.131905155634755 ] ] ], [ [ [ -97.009455380000105, 71.259805155634737 ], [ -97.062755380000084, 71.259205155634746 ], [ -97.090455380000094, 71.267405155634762 ], [ -96.988955380000078, 71.268505155634742 ], [ -97.009455380000105, 71.259805155634737 ] ] ], [ [ [ -96.563155380000097, 71.236605155634734 ], [ -96.62085538000008, 71.222405155634746 ], [ -96.654355380000084, 71.239305155634739 ], [ -96.605355380000105, 71.28790515563476 ], [ -96.563155380000097, 71.236605155634734 ] ] ], [ [ [ -53.649155380000082, 71.024105155634757 ], [ -53.956455380000079, 71.09610515563476 ], [ -53.990355380000096, 71.131405155634738 ], [ -53.598055380000091, 71.313305155634751 ], [ -53.376455380000095, 71.115005155634762 ], [ -53.649155380000082, 71.024105155634757 ] ] ], [ [ [ -98.930255380000091, 71.30470515563475 ], [ -99.010355380000092, 71.30300515563475 ], [ -99.015655380000098, 71.328705155634751 ], [ -98.962155380000098, 71.355605155634734 ], [ -98.930255380000091, 71.30470515563475 ] ] ], [ [ [ -52.571455380000089, 71.34610515563476 ], [ -52.32835538000009, 71.287805155634757 ], [ -52.935855380000106, 71.147205155634751 ], [ -53.183855380000097, 71.32240515563474 ], [ -52.571455380000089, 71.34610515563476 ] ] ], [ [ [ -84.823555380000101, 71.380105155634752 ], [ -84.86515538000009, 71.360405155634751 ], [ -84.887655380000098, 71.383205155634741 ], [ -84.85745538000009, 71.399705155634749 ], [ -84.823555380000101, 71.380105155634752 ] ] ], [ [ [ -73.525055380000083, 71.462905155634743 ], [ -73.59975538000009, 71.459905155634758 ], [ -73.547755380000098, 71.477005155634757 ], [ -73.525055380000083, 71.462905155634743 ] ] ], [ [ [ -73.240755380000081, 71.449205155634743 ], [ -73.022555380000085, 71.51330515563474 ], [ -72.900355380000093, 71.450205155634748 ], [ -73.047355380000084, 71.412405155634744 ], [ -73.053455380000088, 71.313705155634736 ], [ -73.358955380000083, 71.511805155634747 ], [ -73.146155380000096, 71.533805155634738 ], [ -73.240755380000081, 71.449205155634743 ] ] ], [ [ [ -72.814255380000105, 71.549505155634748 ], [ -72.984255380000093, 71.55440515563474 ], [ -73.07035538000008, 71.614605155634749 ], [ -72.724855380000093, 71.645105155634738 ], [ -72.814255380000105, 71.549505155634748 ] ] ], [ [ [ -53.133655380000079, 71.661905155634756 ], [ -52.889155380000091, 71.653605155634736 ], [ -52.756155380000081, 71.660305155634759 ], [ -53.218055380000095, 71.526405155634748 ], [ -53.47445538000008, 71.652505155634756 ], [ -53.133655380000079, 71.661905155634756 ] ] ], [ [ [ -96.873655380000088, 71.659805155634743 ], [ -96.9279553800001, 71.659305155634755 ], [ -96.815655380000095, 71.682705155634736 ], [ -96.873655380000088, 71.659805155634743 ] ] ], [ [ [ -73.356655380000092, 71.585905155634762 ], [ -73.446555380000092, 71.592905155634739 ], [ -73.193055380000089, 71.693305155634746 ], [ -73.215555380000097, 71.665105155634748 ], [ -73.356655380000092, 71.585905155634762 ] ] ], [ [ [ -74.398155380000105, 71.72110515563476 ], [ -74.520155380000091, 71.715905155634758 ], [ -74.5435553800001, 71.729805155634736 ], [ -74.472655380000106, 71.742305155634753 ], [ -74.398155380000105, 71.72110515563476 ] ] ], [ [ [ -96.923255380000086, 71.716005155634761 ], [ -97.005155380000105, 71.71510515563476 ], [ -97.03895538000009, 71.725005155634747 ], [ -96.85115538000008, 71.761305155634759 ], [ -96.923255380000086, 71.716005155634761 ] ] ], [ [ [ -95.381455380000091, 71.755405155634762 ], [ -95.469455380000085, 71.765505155634756 ], [ -95.317555380000101, 71.829305155634742 ], [ -95.338255380000078, 71.781205155634737 ], [ -95.381455380000091, 71.755405155634762 ] ] ], [ [ [ -55.559155380000078, 71.819105155634745 ], [ -55.686955380000086, 71.825505155634758 ], [ -55.805555380000101, 71.87890515563474 ], [ -55.410055380000102, 71.890305155634749 ], [ -55.559155380000078, 71.819105155634745 ] ] ], [ [ [ -137.056855380000087, 59.069205155634748 ], [ -137.125555380000094, 58.821905155634752 ], [ -136.573655380000105, 58.838605155634738 ], [ -136.337555380000083, 58.683905155634747 ], [ -136.523955380000075, 58.611405155634756 ], [ -136.258955380000089, 58.651705155634758 ], [ -136.029155380000077, 58.383305155634744 ], [ -136.479455380000104, 58.415805155634743 ], [ -136.361955380000097, 58.298605155634746 ], [ -136.649455380000092, 58.342805155634736 ], [ -136.66365538000008, 58.217805155634736 ], [ -138.608955380000111, 59.121405155634747 ], [ -138.443655380000109, 59.19170515563475 ], [ -139.710555380000073, 59.495805155634756 ], [ -139.493855380000099, 59.982205155634759 ], [ -139.316955380000081, 59.870005155634757 ], [ -139.285555380000091, 59.571405155634736 ], [ -139.270655380000107, 59.802505155634762 ], [ -138.892855380000071, 59.806605155634756 ], [ -139.500055380000106, 60.03300515563474 ], [ -140.403355380000107, 59.69800515563476 ], [ -141.376655380000102, 59.866405155634752 ], [ -141.256755380000072, 60.002205155634741 ], [ -141.39085538000009, 60.13860515563475 ], [ -141.385055380000097, 60.02420515563476 ], [ -141.715855380000107, 59.952505155634739 ], [ -142.717255380000097, 60.110005155634738 ], [ -143.923355380000089, 59.994105155634756 ], [ -144.936455380000098, 60.301705155634735 ], [ -144.611455380000109, 60.715505155634744 ], [ -145.294155380000092, 60.350305155634757 ], [ -145.859455380000099, 60.491705155634762 ], [ -145.625855380000075, 60.671905155634747 ], [ -146.261155380000105, 60.648005155634749 ], [ -146.016655380000088, 60.743305155634758 ], [ -146.040855380000096, 60.798605155634746 ], [ -146.653355380000107, 60.69970515563476 ], [ -146.124155380000104, 60.843305155634752 ], [ -146.756755380000072, 60.955305155634747 ], [ -146.300855380000087, 61.130805155634746 ], [ -147.366955380000093, 60.887805155634751 ], [ -147.529155380000077, 60.903905155634746 ], [ -147.54665538000009, 61.154405155634734 ], [ -147.601655380000096, 60.893605155634745 ], [ -147.865255380000093, 60.832505155634735 ], [ -147.914555380000081, 60.889905155634736 ], [ -148.052255380000076, 60.94970515563476 ], [ -147.719755380000095, 61.278005155634744 ], [ -148.0666553800001, 61.016705155634739 ], [ -148.188055380000094, 61.094705155634742 ], [ -148.404155380000077, 61.05440515563474 ], [ -148.162355380000093, 61.058805155634744 ], [ -148.340255380000087, 60.813905155634743 ], [ -148.468355380000105, 60.839705155634746 ], [ -148.699755380000113, 60.789705155634735 ], [ -148.447555380000097, 60.804205155634762 ], [ -148.631155380000109, 60.750305155634734 ], [ -148.668055380000112, 60.668905155634761 ], [ -148.230355380000105, 60.767505155634737 ], [ -148.251655380000102, 60.702805155634749 ], [ -148.197555380000097, 60.626105155634761 ], [ -148.487755380000095, 60.57640515563476 ], [ -148.684155380000107, 60.448305155634742 ], [ -148.087255380000101, 60.601905155634753 ], [ -147.936955380000086, 60.462205155634749 ], [ -148.431155380000092, 60.192805155634758 ], [ -148.097855380000112, 60.207505155634735 ], [ -148.317855380000083, 60.168905155634761 ], [ -148.435855380000078, 59.948905155634762 ], [ -149.077555380000092, 60.056405155634749 ], [ -149.286155380000082, 59.868905155634749 ], [ -149.416955380000104, 60.118305155634758 ], [ -149.628055380000092, 59.82470515563476 ], [ -149.52585538000011, 59.716705155634756 ], [ -149.66365538000008, 59.804205155634762 ], [ -149.731955380000102, 59.960505155634749 ], [ -149.743655380000092, 59.65860515563476 ], [ -150.034255380000104, 59.796405155634758 ], [ -149.915855380000096, 59.714705155634746 ], [ -150.013655380000102, 59.627505155634751 ], [ -150.349455380000109, 59.465505155634744 ], [ -150.213655380000091, 59.716705155634756 ], [ -150.473655380000082, 59.464405155634736 ], [ -150.541755380000097, 59.591705155634756 ], [ -150.907555380000076, 59.243305155634758 ], [ -151.7233553800001, 59.160805155634748 ], [ -151.971955380000111, 59.271105155634743 ], [ -150.992755380000091, 59.777205155634746 ], [ -151.47645538000009, 59.630305155634758 ], [ -151.876655380000102, 59.75390515563474 ], [ -151.303955380000104, 60.38550515563476 ], [ -151.408955380000094, 60.727505155634745 ], [ -150.399155380000082, 61.037205155634737 ], [ -149.028155380000101, 60.847805155634759 ], [ -150.064255380000077, 61.154405155634734 ], [ -149.242255380000074, 61.492805155634741 ], [ -149.629755380000091, 61.488305155634762 ], [ -149.98245538000009, 61.26020515563475 ], [ -150.626355380000092, 61.286405155634739 ], [ -151.583655380000096, 60.976905155634753 ], [ -151.800355380000099, 60.858305155634739 ], [ -151.710055380000085, 60.723305155634748 ], [ -152.232555380000093, 60.554205155634762 ], [ -152.430355380000094, 60.288905155634737 ], [ -152.630355380000083, 60.229405155634751 ], [ -152.91225538000009, 60.308005155634746 ], [ -153.103055380000086, 60.289405155634753 ], [ -152.577255380000111, 60.064705155634741 ], [ -153.281955380000113, 59.825505155634758 ], [ -153.008055380000087, 59.830005155634737 ], [ -153.044455380000102, 59.706905155634743 ], [ -153.3483553800001, 59.628605155634759 ], [ -153.42055538000011, 59.766105155634747 ], [ -153.739455380000095, 59.438605155634761 ], [ -154.14255538000009, 59.377505155634751 ], [ -153.997555380000108, 59.349205155634749 ], [ -154.260855380000095, 59.142205155634755 ], [ -153.267855380000071, 58.848605155634758 ], [ -154.103355380000096, 58.481905155634749 ], [ -154.000655380000097, 58.378005155634739 ], [ -154.35915538000009, 58.28330515563475 ], [ -154.115255380000093, 58.286905155634756 ], [ -154.233655380000073, 58.131105155634756 ], [ -155.026655380000079, 58.022805155634742 ], [ -155.311155380000088, 57.734405155634747 ], [ -155.603355380000096, 57.790805155634743 ], [ -155.736655380000087, 57.549205155634738 ], [ -156.490055380000086, 57.331105155634745 ], [ -156.340855380000107, 57.173605155634746 ], [ -156.548655380000099, 56.977505155634745 ], [ -156.938055380000094, 56.967505155634754 ], [ -157.194155380000097, 56.771405155634753 ], [ -157.419755380000083, 56.860005155634738 ], [ -157.587555380000083, 56.712205155634749 ], [ -157.472855380000112, 56.618305155634758 ], [ -157.78725538000009, 56.67830515563476 ], [ -158.131455380000091, 56.534405155634758 ], [ -157.876955380000084, 56.467505155634754 ], [ -158.423055380000108, 56.443905155634738 ], [ -158.650055380000083, 56.264405155634748 ], [ -158.120555380000098, 56.233605155634748 ], [ -158.410555380000091, 56.172805155634748 ], [ -158.505355380000083, 55.988905155634754 ], [ -158.602555380000098, 56.09410515563475 ], [ -158.473955380000092, 56.184705155634745 ], [ -158.60115538000008, 56.188005155634741 ], [ -158.670055380000093, 55.955005155634737 ], [ -159.367755380000091, 55.872505155634755 ], [ -159.667255380000086, 55.577205155634758 ], [ -159.621955380000088, 55.813905155634743 ], [ -159.841155380000089, 55.851105155634755 ], [ -160.50785538000008, 55.478005155634762 ], [ -160.752555380000103, 55.547205155634757 ], [ -160.666655380000094, 55.465805155634754 ], [ -161.254255380000075, 55.346905155634758 ], [ -161.503155380000095, 55.359405155634747 ], [ -161.485555380000108, 55.481105155634751 ], [ -161.141755380000092, 55.538905155634737 ], [ -161.562555380000106, 55.622805155634737 ], [ -162.042255380000086, 55.23280515563475 ], [ -161.967755380000085, 55.101905155634753 ], [ -162.454155380000088, 55.038305155634745 ], [ -162.646155380000096, 55.29530515563475 ], [ -162.562555380000106, 54.955305155634747 ], [ -162.877855380000085, 54.931905155634738 ], [ -163.184455380000088, 55.139705155634758 ], [ -163.044455380000102, 54.937505155634753 ], [ -163.345555380000093, 54.807505155634757 ], [ -163.323055380000085, 55.121705155634757 ], [ -162.545055380000093, 55.343905155634744 ], [ -161.800055380000089, 55.886705155634743 ], [ -161.068355380000071, 55.935005155634755 ], [ -160.680555380000101, 55.693905155634738 ], [ -160.798055380000108, 55.878305155634749 ], [ -160.249755380000096, 55.770505155634751 ], [ -160.574755380000113, 55.986605155634734 ], [ -160.346955380000111, 56.285505155634738 ], [ -159.040355380000108, 56.803605155634742 ], [ -158.64055538000008, 56.761105155634752 ], [ -158.648955380000075, 57.05330515563476 ], [ -157.938055380000094, 57.49190515563474 ], [ -157.396655380000084, 57.49050515563475 ], [ -157.706655380000086, 57.643305155634735 ], [ -157.610055380000091, 58.089705155634746 ], [ -157.138655380000102, 58.162505155634747 ], [ -157.553655380000095, 58.382505155634746 ], [ -157.068355380000071, 58.729405155634751 ], [ -156.779155380000077, 59.151405155634748 ], [ -157.111955380000097, 58.874405155634761 ], [ -158.188355380000075, 58.606405155634761 ], [ -158.564755380000094, 58.812505155634753 ], [ -158.492555380000113, 58.999405155634761 ], [ -157.992755380000091, 58.905005155634754 ], [ -158.536955380000109, 59.175305155634746 ], [ -158.616155380000095, 58.921105155634748 ], [ -158.823355380000095, 58.97110515563476 ], [ -158.779455380000087, 58.771105155634743 ], [ -158.907255380000095, 58.724405155634756 ], [ -158.704155380000088, 58.49220515563475 ], [ -158.897555380000085, 58.395505155634751 ], [ -159.627255380000094, 58.952505155634739 ], [ -159.919155380000092, 58.771105155634743 ], [ -160.326655380000091, 59.059705155634745 ], [ -161.632255380000089, 58.599205155634749 ], [ -162.171455380000111, 58.649705155634749 ], [ -161.693955380000091, 58.767205155634755 ], [ -161.792855380000105, 59.017205155634755 ], [ -161.565855380000073, 59.103605155634753 ], [ -161.992255380000074, 59.144205155634737 ], [ -161.962255380000101, 59.375505155634741 ], [ -161.705255380000096, 59.496705155634757 ], [ -162.236155380000099, 60.060505155634743 ], [ -162.151455380000073, 60.245505155634746 ], [ -162.372255380000098, 60.176105155634744 ], [ -162.221955380000111, 60.581705155634737 ], [ -161.879455380000081, 60.702205155634758 ], [ -162.255355380000083, 60.620005155634757 ], [ -162.569455380000079, 60.31640515563474 ], [ -162.446955380000077, 60.180805155634758 ], [ -162.521655380000084, 59.992805155634741 ], [ -164.065355380000085, 59.824205155634743 ], [ -164.218655380000087, 59.945805155634744 ], [ -164.092755380000085, 59.981705155634742 ], [ -165.1428553800001, 60.439405155634759 ], [ -164.983655380000101, 60.544205155634742 ], [ -165.425355380000099, 60.555305155634741 ], [ -164.665055380000098, 60.911705155634749 ], [ -164.680855380000082, 60.827805155634749 ], [ -164.264455380000101, 60.778905155634746 ], [ -164.429155380000083, 60.55330515563476 ], [ -163.957755380000094, 60.780305155634736 ], [ -163.669455380000102, 60.587205155634749 ], [ -163.409755380000092, 60.756705155634748 ], [ -163.895655380000107, 60.856905155634749 ], [ -163.551455380000107, 60.903905155634746 ], [ -165.150355380000093, 60.92800515563475 ], [ -164.822255380000087, 61.111105155634746 ], [ -165.370055380000082, 61.20080515563474 ], [ -164.716155380000089, 61.625505155634741 ], [ -165.2875553800001, 61.333905155634753 ], [ -165.407555380000076, 61.208305155634761 ], [ -165.386755380000096, 61.068605155634756 ], [ -165.878655380000083, 61.338005155634747 ], [ -165.811755380000079, 61.53300515563474 ], [ -166.197855380000078, 61.594705155634742 ], [ -166.155655380000098, 61.717505155634754 ], [ -166.137255380000084, 61.634705155634762 ], [ -165.823055380000085, 61.688005155634741 ], [ -166.098655380000082, 61.816105155634759 ], [ -165.633355380000097, 61.846905155634758 ], [ -165.70335538000009, 62.113605155634744 ], [ -165.247255380000098, 62.446105155634754 ], [ -165.001155380000085, 62.537505155634747 ], [ -164.636455380000086, 62.417505155634743 ], [ -164.852855380000108, 62.570305155634756 ], [ -164.479155380000094, 62.745805155634756 ], [ -164.782955380000089, 62.649005155634754 ], [ -164.877855380000085, 62.835505155634749 ], [ -164.691755380000075, 63.021705155634734 ], [ -164.318355380000099, 63.006905155634755 ], [ -164.589755380000099, 63.128305155634749 ], [ -164.410555380000091, 63.211905155634739 ], [ -163.111655380000087, 63.051905155634742 ], [ -162.311955380000086, 63.541105155634753 ], [ -162.034755380000092, 63.485505155634755 ], [ -162.142255380000108, 63.425305155634746 ], [ -161.151655380000079, 63.512505155634742 ], [ -160.777555380000081, 63.868605155634739 ], [ -161.184455380000088, 64.412805155634757 ], [ -161.529155380000077, 64.418905155634761 ], [ -161.018355380000088, 64.509405155634752 ], [ -160.783955380000094, 64.721905155634758 ], [ -161.18255538000011, 64.937505155634753 ], [ -161.430855380000082, 64.769405155634743 ], [ -162.114155380000085, 64.715805155634754 ], [ -162.790355380000108, 64.336105155634741 ], [ -163.170055380000093, 64.655305155634736 ], [ -163.356655380000092, 64.581905155634743 ], [ -163.03725538000009, 64.516105155634747 ], [ -163.175855380000087, 64.407505155634752 ], [ -163.821955380000077, 64.589205155634758 ], [ -165.028655380000089, 64.443905155634738 ], [ -166.121355380000097, 64.57470515563476 ], [ -166.409455380000082, 64.660505155634738 ], [ -166.387255380000084, 64.891405155634757 ], [ -166.697855380000078, 64.993005155634748 ], [ -166.715055380000081, 65.051405155634754 ], [ -166.885355380000078, 65.108305155634739 ], [ -166.937755380000084, 65.146905155634741 ], [ -166.961955380000092, 65.188905155634743 ], [ -166.0589553800001, 65.256105155634756 ], [ -167.457255380000106, 65.418905155634761 ], [ -168.132355380000092, 65.661705155634749 ], [ -166.266955380000098, 66.179105155634758 ], [ -165.500855380000075, 66.145005155634735 ], [ -165.886755380000096, 66.239705155634752 ], [ -164.353655380000077, 66.594705155634742 ], [ -163.93365538000009, 66.608605155634748 ], [ -163.625055380000106, 66.567205155634738 ], [ -163.938055380000094, 66.580805155634735 ], [ -163.754755380000091, 66.518005155634754 ], [ -163.854455380000104, 66.276905155634736 ], [ -164.188355380000075, 66.196105155634754 ], [ -163.656455380000097, 66.070505155634734 ], [ -161.816455380000093, 65.975005155634747 ], [ -161.530655380000098, 66.267805155634747 ], [ -161.075855380000093, 66.234705155634757 ], [ -161.175855380000087, 66.11750515563476 ], [ -161.003355380000073, 66.204205155634739 ], [ -161.126655380000102, 66.339705155634746 ], [ -161.520055380000088, 66.402205155634746 ], [ -161.910055380000074, 66.274405155634739 ], [ -161.906155380000087, 66.535305155634759 ], [ -162.636155380000105, 66.868905155634749 ], [ -162.336955380000092, 66.958305155634761 ], [ -161.600555380000088, 66.44770515563475 ], [ -161.200355380000076, 66.539105155634743 ], [ -160.790355380000108, 66.371405155634747 ], [ -160.230555380000112, 66.399705155634749 ], [ -160.264255380000094, 66.647505155634761 ], [ -161.506755380000072, 66.533905155634741 ], [ -161.897855380000095, 66.728305155634743 ], [ -161.501155380000085, 66.979105155634741 ], [ -162.461155380000093, 66.99250515563476 ], [ -162.350555380000088, 67.161405155634739 ], [ -162.568055380000089, 67.008905155634736 ], [ -163.732555380000093, 67.113605155634744 ], [ -164.124155380000104, 67.610005155634738 ], [ -166.827855380000102, 68.350805155634745 ], [ -166.372655380000083, 68.416805155634748 ], [ -166.215855380000107, 68.883005155634734 ], [ -164.324755380000084, 68.930505155634748 ], [ -163.645355380000098, 69.106905155634749 ], [ -163.120255380000089, 69.384705155634762 ], [ -163.003955380000093, 69.752805155634761 ], [ -161.942255380000091, 70.307205155634747 ], [ -161.764455380000072, 70.255805155634746 ], [ -162.118855380000099, 70.151705155634758 ], [ -159.937555380000106, 70.593305155634752 ], [ -160.198655380000105, 70.471605155634748 ], [ -159.836155380000093, 70.268305155634735 ], [ -159.819455380000079, 70.484405155634747 ], [ -159.285555380000091, 70.530505155634742 ], [ -160.118855380000099, 70.626105155634761 ], [ -159.668055380000112, 70.798005155634755 ], [ -159.522855380000095, 70.828005155634756 ], [ -159.303355380000085, 70.864105155634761 ], [ -159.178655380000095, 70.881405155634738 ], [ -159.445855380000097, 70.776705155634758 ], [ -157.880455380000086, 70.856305155634757 ], [ -156.589455380000089, 71.36580515563476 ], [ -155.598055380000091, 71.173905155634756 ], [ -155.735855380000089, 71.000005155634753 ], [ -156.18255538000011, 70.918305155634741 ], [ -155.982755380000071, 70.898605155634741 ], [ -155.973655380000082, 70.755805155634746 ], [ -155.192855380000083, 70.989405155634742 ], [ -155.28725538000009, 71.085505155634749 ], [ -155.087555380000083, 71.151405155634748 ], [ -155.083055380000076, 71.012505155634742 ], [ -154.821155380000107, 71.095005155634752 ], [ -154.591955380000087, 71.00390515563474 ], [ -154.626655380000102, 70.831405155634755 ], [ -154.243855380000099, 70.779405155634734 ], [ -153.242755380000091, 70.92800515563475 ], [ -152.3791553800001, 70.861605155634734 ], [ -152.215555380000097, 70.811805155634758 ], [ -152.493855380000099, 70.643905155634755 ], [ -152.076155380000102, 70.575005155634742 ], [ -152.629455380000081, 70.557505155634757 ], [ -151.740855380000085, 70.560005155634755 ], [ -151.974455380000109, 70.44770515563475 ], [ -151.220255380000083, 70.371105155634737 ], [ -150.780055380000078, 70.502205155634741 ], [ -149.174755380000079, 70.49080515563476 ], [ -144.952255380000111, 69.968305155634752 ], [ -143.280655380000098, 70.118305155634758 ], [ -141.375855380000075, 69.63830515563474 ], [ -139.143055380000078, 69.510805155634742 ], [ -138.604955380000092, 69.247505155634755 ], [ -135.2190553800001, 68.638705155634753 ], [ -134.729255380000097, 68.649405155634739 ], [ -135.509655380000083, 68.867905155634745 ], [ -134.922855380000101, 68.863205155634759 ], [ -134.680255380000091, 68.954605155634752 ], [ -134.321855380000102, 68.745505155634746 ], [ -134.540555380000086, 69.050405155634749 ], [ -133.602455380000094, 69.371705155634757 ], [ -132.920455380000078, 69.40970515563474 ], [ -132.909555380000086, 69.633705155634757 ], [ -132.344855380000098, 69.635605155634735 ], [ -132.553855380000073, 69.734305155634743 ], [ -131.982955380000078, 69.692505155634748 ], [ -131.385055380000097, 69.947205155634762 ], [ -131.176655380000085, 69.817105155634735 ], [ -130.916155380000077, 70.070805155634744 ], [ -129.987555380000089, 70.045905155634742 ], [ -129.704655380000077, 70.238505155634741 ], [ -129.334055380000109, 70.091205155634739 ], [ -130.913355380000098, 69.556205155634743 ], [ -131.082955380000101, 69.616605155634758 ], [ -132.001355380000092, 69.495805155634756 ], [ -133.489955380000083, 68.804005155634755 ], [ -133.033655380000084, 68.677005155634745 ], [ -133.375655380000097, 68.82640515563476 ], [ -132.488355380000087, 68.794805155634762 ], [ -132.404155380000077, 68.854705155634761 ], [ -132.789155380000096, 68.850505155634735 ], [ -132.819255380000072, 69.041505155634738 ], [ -131.705255380000096, 69.359905155634735 ], [ -131.930355380000094, 69.380005155634748 ], [ -131.832155380000074, 69.402805155634738 ], [ -131.515655380000112, 69.440705155634745 ], [ -131.461155380000093, 69.319405155634755 ], [ -131.264155380000091, 69.45680515563474 ], [ -131.276855380000086, 69.314205155634752 ], [ -131.241155380000095, 69.546105155634748 ], [ -131.118555380000089, 69.313405155634754 ], [ -131.116555380000079, 69.574205155634743 ], [ -130.913855380000086, 69.431205155634743 ], [ -131.034455380000111, 69.311905155634761 ], [ -130.904655380000094, 69.333005155634751 ], [ -131.021755380000087, 69.144705155634753 ], [ -130.925155380000092, 69.097105155634736 ], [ -130.720755380000071, 69.427405155634759 ], [ -130.3209553800001, 69.662105155634762 ], [ -128.840155380000112, 69.953305155634737 ], [ -129.153255380000076, 69.710205155634739 ], [ -128.908455380000078, 69.648505155634737 ], [ -128.206955380000096, 69.916805155634748 ], [ -128.345755380000071, 70.118505155634736 ], [ -127.431555380000091, 70.137705155634748 ], [ -128.081455380000079, 70.307705155634736 ], [ -127.911155380000096, 70.370605155634749 ], [ -128.23045538000008, 70.346405155634741 ], [ -127.862355380000096, 70.532605155634755 ], [ -127.071155380000093, 70.229805155634736 ], [ -126.571755380000099, 69.686705155634755 ], [ -125.525455380000096, 69.327205155634758 ], [ -125.118255380000093, 69.436905155634761 ], [ -125.596855380000093, 69.431005155634736 ], [ -125.139955380000089, 69.485305155634748 ], [ -125.482655380000097, 69.596005155634757 ], [ -125.371055380000087, 69.670805155634739 ], [ -124.819155380000097, 69.70570515563476 ], [ -125.260655380000088, 69.784005155634745 ], [ -125.204755380000094, 69.832905155634748 ], [ -124.600455380000085, 69.968305155634752 ], [ -125.172755380000098, 69.99190515563474 ], [ -124.447955380000096, 70.02560515563475 ], [ -124.722555380000088, 70.107605155634744 ], [ -124.517055380000087, 70.191205155634762 ], [ -124.625555380000094, 70.130205155634755 ], [ -124.312555380000092, 70.02560515563475 ], [ -124.481555380000088, 69.730305155634753 ], [ -124.030455380000092, 69.675505155634752 ], [ -124.498555380000099, 69.397005155634744 ], [ -124.307855380000092, 69.34010515563476 ], [ -123.134355380000088, 69.490105155634737 ], [ -123.008955380000089, 69.791705155634745 ], [ -121.859355380000096, 69.80870515563474 ], [ -117.082155380000088, 68.892705155634744 ], [ -115.939355380000094, 68.810205155634762 ], [ -116.313155380000097, 68.955205155634744 ], [ -115.511855380000085, 68.963205155634753 ], [ -113.877655380000093, 68.405505155634742 ], [ -114.022555380000085, 68.245905155634759 ], [ -115.149555380000095, 68.185805155634753 ], [ -115.223355380000086, 68.065505155634739 ], [ -115.09075538000009, 68.009105155634742 ], [ -115.574255380000096, 67.919205155634742 ], [ -115.038555380000091, 67.817105155634735 ], [ -113.831755380000089, 67.699605155634757 ], [ -111.842755380000085, 67.680205155634738 ], [ -110.04325538000009, 68.011805155634747 ], [ -109.626455380000095, 67.699205155634743 ], [ -109.013855380000095, 67.723005155634738 ], [ -108.789855380000091, 67.359305155634743 ], [ -108.60745538000009, 67.619405155634738 ], [ -108.443955380000091, 67.349705155634737 ], [ -107.967755380000085, 67.268605155634745 ], [ -107.913755380000097, 67.050305155634746 ], [ -108.559855380000087, 67.10950515563475 ], [ -107.215355380000091, 66.343005155634742 ], [ -107.715955380000096, 66.72680515563475 ], [ -107.71875538000009, 66.981205155634754 ], [ -107.54025538000009, 67.029005155634749 ], [ -107.539555380000095, 66.836505155634754 ], [ -107.376555380000099, 66.815905155634752 ], [ -107.406055380000097, 66.953105155634759 ], [ -107.055355380000094, 66.837405155634755 ], [ -107.988255380000098, 67.793905155634761 ], [ -107.632655380000088, 67.922405155634735 ], [ -107.630555380000089, 68.047905155634751 ], [ -106.381655380000097, 68.180705155634755 ], [ -106.372255380000098, 68.343005155634742 ], [ -105.698455380000098, 68.42770515563474 ], [ -105.612955380000088, 68.632905155634759 ], [ -106.402355380000088, 68.546605155634737 ], [ -106.511455380000086, 68.298305155634736 ], [ -106.722255380000092, 68.403305155634754 ], [ -107.859955380000088, 68.307405155634754 ], [ -107.614655380000087, 68.165605155634736 ], [ -108.784755380000092, 68.254705155634738 ], [ -108.292755380000088, 68.607605155634744 ], [ -106.102855380000094, 68.933205155634752 ], [ -105.430455380000097, 68.737105155634751 ], [ -105.458155380000093, 68.640905155634741 ], [ -105.270455380000087, 68.482405155634737 ], [ -105.483555380000098, 68.406205155634737 ], [ -104.833455380000089, 68.333505155634739 ], [ -104.472755380000095, 68.046405155634758 ], [ -103.407455380000087, 68.161605155634746 ], [ -102.703255380000087, 67.79500515563474 ], [ -101.675255380000095, 67.680305155634741 ], [ -100.260055380000097, 67.855805155634741 ], [ -98.922555380000091, 67.703105155634759 ], [ -98.37085538000008, 67.800705155634759 ], [ -98.7524553800001, 68.001905155634759 ], [ -98.607055380000105, 68.10380515563476 ], [ -98.189255380000105, 67.780205155634761 ], [ -97.262455380000091, 67.625005155634753 ], [ -97.0315553800001, 67.784005155634745 ], [ -97.236355380000106, 67.729205155634745 ], [ -97.225755380000095, 67.940505155634739 ], [ -98.003055380000092, 67.998605155634735 ], [ -98.135055380000097, 67.852305155634738 ], [ -98.704555380000102, 68.385705155634739 ], [ -98.057655380000085, 68.328205155634762 ], [ -97.866955380000093, 68.554905155634756 ], [ -97.349655380000087, 68.495805155634756 ], [ -96.983955380000083, 68.265605155634759 ], [ -96.417355380000089, 68.311605155634751 ], [ -96.779655380000094, 68.005205155634755 ], [ -95.935455380000093, 68.30500515563476 ], [ -96.22015538000008, 67.836005155634737 ], [ -96.137055380000106, 67.663705155634759 ], [ -96.331255380000101, 67.708705155634746 ], [ -96.475955380000102, 67.49620515563474 ], [ -96.144455380000096, 67.469805155634745 ], [ -96.286555380000095, 67.28160515563475 ], [ -96.136355380000083, 67.239705155634752 ], [ -95.545355380000103, 67.369705155634747 ], [ -95.842755380000085, 67.176005155634741 ], [ -95.374155380000104, 67.159305155634755 ], [ -95.374555380000089, 66.99650515563475 ], [ -96.448055380000085, 67.086105155634741 ], [ -95.849555380000083, 66.706705155634737 ], [ -95.800355380000099, 66.457505155634735 ], [ -95.644555380000099, 66.726905155634753 ], [ -96.067855380000083, 66.954505155634749 ], [ -95.23245538000009, 66.974405155634756 ], [ -95.33435538000009, 67.174905155634761 ], [ -95.193855380000088, 67.31210515563474 ], [ -95.693855380000088, 67.73590515563474 ], [ -95.460355380000095, 68.03960515563476 ], [ -94.780655380000098, 68.058105155634749 ], [ -93.622255380000098, 68.565705155634745 ], [ -93.762255380000084, 68.713505155634735 ], [ -93.721555380000098, 68.979305155634748 ], [ -94.522955380000099, 68.752605155634754 ], [ -94.607055380000105, 68.977305155634738 ], [ -94.091955380000087, 69.13660515563474 ], [ -94.3286553800001, 69.178805155634748 ], [ -94.290855380000096, 69.340805155634754 ], [ -93.586755380000085, 69.432405155634754 ], [ -93.798955380000081, 69.188705155634736 ], [ -93.383655380000079, 69.385605155634735 ], [ -93.70505538000009, 69.526305155634745 ], [ -94.371555380000103, 69.477405155634742 ], [ -94.680455380000097, 69.684905155634752 ], [ -94.898355380000083, 69.569305155634751 ], [ -95.831755380000089, 69.768305155634735 ], [ -96.539955380000094, 70.147305155634754 ], [ -96.54665538000009, 70.355805155634741 ], [ -96.304255380000086, 70.552505155634762 ], [ -95.82375538000008, 70.553905155634752 ], [ -96.045055380000093, 70.626605155634749 ], [ -95.832355380000081, 70.729405155634751 ], [ -96.243755380000096, 70.647605155634736 ], [ -96.594155380000103, 70.799605155634751 ], [ -96.337855380000093, 71.083905155634753 ], [ -96.509655380000083, 71.108205155634735 ], [ -96.380755380000096, 71.155705155634749 ], [ -96.449155380000093, 71.278905155634746 ], [ -96.067055380000085, 71.419105155634739 ], [ -95.598655380000082, 71.303105155634753 ], [ -95.293355380000094, 71.522205155634751 ], [ -95.845555380000093, 71.616205155634745 ], [ -94.684755380000098, 71.835105155634736 ], [ -95.22015538000008, 71.910205155634756 ], [ -94.866955380000093, 71.970605155634743 ], [ -94.501555380000099, 71.958405155634736 ], [ -94.636055380000101, 71.751005155634758 ], [ -94.405055380000078, 71.790105155634748 ], [ -94.396555380000081, 71.67000515563474 ], [ -94.223755380000085, 71.791505155634738 ], [ -93.754255380000103, 71.741405155634752 ], [ -93.78695538000008, 71.637005155634753 ], [ -92.992055380000096, 71.322105155634759 ], [ -92.866655380000083, 70.889305155634744 ], [ -93.036855380000105, 70.86520515563474 ], [ -92.207555380000088, 70.609605155634753 ], [ -92.267955380000103, 70.495005155634757 ], [ -92.053755380000098, 70.316205155634762 ], [ -91.755355380000083, 70.363405155634737 ], [ -91.530255380000085, 70.190605155634742 ], [ -92.343155380000098, 70.246105155634737 ], [ -92.544555380000105, 70.074505155634753 ], [ -91.992255380000103, 70.042805155634753 ], [ -92.755055380000101, 69.720005155634752 ], [ -91.866855380000089, 69.511105155634752 ], [ -91.388155380000086, 69.671905155634747 ], [ -91.250155380000081, 69.634805155634737 ], [ -91.527955380000094, 69.53470515563474 ], [ -90.389555380000104, 69.469005155634747 ], [ -90.678455380000088, 69.451605155634738 ], [ -90.877955380000088, 69.269405155634743 ], [ -91.392755380000096, 69.352405155634742 ], [ -90.472555380000102, 68.886305155634759 ], [ -90.603955380000087, 68.484405155634747 ], [ -90.274355380000088, 68.259405155634752 ], [ -89.851655380000096, 68.530705155634749 ], [ -89.906355380000093, 68.694605155634761 ], [ -89.714855380000103, 68.664505155634757 ], [ -89.756255380000084, 68.987405155634761 ], [ -89.260955380000098, 69.291505155634738 ], [ -88.099655380000087, 68.830905155634738 ], [ -87.858555380000098, 68.314505155634762 ], [ -88.420455380000078, 68.292705155634749 ], [ -88.30665538000008, 68.160905155634751 ], [ -88.398155380000105, 67.988105155634756 ], [ -88.162055380000083, 67.688005155634741 ], [ -87.429055380000079, 67.285105155634753 ], [ -87.539655380000085, 67.144005155634758 ], [ -86.873555380000084, 67.447305155634737 ], [ -86.589755380000099, 67.389905155634736 ], [ -86.541655380000094, 67.709705155634751 ], [ -85.842655380000082, 68.228605155634753 ], [ -85.721255380000088, 68.723205155634744 ], [ -84.809355380000085, 68.756405155634738 ], [ -84.822755380000103, 68.817305155634742 ], [ -85.202155380000079, 68.870605155634749 ], [ -84.893355380000088, 68.964305155634761 ], [ -84.977855380000079, 69.03360515563476 ], [ -84.612455380000085, 69.021805155634738 ], [ -85.424355380000094, 69.215805155634754 ], [ -85.548755380000102, 69.330605155634757 ], [ -85.393255380000085, 69.322505155634744 ], [ -85.515455380000105, 69.423305155634736 ], [ -85.409155380000101, 69.443805155634735 ], [ -85.557755380000089, 69.503505155634755 ], [ -85.426055380000093, 69.590905155634758 ], [ -85.569155380000097, 69.695505155634734 ], [ -85.356455380000085, 69.812505155634753 ], [ -85.584955380000082, 69.858205155634735 ], [ -84.415355380000079, 69.861305155634753 ], [ -83.59945538000008, 69.703105155634759 ], [ -82.311255380000091, 69.685605155634747 ], [ -82.647055380000097, 69.645405155634748 ], [ -82.596255380000088, 69.525805155634757 ], [ -83.151155380000091, 69.525105155634762 ], [ -81.279455380000087, 69.108505155634745 ], [ -82.097055380000086, 68.900105155634762 ], [ -81.393755380000101, 68.880205155634755 ], [ -81.321955380000105, 68.644005155634758 ], [ -82.697455380000093, 68.442805155634758 ], [ -82.076255380000106, 68.367305155634753 ], [ -82.543355380000094, 68.331205155634748 ], [ -82.268555380000095, 68.270505155634751 ], [ -82.281755380000078, 68.15630515563474 ], [ -82.003955380000093, 68.21140515563475 ], [ -82.182655380000085, 68.060205155634762 ], [ -82.128455380000105, 67.92230515563476 ], [ -81.257255380000089, 67.487905155634749 ], [ -81.552455380000083, 67.020005155634735 ], [ -81.986955380000097, 66.981605155634739 ], [ -82.1642553800001, 66.736405155634756 ], [ -83.480555380000084, 66.368605155634739 ], [ -84.043655380000104, 66.647405155634758 ], [ -83.90025538000009, 66.820305155634756 ], [ -83.979855380000089, 66.932105155634744 ], [ -84.188355380000104, 66.717705155634761 ], [ -84.737755380000095, 67.038205155634742 ], [ -85.205855380000088, 66.877705155634757 ], [ -84.622155380000095, 66.932905155634742 ], [ -84.722055380000086, 66.892005155634749 ], [ -84.175355380000099, 66.668705155634754 ], [ -83.748255380000103, 66.243605155634739 ], [ -83.824655380000081, 66.162605155634751 ], [ -84.53865538000008, 66.416705155634745 ], [ -84.645655380000079, 66.346605155634748 ], [ -84.387655380000098, 66.188305155634751 ], [ -85.275055380000083, 66.268405155634738 ], [ -85.557555380000082, 66.586805155634735 ], [ -86.76585538000009, 66.534505155634761 ], [ -86.708255380000082, 66.445305155634756 ], [ -86.846955380000082, 66.447105155634759 ], [ -86.666055380000103, 66.328505155634744 ], [ -85.881655380000097, 66.166505155634738 ], [ -87.114355380000092, 65.382005155634758 ], [ -87.579355380000095, 65.317205155634738 ], [ -89.803055380000103, 65.980405155634756 ], [ -90.026755380000083, 65.93370515563474 ], [ -89.752555380000103, 65.87490515563475 ], [ -89.861055380000096, 65.829105155634736 ], [ -90.959255380000087, 65.917805155634753 ], [ -89.871055380000087, 65.757905155634759 ], [ -89.090255380000087, 65.334505155634744 ], [ -86.948655380000105, 65.137105155634757 ], [ -88.041455380000087, 64.17030515563475 ], [ -88.738355380000087, 63.97820515563474 ], [ -89.209855380000079, 64.062905155634738 ], [ -89.038455380000102, 63.945205155634753 ], [ -89.53865538000008, 64.058205155634752 ], [ -89.531855380000081, 63.940305155634761 ], [ -90.017755380000096, 64.142005155634749 ], [ -89.800455380000102, 63.945805155634744 ], [ -90.21075538000008, 63.987205155634754 ], [ -90.001755380000105, 63.797805155634748 ], [ -90.200555380000083, 63.616605155634758 ], [ -90.6428553800001, 63.692705155634755 ], [ -90.555255380000091, 63.598005155634738 ], [ -90.809255380000081, 63.568905155634738 ], [ -91.71275538000009, 63.758005155634734 ], [ -92.723655380000082, 63.824805155634735 ], [ -93.75355538000008, 64.137705155634748 ], [ -93.593655380000087, 63.971805155634755 ], [ -93.978455380000099, 63.915505155634762 ], [ -92.151855380000086, 63.676505155634757 ], [ -92.505955380000103, 63.507405155634743 ], [ -91.735955380000092, 63.689105155634749 ], [ -91.382755380000106, 63.469205155634754 ], [ -90.715655380000101, 63.32470515563476 ], [ -90.664455380000078, 63.036505155634742 ], [ -91.429355380000089, 62.781005155634759 ], [ -92.458355380000086, 62.809105155634754 ], [ -91.86945538000009, 62.589705155634746 ], [ -92.597455380000099, 62.573805155634759 ], [ -92.511655380000093, 62.418005155634759 ], [ -92.161055380000079, 62.361405155634756 ], [ -92.701155380000102, 62.440105155634754 ], [ -92.590655380000101, 62.16430515563475 ], [ -92.765455380000105, 62.265905155634741 ], [ -93.046055380000098, 62.306205155634743 ], [ -92.800555380000105, 62.186705155634755 ], [ -93.255655380000093, 62.147505155634761 ], [ -92.97445538000008, 62.07640515563476 ], [ -93.339755380000099, 62.020205155634741 ], [ -93.350255380000078, 61.879805155634742 ], [ -93.628255380000098, 61.913705155634759 ], [ -93.246655380000078, 61.750405155634738 ], [ -94.016855380000095, 61.398405155634762 ], [ -93.852355380000091, 61.33670515563476 ], [ -94.059755380000098, 61.265205155634746 ], [ -94.010555380000085, 61.077805155634749 ], [ -94.527055380000093, 60.541405155634735 ], [ -95.015655380000084, 60.520705155634758 ], [ -94.643455380000091, 60.420405155634754 ], [ -94.800455380000102, 60.000605155634744 ], [ -139.047755380000098, 59.997505155634755 ], [ -137.590855380000107, 59.238605155634744 ], [ -137.49585538000008, 58.911905155634756 ], [ -137.056855380000087, 59.069205155634748 ] ], [ [ -126.896555380000095, 60.833805155634749 ], [ -126.944055380000094, 60.971605155634748 ], [ -126.898955380000089, 60.836205155634744 ], [ -126.896555380000095, 60.833805155634749 ] ], [ [ -127.092155380000094, 61.074605155634757 ], [ -127.049455380000097, 61.092105155634741 ], [ -127.094555380000088, 61.077005155634751 ], [ -127.092155380000094, 61.074605155634757 ] ], [ [ -127.272755380000092, 61.496105155634737 ], [ -127.245055380000096, 61.513505155634746 ], [ -127.275155380000086, 61.498405155634757 ], [ -127.272755380000092, 61.496105155634737 ] ], [ [ -130.94535538000008, 64.220405155634737 ], [ -130.962855380000093, 64.28300515563474 ], [ -130.947755380000103, 64.222805155634759 ], [ -130.94535538000008, 64.220405155634737 ] ], [ [ -133.760055380000097, 66.703905155634757 ], [ -133.777455380000106, 66.811705155634755 ], [ -133.762455380000091, 66.706305155634752 ], [ -133.760055380000097, 66.703905155634757 ] ] ], [ [ [ -108.092155380000094, 71.999105155634751 ], [ -108.123455380000095, 71.995205155634736 ], [ -108.160755380000097, 72.057705155634736 ], [ -108.10915538000009, 72.048805155634753 ], [ -108.092155380000094, 71.999105155634751 ] ] ], [ [ [ -55.796155380000101, 72.070505155634734 ], [ -55.91365538000008, 72.073905155634762 ], [ -55.938655380000085, 72.079405155634745 ], [ -55.725255380000078, 72.126105155634761 ], [ -55.796155380000101, 72.070505155634734 ] ] ], [ [ [ -74.609655380000106, 72.157005155634735 ], [ -74.645955380000089, 72.147205155634751 ], [ -74.705755380000085, 72.151305155634745 ], [ -74.673455380000092, 72.171905155634747 ], [ -74.609655380000106, 72.157005155634735 ] ] ], [ [ [ -80.564055380000099, 72.15630515563474 ], [ -80.618555380000089, 72.134305155634749 ], [ -80.682655380000085, 72.169705155634759 ], [ -80.581755380000089, 72.181305155634746 ], [ -80.564055380000099, 72.15630515563474 ] ] ], [ [ [ -74.735855380000089, 72.188605155634761 ], [ -74.818455380000103, 72.169605155634756 ], [ -74.901755380000083, 72.189405155634759 ], [ -74.694655380000086, 72.220905155634753 ], [ -74.735855380000089, 72.188605155634761 ] ] ], [ [ [ -85.724955380000097, 72.214405155634736 ], [ -85.754455380000081, 72.206305155634752 ], [ -85.798955380000081, 72.208605155634743 ], [ -85.742555380000084, 72.243805155634746 ], [ -85.724955380000097, 72.214405155634736 ] ] ], [ [ [ -85.9185553800001, 72.234305155634743 ], [ -85.958055380000104, 72.233205155634735 ], [ -86.091255380000092, 72.286505155634742 ], [ -85.942455380000098, 72.301605155634761 ], [ -85.9185553800001, 72.234305155634743 ] ] ], [ [ [ -78.9125553800001, 72.31210515563474 ], [ -78.952655380000095, 72.289805155634738 ], [ -78.986955380000097, 72.32270515563475 ], [ -78.965155380000084, 72.332005155634747 ], [ -78.9125553800001, 72.31210515563474 ] ] ], [ [ [ -84.984955380000088, 72.34610515563476 ], [ -85.030455380000092, 72.345205155634758 ], [ -85.05665538000008, 72.356105155634751 ], [ -84.934655380000095, 72.370905155634759 ], [ -84.984955380000088, 72.34610515563476 ] ] ], [ [ [ -55.374155380000104, 72.15970515563474 ], [ -55.688955380000095, 72.198605155634752 ], [ -55.015355380000102, 72.377205155634741 ], [ -55.029755380000097, 72.294405155634749 ], [ -55.374155380000104, 72.15970515563474 ] ] ], [ [ [ -78.853855380000084, 72.370105155634761 ], [ -78.970555380000093, 72.354905155634739 ], [ -79.123955380000098, 72.424505155634748 ], [ -78.7173553800001, 72.389505155634751 ], [ -78.853855380000084, 72.370105155634761 ] ] ], [ [ [ -79.499355380000083, 72.372305155634749 ], [ -79.597155380000089, 72.383605155634754 ], [ -79.672655380000094, 72.440705155634745 ], [ -79.438455380000079, 72.426805155634739 ], [ -79.499355380000083, 72.372305155634749 ] ] ], [ [ [ -80.027455380000106, 72.43000515563476 ], [ -80.068355380000099, 72.428205155634757 ], [ -80.137955380000079, 72.514205155634741 ], [ -79.961255380000097, 72.473905155634739 ], [ -80.027455380000106, 72.43000515563476 ] ] ], [ [ [ -108.399555380000095, 72.565905155634752 ], [ -108.476655380000096, 72.559205155634757 ], [ -108.483955380000097, 72.569205155634748 ], [ -108.445355380000095, 72.580505155634754 ], [ -108.399555380000095, 72.565905155634752 ] ] ], [ [ [ -110.431355380000099, 72.57470515563476 ], [ -110.481355380000096, 72.563905155634743 ], [ -110.509155380000095, 72.568805155634735 ], [ -110.500955380000093, 72.58010515563474 ], [ -110.431355380000099, 72.57470515563476 ] ] ], [ [ [ -55.065055380000103, 72.52530515563474 ], [ -55.213355380000081, 72.526905155634736 ], [ -55.383355380000097, 72.54530515563475 ], [ -55.0315553800001, 72.589305155634761 ], [ -55.065055380000103, 72.52530515563474 ] ] ], [ [ [ -55.650355380000093, 72.582505155634735 ], [ -55.845855380000103, 72.550005155634736 ], [ -55.9947553800001, 72.557505155634757 ], [ -55.944255380000101, 72.593305155634752 ], [ -55.650355380000093, 72.582505155634735 ] ] ], [ [ [ -110.321955380000091, 72.598805155634736 ], [ -110.381555380000094, 72.592505155634754 ], [ -110.430255380000091, 72.608305155634739 ], [ -110.381555380000094, 72.620805155634756 ], [ -110.321955380000091, 72.598805155634736 ] ] ], [ [ [ -108.464855380000088, 72.607205155634759 ], [ -108.526355380000098, 72.60320515563474 ], [ -108.561455380000098, 72.627205155634741 ], [ -108.467755380000085, 72.635105155634747 ], [ -108.464855380000088, 72.607205155634759 ] ] ], [ [ [ -110.214655380000096, 72.626105155634761 ], [ -110.263455380000096, 72.620705155634752 ], [ -110.291255380000095, 72.639805155634761 ], [ -110.223155380000094, 72.64320515563476 ], [ -110.214655380000096, 72.626105155634761 ] ] ], [ [ [ -55.131955380000079, 72.600805155634745 ], [ -55.262255380000084, 72.597805155634759 ], [ -54.946655380000095, 72.672205155634757 ], [ -55.051155380000097, 72.618605155634739 ], [ -55.131955380000079, 72.600805155634745 ] ] ], [ [ [ -111.035055380000088, 72.671605155634737 ], [ -111.085155380000089, 72.667705155634749 ], [ -111.102355380000091, 72.680505155634748 ], [ -111.032955380000089, 72.689505155634762 ], [ -111.035055380000088, 72.671605155634737 ] ] ], [ [ [ -101.027955380000094, 72.726305155634762 ], [ -101.084555380000097, 72.722905155634734 ], [ -101.126555380000099, 72.744005155634753 ], [ -101.053055380000089, 72.74960515563474 ], [ -101.027955380000094, 72.726305155634762 ] ] ], [ [ [ -54.832555380000088, 72.695505155634734 ], [ -55.032255380000095, 72.695205155634753 ], [ -55.062555380000106, 72.718305155634752 ], [ -54.87255538000008, 72.756905155634755 ], [ -54.832555380000088, 72.695505155634734 ] ] ], [ [ [ -55.704155380000088, 72.715005155634756 ], [ -56.036655380000099, 72.65030515563474 ], [ -56.22615538000008, 72.706105155634745 ], [ -55.639455380000101, 72.777805155634738 ], [ -55.704155380000088, 72.715005155634756 ] ] ], [ [ [ -109.167355380000089, 72.788405155634749 ], [ -109.20975538000009, 72.78190515563476 ], [ -109.323455380000098, 72.805805155634758 ], [ -109.269255380000089, 72.820005155634746 ], [ -109.167355380000089, 72.788405155634749 ] ] ], [ [ [ -100.478255380000093, 72.784505155634761 ], [ -100.638155380000086, 72.793905155634761 ], [ -100.649555380000095, 72.812605155634756 ], [ -100.569455380000093, 72.81640515563474 ], [ -100.478255380000093, 72.784505155634761 ] ] ], [ [ [ -55.961955380000092, 72.780005155634754 ], [ -55.946655380000095, 72.823605155634752 ], [ -55.801655380000085, 72.792505155634743 ], [ -55.816155380000083, 72.78470515563474 ], [ -55.961955380000092, 72.780005155634754 ] ] ], [ [ [ -55.285555380000091, 72.681105155634739 ], [ -55.532755380000083, 72.551605155634761 ], [ -55.481455380000085, 72.609105155634737 ], [ -55.84945538000008, 72.611405155634756 ], [ -54.964755380000099, 72.811405155634745 ], [ -55.285555380000091, 72.681105155634739 ] ] ], [ [ [ -95.751555380000099, 72.840205155634735 ], [ -95.773155380000105, 72.809405155634735 ], [ -95.854955380000092, 72.826005155634746 ], [ -95.822555380000097, 72.86550515563475 ], [ -95.751555380000099, 72.840205155634735 ] ] ], [ [ [ -23.608655380000101, 72.835005155634761 ], [ -23.143955380000079, 72.836105155634741 ], [ -21.932555380000082, 72.399105155634757 ], [ -22.756955380000079, 72.44140515563474 ], [ -22.134155380000095, 72.271605155634759 ], [ -22.160355380000084, 72.133605155634754 ], [ -22.562855380000087, 72.13890515563476 ], [ -24.347555380000102, 72.583605155634743 ], [ -24.484455380000099, 72.82580515563474 ], [ -23.608655380000101, 72.835005155634761 ] ] ], [ [ [ -96.762055380000106, 72.744405155634738 ], [ -96.87715538000009, 72.741705155634762 ], [ -96.954455380000098, 72.761405155634762 ], [ -96.712955380000096, 72.88520515563475 ], [ -96.622155380000095, 72.790205155634752 ], [ -96.762055380000106, 72.744405155634738 ] ] ], [ [ [ -55.586455380000103, 72.890305155634749 ], [ -55.514455380000101, 72.88860515563475 ], [ -55.352555380000098, 72.852205155634735 ], [ -55.536655380000099, 72.822505155634744 ], [ -55.586455380000103, 72.890305155634749 ] ] ], [ [ [ -24.896655380000084, 72.777805155634738 ], [ -25.214755380000099, 72.822805155634754 ], [ -25.210855380000083, 72.851605155634743 ], [ -24.771455380000106, 72.910805155634748 ], [ -24.896655380000084, 72.777805155634738 ] ] ], [ [ [ -100.788655380000094, 72.901405155634748 ], [ -100.839455380000089, 72.896605155634759 ], [ -100.870055380000096, 72.90090515563476 ], [ -100.76455538000009, 72.917605155634746 ], [ -100.788655380000094, 72.901405155634748 ] ] ], [ [ [ -95.765955380000094, 72.896605155634759 ], [ -95.843355380000105, 72.927005155634745 ], [ -95.852255380000088, 72.980005155634743 ], [ -95.805155380000087, 72.99990515563475 ], [ -95.765955380000094, 72.896605155634759 ] ] ], [ [ [ -55.075555380000083, 72.965505155634744 ], [ -55.305855380000082, 72.918305155634741 ], [ -55.689155380000102, 72.993605155634739 ], [ -55.518655380000098, 73.045805155634739 ], [ -55.075555380000083, 72.965505155634744 ] ] ], [ [ [ -55.753355380000102, 73.011405155634762 ], [ -55.862555380000089, 73.016105155634747 ], [ -55.889755380000082, 73.025805155634757 ], [ -55.693955380000091, 73.032205155634742 ], [ -55.753355380000102, 73.011405155634762 ] ] ], [ [ [ -22.549155380000087, 73.007205155634736 ], [ -21.906655380000103, 72.92030515563475 ], [ -22.191955380000081, 72.805805155634758 ], [ -21.865855380000085, 72.713905155634748 ], [ -22.529455380000087, 72.705305155634747 ], [ -23.132255380000089, 72.870505155634746 ], [ -24.588955380000101, 72.957505155634735 ], [ -22.549155380000087, 73.007205155634736 ] ] ], [ [ [ -21.353355380000096, 73.091405155634746 ], [ -21.462855380000093, 73.118605155634739 ], [ -21.173055380000079, 73.134405155634752 ], [ -21.202255380000082, 73.11550515563475 ], [ -21.353355380000096, 73.091405155634746 ] ] ], [ [ [ -95.751955380000084, 73.076205155634753 ], [ -95.846255380000088, 73.082605155634738 ], [ -95.894855380000081, 73.109705155634757 ], [ -95.773155380000105, 73.144405155634743 ], [ -95.751955380000084, 73.076205155634753 ] ] ], [ [ [ -96.777455380000106, 73.165005155634745 ], [ -96.566755380000103, 73.059205155634757 ], [ -96.645055380000088, 72.96280515563474 ], [ -97.110755380000086, 73.047205155634757 ], [ -96.777455380000106, 73.165005155634745 ] ] ], [ [ [ -56.201955380000101, 73.155505155634742 ], [ -56.293655380000104, 73.158905155634741 ], [ -56.331655380000086, 73.172205155634757 ], [ -56.273355380000083, 73.218905155634744 ], [ -56.201955380000101, 73.155505155634742 ] ] ], [ [ [ -56.097855380000084, 73.08640515563475 ], [ -56.01725538000008, 73.228605155634753 ], [ -55.815555380000092, 73.224705155634737 ], [ -55.971455380000094, 73.121905155634735 ], [ -56.097855380000084, 73.08640515563475 ] ] ], [ [ [ -96.926655380000085, 73.230205155634749 ], [ -97.021155380000096, 73.227705155634752 ], [ -97.102155380000085, 73.259305155634749 ], [ -96.880455380000086, 73.241005155634738 ], [ -96.926655380000085, 73.230205155634749 ] ] ], [ [ [ -97.159955380000099, 73.292805155634753 ], [ -97.230955380000097, 73.290305155634755 ], [ -97.255655380000093, 73.296905155634747 ], [ -97.186655380000104, 73.314805155634744 ], [ -97.159955380000099, 73.292805155634753 ] ] ], [ [ [ -55.686455380000098, 73.282805155634762 ], [ -55.802855380000096, 73.279405155634734 ], [ -55.871355380000097, 73.328505155634744 ], [ -55.654155380000105, 73.356405155634761 ], [ -55.686455380000098, 73.282805155634762 ] ] ], [ [ [ -113.957655380000091, 72.804605155634746 ], [ -114.537155380000087, 72.588805155634745 ], [ -113.429555380000096, 72.684505155634739 ], [ -113.555455380000097, 72.619405155634738 ], [ -113.356855380000098, 72.683805155634744 ], [ -113.548155380000097, 72.759605155634759 ], [ -113.241255380000098, 72.945705155634741 ], [ -112.735555380000093, 72.975005155634747 ], [ -111.171555380000086, 72.698205155634739 ], [ -111.457955380000087, 72.434505155634739 ], [ -112.030655380000098, 72.27700515563474 ], [ -111.352855380000094, 72.315405155634735 ], [ -111.526455380000087, 72.35980515563476 ], [ -111.241655380000097, 72.462505155634759 ], [ -111.011155380000091, 72.284305155634755 ], [ -110.664155380000096, 72.557105155634744 ], [ -110.308555380000087, 72.426905155634742 ], [ -110.42295538000009, 72.508305155634744 ], [ -109.766655380000088, 72.509005155634739 ], [ -110.169655380000094, 72.664705155634735 ], [ -109.757255380000089, 72.710405155634746 ], [ -110.633655380000093, 72.979505155634754 ], [ -109.610755380000086, 72.919405155634749 ], [ -109.569155380000097, 72.838005155634747 ], [ -108.89855538000009, 72.676705155634735 ], [ -108.993255380000093, 72.561505155634748 ], [ -108.577155380000093, 72.521005155634739 ], [ -108.63015538000009, 72.338705155634742 ], [ -108.169455380000088, 71.946705155634746 ], [ -108.261455380000086, 71.801905155634742 ], [ -107.813255380000086, 71.608905155634758 ], [ -107.251455380000095, 71.898505155634737 ], [ -107.711755380000099, 72.14260515563474 ], [ -107.789355380000089, 72.291705155634745 ], [ -107.668555380000086, 72.325505155634758 ], [ -108.168055380000098, 73.15090515563476 ], [ -107.813755380000089, 73.186405155634745 ], [ -108.057255380000086, 73.279905155634751 ], [ -107.86215538000009, 73.337005155634742 ], [ -106.454555380000087, 73.225205155634754 ], [ -105.290155380000087, 72.83210515563475 ], [ -105.442055380000099, 72.769105155634762 ], [ -104.959855380000093, 72.08670515563476 ], [ -104.280955380000094, 71.574605155634757 ], [ -104.223655380000096, 71.360305155634748 ], [ -104.411955380000094, 71.321605155634742 ], [ -104.502855380000085, 71.070205155634753 ], [ -103.536055380000093, 70.598605155634758 ], [ -102.899755380000087, 70.493205155634755 ], [ -103.065055380000089, 70.557105155634744 ], [ -102.968655380000087, 70.658505155634757 ], [ -102.167755380000088, 70.330605155634757 ], [ -101.556255380000096, 70.268605155634745 ], [ -101.631955380000093, 70.184505155634739 ], [ -101.488055380000091, 70.099605155634762 ], [ -101.000955380000093, 70.192705155634755 ], [ -100.801455380000093, 69.844305155634757 ], [ -100.881555380000094, 69.680605155634751 ], [ -101.268755380000087, 69.674205155634738 ], [ -101.385955380000098, 69.898805155634747 ], [ -101.63185538000009, 69.654005155634749 ], [ -102.205455380000089, 69.919805155634762 ], [ -102.318755380000098, 69.765805155634737 ], [ -102.611355380000091, 69.769205155634737 ], [ -102.447555380000097, 69.616405155634752 ], [ -102.580555380000092, 69.541205155634756 ], [ -103.40325538000009, 69.686705155634755 ], [ -102.958655380000096, 69.420205155634747 ], [ -103.189055380000099, 69.099705155634737 ], [ -102.276855380000086, 69.510605155634735 ], [ -101.912755380000092, 69.441905155634757 ], [ -102.119255380000098, 69.21310515563475 ], [ -101.714355380000086, 69.170205155634747 ], [ -101.744555380000094, 68.998805155634741 ], [ -102.836355380000086, 68.807905155634742 ], [ -105.023155380000091, 68.87350515563476 ], [ -105.193055380000089, 68.93710515563474 ], [ -104.873155380000085, 69.071105155634754 ], [ -106.350455380000085, 69.189205155634752 ], [ -106.278755380000092, 69.395505155634751 ], [ -106.538355380000098, 69.480505155634759 ], [ -107.289355380000089, 69.01960515563475 ], [ -108.439455380000098, 68.926505155634757 ], [ -109.043655380000089, 68.71510515563476 ], [ -113.155855380000091, 68.453505155634744 ], [ -113.005755380000096, 68.498705155634738 ], [ -113.622255380000098, 68.802805155634744 ], [ -113.532755380000097, 68.987705155634742 ], [ -113.677555380000086, 69.204805155634759 ], [ -116.283855380000091, 69.363205155634759 ], [ -117.169055380000088, 69.739605155634749 ], [ -117.311455380000098, 70.002605155634754 ], [ -115.560155380000097, 70.257305155634739 ], [ -112.564155380000088, 70.189705155634741 ], [ -111.380655380000093, 70.327205155634758 ], [ -113.903155380000086, 70.704605155634752 ], [ -117.590555380000097, 70.616205155634745 ], [ -118.345355380000086, 71.011305155634759 ], [ -115.690355380000085, 71.38890515563476 ], [ -116.026355380000098, 71.457505155634735 ], [ -115.126255380000089, 71.485505155634755 ], [ -115.729355380000086, 71.537105155634762 ], [ -117.364755380000091, 71.384805155634737 ], [ -117.56035538000009, 71.488005155634752 ], [ -117.533055380000093, 71.366605155634758 ], [ -118.023255380000094, 71.368005155634748 ], [ -118.272555380000085, 71.455205155634744 ], [ -117.635155380000086, 71.570905155634748 ], [ -118.889455380000086, 71.577605155634743 ], [ -119.092155380000094, 71.764705155634758 ], [ -118.549155380000087, 72.169005155634736 ], [ -118.065655380000095, 72.233705155634752 ], [ -118.482355380000087, 72.366405155634752 ], [ -118.376255380000089, 72.529605155634741 ], [ -117.228655380000092, 72.920205155634747 ], [ -114.449255380000096, 73.361505155634759 ], [ -113.941555380000096, 73.135405155634757 ], [ -113.957655380000091, 72.804605155634746 ] ] ], [ [ [ -55.953955380000082, 73.299105155634734 ], [ -56.110555380000079, 73.289105155634743 ], [ -56.153355380000079, 73.304105155634758 ], [ -55.830855380000088, 73.373305155634753 ], [ -55.953955380000082, 73.299105155634734 ] ] ], [ [ [ -55.531655380000103, 73.318005155634737 ], [ -55.593955380000097, 73.34410515563475 ], [ -55.32835538000009, 73.395005155634735 ], [ -55.39225538000008, 73.361605155634734 ], [ -55.531655380000103, 73.318005155634737 ] ] ], [ [ [ -24.360055380000091, 73.411905155634756 ], [ -23.210055380000085, 73.233605155634748 ], [ -23.657755380000083, 73.220305155634762 ], [ -24.247255380000098, 73.293005155634759 ], [ -24.907555380000105, 73.32440515563475 ], [ -25.010355380000078, 73.309405155634735 ], [ -22.938655380000085, 73.134705155634762 ], [ -24.403955380000099, 73.02390515563475 ], [ -25.712855380000093, 73.186405155634745 ], [ -25.243055380000101, 73.405805155634752 ], [ -24.360055380000091, 73.411905155634756 ] ] ], [ [ [ -55.80665538000008, 73.419405155634749 ], [ -56.034455380000082, 73.444105155634745 ], [ -56.055255380000091, 73.454405155634745 ], [ -55.815555380000092, 73.473605155634758 ], [ -55.80665538000008, 73.419405155634749 ] ] ], [ [ [ -55.589755380000099, 73.381105155634756 ], [ -55.751655380000102, 73.392205155634755 ], [ -55.686455380000098, 73.475805155634745 ], [ -56.115855380000085, 73.556605155634756 ], [ -55.943055380000089, 73.570305155634756 ], [ -55.470855380000103, 73.431905155634738 ], [ -55.589755380000099, 73.381105155634756 ] ] ], [ [ [ -107.818355380000085, 73.54530515563475 ], [ -107.955455380000089, 73.589405155634736 ], [ -107.548255380000086, 73.597505155634749 ], [ -107.58475538000009, 73.579805155634759 ], [ -107.818355380000085, 73.54530515563475 ] ] ], [ [ [ -124.103955380000087, 73.566105155634759 ], [ -124.295455380000092, 73.552505155634762 ], [ -124.325255380000087, 73.626405155634743 ], [ -124.252055380000087, 73.634805155634737 ], [ -124.103955380000087, 73.566105155634759 ] ] ], [ [ [ -56.410355380000084, 73.541905155634751 ], [ -56.55865538000009, 73.556405155634749 ], [ -56.188655380000085, 73.627505155634751 ], [ -56.327555380000092, 73.556405155634749 ], [ -56.410355380000084, 73.541905155634751 ] ] ], [ [ [ -124.555855380000096, 73.664405155634753 ], [ -124.672855380000087, 73.680305155634741 ], [ -124.689355380000094, 73.693205155634743 ], [ -124.558955380000086, 73.692605155634752 ], [ -124.555855380000096, 73.664405155634753 ] ] ], [ [ [ -56.344155380000103, 73.672505155634738 ], [ -56.833355380000086, 73.611405155634756 ], [ -56.965555380000097, 73.65800515563474 ], [ -56.443355380000099, 73.705305155634747 ], [ -56.344155380000103, 73.672505155634738 ] ] ], [ [ [ -79.437155380000092, 73.64890515563475 ], [ -77.444355380000104, 73.547205155634757 ], [ -76.04295538000008, 72.900105155634762 ], [ -79.491555380000079, 72.763205155634736 ], [ -80.198155380000088, 73.014105155634738 ], [ -80.189855380000097, 73.22080515563475 ], [ -80.899855380000105, 73.401005155634735 ], [ -80.734855380000084, 73.48620515563475 ], [ -80.908955380000094, 73.571705155634746 ], [ -80.771355380000102, 73.75590515563475 ], [ -79.437155380000092, 73.64890515563475 ] ] ], [ [ [ -105.166855380000086, 72.87460515563474 ], [ -106.147055380000097, 73.291805155634748 ], [ -106.987555380000089, 73.498605155634735 ], [ -106.55865538000009, 73.683205155634752 ], [ -105.320255380000091, 73.767105155634752 ], [ -104.433755380000093, 73.56870515563476 ], [ -104.506355380000088, 73.320405155634759 ], [ -105.166855380000086, 72.87460515563474 ] ] ], [ [ [ -56.368655380000092, 73.766105155634747 ], [ -56.26555538000008, 73.764705155634758 ], [ -56.205555380000078, 73.718305155634752 ], [ -56.436955380000086, 73.768005155634754 ], [ -56.368655380000092, 73.766105155634747 ] ] ], [ [ [ -98.935655380000085, 73.805305155634741 ], [ -99.081655380000086, 73.800905155634737 ], [ -99.146955380000094, 73.81840515563475 ], [ -99.001755380000091, 73.826205155634753 ], [ -98.935655380000085, 73.805305155634741 ] ] ], [ [ [ -86.037355380000093, 73.318505155634753 ], [ -86.743755380000096, 72.87150515563475 ], [ -86.739155380000085, 72.703605155634747 ], [ -86.299555380000101, 72.41600515563475 ], [ -86.443055380000089, 72.08670515563476 ], [ -86.046155380000101, 71.77760515563476 ], [ -84.855555380000084, 71.299905155634761 ], [ -86.80235538000008, 70.992405155634756 ], [ -84.982655380000097, 71.195605155634738 ], [ -84.978355380000096, 70.935305155634737 ], [ -84.783855380000091, 70.958905155634753 ], [ -84.780655380000098, 71.351705155634747 ], [ -84.556855380000087, 71.495105155634761 ], [ -84.621255380000093, 71.679005155634755 ], [ -85.32065538000009, 71.685505155634743 ], [ -86.034055380000098, 72.019705155634753 ], [ -85.52325538000008, 72.079005155634761 ], [ -85.451755380000094, 72.266705155634739 ], [ -84.184655380000095, 72.001405155634743 ], [ -84.954255380000092, 72.302605155634737 ], [ -84.437755380000084, 72.410805155634748 ], [ -85.575755380000089, 72.466005155634761 ], [ -85.511455380000086, 72.574805155634735 ], [ -85.756155380000081, 72.654005155634749 ], [ -85.691755380000103, 72.903105155634748 ], [ -83.956355380000105, 72.760805155634742 ], [ -85.528455380000082, 73.068505155634753 ], [ -83.664055380000093, 73.002805155634761 ], [ -84.738355380000087, 73.132005155634758 ], [ -85.091255380000092, 73.311305155634741 ], [ -84.347355380000096, 73.234005155634762 ], [ -84.591055380000086, 73.411805155634752 ], [ -84.0863553800001, 73.483705155634752 ], [ -83.64085538000009, 73.316005155634755 ], [ -83.948855380000083, 73.525205155634737 ], [ -82.860855380000089, 73.726605155634743 ], [ -81.610555380000079, 73.731105155634751 ], [ -81.3286553800001, 73.586105155634741 ], [ -81.167455380000092, 73.252105155634737 ], [ -80.66225538000009, 73.152905155634741 ], [ -80.662355380000093, 72.939105155634749 ], [ -80.300155380000092, 72.767805155634747 ], [ -81.337555380000083, 72.270605155634755 ], [ -80.515955380000094, 72.505305155634758 ], [ -80.99585538000008, 72.190505155634739 ], [ -80.572555380000097, 72.070205155634753 ], [ -81.032855380000086, 72.084805155634754 ], [ -80.834055380000081, 72.007905155634759 ], [ -80.983055380000081, 71.887505155634742 ], [ -80.361355380000106, 72.091005155634761 ], [ -80.500155380000081, 72.186605155634751 ], [ -80.263455380000096, 72.299705155634754 ], [ -79.788555380000105, 72.147905155634746 ], [ -80.15595538000008, 72.348905155634739 ], [ -79.840655380000101, 72.522405155634758 ], [ -79.644655380000103, 72.332005155634747 ], [ -79.7892553800001, 72.243205155634755 ], [ -79.474255380000102, 72.213505155634735 ], [ -79.345755380000099, 72.405305155634736 ], [ -79.030155380000082, 72.28300515563474 ], [ -79.194655380000086, 71.966405155634746 ], [ -78.549655380000104, 71.870405155634742 ], [ -78.923055380000079, 72.015805155634737 ], [ -78.854055380000091, 72.172205155634757 ], [ -78.492355380000106, 72.084805155634754 ], [ -78.312155380000092, 71.865105155634737 ], [ -77.929555380000096, 71.778605155634736 ], [ -78.290155380000101, 71.937005155634736 ], [ -78.145155380000091, 71.966005155634761 ], [ -77.737655380000092, 71.762905155634755 ], [ -78.060255380000086, 71.987705155634742 ], [ -78.880055380000101, 72.242905155634745 ], [ -78.589755380000099, 72.371105155634737 ], [ -78.469355380000081, 72.19140515563474 ], [ -78.412755380000078, 72.327605155634743 ], [ -77.666855380000101, 72.104005155634738 ], [ -77.031755380000078, 72.15030515563474 ], [ -78.532155380000091, 72.467205155634744 ], [ -78.393355380000088, 72.62520515563476 ], [ -77.591155380000089, 72.76990515563476 ], [ -76.756355380000088, 72.734305155634743 ], [ -76.076055380000099, 72.48280515563475 ], [ -75.9065553800001, 72.594705155634742 ], [ -75.215155380000084, 72.506905155634755 ], [ -74.988255380000084, 72.228705155634756 ], [ -76.069355380000104, 72.08010515563474 ], [ -76.437955380000091, 71.851005155634752 ], [ -75.902255380000099, 72.07470515563476 ], [ -75.241255380000098, 72.06670515563475 ], [ -75.57375538000008, 71.997405155634752 ], [ -75.972655380000106, 71.695505155634734 ], [ -75.073655380000105, 72.10980515563476 ], [ -74.222555380000102, 72.069605155634761 ], [ -74.206255380000101, 71.842905155634739 ], [ -75.339355380000086, 71.706305155634752 ], [ -74.974555380000083, 71.675905155634737 ], [ -75.412355380000093, 71.533805155634738 ], [ -74.667155380000082, 71.675405155634749 ], [ -75.170955380000095, 71.513705155634753 ], [ -74.748855380000094, 71.42060515563476 ], [ -75.057155380000097, 71.197805155634754 ], [ -74.668155380000087, 71.370705155634752 ], [ -74.73045538000008, 71.547805155634748 ], [ -74.547555380000091, 71.647405155634758 ], [ -74.1548553800001, 71.738605155634744 ], [ -74.307755380000089, 71.592905155634739 ], [ -74.135255380000103, 71.539505155634757 ], [ -73.953755380000104, 71.766005155634744 ], [ -73.677255380000105, 71.773405155634762 ], [ -74.293055380000084, 71.438405155634754 ], [ -74.040455380000083, 71.435305155634737 ], [ -74.249255380000079, 71.210905155634762 ], [ -73.648155380000105, 71.592705155634761 ], [ -73.682055380000094, 71.381305155634735 ], [ -73.444855380000092, 71.401705155634758 ], [ -73.899055380000078, 71.069305155634751 ], [ -73.426955380000095, 71.331305155634752 ], [ -73.103155380000089, 71.285805155634748 ], [ -73.436055380000084, 71.025505155634747 ], [ -72.589655380000096, 71.658905155634741 ], [ -71.504055380000096, 71.480405155634756 ], [ -71.176055380000093, 71.275805155634757 ], [ -71.5803553800001, 71.066205155634762 ], [ -72.03265538000008, 71.110105155634741 ], [ -72.775055380000083, 70.820005155634746 ], [ -72.215755380000104, 70.828605155634747 ], [ -72.530055380000078, 70.631705155634748 ], [ -71.238655380000097, 70.865005155634762 ], [ -71.180555380000101, 71.038505155634752 ], [ -70.913055380000088, 71.110205155634745 ], [ -70.644155380000086, 71.034405155634758 ], [ -70.558155380000102, 70.916705155634745 ], [ -70.806455380000102, 70.748805155634741 ], [ -71.609755380000081, 70.613405155634737 ], [ -71.98245538000009, 70.420705155634735 ], [ -71.764055380000087, 70.31670515563475 ], [ -71.489655380000102, 70.589705155634746 ], [ -71.234055380000086, 70.542405155634739 ], [ -71.551555380000082, 70.053505155634738 ], [ -71.032055380000088, 70.602005155634757 ], [ -69.916755380000097, 70.867905155634745 ], [ -69.812455380000102, 70.821205155634757 ], [ -70.52925538000008, 70.608805155634755 ], [ -70.533955380000094, 70.494405155634738 ], [ -69.344955380000101, 70.782205155634742 ], [ -68.386155380000105, 70.572205155634762 ], [ -68.312755380000084, 70.498605155634735 ], [ -68.528755380000092, 70.379305155634754 ], [ -68.689055380000099, 70.469505155634735 ], [ -68.78695538000008, 70.313505155634758 ], [ -69.789755380000088, 70.173605155634746 ], [ -70.227755380000104, 70.033505155634757 ], [ -69.885555380000085, 70.003305155634749 ], [ -70.463755380000094, 69.86520515563474 ], [ -69.809055380000103, 69.977205155634735 ], [ -69.473655380000082, 70.181705155634759 ], [ -68.694155380000097, 70.176405155634754 ], [ -69.788555380000105, 69.836005155634737 ], [ -70.028655380000089, 69.623405155634757 ], [ -69.753255380000098, 69.805205155634738 ], [ -68.283255380000099, 70.104605155634758 ], [ -68.353555380000103, 70.20710515563475 ], [ -68.162855380000082, 70.307205155634747 ], [ -67.832755380000094, 70.254805155634742 ], [ -67.178755380000098, 69.774905155634755 ], [ -68.025655380000103, 69.778105155634748 ], [ -70.05235538000008, 69.525005155634759 ], [ -68.679255380000086, 69.588505155634735 ], [ -66.796955380000099, 69.353305155634743 ], [ -66.686455380000098, 69.238205155634759 ], [ -66.813555380000082, 69.159005155634745 ], [ -69.116955380000093, 69.349805155634741 ], [ -69.3149553800001, 69.277905155634741 ], [ -68.140155380000095, 69.223205155634744 ], [ -69.009255380000099, 69.229605155634758 ], [ -68.606255380000079, 69.191105155634759 ], [ -69.102755380000104, 69.105105155634746 ], [ -69.025655380000103, 68.982005155634752 ], [ -68.251555380000099, 69.154505155634737 ], [ -67.799155380000087, 69.023005155634749 ], [ -68.564455380000084, 68.98250515563474 ], [ -67.840955380000082, 68.792605155634746 ], [ -69.440455380000088, 68.866405155634752 ], [ -68.1993553800001, 68.70540515563475 ], [ -68.888055380000083, 68.624505155634736 ], [ -67.973555380000079, 68.549705155634754 ], [ -68.01725538000008, 68.421905155634747 ], [ -67.706855380000093, 68.572905155634757 ], [ -67.528855380000095, 68.528405155634758 ], [ -67.661255380000085, 68.393405155634738 ], [ -66.759155380000095, 68.455505155634754 ], [ -67.92595538000009, 68.29530515563475 ], [ -67.135855380000095, 68.339905155634753 ], [ -67.505955380000103, 68.137105155634757 ], [ -67.107355380000087, 68.292105155634758 ], [ -66.823155380000088, 68.226905155634753 ], [ -67.046555380000086, 68.004905155634745 ], [ -66.284255380000104, 68.070505155634734 ], [ -66.621855380000085, 67.800205155634742 ], [ -65.996555380000103, 68.002605155634754 ], [ -66.062055380000089, 67.625605155634744 ], [ -65.725855380000098, 67.992005155634743 ], [ -65.474555380000083, 67.957705155634741 ], [ -65.658455380000106, 67.776705155634758 ], [ -65.396155380000096, 67.601305155634762 ], [ -65.569155380000097, 67.773105155634752 ], [ -65.420655380000085, 67.909105155634748 ], [ -64.791055380000103, 67.991005155634738 ], [ -65.281755380000078, 67.641905155634745 ], [ -64.5101553800001, 67.80330515563476 ], [ -64.397455380000082, 67.746905155634735 ], [ -64.602755380000104, 67.692505155634748 ], [ -64.253955380000093, 67.706105155634745 ], [ -64.100355380000082, 67.601905155634753 ], [ -64.299555380000101, 67.461005155634737 ], [ -63.977355380000091, 67.352205155634735 ], [ -64.808455380000083, 67.364205155634735 ], [ -64.303655380000095, 67.282105155634738 ], [ -64.823955380000086, 67.208205155634758 ], [ -63.993155380000104, 67.255505155634737 ], [ -64.684455380000088, 67.119605155634744 ], [ -64.717155380000094, 67.003405155634752 ], [ -63.473655380000082, 67.220405155634737 ], [ -63.769355380000093, 66.994505155634741 ], [ -63.073155380000088, 67.327605155634743 ], [ -63.017655380000093, 67.19770515563475 ], [ -63.28725538000009, 67.120205155634736 ], [ -63.27955538000009, 66.972005155634761 ], [ -63.699155380000093, 66.808405155634759 ], [ -63.444655380000086, 66.890405155634753 ], [ -63.425855380000087, 66.716105155634736 ], [ -63.333755380000099, 66.877505155634751 ], [ -62.850355380000082, 66.95080515563474 ], [ -62.878755380000086, 66.663005155634735 ], [ -62.760655380000088, 66.931705155634759 ], [ -62.342655380000082, 66.746005155634762 ], [ -62.468355380000105, 66.951505155634734 ], [ -62.0221553800001, 67.053905155634752 ], [ -62.085555380000102, 66.909505155634761 ], [ -61.742255380000103, 66.934205155634757 ], [ -62.027555380000081, 66.884105155634742 ], [ -61.644755380000106, 66.863505155634741 ], [ -61.308055380000098, 66.642305155634759 ], [ -61.526055380000088, 66.520105155634738 ], [ -61.991755380000086, 66.695405155634759 ], [ -62.11515538000009, 66.624305155634758 ], [ -61.637955380000079, 66.489005155634757 ], [ -61.94535538000008, 66.398305155634759 ], [ -61.532155380000091, 66.343905155634744 ], [ -62.571255380000082, 66.431905155634738 ], [ -62.690655380000095, 66.396105155634743 ], [ -62.377355380000097, 66.285905155634751 ], [ -62.692255380000091, 66.216705155634756 ], [ -62.863255380000084, 66.328005155634756 ], [ -62.791155380000106, 66.194405155634755 ], [ -62.005755380000096, 66.014005155634734 ], [ -62.926155380000097, 66.129405155634757 ], [ -62.413355380000098, 65.94370515563476 ], [ -62.353855380000084, 65.809705155634745 ], [ -62.479055380000091, 65.779405155634734 ], [ -62.859855380000084, 65.868305155634758 ], [ -62.606955380000102, 65.758905155634736 ], [ -62.844355380000081, 65.725805155634745 ], [ -62.675355380000099, 65.599005155634742 ], [ -63.227255380000088, 65.635105155634747 ], [ -63.530855380000105, 65.910105155634753 ], [ -63.419155380000092, 65.67060515563476 ], [ -63.749355380000083, 65.650705155634753 ], [ -63.380355380000083, 65.614905155634759 ], [ -63.644655380000103, 65.529305155634759 ], [ -63.348155380000094, 65.428405155634735 ], [ -63.663455380000102, 65.461105155634741 ], [ -63.357655380000097, 65.196605155634742 ], [ -63.619955380000079, 64.893105155634757 ], [ -63.833655380000096, 64.978005155634762 ], [ -63.693955380000091, 65.056705155634759 ], [ -64.393655380000098, 65.179805155634753 ], [ -64.298755380000102, 65.40690515563476 ], [ -64.608955380000083, 65.089205155634758 ], [ -64.73245538000009, 65.169705155634759 ], [ -64.643455380000091, 65.244405155634738 ], [ -64.897655380000089, 65.286805155634752 ], [ -64.491155380000095, 65.435605155634747 ], [ -65.07375538000008, 65.37920515563475 ], [ -65.148455380000087, 65.480705155634737 ], [ -64.927255380000105, 65.543405155634744 ], [ -64.832755380000094, 65.665905155634746 ], [ -65.3731553800001, 65.561705155634755 ], [ -64.869855380000104, 65.716705155634756 ], [ -65.510555380000085, 65.762005155634753 ], [ -64.820855380000097, 65.979305155634748 ], [ -64.680655380000104, 66.234605155634753 ], [ -64.409455380000082, 66.334505155634744 ], [ -64.732655380000097, 66.252305155634744 ], [ -65.0024553800001, 66.066205155634762 ], [ -65.916455380000087, 65.949505155634753 ], [ -65.904455380000087, 66.075605155634761 ], [ -65.577455380000089, 66.199505155634753 ], [ -65.47445538000008, 66.36550515563475 ], [ -66.021455380000106, 66.112005155634748 ], [ -66.339855380000103, 66.263505155634746 ], [ -66.52495538000008, 66.226305155634762 ], [ -66.811455380000098, 66.590705155634751 ], [ -67.174955380000085, 66.484305155634743 ], [ -67.535755380000097, 66.619305155634734 ], [ -67.918455380000097, 66.582005155634747 ], [ -67.389455380000101, 66.544005155634736 ], [ -67.215755380000104, 66.308105155634749 ], [ -68.010455380000082, 66.506705155634748 ], [ -67.226855380000103, 66.030205155634761 ], [ -67.299255380000091, 65.910105155634753 ], [ -67.935555380000096, 65.906705155634754 ], [ -67.967455380000104, 66.094305155634757 ], [ -68.290155380000101, 66.217205155634744 ], [ -69.002355380000097, 66.175005155634736 ], [ -68.226955380000078, 66.113505155634741 ], [ -68.152355380000103, 65.975305155634757 ], [ -68.355555380000084, 65.93540515563474 ], [ -67.831555380000083, 65.806005155634736 ], [ -68.082655380000091, 65.464105155634755 ], [ -67.691255380000086, 65.654105155634753 ], [ -67.292155380000082, 65.625905155634754 ], [ -67.394455380000096, 65.479205155634745 ], [ -67.113655380000097, 65.388205155634736 ], [ -67.376255380000089, 65.333105155634755 ], [ -66.943855380000088, 65.215505155634744 ], [ -67.120955380000083, 65.063505155634758 ], [ -66.8089553800001, 65.152705155634735 ], [ -66.916155380000106, 65.052805155634744 ], [ -66.764755380000082, 64.994705155634747 ], [ -66.760055380000097, 64.770805155634761 ], [ -66.672455380000088, 65.041405155634735 ], [ -66.16225538000009, 64.860105155634741 ], [ -66.408255380000099, 64.762105155634757 ], [ -66.411255380000085, 64.648005155634749 ], [ -66.050055380000089, 64.829305155634742 ], [ -65.845555380000093, 64.642505155634737 ], [ -65.965555380000097, 64.850905155634749 ], [ -65.799255380000091, 64.876205155634736 ], [ -65.554755380000103, 64.730605155634734 ], [ -65.724355380000105, 64.505805155634746 ], [ -65.056055380000089, 64.476305155634762 ], [ -65.552155380000102, 64.258305155634744 ], [ -65.063455380000079, 64.045205155634747 ], [ -65.202355380000085, 64.003805155634737 ], [ -64.651555380000104, 63.99220515563475 ], [ -64.884155380000095, 63.904105155634753 ], [ -64.956055380000095, 63.786005155634754 ], [ -64.524255380000085, 63.661305155634736 ], [ -64.670855380000091, 63.648105155634752 ], [ -64.47475538000009, 63.437305155634746 ], [ -64.654655380000094, 63.404205155634756 ], [ -64.524355380000088, 63.251705155634752 ], [ -64.707555380000088, 63.279205155634756 ], [ -64.919055380000088, 63.60980515563476 ], [ -65.205455380000103, 63.799505155634748 ], [ -65.307555380000082, 63.79840515563474 ], [ -65.040955380000099, 63.623805155634741 ], [ -65.144255380000089, 63.444405155634755 ], [ -64.893955380000079, 63.250905155634754 ], [ -65.138655380000102, 63.255205155634755 ], [ -64.632955380000084, 62.923905155634756 ], [ -65.270955380000089, 63.001105155634761 ], [ -64.920855380000091, 62.653405155634758 ], [ -65.122155380000095, 62.583605155634743 ], [ -65.344555380000088, 62.679305155634736 ], [ -65.31605538000008, 62.929105155634758 ], [ -65.577055380000104, 62.822605155634747 ], [ -65.729355380000101, 63.049705155634754 ], [ -65.770855380000086, 62.912005155634759 ], [ -65.943555380000106, 62.934505155634739 ], [ -65.82975538000008, 63.037205155634737 ], [ -66.035555380000091, 63.005805155634746 ], [ -66.257955380000084, 63.202605155634743 ], [ -66.09975538000009, 62.95740515563476 ], [ -66.429755380000103, 63.016805155634742 ], [ -66.568155380000093, 63.21910515563475 ], [ -66.738655380000097, 63.282105155634738 ], [ -66.606855380000098, 63.02420515563476 ], [ -66.831755380000089, 63.273205155634756 ], [ -67.000355380000087, 63.241505155634755 ], [ -66.981555380000088, 63.404405155634734 ], [ -67.205855380000088, 63.276405155634748 ], [ -67.88285538000008, 63.749105155634751 ], [ -67.682055380000094, 63.395405155634748 ], [ -68.268555380000095, 63.698905155634762 ], [ -68.994955380000079, 63.764705155634758 ], [ -67.989955380000083, 63.059805155634749 ], [ -67.603355380000096, 63.089405155634736 ], [ -67.79295538000008, 62.999805155634746 ], [ -67.527355380000103, 63.035105155634753 ], [ -67.703955380000082, 62.925305155634746 ], [ -67.361455380000081, 62.940705155634745 ], [ -66.630455380000086, 62.614505155634745 ], [ -66.335955380000087, 62.390805155634737 ], [ -66.388855380000081, 62.28900515563474 ], [ -65.958655380000096, 62.231005155634747 ], [ -66.040655380000089, 62.054505155634743 ], [ -66.175055380000089, 62.089305155634761 ], [ -66.022955380000099, 61.879305155634754 ], [ -68.659455380000082, 62.275705155634753 ], [ -68.797755380000098, 62.470105155634755 ], [ -69.227555380000098, 62.452305155634761 ], [ -69.268555380000095, 62.633105155634738 ], [ -69.512255380000084, 62.553905155634752 ], [ -69.614055380000082, 62.654105155634753 ], [ -69.445155380000102, 62.76790515563475 ], [ -70.291755380000097, 62.76390515563476 ], [ -71.123955380000098, 62.998305155634753 ], [ -70.924255380000091, 63.15630515563474 ], [ -71.245155380000085, 63.001405155634743 ], [ -71.64685538000009, 63.14260515563474 ], [ -71.7738553800001, 63.38520515563475 ], [ -72.080655380000081, 63.435305155634737 ], [ -71.692955380000086, 63.405805155634752 ], [ -71.282355380000098, 63.57240515563474 ], [ -71.589255380000083, 63.57300515563476 ], [ -71.527955380000094, 63.696805155634749 ], [ -71.947255380000087, 63.847005155634761 ], [ -72.274055380000078, 63.663205155634742 ], [ -72.238555380000093, 63.937305155634746 ], [ -72.5529553800001, 63.765905155634741 ], [ -72.589555380000093, 63.99250515563476 ], [ -72.987555380000089, 64.080505155634754 ], [ -72.88625538000008, 64.176605155634761 ], [ -73.091855380000084, 64.183405155634759 ], [ -73.164555380000081, 64.356005155634747 ], [ -73.428355380000085, 64.263005155634758 ], [ -73.472555380000102, 64.460705155634756 ], [ -73.197155380000083, 64.599205155634749 ], [ -73.301055380000093, 64.649705155634749 ], [ -73.616055380000091, 64.331205155634748 ], [ -73.715555380000097, 64.529205155634756 ], [ -73.451855380000097, 64.583505155634739 ], [ -73.68195538000009, 64.639905155634736 ], [ -74.147255380000104, 64.338305155634757 ], [ -74.170655380000085, 64.576005155634746 ], [ -73.944855380000092, 64.706305155634752 ], [ -74.414355380000103, 64.570105155634749 ], [ -74.688855380000092, 64.725105155634751 ], [ -74.555455380000097, 64.881305155634735 ], [ -74.882555380000099, 64.768705155634748 ], [ -75.116655380000083, 64.945305155634756 ], [ -75.049255380000091, 64.784405155634758 ], [ -74.558455380000083, 64.595105155634755 ], [ -74.661455380000092, 64.541105155634753 ], [ -74.542555380000096, 64.445805155634744 ], [ -75.232855380000103, 64.432405155634754 ], [ -75.841155380000089, 64.619305155634734 ], [ -75.695455380000084, 64.460905155634762 ], [ -75.853655380000106, 64.473305155634748 ], [ -75.780655380000098, 64.369405155634738 ], [ -76.793855380000082, 64.287505155634747 ], [ -76.73045538000008, 64.201005155634746 ], [ -77.922455380000088, 64.370005155634757 ], [ -78.292355380000089, 64.685805155634753 ], [ -78.131355380000088, 64.811305155634741 ], [ -78.186355380000094, 64.954305155634742 ], [ -77.399355380000088, 65.17060515563476 ], [ -77.562155380000092, 65.359105155634737 ], [ -77.338255380000078, 65.368705155634743 ], [ -77.422055380000103, 65.457905155634748 ], [ -75.309855380000101, 65.264705155634758 ], [ -74.171555380000086, 65.531005155634759 ], [ -73.553555380000091, 65.455005155634737 ], [ -73.769055380000083, 65.756905155634755 ], [ -74.48075538000009, 66.158505155634757 ], [ -73.170355380000103, 66.722005155634761 ], [ -72.670155380000097, 66.664205155634747 ], [ -72.267755380000096, 66.67770515563474 ], [ -73.047755380000098, 66.772405155634758 ], [ -72.8577553800001, 67.001805155634756 ], [ -72.261755380000096, 67.238205155634759 ], [ -72.661155380000082, 67.63490515563474 ], [ -72.605155380000099, 67.751105155634761 ], [ -73.013155380000086, 67.965805155634754 ], [ -72.783355380000103, 68.099205155634749 ], [ -72.964155380000079, 68.03790515563476 ], [ -73.045455380000078, 68.24190515563474 ], [ -73.902155380000096, 68.387805155634751 ], [ -73.449955380000091, 68.471905155634758 ], [ -74.023055380000102, 68.425105155634739 ], [ -73.721255380000088, 68.67060515563476 ], [ -74.215755380000104, 68.729405155634751 ], [ -73.978755380000081, 68.57580515563474 ], [ -74.339255380000083, 68.535905155634751 ], [ -74.75385538000009, 68.744205155634759 ], [ -74.604055380000091, 68.823705155634755 ], [ -74.948155380000088, 68.793605155634751 ], [ -74.731355380000082, 68.898205155634756 ], [ -75.083955380000106, 68.900005155634759 ], [ -74.718555380000083, 69.044205155634742 ], [ -74.862955380000102, 69.084805155634754 ], [ -75.2036553800001, 68.897105155634748 ], [ -75.554455380000093, 69.01790515563475 ], [ -75.582055380000099, 68.896405155634753 ], [ -76.646255380000099, 68.692505155634748 ], [ -76.520655380000079, 68.872005155634739 ], [ -76.614655380000102, 69.014105155634738 ], [ -75.599955380000097, 69.174905155634761 ], [ -76.634655380000083, 69.557205155634747 ], [ -76.219955380000101, 69.533805155634738 ], [ -76.213855380000098, 69.667105155634758 ], [ -77.17735538000008, 69.633705155634757 ], [ -76.777255380000099, 69.828705155634751 ], [ -77.34375538000009, 69.844305155634757 ], [ -77.018655380000098, 69.98310515563476 ], [ -77.672955380000104, 69.757905155634759 ], [ -77.745455380000095, 70.212205155634749 ], [ -78.399655380000098, 70.215305155634738 ], [ -78.54295538000008, 70.314005155634746 ], [ -78.4416553800001, 70.404505155634737 ], [ -79.077855380000102, 70.468305155634752 ], [ -78.7267553800001, 70.570105155634749 ], [ -78.901455380000101, 70.710005155634761 ], [ -79.263955380000084, 70.425605155634756 ], [ -79.271555380000081, 70.558305155634756 ], [ -79.478155380000089, 70.613405155634737 ], [ -79.514555380000104, 70.446805155634749 ], [ -80.045655380000085, 70.695005155634746 ], [ -80.476555380000093, 70.681305155634746 ], [ -80.331955380000096, 70.727005155634757 ], [ -80.4596553800001, 70.776105155634738 ], [ -80.470755380000099, 70.734905155634735 ], [ -80.630955380000103, 70.769705155634753 ], [ -81.092955380000092, 70.688305155634751 ], [ -80.893455380000091, 70.619305155634734 ], [ -80.512055380000106, 70.644705155634753 ], [ -80.499155380000104, 70.585105155634736 ], [ -80.126655380000102, 70.639605155634754 ], [ -79.75815538000009, 70.545805155634739 ], [ -79.638855380000081, 70.472105155634736 ], [ -79.793955380000085, 70.377005155634762 ], [ -79.653555380000086, 70.234305155634743 ], [ -79.649755380000101, 70.37520515563476 ], [ -79.056255380000096, 70.357305155634762 ], [ -78.718355380000105, 70.021705155634734 ], [ -78.867255380000103, 69.898805155634747 ], [ -79.683255380000105, 69.864805155634755 ], [ -80.031855380000081, 70.028105155634748 ], [ -81.772555380000085, 70.118405155634761 ], [ -80.823555380000101, 69.787805155634757 ], [ -80.989955380000083, 69.730705155634737 ], [ -81.612355380000082, 69.987305155634758 ], [ -82.993555380000089, 70.309705155634745 ], [ -81.770955380000089, 69.951805155634744 ], [ -82.195255380000106, 69.80470515563475 ], [ -83.094555380000088, 70.011705155634743 ], [ -84.830155380000093, 70.117905155634745 ], [ -85.854455380000104, 70.012905155634755 ], [ -86.493855380000099, 70.215405155634741 ], [ -86.561055380000084, 70.399005155634754 ], [ -86.308155380000102, 70.495705155634752 ], [ -86.371555380000103, 70.525805155634757 ], [ -86.703755380000104, 70.307605155634761 ], [ -87.011755380000096, 70.474605155634762 ], [ -87.234755380000081, 70.387005155634753 ], [ -87.022255380000104, 70.292005155634754 ], [ -87.913255380000095, 70.245105155634761 ], [ -88.242255380000103, 70.330905155634738 ], [ -87.914855380000091, 70.324305155634747 ], [ -88.768955380000079, 70.490305155634744 ], [ -89.392455380000087, 70.876905155634759 ], [ -89.2053553800001, 70.985805155634736 ], [ -89.525755380000078, 71.095005155634752 ], [ -88.019255380000089, 70.943005155634737 ], [ -87.110455380000104, 71.035105155634753 ], [ -87.931155380000092, 71.271005155634739 ], [ -89.66195538000008, 71.31640515563474 ], [ -89.986955380000097, 71.46940515563476 ], [ -90.028955380000099, 71.627205155634741 ], [ -89.844155380000103, 71.746705155634757 ], [ -90.110655380000082, 71.939305155634756 ], [ -89.624755380000096, 72.162805155634757 ], [ -89.929355380000089, 72.206105155634745 ], [ -89.908755380000088, 72.441005155634755 ], [ -89.507455380000096, 72.663605155634755 ], [ -89.586955380000092, 72.781405155634744 ], [ -89.268755380000101, 72.782205155634742 ], [ -89.415555380000086, 72.848705155634761 ], [ -89.293855380000082, 73.095105155634755 ], [ -88.704455380000098, 73.297205155634757 ], [ -88.835055380000085, 73.328005155634756 ], [ -88.751455380000095, 73.396305155634749 ], [ -86.856455380000085, 73.834505155634744 ], [ -84.87685538000008, 73.748805155634741 ], [ -86.037355380000093, 73.318505155634753 ] ] ], [ [ [ -97.170455380000078, 73.876505155634746 ], [ -97.237755380000095, 73.875805155634751 ], [ -97.270155380000091, 73.887305155634735 ], [ -97.222755380000081, 73.899805155634752 ], [ -97.170455380000078, 73.876505155634746 ] ] ], [ [ [ -124.424355380000094, 73.864305155634739 ], [ -124.454555380000087, 73.85810515563476 ], [ -124.50685538000009, 73.898505155634737 ], [ -124.438255380000086, 73.906105155634762 ], [ -124.424355380000094, 73.864305155634739 ] ] ], [ [ [ -55.956655380000086, 73.834705155634751 ], [ -56.323355380000095, 73.78330515563475 ], [ -56.777255380000099, 73.875805155634751 ], [ -56.617755380000091, 73.915805155634743 ], [ -55.956655380000086, 73.834705155634751 ] ] ], [ [ [ -20.0161553800001, 73.884405155634752 ], [ -20.096455380000094, 73.882705155634753 ], [ -20.234755380000081, 73.926405155634754 ], [ -20.113655380000097, 73.932705155634736 ], [ -20.0161553800001, 73.884405155634752 ] ] ], [ [ [ -97.170855380000091, 73.925905155634737 ], [ -97.24415538000008, 73.92170515563474 ], [ -97.276155380000091, 73.929905155634756 ], [ -97.253455380000105, 73.943805155634735 ], [ -97.170855380000091, 73.925905155634737 ] ] ], [ [ [ -99.795955380000095, 73.878605155634759 ], [ -99.226755380000085, 73.695605155634738 ], [ -97.822255380000087, 73.916605155634741 ], [ -96.969155380000103, 73.736905155634744 ], [ -97.695755380000094, 73.52390515563475 ], [ -97.206755380000089, 73.377705155634757 ], [ -97.706955380000096, 73.330805155634735 ], [ -98.4904553800001, 73.01960515563475 ], [ -98.482055380000105, 72.889605155634754 ], [ -97.719255380000078, 73.034805155634743 ], [ -97.292155380000082, 72.956305155634752 ], [ -97.076555380000087, 72.767005155634749 ], [ -97.166255380000081, 72.608505155634745 ], [ -96.56035538000009, 72.746105155634737 ], [ -96.315055380000103, 72.426205155634747 ], [ -96.837355380000105, 72.320705155634741 ], [ -96.464655380000096, 72.121705155634757 ], [ -96.841355380000095, 72.037705155634754 ], [ -96.472455380000099, 72.018705155634748 ], [ -96.745555380000098, 71.913405155634749 ], [ -96.542755380000102, 71.932405155634754 ], [ -96.593555380000083, 71.823805155634759 ], [ -97.491455380000104, 71.628405155634752 ], [ -98.255855380000099, 71.664905155634742 ], [ -98.380555380000089, 71.750505155634741 ], [ -98.247255380000098, 71.867905155634745 ], [ -98.370355380000092, 71.846905155634758 ], [ -98.511455380000086, 71.746405155634747 ], [ -98.110555380000079, 71.514405155634748 ], [ -98.714555380000093, 71.300405155634749 ], [ -98.953955380000096, 71.395505155634751 ], [ -99.25085538000009, 71.37180515563476 ], [ -99.402855380000091, 71.588705155634742 ], [ -100.658555380000095, 72.189905155634747 ], [ -101.731555380000088, 72.292905155634756 ], [ -102.751455380000095, 72.770605155634755 ], [ -102.527055380000093, 73.016505155634761 ], [ -102.100155380000089, 73.084605155634748 ], [ -101.319655380000086, 72.715805155634754 ], [ -100.877655380000093, 72.691005155634755 ], [ -100.420955380000095, 72.74820515563475 ], [ -100.432555380000096, 73.038005155634735 ], [ -100.324155380000093, 72.891505155634761 ], [ -100.080355380000086, 72.93710515563474 ], [ -100.193555380000092, 73.105805155634741 ], [ -100.536055380000093, 73.086805155634735 ], [ -100.53895538000009, 73.229105155634741 ], [ -99.81165538000009, 73.219505155634735 ], [ -100.381155380000095, 73.413205155634742 ], [ -100.929755380000088, 73.276805155634761 ], [ -101.615955380000088, 73.485005155634738 ], [ -100.945455380000098, 73.607305155634762 ], [ -100.515055380000092, 73.418205155634737 ], [ -101.102355380000091, 73.741805155634736 ], [ -99.795955380000095, 73.878605155634759 ] ] ], [ [ [ -90.0161553800001, 74.009105155634742 ], [ -90.166655380000094, 74.009005155634739 ], [ -90.211955380000092, 74.02530515563474 ], [ -89.851955380000078, 74.054205155634762 ], [ -90.0161553800001, 74.009105155634742 ] ] ], [ [ [ -98.139655380000079, 73.901905155634736 ], [ -98.823055380000099, 73.822605155634747 ], [ -99.447455380000093, 73.911605155634746 ], [ -97.704655380000105, 74.098705155634761 ], [ -98.139655380000079, 73.901905155634736 ] ] ], [ [ [ -93.273355380000083, 74.159505155634761 ], [ -92.300055380000089, 73.941505155634744 ], [ -90.177855380000096, 73.918705155634754 ], [ -91.4750553800001, 73.24790515563474 ], [ -91.49755538000008, 73.089105155634755 ], [ -92.076355380000081, 72.753105155634742 ], [ -94.298555380000096, 72.757905155634759 ], [ -93.79325538000009, 72.708205155634758 ], [ -93.492855380000094, 72.472005155634761 ], [ -94.227455380000094, 72.053805155634748 ], [ -94.029055380000102, 72.003505155634755 ], [ -95.205255380000096, 71.984005155634762 ], [ -95.193655380000081, 72.499705155634743 ], [ -95.664055380000093, 72.825205155634748 ], [ -95.555955380000086, 73.158905155634741 ], [ -95.682455380000079, 73.706305155634752 ], [ -94.710255380000092, 73.651805155634761 ], [ -95.356355380000082, 73.961305155634747 ], [ -93.273355380000083, 74.159505155634761 ] ] ], [ [ [ -98.54635538000008, 74.308305155634756 ], [ -98.715755380000104, 74.305505155634748 ], [ -98.768755380000101, 74.316505155634744 ], [ -98.587955380000096, 74.326305155634756 ], [ -98.54635538000008, 74.308305155634756 ] ] ], [ [ [ -20.926955380000095, 74.42000515563474 ], [ -20.123955380000098, 74.20110515563475 ], [ -21.210055380000085, 74.086105155634741 ], [ -21.990855380000085, 74.227205155634735 ], [ -21.557555380000082, 74.413005155634735 ], [ -20.926955380000095, 74.42000515563474 ] ] ], [ [ [ -120.987755380000095, 74.458805155634749 ], [ -119.632255380000089, 74.227905155634758 ], [ -119.822455380000093, 74.090505155634744 ], [ -119.683455380000098, 74.016005155634744 ], [ -119.408955380000094, 74.223405155634751 ], [ -119.063755380000089, 74.176905155634742 ], [ -119.118055380000087, 73.985605155634758 ], [ -118.74915538000009, 74.196405155634736 ], [ -117.406555380000086, 74.218105155634746 ], [ -115.286455380000092, 73.52590515563476 ], [ -118.804255380000086, 72.705505155634754 ], [ -119.667255380000086, 72.229105155634741 ], [ -120.177355380000094, 72.26820515563476 ], [ -120.093455380000094, 72.109905155634735 ], [ -120.353755380000095, 71.960605155634752 ], [ -120.380055380000087, 71.615905155634735 ], [ -120.565155380000093, 71.486305155634753 ], [ -121.322955380000096, 71.37350515563476 ], [ -121.748355380000092, 71.474705155634737 ], [ -122.733555380000098, 71.088905155634748 ], [ -123.196455380000089, 71.124305155634758 ], [ -124.005855380000085, 71.674805155634758 ], [ -125.186255380000091, 71.924605155634751 ], [ -125.091555380000088, 71.972605155634753 ], [ -125.936955380000086, 71.972905155634734 ], [ -125.000955380000093, 72.559105155634754 ], [ -125.06465538000009, 72.876505155634746 ], [ -124.496255380000093, 72.925205155634742 ], [ -124.864155380000085, 73.114105155634761 ], [ -123.950955380000096, 73.543805155634757 ], [ -124.000055380000092, 73.656805155634757 ], [ -123.760255380000089, 73.786805155634752 ], [ -124.199455380000089, 73.887905155634755 ], [ -124.678355380000099, 74.338205155634753 ], [ -121.433055380000098, 74.547505155634738 ], [ -120.987755380000095, 74.458805155634749 ] ] ], [ [ [ -56.530855380000105, 74.530505155634742 ], [ -56.462855380000093, 74.50420515563475 ], [ -57.55665538000008, 74.488305155634762 ], [ -56.730355380000105, 74.559405155634735 ], [ -56.530855380000105, 74.530505155634742 ] ] ], [ [ [ -56.9827553800001, 74.553605155634742 ], [ -57.095355380000086, 74.557905155634742 ], [ -56.838655380000091, 74.591705155634756 ], [ -56.878655380000083, 74.564405155634759 ], [ -56.9827553800001, 74.553605155634742 ] ] ], [ [ [ -97.616555380000079, 74.477805155634755 ], [ -97.784255380000104, 74.526905155634736 ], [ -97.279455380000087, 74.60750515563474 ], [ -97.412855380000082, 74.515905155634741 ], [ -97.616555380000079, 74.477805155634755 ] ] ], [ [ [ -57.185255380000086, 74.57610515563475 ], [ -57.281955380000085, 74.581705155634737 ], [ -57.083055380000104, 74.613005155634752 ], [ -57.092255380000097, 74.600305155634757 ], [ -57.185255380000086, 74.57610515563475 ] ] ], [ [ [ -95.386955380000103, 74.50390515563474 ], [ -95.71275538000009, 74.528505155634761 ], [ -95.926655380000085, 74.581905155634743 ], [ -95.662155380000087, 74.66290515563476 ], [ -95.386955380000103, 74.50390515563474 ] ] ], [ [ [ -18.838655380000091, 74.538305155634745 ], [ -19.158355380000103, 74.550305155634746 ], [ -19.220055380000105, 74.581105155634745 ], [ -18.752855380000085, 74.656105155634762 ], [ -18.838655380000091, 74.538305155634745 ] ] ], [ [ [ -18.530055380000078, 74.712205155634749 ], [ -18.319755380000089, 74.710805155634759 ], [ -18.300555380000105, 74.705305155634747 ], [ -18.383055380000087, 74.620205155634736 ], [ -18.530055380000078, 74.712205155634749 ] ] ], [ [ [ -91.923855380000106, 74.698105155634735 ], [ -91.988855380000103, 74.693805155634735 ], [ -92.006655380000097, 74.704205155634739 ], [ -91.889255380000094, 74.711305155634747 ], [ -91.923855380000106, 74.698105155634735 ] ] ], [ [ [ -57.47645538000009, 74.706105155634745 ], [ -57.666655380000094, 74.705005155634737 ], [ -57.727255380000088, 74.721905155634758 ], [ -57.431155380000092, 74.717505155634754 ], [ -57.47645538000009, 74.706105155634745 ] ] ], [ [ [ -96.187155380000092, 74.718205155634749 ], [ -96.231955380000102, 74.716205155634739 ], [ -96.284555380000086, 74.727805155634755 ], [ -96.215355380000091, 74.74680515563476 ], [ -96.187155380000092, 74.718205155634749 ] ] ], [ [ [ -98.2584553800001, 74.724605155634762 ], [ -98.375155380000081, 74.726205155634759 ], [ -98.384255380000099, 74.739705155634752 ], [ -98.191855380000078, 74.745905155634759 ], [ -98.2584553800001, 74.724605155634762 ] ] ], [ [ [ -96.434055380000103, 74.803205155634757 ], [ -96.478955380000087, 74.799505155634748 ], [ -96.499255380000079, 74.809605155634742 ], [ -96.385055380000097, 74.83240515563476 ], [ -96.434055380000103, 74.803205155634757 ] ] ], [ [ [ -20.166955380000104, 74.897505155634761 ], [ -19.729155380000094, 74.858605155634748 ], [ -20.084455380000094, 74.702805155634749 ], [ -20.687855380000087, 74.811605155634751 ], [ -20.493055380000101, 75.030805155634752 ], [ -19.960555380000102, 74.99250515563476 ], [ -20.166955380000104, 74.897505155634761 ] ] ], [ [ [ -97.053355380000085, 75.261505155634737 ], [ -97.195855380000097, 75.233005155634757 ], [ -97.201455380000084, 75.316005155634755 ], [ -97.096855380000079, 75.332205155634753 ], [ -97.053355380000085, 75.261505155634737 ] ] ], [ [ [ -97.496055380000087, 75.31810515563474 ], [ -97.589955380000106, 75.320505155634734 ], [ -97.619055380000106, 75.333705155634746 ], [ -97.477855380000079, 75.328505155634744 ], [ -97.496055380000087, 75.31810515563474 ] ] ], [ [ [ -17.80835538000008, 75.306105155634739 ], [ -18.216455380000099, 75.231105155634751 ], [ -17.319755380000089, 75.131105155634756 ], [ -17.62085538000008, 74.931105155634739 ], [ -18.915555380000086, 75.00420515563475 ], [ -18.839155380000079, 75.328305155634737 ], [ -18.083655380000096, 75.421605155634737 ], [ -17.80835538000008, 75.306105155634739 ] ] ], [ [ [ -104.011255380000094, 75.026905155634736 ], [ -104.529255380000095, 75.049605155634751 ], [ -104.847555380000088, 75.14490515563476 ], [ -104.337355380000091, 75.425505155634752 ], [ -103.610955380000092, 75.193905155634738 ], [ -104.011255380000094, 75.026905155634736 ] ] ], [ [ [ -97.534455380000082, 75.426105155634744 ], [ -97.626955380000084, 75.415005155634745 ], [ -97.636355380000083, 75.431805155634734 ], [ -97.580855380000088, 75.459505155634744 ], [ -97.534455380000082, 75.426105155634744 ] ] ], [ [ [ -97.165755380000093, 75.501905155634759 ], [ -97.23245538000009, 75.49190515563474 ], [ -97.235955380000092, 75.508605155634754 ], [ -97.129655380000088, 75.529105155634753 ], [ -97.165755380000093, 75.501905155634759 ] ] ], [ [ [ -101.287755380000092, 75.51390515563476 ], [ -101.395355380000098, 75.511205155634755 ], [ -101.414255380000085, 75.524305155634735 ], [ -101.255455380000086, 75.535205155634756 ], [ -101.287755380000092, 75.51390515563476 ] ] ], [ [ [ -100.154655380000094, 75.579405155634745 ], [ -100.328955380000096, 75.551905155634742 ], [ -100.902855380000091, 75.538705155634759 ], [ -100.345555380000093, 75.617805155634741 ], [ -100.154655380000094, 75.579405155634745 ] ] ], [ [ [ -99.93065538000009, 75.602705155634752 ], [ -100.004055380000096, 75.597805155634759 ], [ -100.020155380000091, 75.605905155634744 ], [ -99.884055380000092, 75.627405155634747 ], [ -99.93065538000009, 75.602705155634752 ] ] ], [ [ [ -93.887455380000091, 75.417205155634761 ], [ -93.562255380000096, 75.275205155634737 ], [ -93.643855380000105, 75.06210515563474 ], [ -93.464455380000089, 74.923805155634753 ], [ -93.624755380000096, 74.683505155634762 ], [ -94.763055380000083, 74.644005155634758 ], [ -96.7190553800001, 75.026905155634736 ], [ -95.908255380000099, 75.369105155634756 ], [ -96.260255380000103, 75.406205155634737 ], [ -95.359955380000088, 75.599305155634752 ], [ -94.597855380000084, 75.628605155634759 ], [ -93.887455380000091, 75.417205155634761 ] ] ], [ [ [ -95.970355380000086, 75.576905155634748 ], [ -96.292855380000105, 75.466905155634734 ], [ -96.553455380000088, 75.565205155634757 ], [ -96.840955380000082, 75.371705155634757 ], [ -97.051455380000078, 75.486805155634741 ], [ -96.47645538000009, 75.672205155634757 ], [ -95.970355380000086, 75.576905155634748 ] ] ], [ [ [ -96.940855380000102, 75.618105155634751 ], [ -97.05095538000009, 75.625505155634741 ], [ -96.770655380000079, 75.675205155634742 ], [ -96.782155380000091, 75.656505155634747 ], [ -96.940855380000102, 75.618105155634751 ] ] ], [ [ [ -95.486855380000094, 75.703805155634754 ], [ -95.534355380000079, 75.696905155634752 ], [ -95.596255380000088, 75.701805155634744 ], [ -95.446555380000092, 75.717505155634754 ], [ -95.486855380000094, 75.703805155634754 ] ] ], [ [ [ -96.66365538000008, 75.750405155634738 ], [ -96.762555380000094, 75.773405155634762 ], [ -96.526755380000083, 75.817305155634742 ], [ -96.570455380000084, 75.778105155634748 ], [ -96.66365538000008, 75.750405155634738 ] ] ], [ [ [ -103.327855380000088, 75.861005155634743 ], [ -103.688955380000095, 75.821505155634739 ], [ -103.797455380000088, 75.839905155634753 ], [ -103.733555380000098, 75.862605155634739 ], [ -103.327855380000088, 75.861005155634743 ] ] ], [ [ [ -122.282955380000089, 75.868305155634758 ], [ -122.339655380000096, 75.858205155634735 ], [ -122.533955380000094, 75.892005155634749 ], [ -122.302255380000091, 75.910805155634748 ], [ -122.282955380000089, 75.868305155634758 ] ] ], [ [ [ -120.983155380000099, 75.731805155634746 ], [ -121.14685538000009, 75.773205155634756 ], [ -120.866255380000098, 75.915605155634736 ], [ -120.813255380000086, 75.847605155634753 ], [ -120.983155380000099, 75.731805155634746 ] ] ], [ [ [ -102.519955380000098, 75.765505155634756 ], [ -102.991555380000094, 75.72710515563476 ], [ -103.29665538000009, 75.766505155634761 ], [ -102.033155380000096, 75.939505155634762 ], [ -102.519955380000098, 75.765505155634756 ] ] ], [ [ [ -94.486555380000084, 75.74850515563476 ], [ -94.843655380000087, 75.772305155634754 ], [ -94.920455380000078, 75.915905155634746 ], [ -94.551555380000082, 75.97820515563474 ], [ -94.334555380000097, 75.77530515563474 ], [ -94.486555380000084, 75.74850515563476 ] ] ], [ [ [ -95.809055380000103, 75.919005155634736 ], [ -95.906155380000087, 75.92030515563475 ], [ -95.937255380000096, 75.965805155634754 ], [ -95.812855380000087, 75.97650515563474 ], [ -95.809055380000103, 75.919005155634736 ] ] ], [ [ [ -103.504155380000086, 75.988105155634756 ], [ -103.58605538000009, 75.983605155634748 ], [ -103.61945538000009, 75.992705155634738 ], [ -103.551255380000086, 76.008705155634757 ], [ -103.504155380000086, 75.988105155634756 ] ] ], [ [ [ -122.769555380000085, 76.01820515563476 ], [ -122.889455380000086, 76.00450515563476 ], [ -122.612955380000088, 76.048905155634756 ], [ -122.648855380000086, 76.035505155634738 ], [ -122.769555380000085, 76.01820515563476 ] ] ], [ [ [ -94.816255380000086, 76.047505155634738 ], [ -94.865555380000103, 76.045905155634742 ], [ -94.907355380000098, 76.052605155634737 ], [ -94.7815553800001, 76.056005155634736 ], [ -94.816255380000086, 76.047505155634738 ] ] ], [ [ [ -103.213555380000088, 75.907305155634745 ], [ -103.858055380000096, 75.907805155634762 ], [ -102.258455380000086, 76.028305155634754 ], [ -102.489655380000087, 75.984105155634737 ], [ -103.213555380000088, 75.907305155634745 ] ] ], [ [ [ -65.049455380000097, 76.01390515563476 ], [ -65.106455380000085, 76.014705155634758 ], [ -65.221155380000084, 76.045505155634757 ], [ -64.955555380000078, 76.05500515563476 ], [ -65.049455380000097, 76.01390515563476 ] ] ], [ [ [ -118.270455380000087, 75.620505155634746 ], [ -118.682355380000089, 75.511305155634759 ], [ -119.384155380000095, 75.607105155634756 ], [ -118.552455380000097, 75.919805155634762 ], [ -117.445455380000098, 76.079905155634762 ], [ -118.270455380000087, 75.620505155634746 ] ] ], [ [ [ -64.055555380000101, 76.059405155634735 ], [ -64.0786553800001, 76.059105155634754 ], [ -64.146155380000096, 76.093005155634742 ], [ -64.014755380000082, 76.110505155634755 ], [ -64.055555380000101, 76.059405155634735 ] ] ], [ [ [ -94.929055380000079, 76.13690515563475 ], [ -95.054555380000096, 76.055905155634761 ], [ -95.174555380000101, 76.086105155634741 ], [ -95.140355380000102, 76.130005155634748 ], [ -94.929055380000079, 76.13690515563475 ] ] ], [ [ [ -79.028455380000082, 75.911805155634752 ], [ -79.432355380000104, 75.814105155634749 ], [ -79.778655380000089, 75.889705155634758 ], [ -78.88455538000008, 76.133705155634757 ], [ -79.198155380000088, 75.966105155634736 ], [ -79.028455380000082, 75.911805155634752 ] ] ], [ [ [ -81.396155380000096, 76.158805155634738 ], [ -81.49615538000009, 76.171805155634743 ], [ -81.241655380000083, 76.183305155634756 ], [ -81.299055380000084, 76.167905155634756 ], [ -81.396155380000096, 76.158805155634738 ] ] ], [ [ [ -61.899455380000092, 76.129705155634738 ], [ -61.965055380000081, 76.144105155634762 ], [ -61.962255380000101, 76.178605155634742 ], [ -61.881655380000097, 76.186605155634751 ], [ -61.899455380000092, 76.129705155634738 ] ] ], [ [ [ -79.889755380000082, 76.215805155634754 ], [ -79.940055380000103, 76.203905155634757 ], [ -80.017155380000105, 76.218405155634755 ], [ -79.912155380000087, 76.22680515563475 ], [ -79.889755380000082, 76.215805155634754 ] ] ], [ [ [ -102.841655380000091, 76.293205155634737 ], [ -102.536755380000088, 76.188405155634754 ], [ -103.579255380000092, 76.033205155634747 ], [ -104.438755380000089, 76.129305155634754 ], [ -102.841655380000091, 76.293205155634737 ] ] ], [ [ [ -20.343055380000095, 76.264205155634741 ], [ -20.406455380000097, 76.26360515563475 ], [ -20.660655380000094, 76.33840515563476 ], [ -20.158655380000084, 76.346905155634758 ], [ -20.343055380000095, 76.264205155634741 ] ] ], [ [ [ -69.97615538000008, 76.394105155634762 ], [ -70.151655380000079, 76.412205155634737 ], [ -70.188355380000104, 76.439105155634749 ], [ -69.895255380000094, 76.435805155634753 ], [ -69.97615538000008, 76.394105155634762 ] ] ], [ [ [ -89.481155380000104, 76.454805155634759 ], [ -89.574555380000106, 76.453005155634756 ], [ -89.632655380000102, 76.459505155634744 ], [ -89.597455380000099, 76.479805155634736 ], [ -89.481155380000104, 76.454805155634759 ] ] ], [ [ [ -20.388055380000083, 76.451705155634741 ], [ -20.49615538000009, 76.475005155634747 ], [ -20.2678553800001, 76.495205155634736 ], [ -20.271455380000106, 76.475305155634757 ], [ -20.388055380000083, 76.451705155634741 ] ] ], [ [ [ -83.996055380000087, 76.45080515563474 ], [ -84.060155380000083, 76.453505155634744 ], [ -84.082455380000084, 76.49620515563474 ], [ -83.984555380000103, 76.508005155634734 ], [ -83.996055380000087, 76.45080515563474 ] ] ], [ [ [ -21.353055380000086, 76.472505155634749 ], [ -21.445855380000097, 76.475305155634757 ], [ -21.489755380000105, 76.489705155634752 ], [ -21.249455380000086, 76.499705155634743 ], [ -21.353055380000086, 76.472505155634749 ] ] ], [ [ [ -20.793355380000094, 76.390005155634739 ], [ -20.946455380000089, 76.395305155634745 ], [ -21.1411553800001, 76.447505155634744 ], [ -20.715055380000081, 76.510005155634744 ], [ -20.793355380000094, 76.390005155634739 ] ] ], [ [ [ -97.790655380000089, 76.538505155634752 ], [ -97.862055380000101, 76.534305155634755 ], [ -98.03095538000008, 76.544205155634742 ], [ -98.006055380000106, 76.563005155634741 ], [ -97.790655380000089, 76.538505155634752 ] ] ], [ [ [ -20.712855380000093, 76.560805155634753 ], [ -20.9339553800001, 76.519705155634753 ], [ -20.939455380000084, 76.523305155634759 ], [ -20.626055380000082, 76.578205155634762 ], [ -20.712855380000093, 76.560805155634753 ] ] ], [ [ [ -96.440755380000098, 76.570105155634749 ], [ -96.512755380000101, 76.564605155634737 ], [ -96.535555380000091, 76.574605155634757 ], [ -96.414355380000103, 76.59380515563474 ], [ -96.440755380000098, 76.570105155634749 ] ] ], [ [ [ -69.669455380000102, 76.530505155634742 ], [ -69.763355380000093, 76.528905155634746 ], [ -70.036455380000092, 76.563305155634751 ], [ -69.464755380000099, 76.579405155634745 ], [ -69.669455380000102, 76.530505155634742 ] ] ], [ [ [ -96.555455380000097, 76.618205155634755 ], [ -96.567355380000095, 76.597905155634734 ], [ -96.69135538000009, 76.600505155634735 ], [ -96.606655380000092, 76.62120515563474 ], [ -96.555455380000097, 76.618205155634755 ] ] ], [ [ [ -97.164455380000078, 76.605205155634749 ], [ -97.22615538000008, 76.584505155634744 ], [ -97.299455380000097, 76.587205155634749 ], [ -97.21845538000008, 76.625005155634753 ], [ -97.164455380000078, 76.605205155634749 ] ] ], [ [ [ -99.253655380000097, 76.609605155634753 ], [ -99.332755380000094, 76.606605155634739 ], [ -99.371655380000092, 76.614405155634742 ], [ -99.206555380000097, 76.622205155634745 ], [ -99.253655380000097, 76.609605155634753 ] ] ], [ [ [ -21.083055380000104, 76.569105155634745 ], [ -21.403655380000089, 76.568305155634746 ], [ -21.547555380000091, 76.615305155634744 ], [ -20.963955380000101, 76.629105155634747 ], [ -21.083055380000104, 76.569105155634745 ] ] ], [ [ [ -98.964855380000088, 76.644505155634747 ], [ -99.088955380000087, 76.64430515563474 ], [ -99.093855380000093, 76.661005155634754 ], [ -99.02825538000009, 76.662005155634759 ], [ -98.964855380000088, 76.644505155634747 ] ] ], [ [ [ -104.043955380000085, 76.565705155634745 ], [ -103.717955380000092, 76.595205155634758 ], [ -103.010755380000091, 76.418805155634757 ], [ -104.160755380000097, 76.301205155634747 ], [ -104.608055380000096, 76.576505155634734 ], [ -103.937455380000088, 76.606605155634739 ], [ -104.043955380000085, 76.565705155634745 ] ] ], [ [ [ -98.368655380000092, 76.652905155634741 ], [ -98.152655380000084, 76.569705155634736 ], [ -98.342255380000097, 76.543705155634754 ], [ -97.648355380000083, 76.438905155634743 ], [ -97.461655380000082, 76.159105155634748 ], [ -97.583455380000089, 75.821705155634746 ], [ -97.799955380000085, 75.727905155634758 ], [ -97.38625538000008, 75.674905155634761 ], [ -97.373955380000098, 75.432905155634742 ], [ -97.231455380000085, 75.381805155634751 ], [ -97.711755380000085, 75.549505155634748 ], [ -98.040455380000083, 75.462505155634759 ], [ -97.855055380000096, 75.341105155634736 ], [ -98.131755380000101, 75.319005155634741 ], [ -97.569355380000104, 75.122305155634749 ], [ -98.03695538000008, 75.21340515563476 ], [ -98.154055380000102, 75.169405155634749 ], [ -97.936955380000086, 75.039805155634738 ], [ -100.172155380000092, 74.989205155634735 ], [ -100.462855380000093, 75.183505155634762 ], [ -99.97005538000009, 75.223205155634744 ], [ -100.662055380000098, 75.347305155634743 ], [ -99.695555380000087, 75.483405155634742 ], [ -100.234455380000085, 75.494505155634741 ], [ -99.527255380000085, 75.691805155634754 ], [ -102.774855380000091, 75.532805155634762 ], [ -102.469755380000095, 75.70570515563476 ], [ -102.024955380000094, 75.682905155634742 ], [ -102.29625538000009, 75.775505155634747 ], [ -102.095755380000085, 75.864505155634745 ], [ -101.292555380000096, 75.724605155634762 ], [ -100.866155380000095, 75.797805155634748 ], [ -101.291355380000098, 75.772205155634751 ], [ -101.564955380000086, 75.907805155634762 ], [ -101.306055380000089, 75.972105155634736 ], [ -101.83605538000009, 76.028005155634744 ], [ -101.356255380000093, 76.237105155634751 ], [ -102.082055380000085, 76.204605155634752 ], [ -101.83305538000009, 76.448805155634759 ], [ -99.826955380000086, 75.877705155634757 ], [ -99.521655380000098, 75.946005155634751 ], [ -100.123955380000098, 76.113905155634754 ], [ -99.451955380000086, 76.153605155634736 ], [ -100.416455380000087, 76.217905155634739 ], [ -99.813955380000095, 76.265505155634756 ], [ -100.942755380000094, 76.480505155634759 ], [ -99.62585538000009, 76.611705155634738 ], [ -99.075555380000097, 76.37290515563474 ], [ -98.81635538000009, 76.422405155634735 ], [ -98.963355380000095, 76.587105155634745 ], [ -98.527855380000091, 76.618805155634746 ], [ -98.800455380000088, 76.657005155634735 ], [ -98.368655380000092, 76.652905155634741 ] ] ], [ [ [ -100.018555380000095, 76.690605155634742 ], [ -100.097955380000087, 76.68740515563475 ], [ -100.137555380000094, 76.695105155634749 ], [ -100.077355380000085, 76.71140515563475 ], [ -100.018555380000095, 76.690605155634742 ] ] ], [ [ [ -99.538655380000094, 76.724605155634762 ], [ -99.43495538000009, 76.675705155634759 ], [ -99.838255380000092, 76.721005155634757 ], [ -99.591855380000098, 76.730405155634756 ], [ -99.538655380000094, 76.724605155634762 ] ] ], [ [ [ -100.73545538000009, 76.74020515563474 ], [ -100.256655380000097, 76.719805155634745 ], [ -101.591655380000091, 76.585205155634739 ], [ -101.476055380000091, 76.620305155634739 ], [ -100.73545538000009, 76.74020515563474 ] ] ], [ [ [ -120.946055380000089, 76.70680515563474 ], [ -121.049955380000085, 76.711005155634737 ], [ -121.076255380000092, 76.724805155634741 ], [ -120.843855380000093, 76.737205155634754 ], [ -120.946055380000089, 76.70680515563474 ] ] ], [ [ [ -19.648055380000102, 76.698305155634742 ], [ -19.74585538000008, 76.70080515563474 ], [ -19.857255380000083, 76.731905155634749 ], [ -19.605555380000084, 76.726405155634737 ], [ -19.648055380000102, 76.698305155634742 ] ] ], [ [ [ -99.926455380000093, 76.741205155634745 ], [ -99.991355380000087, 76.738405155634737 ], [ -100.052855380000096, 76.745605155634749 ], [ -99.992755380000091, 76.76190515563475 ], [ -99.926455380000093, 76.741205155634745 ] ] ], [ [ [ -18.653055380000097, 76.601605155634743 ], [ -18.548955380000081, 76.023605155634741 ], [ -18.635355380000078, 75.890005155634739 ], [ -19.141955380000098, 76.529405155634734 ], [ -18.763055380000083, 76.58780515563474 ], [ -19.019155380000086, 76.759405155634752 ], [ -18.653055380000097, 76.601605155634743 ] ] ], [ [ [ -108.609855380000099, 76.805705155634755 ], [ -108.355155380000099, 76.711805155634735 ], [ -108.632655380000088, 76.603105155634736 ], [ -108.452455380000089, 76.538205155634742 ], [ -108.515355380000088, 76.416105155634753 ], [ -108.003955380000093, 76.271405155634753 ], [ -108.359255380000093, 76.039405155634753 ], [ -107.598255380000097, 75.976405155634737 ], [ -107.981055380000086, 75.786305155634736 ], [ -107.074755380000099, 75.900205155634737 ], [ -106.871655380000092, 75.651705155634758 ], [ -106.616655380000097, 75.782305155634745 ], [ -106.853555380000088, 75.843605155634762 ], [ -106.762955380000093, 75.980205155634749 ], [ -106.063855380000092, 76.021705155634734 ], [ -105.392855380000086, 75.842605155634757 ], [ -105.327755380000099, 75.624205155634755 ], [ -106.030955380000094, 75.03330515563475 ], [ -107.091855380000098, 74.907705155634758 ], [ -107.670055380000093, 75.076505155634734 ], [ -108.336255380000097, 74.899805155634752 ], [ -108.707855380000098, 75.054005155634755 ], [ -112.738855380000089, 74.387805155634751 ], [ -114.398155380000091, 74.658105155634743 ], [ -112.919055380000088, 74.952305155634761 ], [ -111.531555380000086, 74.995205155634736 ], [ -110.870455380000095, 75.215405155634741 ], [ -112.330355380000086, 75.098405155634751 ], [ -112.27825538000009, 75.20080515563474 ], [ -112.633455380000086, 75.252505155634751 ], [ -112.856455380000085, 75.084205155634734 ], [ -113.852155380000099, 75.042605155634746 ], [ -113.620855380000094, 75.172505155634738 ], [ -113.805855380000096, 75.188205155634748 ], [ -113.744555380000094, 75.304605155634746 ], [ -113.242155380000085, 75.417305155634736 ], [ -113.958755380000099, 75.450905155634743 ], [ -114.151655380000093, 75.221005155634757 ], [ -114.584155380000098, 75.271305155634749 ], [ -114.249755380000096, 75.165105155634748 ], [ -114.403655380000089, 75.065405155634735 ], [ -115.039755380000088, 74.956905155634743 ], [ -115.170755380000088, 75.156505155634747 ], [ -115.572155380000098, 75.127305155634744 ], [ -115.478755380000095, 75.024405155634739 ], [ -115.618555380000089, 74.95140515563476 ], [ -116.121355380000097, 75.048205155634761 ], [ -115.951455380000098, 75.113705155634747 ], [ -116.166255380000095, 75.18430515563476 ], [ -116.754755380000091, 75.107405155634737 ], [ -117.616955380000093, 75.270205155634741 ], [ -117.099055380000095, 75.463005155634747 ], [ -116.064755380000094, 75.47110515563476 ], [ -114.998755380000091, 75.689405155634759 ], [ -117.173055380000093, 75.60210515563476 ], [ -116.692955380000086, 75.790805155634743 ], [ -114.802855380000096, 75.874005155634748 ], [ -116.701255380000092, 75.926505155634757 ], [ -116.053255380000095, 76.194405155634755 ], [ -114.665655380000089, 76.133105155634738 ], [ -115.806255380000096, 76.282505155634752 ], [ -114.71875538000009, 76.516905155634745 ], [ -114.057255380000086, 76.419505155634752 ], [ -113.938455380000093, 76.198805155634759 ], [ -112.441255380000086, 76.168005155634759 ], [ -111.707955380000087, 75.903805155634743 ], [ -112.171055380000098, 75.805905155634761 ], [ -111.41825538000009, 75.823105155634735 ], [ -111.199855380000088, 75.520905155634736 ], [ -108.90325538000009, 75.485605155634758 ], [ -109.023255380000094, 75.556705155634759 ], [ -108.841655380000091, 75.579205155634739 ], [ -108.91525538000009, 75.691205155634762 ], [ -109.94735538000009, 75.876505155634746 ], [ -109.240755380000095, 76.03160515563475 ], [ -109.329555380000087, 76.123705155634738 ], [ -110.311055380000099, 76.379605155634735 ], [ -109.690555380000092, 76.47220515563474 ], [ -109.158655380000098, 76.780905155634755 ], [ -108.609855380000099, 76.805705155634755 ] ] ], [ [ [ -19.691955380000081, 76.78190515563476 ], [ -19.768955380000079, 76.782505155634752 ], [ -19.809155380000078, 76.788605155634755 ], [ -19.590055380000081, 76.811605155634751 ], [ -19.691955380000081, 76.78190515563476 ] ] ], [ [ [ -97.101955380000078, 76.809405155634735 ], [ -97.227955380000083, 76.813305155634751 ], [ -97.262355380000088, 76.841605155634753 ], [ -97.114755380000105, 76.842905155634739 ], [ -97.101955380000078, 76.809405155634735 ] ] ], [ [ [ -89.787355380000093, 76.518005155634754 ], [ -90.243755380000096, 76.488005155634752 ], [ -90.624155380000104, 76.753805155634737 ], [ -89.994255380000084, 76.852005155634757 ], [ -89.765755380000087, 76.748605155634735 ], [ -89.924055380000084, 76.605005155634743 ], [ -89.787355380000093, 76.518005155634754 ] ] ], [ [ [ -20.192755380000079, 76.822505155634744 ], [ -20.336655380000082, 76.819105155634745 ], [ -20.389455380000101, 76.84720515563474 ], [ -20.210555380000102, 76.868605155634739 ], [ -20.192755380000079, 76.822505155634744 ] ] ], [ [ [ -113.559555380000091, 76.724505155634759 ], [ -114.044455380000088, 76.686705155634755 ], [ -114.866755380000086, 76.779905155634751 ], [ -113.758355380000097, 76.884605155634759 ], [ -113.434355380000099, 76.798205155634761 ], [ -113.559555380000091, 76.724505155634759 ] ] ], [ [ [ -94.297055380000103, 76.94940515563475 ], [ -94.446055380000104, 76.939505155634762 ], [ -94.453155380000084, 76.959605155634748 ], [ -94.348855380000089, 76.969605155634738 ], [ -94.297055380000103, 76.94940515563475 ] ] ], [ [ [ -97.012255380000084, 76.947905155634757 ], [ -97.07065538000009, 76.940705155634745 ], [ -97.117855380000094, 76.95540515563475 ], [ -96.947455380000093, 76.960105155634736 ], [ -97.012255380000084, 76.947905155634757 ] ] ], [ [ [ -78.730055380000096, 76.94970515563476 ], [ -78.809255380000081, 76.944105155634745 ], [ -78.819455380000079, 76.983505155634745 ], [ -78.729355380000101, 76.971805155634755 ], [ -78.730055380000096, 76.94970515563476 ] ] ], [ [ [ -97.35885538000008, 76.970105155634755 ], [ -97.410155380000106, 76.966305155634743 ], [ -97.511155380000105, 76.987205155634754 ], [ -97.241055380000091, 77.023305155634759 ], [ -97.35885538000008, 76.970105155634755 ] ] ], [ [ [ -103.592955380000092, 77.021705155634734 ], [ -103.657655380000094, 77.016405155634757 ], [ -103.720955380000092, 77.021105155634743 ], [ -103.668755380000093, 77.046505155634762 ], [ -103.592955380000092, 77.021705155634734 ] ] ], [ [ [ -95.628055380000092, 77.066205155634762 ], [ -94.276955380000089, 76.890505155634756 ], [ -93.83775538000009, 76.924605155634751 ], [ -93.271955380000094, 76.727205155634735 ], [ -93.716055380000086, 76.46340515563476 ], [ -93.649555380000095, 76.394105155634762 ], [ -93.145555380000104, 76.610305155634748 ], [ -91.612955380000102, 76.702905155634753 ], [ -90.57035538000008, 76.483205155634735 ], [ -91.507755380000106, 76.486005155634743 ], [ -89.40425538000008, 76.318505155634753 ], [ -89.288155380000092, 76.256405155634738 ], [ -90.420055380000093, 76.183505155634762 ], [ -90.145655380000079, 76.131505155634741 ], [ -91.636455380000086, 76.254805155634742 ], [ -90.300555380000105, 76.061505155634748 ], [ -91.097355380000096, 76.018105155634757 ], [ -91.242755380000091, 75.842505155634754 ], [ -89.987655380000092, 76.024805155634752 ], [ -89.696055380000104, 75.934705155634745 ], [ -89.813255380000101, 75.807605155634761 ], [ -89.171755380000093, 75.792205155634761 ], [ -89.676055380000093, 75.562805155634734 ], [ -89.242555380000084, 75.602705155634752 ], [ -88.83435538000009, 75.43710515563474 ], [ -88.922655380000094, 75.628405155634752 ], [ -88.724655380000087, 75.680805155634758 ], [ -88.286855380000105, 75.489005155634757 ], [ -87.719855380000098, 75.576705155634741 ], [ -87.593855380000093, 75.452605155634743 ], [ -87.273055380000102, 75.626805155634756 ], [ -86.446755380000099, 75.454505155634749 ], [ -86.547455380000088, 75.363805155634751 ], [ -83.897055380000097, 75.836305155634747 ], [ -81.592155380000094, 75.822605155634747 ], [ -81.110255380000098, 75.743905155634749 ], [ -81.25785538000008, 75.668205155634737 ], [ -79.952155380000079, 75.564405155634759 ], [ -80.399155380000082, 75.484105155634737 ], [ -79.628455380000105, 75.472505155634749 ], [ -79.471855380000079, 75.298905155634756 ], [ -80.3637553800001, 75.040105155634748 ], [ -79.41395538000009, 74.926305155634751 ], [ -80.441455380000093, 74.928105155634753 ], [ -80.201455380000084, 74.657405155634748 ], [ -81.792555380000096, 74.49080515563476 ], [ -82.982055380000105, 74.600005155634747 ], [ -83.131455380000091, 74.842505155634754 ], [ -83.487055380000101, 74.912005155634759 ], [ -83.340455380000094, 74.762105155634757 ], [ -83.525955380000084, 74.587205155634749 ], [ -84.272955380000099, 74.529505155634737 ], [ -84.924855380000082, 74.529205155634756 ], [ -85.023155380000105, 74.687505155634753 ], [ -85.260255380000103, 74.512405155634738 ], [ -85.545555380000081, 74.685005155634755 ], [ -85.541855380000101, 74.540305155634755 ], [ -86.041455380000087, 74.492305155634753 ], [ -86.207055380000099, 74.615005155634762 ], [ -86.421455380000083, 74.505005155634748 ], [ -86.824255380000096, 74.600705155634742 ], [ -86.730655380000087, 74.477405155634742 ], [ -88.420955380000095, 74.503505155634755 ], [ -88.629755380000091, 74.600705155634742 ], [ -88.427055380000098, 74.768605155634745 ], [ -88.534555380000086, 74.913105155634739 ], [ -88.834455380000094, 74.679005155634755 ], [ -89.035755380000097, 74.842005155634737 ], [ -89.248055380000096, 74.753405155634752 ], [ -89.167755380000102, 74.609105155634737 ], [ -89.645555380000104, 74.553605155634742 ], [ -91.044455380000102, 74.711505155634754 ], [ -90.816955380000081, 74.881405155634738 ], [ -91.234355380000096, 74.758605155634754 ], [ -91.163055380000088, 74.640205155634746 ], [ -91.660955380000104, 74.655805155634752 ], [ -92.160755380000097, 74.789205155634747 ], [ -92.091155380000089, 74.89890515563475 ], [ -92.296455380000083, 75.050405155634749 ], [ -92.045755380000088, 75.095205155634758 ], [ -92.567155380000088, 75.287005155634759 ], [ -92.13315538000009, 75.611305155634753 ], [ -92.200255380000101, 75.825205155634748 ], [ -93.159855380000096, 76.351105155634755 ], [ -95.383555380000104, 76.23590515563474 ], [ -94.930955380000086, 76.340905155634758 ], [ -96.138255380000089, 76.509505155634756 ], [ -95.718355380000105, 76.610505155634755 ], [ -97.002055380000087, 76.73450515563475 ], [ -96.425255380000095, 76.758605155634754 ], [ -96.95305538000008, 76.899605155634745 ], [ -96.822955380000082, 76.976205155634759 ], [ -95.628055380000092, 77.066205155634762 ] ] ], [ [ [ -103.811955380000086, 77.057205155634747 ], [ -103.88485538000009, 77.053105155634753 ], [ -103.927455380000097, 77.060305155634737 ], [ -103.790755380000093, 77.071405155634736 ], [ -103.811955380000086, 77.057205155634747 ] ] ], [ [ [ -113.298855380000091, 77.075605155634761 ], [ -113.386455380000086, 77.076805155634744 ], [ -113.214655380000096, 77.100505155634735 ], [ -113.298855380000091, 77.075605155634761 ] ] ], [ [ [ -113.725555380000088, 77.101105155634755 ], [ -113.823555380000087, 77.097905155634734 ], [ -113.847855380000098, 77.11550515563475 ], [ -113.650655380000089, 77.132505155634746 ], [ -113.725555380000088, 77.101105155634755 ] ] ], [ [ [ -104.149355380000088, 77.075105155634745 ], [ -104.343555380000097, 77.070205155634753 ], [ -104.416855380000086, 77.100005155634747 ], [ -103.924955380000085, 77.126405155634743 ], [ -104.149355380000088, 77.075105155634745 ] ] ], [ [ [ -95.828855380000078, 77.147605155634736 ], [ -95.919155380000092, 77.145705155634758 ], [ -95.942955380000086, 77.155605155634746 ], [ -95.806855380000087, 77.156105155634762 ], [ -95.828855380000078, 77.147605155634736 ] ] ], [ [ [ -90.888055380000083, 77.141105155634747 ], [ -91.067855380000083, 77.146905155634741 ], [ -91.332655380000091, 77.205605155634757 ], [ -90.784555380000086, 77.185005155634755 ], [ -90.888055380000083, 77.141105155634747 ] ] ], [ [ [ -95.346855380000079, 77.167505155634743 ], [ -95.536555380000095, 77.182105155634744 ], [ -95.691155380000083, 77.235305155634748 ], [ -95.303255380000081, 77.207805155634745 ], [ -95.346855380000079, 77.167505155634743 ] ] ], [ [ [ -71.942255380000091, 77.30440515563474 ], [ -72.115055380000086, 77.314705155634741 ], [ -72.573955380000086, 77.413905155634737 ], [ -71.345855380000103, 77.375805155634751 ], [ -71.942255380000091, 77.30440515563474 ] ] ], [ [ [ -70.667755380000102, 77.457805155634745 ], [ -70.056455380000102, 77.399105155634757 ], [ -71.299455380000097, 77.44770515563475 ], [ -71.091655380000105, 77.465305155634738 ], [ -70.667755380000102, 77.457805155634745 ] ] ], [ [ [ -66.196455380000089, 77.504405155634757 ], [ -66.6608553800001, 77.488605155634744 ], [ -66.731455380000085, 77.507205155634736 ], [ -66.292755380000102, 77.517205155634755 ], [ -66.196455380000089, 77.504405155634757 ] ] ], [ [ [ -116.413655380000094, 77.531005155634759 ], [ -115.449455380000089, 77.291705155634745 ], [ -116.334955380000096, 77.114305155634739 ], [ -115.733855380000094, 76.924805155634758 ], [ -116.304955380000095, 76.903105155634748 ], [ -115.845755380000085, 76.672705155634745 ], [ -116.959855380000093, 76.524305155634735 ], [ -116.968655380000087, 76.303205155634757 ], [ -117.945455380000098, 76.400705155634753 ], [ -117.773455380000087, 76.808105155634749 ], [ -118.389455380000086, 76.701805155634744 ], [ -118.318655380000095, 76.538605155634755 ], [ -118.89085538000009, 76.500705155634748 ], [ -118.543355380000094, 76.353605155634753 ], [ -119.018055380000092, 76.08950515563474 ], [ -119.423455380000092, 76.328605155634747 ], [ -119.649255380000099, 76.259305155634749 ], [ -119.503555380000094, 76.10780515563475 ], [ -119.686855380000097, 76.095105155634755 ], [ -119.384655380000098, 75.997305155634749 ], [ -119.801055380000093, 75.857205155634759 ], [ -120.447955380000096, 75.823605155634752 ], [ -120.365055380000086, 75.991805155634736 ], [ -120.787055380000098, 76.181405155634749 ], [ -120.957055380000085, 76.156405155634744 ], [ -120.879855380000095, 75.952905155634753 ], [ -121.237455380000085, 75.924005155634759 ], [ -122.493855380000099, 75.943205155634743 ], [ -122.604155380000094, 75.988405155634737 ], [ -122.423855380000091, 76.083105155634755 ], [ -122.511355380000097, 76.168205155634737 ], [ -122.987255380000093, 76.105305155634753 ], [ -122.290555380000086, 76.404205155634756 ], [ -121.474555380000098, 76.446805155634749 ], [ -121.143255380000099, 76.672205155634757 ], [ -120.448055380000099, 76.756105155634756 ], [ -119.103455380000085, 77.295405155634754 ], [ -117.052955380000085, 77.279805155634747 ], [ -116.635655380000088, 77.346805155634755 ], [ -117.02655538000009, 77.454905155634762 ], [ -116.877955380000088, 77.51820515563476 ], [ -116.413655380000094, 77.531005155634759 ] ] ], [ [ [ -19.834455380000094, 77.505505155634737 ], [ -19.93535538000009, 77.518005155634754 ], [ -20.041655380000094, 77.565805155634749 ], [ -19.8303553800001, 77.55470515563475 ], [ -19.834455380000094, 77.505505155634737 ] ] ], [ [ [ -85.026855380000086, 77.57240515563474 ], [ -84.906455380000097, 77.503705155634762 ], [ -85.585155380000089, 77.550705155634759 ], [ -85.364555380000098, 77.591705155634756 ], [ -85.026855380000086, 77.57240515563474 ] ] ], [ [ [ -115.95205538000009, 77.617105155634746 ], [ -116.005855380000085, 77.60950515563475 ], [ -116.055555380000087, 77.614705155634752 ], [ -115.982655380000097, 77.636105155634752 ], [ -115.95205538000009, 77.617105155634746 ] ] ], [ [ [ -66.9005553800001, 77.591705155634756 ], [ -66.970055380000105, 77.605005155634743 ], [ -66.625855380000104, 77.636405155634762 ], [ -66.765055380000092, 77.605005155634743 ], [ -66.9005553800001, 77.591705155634756 ] ] ], [ [ [ -90.724655380000087, 77.655705155634749 ], [ -89.831355380000105, 77.50020515563476 ], [ -89.675355380000099, 77.353305155634743 ], [ -90.366355380000101, 77.214205155634758 ], [ -91.291755380000097, 77.431705155634759 ], [ -91.269655380000103, 77.609105155634737 ], [ -90.724655380000087, 77.655705155634749 ] ] ], [ [ [ -20.113355380000087, 77.653305155634754 ], [ -20.008355380000097, 77.606905155634749 ], [ -20.438355380000104, 77.62890515563474 ], [ -20.141655380000088, 77.688305155634751 ], [ -20.113355380000087, 77.653305155634754 ] ] ], [ [ [ -115.690655380000095, 77.701705155634741 ], [ -115.777255380000085, 77.698905155634762 ], [ -115.763755380000092, 77.737005155634748 ], [ -115.690655380000095, 77.701705155634741 ] ] ], [ [ [ -104.951855380000097, 77.409005155634745 ], [ -104.350855380000098, 77.159905155634746 ], [ -105.226855380000089, 77.186905155634761 ], [ -106.04795538000009, 77.710005155634761 ], [ -105.62885538000009, 77.734005155634762 ], [ -104.951855380000097, 77.409005155634745 ] ] ], [ [ [ -95.49755538000008, 77.763105155634761 ], [ -93.658455380000106, 77.781805155634757 ], [ -93.155555380000095, 77.694105155634745 ], [ -93.978455380000099, 77.455005155634737 ], [ -95.9613553800001, 77.470605155634743 ], [ -96.339155380000079, 77.604405155634751 ], [ -95.49755538000008, 77.763105155634761 ] ] ], [ [ [ -77.770555380000104, 77.803105155634753 ], [ -77.864055380000082, 77.806605155634756 ], [ -77.909255380000104, 77.859105155634737 ], [ -77.6291553800001, 77.847005155634761 ], [ -77.770555380000104, 77.803105155634753 ] ] ], [ [ [ -101.966855380000098, 77.888105155634761 ], [ -101.551455380000093, 77.874105155634751 ], [ -100.939355380000094, 77.742805155634741 ], [ -102.042655380000099, 77.674405155634744 ], [ -102.445255380000091, 77.814105155634749 ], [ -101.966855380000098, 77.888105155634761 ] ] ], [ [ [ -76.644855380000081, 77.898505155634737 ], [ -76.685555380000096, 77.889905155634736 ], [ -76.749355380000083, 77.890805155634737 ], [ -76.745355380000092, 77.912805155634757 ], [ -76.644855380000081, 77.898505155634737 ] ] ], [ [ [ -18.03725538000009, 77.666105155634753 ], [ -18.242255380000103, 77.68000515563476 ], [ -17.911155380000082, 77.887805155634751 ], [ -17.584155380000084, 77.83780515563474 ], [ -18.03725538000009, 77.666105155634753 ] ] ], [ [ [ -19.542255380000086, 77.916105155634753 ], [ -19.618655380000092, 77.922805155634748 ], [ -19.699755380000084, 77.965005155634756 ], [ -19.613655380000097, 77.971905155634758 ], [ -19.542255380000086, 77.916105155634753 ] ] ], [ [ [ -19.940555380000092, 77.966705155634756 ], [ -20.07235538000009, 77.95740515563476 ], [ -19.229155380000094, 77.829705155634755 ], [ -20.490855380000085, 77.954705155634755 ], [ -19.940555380000092, 77.966705155634756 ] ] ], [ [ [ -21.31035538000009, 77.88550515563476 ], [ -21.428055380000103, 77.923605155634746 ], [ -21.111155380000099, 78.01220515563476 ], [ -21.258055380000087, 77.903005155634744 ], [ -21.31035538000009, 77.88550515563476 ] ] ], [ [ [ -114.30565538000009, 77.975105155634751 ], [ -113.555555380000087, 77.800205155634742 ], [ -114.182355380000089, 77.687305155634746 ], [ -115.093955380000097, 77.957005155634747 ], [ -114.30565538000009, 77.975105155634751 ] ] ], [ [ [ -20.536155380000082, 78.015805155634737 ], [ -20.631955380000079, 78.032505155634752 ], [ -20.362855380000099, 78.051605155634761 ], [ -20.39085538000009, 78.039705155634735 ], [ -20.536155380000082, 78.015805155634737 ] ] ], [ [ [ -109.676055380000093, 78.085405155634746 ], [ -109.50815538000009, 78.01820515563476 ], [ -110.826355380000095, 77.852305155634738 ], [ -110.089355380000086, 77.76050515563476 ], [ -110.173355380000089, 77.525405155634743 ], [ -110.807155380000097, 77.42000515563474 ], [ -112.341055380000086, 77.355505155634759 ], [ -113.100355380000096, 77.534405155634758 ], [ -113.26285538000009, 77.797905155634751 ], [ -112.317755380000094, 77.989405155634742 ], [ -109.676055380000093, 78.085405155634746 ] ] ], [ [ [ -19.276655380000079, 78.117705155634738 ], [ -19.363055380000105, 78.122505155634755 ], [ -19.383355380000097, 78.127205155634741 ], [ -19.298955380000081, 78.175805155634762 ], [ -19.276655380000079, 78.117705155634738 ] ] ], [ [ [ -19.043355380000094, 78.076905155634748 ], [ -19.191955380000081, 78.117705155634738 ], [ -18.82975538000008, 78.176405155634754 ], [ -18.91225538000009, 78.147505155634761 ], [ -19.043355380000094, 78.076905155634748 ] ] ], [ [ [ -20.915855380000096, 78.146105155634743 ], [ -20.986455380000081, 78.15030515563474 ], [ -21.043055380000084, 78.181405155634749 ], [ -20.855555380000084, 78.165305155634755 ], [ -20.915855380000096, 78.146105155634743 ] ] ], [ [ [ -101.683555380000087, 78.14460515563475 ], [ -101.808955380000086, 78.150205155634737 ], [ -101.818755380000098, 78.168405155634744 ], [ -101.582555380000088, 78.185505155634743 ], [ -101.683555380000087, 78.14460515563475 ] ] ], [ [ [ -20.526655380000079, 78.161405155634739 ], [ -20.6000553800001, 78.161605155634746 ], [ -20.783355380000103, 78.19140515563474 ], [ -20.302255380000105, 78.213305155634757 ], [ -20.526655380000079, 78.161405155634739 ] ] ], [ [ [ -103.069155380000097, 78.125605155634744 ], [ -103.277955380000094, 78.157005155634735 ], [ -102.729555380000093, 78.211905155634739 ], [ -102.917355380000089, 78.183505155634762 ], [ -103.069155380000097, 78.125605155634744 ] ] ], [ [ [ -94.446255380000082, 78.170805155634739 ], [ -94.5923553800001, 78.177605155634737 ], [ -94.77925538000008, 78.266005155634744 ], [ -94.50955538000008, 78.25420515563475 ], [ -94.446255380000082, 78.170805155634739 ] ] ], [ [ [ -113.835755380000094, 78.263805155634756 ], [ -113.941755380000089, 78.265905155634741 ], [ -113.940355380000085, 78.281705155634754 ], [ -113.818955380000091, 78.275405155634743 ], [ -113.835755380000094, 78.263805155634756 ] ] ], [ [ [ -19.490555380000103, 78.241405155634752 ], [ -19.553655380000095, 78.238005155634752 ], [ -19.594555380000088, 78.24620515563474 ], [ -19.422755380000098, 78.276705155634758 ], [ -19.490555380000103, 78.241405155634752 ] ] ], [ [ [ -113.538155380000092, 78.299805155634758 ], [ -113.614555380000098, 78.293305155634741 ], [ -113.714455380000089, 78.302805155634744 ], [ -113.629755380000091, 78.315005155634751 ], [ -113.538155380000092, 78.299805155634758 ] ] ], [ [ [ -19.158955380000094, 78.240305155634744 ], [ -19.353355380000096, 78.28330515563475 ], [ -18.885555380000085, 78.29530515563475 ], [ -18.901955380000089, 78.285305155634759 ], [ -19.158955380000094, 78.240305155634744 ] ] ], [ [ [ -19.633355380000097, 78.276705155634758 ], [ -19.677555380000086, 78.386405155634762 ], [ -19.490555380000103, 78.330505155634754 ], [ -19.534455380000082, 78.288305155634745 ], [ -19.633355380000097, 78.276705155634758 ] ] ], [ [ [ -19.288355380000098, 78.313905155634743 ], [ -19.402555380000081, 78.394405155634743 ], [ -19.081955380000096, 78.363005155634752 ], [ -19.240355380000096, 78.320805155634744 ], [ -19.288355380000098, 78.313905155634743 ] ] ], [ [ [ -18.970055380000105, 78.392505155634737 ], [ -19.083055380000104, 78.40800515563474 ], [ -19.097855380000084, 78.425305155634746 ], [ -18.881155380000081, 78.428905155634752 ], [ -18.970055380000105, 78.392505155634737 ] ] ], [ [ [ -88.357955380000078, 78.249805155634746 ], [ -88.471255380000088, 78.291605155634741 ], [ -88.04325538000009, 78.444005155634741 ], [ -88.274855380000105, 78.276305155634745 ], [ -88.357955380000078, 78.249805155634746 ] ] ], [ [ [ -19.126155380000085, 78.455305155634747 ], [ -19.2541553800001, 78.445805155634744 ], [ -18.964155380000079, 78.475005155634747 ], [ -18.985855380000089, 78.466105155634736 ], [ -19.126155380000085, 78.455305155634747 ] ] ], [ [ [ -18.571955380000105, 78.578005155634756 ], [ -18.738955380000078, 78.606105155634751 ], [ -18.314755380000094, 78.673605155634746 ], [ -18.335355380000095, 78.656105155634762 ], [ -18.571955380000105, 78.578005155634756 ] ] ], [ [ [ -110.591955380000087, 78.742605155634735 ], [ -109.218655380000087, 78.447505155634744 ], [ -109.473955380000092, 78.286905155634756 ], [ -113.226155380000094, 78.303105155634753 ], [ -110.591955380000087, 78.742605155634735 ] ] ], [ [ [ -74.222555380000102, 78.704705155634755 ], [ -74.522355380000079, 78.716605155634753 ], [ -74.649355380000088, 78.764905155634736 ], [ -74.089355380000086, 78.736105155634746 ], [ -74.222555380000102, 78.704705155634755 ] ] ], [ [ [ -96.310955380000081, 78.538705155634759 ], [ -94.928055380000103, 78.374205155634755 ], [ -95.457855380000098, 78.233705155634752 ], [ -94.981755380000095, 78.101005155634752 ], [ -95.243655380000092, 77.953905155634757 ], [ -97.1471553800001, 77.813205155634748 ], [ -97.124855380000099, 77.913605155634755 ], [ -97.862055380000101, 78.029105155634753 ], [ -96.9536553800001, 78.135305155634754 ], [ -98.039855380000091, 78.227505155634745 ], [ -97.900855380000081, 78.260705155634739 ], [ -98.422055380000103, 78.453405155634741 ], [ -98.179855380000106, 78.544305155634746 ], [ -98.489955380000083, 78.772105155634748 ], [ -97.600355380000082, 78.802605155634737 ], [ -96.310955380000081, 78.538705155634759 ] ] ], [ [ [ -18.243055380000101, 78.750805155634751 ], [ -18.297255380000081, 78.856105155634751 ], [ -18.075555380000083, 78.817805155634758 ], [ -18.095855380000103, 78.794405155634749 ], [ -18.243055380000101, 78.750805155634751 ] ] ], [ [ [ -19.346955380000082, 78.811405155634745 ], [ -19.159455380000082, 78.770805155634761 ], [ -19.756655380000097, 78.79530515563475 ], [ -19.190855380000102, 78.953005155634756 ], [ -19.346955380000082, 78.811405155634745 ] ] ], [ [ [ -101.309855380000087, 79.026305155634745 ], [ -101.410155380000091, 79.017705155634744 ], [ -101.423755380000088, 79.042405155634739 ], [ -101.359755380000095, 79.053705155634745 ], [ -101.309855380000087, 79.026305155634745 ] ] ], [ [ [ -86.244255380000084, 78.908105155634743 ], [ -86.480955380000097, 78.933105155634749 ], [ -85.214355380000086, 79.061105155634735 ], [ -85.317455380000098, 79.007405155634743 ], [ -86.244255380000084, 78.908105155634743 ] ] ], [ [ [ -83.8209553800001, 79.086205155634744 ], [ -83.875455380000091, 79.082005155634747 ], [ -83.951255380000106, 79.089705155634746 ], [ -83.890755380000087, 79.108805155634755 ], [ -83.8209553800001, 79.086205155634744 ] ] ], [ [ [ -18.03725538000009, 78.992705155634738 ], [ -18.107255380000083, 79.079405155634745 ], [ -17.8500553800001, 79.215505155634744 ], [ -17.556455380000102, 79.164105155634743 ], [ -18.03725538000009, 78.992705155634738 ] ] ], [ [ [ -94.476655380000096, 79.24820515563475 ], [ -94.574755380000084, 79.238405155634737 ], [ -94.654055380000102, 79.241805155634736 ], [ -94.574255380000096, 79.264905155634736 ], [ -94.476655380000096, 79.24820515563475 ] ] ], [ [ [ -103.465155380000098, 79.316105155634759 ], [ -102.704055380000085, 79.147905155634746 ], [ -102.786755380000088, 78.940605155634742 ], [ -102.57405538000009, 78.88060515563474 ], [ -101.795155380000097, 79.078105155634759 ], [ -100.995955380000098, 78.925805155634762 ], [ -101.153955380000099, 78.81270515563476 ], [ -100.969855380000098, 78.754605155634735 ], [ -100.298055380000093, 78.820005155634746 ], [ -99.536055380000093, 78.60380515563476 ], [ -99.816755380000089, 78.419405155634749 ], [ -99.716155380000089, 78.287405155634744 ], [ -98.955555380000092, 78.046305155634755 ], [ -99.141855380000095, 77.853005155634762 ], [ -99.960255380000092, 77.786505155634742 ], [ -100.534155380000087, 77.849905155634744 ], [ -100.966555380000088, 78.181605155634756 ], [ -102.741055380000091, 78.256905155634755 ], [ -102.698155380000088, 78.375505155634741 ], [ -104.400055380000097, 78.253805155634737 ], [ -104.95335538000009, 78.492305155634753 ], [ -103.484655380000092, 78.502405155634747 ], [ -103.349455380000094, 78.613405155634737 ], [ -103.942955380000086, 78.645705155634758 ], [ -103.354855380000089, 78.757305155634739 ], [ -104.056055380000089, 78.76330515563474 ], [ -103.864755380000091, 78.889305155634744 ], [ -104.110955380000092, 78.961105155634741 ], [ -104.951755380000094, 78.793505155634747 ], [ -104.665455380000097, 79.007105155634761 ], [ -105.46405538000009, 79.014105155634738 ], [ -105.623255380000089, 79.200505155634758 ], [ -105.375755380000086, 79.324005155634737 ], [ -103.465155380000098, 79.316105155634759 ] ] ], [ [ [ -98.746955380000088, 79.919605155634756 ], [ -98.722655380000106, 79.717105155634741 ], [ -98.890355380000088, 79.69370515563476 ], [ -100.164255380000085, 79.906405155634744 ], [ -100.233155380000099, 80.053205155634757 ], [ -99.502355380000097, 80.165005155634745 ], [ -98.924555380000086, 80.08640515563475 ], [ -98.746955380000088, 79.919605155634756 ] ] ], [ [ [ -98.840255380000087, 80.176905155634742 ], [ -99.091755380000095, 80.149705155634749 ], [ -99.224655380000087, 80.184705155634745 ], [ -98.999955380000088, 80.219805155634745 ], [ -98.840255380000087, 80.176905155634742 ] ] ], [ [ [ -19.908355380000103, 80.059105155634754 ], [ -20.014155380000091, 80.096605155634748 ], [ -19.756955380000079, 80.241405155634752 ], [ -19.018955380000079, 80.163605155634755 ], [ -19.908355380000103, 80.059105155634754 ] ] ], [ [ [ -66.595255380000083, 80.608605155634748 ], [ -66.789155380000096, 80.610305155634748 ], [ -66.896155380000096, 80.671105155634748 ], [ -66.531755380000078, 80.61690515563474 ], [ -66.595255380000083, 80.608605155634748 ] ] ], [ [ [ -95.069655380000086, 80.701305155634756 ], [ -95.198655380000105, 80.635905155634745 ], [ -96.09945538000008, 80.689505155634762 ], [ -95.333655380000096, 80.725605155634739 ], [ -95.069655380000086, 80.701305155634756 ] ] ], [ [ [ -92.744855380000104, 81.349305155634752 ], [ -91.877955380000088, 81.215805155634754 ], [ -90.724055380000095, 80.609905155634735 ], [ -88.940255380000082, 80.508805155634761 ], [ -89.186455380000098, 80.44310515563474 ], [ -89.026655380000079, 80.338305155634757 ], [ -89.142155380000105, 80.284105155634748 ], [ -88.715855380000079, 80.146405155634753 ], [ -88.178655380000095, 80.144205155634737 ], [ -88.606755380000095, 80.325205155634748 ], [ -88.485655380000082, 80.44140515563474 ], [ -87.578955380000082, 80.431305155634746 ], [ -87.431555380000106, 80.204405155634745 ], [ -87.988055380000105, 80.122405155634752 ], [ -87.085055380000085, 80.078105155634759 ], [ -87.457055380000099, 79.854305155634748 ], [ -86.97015538000008, 79.913005155634735 ], [ -87.412755380000078, 79.539205155634747 ], [ -86.390955380000094, 79.680405155634745 ], [ -85.9947553800001, 79.459405155634741 ], [ -85.667655380000099, 79.631705155634748 ], [ -84.914955380000094, 79.309705155634745 ], [ -86.962055380000095, 79.065605155634742 ], [ -87.665155380000101, 78.668905155634761 ], [ -88.043455380000097, 78.834505155634744 ], [ -87.728555380000103, 79.09720515563474 ], [ -88.223755380000085, 78.999105155634751 ], [ -88.204355380000095, 78.713705155634742 ], [ -88.341255380000092, 78.68400515563475 ], [ -87.93165538000008, 78.608305155634739 ], [ -88.249155380000104, 78.484305155634743 ], [ -88.74015538000009, 78.599705155634737 ], [ -88.591655380000105, 78.441605155634747 ], [ -88.9142553800001, 78.165105155634748 ], [ -90.07235538000009, 78.632305155634739 ], [ -90.101355380000086, 78.50420515563475 ], [ -89.483755380000105, 78.176305155634751 ], [ -90.366955380000093, 78.342905155634739 ], [ -90.729455380000104, 78.319405155634755 ], [ -90.387055380000106, 78.259805155634737 ], [ -90.444555380000082, 78.137005155634753 ], [ -92.070455380000084, 78.210705155634756 ], [ -93.014055380000087, 78.472305155634743 ], [ -91.713555380000088, 78.543905155634761 ], [ -93.307355380000104, 78.600205155634754 ], [ -93.882455380000096, 78.786705155634749 ], [ -93.092655380000082, 78.755305155634758 ], [ -94.37085538000008, 78.991605155634758 ], [ -93.341555380000102, 79.174205155634738 ], [ -90.468155380000098, 79.240705155634757 ], [ -92.303055380000103, 79.209505155634744 ], [ -92.696355380000085, 79.285005155634749 ], [ -91.185155380000083, 79.393105155634757 ], [ -93.141555380000085, 79.475705155634742 ], [ -94.102955380000083, 79.274105155634757 ], [ -94.261955380000103, 79.29100515563475 ], [ -93.916555380000091, 79.391105155634747 ], [ -95.304255380000086, 79.312605155634756 ], [ -95.793655380000104, 79.509705155634762 ], [ -94.360255380000098, 79.772905155634746 ], [ -95.924655380000104, 79.646205155634746 ], [ -96.650155380000086, 79.872205155634745 ], [ -96.244955380000079, 79.925005155634736 ], [ -96.756855380000104, 80.106705155634742 ], [ -94.531055380000083, 80.005005155634748 ], [ -94.824955380000091, 80.111905155634744 ], [ -94.131055380000106, 80.196705155634746 ], [ -95.516055380000097, 80.147305155634754 ], [ -95.731955380000102, 80.19940515563475 ], [ -95.261655380000093, 80.254405155634757 ], [ -96.110255380000098, 80.218005155634742 ], [ -96.677555380000086, 80.368005155634748 ], [ -95.26755538000009, 80.387105155634757 ], [ -96.0589553800001, 80.522905155634746 ], [ -95.829855380000083, 80.618405155634761 ], [ -93.808155380000102, 80.564505155634762 ], [ -94.675455380000102, 80.698205155634739 ], [ -94.126555380000099, 80.740005155634762 ], [ -95.510755380000091, 80.93740515563475 ], [ -93.020255380000094, 81.205905155634738 ], [ -94.42135538000008, 81.286005155634754 ], [ -94.178455380000088, 81.391205155634751 ], [ -92.744855380000104, 81.349305155634752 ] ] ], [ [ [ -91.811355380000094, 81.502905155634735 ], [ -91.984855380000084, 81.51050515563476 ], [ -91.991655380000083, 81.525105155634762 ], [ -91.7755553800001, 81.512305155634735 ], [ -91.811355380000094, 81.502905155634735 ] ] ], [ [ [ -91.645455380000101, 81.571405155634736 ], [ -91.787655380000103, 81.577205155634758 ], [ -91.815455380000088, 81.593705155634737 ], [ -91.596355380000091, 81.585605155634752 ], [ -91.645455380000101, 81.571405155634736 ] ] ], [ [ [ -66.133355380000097, 81.600605155634739 ], [ -66.304255380000086, 81.589205155634758 ], [ -66.546255380000105, 81.605705155634737 ], [ -66.398755380000097, 81.622005155634739 ], [ -66.133355380000097, 81.600605155634739 ] ] ], [ [ [ -20.597255380000092, 81.672505155634738 ], [ -20.520055380000088, 81.665805155634743 ], [ -20.164455380000078, 81.681905155634738 ], [ -20.930555380000101, 81.606405155634761 ], [ -20.7678553800001, 81.67830515563476 ], [ -20.971155380000084, 81.714405155634736 ], [ -20.597255380000092, 81.672505155634738 ] ] ], [ [ [ -64.779955380000104, 81.731405155634761 ], [ -64.934555380000091, 81.728105155634736 ], [ -64.997455380000105, 81.740405155634747 ], [ -64.751155380000085, 81.742005155634743 ], [ -64.779955380000104, 81.731405155634761 ] ] ], [ [ [ -18.585555380000102, 81.646605155634759 ], [ -19.173055380000079, 81.749405155634761 ], [ -19.24585538000008, 81.777805155634738 ], [ -18.304455380000093, 81.662205155634737 ], [ -18.585555380000102, 81.646605155634759 ] ] ], [ [ [ -19.777855380000091, 81.870205155634736 ], [ -20.245555380000098, 81.90030515563474 ], [ -20.781955380000085, 82.133905155634736 ], [ -20.30665538000008, 82.130505155634737 ], [ -19.777855380000091, 81.870205155634736 ] ] ], [ [ [ -18.858355380000091, 81.974405155634756 ], [ -19.003055380000092, 81.989705155634752 ], [ -19.41395538000009, 82.205505155634754 ], [ -18.792255380000086, 81.99190515563474 ], [ -18.858355380000091, 81.974405155634756 ] ] ], [ [ [ -51.888655380000102, 82.208905155634753 ], [ -52.2233553800001, 82.218605155634762 ], [ -52.293955380000085, 82.277505155634756 ], [ -51.795355380000103, 82.214205155634758 ], [ -51.888655380000102, 82.208905155634753 ] ] ], [ [ [ -51.468955380000097, 81.968305155634752 ], [ -53.164455380000078, 82.105805155634741 ], [ -53.357555380000093, 82.225005155634747 ], [ -52.818355380000099, 82.31670515563475 ], [ -51.191955380000081, 81.993605155634739 ], [ -51.468955380000097, 81.968305155634752 ] ] ], [ [ [ -48.212555380000083, 82.395805155634761 ], [ -48.427855380000096, 82.468305155634752 ], [ -48.864455380000095, 82.539105155634743 ], [ -48.034755380000092, 82.464405155634736 ], [ -48.212555380000083, 82.395805155634761 ] ] ], [ [ [ -46.003055380000092, 82.644405155634743 ], [ -44.418955380000085, 82.366105155634742 ], [ -45.067255380000091, 82.216705155634756 ], [ -44.737255380000079, 82.09580515563475 ], [ -45.076655380000091, 82.055805155634758 ], [ -47.749155380000104, 82.625005155634753 ], [ -46.003055380000092, 82.644405155634743 ] ] ], [ [ [ -40.174455380000097, 82.660305155634759 ], [ -40.255555380000089, 82.65970515563474 ], [ -40.472555380000102, 82.686405155634745 ], [ -40.289155380000096, 82.69800515563476 ], [ -40.174455380000097, 82.660305155634759 ] ] ], [ [ [ -49.95475538000008, 82.770005155634735 ], [ -50.067255380000091, 82.775505155634747 ], [ -49.723055380000091, 82.780005155634754 ], [ -49.773355380000083, 82.772805155634742 ], [ -49.95475538000008, 82.770005155634735 ] ] ], [ [ [ -47.568655380000081, 82.782505155634752 ], [ -48.291155380000106, 82.78360515563476 ], [ -48.415555380000086, 82.848005155634738 ], [ -47.442555380000101, 82.803905155634752 ], [ -47.568655380000081, 82.782505155634752 ] ] ], [ [ [ -46.443955380000091, 82.832505155634735 ], [ -46.800055380000089, 82.840005155634756 ], [ -47.262555380000094, 82.930805155634758 ], [ -46.407555380000105, 82.836105155634741 ], [ -46.443955380000091, 82.832505155634735 ] ] ], [ [ [ -78.102655380000101, 82.964305155634761 ], [ -78.288855380000086, 82.953705155634751 ], [ -78.393755380000101, 82.983205155634735 ], [ -78.181755380000084, 82.983705155634752 ], [ -78.102655380000101, 82.964305155634761 ] ] ], [ [ [ -69.845255380000083, 83.157405155634748 ], [ -69.766355380000078, 83.047905155634751 ], [ -66.380055380000101, 82.963605155634738 ], [ -68.698155380000088, 82.695905155634748 ], [ -65.333755380000099, 82.805405155634745 ], [ -65.360355380000101, 82.916205155634756 ], [ -64.947955380000082, 82.940905155634752 ], [ -63.444055380000094, 82.835505155634749 ], [ -64.083155380000079, 82.772005155634744 ], [ -62.975455380000085, 82.627705155634757 ], [ -63.157955380000089, 82.491505155634755 ], [ -62.379555380000085, 82.587305155634752 ], [ -60.877255380000094, 82.399005155634754 ], [ -61.007455380000096, 82.25990515563474 ], [ -64.30095538000009, 81.759505155634756 ], [ -64.996055380000087, 81.802905155634747 ], [ -67.907955380000089, 81.602205155634735 ], [ -69.11945538000009, 81.747205155634745 ], [ -68.395455380000101, 81.542605155634746 ], [ -66.438555380000082, 81.549905155634761 ], [ -70.001755380000105, 81.198705155634755 ], [ -64.472355380000096, 81.525205155634737 ], [ -67.472355380000096, 80.951905155634748 ], [ -69.646155380000096, 80.357405155634737 ], [ -70.766555380000085, 80.576005155634746 ], [ -69.803155380000078, 80.283205155634747 ], [ -70.066955380000081, 80.221405155634741 ], [ -72.207355380000081, 80.234905155634735 ], [ -71.795755380000088, 80.135905155634745 ], [ -72.153955380000099, 80.091405155634746 ], [ -70.419155380000092, 80.095605155634743 ], [ -71.456755380000089, 79.947305155634737 ], [ -70.893455380000091, 79.896905155634741 ], [ -71.525755380000078, 79.738805155634751 ], [ -72.45335538000009, 79.669405155634749 ], [ -74.350655380000092, 79.893705155634748 ], [ -74.738555380000093, 79.846805155634755 ], [ -73.346655380000101, 79.771405155634753 ], [ -73.074655380000081, 79.585805155634759 ], [ -74.921755380000093, 79.511205155634755 ], [ -74.853655380000106, 79.430605155634751 ], [ -75.072855380000078, 79.393805155634752 ], [ -77.1137553800001, 79.55900515563475 ], [ -75.906755380000078, 79.370905155634759 ], [ -77.1214553800001, 79.470305155634762 ], [ -77.298955380000081, 79.44940515563475 ], [ -77.197155380000083, 79.350205155634754 ], [ -77.989755380000105, 79.368005155634748 ], [ -74.540955380000099, 79.251405155634743 ], [ -74.786055380000079, 79.199005155634737 ], [ -74.416355380000084, 79.079505155634749 ], [ -77.744655380000097, 79.224105155634746 ], [ -78.169055380000088, 79.182405155634754 ], [ -76.13655538000009, 79.119605155634744 ], [ -78.850755380000095, 79.084405155634741 ], [ -77.804655380000099, 79.026005155634735 ], [ -78.287755380000078, 78.787805155634757 ], [ -77.63655538000009, 79.006905155634755 ], [ -76.585455380000099, 79.048805155634753 ], [ -75.750555380000094, 78.974305155634752 ], [ -76.433055380000098, 78.879105155634747 ], [ -74.878355380000102, 78.854805155634736 ], [ -74.674855380000082, 78.645105155634738 ], [ -76.633655380000079, 78.53130515563474 ], [ -75.060955380000081, 78.35380515563476 ], [ -76.79295538000008, 78.206905155634743 ], [ -75.64825538000008, 78.122205155634745 ], [ -75.8149553800001, 77.998105155634747 ], [ -78.383855380000085, 77.942105155634735 ], [ -78.02495538000008, 77.826005155634746 ], [ -78.106855380000098, 77.694905155634743 ], [ -77.729055380000091, 77.631705155634748 ], [ -78.270855380000086, 77.395405155634748 ], [ -80.481155380000104, 77.310505155634743 ], [ -81.979555380000079, 77.670105155634744 ], [ -81.737655380000092, 77.425205155634742 ], [ -81.171255380000105, 77.356805155634746 ], [ -82.17135538000008, 77.312505155634753 ], [ -81.85715538000008, 77.188605155634761 ], [ -80.153855380000095, 77.217805155634736 ], [ -80.450855380000093, 77.093005155634742 ], [ -80.3440553800001, 77.081405155634755 ], [ -79.345655380000096, 77.246305155634744 ], [ -79.055955380000086, 77.132905155634759 ], [ -79.443655380000081, 76.952505155634739 ], [ -78.764655380000079, 76.837005155634742 ], [ -78.146755380000087, 77.033505155634757 ], [ -77.750255380000084, 76.821905155634752 ], [ -78.421155380000101, 76.474605155634762 ], [ -78.772555380000085, 76.580005155634737 ], [ -79.287955380000085, 76.341405155634746 ], [ -80.975255380000078, 76.148305155634759 ], [ -81.026755380000083, 76.282405155634748 ], [ -80.815555380000092, 76.44940515563475 ], [ -82.036555380000095, 76.518505155634742 ], [ -81.869855380000104, 76.656505155634747 ], [ -82.375455380000091, 76.657105155634738 ], [ -82.6625553800001, 76.827605155634743 ], [ -82.788555380000105, 76.810105155634758 ], [ -82.173655380000099, 76.488005155634752 ], [ -83.009455380000105, 76.463305155634757 ], [ -83.375655380000097, 76.783505155634757 ], [ -83.560155380000083, 76.702705155634746 ], [ -83.242355380000106, 76.554505155634743 ], [ -83.278155380000101, 76.421605155634737 ], [ -84.243655380000092, 76.676205155634747 ], [ -84.378355380000102, 76.666605155634741 ], [ -84.190955380000105, 76.634805155634737 ], [ -84.211155380000093, 76.501805155634756 ], [ -84.540555380000086, 76.438005155634741 ], [ -85.1000553800001, 76.58980515563475 ], [ -84.480155380000099, 76.349205155634749 ], [ -84.866455380000104, 76.296105155634748 ], [ -86.39825538000008, 76.388705155634753 ], [ -86.262455380000091, 76.551005155634741 ], [ -86.518155380000081, 76.630805155634746 ], [ -86.387155380000081, 76.542105155634758 ], [ -86.722955380000087, 76.371305155634744 ], [ -87.150755380000078, 76.387805155634751 ], [ -87.566755380000103, 76.632705155634753 ], [ -87.589055380000104, 76.457605155634738 ], [ -87.425055380000089, 76.362505155634736 ], [ -88.389755380000082, 76.392805155634747 ], [ -88.523755380000097, 76.827305155634761 ], [ -88.731255380000079, 76.721505155634745 ], [ -88.521755380000087, 76.578205155634762 ], [ -88.647355380000079, 76.40660515563475 ], [ -88.7173553800001, 76.598605155634758 ], [ -89.020355380000098, 76.420105155634744 ], [ -89.634155380000095, 76.62290515563474 ], [ -89.42735538000008, 76.727605155634748 ], [ -89.426655380000085, 76.892505155634737 ], [ -88.487055380000101, 77.117805155634741 ], [ -87.394255380000089, 77.126005155634758 ], [ -86.847955380000087, 77.367605155634735 ], [ -87.735155380000094, 77.392505155634737 ], [ -87.722155380000089, 77.553205155634757 ], [ -88.198155380000088, 77.675105155634739 ], [ -88.197455380000093, 77.855705155634737 ], [ -86.667555380000096, 77.881905155634755 ], [ -86.054955380000081, 77.726305155634762 ], [ -85.847255380000092, 77.454605155634752 ], [ -84.257455380000096, 77.369105155634756 ], [ -83.409455380000082, 77.522405155634758 ], [ -82.388155380000086, 78.068905155634738 ], [ -84.049655380000104, 77.512805155634751 ], [ -84.849655380000087, 77.565005155634751 ], [ -84.43535538000009, 77.762005155634753 ], [ -84.958355380000086, 77.62180515563476 ], [ -85.287355380000093, 77.709805155634754 ], [ -85.021655380000084, 77.842105155634741 ], [ -85.401355380000098, 77.818205155634743 ], [ -84.331455380000079, 77.907905155634737 ], [ -85.609555380000103, 77.941005155634755 ], [ -84.331255380000101, 78.096905155634758 ], [ -84.965955380000082, 78.170805155634739 ], [ -84.026055380000088, 78.199305155634747 ], [ -85.001355380000092, 78.216205155634739 ], [ -84.630255380000079, 78.351705155634747 ], [ -84.829455380000098, 78.376005155634758 ], [ -84.657955380000089, 78.59720515563474 ], [ -85.436355380000094, 78.117905155634745 ], [ -86.286455380000092, 78.126105155634761 ], [ -85.821655380000095, 78.380505155634737 ], [ -86.787855380000082, 78.136505155634737 ], [ -87.492955380000097, 78.147205155634751 ], [ -87.164955380000094, 78.232205155634759 ], [ -87.466355380000095, 78.245405155634742 ], [ -87.504655380000088, 78.427205155634752 ], [ -86.84175538000008, 78.580005155634737 ], [ -87.05665538000008, 78.604605155634758 ], [ -86.703955380000082, 78.796905155634747 ], [ -85.020655380000079, 78.92770515563474 ], [ -82.302455380000083, 78.597705155634756 ], [ -82.559755380000098, 78.724805155634741 ], [ -82.179455380000093, 78.748905155634745 ], [ -83.193955380000091, 78.831405155634755 ], [ -81.801655380000085, 78.856105155634751 ], [ -81.574955380000091, 79.063105155634744 ], [ -82.446755380000099, 78.911105155634758 ], [ -84.653855380000095, 79.03790515563476 ], [ -84.435855380000106, 79.156205155634737 ], [ -83.952555380000092, 79.064905155634747 ], [ -83.376655380000102, 79.05930515563476 ], [ -84.350355380000082, 79.196605155634742 ], [ -84.416455380000087, 79.422905155634751 ], [ -85.277055380000093, 79.677505155634762 ], [ -86.476055380000105, 79.80470515563475 ], [ -86.336555380000078, 79.970005155634752 ], [ -85.271955380000094, 79.928205155634757 ], [ -86.429655380000099, 80.020005155634735 ], [ -86.668355380000094, 80.207305155634756 ], [ -86.48385538000008, 80.299705155634754 ], [ -83.730855380000094, 80.283905155634741 ], [ -81.642155380000105, 79.698305155634742 ], [ -81.720055380000105, 79.618505155634736 ], [ -79.922955380000104, 79.673905155634756 ], [ -79.74445538000009, 79.710905155634762 ], [ -81.53725538000009, 79.730905155634744 ], [ -81.698155380000088, 79.918105155634734 ], [ -81.506955380000079, 79.963905155634748 ], [ -82.99445538000009, 80.34550515563474 ], [ -77.917355380000089, 80.619005155634753 ], [ -79.978855380000084, 80.643605155634745 ], [ -76.340155380000084, 80.907405155634748 ], [ -78.889655380000079, 80.969205155634754 ], [ -76.734355380000096, 81.46280515563474 ], [ -78.60115538000008, 81.146705155634734 ], [ -79.322555380000097, 81.218405155634755 ], [ -79.028855380000095, 81.125905155634754 ], [ -79.16825538000009, 81.028705155634739 ], [ -79.061955380000086, 80.96510515563476 ], [ -80.492455380000081, 80.711105155634741 ], [ -82.888655380000102, 80.569205155634748 ], [ -83.100355380000082, 80.585605155634752 ], [ -81.784155380000101, 80.820205155634753 ], [ -83.369655380000097, 80.742005155634743 ], [ -82.914455380000078, 80.840405155634741 ], [ -83.103255380000093, 80.853005155634762 ], [ -83.804555380000096, 80.562505155634753 ], [ -85.928155380000078, 80.550005155634736 ], [ -86.651855380000086, 80.669405155634749 ], [ -85.399855380000105, 81.03130515563474 ], [ -82.230055380000096, 81.207905155634748 ], [ -85.746655380000078, 81.060105155634758 ], [ -87.219955380000101, 80.64920515563476 ], [ -89.284555380000086, 80.907205155634742 ], [ -85.722955380000087, 81.102305155634738 ], [ -84.630355380000083, 81.314205155634752 ], [ -90.119255380000084, 81.080605155634757 ], [ -90.3654553800001, 81.164905155634742 ], [ -88.948055380000085, 81.280205155634761 ], [ -89.999755380000096, 81.377705155634757 ], [ -87.197855380000078, 81.543105155634734 ], [ -88.463655380000091, 81.597905155634734 ], [ -90.414655380000085, 81.38690515563475 ], [ -90.896455380000106, 81.456605155634762 ], [ -89.47645538000009, 81.649505155634742 ], [ -90.621755380000081, 81.70710515563475 ], [ -91.189855380000097, 81.54670515563474 ], [ -91.983255380000088, 81.662805155634757 ], [ -90.504055380000096, 81.909805155634743 ], [ -88.920855380000091, 81.864905155634759 ], [ -88.725855380000098, 81.932705155634736 ], [ -88.956855380000093, 82.029505155634737 ], [ -88.064755380000094, 82.128705155634762 ], [ -86.803755380000098, 81.936105155634735 ], [ -86.580955380000091, 81.949605155634757 ], [ -86.958355380000086, 82.075505155634758 ], [ -85.35575538000009, 81.896605155634759 ], [ -85.239955380000083, 81.927905155634747 ], [ -85.418855380000082, 82.002005155634762 ], [ -84.426855380000092, 81.988605155634744 ], [ -86.819055380000094, 82.223005155634738 ], [ -85.334955380000082, 82.330205155634744 ], [ -85.942555380000101, 82.493305155634758 ], [ -85.624955380000102, 82.518605155634745 ], [ -82.840055380000081, 82.187205155634743 ], [ -82.990855380000085, 82.087305155634752 ], [ -81.776955380000089, 82.104205155634745 ], [ -83.036755380000102, 82.301105155634744 ], [ -82.764055380000087, 82.328305155634737 ], [ -80.4750553800001, 82.069305155634751 ], [ -82.635055380000097, 82.421905155634747 ], [ -81.490955380000088, 82.53960515563476 ], [ -82.3209553800001, 82.620705155634752 ], [ -82.175555380000105, 82.691105155634759 ], [ -80.588255380000078, 82.596205155634735 ], [ -81.499355380000083, 82.836005155634737 ], [ -79.763955380000084, 82.840005155634756 ], [ -80.429855380000106, 82.919105155634739 ], [ -80.167355380000089, 82.979105155634741 ], [ -77.458755380000099, 82.926105155634744 ], [ -75.854155380000094, 82.584005155634756 ], [ -75.569355380000104, 82.664705155634735 ], [ -77.514255380000094, 83.068205155634743 ], [ -74.339155380000079, 83.037805155634757 ], [ -73.733255380000088, 82.826705155634741 ], [ -72.598855380000089, 82.738105155634756 ], [ -72.45305538000008, 82.751505155634746 ], [ -73.766655380000088, 82.965605155634748 ], [ -72.081455380000079, 83.151705155634758 ], [ -71.638755380000106, 82.99680515563476 ], [ -70.852255380000088, 82.944605155634761 ], [ -71.519855380000081, 83.060505155634743 ], [ -69.845255380000083, 83.157405155634748 ] ] ], [ [ [ -39.570555380000087, 82.996605155634754 ], [ -40.363355380000087, 83.083005155634751 ], [ -40.546155380000101, 83.153305155634754 ], [ -39.277555380000081, 83.081405155634755 ], [ -39.570555380000087, 82.996605155634754 ] ] ], [ [ [ -39.905055380000078, 82.998905155634745 ], [ -40.595555380000093, 83.009405155634752 ], [ -41.4827553800001, 83.165005155634745 ], [ -40.836955380000092, 83.163605155634755 ], [ -39.905055380000078, 82.998905155634745 ] ] ], [ [ [ -38.318655380000081, 83.133605155634754 ], [ -38.570055380000099, 83.139705155634758 ], [ -38.659755380000092, 83.164705155634735 ], [ -38.009155380000095, 83.152505155634756 ], [ -38.318655380000081, 83.133605155634754 ] ] ], [ [ [ -74.021955380000094, 83.151405155634748 ], [ -74.318455380000103, 83.118805155634746 ], [ -74.725155380000103, 83.156105155634762 ], [ -73.981955380000102, 83.171505155634762 ], [ -74.021955380000094, 83.151405155634748 ] ] ], [ [ [ -40.157755380000083, 83.203305155634737 ], [ -40.249155380000104, 83.201705155634741 ], [ -40.579155380000088, 83.219705155634742 ], [ -40.086955380000092, 83.211605155634757 ], [ -40.157755380000083, 83.203305155634737 ] ] ], [ [ [ -41.03725538000009, 83.208605155634743 ], [ -41.536655380000099, 83.21140515563475 ], [ -41.606455380000085, 83.224405155634756 ], [ -41.001655380000102, 83.212205155634749 ], [ -41.03725538000009, 83.208605155634743 ] ] ], [ [ [ -42.097855380000084, 83.24220515563475 ], [ -42.381955380000079, 83.245205155634736 ], [ -42.417255380000086, 83.253205155634745 ], [ -41.959455380000094, 83.251705155634752 ], [ -42.097855380000084, 83.24220515563475 ] ] ], [ [ [ -41.24445538000009, 83.287805155634757 ], [ -41.614755380000105, 83.302205155634752 ], [ -41.684455380000088, 83.313605155634761 ], [ -41.456455380000079, 83.327205155634758 ], [ -41.24445538000009, 83.287805155634757 ] ] ], [ [ [ -39.646155380000096, 83.26220515563476 ], [ -38.639755380000082, 83.11580515563476 ], [ -40.673355380000089, 83.280305155634736 ], [ -40.508955380000089, 83.359405155634747 ], [ -39.646155380000096, 83.26220515563476 ] ] ], [ [ [ -38.902855380000091, 83.290505155634762 ], [ -39.238655380000097, 83.289705155634735 ], [ -39.621955380000088, 83.336905155634739 ], [ -39.223955380000092, 83.396905155634741 ], [ -38.902855380000091, 83.290505155634762 ] ] ], [ [ [ -32.300355380000099, 83.570305155634756 ], [ -30.215055380000081, 83.59610515563476 ], [ -25.6505553800001, 83.291605155634741 ], [ -26.956155380000098, 83.143605155634745 ], [ -30.047555380000091, 83.171405155634758 ], [ -31.929155380000083, 83.051605155634761 ], [ -33.387855380000104, 83.150505155634747 ], [ -32.471455380000094, 83.046905155634747 ], [ -35.617755380000091, 82.901105155634738 ], [ -35.296455380000083, 82.886405155634762 ], [ -35.551455380000078, 82.764405155634748 ], [ -35.43505538000008, 82.741405155634752 ], [ -34.886955380000103, 82.906405155634744 ], [ -33.924455380000097, 82.903305155634754 ], [ -33.881955380000079, 82.788905155634737 ], [ -33.53695538000008, 82.945205155634753 ], [ -31.643655380000098, 82.929105155634758 ], [ -30.059455380000088, 83.125505155634741 ], [ -28.177555380000086, 83.041905155634751 ], [ -25.14225538000008, 83.162805155634757 ], [ -24.751155380000085, 83.000805155634751 ], [ -25.901155380000091, 82.777505155634756 ], [ -23.992755380000091, 82.911605155634746 ], [ -23.841155380000089, 82.892505155634737 ], [ -24.022255380000104, 82.757205155634736 ], [ -23.378955380000093, 82.848905155634739 ], [ -21.314155380000102, 82.608005155634757 ], [ -22.481655380000092, 82.330805155634735 ], [ -25.068955380000091, 82.152505155634756 ], [ -31.618955380000102, 82.207505155634735 ], [ -29.904755380000097, 82.093305155634752 ], [ -33.0983553800001, 81.77390515563475 ], [ -33.018355380000088, 81.656405155634744 ], [ -28.997255380000098, 81.994405155634738 ], [ -25.202555380000092, 81.989405155634742 ], [ -25.428355380000085, 81.748005155634743 ], [ -27.630855380000099, 81.486105155634746 ], [ -27.184455380000088, 81.40830515563475 ], [ -27.572855380000078, 81.391105155634747 ], [ -27.3286553800001, 81.380805155634746 ], [ -24.210555380000102, 81.708305155634761 ], [ -24.002255380000094, 82.009705155634762 ], [ -22.301455380000078, 82.084405155634741 ], [ -22.016955380000098, 81.933005155634746 ], [ -21.973655380000082, 81.733005155634757 ], [ -22.231155380000104, 81.465805155634754 ], [ -22.964155380000079, 81.293305155634741 ], [ -22.761955380000103, 81.261705155634743 ], [ -24.511655380000093, 80.540805155634743 ], [ -23.671955380000099, 80.716705155634756 ], [ -23.559455380000088, 80.889405155634748 ], [ -19.940855380000102, 81.683005155634746 ], [ -20.305555380000101, 81.45110515563475 ], [ -18.01725538000008, 81.468005155634742 ], [ -17.608355380000091, 81.603005155634762 ], [ -17.862855380000099, 81.730505155634759 ], [ -17.353955380000087, 81.701905155634748 ], [ -17.534755380000092, 81.853605155634753 ], [ -16.700555380000083, 81.931905155634738 ], [ -14.768055380000078, 81.918305155634741 ], [ -12.155055380000078, 81.603305155634743 ], [ -14.027255380000099, 81.141905155634745 ], [ -14.975355380000082, 81.128305155634749 ], [ -15.14055538000008, 81.083305155634761 ], [ -14.6505553800001, 80.946905155634752 ], [ -16.005055380000101, 80.728605155634753 ], [ -17.959155380000084, 80.805205155634738 ], [ -18.577855380000102, 80.625305155634734 ], [ -20.087555380000083, 80.687205155634743 ], [ -21.24755538000008, 80.575505155634758 ], [ -17.438655380000085, 80.629705155634738 ], [ -16.113955380000078, 80.502505155634751 ], [ -17.113955380000078, 80.236905155634744 ], [ -19.700855380000093, 80.285805155634748 ], [ -20.554755380000103, 80.105805155634741 ], [ -20.363655380000097, 80.083305155634761 ], [ -20.755055380000101, 79.865005155634762 ], [ -20.326955380000101, 79.76050515563476 ], [ -19.876655380000102, 79.841905155634734 ], [ -20.257255380000089, 79.881405155634738 ], [ -20.053355380000085, 79.979705155634761 ], [ -19.289455380000078, 80.103305155634743 ], [ -17.449155380000093, 80.055805155634758 ], [ -18.222555380000102, 79.755005155634748 ], [ -19.228655380000106, 79.788905155634737 ], [ -19.631455380000091, 79.661405155634739 ], [ -19.802255380000105, 79.456905155634743 ], [ -19.656455380000097, 79.350305155634757 ], [ -19.868955380000102, 79.153005155634744 ], [ -19.573655380000105, 79.331105155634745 ], [ -19.091655380000105, 79.300005155634736 ], [ -19.206455380000079, 79.218005155634742 ], [ -19.078955380000082, 79.200505155634758 ], [ -19.439455380000084, 79.134405155634752 ], [ -19.196855380000102, 79.278905155634746 ], [ -19.378355380000102, 79.275005155634759 ], [ -20.091155380000089, 79.063605155634761 ], [ -19.914755380000088, 78.964205155634758 ], [ -20.018055380000078, 78.877205155634741 ], [ -21.182555380000082, 78.810005155634755 ], [ -20.926455380000078, 78.690005155634751 ], [ -21.426955380000095, 78.644405155634743 ], [ -20.906455380000097, 78.624105155634751 ], [ -21.373055380000096, 78.305505155634748 ], [ -21.288055380000088, 78.212205155634749 ], [ -21.758955380000089, 78.134405155634752 ], [ -21.406155380000087, 78.110505155634755 ], [ -22.039455380000078, 77.688305155634751 ], [ -21.426655380000085, 77.673005155634755 ], [ -21.728055380000086, 77.546105155634748 ], [ -21.57835538000009, 77.564105155634749 ], [ -20.866455380000104, 78.015305155634749 ], [ -20.311955380000086, 77.870805155634756 ], [ -19.240055380000086, 77.763005155634758 ], [ -18.956655380000086, 77.62890515563474 ], [ -20.256955380000079, 77.729105155634741 ], [ -20.91395538000009, 77.668905155634761 ], [ -20.245555380000098, 77.55470515563475 ], [ -20.480855380000094, 77.568305155634746 ], [ -20.653055380000097, 77.546605155634737 ], [ -20.403955380000099, 77.507205155634736 ], [ -21.053655380000095, 77.543905155634761 ], [ -20.011955380000103, 77.453605155634747 ], [ -20.775355380000093, 77.413005155634735 ], [ -19.706655380000086, 77.38690515563475 ], [ -19.420855380000091, 77.240005155634762 ], [ -18.395855380000086, 77.342805155634736 ], [ -18.120555380000098, 76.948305155634742 ], [ -18.305355380000094, 76.806105155634739 ], [ -20.9630553800001, 76.98280515563475 ], [ -20.580555380000078, 76.919105155634739 ], [ -21.728955380000087, 76.883605155634754 ], [ -20.939455380000084, 76.842505155634754 ], [ -21.623055380000096, 76.642805155634747 ], [ -22.240555380000103, 76.857205155634759 ], [ -22.738955380000078, 76.704405155634745 ], [ -22.329155380000088, 76.511405155634762 ], [ -22.184155380000078, 76.63720515563476 ], [ -21.814455380000084, 76.590305155634738 ], [ -21.677855380000096, 76.52390515563475 ], [ -22.036155380000082, 76.461905155634739 ], [ -21.674455380000097, 76.478005155634762 ], [ -21.920055380000093, 76.426605155634761 ], [ -22.402255380000099, 76.498605155634735 ], [ -22.506955380000079, 76.44800515563476 ], [ -22.190055380000103, 76.412505155634747 ], [ -21.573055380000085, 76.436605155634751 ], [ -21.6822553800001, 76.239105155634761 ], [ -19.805855380000082, 76.228605155634753 ], [ -19.716155380000089, 76.059705155634745 ], [ -21.982255380000083, 75.99190515563474 ], [ -19.825055380000094, 75.909105155634748 ], [ -19.335555380000102, 75.405005155634754 ], [ -19.463355380000081, 75.196605155634742 ], [ -19.88285538000008, 75.145805155634761 ], [ -20.135555380000085, 75.331705155634737 ], [ -20.68535538000009, 75.292505155634743 ], [ -21.501655380000102, 75.549705155634754 ], [ -22.251155380000085, 75.664105155634743 ], [ -21.406855380000081, 75.454305155634742 ], [ -22.511455380000086, 75.530805155634752 ], [ -21.415055380000098, 75.423605155634746 ], [ -20.515055380000092, 75.140805155634737 ], [ -21.229755380000086, 75.111905155634744 ], [ -21.736455380000081, 74.976105155634755 ], [ -21.928955380000104, 75.078305155634737 ], [ -22.435955380000081, 75.164905155634742 ], [ -21.742555380000084, 74.953605155634747 ], [ -20.638955380000084, 75.061905155634761 ], [ -20.762855380000104, 74.846905155634758 ], [ -20.606155380000104, 74.736905155634744 ], [ -21.1197553800001, 74.661605155634746 ], [ -19.3928553800001, 74.684705155634745 ], [ -19.279155380000105, 74.521905155634741 ], [ -18.977755380000104, 74.481705155634742 ], [ -19.68505538000008, 74.237505155634736 ], [ -20.374455380000086, 74.444705155634736 ], [ -21.661155380000082, 74.447205155634762 ], [ -22.082855380000098, 74.598305155634748 ], [ -21.765055380000092, 74.419405155634749 ], [ -22.479155380000094, 74.311905155634761 ], [ -22.053055380000103, 74.283905155634741 ], [ -22.163055380000088, 74.112805155634746 ], [ -22.492255380000103, 74.073905155634762 ], [ -21.981655380000092, 73.998705155634738 ], [ -21.821655380000095, 73.651105155634738 ], [ -21.70305538000008, 73.70110515563475 ], [ -21.914455380000078, 74.01050515563476 ], [ -21.748655380000088, 74.058305155634756 ], [ -20.283055380000093, 73.880005155634748 ], [ -20.533055380000093, 73.72080515563475 ], [ -20.370055380000082, 73.527205155634746 ], [ -20.501155380000085, 73.452805155634749 ], [ -21.560855380000106, 73.478005155634762 ], [ -22.3791553800001, 73.250505155634741 ], [ -23.506455380000091, 73.444705155634736 ], [ -24.032255380000095, 73.702505155634739 ], [ -22.694455380000079, 73.544405155634749 ], [ -22.178355380000085, 73.624705155634743 ], [ -22.747255380000098, 73.563005155634741 ], [ -24.044155380000092, 73.814705155634741 ], [ -24.450555380000083, 73.70110515563475 ], [ -24.4630553800001, 73.535805155634748 ], [ -25.686955380000086, 73.952505155634739 ], [ -24.674155380000087, 73.51330515563474 ], [ -25.315055380000103, 73.461605155634757 ], [ -26.012555380000094, 73.24220515563475 ], [ -27.337555380000083, 73.49250515563476 ], [ -27.457955380000101, 73.442105155634735 ], [ -26.387555380000094, 73.241405155634752 ], [ -27.728655380000106, 73.129705155634738 ], [ -27.406455380000097, 73.110005155634738 ], [ -27.49755538000008, 72.924405155634744 ], [ -27.265055380000092, 73.119705155634747 ], [ -26.449155380000093, 73.193605155634756 ], [ -25.053955380000104, 73.082805155634745 ], [ -25.159755380000092, 72.927505155634762 ], [ -26.027255380000099, 72.787205155634737 ], [ -26.716455380000099, 72.871105155634737 ], [ -27.388355380000093, 72.836605155634757 ], [ -26.304755380000103, 72.727805155634755 ], [ -26.462855380000093, 72.572205155634762 ], [ -25.5666553800001, 72.833005155634751 ], [ -24.842555380000078, 72.71940515563476 ], [ -24.609455380000099, 72.523305155634759 ], [ -25.908355380000103, 72.413905155634737 ], [ -25.289155380000096, 72.384405155634752 ], [ -25.526655380000079, 72.121405155634747 ], [ -25.193655380000081, 72.35780515563475 ], [ -24.588355380000081, 72.421105155634748 ], [ -22.49445538000009, 71.892805155634747 ], [ -23.125555380000094, 71.626105155634761 ], [ -22.434455380000088, 71.79530515563475 ], [ -22.639155380000091, 71.579205155634739 ], [ -21.895855380000086, 71.74080515563476 ], [ -22.506455380000091, 71.549705155634754 ], [ -22.4733553800001, 71.263005155634758 ], [ -21.805555380000101, 71.509405155634752 ], [ -21.670855380000091, 71.400505155634747 ], [ -21.8166553800001, 71.315005155634751 ], [ -21.603655380000106, 71.32300515563476 ], [ -21.961655380000082, 71.26390515563476 ], [ -21.687555380000106, 71.149105155634757 ], [ -22.333955380000106, 71.053605155634742 ], [ -21.681155380000092, 71.068305155634746 ], [ -21.702255380000082, 70.822805155634754 ], [ -21.929455380000093, 70.803205155634757 ], [ -21.637255380000084, 70.794705155634759 ], [ -21.546955380000099, 70.70710515563475 ], [ -21.763355380000093, 70.703605155634747 ], [ -21.653955380000099, 70.662505155634747 ], [ -21.777255380000099, 70.579705155634755 ], [ -21.47475538000009, 70.540005155634745 ], [ -22.377255380000094, 70.441605155634747 ], [ -22.506955380000079, 70.850505155634735 ], [ -22.62285538000009, 70.446605155634742 ], [ -23.345855380000103, 70.439105155634749 ], [ -24.021955380000094, 70.652205155634746 ], [ -24.192555380000101, 71.013005155634758 ], [ -24.740055380000086, 71.332205155634753 ], [ -25.099155380000099, 71.298305155634736 ], [ -25.623955380000098, 71.537205155634737 ], [ -26.950255380000101, 71.578605155634747 ], [ -27.693955380000091, 71.930305155634741 ], [ -28.639755380000082, 72.124405155634761 ], [ -28.354755380000086, 72.012505155634742 ], [ -28.461155380000093, 71.936605155634751 ], [ -27.325055380000094, 71.709705155634751 ], [ -28.466955380000087, 71.552505155634762 ], [ -27.385055380000097, 71.602505155634745 ], [ -25.411455380000092, 71.349105155634746 ], [ -25.51555538000008, 71.212505155634759 ], [ -25.777055380000093, 71.254005155634744 ], [ -25.597855380000084, 71.169105155634739 ], [ -26.478955380000087, 70.960305155634742 ], [ -27.505055380000101, 70.938005155634741 ], [ -27.798955380000081, 71.149705155634749 ], [ -27.922555380000091, 71.128305155634749 ], [ -27.615855380000085, 70.946405155634736 ], [ -28.409155380000101, 70.975805155634745 ], [ -27.914155380000096, 70.86720515563475 ], [ -28.303055380000103, 70.560505155634743 ], [ -29.205855380000088, 70.393505155634742 ], [ -28.297855380000101, 70.507505155634746 ], [ -28.225355380000082, 70.368305155634758 ], [ -26.72445538000008, 70.478605155634753 ], [ -26.322255380000087, 70.373005155634743 ], [ -28.542855380000105, 70.044705155634759 ], [ -27.341955380000087, 69.962505155634759 ], [ -26.898955380000103, 70.248605155634735 ], [ -26.307555380000082, 70.19770515563475 ], [ -25.229155380000094, 70.414405155634753 ], [ -25.346455380000094, 70.282205155634742 ], [ -22.079155380000088, 70.129705155634738 ], [ -23.2755553800001, 69.858605155634748 ], [ -22.910055380000102, 69.811905155634761 ], [ -22.99585538000008, 69.757205155634736 ], [ -23.930955380000086, 69.754605155634735 ], [ -23.579155380000088, 69.623605155634735 ], [ -23.819455380000079, 69.507505155634746 ], [ -24.343355380000105, 69.604405155634751 ], [ -24.072855380000078, 69.478005155634762 ], [ -24.652255380000099, 69.394405155634743 ], [ -24.664155380000096, 69.246905155634735 ], [ -25.209755380000104, 69.274405155634739 ], [ -24.992755380000091, 69.163305155634745 ], [ -25.295355380000103, 69.019105155634762 ], [ -25.609455380000099, 69.103605155634753 ], [ -25.437255380000096, 68.970305155634762 ], [ -26.363355380000087, 68.667505155634743 ], [ -27.620055380000082, 68.476105155634755 ], [ -28.0161553800001, 68.562805155634734 ], [ -28.011955380000103, 68.448905155634762 ], [ -28.847855380000084, 68.318605155634756 ], [ -29.187255380000096, 68.390505155634756 ], [ -29.120355380000092, 68.280505155634742 ], [ -29.3774553800001, 68.199205155634743 ], [ -29.862255380000079, 68.413605155634755 ], [ -30.196955380000105, 68.24250515563476 ], [ -30.030355380000088, 68.111605155634734 ], [ -30.709755380000104, 68.260805155634742 ], [ -30.816955380000081, 68.247505155634755 ], [ -30.422955380000104, 68.065305155634761 ], [ -31.571655380000095, 68.066905155634757 ], [ -31.704455380000098, 68.098305155634748 ], [ -31.678655380000095, 68.17830515563476 ], [ -31.74585538000008, 68.210805155634759 ], [ -31.5358553800001, 68.239405155634742 ], [ -32.007255380000089, 68.26190515563475 ], [ -32.485055380000091, 68.620005155634757 ], [ -32.525355380000093, 68.44800515563476 ], [ -32.133355380000097, 68.196105155634754 ], [ -32.391655380000088, 68.226405155634737 ], [ -32.400355380000093, 68.19940515563475 ], [ -31.999155380000104, 68.095305155634762 ], [ -32.122755380000086, 67.85780515563475 ], [ -33.198655380000105, 67.688005155634741 ], [ -33.055055380000084, 67.634405155634752 ], [ -33.275855380000081, 67.398605155634741 ], [ -33.600555380000088, 67.371405155634747 ], [ -33.36915538000008, 67.244705155634747 ], [ -33.973055380000091, 66.99050515563475 ], [ -34.26725538000008, 66.57580515563474 ], [ -34.429755380000103, 66.741405155634752 ], [ -34.406955380000085, 66.540805155634743 ], [ -34.720055380000105, 66.338305155634757 ], [ -34.98415538000009, 66.284105155634748 ], [ -35.121955380000088, 66.417705155634749 ], [ -35.234855380000084, 66.31270515563476 ], [ -35.043955380000085, 66.246105155634737 ], [ -35.203955380000082, 66.237805155634746 ], [ -35.851655380000096, 66.433605155634737 ], [ -35.549755380000079, 66.24220515563475 ], [ -35.58775538000009, 66.110005155634738 ], [ -36.331955380000096, 65.907205155634742 ], [ -36.343055380000095, 66.080005155634737 ], [ -36.5666553800001, 66.076705155634741 ], [ -36.521155380000096, 65.984705155634757 ], [ -36.980355380000105, 65.837505155634759 ], [ -37.077555380000092, 66.062205155634743 ], [ -37.193055380000089, 65.769105155634762 ], [ -37.811455380000098, 66.030505155634742 ], [ -37.184755380000098, 66.341705155634756 ], [ -38.106155380000104, 66.38690515563475 ], [ -37.6916553800001, 66.259705155634762 ], [ -37.995055380000082, 66.24050515563475 ], [ -37.85145538000009, 66.193905155634738 ], [ -38.051955380000095, 65.912505155634747 ], [ -38.483655380000101, 66.010305155634754 ], [ -38.100855380000098, 65.80300515563475 ], [ -38.241955380000093, 65.629405155634757 ], [ -38.74755538000008, 65.692205155634738 ], [ -38.600855380000098, 65.572205155634762 ], [ -39.057555380000082, 65.559405155634735 ], [ -39.324455380000103, 65.715505155634744 ], [ -39.201155380000102, 65.583605155634743 ], [ -39.66395538000009, 65.680305155634741 ], [ -39.829455380000098, 65.495805155634756 ], [ -40.096455380000094, 65.567205155634738 ], [ -40.208955380000106, 65.483305155634739 ], [ -39.792555380000096, 65.415305155634755 ], [ -39.9416553800001, 65.365005155634762 ], [ -39.755555380000089, 65.242705155634738 ], [ -40.256455380000091, 65.016405155634757 ], [ -40.596155380000084, 65.135005155634744 ], [ -41.155555380000095, 64.964405155634736 ], [ -40.594755380000095, 64.676605155634761 ], [ -40.638655380000102, 64.465005155634756 ], [ -40.358955380000083, 64.348305155634748 ], [ -40.788055380000088, 64.384405155634752 ], [ -41.506955380000079, 64.32580515563474 ], [ -41.569455380000079, 64.265505155634756 ], [ -40.567855380000083, 64.109105155634737 ], [ -40.838355380000081, 63.944605155634761 ], [ -40.6197553800001, 63.922805155634748 ], [ -40.518055380000078, 63.697205155634762 ], [ -41.617755380000091, 63.792205155634761 ], [ -40.748355380000106, 63.509205155634746 ], [ -41.170655380000085, 63.51360515563475 ], [ -40.999755380000096, 63.406505155634747 ], [ -41.113355380000087, 63.385305155634754 ], [ -41.394155380000086, 63.552205155634752 ], [ -41.238355380000087, 63.404405155634734 ], [ -41.581355380000105, 63.488105155634756 ], [ -41.113355380000087, 63.307205155634747 ], [ -41.687255380000096, 63.525005155634759 ], [ -41.907555380000105, 63.464705155634746 ], [ -41.429155380000083, 63.126405155634743 ], [ -42.023055380000102, 63.24650515563475 ], [ -41.536655380000099, 63.035305155634759 ], [ -41.730355380000105, 63.029705155634744 ], [ -42.174455380000097, 63.201705155634741 ], [ -41.999755380000096, 63.031405155634744 ], [ -41.615355380000096, 62.987505155634736 ], [ -41.755555380000089, 62.839405155634736 ], [ -42.323955380000086, 62.809205155634757 ], [ -42.303655380000095, 62.94170515563475 ], [ -42.527855380000091, 62.723005155634738 ], [ -43.147255380000104, 62.757805155634756 ], [ -42.16225538000009, 62.383905155634736 ], [ -42.979155380000094, 62.515305155634749 ], [ -42.261155380000105, 62.24250515563476 ], [ -42.540855380000096, 61.943605155634756 ], [ -42.115855380000085, 62.006705155634748 ], [ -42.420555380000081, 61.915305155634755 ], [ -42.189755380000094, 61.861905155634744 ], [ -42.325555380000083, 61.761405155634762 ], [ -42.768955380000079, 61.818005155634737 ], [ -42.86945538000009, 61.773005155634749 ], [ -42.315855380000102, 61.640805155634737 ], [ -42.434755380000098, 61.557205155634747 ], [ -43.079155380000088, 61.593605155634762 ], [ -42.531655380000103, 61.529705155634744 ], [ -42.507555380000099, 61.355305155634753 ], [ -43.245255380000089, 61.33980515563475 ], [ -42.661455380000092, 61.255505155634737 ], [ -42.574755380000084, 61.195005155634746 ], [ -43.089755380000099, 61.197505155634744 ], [ -42.630055380000101, 61.098305155634748 ], [ -43.612855380000099, 61.127805155634761 ], [ -42.70475538000008, 61.057805155634739 ], [ -43.008655380000079, 60.883905155634736 ], [ -43.484455380000099, 60.933305155634756 ], [ -42.790855380000096, 60.801105155634744 ], [ -43.5255553800001, 60.83810515563475 ], [ -42.749455380000086, 60.683605155634737 ], [ -43.068655380000081, 60.498905155634745 ], [ -43.318655380000081, 60.550805155634762 ], [ -43.208655380000096, 60.464405155634736 ], [ -43.693955380000091, 60.716105155634736 ], [ -43.629755380000091, 60.548805155634753 ], [ -44.202555380000092, 60.594605155634738 ], [ -43.3149553800001, 60.441905155634757 ], [ -43.596955380000082, 60.305305155634741 ], [ -43.168655380000104, 60.397505155634761 ], [ -43.092755380000085, 60.257205155634736 ], [ -43.327555380000092, 60.215305155634738 ], [ -43.129755380000091, 60.205505155634754 ], [ -43.137555380000094, 60.079405155634745 ], [ -44.113955380000078, 60.183605155634737 ], [ -43.993955380000102, 60.307505155634757 ], [ -44.100855380000098, 60.384205155634746 ], [ -44.080555380000078, 60.286405155634739 ], [ -44.456655380000086, 60.148305155634759 ], [ -44.604155380000094, 59.98250515563474 ], [ -45.152855380000091, 60.074205155634743 ], [ -44.824455380000103, 60.190005155634751 ], [ -44.470855380000103, 60.557205155634747 ], [ -45.190055380000103, 60.12920515563475 ], [ -44.626155380000085, 60.733305155634739 ], [ -45.20335538000009, 60.435305155634737 ], [ -45.099155380000099, 60.645805155634761 ], [ -45.491955380000093, 60.490005155634762 ], [ -45.313355380000104, 60.700005155634742 ], [ -45.574755380000084, 60.46910515563475 ], [ -45.681455380000102, 60.637005155634753 ], [ -45.979055380000091, 60.574605155634757 ], [ -45.672655380000094, 60.673605155634746 ], [ -45.84975538000009, 60.697505155634744 ], [ -45.253055380000092, 60.901905155634736 ], [ -45.397255380000104, 61.007505155634746 ], [ -45.686455380000098, 60.774705155634749 ], [ -46.221455380000094, 60.753605155634759 ], [ -45.489755380000105, 60.989205155634735 ], [ -45.199755380000084, 61.190005155634751 ], [ -45.373955380000098, 61.090305155634738 ], [ -45.500555380000094, 61.233305155634739 ], [ -45.631455380000091, 61.007205155634736 ], [ -46.065555380000092, 60.921105155634748 ], [ -45.653655380000089, 61.142205155634755 ], [ -45.868955380000102, 61.216705155634756 ], [ -45.769755380000106, 61.333605155634743 ], [ -46.009755380000087, 61.223005155634738 ], [ -45.840055380000081, 61.165005155634745 ], [ -45.915055380000098, 61.090305155634738 ], [ -46.229455380000104, 60.974705155634737 ], [ -46.406155380000087, 61.084205155634734 ], [ -46.380355380000083, 61.041105155634753 ], [ -46.523355380000083, 61.015305155634749 ], [ -46.581655380000086, 60.905805155634752 ], [ -46.835255380000092, 60.930305155634741 ], [ -46.7053553800001, 60.881405155634738 ], [ -46.857255380000083, 60.797505155634738 ], [ -46.914455380000078, 60.933305155634756 ], [ -47.023055380000102, 60.976105155634755 ], [ -47.809455380000088, 60.87920515563475 ], [ -47.319455380000079, 60.867805155634741 ], [ -47.447855380000078, 60.820305155634756 ], [ -48.238955380000078, 60.819705155634736 ], [ -47.689455380000084, 61.005005155634748 ], [ -48.406455380000097, 60.988305155634762 ], [ -47.833655380000096, 61.041905155634751 ], [ -48.218955380000097, 61.185005155634755 ], [ -47.917255380000086, 61.324205155634743 ], [ -48.410355380000084, 61.132205155634736 ], [ -48.318755380000084, 61.20510515563474 ], [ -48.637255380000084, 61.238005155634752 ], [ -48.378655380000083, 61.363905155634754 ], [ -49.066155380000083, 61.398005155634749 ], [ -48.232555380000093, 61.533905155634741 ], [ -48.344155380000103, 61.605005155634743 ], [ -48.948955380000086, 61.465505155634744 ], [ -49.297555380000091, 61.557505155634757 ], [ -48.599255380000102, 61.636305155634759 ], [ -49.149055380000078, 61.719905155634748 ], [ -48.763055380000083, 61.984705155634757 ], [ -49.231455380000085, 61.71280515563474 ], [ -49.354155380000094, 61.765505155634756 ], [ -49.214755380000099, 61.883605155634754 ], [ -49.440355380000085, 61.842205155634744 ], [ -48.840555380000097, 62.076905155634748 ], [ -49.096155380000084, 62.078905155634757 ], [ -49.029455380000087, 62.213905155634748 ], [ -49.16225538000009, 62.018905155634755 ], [ -49.669455380000102, 61.995505155634746 ], [ -49.693355380000099, 62.11580515563476 ], [ -49.420855380000091, 62.090005155634756 ], [ -49.293955380000085, 62.172205155634757 ], [ -49.638355380000093, 62.150805155634757 ], [ -49.394755380000106, 62.246905155634735 ], [ -49.837255380000101, 62.237505155634736 ], [ -50.317855380000083, 62.495305155634739 ], [ -49.947555380000097, 62.827205155634758 ], [ -50.275355380000093, 62.701905155634748 ], [ -50.150855380000081, 62.930805155634758 ], [ -49.700955380000096, 63.057105155634744 ], [ -50.191555380000096, 62.93370515563474 ], [ -50.380055380000101, 62.784405155634758 ], [ -50.150055380000083, 63.015305155634749 ], [ -50.593955380000097, 62.970005155634752 ], [ -50.606455380000085, 63.09440515563476 ], [ -50.059855380000101, 63.228705155634756 ], [ -50.57035538000008, 63.227205155634735 ], [ -50.794355380000098, 63.196905155634752 ], [ -50.905055380000078, 63.137505155634742 ], [ -50.780055380000078, 63.250305155634734 ], [ -51.008355380000097, 63.160505155634738 ], [ -51.107355380000087, 63.340405155634741 ], [ -50.276155380000091, 63.401405155634748 ], [ -51.221455380000094, 63.439405155634759 ], [ -50.74415538000008, 63.545505155634757 ], [ -51.128055380000092, 63.622505155634755 ], [ -50.553655380000095, 63.608305155634739 ], [ -50.504755380000091, 63.667205155634761 ], [ -51.077555380000092, 63.666905155634751 ], [ -51.186955380000086, 63.621705155634757 ], [ -51.168655380000104, 63.502805155634761 ], [ -51.559455380000088, 63.709205155634734 ], [ -50.924155380000087, 63.932505155634757 ], [ -51.443355380000099, 63.80500515563476 ], [ -51.362255380000079, 63.966905155634734 ], [ -51.601955380000078, 64.03470515563474 ], [ -50.048355380000089, 64.194105155634745 ], [ -50.554755380000103, 64.181105155634739 ], [ -50.475555380000088, 64.291105155634753 ], [ -51.445855380000097, 64.078005155634756 ], [ -51.761455380000086, 64.181905155634738 ], [ -50.950855380000093, 64.218005155634742 ], [ -50.843055380000095, 64.25420515563475 ], [ -51.041955380000104, 64.275505155634747 ], [ -50.882555380000099, 64.407805155634762 ], [ -50.352255380000088, 64.382705155634753 ], [ -50.173055380000079, 64.448305155634742 ], [ -50.573955380000086, 64.448305155634742 ], [ -50.441155380000083, 64.548905155634756 ], [ -50.856655380000092, 64.633005155634734 ], [ -50.322855380000078, 64.676405155634754 ], [ -50.137855380000104, 64.478005155634762 ], [ -49.583955380000106, 64.338805155634745 ], [ -50.065555380000092, 64.529205155634756 ], [ -49.988955380000078, 64.697205155634762 ], [ -50.213655380000091, 64.726105155634755 ], [ -49.998955380000098, 64.869105155634756 ], [ -50.560555380000096, 64.768005155634754 ], [ -50.693055380000089, 64.994105155634756 ], [ -50.978655380000106, 65.219705155634742 ], [ -50.636655380000093, 64.753005155634739 ], [ -51.143355380000088, 64.613605155634744 ], [ -51.023955380000103, 64.754705155634738 ], [ -51.224155380000099, 64.76220515563476 ], [ -51.665055380000098, 64.306105155634739 ], [ -52.006955380000079, 64.203605155634747 ], [ -52.105555380000084, 64.38720515563476 ], [ -52.057555380000082, 64.599105155634746 ], [ -52.120355380000092, 64.720305155634762 ], [ -51.246955380000088, 65.017505155634737 ], [ -52.211455380000103, 64.806605155634756 ], [ -52.011455380000086, 64.979105155634741 ], [ -52.285355380000084, 65.084105155634759 ], [ -52.09975538000009, 65.239105155634761 ], [ -52.313355380000104, 65.201905155634748 ], [ -52.208355380000086, 65.330805155634735 ], [ -52.519155380000086, 65.185305155634737 ], [ -52.5589553800001, 65.327505155634739 ], [ -51.720855380000103, 65.582205155634753 ], [ -51.901155380000091, 65.623905155634745 ], [ -51.694455380000079, 65.698605155634752 ], [ -50.545855380000091, 65.706905155634743 ], [ -51.484755380000081, 65.763005155634758 ], [ -51.948055380000085, 65.658905155634741 ], [ -51.934455380000088, 65.546405155634758 ], [ -52.49785538000009, 65.38720515563476 ], [ -52.613955380000078, 65.487505155634736 ], [ -52.469155380000103, 65.640805155634737 ], [ -52.801955380000095, 65.538905155634737 ], [ -52.607255380000083, 65.65860515563476 ], [ -52.769755380000106, 65.63550515563476 ], [ -52.688955380000095, 65.805505155634748 ], [ -52.810555380000096, 65.671605155634737 ], [ -53.236655380000087, 65.683005155634746 ], [ -52.875055380000106, 65.80300515563475 ], [ -53.115855380000085, 65.74220515563475 ], [ -53.268355380000088, 65.746905155634735 ], [ -52.698655380000105, 65.935505155634743 ], [ -52.320055380000099, 65.868905155634749 ], [ -51.813955380000095, 65.964705155634746 ], [ -51.831955380000096, 66.055805155634758 ], [ -52.317555380000101, 65.899105155634757 ], [ -52.618055380000101, 65.980005155634743 ], [ -53.151655380000079, 65.855805155634741 ], [ -53.233355380000091, 65.923005155634755 ], [ -52.879755380000091, 66.02530515563474 ], [ -53.353955380000087, 65.93000515563476 ], [ -53.468655380000087, 65.975305155634757 ], [ -53.126955380000084, 66.016105155634747 ], [ -53.462255380000101, 66.034105155634748 ], [ -52.067555380000101, 66.481705155634742 ], [ -51.271455380000106, 66.843905155634744 ], [ -50.329155380000088, 66.833005155634751 ], [ -50.956455380000079, 66.934705155634745 ], [ -49.99785538000009, 66.980805155634741 ], [ -50.631955380000079, 67.015305155634749 ], [ -50.334755380000104, 67.071905155634752 ], [ -51.189455380000084, 66.917705155634749 ], [ -53.476655380000096, 66.098905155634739 ], [ -53.624755380000096, 66.154405155634734 ], [ -53.118355380000082, 66.285805155634748 ], [ -53.6197553800001, 66.243305155634758 ], [ -53.633355380000097, 66.504405155634757 ], [ -53.170355380000103, 66.491605155634758 ], [ -52.416455380000087, 66.546405155634758 ], [ -53.451955380000101, 66.637505155634742 ], [ -52.582855380000098, 66.703905155634757 ], [ -53.206455380000079, 66.746405155634747 ], [ -52.849855380000093, 66.78300515563474 ], [ -53.103455380000099, 66.762705155634748 ], [ -52.9827553800001, 66.853005155634762 ], [ -52.336155380000093, 66.810505155634743 ], [ -52.228955380000087, 66.840005155634756 ], [ -52.498355380000106, 66.912505155634747 ], [ -53.649455380000092, 66.909405155634758 ], [ -53.824755380000084, 66.98280515563475 ], [ -53.219755380000095, 66.99220515563475 ], [ -53.836455380000103, 67.063005155634741 ], [ -53.542855380000105, 67.068905155634738 ], [ -53.39225538000008, 67.111905155634744 ], [ -53.965555380000097, 67.07470515563476 ], [ -52.151455380000101, 67.370005155634757 ], [ -51.524755380000101, 67.32300515563476 ], [ -51.189455380000084, 67.123605155634735 ], [ -50.35115538000008, 67.180505155634748 ], [ -51.173355380000089, 67.139405155634748 ], [ -51.525855380000081, 67.351105155634755 ], [ -51.151655380000079, 67.423305155634736 ], [ -53.252255380000094, 67.320505155634734 ], [ -53.798355380000089, 67.202805155634749 ], [ -53.881155380000081, 67.26390515563476 ], [ -53.718055380000095, 67.450505155634758 ], [ -52.49615538000009, 67.769705155634753 ], [ -50.700555380000083, 67.491605155634758 ], [ -50.198355380000095, 67.467205155634744 ], [ -50.071955380000105, 67.510005155634744 ], [ -50.852255380000088, 67.590805155634754 ], [ -49.936655380000104, 67.693905155634738 ], [ -51.230855380000094, 67.697205155634762 ], [ -50.417555380000096, 67.84440515563476 ], [ -50.779455380000087, 67.90660515563475 ], [ -50.678055380000103, 67.850505155634735 ], [ -51.173655380000099, 67.758605155634754 ], [ -51.331155380000098, 67.868905155634749 ], [ -50.971455380000094, 67.883305155634744 ], [ -51.06005538000008, 67.974105155634746 ], [ -51.567555380000101, 67.932705155634736 ], [ -51.321155380000079, 67.811105155634735 ], [ -51.7130553800001, 67.695005155634746 ], [ -51.843955380000097, 67.731905155634749 ], [ -51.626455380000095, 67.769705155634753 ], [ -52.341955380000087, 67.82440515563475 ], [ -51.575555380000083, 67.967205155634744 ], [ -52.970055380000105, 67.76390515563476 ], [ -53.59975538000009, 67.506905155634755 ], [ -53.753655380000083, 67.601105155634755 ], [ -53.558055380000098, 67.655305155634736 ], [ -53.542555380000096, 67.72050515563474 ], [ -53.627855380000085, 67.814705155634741 ], [ -52.95475538000008, 67.979305155634748 ], [ -53.187255380000096, 68.043305155634741 ], [ -53.081655380000086, 68.062805155634734 ], [ -52.748355380000106, 67.968305155634752 ], [ -52.212255380000101, 67.923005155634755 ], [ -52.06005538000008, 67.975305155634757 ], [ -53.454155380000088, 68.152205155634746 ], [ -53.321155380000079, 68.184405155634735 ], [ -52.414455380000078, 68.062805155634734 ], [ -52.802255380000105, 68.168905155634761 ], [ -51.857855380000103, 68.041905155634751 ], [ -51.188655380000085, 68.063605155634761 ], [ -50.569455380000079, 67.900805155634757 ], [ -50.153055380000097, 67.933305155634756 ], [ -51.434155380000078, 68.198305155634742 ], [ -50.956655380000086, 68.182705155634736 ], [ -51.220855380000103, 68.273605155634741 ], [ -51.18365538000009, 68.39890515563475 ], [ -50.820055380000099, 68.503605155634759 ], [ -51.644555380000099, 68.407405155634748 ], [ -51.240855380000085, 68.290005155634745 ], [ -52.419155380000092, 68.180505155634748 ], [ -53.388555380000099, 68.329105155634736 ], [ -53.07975538000008, 68.32300515563476 ], [ -52.461655380000082, 68.54500515563474 ], [ -50.865855380000085, 68.614705155634752 ], [ -50.987255380000079, 68.73250515563474 ], [ -50.656455380000097, 68.825505155634758 ], [ -51.292555380000096, 68.748305155634753 ], [ -50.963355380000081, 68.931905155634738 ], [ -51.114455380000095, 68.926905155634742 ], [ -51.069755380000089, 69.131105155634756 ], [ -50.209455380000094, 68.960805155634759 ], [ -50.687755380000084, 69.117705155634738 ], [ -50.138655380000102, 69.177505155634762 ], [ -50.465355380000091, 69.195205155634753 ], [ -50.380855380000099, 69.338905155634748 ], [ -51.122755380000086, 69.20140515563476 ], [ -50.855855380000094, 69.461105155634741 ], [ -50.20475538000008, 69.521905155634741 ], [ -50.883055380000087, 69.491405155634752 ], [ -50.800555380000105, 69.642205155634755 ], [ -50.407255380000095, 69.592505155634754 ], [ -50.811455380000098, 69.709405155634741 ], [ -50.1916553800001, 69.757505155634746 ], [ -50.313655380000085, 69.873305155634753 ], [ -50.589155380000079, 69.921905155634747 ], [ -50.214155380000079, 70.021605155634759 ], [ -52.312755380000084, 70.046605155634737 ], [ -54.627255380000094, 70.653105155634748 ], [ -54.063355380000104, 70.829705155634755 ], [ -52.722255380000092, 70.744705155634747 ], [ -50.676455380000078, 70.322805155634754 ], [ -50.490555380000103, 70.509705155634762 ], [ -51.03725538000009, 70.430805155634758 ], [ -50.939755380000094, 70.467805155634736 ], [ -51.345055380000105, 70.56670515563475 ], [ -50.618955380000102, 70.628605155634759 ], [ -51.438655380000085, 70.747805155634737 ], [ -50.633055380000087, 70.740305155634744 ], [ -51.952555380000092, 71.021105155634743 ], [ -50.928955380000104, 70.988605155634744 ], [ -51.485255380000098, 71.063005155634741 ], [ -51.226655380000096, 71.141705155634739 ], [ -52.249455380000086, 71.123305155634753 ], [ -51.526955380000089, 71.274705155634749 ], [ -51.645555380000104, 71.361405155634756 ], [ -52.555555380000101, 71.171405155634758 ], [ -52.282755380000083, 71.254705155634738 ], [ -52.185555380000096, 71.379105155634747 ], [ -51.348055380000091, 71.486105155634746 ], [ -52.983655380000101, 71.415305155634755 ], [ -51.802855380000096, 71.59440515563476 ], [ -51.64055538000008, 71.711105155634741 ], [ -53.250555380000094, 71.702805155634749 ], [ -52.921155380000101, 71.81670515563475 ], [ -52.685155380000083, 72.002805155634761 ], [ -53.321955380000105, 71.822205155634762 ], [ -53.393055380000078, 72.033905155634741 ], [ -53.857555380000093, 72.321605155634742 ], [ -53.56035538000009, 72.358005155634757 ], [ -53.95505538000009, 72.322505155634744 ], [ -53.396655380000084, 71.851905155634753 ], [ -53.918355380000094, 71.736405155634756 ], [ -53.775055380000083, 71.633305155634744 ], [ -54.100355380000082, 71.707505155634735 ], [ -53.851955380000078, 71.55300515563475 ], [ -53.915555380000086, 71.441905155634757 ], [ -54.825555380000083, 71.352805155634755 ], [ -55.258355380000097, 71.49050515563475 ], [ -55.116655380000083, 71.386705155634743 ], [ -55.323655380000105, 71.38690515563475 ], [ -55.681455380000102, 71.624405155634761 ], [ -55.574455380000103, 71.642805155634747 ], [ -55.905855380000105, 71.678605155634742 ], [ -54.830555380000078, 71.915505155634762 ], [ -54.536655380000099, 72.041405155634735 ], [ -54.384455380000105, 72.222505155634749 ], [ -54.861955380000097, 71.942705155634755 ], [ -55.298355380000089, 71.928605155634742 ], [ -55.58005538000009, 71.998905155634745 ], [ -54.682855380000092, 72.366405155634752 ], [ -55.626455380000095, 72.457505155634735 ], [ -54.296455380000083, 72.480005155634743 ], [ -55.016455380000082, 72.520005155634735 ], [ -54.627255380000094, 72.621605155634754 ], [ -54.870555380000098, 72.642505155634737 ], [ -54.655055380000078, 72.765005155634739 ], [ -54.926955380000095, 72.777805155634738 ], [ -54.604755380000086, 72.828005155634756 ], [ -54.850555380000088, 73.014405155634748 ], [ -55.697855380000078, 73.06670515563475 ], [ -55.145055380000088, 73.181905155634738 ], [ -55.460055380000085, 73.255805155634746 ], [ -55.085855380000083, 73.362805155634746 ], [ -56.075855380000093, 73.648605155634741 ], [ -55.607855380000103, 73.720305155634762 ], [ -55.946955380000105, 73.853705155634756 ], [ -55.645355380000098, 73.871605155634754 ], [ -56.12255538000008, 74.006605155634745 ], [ -55.968955380000097, 74.030005155634754 ], [ -56.409755380000092, 74.066105155634759 ], [ -56.1291553800001, 74.278305155634754 ], [ -57.325055380000094, 74.10780515563475 ], [ -56.309155380000078, 74.287205155634737 ], [ -56.713355380000081, 74.340805155634754 ], [ -56.131155380000081, 74.383905155634736 ], [ -56.797255380000081, 74.443305155634746 ], [ -56.192955380000086, 74.550305155634746 ], [ -57.015055380000092, 74.671405155634758 ], [ -57.190355380000085, 74.770805155634761 ], [ -56.861155380000099, 74.806905155634738 ], [ -57.026455380000101, 74.913905155634737 ], [ -58.137255380000084, 75.045505155634757 ], [ -57.918355380000094, 75.166105155634753 ], [ -58.334755380000104, 75.265305155634749 ], [ -58.295455380000078, 75.38690515563475 ], [ -58.697855380000078, 75.346405155634741 ], [ -58.208955380000106, 75.441905155634757 ], [ -58.4339553800001, 75.564405155634759 ], [ -58.316155380000083, 75.648605155634741 ], [ -58.6000553800001, 75.667705155634749 ], [ -58.408055380000093, 75.715305155634738 ], [ -59.061655380000104, 75.704205155634739 ], [ -59.216155380000089, 75.872205155634745 ], [ -59.784755380000092, 75.796405155634758 ], [ -59.592255380000097, 75.910005155634749 ], [ -60.738055380000105, 75.993305155634758 ], [ -60.878655380000083, 76.152505155634756 ], [ -62.239755380000105, 76.286605155634746 ], [ -62.778655380000089, 76.193605155634756 ], [ -63.440855380000102, 76.373305155634753 ], [ -63.78895538000009, 76.15690515563476 ], [ -64.120255380000089, 76.148005155634749 ], [ -64.343955380000097, 76.354705155634761 ], [ -64.68335538000008, 76.258605155634754 ], [ -64.603955380000087, 76.126905155634759 ], [ -65.350855380000098, 76.172205155634757 ], [ -65.295555380000081, 76.071405155634736 ], [ -65.479755380000086, 76.018605155634745 ], [ -65.888455380000096, 76.099005155634742 ], [ -65.553355380000085, 76.233905155634758 ], [ -65.769455380000096, 76.275505155634747 ], [ -66.194155380000097, 76.280305155634736 ], [ -66.433055380000098, 76.082805155634745 ], [ -66.960055380000085, 76.26360515563475 ], [ -67.306155380000092, 76.167505155634743 ], [ -66.458655380000096, 75.90970515563474 ], [ -68.500555380000094, 76.086905155634739 ], [ -69.633355380000097, 76.380805155634746 ], [ -67.982255380000083, 76.67940515563474 ], [ -70.101955380000078, 76.799405155634744 ], [ -69.539455380000078, 77.000505155634741 ], [ -69.672555380000091, 77.012505155634742 ], [ -70.547255380000081, 76.788605155634755 ], [ -71.375255380000084, 77.056105155634739 ], [ -70.149155380000082, 77.24050515563475 ], [ -68.540555380000086, 77.166105155634753 ], [ -66.448655380000105, 77.133905155634736 ], [ -66.170855380000091, 77.193305155634746 ], [ -69.101655380000096, 77.271905155634741 ], [ -67.620055380000082, 77.386405155634762 ], [ -66.238355380000087, 77.248605155634735 ], [ -66.659155380000101, 77.414405155634753 ], [ -66.055555380000101, 77.491405155634752 ], [ -66.725855380000098, 77.680805155634758 ], [ -68.344755380000095, 77.498605155634735 ], [ -68.699455380000103, 77.663905155634737 ], [ -68.815555380000092, 77.651405155634748 ], [ -68.601955380000078, 77.521405155634753 ], [ -69.250355380000087, 77.453005155634756 ], [ -70.290055380000098, 77.563605155634761 ], [ -69.501155380000085, 77.684705155634745 ], [ -69.483655380000101, 77.753605155634759 ], [ -70.602855380000079, 77.67800515563475 ], [ -69.968655380000087, 77.833605155634743 ], [ -71.320055380000099, 77.76360515563475 ], [ -71.440555380000092, 77.793005155634759 ], [ -71.211555380000078, 77.865605155634753 ], [ -73.053655380000095, 78.157205155634742 ], [ -72.456655380000086, 78.286405155634739 ], [ -72.84945538000008, 78.314105155634749 ], [ -72.552255380000105, 78.521105155634743 ], [ -68.790555380000086, 78.829205155634739 ], [ -69.173355380000089, 78.922505155634738 ], [ -68.340555380000097, 79.063005155634741 ], [ -65.976655380000096, 79.101605155634743 ], [ -64.823355380000095, 79.53360515563476 ], [ -65.068955380000091, 80.009105155634742 ], [ -63.784455380000082, 80.148305155634759 ], [ -64.20505538000009, 80.250505155634741 ], [ -64.902555380000081, 80.063305155634751 ], [ -67.049755380000079, 80.057505155634757 ], [ -67.495055380000082, 80.196905155634752 ], [ -67.483055380000081, 80.322805155634754 ], [ -63.680555380000101, 81.143905155634755 ], [ -62.794455380000102, 80.751105155634761 ], [ -63.371655380000078, 81.155805155634752 ], [ -61.05665538000008, 81.119705155634747 ], [ -60.891955380000098, 81.165505155634762 ], [ -61.313355380000104, 81.355805155634741 ], [ -60.770855380000086, 81.500505155634741 ], [ -61.452255380000082, 81.753005155634739 ], [ -60.80665538000008, 81.880005155634748 ], [ -58.899455380000092, 81.864705155634752 ], [ -58.64255538000009, 81.675505155634752 ], [ -56.478355380000096, 81.332505155634735 ], [ -59.466955380000087, 81.996905155634735 ], [ -55.902555380000081, 82.268005155634754 ], [ -55.113355380000087, 82.15660515563475 ], [ -55.603355380000096, 82.279405155634734 ], [ -54.505355380000083, 82.36550515563475 ], [ -53.559755380000098, 82.116105155634742 ], [ -53.508355380000097, 81.893905155634755 ], [ -53.823655380000105, 81.693605155634756 ], [ -53.634455380000105, 81.51330515563474 ], [ -53.473055380000091, 81.501705155634752 ], [ -53.540555380000086, 81.676105155634744 ], [ -52.938655380000085, 81.856405155634761 ], [ -53.028055380000097, 82.01190515563475 ], [ -52.899155380000082, 82.034105155634748 ], [ -50.176455380000078, 81.636405155634762 ], [ -49.614755380000105, 81.640305155634749 ], [ -51.065555380000092, 81.932205155634747 ], [ -49.432555380000082, 81.929205155634762 ], [ -50.695055380000099, 82.182505155634757 ], [ -51.118955380000102, 82.494105155634756 ], [ -50.317555380000101, 82.518305155634735 ], [ -46.3928553800001, 82.097805155634759 ], [ -44.640055380000092, 81.75420515563475 ], [ -44.18335538000008, 81.834105155634759 ], [ -44.925355380000099, 81.989705155634752 ], [ -44.502555380000103, 82.089705155634746 ], [ -44.793955380000085, 82.183605155634737 ], [ -44.618055380000101, 82.276705155634758 ], [ -42.299155380000087, 82.216705155634756 ], [ -43.8303553800001, 82.335805155634759 ], [ -43.726655380000096, 82.401705155634758 ], [ -45.76585538000009, 82.764405155634748 ], [ -42.1428553800001, 82.761705155634743 ], [ -41.682855380000092, 82.478005155634762 ], [ -41.608955380000083, 82.641705155634739 ], [ -41.898055380000102, 82.73280515563475 ], [ -41.550355380000099, 82.736605155634734 ], [ -39.752855380000085, 82.39890515563475 ], [ -40.011955380000103, 82.560005155634755 ], [ -39.905055380000078, 82.671605155634737 ], [ -40.135355380000078, 82.714405155634736 ], [ -42.191155380000083, 82.851605155634743 ], [ -45.993055380000101, 82.84440515563476 ], [ -46.890055380000092, 82.961105155634741 ], [ -45.983355380000091, 82.914705155634735 ], [ -46.701655380000091, 83.005505155634737 ], [ -46.033055380000093, 83.088605155634738 ], [ -45.107255380000083, 82.931105155634739 ], [ -44.755055380000101, 82.964405155634736 ], [ -43.989455380000095, 82.911905155634756 ], [ -43.386655380000093, 82.914405155634753 ], [ -45.524755380000101, 83.122205155634745 ], [ -42.872755380000086, 83.092805155634736 ], [ -43.983155380000085, 83.201005155634746 ], [ -42.695055380000099, 83.274405155634739 ], [ -41.705555380000078, 83.171605155634737 ], [ -41.93195538000009, 83.087505155634759 ], [ -41.626455380000095, 83.133605155634754 ], [ -40.553355380000085, 82.967505155634754 ], [ -39.446955380000105, 82.957805155634745 ], [ -38.574455380000103, 82.744105155634756 ], [ -39.150355380000093, 82.980305155634753 ], [ -37.270355380000098, 83.005305155634758 ], [ -38.800855380000087, 83.05330515563476 ], [ -36.877555380000103, 83.147205155634751 ], [ -38.678055380000103, 83.205305155634747 ], [ -38.857255380000083, 83.250305155634734 ], [ -38.856455380000085, 83.431605155634756 ], [ -37.796155380000101, 83.359105155634737 ], [ -38.05865538000009, 83.431405155634749 ], [ -37.625855380000104, 83.50420515563475 ], [ -36.438055380000094, 83.361105155634746 ], [ -36.904155380000105, 83.49080515563476 ], [ -34.364155380000085, 83.596905155634758 ], [ -33.882755380000106, 83.452505155634739 ], [ -33.745355380000092, 83.485805155634736 ], [ -34.081455380000079, 83.56640515563474 ], [ -32.203955380000082, 83.603905155634735 ], [ -32.300355380000099, 83.570305155634756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 71, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Western Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.474455380000094, 48.709205155634734 ], [ -123.549455380000097, 48.746705155634757 ], [ -123.596655380000087, 48.946905155634752 ], [ -123.370255380000089, 48.768305155634735 ], [ -123.474455380000094, 48.709205155634734 ] ] ], [ [ [ -123.322755380000089, 48.861105155634746 ], [ -123.540555380000086, 48.945005155634746 ], [ -123.702455380000089, 49.105505155634759 ], [ -123.322555380000097, 48.892805155634747 ], [ -123.322755380000089, 48.861105155634746 ] ] ], [ [ [ -125.816055380000094, 49.125805155634751 ], [ -125.906355380000093, 49.160805155634748 ], [ -125.933055380000098, 49.218005155634742 ], [ -125.799155380000087, 49.208305155634761 ], [ -125.816055380000094, 49.125805155634751 ] ] ], [ [ [ -126.079755380000094, 49.246705155634757 ], [ -126.239155380000085, 49.289705155634735 ], [ -126.234755380000095, 49.374205155634755 ], [ -126.110555380000093, 49.382205155634736 ], [ -126.079755380000094, 49.246705155634757 ] ] ], [ [ [ -123.379455380000095, 49.326905155634748 ], [ -123.420255380000086, 49.381705155634748 ], [ -123.312255380000096, 49.415005155634745 ], [ -123.331155380000098, 49.355005155634743 ], [ -123.379455380000095, 49.326905155634748 ] ] ], [ [ [ -124.179155380000097, 49.441105155634759 ], [ -124.313655380000085, 49.456105155634745 ], [ -124.381055380000092, 49.51190515563475 ], [ -124.244755380000086, 49.501405155634743 ], [ -124.179155380000097, 49.441105155634759 ] ] ], [ [ [ -123.332755380000094, 49.441105155634759 ], [ -123.448055380000099, 49.44170515563475 ], [ -123.445255380000091, 49.515305155634749 ], [ -123.354955380000092, 49.53190515563476 ], [ -123.332755380000094, 49.441105155634759 ] ] ], [ [ [ -124.689455380000098, 49.480305155634753 ], [ -124.823655380000091, 49.539405155634753 ], [ -124.834155380000098, 49.60780515563475 ], [ -124.778855380000095, 49.568905155634738 ], [ -124.689455380000098, 49.480305155634753 ] ] ], [ [ [ -124.129755380000091, 49.650805155634757 ], [ -124.199455380000089, 49.706105155634745 ], [ -124.016155380000086, 49.775505155634747 ], [ -124.074755380000099, 49.733305155634739 ], [ -124.129755380000091, 49.650805155634757 ] ] ], [ [ [ -124.446155380000093, 49.723305155634748 ], [ -124.351355380000086, 49.69800515563476 ], [ -124.122755380000086, 49.493605155634739 ], [ -124.656655380000089, 49.796905155634747 ], [ -124.446155380000093, 49.723305155634748 ] ] ], [ [ [ -126.676055380000093, 49.583605155634743 ], [ -126.965255380000087, 49.726905155634753 ], [ -126.940555380000092, 49.831405155634755 ], [ -126.678055380000089, 49.825305155634751 ], [ -126.676055380000093, 49.583605155634743 ] ] ], [ [ [ -124.924155380000087, 50.058605155634737 ], [ -125.066955380000095, 50.10750515563474 ], [ -124.983355380000091, 50.225505155634735 ], [ -124.91525538000009, 50.141405155634757 ], [ -124.924155380000087, 50.058605155634737 ] ] ], [ [ [ -125.164155380000096, 49.985305155634748 ], [ -125.323655380000091, 50.143305155634735 ], [ -125.339955380000092, 50.268905155634755 ], [ -125.167255380000086, 50.213605155634738 ], [ -125.164155380000096, 49.985305155634748 ] ] ], [ [ [ -124.812455380000088, 50.111405155634756 ], [ -124.963055380000085, 50.236405155634756 ], [ -124.918355380000094, 50.299705155634754 ], [ -124.756655380000097, 50.17830515563476 ], [ -124.812455380000088, 50.111405155634756 ] ] ], [ [ [ -124.662555380000086, 50.203305155634737 ], [ -124.70805538000009, 50.161405155634739 ], [ -124.777755380000087, 50.277505155634756 ], [ -124.683355380000094, 50.28330515563475 ], [ -124.662555380000086, 50.203305155634737 ] ] ], [ [ [ -125.543855380000096, 50.393905155634755 ], [ -125.635855380000095, 50.379705155634738 ], [ -125.763655380000088, 50.397505155634761 ], [ -125.523855380000086, 50.434405155634735 ], [ -125.543855380000096, 50.393905155634755 ] ] ], [ [ [ -125.165555380000086, 50.374405155634761 ], [ -125.048655380000099, 50.207805155634745 ], [ -125.140255380000099, 50.121705155634757 ], [ -125.156155380000087, 50.239205155634735 ], [ -125.213655380000091, 50.31670515563475 ], [ -125.40025538000009, 50.320805155634744 ], [ -125.165555380000086, 50.374405155634761 ] ] ], [ [ [ -125.426055380000093, 50.355505155634759 ], [ -125.528055380000097, 50.381705155634748 ], [ -125.331955380000096, 50.435505155634743 ], [ -125.385855380000095, 50.369705155634747 ], [ -125.426055380000093, 50.355505155634759 ] ] ], [ [ [ -125.807255380000086, 50.413605155634755 ], [ -125.921955380000085, 50.410305155634759 ], [ -125.951155380000088, 50.433905155634747 ], [ -125.738055380000091, 50.427405155634759 ], [ -125.807255380000086, 50.413605155634755 ] ] ], [ [ [ -126.225255380000092, 50.556005155634736 ], [ -126.350555380000088, 50.520305155634745 ], [ -126.623855380000094, 50.533905155634741 ], [ -126.286155380000096, 50.598305155634748 ], [ -126.225255380000092, 50.556005155634736 ] ] ], [ [ [ -126.466355380000095, 50.57580515563474 ], [ -126.554155380000097, 50.602805155634755 ], [ -126.361455380000095, 50.614405155634742 ], [ -126.391355380000093, 50.592805155634736 ], [ -126.466355380000095, 50.57580515563474 ] ] ], [ [ [ -126.873355380000092, 50.663305155634745 ], [ -126.831155380000098, 50.62920515563475 ], [ -127.144755380000092, 50.633905155634736 ], [ -127.093855380000093, 50.669205155634742 ], [ -126.873355380000092, 50.663305155634745 ] ] ], [ [ [ -126.64385538000009, 50.691905155634757 ], [ -126.685555380000096, 50.758905155634736 ], [ -126.536355380000089, 50.76360515563475 ], [ -126.535855380000086, 50.758605155634754 ], [ -126.64385538000009, 50.691905155634757 ] ] ], [ [ [ -126.273055380000088, 50.652805155634738 ], [ -126.463355380000095, 50.641705155634739 ], [ -126.617455380000095, 50.666405155634735 ], [ -126.266355380000093, 50.827805155634749 ], [ -126.273055380000088, 50.652805155634738 ] ] ], [ [ [ -126.731355380000096, 50.771905155634741 ], [ -126.853355380000096, 50.782805155634762 ], [ -126.905855380000091, 50.822805155634754 ], [ -126.563055380000094, 50.800005155634736 ], [ -126.731355380000096, 50.771905155634741 ] ] ], [ [ [ -127.226955380000092, 50.636105155634752 ], [ -125.449755380000099, 50.323605155634752 ], [ -125.168655380000089, 49.912805155634757 ], [ -124.898055380000088, 49.731705155634742 ], [ -124.916355380000098, 49.631705155634748 ], [ -124.789455380000092, 49.464205155634758 ], [ -123.699455380000089, 49.143905155634755 ], [ -123.850755380000095, 49.145305155634745 ], [ -123.509455380000091, 48.587505155634759 ], [ -123.396355380000088, 48.677805155634744 ], [ -123.289755380000088, 48.413305155634745 ], [ -123.583355380000086, 48.301105155634744 ], [ -125.113855380000089, 48.731105155634751 ], [ -125.18495538000009, 48.800805155634762 ], [ -124.842755380000085, 49.015505155634756 ], [ -124.780855380000091, 49.131405155634738 ], [ -124.807755380000089, 49.24050515563475 ], [ -124.906155380000087, 49.001905155634759 ], [ -125.483655380000087, 48.915805155634743 ], [ -125.751155380000085, 49.055305155634741 ], [ -125.611155380000099, 49.220305155634762 ], [ -126.02055538000009, 49.263005155634758 ], [ -125.904755380000097, 49.435805155634753 ], [ -126.001955380000098, 49.321905155634752 ], [ -126.119955380000093, 49.423005155634755 ], [ -126.542255380000086, 49.374405155634761 ], [ -126.566055380000094, 49.584405155634741 ], [ -126.087555380000097, 49.662205155634737 ], [ -126.585055380000085, 49.70110515563475 ], [ -126.679755380000088, 49.87890515563474 ], [ -126.804455380000093, 49.909205155634751 ], [ -127.12115538000009, 49.852305155634738 ], [ -127.241355380000087, 49.961905155634739 ], [ -127.158355380000089, 50.096405155634741 ], [ -127.895855380000086, 50.108905155634758 ], [ -127.788855380000086, 50.22220515563474 ], [ -127.978655380000092, 50.342505155634754 ], [ -127.923855380000091, 50.46280515563474 ], [ -127.446955380000091, 50.372805155634737 ], [ -127.570055380000099, 50.51220515563476 ], [ -127.411355380000089, 50.587505155634759 ], [ -127.873355380000092, 50.623905155634745 ], [ -127.589755380000085, 50.546105155634748 ], [ -128.051455380000107, 50.446705155634746 ], [ -128.416655380000094, 50.769205155634737 ], [ -127.909755380000092, 50.871405155634747 ], [ -127.226955380000092, 50.636105155634752 ] ] ], [ [ [ -127.654755380000097, 50.83780515563474 ], [ -127.753055380000092, 50.852805155634755 ], [ -127.838655380000091, 50.881705155634748 ], [ -127.726355380000086, 50.90860515563476 ], [ -127.654755380000097, 50.83780515563474 ] ] ], [ [ [ -127.914455380000092, 51.410805155634748 ], [ -128.081155380000098, 51.474705155634737 ], [ -128.145555380000076, 51.653605155634736 ], [ -127.999955380000088, 51.72050515563474 ], [ -127.914455380000092, 51.410805155634748 ] ] ], [ [ [ -128.053855380000073, 51.753605155634759 ], [ -128.253055380000092, 51.872205155634745 ], [ -127.983355380000091, 52.061905155634761 ], [ -127.954755380000094, 51.981105155634751 ], [ -128.053855380000073, 51.753605155634759 ] ] ], [ [ [ -131.018855380000105, 51.946105155634754 ], [ -131.101655380000096, 52.002805155634761 ], [ -131.110255380000098, 52.151105155634738 ], [ -131.009455380000077, 52.102805155634755 ], [ -131.018855380000105, 51.946105155634754 ] ] ], [ [ [ -127.96275538000009, 52.07470515563476 ], [ -128.076355380000109, 52.080005155634737 ], [ -128.12085538000008, 52.141905155634745 ], [ -127.881055380000092, 52.172205155634757 ], [ -127.96275538000009, 52.07470515563476 ] ] ], [ [ [ -128.211955380000092, 52.015505155634756 ], [ -128.294155380000092, 52.113605155634744 ], [ -128.153055380000097, 52.195305155634756 ], [ -128.151155380000091, 52.081105155634745 ], [ -128.211955380000092, 52.015505155634756 ] ] ], [ [ [ -128.428355380000085, 52.137505155634742 ], [ -128.511155380000105, 52.17000515563474 ], [ -128.416455380000087, 52.226405155634737 ], [ -128.407755380000083, 52.152805155634738 ], [ -128.428355380000085, 52.137505155634742 ] ] ], [ [ [ -128.299955380000085, 52.133605155634754 ], [ -128.364955380000083, 52.162505155634747 ], [ -128.37715538000009, 52.223905155634739 ], [ -128.226555380000093, 52.217905155634739 ], [ -128.299955380000085, 52.133605155634754 ] ] ], [ [ [ -127.924755380000093, 52.174205155634738 ], [ -128.079755380000108, 52.186405155634745 ], [ -128.170055380000093, 52.249705155634743 ], [ -127.972755380000095, 52.29530515563475 ], [ -127.924755380000093, 52.174205155634738 ] ] ], [ [ [ -128.184455380000088, 52.278605155634736 ], [ -128.189155380000102, 52.330805155634735 ], [ -128.104455380000104, 52.421405155634758 ], [ -128.056655380000109, 52.328905155634757 ], [ -128.184455380000088, 52.278605155634736 ] ] ], [ [ [ -127.724455380000094, 51.976905155634753 ], [ -127.899455380000092, 51.973305155634748 ], [ -127.789155380000096, 52.221905155634758 ], [ -127.234755380000095, 52.416905155634751 ], [ -127.232255380000097, 52.313005155634741 ], [ -127.579755380000094, 52.177205155634752 ], [ -127.724455380000094, 51.976905155634753 ] ] ], [ [ [ -128.668655380000075, 52.266405155634757 ], [ -128.748355380000078, 52.369205155634759 ], [ -128.747255380000098, 52.471705155634751 ], [ -128.615855380000085, 52.453605155634747 ], [ -128.668655380000075, 52.266405155634757 ] ] ], [ [ [ -128.471955380000111, 52.492805155634741 ], [ -128.518055380000078, 52.431905155634738 ], [ -128.813855380000092, 52.525005155634759 ], [ -128.578155380000112, 52.593605155634762 ], [ -128.535255380000081, 52.647205155634751 ], [ -128.471955380000111, 52.492805155634741 ] ] ], [ [ [ -131.464455380000089, 52.627505155634751 ], [ -131.593555380000112, 52.585805155634759 ], [ -131.709755380000104, 52.705305155634747 ], [ -131.475255380000078, 52.736705155634738 ], [ -131.464455380000089, 52.627505155634751 ] ] ], [ [ [ -128.430255380000091, 52.368005155634748 ], [ -128.4416553800001, 52.746905155634735 ], [ -128.383355380000097, 52.797505155634738 ], [ -128.275055380000083, 52.490005155634762 ], [ -128.430255380000091, 52.368005155634748 ] ] ], [ [ [ -128.974455380000109, 52.453305155634737 ], [ -129.270555380000076, 52.71910515563475 ], [ -129.277255380000099, 52.82300515563476 ], [ -128.923355380000089, 52.606705155634742 ], [ -128.974455380000109, 52.453305155634737 ] ] ], [ [ [ -128.269755380000106, 52.596905155634758 ], [ -128.325055380000094, 52.776105155634738 ], [ -128.210655380000105, 52.798505155634743 ], [ -128.177755380000093, 52.82610515563475 ], [ -128.269755380000106, 52.596905155634758 ] ] ], [ [ [ -131.708355380000086, 52.811405155634745 ], [ -131.813355380000075, 52.820305155634756 ], [ -131.830255380000096, 52.846705155634751 ], [ -131.636455380000086, 52.832505155634735 ], [ -131.708355380000086, 52.811405155634745 ] ] ], [ [ [ -128.505255380000108, 52.641105155634747 ], [ -128.540055380000098, 52.703305155634737 ], [ -128.506155380000109, 52.873005155634743 ], [ -128.450855380000093, 52.805305155634741 ], [ -128.505255380000108, 52.641105155634747 ] ] ], [ [ [ -129.610555380000108, 52.955005155634737 ], [ -129.622255380000098, 52.958005155634751 ], [ -129.65085538000011, 53.018905155634755 ], [ -129.557455380000079, 53.006705155634748 ], [ -129.610555380000108, 52.955005155634737 ] ] ], [ [ [ -129.531655380000075, 53.01050515563476 ], [ -129.546955380000099, 53.008905155634736 ], [ -129.640055380000092, 53.044205155634742 ], [ -129.562755380000112, 53.05300515563475 ], [ -129.531655380000075, 53.01050515563476 ] ] ], [ [ [ -129.602455380000094, 53.057205155634747 ], [ -129.701955380000072, 53.078305155634737 ], [ -129.738355380000087, 53.127205155634741 ], [ -129.654455380000087, 53.132805155634756 ], [ -129.602455380000094, 53.057205155634747 ] ] ], [ [ [ -129.432455380000079, 53.151405155634748 ], [ -129.290055380000098, 52.993605155634739 ], [ -129.289455380000106, 52.971905155634758 ], [ -129.547255380000081, 53.133005155634734 ], [ -129.432455380000079, 53.151405155634748 ] ] ], [ [ [ -131.762255380000113, 53.196705155634746 ], [ -131.594755380000095, 53.035305155634759 ], [ -131.813655380000085, 53.073605155634752 ], [ -131.964755380000099, 53.046405155634758 ], [ -131.615555380000103, 52.92030515563475 ], [ -131.98245538000009, 52.879705155634738 ], [ -131.395355380000098, 52.375505155634741 ], [ -131.236355380000077, 52.439205155634752 ], [ -131.32835538000009, 52.285005155634749 ], [ -131.030255380000085, 52.173905155634756 ], [ -131.264755380000111, 52.119705155634747 ], [ -132.084755380000104, 52.732205155634759 ], [ -131.951655380000091, 52.781105155634762 ], [ -132.346955380000111, 52.936405155634745 ], [ -132.112755380000095, 52.997805155634737 ], [ -132.563655380000085, 53.139205155634741 ], [ -132.41365538000008, 53.127505155634751 ], [ -132.070855380000097, 53.153905155634746 ], [ -131.811155380000088, 53.253605155634759 ], [ -131.762255380000113, 53.196705155634746 ] ] ], [ [ [ -128.689455380000084, 53.164405155634753 ], [ -128.518355380000088, 52.911105155634758 ], [ -128.592255380000097, 52.613905155634754 ], [ -128.748855380000094, 52.59720515563474 ], [ -128.646955380000094, 52.963305155634757 ], [ -128.884455380000077, 52.648005155634749 ], [ -129.121955380000088, 52.863005155634752 ], [ -128.843555380000112, 53.044205155634742 ], [ -129.011655380000093, 53.139705155634758 ], [ -128.862255380000079, 53.034205155634751 ], [ -129.069155380000097, 52.903905155634746 ], [ -129.191955380000081, 53.007805155634756 ], [ -129.075255380000101, 53.103005155634762 ], [ -129.0666553800001, 53.300805155634762 ], [ -128.689455380000084, 53.164405155634753 ] ] ], [ [ [ -129.153055380000097, 53.098305155634748 ], [ -129.332455380000113, 53.137505155634742 ], [ -129.268055380000078, 53.331905155634743 ], [ -129.168655380000075, 53.296105155634748 ], [ -129.153055380000097, 53.098305155634748 ] ] ], [ [ [ -129.358355380000091, 53.304205155634762 ], [ -129.434955380000076, 53.37890515563474 ], [ -129.395055380000088, 53.410805155634748 ], [ -129.303355380000085, 53.331105155634745 ], [ -129.358355380000091, 53.304205155634762 ] ] ], [ [ [ -128.942455380000098, 53.317505155634748 ], [ -129.143355380000088, 53.349705155634737 ], [ -129.015255380000099, 53.536705155634749 ], [ -128.901155380000091, 53.386705155634743 ], [ -128.942455380000098, 53.317505155634748 ] ] ], [ [ [ -129.934755380000098, 53.48420515563474 ], [ -129.952255380000111, 53.483005155634757 ], [ -130.021155380000096, 53.505305155634758 ], [ -129.886655380000093, 53.542205155634761 ], [ -129.934755380000098, 53.48420515563474 ] ] ], [ [ [ -129.879455380000081, 53.392805155634747 ], [ -129.755855380000071, 53.162205155634737 ], [ -130.520255380000094, 53.624705155634743 ], [ -130.202255380000111, 53.553905155634752 ], [ -129.879455380000081, 53.392805155634747 ] ] ], [ [ [ -129.0863553800001, 53.446105155634754 ], [ -129.153055380000097, 53.63860515563475 ], [ -128.818855380000088, 53.709205155634734 ], [ -129.085555380000073, 53.505005155634748 ], [ -129.0863553800001, 53.446105155634754 ] ] ], [ [ [ -130.091055380000086, 53.569405155634755 ], [ -130.329155380000088, 53.618005155634748 ], [ -130.403355380000107, 53.682505155634757 ], [ -130.261655380000093, 53.796405155634758 ], [ -130.091055380000086, 53.569405155634755 ] ] ], [ [ [ -129.826155380000102, 53.724205155634749 ], [ -129.424755380000079, 53.411405155634739 ], [ -129.506655380000097, 53.216705155634756 ], [ -129.883955380000089, 53.579705155634755 ], [ -130.056355380000099, 53.603905155634735 ], [ -129.92825538000011, 53.639605155634754 ], [ -130.286455380000092, 53.837505155634759 ], [ -130.186355380000094, 53.916105155634753 ], [ -129.826155380000102, 53.724205155634749 ] ] ], [ [ [ -130.149755380000101, 53.989205155634735 ], [ -130.214955380000106, 54.029205155634756 ], [ -130.193555380000078, 54.079705155634755 ], [ -130.132455380000096, 54.050005155634736 ], [ -130.149755380000101, 53.989205155634735 ] ] ], [ [ [ -130.259155380000095, 54.004705155634738 ], [ -130.344455380000113, 53.835305155634742 ], [ -130.458455380000089, 53.882205155634736 ], [ -130.354955380000092, 53.993305155634758 ], [ -130.71275538000009, 53.861105155634746 ], [ -130.411155380000082, 54.100805155634745 ], [ -130.259155380000095, 54.004705155634738 ] ] ], [ [ [ -132.808055380000098, 54.120305155634739 ], [ -132.569755380000089, 54.111905155634744 ], [ -132.658855380000091, 53.939405155634759 ], [ -132.301155380000097, 54.111705155634738 ], [ -132.15025538000009, 53.992805155634741 ], [ -132.225055380000072, 53.780305155634736 ], [ -132.663355380000098, 53.67940515563474 ], [ -132.418055380000112, 53.606105155634751 ], [ -132.156355380000093, 53.716405155634746 ], [ -132.072555380000097, 54.022805155634742 ], [ -131.663055380000088, 54.152205155634746 ], [ -131.982255380000083, 53.251705155634752 ], [ -132.457455380000113, 53.145305155634745 ], [ -132.68365538000009, 53.256705155634748 ], [ -132.543355380000094, 53.330505155634754 ], [ -132.73385538000008, 53.337205155634749 ], [ -132.406655380000075, 53.339705155634746 ], [ -132.972455380000099, 53.555805155634758 ], [ -132.881955380000079, 53.605505155634759 ], [ -133.138955380000084, 53.880305155634758 ], [ -133.071655380000095, 54.168905155634761 ], [ -132.808055380000098, 54.120305155634739 ] ] ], [ [ [ -130.195555380000087, 54.118005155634748 ], [ -130.254955380000098, 54.132205155634736 ], [ -130.252855380000085, 54.185505155634743 ], [ -130.151955380000089, 54.154405155634734 ], [ -130.195555380000087, 54.118005155634748 ] ] ], [ [ [ -130.648655380000093, 54.114405155634742 ], [ -130.784955380000099, 54.150005155634759 ], [ -130.781655380000075, 54.21170515563476 ], [ -130.6488553800001, 54.149705155634749 ], [ -130.648655380000093, 54.114405155634742 ] ] ], [ [ [ -130.355555380000112, 54.257805155634756 ], [ -130.374955380000074, 54.244205155634759 ], [ -130.467255380000097, 54.308605155634737 ], [ -130.417755380000074, 54.32640515563476 ], [ -130.355555380000112, 54.257805155634756 ] ] ], [ [ [ -130.266455380000082, 54.26050515563476 ], [ -130.334155380000084, 54.244705155634747 ], [ -130.350255380000078, 54.305505155634748 ], [ -130.272755380000092, 54.329705155634755 ], [ -130.266455380000082, 54.26050515563476 ] ] ], [ [ [ -130.704155380000088, 54.356705155634742 ], [ -130.754455380000081, 54.356105155634751 ], [ -130.767755380000096, 54.385005155634744 ], [ -130.699455380000074, 54.40660515563475 ], [ -130.704155380000088, 54.356705155634742 ] ] ], [ [ [ -130.951655380000091, 54.454705155634755 ], [ -130.925555380000105, 54.619405155634738 ], [ -130.747755380000086, 54.626105155634761 ], [ -130.760855380000095, 54.55470515563475 ], [ -130.951655380000091, 54.454705155634755 ] ] ], [ [ [ -130.268355380000088, 54.715005155634756 ], [ -130.370555380000098, 54.692205155634738 ], [ -130.37885538000009, 54.695305155634756 ], [ -130.209455380000094, 54.807805155634739 ], [ -130.268355380000088, 54.715005155634756 ] ] ], [ [ [ -130.518355380000088, 54.702505155634739 ], [ -130.611655380000087, 54.758005155634734 ], [ -130.469455380000113, 54.807805155634739 ], [ -130.453855380000107, 54.71910515563475 ], [ -130.518355380000088, 54.702505155634739 ] ] ], [ [ [ -130.385255380000103, 54.770005155634735 ], [ -130.45995538000011, 54.828305155634737 ], [ -130.168355380000094, 55.019705155634753 ], [ -130.163355380000098, 54.931405155634749 ], [ -130.385255380000103, 54.770005155634735 ] ] ], [ [ [ -124.968655380000087, 60.000005155634753 ], [ -94.800455380000102, 60.000605155634744 ], [ -94.680555380000101, 59.357205155634759 ], [ -94.789755380000088, 59.092205155634744 ], [ -94.437255380000096, 58.723005155634738 ], [ -94.228855380000084, 58.785005155634749 ], [ -94.363355380000087, 58.218905155634744 ], [ -94.143855380000105, 58.76360515563475 ], [ -93.152255380000099, 58.737805155634746 ], [ -92.418855380000082, 57.337505155634759 ], [ -92.876655380000102, 56.908405155634753 ], [ -90.992755380000091, 57.261405155634762 ], [ -89.132955380000084, 56.864805155634755 ], [ -89.305555380000101, 56.627205155634741 ], [ -95.153355380000079, 52.824205155634743 ], [ -95.154155380000105, 48.999405155634761 ], [ -123.09375538000009, 48.999405155634761 ], [ -123.248155380000085, 49.274605155634745 ], [ -122.923655380000099, 49.288305155634745 ], [ -122.85275538000009, 49.436105155634735 ], [ -123.236355380000091, 49.338905155634748 ], [ -123.159755380000092, 49.699205155634743 ], [ -123.492455380000095, 49.509705155634762 ], [ -123.535555380000091, 49.381405155634738 ], [ -124.068055380000089, 49.633905155634736 ], [ -123.940555380000092, 49.74250515563476 ], [ -123.776355380000098, 49.50390515563474 ], [ -123.533655380000098, 49.689705155634741 ], [ -123.79665538000009, 49.63830515563474 ], [ -123.93495538000009, 49.768305155634735 ], [ -123.872755380000086, 49.877205155634741 ], [ -123.958855380000088, 49.962205155634749 ], [ -123.74445538000009, 50.086905155634739 ], [ -123.821355380000085, 50.152205155634746 ], [ -123.990555380000089, 50.215805155634754 ], [ -123.809155380000092, 50.100005155634747 ], [ -123.99915538000009, 50.006405155634738 ], [ -123.926355380000089, 49.82580515563474 ], [ -124.037755380000092, 49.922505155634738 ], [ -124.413655380000094, 49.76360515563475 ], [ -124.829755380000094, 50.061905155634761 ], [ -124.70335538000009, 49.995505155634746 ], [ -124.601355380000086, 50.238905155634754 ], [ -124.715055380000095, 50.327505155634739 ], [ -124.651955380000089, 50.389205155634741 ], [ -124.434155380000092, 50.431705155634759 ], [ -124.347755380000095, 50.502505155634751 ], [ -125.07835538000009, 50.322505155634744 ], [ -124.859755380000095, 50.585805155634759 ], [ -124.805855380000096, 50.920805155634739 ], [ -125.11945538000009, 50.432805155634739 ], [ -125.548655380000099, 50.493305155634758 ], [ -125.443555380000092, 50.714205155634758 ], [ -125.705855380000088, 50.427805155634744 ], [ -126.275055380000097, 50.507505155634746 ], [ -126.185555380000096, 50.566305155634737 ], [ -126.274755380000087, 50.631705155634748 ], [ -125.738355380000087, 50.682205155634747 ], [ -125.62245538000009, 50.750005155634753 ], [ -125.505555380000089, 50.933305155634756 ], [ -125.633855380000085, 51.096905155634758 ], [ -125.731155380000089, 50.735505155634755 ], [ -126.132255380000089, 50.678805155634748 ], [ -126.198855380000097, 50.855805155634741 ], [ -126.559755380000098, 50.843905155634744 ], [ -126.49445538000009, 50.918005155634759 ], [ -126.225855380000098, 50.898605155634741 ], [ -126.177755380000093, 50.95140515563476 ], [ -127.179955380000095, 50.925805155634762 ], [ -127.033355380000089, 50.817805155634758 ], [ -127.538155380000092, 51.006905155634755 ], [ -126.816855380000092, 51.064705155634741 ], [ -126.691655380000086, 51.110505155634755 ], [ -126.662555380000086, 51.195005155634746 ], [ -127.206655380000086, 51.056405155634749 ], [ -127.789955380000094, 51.165505155634762 ], [ -127.133055380000087, 51.325505155634758 ], [ -127.778855380000095, 51.32470515563476 ], [ -127.551655380000085, 51.468305155634752 ], [ -127.488055380000091, 51.619405155634738 ], [ -126.70805538000009, 51.641905155634745 ], [ -126.619955380000093, 51.68000515563476 ], [ -126.660255380000095, 51.792205155634761 ], [ -126.693055380000089, 51.664705155634735 ], [ -127.432255380000086, 51.668305155634741 ], [ -127.351055380000091, 51.863605155634744 ], [ -127.70635538000009, 51.456405155634755 ], [ -127.878055380000092, 51.673905155634756 ], [ -127.861655380000087, 51.904205155634756 ], [ -127.664455380000092, 51.953905155634757 ], [ -127.17165538000009, 52.312505155634753 ], [ -126.668855380000096, 51.984605155634753 ], [ -126.940855380000087, 52.303905155634752 ], [ -126.736655380000087, 52.378005155634739 ], [ -127.228055380000086, 52.453005155634756 ], [ -126.924755380000093, 52.714705155634746 ], [ -126.966955380000087, 52.828605155634747 ], [ -127.618355380000096, 52.291905155634751 ], [ -127.869155380000095, 52.211105155634741 ], [ -127.881655380000097, 52.512505155634742 ], [ -128.012555380000094, 52.341105155634736 ], [ -128.059455380000088, 52.470305155634762 ], [ -127.879755380000091, 52.579705155634755 ], [ -128.393855380000105, 52.291405155634735 ], [ -128.224455380000109, 52.459705155634751 ], [ -128.131655380000097, 52.876405155634743 ], [ -128.44105538000008, 52.822805155634754 ], [ -128.539755380000088, 53.131905155634755 ], [ -128.85885538000008, 53.28360515563476 ], [ -128.887955380000108, 53.425005155634736 ], [ -128.972755380000081, 53.55300515563475 ], [ -128.523655380000093, 53.396705155634734 ], [ -128.131955380000079, 53.448905155634762 ], [ -127.946155380000093, 53.252205155634741 ], [ -127.867755380000091, 53.239705155634752 ], [ -128.126955380000084, 53.481105155634751 ], [ -128.813055380000094, 53.619205155634759 ], [ -128.770555380000076, 53.795805155634739 ], [ -128.471355380000091, 53.832505155634735 ], [ -128.679055380000079, 53.907505155634752 ], [ -128.600555380000088, 54.031705155634754 ], [ -129.23245538000009, 53.625805155634751 ], [ -129.272755380000092, 53.37920515563475 ], [ -130.101355380000086, 53.946705155634746 ], [ -130.04665538000009, 54.153305155634754 ], [ -129.614155380000085, 54.178905155634752 ], [ -129.474455380000109, 54.240005155634762 ], [ -130.122755380000086, 54.154405155634734 ], [ -130.261155380000105, 54.342805155634736 ], [ -130.481155380000075, 54.364705155634752 ], [ -130.416655380000094, 54.630305155634758 ], [ -130.057755380000089, 54.336105155634741 ], [ -129.959155380000084, 54.316105155634759 ], [ -130.374155380000104, 54.655005155634754 ], [ -129.910255380000081, 54.605505155634759 ], [ -130.201655380000091, 54.726905155634753 ], [ -130.173855380000077, 54.846705155634751 ], [ -129.622455380000076, 54.997805155634737 ], [ -129.996355380000097, 55.02420515563476 ], [ -129.471055380000109, 55.472805155634759 ], [ -129.786955380000109, 55.56670515563475 ], [ -129.817455380000098, 55.28330515563475 ], [ -130.113655380000097, 54.996405155634747 ], [ -129.943855380000088, 55.282205155634742 ], [ -130.103655380000077, 55.56670515563475 ], [ -129.962255380000101, 55.917805155634753 ], [ -130.088555380000088, 56.118005155634748 ], [ -131.824155380000093, 56.596905155634758 ], [ -131.860955380000092, 56.798805155634753 ], [ -132.103055380000086, 56.866705155634762 ], [ -132.027455380000106, 57.036405155634739 ], [ -132.336955380000092, 57.088305155634757 ], [ -132.226655380000096, 57.204705155634755 ], [ -133.429955380000081, 58.459205155634734 ], [ -134.951955380000072, 59.280005155634754 ], [ -135.091655380000077, 59.426905155634742 ], [ -135.014455380000072, 59.567505155634748 ], [ -135.473555380000107, 59.801905155634742 ], [ -136.310555380000096, 59.612505155634736 ], [ -136.23385538000008, 59.525805155634757 ], [ -136.463655380000091, 59.469705155634742 ], [ -136.583855380000102, 59.163305155634745 ], [ -137.478055380000086, 58.907205155634742 ], [ -137.590855380000107, 59.238605155634744 ], [ -139.047755380000098, 59.997505155634755 ], [ -124.968655380000087, 60.000005155634753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 72, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Eastern Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.613655380000097, 43.42030515563475 ], [ -65.633055380000087, 43.474705155634737 ], [ -65.56605538000008, 43.508305155634744 ], [ -65.559955380000105, 43.499705155634743 ], [ -65.613655380000097, 43.42030515563475 ] ] ], [ [ [ -59.816955380000081, 43.92830515563476 ], [ -59.95335538000009, 43.898605155634741 ], [ -60.129955380000098, 43.941905155634757 ], [ -59.72475538000009, 43.991105155634742 ], [ -59.816955380000081, 43.92830515563476 ] ] ], [ [ [ -66.282755380000083, 44.289705155634735 ], [ -66.322255380000087, 44.252805155634761 ], [ -66.206355380000105, 44.395305155634745 ], [ -66.208055380000104, 44.372805155634737 ], [ -66.282755380000083, 44.289705155634735 ] ] ], [ [ [ -66.886155380000105, 44.614405155634742 ], [ -66.858655380000101, 44.743005155634748 ], [ -66.772555380000085, 44.809205155634757 ], [ -66.740255380000093, 44.707805155634745 ], [ -66.886155380000105, 44.614405155634742 ] ] ], [ [ [ -61.199955380000091, 45.558305155634756 ], [ -61.219955380000101, 45.560005155634755 ], [ -61.222255380000092, 45.569405155634755 ], [ -61.208655380000096, 45.567205155634738 ], [ -61.199955380000091, 45.558305155634756 ] ] ], [ [ [ -60.993855380000099, 45.457805155634745 ], [ -61.104455380000104, 45.546405155634758 ], [ -60.879955380000098, 45.560505155634743 ], [ -60.952455380000089, 45.530005155634754 ], [ -60.993855380000099, 45.457805155634745 ] ] ], [ [ [ -63.246355380000097, 46.435505155634743 ], [ -63.261655380000093, 46.436405155634745 ], [ -63.284955380000099, 46.45080515563474 ], [ -63.24585538000008, 46.442805155634758 ], [ -63.246355380000097, 46.435505155634743 ] ] ], [ [ [ -56.150855380000081, 46.758005155634734 ], [ -56.220255380000083, 46.747205155634745 ], [ -56.237255380000079, 46.76390515563476 ], [ -56.173855380000106, 46.810005155634755 ], [ -56.150855380000081, 46.758005155634734 ] ] ], [ [ [ -71.111155380000099, 46.850505155634735 ], [ -70.936955380000086, 46.99250515563476 ], [ -70.809155380000078, 47.015305155634749 ], [ -70.904155380000105, 46.913605155634755 ], [ -71.111155380000099, 46.850505155634735 ] ] ], [ [ [ -60.445255380000106, 46.861705155634738 ], [ -60.322755380000103, 46.736405155634756 ], [ -60.60915538000009, 46.201905155634748 ], [ -60.41995538000009, 46.280005155634754 ], [ -61.113055380000105, 45.955305155634747 ], [ -60.73415538000009, 46.05330515563476 ], [ -61.149155380000082, 45.69970515563476 ], [ -60.800855380000087, 45.71170515563476 ], [ -60.409155380000101, 45.980005155634743 ], [ -60.789755380000088, 45.934405155634735 ], [ -60.304955380000081, 46.210505155634749 ], [ -60.656055380000083, 46.067805155634758 ], [ -60.347755380000081, 46.310505155634743 ], [ -59.873055380000096, 46.175805155634762 ], [ -59.840555380000097, 45.938305155634751 ], [ -60.39225538000008, 45.641105155634747 ], [ -61.336955380000092, 45.573305155634742 ], [ -61.527455380000106, 45.989405155634742 ], [ -61.447755380000103, 46.149405155634739 ], [ -60.60915538000009, 47.024405155634739 ], [ -60.445255380000106, 46.861705155634738 ] ] ], [ [ [ -64.039755380000088, 46.743305155634758 ], [ -63.742255380000103, 46.439405155634759 ], [ -63.647255380000104, 46.567205155634738 ], [ -63.216355380000095, 46.412205155634737 ], [ -61.964955380000106, 46.453305155634737 ], [ -62.3577553800001, 46.355805155634741 ], [ -62.603855380000084, 46.182505155634757 ], [ -62.459155380000084, 46.006405155634738 ], [ -62.761155380000105, 45.954205155634739 ], [ -63.122255380000098, 46.21170515563476 ], [ -62.96275538000009, 46.320005155634746 ], [ -63.090855380000079, 46.269205155634737 ], [ -63.22445538000008, 46.139705155634758 ], [ -63.591955380000087, 46.211905155634739 ], [ -63.744955380000079, 46.394705155634753 ], [ -64.129955380000098, 46.407205155634742 ], [ -64.105555380000084, 46.618005155634748 ], [ -64.415555380000086, 46.670505155634757 ], [ -64.020855380000086, 47.038605155634755 ], [ -64.039755380000088, 46.743305155634758 ] ] ], [ [ [ -56.271155380000096, 46.994205155634759 ], [ -56.233355380000091, 46.850305155634757 ], [ -56.368355380000082, 46.78470515563474 ], [ -56.390255380000099, 47.118905155634749 ], [ -56.271155380000096, 46.994205155634759 ] ] ], [ [ [ -55.876155380000085, 47.26050515563476 ], [ -55.968355380000105, 47.257805155634756 ], [ -55.881155380000081, 47.293305155634741 ], [ -55.876155380000085, 47.26050515563476 ] ] ], [ [ [ -61.380555380000089, 47.620305155634739 ], [ -61.541955380000104, 47.61720515563475 ], [ -61.855555380000084, 47.417205155634761 ], [ -61.69135538000009, 47.515505155634756 ], [ -61.964955380000106, 47.275505155634747 ], [ -61.799455380000097, 47.23280515563475 ], [ -62.013055380000083, 47.225805155634745 ], [ -61.928055380000103, 47.407205155634742 ], [ -61.5358553800001, 47.631705155634748 ], [ -61.380555380000089, 47.620305155634739 ] ] ], [ [ [ -54.261455380000086, 47.390305155634749 ], [ -54.365555380000103, 47.411705155634749 ], [ -54.128955380000093, 47.670505155634757 ], [ -54.1608553800001, 47.535005155634749 ], [ -54.261455380000086, 47.390305155634749 ] ] ], [ [ [ -54.077555380000092, 47.479405155634751 ], [ -54.101955380000078, 47.501405155634743 ], [ -54.071455380000089, 47.685505155634743 ], [ -54.0589553800001, 47.527205155634746 ], [ -54.077555380000092, 47.479405155634751 ] ] ], [ [ [ -55.901955380000089, 47.602505155634745 ], [ -56.097855380000084, 47.627505155634751 ], [ -56.113655380000097, 47.644705155634753 ], [ -55.9339553800001, 47.688305155634751 ], [ -55.901955380000089, 47.602505155634745 ] ] ], [ [ [ -64.4827553800001, 47.917805155634753 ], [ -64.604955380000092, 47.748305155634753 ], [ -64.690555380000092, 47.753005155634739 ], [ -64.667455380000092, 47.86690515563474 ], [ -64.4827553800001, 47.917805155634753 ] ] ], [ [ [ -64.567455380000098, 47.899405155634739 ], [ -64.593655380000087, 47.918005155634759 ], [ -64.501155380000085, 48.027505155634756 ], [ -64.470555380000093, 47.953305155634737 ], [ -64.567455380000098, 47.899405155634739 ] ] ], [ [ [ -53.712855380000093, 48.14890515563475 ], [ -53.509755380000087, 48.198305155634742 ], [ -53.634155380000095, 48.075305155634751 ], [ -53.935855380000106, 48.182505155634757 ], [ -53.712855380000093, 48.14890515563475 ] ] ], [ [ [ -58.342255380000097, 49.066105155634759 ], [ -58.356155380000104, 49.065805155634749 ], [ -58.333655380000096, 49.077805155634749 ], [ -58.330555380000078, 49.073305155634742 ], [ -58.342255380000097, 49.066105155634759 ] ] ], [ [ [ -54.7053553800001, 49.400505155634747 ], [ -54.759155380000095, 49.437805155634734 ], [ -54.673055380000079, 49.49250515563476 ], [ -54.64085538000009, 49.463905155634748 ], [ -54.7053553800001, 49.400505155634747 ] ] ], [ [ [ -55.695555380000087, 49.506905155634755 ], [ -55.722755380000081, 49.557805155634739 ], [ -55.653055380000097, 49.555305155634741 ], [ -55.664455380000078, 49.52390515563475 ], [ -55.695555380000087, 49.506905155634755 ] ] ], [ [ [ -55.693055380000089, 49.567505155634748 ], [ -55.659755380000092, 49.63550515563476 ], [ -55.567555380000101, 49.600005155634747 ], [ -55.586455380000103, 49.591405155634746 ], [ -55.693055380000089, 49.567505155634748 ] ] ], [ [ [ -54.576655380000091, 49.558605155634737 ], [ -54.855855380000094, 49.484405155634747 ], [ -54.894455380000096, 49.585305155634742 ], [ -54.536155380000082, 49.664105155634743 ], [ -54.576655380000091, 49.558605155634737 ] ] ], [ [ [ -54.004455380000081, 49.647505155634761 ], [ -54.25785538000008, 49.56670515563475 ], [ -54.298955380000081, 49.610005155634738 ], [ -54.141955380000098, 49.750005155634753 ], [ -54.004455380000081, 49.647505155634761 ] ] ], [ [ [ -56.803655380000095, 49.76330515563474 ], [ -56.827555380000092, 49.761105155634752 ], [ -56.8380553800001, 49.767505155634737 ], [ -56.782255380000095, 49.786905155634756 ], [ -56.803655380000095, 49.76330515563474 ] ] ], [ [ [ -62.089755380000099, 49.386405155634762 ], [ -61.661655380000099, 49.144405155634743 ], [ -62.195555380000087, 49.075005155634742 ], [ -63.089955380000106, 49.228005155634762 ], [ -64.513855380000081, 49.863605155634744 ], [ -64.142755380000096, 49.94800515563476 ], [ -63.136155380000105, 49.780805155634752 ], [ -62.089755380000099, 49.386405155634762 ] ] ], [ [ [ -63.859455380000099, 50.197805155634754 ], [ -63.916155380000106, 50.201705155634741 ], [ -63.930555380000101, 50.229405155634751 ], [ -63.889755380000082, 50.24220515563475 ], [ -63.859455380000099, 50.197805155634754 ] ] ], [ [ [ -59.345855380000103, 50.533905155634741 ], [ -59.384155380000095, 50.633005155634734 ], [ -59.371955380000088, 50.652805155634738 ], [ -59.300255380000095, 50.581905155634743 ], [ -59.345855380000103, 50.533905155634741 ] ] ], [ [ [ -55.564755380000094, 50.69970515563476 ], [ -55.624755380000096, 50.787205155634737 ], [ -55.450555380000083, 50.798305155634736 ], [ -55.512555380000094, 50.722805155634759 ], [ -55.564755380000094, 50.69970515563476 ] ] ], [ [ [ -55.555555380000101, 50.886405155634762 ], [ -55.615555380000103, 50.906105155634762 ], [ -55.635355380000078, 50.96140515563475 ], [ -55.535355380000084, 50.981405155634761 ], [ -55.555555380000101, 50.886405155634762 ] ] ], [ [ [ -55.993955380000102, 51.200305155634751 ], [ -55.998055380000096, 51.207505155634735 ], [ -55.967755380000085, 51.226605155634743 ], [ -55.970555380000093, 51.218305155634752 ], [ -55.993955380000102, 51.200305155634751 ] ] ], [ [ [ -58.413355380000098, 51.238905155634754 ], [ -58.462255380000101, 51.216105155634736 ], [ -58.5649553800001, 51.233305155634739 ], [ -58.419455380000102, 51.274705155634749 ], [ -58.413355380000098, 51.238905155634754 ] ] ], [ [ [ -53.756355380000088, 48.503305155634749 ], [ -54.094455380000085, 48.425805155634762 ], [ -54.138055380000083, 48.35920515563474 ], [ -53.647255380000104, 48.541105155634753 ], [ -53.5880553800001, 48.42800515563475 ], [ -53.07975538000008, 48.698905155634762 ], [ -52.978055380000086, 48.604405155634751 ], [ -53.187555380000106, 48.350805155634745 ], [ -53.66225538000009, 48.163305155634745 ], [ -53.934155380000078, 48.233305155634739 ], [ -53.945255380000106, 48.178905155634752 ], [ -53.6839553800001, 48.060805155634753 ], [ -53.911455380000092, 48.019205155634737 ], [ -53.607855380000103, 48.051105155634744 ], [ -53.850555380000088, 47.76050515563476 ], [ -53.550555380000105, 47.529205155634756 ], [ -53.274455380000092, 48.01330515563474 ], [ -52.920055380000093, 48.171405155634758 ], [ -52.831455380000079, 48.101705155634747 ], [ -53.26725538000008, 47.606105155634751 ], [ -53.121955380000088, 47.413305155634745 ], [ -52.779455380000087, 47.80300515563475 ], [ -52.614455380000095, 47.516705155634739 ], [ -53.102555380000098, 46.636705155634743 ], [ -53.617755380000091, 46.644205155634737 ], [ -53.591455380000099, 47.156105155634762 ], [ -54.187755380000084, 46.819205155634748 ], [ -53.867555380000084, 47.402805155634738 ], [ -53.983955380000083, 47.757805155634756 ], [ -54.195255380000106, 47.85750515563474 ], [ -54.4827553800001, 47.391705155634739 ], [ -54.613055380000105, 47.358305155634739 ], [ -54.418355380000094, 47.603605155634753 ], [ -54.6214553800001, 47.390005155634739 ], [ -54.856455380000085, 47.390505155634756 ], [ -55.246955380000088, 46.916905155634751 ], [ -55.689755380000094, 46.858305155634739 ], [ -55.983055380000081, 46.952505155634739 ], [ -54.845855380000103, 47.556905155634738 ], [ -55.037655380000103, 47.626605155634749 ], [ -54.936155380000088, 47.781705155634754 ], [ -55.130755380000096, 47.611905155634744 ], [ -55.427555380000086, 47.71170515563476 ], [ -55.406655380000103, 47.493005155634748 ], [ -55.587855380000093, 47.398605155634741 ], [ -55.925555380000105, 47.439105155634749 ], [ -55.74585538000008, 47.585305155634742 ], [ -56.172555380000091, 47.497205155634745 ], [ -55.628355380000102, 47.674705155634754 ], [ -55.917555380000096, 47.657505155634752 ], [ -55.773655380000093, 47.956905155634743 ], [ -56.161455380000092, 47.634205155634746 ], [ -56.840855380000079, 47.521405155634753 ], [ -58.036455380000092, 47.696105155634754 ], [ -59.135555380000085, 47.556405155634749 ], [ -59.406955380000085, 47.889705155634758 ], [ -58.418355380000094, 48.486605155634734 ], [ -59.261155380000105, 48.476605155634743 ], [ -58.774755380000101, 48.778905155634746 ], [ -58.958655380000096, 48.613905155634754 ], [ -58.709455380000094, 48.570805155634744 ], [ -58.396155380000096, 49.131405155634738 ], [ -58.353755380000081, 49.056605155634756 ], [ -58.178355380000085, 49.063205155634748 ], [ -58.06035538000009, 48.976105155634755 ], [ -57.881655380000097, 48.968905155634744 ], [ -58.144455380000096, 49.121905155634735 ], [ -57.918655380000104, 49.124705155634743 ], [ -58.095955380000106, 49.16630515563476 ], [ -57.928055380000103, 49.240305155634744 ], [ -58.200855380000093, 49.239705155634752 ], [ -58.2233553800001, 49.390305155634749 ], [ -57.998355380000106, 49.559205155634757 ], [ -57.696455380000089, 49.463605155634738 ], [ -57.948355380000095, 49.674205155634738 ], [ -57.37255538000008, 50.590805155634754 ], [ -57.148055380000102, 50.621905155634735 ], [ -57.378655380000083, 50.687805155634734 ], [ -56.927555380000086, 50.915805155634743 ], [ -56.682555380000082, 51.339405155634736 ], [ -55.898055380000102, 51.628605155634759 ], [ -55.877855380000085, 51.49220515563475 ], [ -55.405255380000085, 51.561705155634755 ], [ -55.597855380000084, 51.303605155634742 ], [ -56.085555380000102, 51.368305155634758 ], [ -55.732555380000093, 51.080005155634737 ], [ -56.068955380000091, 50.724405155634756 ], [ -56.155255380000085, 50.88550515563476 ], [ -56.163355380000098, 50.617805155634741 ], [ -56.905355380000088, 49.747505155634755 ], [ -56.784055380000098, 49.731205155634754 ], [ -56.848955380000092, 49.544405155634749 ], [ -56.153955380000099, 50.150505155634747 ], [ -55.755055380000101, 49.924205155634738 ], [ -55.491755380000086, 50.007305155634739 ], [ -56.115355380000096, 49.640005155634739 ], [ -55.833355380000086, 49.686605155634751 ], [ -56.1291553800001, 49.425505155634752 ], [ -55.827855380000102, 49.52420515563476 ], [ -55.664455380000078, 49.381905155634755 ], [ -55.523055380000102, 49.486605155634734 ], [ -55.5666553800001, 49.362805155634746 ], [ -55.36945538000009, 49.503305155634749 ], [ -55.315355380000085, 49.314405155634759 ], [ -55.305555380000101, 49.534405155634758 ], [ -55.1411553800001, 49.54530515563475 ], [ -55.383355380000097, 49.040805155634743 ], [ -55.07805538000008, 49.356905155634749 ], [ -54.824455380000103, 49.269205155634737 ], [ -54.528955380000099, 49.53330515563475 ], [ -54.486955380000097, 49.259705155634762 ], [ -54.358055380000081, 49.426905155634742 ], [ -53.775055380000083, 49.396105155634743 ], [ -53.488655380000097, 49.22050515563474 ], [ -54.096155380000084, 48.812205155634743 ], [ -53.800855380000087, 48.812805155634734 ], [ -53.9322553800001, 48.713905155634748 ], [ -53.932555380000082, 48.624705155634743 ], [ -53.601955380000078, 48.689705155634741 ], [ -53.956155380000098, 48.543905155634761 ], [ -53.756355380000088, 48.503305155634749 ] ] ], [ [ [ -55.367555380000084, 51.874205155634755 ], [ -55.430555380000101, 51.896705155634734 ], [ -55.269455380000096, 51.99960515563474 ], [ -55.302255380000105, 51.933305155634756 ], [ -55.367555380000084, 51.874205155634755 ] ] ], [ [ [ -81.476955380000078, 52.249205155634755 ], [ -81.646155380000096, 52.251405155634743 ], [ -81.710055380000085, 52.262505155634742 ], [ -81.551655380000085, 52.298005155634755 ], [ -81.476955380000078, 52.249205155634755 ] ] ], [ [ [ -55.763055380000083, 53.029405155634734 ], [ -55.853355380000096, 53.015305155634749 ], [ -55.876455380000095, 53.027505155634756 ], [ -55.800555380000105, 53.093605155634762 ], [ -55.763055380000083, 53.029405155634734 ] ] ], [ [ [ -55.778055380000097, 53.289705155634735 ], [ -55.786655380000099, 53.288305155634745 ], [ -55.797255380000081, 53.295505155634757 ], [ -55.785055380000102, 53.303605155634742 ], [ -55.778055380000097, 53.289705155634735 ] ] ], [ [ [ -55.7875553800001, 53.394205155634737 ], [ -55.949455380000103, 53.430305155634741 ], [ -55.979155380000094, 53.459205155634734 ], [ -55.729155380000094, 53.455305155634747 ], [ -55.7875553800001, 53.394205155634737 ] ] ], [ [ [ -56.867255380000103, 53.765005155634739 ], [ -56.948655380000105, 53.750005155634753 ], [ -57.014455380000101, 53.785505155634738 ], [ -56.844455380000085, 53.792505155634743 ], [ -56.867255380000103, 53.765005155634739 ] ] ], [ [ [ -58.518355380000088, 54.051705155634735 ], [ -58.561455380000098, 54.063905155634743 ], [ -58.373955380000098, 54.104205155634745 ], [ -58.432555380000082, 54.067205155634738 ], [ -58.518355380000088, 54.051705155634735 ] ] ], [ [ [ -57.324755380000084, 54.498905155634745 ], [ -57.359455380000099, 54.53330515563475 ], [ -57.26725538000008, 54.585505155634749 ], [ -57.240355380000096, 54.517805155634747 ], [ -57.324755380000084, 54.498905155634745 ] ] ], [ [ [ -57.940855380000102, 54.911905155634756 ], [ -57.983955380000083, 54.802205155634752 ], [ -57.841655380000105, 54.812505155634753 ], [ -58.120055380000082, 54.755505155634737 ], [ -58.22475538000009, 54.835305155634742 ], [ -57.940855380000102, 54.911905155634756 ] ] ], [ [ [ -58.675355380000099, 54.914105155634743 ], [ -58.760555380000085, 54.920505155634757 ], [ -58.660355380000084, 55.008605155634754 ], [ -58.656655380000103, 54.942205155634738 ], [ -58.675355380000099, 54.914105155634743 ] ] ], [ [ [ -60.970855380000103, 55.869405155634738 ], [ -61.016955380000098, 55.873005155634743 ], [ -61.070555380000087, 55.938605155634761 ], [ -60.908355380000103, 55.898305155634759 ], [ -60.970855380000103, 55.869405155634738 ] ] ], [ [ [ -60.858655380000101, 55.864705155634752 ], [ -60.865055380000086, 55.952805155634749 ], [ -60.686455380000098, 55.921905155634747 ], [ -60.756455380000091, 55.880305155634758 ], [ -60.858655380000101, 55.864705155634752 ] ] ], [ [ [ -60.943355380000099, 56.006705155634748 ], [ -61.171155380000101, 56.028605155634736 ], [ -61.2327553800001, 56.091105155634736 ], [ -61.089155380000079, 56.17000515563474 ], [ -60.943355380000099, 56.006705155634748 ] ] ], [ [ [ -61.623655380000088, 56.400005155634759 ], [ -61.468355380000105, 56.404405155634734 ], [ -61.41225538000009, 56.326705155634741 ], [ -61.796155380000101, 56.413005155634735 ], [ -61.623655380000088, 56.400005155634759 ] ] ], [ [ [ -61.435855380000106, 56.541405155634735 ], [ -61.168055380000084, 56.474705155634737 ], [ -61.148955380000103, 56.441105155634759 ], [ -61.64225538000008, 56.486405155634756 ], [ -61.435855380000106, 56.541405155634735 ] ] ], [ [ [ -61.187555380000106, 56.586105155634741 ], [ -61.165855380000096, 56.684405155634735 ], [ -61.077855380000102, 56.675005155634736 ], [ -61.059455380000088, 56.626405155634743 ], [ -61.187555380000106, 56.586105155634741 ] ] ], [ [ [ -61.429255380000086, 56.92970515563475 ], [ -61.355855380000094, 56.852805155634755 ], [ -61.585555380000102, 56.766405155634757 ], [ -61.386655380000093, 56.77590515563476 ], [ -61.409155380000101, 56.615605155634753 ], [ -61.644455380000096, 56.73480515563476 ], [ -61.429255380000086, 56.92970515563475 ] ] ], [ [ [ -61.621655380000078, 57.335505155634749 ], [ -61.652255380000099, 57.290505155634762 ], [ -61.768655380000098, 57.325005155634742 ], [ -61.726955380000078, 57.374405155634761 ], [ -61.621655380000078, 57.335505155634749 ] ] ], [ [ [ -61.655255380000085, 57.391405155634757 ], [ -61.839755380000099, 57.40800515563474 ], [ -61.900355380000093, 57.437505155634753 ], [ -61.648055380000102, 57.530305155634736 ], [ -61.655255380000085, 57.391405155634757 ] ] ], [ [ [ -61.878355380000102, 57.463005155634747 ], [ -61.955855380000088, 57.458005155634751 ], [ -62.020355380000098, 57.540305155634755 ], [ -61.783655380000084, 57.550505155634752 ], [ -61.878355380000102, 57.463005155634747 ] ] ], [ [ [ -61.688655380000085, 57.713005155634747 ], [ -61.768955380000079, 57.716905155634734 ], [ -61.896155380000096, 57.769705155634753 ], [ -61.711155380000093, 57.834205155634734 ], [ -61.688655380000085, 57.713005155634747 ] ] ], [ [ [ -61.947555380000097, 57.787205155634737 ], [ -62.089155380000079, 57.808005155634746 ], [ -62.108055380000081, 57.83780515563474 ], [ -61.928355380000085, 57.90860515563476 ], [ -61.947555380000097, 57.787205155634737 ] ] ], [ [ [ -64.42765538000009, 60.37290515563474 ], [ -64.448655380000105, 60.284205155634751 ], [ -64.868055380000101, 60.458905155634753 ], [ -64.639955380000089, 60.484705155634757 ], [ -64.42765538000009, 60.37290515563474 ] ] ], [ [ [ -64.6899553800001, 60.584405155634741 ], [ -64.710855380000083, 60.602805155634755 ], [ -64.592755380000085, 60.685505155634743 ], [ -64.620555380000098, 60.616705155634762 ], [ -64.6899553800001, 60.584405155634741 ] ] ], [ [ [ -69.977255380000088, 60.933005155634746 ], [ -70.025055380000083, 61.001905155634759 ], [ -69.943555380000106, 61.031405155634744 ], [ -69.930855380000082, 61.004705155634738 ], [ -69.977255380000088, 60.933005155634746 ] ] ], [ [ [ -76.317755380000079, 62.412205155634737 ], [ -75.709755380000104, 62.296405155634758 ], [ -75.89085538000009, 62.15690515563476 ], [ -75.321955380000105, 62.311105155634735 ], [ -74.571655380000095, 62.103005155634762 ], [ -74.759755380000087, 62.206405155634755 ], [ -73.678855380000101, 62.480005155634743 ], [ -72.626655380000102, 62.11550515563475 ], [ -72.748655380000088, 61.856405155634761 ], [ -72.234955380000088, 61.872205155634745 ], [ -72.010055380000097, 61.675305155634746 ], [ -72.303555380000091, 61.56810515563474 ], [ -71.979255380000097, 61.600705155634742 ], [ -71.928855380000101, 61.705805155634735 ], [ -71.575055380000094, 61.608605155634748 ], [ -71.887655380000098, 61.42940515563474 ], [ -71.389955380000089, 61.137805155634751 ], [ -70.146155380000096, 61.084705155634751 ], [ -69.927455380000083, 60.807805155634739 ], [ -69.519755380000106, 61.073305155634742 ], [ -69.371955380000088, 60.80440515563474 ], [ -69.826155380000102, 60.525505155634747 ], [ -69.624755380000096, 60.067505155634748 ], [ -70.945855380000097, 60.063005155634741 ], [ -69.726955380000078, 59.963605155634738 ], [ -69.600555380000088, 59.833005155634751 ], [ -69.540855380000096, 59.671105155634748 ], [ -69.761155380000105, 59.48420515563474 ], [ -69.631455380000091, 59.376405155634743 ], [ -69.758355380000097, 59.320305155634756 ], [ -69.234755380000081, 59.233905155634758 ], [ -69.530555380000095, 59.182205155634747 ], [ -69.344155380000103, 59.091105155634736 ], [ -69.547455380000088, 58.808005155634746 ], [ -69.86915538000008, 59.05300515563475 ], [ -69.815855380000102, 58.823905155634762 ], [ -70.153655380000089, 58.777505155634756 ], [ -69.818855380000088, 58.588605155634738 ], [ -69.279155380000105, 58.888005155634758 ], [ -68.360555380000079, 58.78190515563476 ], [ -68.20305538000008, 58.44170515563475 ], [ -68.344155380000103, 58.127505155634751 ], [ -69.135055380000097, 57.896905155634741 ], [ -69.369055380000106, 57.765205155634746 ], [ -68.404155380000105, 58.039705155634735 ], [ -68.003355380000102, 58.57640515563476 ], [ -67.85745538000009, 58.320305155634756 ], [ -68.128355380000102, 58.073605155634752 ], [ -67.801355380000103, 58.29670515563474 ], [ -67.723855380000089, 58.458905155634753 ], [ -67.713855380000098, 57.923005155634755 ], [ -67.57835538000009, 58.215305155634738 ], [ -66.629755380000091, 58.503605155634759 ], [ -66.388655380000102, 58.850505155634735 ], [ -65.935855380000106, 58.609705155634757 ], [ -66.089455380000089, 58.365305155634744 ], [ -66.058855380000097, 58.320305155634756 ], [ -65.879955380000098, 58.627205155634741 ], [ -66.103855380000084, 58.773605155634741 ], [ -65.789455380000078, 58.861905155634744 ], [ -65.988555380000093, 58.903605155634736 ], [ -65.317455380000098, 59.041405155634735 ], [ -65.718055380000095, 59.153005155634744 ], [ -65.581655380000086, 59.377205155634741 ], [ -65.357255380000083, 59.277205155634746 ], [ -65.561355380000094, 59.486105155634746 ], [ -64.983355380000091, 59.376405155634743 ], [ -65.411655380000099, 59.509405155634752 ], [ -65.527755380000087, 59.716905155634734 ], [ -65.3346553800001, 59.847005155634761 ], [ -65.152755380000087, 59.780005155634754 ], [ -64.983455380000095, 59.763505155634746 ], [ -65.231955380000102, 59.885805155634742 ], [ -64.854455380000104, 60.361105155634746 ], [ -64.466955380000087, 60.278605155634736 ], [ -64.431155380000092, 60.258105155634738 ], [ -64.643055380000078, 60.287505155634747 ], [ -64.759455380000105, 60.231105155634751 ], [ -64.421755380000093, 60.215605155634748 ], [ -64.465055380000081, 60.085005155634761 ], [ -64.827555380000092, 59.986405155634756 ], [ -64.490855380000085, 60.059405155634735 ], [ -64.373955380000098, 60.123605155634735 ], [ -64.499455380000086, 59.891705155634739 ], [ -64.166955380000104, 60.025005155634759 ], [ -64.176755380000088, 59.785105155634753 ], [ -63.959755380000104, 59.756405155634738 ], [ -64.264455380000101, 59.787505155634747 ], [ -64.057755380000089, 59.625305155634734 ], [ -64.116955380000093, 59.517505155634737 ], [ -63.997255380000098, 59.626605155634749 ], [ -63.722555380000102, 59.51390515563476 ], [ -64.062255380000096, 59.382505155634746 ], [ -63.356455380000085, 59.205005155634737 ], [ -64.043955380000085, 59.015305155634749 ], [ -63.134155380000095, 59.058305155634756 ], [ -63.336155380000093, 59.025005155634759 ], [ -63.160555380000091, 58.926405155634754 ], [ -63.325055380000094, 58.855805155634741 ], [ -63.033355380000103, 58.873905155634745 ], [ -62.847555380000102, 58.690505155634739 ], [ -63.589455380000089, 58.300805155634762 ], [ -63.264755380000082, 58.463005155634747 ], [ -62.557555380000082, 58.48250515563474 ], [ -62.82805538000008, 58.252205155634741 ], [ -62.584455380000094, 58.214405155634736 ], [ -62.965055380000081, 58.153905155634746 ], [ -63.341255380000092, 57.980605155634734 ], [ -62.452855380000102, 58.175305155634746 ], [ -62.514455380000101, 58.057505155634757 ], [ -62.30695538000009, 58.031105155634762 ], [ -62.528355380000079, 58.005505155634737 ], [ -62.672755380000098, 57.93000515563476 ], [ -62.127555380000103, 57.968005155634742 ], [ -62.125255380000084, 57.806905155634738 ], [ -61.884455380000105, 57.626905155634759 ], [ -62.545355380000103, 57.501105155634761 ], [ -61.891455380000082, 57.411905155634756 ], [ -61.803055380000103, 57.358905155634758 ], [ -62.01585538000009, 57.243005155634748 ], [ -61.358355380000091, 57.087505155634759 ], [ -61.661455380000092, 56.809405155634735 ], [ -61.906455380000097, 56.79530515563475 ], [ -61.680555380000101, 56.618005155634748 ], [ -62.505055380000101, 56.788905155634737 ], [ -62.049455380000097, 56.832505155634735 ], [ -62.573955380000086, 56.792805155634753 ], [ -61.708055380000104, 56.568905155634738 ], [ -62.143055380000078, 56.449205155634743 ], [ -61.661455380000092, 56.270305155634745 ], [ -62.076155380000102, 56.285005155634749 ], [ -61.350855380000098, 56.22220515563474 ], [ -61.452255380000082, 56.056905155634738 ], [ -61.237555380000089, 56.042805155634753 ], [ -61.503655380000083, 56.006905155634755 ], [ -61.117755380000091, 55.966105155634736 ], [ -61.104455380000104, 55.84550515563474 ], [ -60.729755380000086, 55.829405155634745 ], [ -60.879455380000081, 55.73280515563475 ], [ -60.615355380000096, 55.821905155634752 ], [ -60.668055380000084, 55.589405155634736 ], [ -60.503055380000092, 55.80300515563475 ], [ -60.328955380000082, 55.781705155634754 ], [ -60.531155380000087, 55.59720515563474 ], [ -60.316455380000093, 55.573905155634762 ], [ -60.478355380000096, 55.347505155634749 ], [ -60.319455380000079, 55.491405155634752 ], [ -60.195555380000087, 55.431405155634749 ], [ -60.68335538000008, 54.995005155634757 ], [ -60.073855380000083, 55.24790515563474 ], [ -60.293955380000085, 55.019405155634743 ], [ -59.779155380000105, 55.329705155634755 ], [ -59.732555380000093, 55.197205155634762 ], [ -59.963655380000091, 55.110305155634748 ], [ -59.427855380000096, 55.135805155634742 ], [ -59.716655380000105, 54.955805155634735 ], [ -59.938655380000085, 54.746405155634747 ], [ -59.161455380000092, 55.236905155634744 ], [ -59.388655380000102, 54.976605155634743 ], [ -59.023655380000093, 55.15660515563475 ], [ -58.904155380000105, 54.844705155634742 ], [ -57.347555380000102, 54.579405155634745 ], [ -57.702255380000082, 54.473005155634738 ], [ -57.42135538000008, 54.454705155634755 ], [ -57.629455380000081, 54.381705155634748 ], [ -59.575555380000083, 54.049405155634744 ], [ -58.371955380000088, 54.228005155634762 ], [ -58.632555380000099, 54.035305155634759 ], [ -60.082855380000098, 53.762505155634742 ], [ -60.133955380000089, 53.528305155634754 ], [ -60.39055538000008, 53.665505155634762 ], [ -60.856955380000102, 53.792805155634753 ], [ -60.103655380000106, 53.500505155634741 ], [ -60.417455380000092, 53.268905155634755 ], [ -59.07975538000008, 53.680505155634748 ], [ -58.550355380000099, 54.009205155634746 ], [ -57.786455380000092, 54.071705155634746 ], [ -58.355555380000084, 54.206405155634755 ], [ -57.468355380000105, 54.193905155634738 ], [ -57.076455380000084, 53.82300515563476 ], [ -57.550055380000089, 53.591905155634734 ], [ -57.3166553800001, 53.579705155634755 ], [ -57.336955380000092, 53.440305155634761 ], [ -57.014755380000082, 53.71140515563475 ], [ -56.464755380000099, 53.782305155634745 ], [ -56.680355380000094, 53.672805155634748 ], [ -56.027255380000099, 53.575305155634751 ], [ -56.2661553800001, 53.550005155634736 ], [ -55.808055380000098, 53.340505155634744 ], [ -55.74585538000008, 53.249405155634761 ], [ -55.7541553800001, 53.135005155634744 ], [ -56.166955380000104, 53.029405155634734 ], [ -55.834155380000084, 52.921905155634747 ], [ -56.060855380000106, 52.766105155634747 ], [ -55.757555380000099, 52.614405155634742 ], [ -56.496855380000085, 52.59410515563475 ], [ -55.648655380000093, 52.439705155634741 ], [ -55.782555380000105, 52.334205155634734 ], [ -56.196955380000105, 52.440005155634751 ], [ -55.707255380000106, 52.248305155634753 ], [ -55.696955380000105, 52.088305155634757 ], [ -56.949755380000084, 51.424705155634754 ], [ -57.748055380000096, 51.47220515563474 ], [ -58.628055380000092, 51.275505155634747 ], [ -58.618655380000092, 51.153005155634744 ], [ -59.003355380000102, 51.015505155634756 ], [ -59.015255380000099, 50.748605155634735 ], [ -59.118855380000099, 50.803605155634742 ], [ -59.810555380000096, 50.437505155634753 ], [ -60.004955380000098, 50.248905155634745 ], [ -61.720855380000103, 50.091905155634734 ], [ -61.573855380000083, 50.181705155634759 ], [ -62.397455380000082, 50.294405155634749 ], [ -66.469755380000095, 50.26190515563475 ], [ -67.146655380000084, 49.812505155634753 ], [ -67.374955380000102, 49.327205155634758 ], [ -68.127255380000094, 49.269405155634743 ], [ -68.194955380000096, 49.108305155634739 ], [ -69.060855380000106, 48.767505155634737 ], [ -69.437755380000084, 48.30300515563475 ], [ -69.81035538000009, 48.155705155634749 ], [ -69.839455380000089, 47.907205155634742 ], [ -70.225555380000088, 47.496405155634747 ], [ -71.299155380000087, 46.74220515563475 ], [ -70.486355380000106, 47.03360515563476 ], [ -69.016355380000078, 48.25420515563475 ], [ -67.531355380000093, 48.85920515563474 ], [ -65.496955380000088, 49.261705155634743 ], [ -64.376355380000092, 48.997805155634737 ], [ -64.152455380000106, 48.760005155634744 ], [ -64.548855380000106, 48.878305155634749 ], [ -64.159955380000099, 48.622805155634737 ], [ -64.771355380000102, 48.196405155634736 ], [ -65.326955380000101, 48.002205155634741 ], [ -65.904155380000105, 48.205805155634735 ], [ -66.842455380000104, 47.99220515563475 ], [ -66.356655380000092, 48.073305155634742 ], [ -65.793655380000104, 47.890805155634737 ], [ -65.634755380000087, 47.620805155634756 ], [ -64.797255380000081, 47.806405155634749 ], [ -64.6702553800001, 47.726905155634753 ], [ -64.909955380000099, 47.353005155634762 ], [ -65.369955380000079, 47.086605155634757 ], [ -64.798655380000099, 47.080005155634737 ], [ -64.903655380000089, 46.840805155634754 ], [ -64.5041553800001, 46.240305155634744 ], [ -63.776355380000098, 46.121105155634737 ], [ -64.093855380000093, 46.021705155634734 ], [ -63.664155380000096, 45.815305155634761 ], [ -62.677755380000093, 45.764205155634741 ], [ -62.461955380000092, 45.612505155634736 ], [ -61.917455380000092, 45.88550515563476 ], [ -61.881355380000088, 45.686605155634751 ], [ -61.471355380000091, 45.682505155634757 ], [ -61.259955380000093, 45.510305155634754 ], [ -61.463855380000098, 45.346905155634758 ], [ -60.970255380000083, 45.269705155634753 ], [ -63.4399553800001, 44.590805155634754 ], [ -63.658355380000103, 44.715005155634756 ], [ -63.520255380000094, 44.507805155634756 ], [ -63.631155380000081, 44.435805155634753 ], [ -63.932455380000079, 44.51330515563474 ], [ -63.908655380000084, 44.67800515563475 ], [ -64.083055380000104, 44.466705155634756 ], [ -64.200855380000093, 44.57640515563476 ], [ -64.337555380000083, 44.411905155634756 ], [ -64.258055380000087, 44.270005155634735 ], [ -65.481355380000082, 43.464405155634736 ], [ -66.166955380000104, 43.858605155634748 ], [ -66.118655380000092, 44.338005155634747 ], [ -65.841355380000095, 44.574205155634743 ], [ -66.19105538000008, 44.423305155634736 ], [ -64.393855380000105, 45.286905155634756 ], [ -64.489155380000085, 45.335305155634742 ], [ -64.327455380000089, 45.30330515563476 ], [ -64.380255380000079, 45.131105155634756 ], [ -64.156355380000093, 44.978305155634743 ], [ -64.152755380000087, 45.192805155634758 ], [ -63.360855380000089, 45.360805155634736 ], [ -64.937255380000096, 45.326905155634748 ], [ -64.2755553800001, 45.800005155634736 ], [ -64.478355380000096, 45.750505155634741 ], [ -64.747455380000105, 46.090505155634744 ], [ -64.583055380000104, 45.826905155634748 ], [ -64.778355380000079, 45.607205155634759 ], [ -65.903655380000089, 45.205505155634754 ], [ -66.094655380000091, 45.300705155634759 ], [ -66.0024553800001, 45.46170515563476 ], [ -66.190255380000082, 45.339405155634736 ], [ -66.147255380000104, 45.192205155634738 ], [ -66.427755380000093, 45.085005155634761 ], [ -67.341955380000087, 45.150005155634759 ], [ -67.465055380000081, 45.281105155634762 ], [ -67.4125553800001, 45.586905155634739 ], [ -67.799155380000087, 45.70110515563475 ], [ -67.79495538000009, 47.070005155634746 ], [ -68.30665538000008, 47.364405155634742 ], [ -68.895255380000094, 47.190005155634751 ], [ -69.23245538000009, 47.471405155634741 ], [ -70.009155380000095, 46.69800515563476 ], [ -70.287755380000078, 46.203005155634756 ], [ -70.254955380000098, 45.913005155634735 ], [ -70.87855538000008, 45.238605155634744 ], [ -71.314755380000094, 45.299405155634744 ], [ -71.49415538000008, 45.020505155634751 ], [ -74.990855380000085, 44.986705155634738 ], [ -76.434755380000098, 44.104705155634761 ], [ -76.801955380000095, 43.633605155634754 ], [ -78.72475538000009, 43.629405155634757 ], [ -79.184755380000098, 43.465505155634744 ], [ -78.986955380000097, 42.820005155634746 ], [ -80.096955380000082, 42.396405155634753 ], [ -81.249155380000104, 42.225005155634747 ], [ -82.425255380000095, 41.675505155634752 ], [ -83.071955380000105, 41.859705155634757 ], [ -83.168455380000097, 42.047105155634753 ], [ -83.086955380000092, 42.300505155634752 ], [ -82.521355380000102, 42.618905155634749 ], [ -82.130255380000079, 43.585305155634742 ], [ -82.543055380000084, 45.355805155634741 ], [ -83.597755380000081, 45.827205155634758 ], [ -83.447755380000103, 46.01190515563475 ], [ -83.577455380000089, 46.105305155634753 ], [ -83.958855380000102, 46.071705155634746 ], [ -84.126355380000092, 46.53190515563476 ], [ -84.5649553800001, 46.466405155634746 ], [ -84.856955380000102, 46.902205155634746 ], [ -88.368055380000101, 48.312205155634743 ], [ -89.356655380000092, 47.979705155634761 ], [ -90.740855380000085, 48.090805155634754 ], [ -90.868655380000092, 48.237505155634736 ], [ -91.418355380000094, 48.041105155634753 ], [ -92.051955380000095, 48.353905155634735 ], [ -92.356655380000092, 48.228605155634753 ], [ -92.95305538000008, 48.623305155634753 ], [ -93.778655380000089, 48.516405155634757 ], [ -94.605855380000094, 48.724405155634756 ], [ -94.818355380000099, 49.310005155634755 ], [ -95.152755380000087, 49.376705155634752 ], [ -95.153355380000079, 52.824205155634743 ], [ -89.305555380000101, 56.627205155634741 ], [ -89.132955380000084, 56.864805155634755 ], [ -87.9827553800001, 56.44170515563475 ], [ -87.355255380000102, 55.96280515563474 ], [ -85.731655380000092, 55.63690515563475 ], [ -85.12885538000009, 55.346405155634741 ], [ -85.398055380000102, 55.100805155634745 ], [ -85.423855380000106, 54.99050515563475 ], [ -85.001955380000084, 55.29670515563474 ], [ -82.307755380000089, 55.14890515563475 ], [ -82.221155380000084, 54.787505155634747 ], [ -82.434155380000078, 54.209405155634741 ], [ -82.131955380000079, 53.817805155634758 ], [ -82.113855380000103, 53.286705155634749 ], [ -82.29665538000009, 53.018605155634745 ], [ -81.549955380000085, 52.441105155634759 ], [ -81.883655380000079, 52.187505155634753 ], [ -81.478855380000084, 52.225805155634745 ], [ -80.589155380000079, 51.69970515563476 ], [ -80.426355380000103, 51.358905155634758 ], [ -80.652455380000106, 51.278305155634754 ], [ -81.015055380000092, 51.028305155634754 ], [ -80.40025538000009, 51.337205155634749 ], [ -80.120255380000089, 51.296405155634758 ], [ -79.332255380000106, 50.723905155634739 ], [ -79.749455380000086, 51.168305155634741 ], [ -79.668655380000104, 51.398605155634741 ], [ -79.322255380000087, 51.662805155634757 ], [ -79.012255380000084, 51.465005155634756 ], [ -78.951355380000081, 51.215505155634744 ], [ -78.853355380000096, 51.165505155634762 ], [ -78.791655380000094, 51.603905155634735 ], [ -79.035555380000091, 51.770305155634745 ], [ -78.579455380000098, 52.111405155634756 ], [ -78.506955380000079, 52.460505155634749 ], [ -78.763355380000093, 52.564405155634759 ], [ -78.738355380000087, 52.872205155634745 ], [ -78.880855380000099, 52.896905155634741 ], [ -78.895855380000086, 53.265305155634749 ], [ -79.110255380000098, 53.502505155634751 ], [ -78.915855380000096, 53.560505155634743 ], [ -79.151355380000098, 53.705005155634737 ], [ -78.901355380000098, 53.815305155634761 ], [ -79.106155380000104, 53.905505155634742 ], [ -78.960955380000087, 54.000705155634748 ], [ -79.11945538000009, 54.078605155634747 ], [ -79.048855380000106, 54.183305155634756 ], [ -79.345255380000083, 54.19940515563475 ], [ -79.521355380000102, 54.587205155634749 ], [ -79.764455380000101, 54.652205155634746 ], [ -77.748655380000088, 55.300805155634762 ], [ -76.68195538000009, 56.033905155634741 ], [ -76.518855380000105, 56.406105155634762 ], [ -76.529755380000097, 57.105805155634741 ], [ -76.923055380000079, 57.786105155634758 ], [ -77.467255380000097, 58.203305155634737 ], [ -78.573855380000083, 58.630505155634737 ], [ -78.467255380000097, 58.701705155634741 ], [ -78.570555380000087, 58.96140515563475 ], [ -78.338355380000081, 58.912805155634757 ], [ -77.677755380000093, 59.401005155634735 ], [ -77.910255380000081, 59.405505155634742 ], [ -77.721355380000091, 59.539705155634735 ], [ -77.7738553800001, 59.709705155634751 ], [ -77.312855380000087, 59.566005155634755 ], [ -77.542455380000092, 59.747505155634755 ], [ -77.293655380000104, 59.793605155634751 ], [ -77.427455380000083, 59.914705155634735 ], [ -77.206955380000096, 60.042805155634753 ], [ -76.848055380000091, 60.099205155634749 ], [ -76.758855380000085, 60.159205155634751 ], [ -77.592255380000097, 60.064205155634752 ], [ -77.470255380000083, 60.213305155634757 ], [ -77.747755380000086, 60.408105155634743 ], [ -77.413355380000098, 60.544205155634742 ], [ -77.833855380000102, 60.639405155634748 ], [ -77.511655380000093, 60.83640515563475 ], [ -78.192755380000079, 60.790805155634743 ], [ -77.701655380000091, 61.217505155634754 ], [ -77.761155380000105, 61.410305155634759 ], [ -77.474855380000093, 61.540505155634762 ], [ -77.992455380000081, 61.714705155634746 ], [ -78.155855380000105, 62.278305155634754 ], [ -77.508355380000097, 62.561705155634755 ], [ -76.317755380000079, 62.412205155634737 ] ], [ [ -70.783055380000093, 48.380505155634737 ], [ -70.383055380000087, 48.331105155634745 ], [ -69.828555380000097, 48.16600515563475 ], [ -69.977255380000088, 48.274405155634739 ], [ -70.779955380000104, 48.435505155634743 ], [ -71.048155380000082, 48.444905155634743 ], [ -70.783055380000093, 48.380505155634737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 73, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Northwestern U.S.A." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.938555380000096, 45.536705155634749 ], [ -123.934455380000088, 45.558305155634756 ], [ -123.91695538000009, 45.564405155634759 ], [ -123.925855380000087, 45.548005155634755 ], [ -123.938555380000096, 45.536705155634749 ] ] ], [ [ [ -123.938055380000094, 46.431105155634739 ], [ -123.983055380000096, 46.46910515563475 ], [ -123.972455380000099, 46.515305155634749 ], [ -123.935255380000086, 46.479705155634761 ], [ -123.938055380000094, 46.431105155634739 ] ] ], [ [ [ -122.482255380000097, 47.349705155634737 ], [ -122.519755380000092, 47.369705155634747 ], [ -122.450555380000097, 47.518305155634735 ], [ -122.381055380000092, 47.394705155634753 ], [ -122.482255380000097, 47.349705155634737 ] ] ], [ [ [ -122.495855380000094, 47.59550515563474 ], [ -122.581655380000086, 47.67170515563474 ], [ -122.544155380000092, 47.729205155634745 ], [ -122.503355380000087, 47.715305155634738 ], [ -122.495855380000094, 47.59550515563474 ] ] ], [ [ [ -122.666655380000094, 48.025505155634747 ], [ -122.722755380000095, 48.071405155634736 ], [ -122.710055380000085, 48.11750515563476 ], [ -122.675555380000091, 48.091905155634734 ], [ -122.666655380000094, 48.025505155634747 ] ] ], [ [ [ -122.504755380000091, 48.309705155634745 ], [ -122.663855380000086, 48.244705155634747 ], [ -122.372255380000098, 47.919405155634749 ], [ -122.757755380000091, 48.233905155634758 ], [ -122.598855380000089, 48.40830515563475 ], [ -122.504755380000091, 48.309705155634745 ] ] ], [ [ [ -122.816655380000086, 48.416905155634751 ], [ -122.936155380000088, 48.457805155634745 ], [ -122.876655380000088, 48.564205155634752 ], [ -122.812455380000088, 48.465005155634756 ], [ -122.816655380000086, 48.416905155634751 ] ] ], [ [ [ -122.999955380000088, 48.446105155634754 ], [ -123.148655380000093, 48.501705155634752 ], [ -123.178355380000099, 48.592205155634744 ], [ -122.994955380000093, 48.529705155634744 ], [ -122.999955380000088, 48.446105155634754 ] ] ], [ [ [ -122.922455380000088, 48.71170515563476 ], [ -122.858655380000087, 48.706105155634745 ], [ -122.74915538000009, 48.651405155634748 ], [ -123.010255380000089, 48.603605155634753 ], [ -122.922455380000088, 48.71170515563476 ] ] ], [ [ [ -123.053355380000099, 48.973905155634739 ], [ -123.088055380000085, 48.972505155634749 ], [ -123.09375538000009, 48.999405155634761 ], [ -123.034355380000093, 48.999405155634761 ], [ -123.053355380000099, 48.973905155634739 ] ] ], [ [ [ -122.845955380000092, 47.312905155634738 ], [ -123.068855380000088, 47.113305155634762 ], [ -122.713055380000085, 47.116105155634742 ], [ -122.309755380000098, 47.401105155634738 ], [ -122.418355380000094, 47.672205155634757 ], [ -122.320555380000087, 48.074205155634743 ], [ -122.531155380000087, 48.198305155634742 ], [ -122.379155380000086, 48.291705155634745 ], [ -122.704455380000098, 48.486105155634746 ], [ -122.48245538000009, 48.452205155634758 ], [ -122.437455380000088, 48.598005155634738 ], [ -122.760255380000089, 48.999405155634761 ], [ -104.033055380000093, 49.00020515563476 ], [ -104.021655380000098, 40.999705155634743 ], [ -102.027255380000085, 40.999205155634755 ], [ -102.012755380000087, 36.999805155634746 ], [ -109.04665538000009, 36.99960515563474 ], [ -109.046455380000097, 40.999705155634743 ], [ -111.049955380000085, 40.999705155634743 ], [ -111.050255380000095, 41.999705155634743 ], [ -124.185855380000092, 41.999505155634736 ], [ -124.524455380000092, 42.866105155634742 ], [ -124.377755380000096, 43.323305155634742 ], [ -124.138355380000093, 43.371105155634737 ], [ -124.302455380000097, 43.400505155634747 ], [ -124.115855380000099, 43.725305155634757 ], [ -123.871655380000092, 45.529005155634749 ], [ -123.951955380000086, 46.181105155634739 ], [ -123.498355380000092, 46.251105155634761 ], [ -123.360555380000093, 46.160805155634748 ], [ -123.249755380000096, 46.144205155634737 ], [ -123.163555380000091, 46.195205155634753 ], [ -123.434455380000088, 46.288005155634735 ], [ -123.999955380000088, 46.323605155634752 ], [ -124.042755380000088, 46.65800515563474 ], [ -123.989955380000097, 46.397805155634742 ], [ -123.941655380000086, 46.391105155634747 ], [ -123.879155380000086, 46.532505155634752 ], [ -123.940855380000087, 46.636705155634743 ], [ -123.752555380000089, 46.69310515563474 ], [ -124.097455380000099, 46.861405155634756 ], [ -123.79665538000009, 46.976105155634755 ], [ -124.084455380000094, 47.06670515563475 ], [ -124.161955380000094, 46.941105155634759 ], [ -124.715855380000093, 48.395305155634745 ], [ -123.934755380000098, 48.175805155634762 ], [ -122.751155380000085, 48.161105155634758 ], [ -122.778055380000097, 48.090305155634738 ], [ -122.630255380000094, 47.915805155634743 ], [ -122.747755380000086, 47.763005155634758 ], [ -122.849455380000094, 47.83640515563475 ], [ -123.147555380000085, 47.368605155634739 ], [ -123.010255380000089, 47.36750515563476 ], [ -122.836355380000086, 47.439205155634752 ], [ -123.102455380000094, 47.399705155634749 ], [ -122.565555380000092, 47.938005155634741 ], [ -122.454755380000094, 47.774405155634739 ], [ -122.604755380000086, 47.700505155634758 ], [ -122.599055380000095, 47.603905155634735 ], [ -122.680255380000091, 47.650505155634747 ], [ -122.66695538000009, 47.543305155634741 ], [ -122.529155380000091, 47.597805155634759 ], [ -122.549955380000085, 47.282805155634762 ], [ -122.619155380000095, 47.420505155634757 ], [ -122.74445538000009, 47.188305155634751 ], [ -122.845955380000092, 47.312905155634738 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 74, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "North-Central U.S.A." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.07805538000008, 49.35920515563474 ], [ -94.815555380000092, 49.306105155634739 ], [ -94.643655380000098, 48.743005155634748 ], [ -93.793055380000084, 48.517805155634747 ], [ -92.966155380000089, 48.625005155634753 ], [ -92.356655380000092, 48.228605155634753 ], [ -92.051955380000095, 48.353905155634735 ], [ -91.418355380000094, 48.041105155634753 ], [ -90.868655380000092, 48.237505155634736 ], [ -90.740855380000085, 48.090805155634754 ], [ -89.493155380000104, 48.003205155634745 ], [ -90.401355380000098, 46.550305155634746 ], [ -90.018055380000078, 46.320505155634734 ], [ -88.115855380000085, 45.932205155634747 ], [ -88.118355380000082, 45.805305155634741 ], [ -87.800255380000095, 45.684205155634757 ], [ -87.880855380000099, 45.366405155634752 ], [ -87.648655380000093, 45.11690515563474 ], [ -87.437155380000092, 45.071105155634754 ], [ -87.088455380000084, 45.445005155634746 ], [ -86.242455380000081, 45.233805155634755 ], [ -86.71105538000009, 44.836005155634737 ], [ -87.100855380000098, 43.835805155634759 ], [ -87.021155380000096, 42.485305155634748 ], [ -87.211155380000093, 41.762305155634735 ], [ -87.528255380000104, 41.759305155634749 ], [ -87.532755380000083, 39.356905155634749 ], [ -87.668455380000097, 39.109005155634762 ], [ -87.511955380000103, 38.745305155634739 ], [ -87.990255380000093, 38.233005155634757 ], [ -88.082255380000106, 37.483605155634748 ], [ -88.480255380000102, 37.394705155634753 ], [ -88.499455380000086, 37.061705155634755 ], [ -89.085055380000085, 37.173605155634746 ], [ -89.214755380000099, 36.585005155634761 ], [ -89.372255380000098, 36.627805155634761 ], [ -89.490255380000093, 36.44800515563476 ], [ -89.56635538000009, 36.557205155634747 ], [ -89.731155380000104, 36.000505155634741 ], [ -90.382755380000106, 35.985505155634755 ], [ -90.067255380000091, 36.287205155634737 ], [ -90.16225538000009, 36.499705155634743 ], [ -94.618355380000082, 36.499705155634743 ], [ -94.440855380000102, 35.410005155634749 ], [ -94.48415538000009, 33.647205155634751 ], [ -95.22475538000009, 33.964705155634746 ], [ -96.323055380000085, 33.698305155634742 ], [ -96.947455380000093, 33.956105155634745 ], [ -97.130255380000079, 33.722805155634759 ], [ -97.242255380000103, 33.891905155634745 ], [ -97.428055380000103, 33.819705155634736 ], [ -97.649455380000092, 33.987505155634736 ], [ -97.943055380000089, 33.875805155634751 ], [ -98.167255380000086, 34.127805155634761 ], [ -99.169155380000092, 34.21280515563474 ], [ -99.259155380000095, 34.403605155634736 ], [ -99.658655380000098, 34.384405155634752 ], [ -99.998055380000096, 34.577405155634736 ], [ -100.000255380000098, 36.499705155634743 ], [ -103.000255380000098, 36.500005155634753 ], [ -103.00085538000009, 36.999405155634761 ], [ -102.012755380000087, 36.999805155634746 ], [ -102.027255380000085, 40.999205155634755 ], [ -104.021655380000098, 40.999705155634743 ], [ -104.033055380000093, 49.00020515563476 ], [ -95.154155380000105, 48.999405155634761 ], [ -95.07805538000008, 49.35920515563474 ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 75, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Northeastern U.S.A." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.329455380000098, 39.42170515563474 ], [ -74.408055380000093, 39.381105155634756 ], [ -74.446655380000095, 39.414705155634735 ], [ -74.376255380000089, 39.420705155634735 ], [ -74.348055380000091, 39.474405155634756 ], [ -74.329455380000098, 39.42170515563474 ] ] ], [ [ [ -74.246955380000088, 39.525505155634747 ], [ -74.243055380000101, 39.55440515563474 ], [ -74.099955380000097, 39.750805155634751 ], [ -74.138355380000093, 39.659405155634758 ], [ -74.246955380000088, 39.525505155634747 ] ] ], [ [ [ -74.219955380000101, 40.511705155634743 ], [ -74.176955380000095, 40.641905155634745 ], [ -74.062755380000084, 40.639405155634748 ], [ -74.057455380000079, 40.599705155634737 ], [ -74.219955380000101, 40.511705155634743 ] ] ], [ [ [ -73.2233553800001, 40.635305155634754 ], [ -73.283355380000103, 40.627505155634751 ], [ -73.294755380000083, 40.633905155634736 ], [ -72.766655380000088, 40.766105155634747 ], [ -73.2233553800001, 40.635305155634754 ] ] ], [ [ [ -72.262255380000084, 41.125305155634734 ], [ -72.62115538000009, 40.913005155634735 ], [ -71.856155380000104, 41.069205155634748 ], [ -73.582755380000094, 40.59610515563476 ], [ -74.032455380000101, 40.625805155634751 ], [ -73.589455380000089, 40.920505155634757 ], [ -72.262255380000084, 41.125305155634734 ] ] ], [ [ [ -69.994955380000079, 41.328005155634756 ], [ -69.993855380000099, 41.250305155634734 ], [ -70.23415538000009, 41.28360515563476 ], [ -70.019455380000096, 41.383905155634736 ], [ -69.994955380000079, 41.328005155634756 ] ] ], [ [ [ -70.506355380000088, 41.357205155634759 ], [ -70.761355380000083, 41.308005155634746 ], [ -70.8380553800001, 41.360005155634738 ], [ -70.617255380000103, 41.473905155634739 ], [ -70.506355380000088, 41.357205155634759 ] ] ], [ [ [ -71.297455380000088, 41.458605155634743 ], [ -71.358355380000091, 41.459205155634734 ], [ -71.222455380000099, 41.654205155634756 ], [ -71.2327553800001, 41.494705155634747 ], [ -71.297455380000088, 41.458605155634743 ] ] ], [ [ [ -68.803355380000085, 44.048005155634755 ], [ -68.854455380000104, 44.059405155634735 ], [ -68.898055380000102, 44.123905155634745 ], [ -68.764455380000101, 44.095005155634752 ], [ -68.803355380000085, 44.048005155634755 ] ] ], [ [ [ -68.650855380000081, 44.168905155634761 ], [ -68.721355380000091, 44.228905155634735 ], [ -68.668055380000084, 44.285305155634759 ], [ -68.603655380000106, 44.248905155634745 ], [ -68.650855380000081, 44.168905155634761 ] ] ], [ [ [ -68.320855380000097, 44.237205155634754 ], [ -68.428355380000085, 44.320005155634746 ], [ -68.255255380000079, 44.45140515563476 ], [ -68.168355380000094, 44.34550515563474 ], [ -68.320855380000097, 44.237205155634754 ] ] ], [ [ [ -88.188355380000104, 48.244205155634759 ], [ -84.856955380000102, 46.902205155634746 ], [ -84.5649553800001, 46.466405155634746 ], [ -84.126355380000092, 46.53190515563476 ], [ -83.958855380000102, 46.071705155634746 ], [ -83.577455380000089, 46.105305155634753 ], [ -83.447755380000103, 46.01190515563475 ], [ -83.597755380000081, 45.827205155634758 ], [ -82.543055380000084, 45.355805155634741 ], [ -82.130255380000079, 43.585305155634742 ], [ -82.521355380000102, 42.618905155634749 ], [ -83.086955380000092, 42.300505155634752 ], [ -83.168455380000097, 42.047105155634753 ], [ -82.696655380000095, 41.683905155634747 ], [ -78.986955380000097, 42.820005155634746 ], [ -79.184755380000098, 43.465505155634744 ], [ -78.72475538000009, 43.629405155634757 ], [ -76.801955380000095, 43.633605155634754 ], [ -76.434755380000098, 44.104705155634761 ], [ -74.990855380000085, 44.986705155634738 ], [ -71.49415538000008, 45.020505155634751 ], [ -71.314755380000094, 45.299405155634744 ], [ -70.87855538000008, 45.238605155634744 ], [ -70.254955380000098, 45.913005155634735 ], [ -70.287755380000078, 46.203005155634756 ], [ -70.009155380000095, 46.69800515563476 ], [ -69.23245538000009, 47.471405155634741 ], [ -68.895255380000094, 47.190005155634751 ], [ -68.30665538000008, 47.364405155634742 ], [ -67.79495538000009, 47.070005155634746 ], [ -67.799155380000087, 45.70110515563475 ], [ -67.4125553800001, 45.586905155634739 ], [ -67.455255380000096, 45.263005155634758 ], [ -67.159455380000082, 45.166705155634745 ], [ -67.034455380000082, 44.985005155634738 ], [ -67.198355380000095, 44.919205155634742 ], [ -66.968855380000093, 44.831105155634745 ], [ -68.053055380000103, 44.34610515563476 ], [ -68.108655380000101, 44.460305155634742 ], [ -68.321155380000079, 44.465905155634758 ], [ -68.811155380000088, 44.328305155634737 ], [ -68.7952553800001, 44.579705155634755 ], [ -69.248355380000106, 43.938005155634741 ], [ -69.369955380000079, 44.046905155634747 ], [ -69.503055380000092, 43.848905155634739 ], [ -69.527755380000087, 44.034405155634758 ], [ -69.651155380000091, 43.900805155634757 ], [ -69.61945538000009, 44.042505155634743 ], [ -69.721955380000082, 43.785805155634748 ], [ -69.773355380000083, 44.079205155634739 ], [ -69.823855380000083, 43.714405155634736 ], [ -69.926355380000103, 43.86550515563475 ], [ -70.172455380000088, 43.780505155634742 ], [ -70.189155380000102, 43.57580515563474 ], [ -70.729155380000094, 43.122805155634737 ], [ -70.806155380000092, 42.714405155634736 ], [ -70.58775538000009, 42.63860515563475 ], [ -71.044855380000087, 42.312205155634743 ], [ -70.721655380000101, 42.217805155634736 ], [ -70.6822553800001, 41.997205155634745 ], [ -70.324755380000084, 41.71140515563475 ], [ -70.011155380000105, 41.797205155634757 ], [ -70.247455380000105, 42.070005155634746 ], [ -70.078855380000078, 42.062205155634743 ], [ -69.936355380000094, 41.669405155634749 ], [ -70.64085538000009, 41.534205155634751 ], [ -70.726055380000105, 41.727805155634755 ], [ -71.185855380000106, 41.466705155634756 ], [ -71.111155380000099, 41.79500515563474 ], [ -71.271355380000102, 41.653005155634744 ], [ -71.391355380000078, 41.811905155634761 ], [ -71.505255380000079, 41.36690515563474 ], [ -72.906355380000093, 41.286105155634758 ], [ -73.997455380000105, 40.713505155634735 ], [ -73.891655380000088, 40.943605155634756 ], [ -73.865255380000093, 41.07300515563476 ], [ -73.952255380000082, 41.309205155634757 ], [ -73.904155380000105, 40.959405155634741 ], [ -74.022255380000104, 40.715505155634744 ], [ -74.194755380000089, 40.646905155634741 ], [ -74.269155380000086, 40.474705155634737 ], [ -73.956655380000086, 40.400805155634757 ], [ -74.076355380000081, 39.776905155634736 ], [ -74.053855380000101, 40.057505155634757 ], [ -74.153055380000097, 39.700505155634758 ], [ -74.405555380000095, 39.516105155634747 ], [ -74.462555380000083, 39.421105155634748 ], [ -74.415555380000086, 39.355305155634753 ], [ -74.648055380000102, 39.302205155634752 ], [ -74.899755380000101, 38.92970515563475 ], [ -74.892755380000096, 39.167805155634753 ], [ -75.413055380000088, 39.376105155634761 ], [ -75.557455380000079, 39.618005155634748 ], [ -75.418055380000084, 39.787805155634757 ], [ -75.129955380000098, 39.876105155634761 ], [ -75.028555380000086, 40.012305155634735 ], [ -75.774255380000085, 39.723005155634738 ], [ -79.477455380000094, 39.721705155634751 ], [ -79.487155380000104, 39.204305155634742 ], [ -79.059455380000088, 39.484705155634757 ], [ -78.180555380000101, 39.698905155634762 ], [ -77.888855380000081, 39.602805155634755 ], [ -77.738855380000103, 39.321405155634736 ], [ -77.836155380000093, 39.144705155634753 ], [ -78.340555380000097, 39.44940515563475 ], [ -78.561355380000094, 39.008905155634736 ], [ -78.872755380000086, 38.781705155634754 ], [ -78.996955380000088, 38.846905155634758 ], [ -79.288555380000105, 38.421905155634747 ], [ -79.653055380000097, 38.588005155634747 ], [ -80.284455380000082, 37.515005155634739 ], [ -80.954955380000087, 37.291105155634753 ], [ -81.835855380000083, 37.291405155634735 ], [ -82.402255380000099, 37.826705155634741 ], [ -82.637555380000094, 38.160805155634748 ], [ -82.589755380000099, 38.413305155634745 ], [ -82.887555380000094, 38.745005155634757 ], [ -83.655255380000085, 38.625505155634741 ], [ -84.700255380000101, 39.120005155634757 ], [ -84.882455380000096, 39.05300515563475 ], [ -84.842755380000085, 38.793305155634741 ], [ -85.4416553800001, 38.726105155634755 ], [ -85.415555380000086, 38.540305155634755 ], [ -86.041355380000084, 37.971905155634758 ], [ -86.370555380000098, 38.196705155634746 ], [ -86.62855538000008, 37.848305155634748 ], [ -86.837555380000083, 37.989205155634735 ], [ -87.113055380000105, 37.788905155634737 ], [ -87.434455380000088, 37.945305155634756 ], [ -87.958055380000104, 37.777505155634756 ], [ -88.110555380000079, 37.890505155634756 ], [ -87.990255380000093, 38.233005155634757 ], [ -87.511955380000103, 38.745305155634739 ], [ -87.668455380000097, 39.109005155634762 ], [ -87.532755380000083, 39.356905155634749 ], [ -87.528255380000104, 41.759305155634749 ], [ -87.211155380000093, 41.762305155634735 ], [ -87.021155380000096, 42.485305155634748 ], [ -87.100855380000098, 43.835805155634759 ], [ -86.71105538000009, 44.836005155634737 ], [ -86.242455380000081, 45.233805155634755 ], [ -87.088455380000084, 45.445005155634746 ], [ -87.437155380000092, 45.071105155634754 ], [ -87.648655380000093, 45.11690515563474 ], [ -87.880855380000099, 45.366405155634752 ], [ -87.800255380000095, 45.684205155634757 ], [ -88.118355380000082, 45.805305155634741 ], [ -88.115855380000085, 45.932205155634747 ], [ -90.018055380000078, 46.320505155634734 ], [ -90.413055380000088, 46.588205155634753 ], [ -89.493155380000104, 48.003205155634745 ], [ -88.645555380000104, 48.264205155634741 ], [ -88.188355380000104, 48.244205155634759 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 76, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Southwestern U.S.A." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.406955380000099, 32.81670515563475 ], [ -118.493855380000099, 32.866705155634762 ], [ -118.592455380000089, 33.046905155634747 ], [ -118.369155380000095, 32.854705155634761 ], [ -118.406955380000099, 32.81670515563475 ] ] ], [ [ [ -119.444155380000097, 33.216705155634756 ], [ -119.519455380000096, 33.226405155634737 ], [ -119.566655380000086, 33.282805155634762 ], [ -119.480555380000098, 33.274405155634739 ], [ -119.444155380000097, 33.216705155634756 ] ] ], [ [ [ -118.301955380000095, 33.309405155634735 ], [ -118.448855380000097, 33.327505155634739 ], [ -118.592255380000097, 33.486705155634738 ], [ -118.34975538000009, 33.398305155634759 ], [ -118.301955380000095, 33.309405155634735 ] ] ], [ [ [ -120.035255380000095, 34.02390515563475 ], [ -120.10745538000009, 33.905505155634742 ], [ -120.226055380000091, 34.006105155634756 ], [ -120.051955380000095, 34.036105155634758 ], [ -120.035255380000095, 34.02390515563475 ] ] ], [ [ [ -120.297755380000098, 34.028605155634736 ], [ -120.361655380000087, 34.022505155634761 ], [ -120.438055380000094, 34.036905155634756 ], [ -120.363855380000089, 34.065505155634739 ], [ -120.297755380000098, 34.028605155634736 ] ] ], [ [ [ -119.868055380000087, 34.084205155634734 ], [ -119.698355380000095, 34.04530515563475 ], [ -119.513655380000088, 34.042805155634753 ], [ -119.788355380000098, 33.967205155634744 ], [ -119.868055380000087, 34.084205155634734 ] ] ], [ [ [ -121.801355380000089, 38.055305155634741 ], [ -121.814455380000098, 38.053605155634742 ], [ -121.820055380000099, 38.068005155634737 ], [ -121.796355380000094, 38.06670515563475 ], [ -121.801355380000089, 38.055305155634741 ] ] ], [ [ [ -121.986155380000099, 38.085805155634759 ], [ -121.998355380000092, 38.086105155634741 ], [ -122.018055380000092, 38.098005155634738 ], [ -122.001955380000098, 38.103005155634762 ], [ -121.986155380000099, 38.085805155634759 ] ] ], [ [ [ -115.118055380000087, 42.000005155634753 ], [ -111.050255380000095, 41.999705155634743 ], [ -111.049955380000085, 40.999705155634743 ], [ -109.046455380000097, 40.999705155634743 ], [ -109.046955380000085, 31.333005155634751 ], [ -111.045855380000091, 31.333005155634751 ], [ -114.789755380000088, 32.498005155634743 ], [ -114.719055380000086, 32.718505155634759 ], [ -117.122355380000087, 32.535305155634759 ], [ -117.480855380000094, 33.327505155634739 ], [ -118.116055380000091, 33.760805155634742 ], [ -118.400555380000085, 33.749705155634743 ], [ -118.534755380000092, 34.050805155634762 ], [ -119.129155380000086, 34.113905155634754 ], [ -119.541655380000094, 34.414105155634743 ], [ -120.446955380000091, 34.453605155634747 ], [ -120.628355380000087, 34.590805155634754 ], [ -120.614155380000085, 35.135805155634742 ], [ -121.864155380000085, 36.308305155634756 ], [ -121.945255380000091, 36.592805155634736 ], [ -121.796355380000094, 36.879405155634757 ], [ -122.376655380000088, 37.195505155634734 ], [ -122.488055380000091, 37.518305155634735 ], [ -122.386955380000089, 37.81670515563475 ], [ -122.356655380000092, 37.613305155634762 ], [ -122.076655380000091, 37.462205155634749 ], [ -122.005855380000085, 37.471405155634741 ], [ -122.393355380000088, 37.957805155634745 ], [ -122.240555380000089, 38.059205155634757 ], [ -121.41995538000009, 38.012805155634751 ], [ -121.576655380000091, 38.11580515563476 ], [ -122.365255380000093, 38.155505155634742 ], [ -122.491355380000087, 37.827805155634749 ], [ -122.997055380000091, 38.005105155634752 ], [ -122.964555380000093, 38.239605155634749 ], [ -122.803555380000091, 38.088005155634747 ], [ -123.104755380000086, 38.461105155634741 ], [ -123.703655380000086, 38.932505155634757 ], [ -123.76885538000009, 39.702205155634758 ], [ -124.376655380000088, 40.445805155634744 ], [ -124.143055380000092, 40.811905155634761 ], [ -124.039955380000094, 41.424405155634744 ], [ -124.185855380000092, 41.999505155634736 ], [ -115.118055380000087, 42.000005155634753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 77, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "South-Central U.S.A." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -97.177755380000093, 26.084705155634751 ], [ -97.385755380000091, 26.838205155634753 ], [ -97.401155380000091, 27.052505155634762 ], [ -97.383655380000079, 27.207205155634753 ], [ -97.177755380000093, 26.084705155634751 ] ] ], [ [ [ -97.382255380000089, 27.218905155634744 ], [ -97.317255380000091, 27.495805155634756 ], [ -97.045555380000081, 27.843905155634744 ], [ -97.266955380000098, 27.509705155634762 ], [ -97.382255380000089, 27.218905155634744 ] ] ], [ [ [ -96.887755380000101, 28.030505155634742 ], [ -97.02525538000009, 27.869405155634738 ], [ -97.0358553800001, 27.875305155634734 ], [ -96.867755380000091, 28.135005155634744 ], [ -96.887755380000101, 28.030505155634742 ] ] ], [ [ [ -96.551955380000095, 28.266705155634739 ], [ -96.736955380000097, 28.153905155634746 ], [ -96.813655380000085, 28.092505155634754 ], [ -96.794455380000102, 28.189405155634759 ], [ -96.404755380000097, 28.392205155634755 ], [ -96.551955380000095, 28.266705155634739 ] ] ], [ [ [ -96.360855380000089, 28.402505155634756 ], [ -96.313055380000094, 28.455305155634747 ], [ -96.229955380000092, 28.485505155634755 ], [ -96.298055380000079, 28.436905155634761 ], [ -96.360855380000089, 28.402505155634756 ] ] ], [ [ [ -95.111155380000099, 29.098005155634738 ], [ -94.821355380000085, 29.338605155634738 ], [ -94.784755380000092, 29.308005155634746 ], [ -94.869955380000079, 29.246105155634737 ], [ -95.111155380000099, 29.098005155634738 ] ] ], [ [ [ -103.00085538000009, 36.999505155634736 ], [ -103.000255380000098, 36.500005155634753 ], [ -100.000255380000098, 36.499705155634743 ], [ -100.001155380000085, 34.580805155634735 ], [ -99.664455380000092, 34.386405155634762 ], [ -99.341655380000091, 34.437505155634753 ], [ -99.176655380000085, 34.215005155634756 ], [ -98.472755380000081, 34.068005155634737 ], [ -98.167255380000086, 34.127805155634761 ], [ -97.873055380000096, 33.858905155634758 ], [ -97.649455380000092, 33.987505155634736 ], [ -97.428055380000103, 33.819705155634736 ], [ -97.242255380000103, 33.891905155634745 ], [ -97.14225538000008, 33.724405155634756 ], [ -96.947455380000093, 33.956105155634745 ], [ -96.323055380000085, 33.698305155634742 ], [ -95.22475538000009, 33.964705155634746 ], [ -94.39225538000008, 33.557805155634739 ], [ -94.0452553800001, 33.55330515563476 ], [ -94.043055380000084, 31.993305155634758 ], [ -93.535255380000081, 31.181905155634738 ], [ -93.718355380000105, 30.075005155634742 ], [ -93.956655380000086, 29.832505155634735 ], [ -93.853355380000096, 29.67940515563474 ], [ -94.772555380000085, 29.363905155634754 ], [ -94.475855380000098, 29.561405155634745 ], [ -94.76585538000009, 29.568005155634737 ], [ -94.753655380000083, 29.787805155634757 ], [ -95.059455380000088, 29.718905155634744 ], [ -94.894455380000096, 29.334705155634751 ], [ -95.29635538000008, 28.936105155634735 ], [ -96.21275538000009, 28.485505155634755 ], [ -95.985855380000089, 28.64920515563476 ], [ -96.641655380000088, 28.719705155634742 ], [ -96.398355380000083, 28.436105155634735 ], [ -96.664755380000088, 28.315005155634751 ], [ -96.799755380000079, 28.475005155634747 ], [ -96.882755380000106, 28.140305155634749 ], [ -97.172455380000088, 28.160005155634749 ], [ -97.021955380000094, 28.03300515563474 ], [ -97.184755380000098, 27.827505155634739 ], [ -97.520555380000104, 27.866405155634752 ], [ -97.279755380000097, 27.656105155634762 ], [ -97.411155380000082, 27.327505155634739 ], [ -97.774155380000082, 27.453305155634737 ], [ -97.639155380000091, 27.254705155634738 ], [ -97.423855380000106, 27.267505155634737 ], [ -97.559455380000088, 26.836105155634741 ], [ -97.1411553800001, 25.983005155634757 ], [ -97.362255380000079, 25.840305155634738 ], [ -99.104755380000086, 26.435005155634755 ], [ -99.458655380000096, 27.046905155634747 ], [ -99.504955380000098, 27.570305155634756 ], [ -100.282455380000087, 28.281405155634744 ], [ -100.668355380000094, 29.113305155634762 ], [ -101.405055380000093, 29.772805155634742 ], [ -102.305855380000096, 29.889405155634748 ], [ -102.670255380000086, 29.742805155634741 ], [ -102.954955380000087, 29.183005155634746 ], [ -103.299755380000093, 28.998005155634743 ], [ -104.540055380000098, 29.671105155634748 ], [ -104.900555380000085, 30.572805155634754 ], [ -106.214455380000089, 31.475305155634757 ], [ -106.400855380000095, 31.750305155634734 ], [ -108.208655380000096, 31.78330515563475 ], [ -108.208355380000086, 31.333005155634751 ], [ -109.046955380000085, 31.333005155634751 ], [ -109.04665538000009, 36.99960515563474 ], [ -103.00085538000009, 36.999505155634736 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 78, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Southeastern U.S.A." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.7738553800001, 24.544705155634759 ], [ -81.813455380000079, 24.543905155634761 ], [ -81.729755380000086, 24.559505155634739 ], [ -81.7738553800001, 24.544705155634759 ] ] ], [ [ [ -82.114455380000095, 24.545805155634739 ], [ -82.123855380000094, 24.54670515563474 ], [ -82.137255380000084, 24.593905155634744 ], [ -82.099955380000097, 24.583005155634751 ], [ -82.114455380000095, 24.545805155634739 ] ] ], [ [ [ -81.715155380000084, 24.553105155634753 ], [ -81.709755380000104, 24.596005155634757 ], [ -81.646255380000099, 24.576605155634738 ], [ -81.680655380000104, 24.557505155634757 ], [ -81.715155380000084, 24.553105155634753 ] ] ], [ [ [ -81.588355380000081, 24.590005155634756 ], [ -81.633755380000082, 24.584005155634756 ], [ -81.552055380000098, 24.686405155634745 ], [ -81.508355380000097, 24.630005155634748 ], [ -81.588355380000081, 24.590005155634756 ] ] ], [ [ [ -81.476355380000086, 24.637005155634753 ], [ -81.514755380000082, 24.661105155634758 ], [ -81.517055380000102, 24.685105155634758 ], [ -81.478655380000106, 24.677805155634744 ], [ -81.476355380000086, 24.637005155634753 ] ] ], [ [ [ -81.108655380000101, 24.706105155634745 ], [ -81.137755380000101, 24.701705155634741 ], [ -81.05265538000009, 24.716505155634749 ], [ -81.065555380000092, 24.71280515563474 ], [ -81.108655380000101, 24.706105155634745 ] ] ], [ [ [ -81.336655380000082, 24.635005155634744 ], [ -81.356455380000085, 24.630005155634748 ], [ -81.428055380000103, 24.748605155634735 ], [ -81.360855380000089, 24.70080515563474 ], [ -81.336655380000082, 24.635005155634744 ] ] ], [ [ [ -80.968855380000093, 24.742805155634741 ], [ -81.026655380000079, 24.718605155634762 ], [ -80.923255380000086, 24.769105155634762 ], [ -80.968855380000093, 24.742805155634741 ] ] ], [ [ [ -80.846155380000084, 24.797505155634738 ], [ -80.805255380000091, 24.828905155634757 ], [ -80.7858553800001, 24.821605155634742 ], [ -80.799955380000085, 24.803605155634742 ], [ -80.846155380000084, 24.797505155634738 ] ] ], [ [ [ -80.698655380000105, 24.866705155634762 ], [ -80.742455380000081, 24.841105155634736 ], [ -80.745555380000098, 24.843005155634742 ], [ -80.702455380000089, 24.880805155634746 ], [ -80.698655380000105, 24.866705155634762 ] ] ], [ [ [ -80.646655380000084, 24.902205155634746 ], [ -80.664555380000081, 24.895305155634745 ], [ -80.623055380000096, 24.931905155634738 ], [ -80.626355380000092, 24.915305155634755 ], [ -80.646655380000084, 24.902205155634746 ] ] ], [ [ [ -80.577255380000082, 24.945505155634734 ], [ -80.600855380000098, 24.95080515563474 ], [ -80.257555380000099, 25.346405155634741 ], [ -80.371955380000088, 25.143905155634755 ], [ -80.577255380000082, 24.945505155634734 ] ] ], [ [ [ -80.2250553800001, 25.401105155634738 ], [ -80.23415538000009, 25.402205155634746 ], [ -80.188555380000082, 25.494205155634759 ], [ -80.18335538000008, 25.484405155634747 ], [ -80.2250553800001, 25.401105155634738 ] ] ], [ [ [ -80.16225538000009, 25.669405155634749 ], [ -80.185555380000096, 25.689405155634759 ], [ -80.157455380000101, 25.732905155634754 ], [ -80.151655380000079, 25.730505155634759 ], [ -80.16225538000009, 25.669405155634749 ] ] ], [ [ [ -81.684155380000078, 25.844705155634742 ], [ -81.715255380000087, 25.879105155634747 ], [ -81.714755380000099, 25.88860515563475 ], [ -81.664155380000096, 25.88860515563475 ], [ -81.684155380000078, 25.844705155634742 ] ] ], [ [ [ -82.126355380000092, 26.450005155634742 ], [ -82.02925538000008, 26.444005155634741 ], [ -82.082455380000084, 26.416405155634735 ], [ -82.176955380000095, 26.458905155634753 ], [ -82.206355380000105, 26.545805155634739 ], [ -82.126355380000092, 26.450005155634742 ] ] ], [ [ [ -82.222455380000099, 26.616105155634742 ], [ -82.244955380000079, 26.635005155634744 ], [ -82.254955380000098, 26.698605155634752 ], [ -82.245255380000089, 26.688005155634741 ], [ -82.222455380000099, 26.616105155634742 ] ] ], [ [ [ -82.079455380000098, 26.487805155634746 ], [ -82.094155380000103, 26.490305155634744 ], [ -82.179755380000103, 26.699205155634743 ], [ -82.133355380000097, 26.691105155634759 ], [ -82.079455380000098, 26.487805155634746 ] ] ], [ [ [ -82.263655380000102, 26.716405155634746 ], [ -82.272255380000104, 26.715805155634754 ], [ -82.281355380000093, 26.808905155634747 ], [ -82.255255380000079, 26.759405155634752 ], [ -82.263655380000102, 26.716405155634746 ] ] ], [ [ [ -82.587555380000083, 27.321105155634754 ], [ -82.603655380000106, 27.330005155634737 ], [ -82.680555380000101, 27.425805155634762 ], [ -82.654155380000105, 27.418605155634751 ], [ -82.587555380000083, 27.321105155634754 ] ] ], [ [ [ -80.165255380000104, 27.189205155634752 ], [ -80.288855380000086, 27.413305155634745 ], [ -80.443055380000089, 27.853005155634762 ], [ -80.371655380000078, 27.714705155634746 ], [ -80.165255380000104, 27.189205155634752 ] ] ], [ [ [ -80.663855380000086, 28.258305155634744 ], [ -80.656355380000093, 28.24220515563475 ], [ -80.723655380000082, 28.37920515563475 ], [ -80.740255380000093, 28.478305155634743 ], [ -80.643055380000078, 28.597705155634756 ], [ -80.663855380000086, 28.258305155634744 ] ] ], [ [ [ -90.872655380000083, 29.046105155634748 ], [ -90.906955380000085, 29.047505155634738 ], [ -90.950355380000104, 29.060005155634755 ], [ -90.923655380000099, 29.060505155634743 ], [ -90.872655380000083, 29.046105155634748 ] ] ], [ [ [ -90.739155380000085, 29.04500515563474 ], [ -90.758355380000097, 29.048605155634746 ], [ -90.643255380000085, 29.074005155634737 ], [ -90.657455380000101, 29.065005155634751 ], [ -90.739155380000085, 29.04500515563474 ] ] ], [ [ [ -90.335555380000102, 29.057205155634747 ], [ -90.317055380000085, 29.075305155634751 ], [ -90.285255380000081, 29.083005155634751 ], [ -90.298355380000089, 29.066905155634757 ], [ -90.335555380000102, 29.057205155634747 ] ] ], [ [ [ -89.975255380000078, 29.242805155634741 ], [ -90.027255380000099, 29.211105155634741 ], [ -90.031155380000087, 29.211905155634739 ], [ -89.954955380000087, 29.268005155634754 ], [ -89.975255380000078, 29.242805155634741 ] ] ], [ [ [ -89.91995538000009, 29.28470515563474 ], [ -89.937755380000084, 29.279405155634734 ], [ -89.907455380000101, 29.302205155634752 ], [ -89.908355380000103, 29.294205155634742 ], [ -89.91995538000009, 29.28470515563474 ] ] ], [ [ [ -89.859955380000088, 29.310305155634737 ], [ -89.886655380000093, 29.30440515563474 ], [ -89.893855380000105, 29.32300515563476 ], [ -89.8697553800001, 29.335305155634742 ], [ -89.859955380000088, 29.310305155634737 ] ] ], [ [ [ -89.170555380000081, 29.473005155634738 ], [ -89.210555380000102, 29.463005155634747 ], [ -89.21845538000008, 29.464005155634752 ], [ -89.156955380000085, 29.49250515563476 ], [ -89.170555380000081, 29.473005155634738 ] ] ], [ [ [ -89.601055380000105, 29.51390515563476 ], [ -89.618355380000082, 29.538305155634745 ], [ -89.565855380000102, 29.55470515563475 ], [ -89.562255380000096, 29.521105155634743 ], [ -89.601055380000105, 29.51390515563476 ] ] ], [ [ [ -89.080255380000096, 29.521405155634753 ], [ -89.078855380000078, 29.545505155634757 ], [ -89.03725538000009, 29.57270515563475 ], [ -89.068855380000088, 29.53190515563476 ], [ -89.080255380000096, 29.521405155634753 ] ] ], [ [ [ -91.786655380000099, 29.486105155634746 ], [ -91.844455380000085, 29.483005155634757 ], [ -92.034455380000082, 29.591705155634756 ], [ -91.856355380000082, 29.635005155634744 ], [ -91.786655380000099, 29.486105155634746 ] ] ], [ [ [ -85.111155380000099, 29.632205155634736 ], [ -85.144155380000086, 29.63890515563476 ], [ -85.198055380000085, 29.685305155634737 ], [ -85.081655380000086, 29.679205155634762 ], [ -85.111155380000099, 29.632205155634736 ] ] ], [ [ [ -89.428555380000091, 29.692805155634758 ], [ -89.451155380000102, 29.69170515563475 ], [ -89.468655380000087, 29.728605155634753 ], [ -89.422455380000088, 29.722805155634759 ], [ -89.428555380000091, 29.692805155634758 ] ] ], [ [ [ -84.972755380000081, 29.608905155634758 ], [ -85.054155380000083, 29.593905155634744 ], [ -85.093855380000093, 29.627205155634741 ], [ -84.692255380000091, 29.758305155634744 ], [ -84.972755380000081, 29.608905155634758 ] ] ], [ [ [ -89.424155380000087, 29.74080515563476 ], [ -89.488855380000103, 29.738005155634752 ], [ -89.491055380000091, 29.793005155634759 ], [ -89.438055380000094, 29.780805155634752 ], [ -89.424155380000087, 29.74080515563476 ] ] ], [ [ [ -89.278455380000082, 29.799805155634758 ], [ -89.286455380000092, 29.771305155634749 ], [ -89.341655380000105, 29.803905155634752 ], [ -89.282455380000101, 29.811405155634745 ], [ -89.278455380000082, 29.799805155634758 ] ] ], [ [ [ -84.638855380000081, 29.778305155634754 ], [ -84.666755380000097, 29.776505155634752 ], [ -84.573455380000098, 29.820005155634746 ], [ -84.580555380000078, 29.800005155634736 ], [ -84.638855380000081, 29.778305155634754 ] ] ], [ [ [ -88.845855380000103, 29.776405155634748 ], [ -88.819455380000079, 29.922205155634757 ], [ -88.858955380000083, 30.052005155634745 ], [ -88.805855380000082, 29.906405155634744 ], [ -88.845855380000103, 29.776405155634748 ] ] ], [ [ [ -89.317755380000079, 30.040805155634743 ], [ -89.346455380000094, 30.058905155634747 ], [ -89.184955380000105, 30.166705155634745 ], [ -89.263355380000093, 30.067805155634758 ], [ -89.317755380000079, 30.040805155634743 ] ] ], [ [ [ -88.437755380000084, 30.206105155634745 ], [ -88.498855380000094, 30.212505155634759 ], [ -88.500555380000094, 30.218905155634744 ], [ -88.428055380000103, 30.21280515563474 ], [ -88.437755380000084, 30.206105155634745 ] ] ], [ [ [ -89.081155380000098, 30.19970515563476 ], [ -89.091655380000105, 30.216705155634756 ], [ -89.060555380000096, 30.246705155634757 ], [ -89.061355380000094, 30.233605155634748 ], [ -89.081155380000098, 30.19970515563476 ] ] ], [ [ [ -88.552255380000105, 30.214705155634746 ], [ -88.59945538000008, 30.215505155634744 ], [ -88.75385538000009, 30.243605155634739 ], [ -88.526355380000098, 30.223005155634738 ], [ -88.552255380000105, 30.214705155634746 ] ] ], [ [ [ -88.094755380000095, 30.241105155634742 ], [ -88.291355380000084, 30.228605155634753 ], [ -88.312155380000092, 30.232105155634756 ], [ -88.1077553800001, 30.273605155634741 ], [ -88.094755380000095, 30.241105155634742 ] ] ], [ [ [ -86.529155380000105, 30.400805155634757 ], [ -87.253055380000092, 30.317205155634738 ], [ -87.291655380000094, 30.331705155634737 ], [ -86.763055380000083, 30.405005155634754 ], [ -86.529155380000105, 30.400805155634757 ] ] ], [ [ [ -81.450555380000083, 30.720005155634752 ], [ -81.492255380000103, 30.887505155634742 ], [ -81.428855380000101, 30.942505155634748 ], [ -81.415855380000096, 30.939405155634759 ], [ -81.450555380000083, 30.720005155634752 ] ] ], [ [ [ -79.360855380000089, 33.006705155634748 ], [ -79.361155380000099, 33.050005155634736 ], [ -79.335555380000102, 33.06640515563474 ], [ -79.341955380000087, 33.039405155634753 ], [ -79.360855380000089, 33.006705155634748 ] ] ], [ [ [ -77.960855380000083, 33.850005155634747 ], [ -78.016355380000078, 33.874205155634755 ], [ -77.949755380000084, 33.913005155634735 ], [ -77.944955380000096, 33.905305155634736 ], [ -77.960855380000083, 33.850005155634747 ] ] ], [ [ [ -77.851655380000096, 34.111105155634746 ], [ -77.855855380000094, 34.14920515563476 ], [ -77.820855380000097, 34.175305155634746 ], [ -77.817355380000095, 34.171505155634762 ], [ -77.851655380000096, 34.111105155634746 ] ] ], [ [ [ -76.535255380000081, 34.63550515563476 ], [ -76.54495538000009, 34.633305155634744 ], [ -76.654455380000087, 34.686705155634755 ], [ -76.559155380000078, 34.665005155634745 ], [ -76.535255380000081, 34.63550515563476 ] ] ], [ [ [ -76.682455380000079, 34.702205155634758 ], [ -76.842255380000097, 34.697205155634762 ], [ -77.098055380000091, 34.650505155634747 ], [ -76.931155380000092, 34.69140515563474 ], [ -76.802255380000105, 34.706705155634737 ], [ -76.682455380000079, 34.702205155634758 ] ] ], [ [ [ -76.528055380000097, 34.589705155634746 ], [ -76.543855380000082, 34.60780515563475 ], [ -76.420855380000091, 34.775805155634757 ], [ -76.200855380000093, 34.942405155634745 ], [ -76.528055380000097, 34.589705155634746 ] ] ], [ [ [ -76.067755380000079, 35.039405155634753 ], [ -76.131055380000106, 35.001905155634759 ], [ -76.039455380000078, 35.061105155634735 ], [ -76.067755380000079, 35.039405155634753 ] ] ], [ [ [ -76.010855380000095, 35.074205155634743 ], [ -75.981155380000104, 35.115005155634762 ], [ -75.767155380000105, 35.192705155634755 ], [ -75.929155380000083, 35.122505155634755 ], [ -76.010855380000095, 35.074205155634743 ] ] ], [ [ [ -75.527255380000099, 35.235505155634755 ], [ -75.653655380000089, 35.225505155634735 ], [ -75.512555380000094, 35.307805155634739 ], [ -75.512555380000094, 35.777205155634746 ], [ -75.447455380000093, 35.582505155634735 ], [ -75.527255380000099, 35.235505155634755 ] ] ], [ [ [ -75.61945538000009, 35.821405155634736 ], [ -75.66195538000008, 35.839405155634736 ], [ -75.7233553800001, 35.94170515563475 ], [ -75.665855380000096, 35.926905155634742 ], [ -75.61945538000009, 35.821405155634736 ] ] ], [ [ [ -75.906155380000087, 37.112505155634736 ], [ -75.8988553800001, 37.13690515563475 ], [ -75.871755380000081, 37.148405155634762 ], [ -75.894155380000086, 37.121105155634737 ], [ -75.906155380000087, 37.112505155634736 ] ] ], [ [ [ -75.788355380000098, 37.238005155634752 ], [ -75.837555380000083, 37.227805155634755 ], [ -75.785255380000081, 37.298605155634746 ], [ -75.781355380000093, 37.291405155634735 ], [ -75.788355380000098, 37.238005155634752 ] ] ], [ [ [ -75.696655380000095, 37.402805155634738 ], [ -75.7113553800001, 37.391405155634757 ], [ -75.668355380000094, 37.460305155634742 ], [ -75.671955380000099, 37.439705155634741 ], [ -75.696655380000095, 37.402805155634738 ] ] ], [ [ [ -75.354155380000094, 37.866705155634762 ], [ -75.384155380000095, 37.872205155634745 ], [ -75.12115538000009, 38.263005155634758 ], [ -75.189155380000102, 38.089405155634736 ], [ -75.354155380000094, 37.866705155634762 ] ] ], [ [ [ -75.459455380000094, 39.788305155634745 ], [ -75.576355380000081, 39.459405155634741 ], [ -75.396655380000084, 39.251105155634761 ], [ -75.0452553800001, 38.412805155634757 ], [ -75.868055380000101, 37.216905155634734 ], [ -76.0161553800001, 37.259205155634746 ], [ -75.956355380000105, 37.497805155634737 ], [ -75.644055380000083, 37.961205155634744 ], [ -75.880855380000099, 37.94940515563475 ], [ -75.837055380000095, 38.397905155634746 ], [ -76.0375553800001, 38.226605155634743 ], [ -76.242455380000081, 38.36690515563474 ], [ -76.265255380000099, 38.619705155634747 ], [ -76.023355380000083, 38.574205155634743 ], [ -75.956655380000086, 38.648605155634741 ], [ -76.343355380000105, 38.684705155634745 ], [ -76.273055380000102, 38.838905155634748 ], [ -76.104755380000086, 38.794405155634749 ], [ -76.220555380000093, 38.966105155634736 ], [ -76.359955380000088, 38.857205155634759 ], [ -76.063055380000094, 39.140005155634739 ], [ -76.220855380000103, 39.060805155634753 ], [ -76.166355380000084, 39.319705155634736 ], [ -75.831655380000086, 39.577505155634739 ], [ -76.359755380000081, 39.400005155634759 ], [ -76.416355380000084, 39.209705155634751 ], [ -76.618655380000092, 39.25420515563475 ], [ -76.393055380000078, 39.020505155634751 ], [ -76.5375553800001, 38.731705155634742 ], [ -76.376055380000082, 38.363605155634744 ], [ -76.631655380000097, 38.483605155634748 ], [ -76.677455380000083, 38.675005155634736 ], [ -76.666155380000106, 38.480505155634759 ], [ -76.37115538000009, 38.288305155634745 ], [ -76.311055380000084, 38.045905155634742 ], [ -77.040255380000104, 38.44140515563474 ], [ -77.24445538000009, 38.398305155634759 ], [ -77.021655380000084, 38.700505155634758 ], [ -77.015055380000092, 38.863905155634754 ], [ -77.051955380000095, 38.901705155634758 ], [ -77.326355380000081, 38.402505155634756 ], [ -76.23415538000009, 37.895305155634745 ], [ -76.353655380000106, 37.618605155634739 ], [ -76.929155380000083, 38.088305155634757 ], [ -77.134155380000095, 38.171605155634737 ], [ -76.286655380000099, 37.567505155634748 ], [ -76.240855380000085, 37.368905155634749 ], [ -76.381055380000106, 37.27390515563475 ], [ -76.682755380000089, 37.42970515563475 ], [ -76.292455380000092, 37.003605155634759 ], [ -76.641355380000078, 37.223905155634739 ], [ -76.995555380000098, 37.316105155634759 ], [ -77.232255380000083, 37.296405155634758 ], [ -76.293655380000104, 36.843305155634752 ], [ -76.261355380000083, 36.958905155634753 ], [ -75.989955380000083, 36.913905155634737 ], [ -75.529155380000105, 35.803905155634752 ], [ -75.939255380000105, 36.716705155634756 ], [ -75.899155380000082, 36.488605155634744 ], [ -76.034755380000092, 36.496705155634757 ], [ -75.784855380000096, 36.070605155634738 ], [ -75.970855380000103, 36.311905155634761 ], [ -75.924355380000094, 36.170805155634739 ], [ -76.195555380000087, 36.320005155634746 ], [ -76.063055380000094, 36.153305155634754 ], [ -76.656655380000103, 36.031105155634762 ], [ -76.706155380000098, 36.264205155634741 ], [ -76.729255380000097, 35.939205155634752 ], [ -76.070855380000097, 35.99190515563474 ], [ -76.035255380000081, 35.650005155634759 ], [ -75.853655380000106, 35.975005155634747 ], [ -75.720255380000083, 35.814405155634759 ], [ -75.743355380000082, 35.613905155634754 ], [ -76.149155380000082, 35.336905155634739 ], [ -76.499155380000104, 35.386105155634752 ], [ -76.57975538000008, 35.550505155634752 ], [ -76.652455380000106, 35.415005155634745 ], [ -77.050855380000087, 35.530305155634736 ], [ -76.468855380000093, 35.271705155634734 ], [ -76.761355380000083, 34.987805155634746 ], [ -77.076355380000081, 35.156105155634762 ], [ -76.944455380000079, 34.977505155634745 ], [ -76.753055380000092, 34.905305155634736 ], [ -76.454455380000098, 35.071405155634736 ], [ -76.335855380000083, 34.88690515563475 ], [ -76.503355380000102, 34.733005155634757 ], [ -76.690555380000092, 34.800005155634736 ], [ -77.123355380000106, 34.693305155634746 ], [ -77.314155380000102, 34.557505155634757 ], [ -77.428855380000101, 34.74190515563474 ], [ -77.349955380000097, 34.520305155634745 ], [ -77.6822553800001, 34.36550515563475 ], [ -77.930855380000082, 33.927805155634744 ], [ -77.924455380000097, 34.107205155634759 ], [ -77.961655380000082, 34.15860515563476 ], [ -78.013655380000102, 33.891905155634745 ], [ -78.827455380000089, 33.730305155634753 ], [ -79.196455380000089, 33.278905155634746 ], [ -79.187955380000091, 33.435605155634747 ], [ -79.271355380000102, 33.373305155634753 ], [ -79.205855380000088, 33.165505155634762 ], [ -79.371755380000081, 33.058905155634747 ], [ -79.381955380000079, 33.009705155634762 ], [ -79.815855380000102, 32.767205155634755 ], [ -79.942555380000101, 32.85350515563475 ], [ -79.884155380000095, 32.687205155634743 ], [ -80.321155380000079, 32.481905155634749 ], [ -80.67165538000009, 32.521705155634734 ], [ -80.479455380000104, 32.473605155634758 ], [ -80.467255380000097, 32.315805155634749 ], [ -80.631355380000088, 32.256405155634738 ], [ -80.836955380000092, 32.516705155634739 ], [ -80.66995538000009, 32.214205155634758 ], [ -81.159955380000099, 31.568305155634746 ], [ -81.335555380000102, 31.550805155634762 ], [ -81.20475538000008, 31.474705155634737 ], [ -81.27525538000009, 31.234705155634757 ], [ -81.496655380000078, 31.126705155634752 ], [ -81.401355380000098, 31.079405155634745 ], [ -81.533755380000088, 30.849405155634756 ], [ -81.255255380000079, 29.79670515563474 ], [ -80.552455380000083, 28.525005155634759 ], [ -80.446655380000095, 27.864405155634742 ], [ -80.602255380000088, 28.60750515563474 ], [ -80.844155380000103, 28.790505155634762 ], [ -80.755555380000089, 28.415805155634743 ], [ -80.033355380000103, 26.786705155634749 ], [ -80.399455380000092, 25.184905155634752 ], [ -81.0880553800001, 25.11550515563475 ], [ -81.156155380000087, 25.309405155634735 ], [ -80.915255380000104, 25.251405155634743 ], [ -81.336655380000082, 25.80500515563476 ], [ -81.736555380000084, 25.959405155634741 ], [ -81.969255380000078, 26.481805155634746 ], [ -81.777755380000087, 26.710505155634749 ], [ -82.064155380000102, 26.54500515563474 ], [ -82.01725538000008, 26.964705155634746 ], [ -82.191955380000081, 26.938005155634741 ], [ -82.158355380000103, 26.780005155634754 ], [ -82.302755380000093, 26.837205155634749 ], [ -82.655255380000085, 27.46170515563476 ], [ -82.422455380000088, 27.917505155634743 ], [ -82.69135538000009, 28.032205155634742 ], [ -82.594755380000095, 27.813305155634751 ], [ -82.722455380000099, 27.65690515563476 ], [ -82.853355380000096, 27.855305155634753 ], [ -82.631055380000106, 28.885005155634744 ], [ -84.016955380000098, 30.100005155634747 ], [ -85.354155380000094, 29.676705155634735 ], [ -85.411355380000089, 29.785305155634759 ], [ -85.407255380000095, 29.862505155634736 ], [ -85.350855380000098, 29.686705155634755 ], [ -85.309455380000088, 29.823605155634752 ], [ -85.633255380000094, 30.105605155634734 ], [ -85.451955380000101, 30.015305155634749 ], [ -85.39225538000008, 30.049405155634744 ], [ -85.746955380000088, 30.297205155634757 ], [ -85.848055380000091, 30.250005155634753 ], [ -85.725555380000088, 30.125805155634751 ], [ -86.334155380000084, 30.376405155634743 ], [ -86.101955380000078, 30.37920515563475 ], [ -86.263355380000093, 30.496705155634757 ], [ -87.190255380000082, 30.354205155634745 ], [ -86.936355380000094, 30.450005155634742 ], [ -87.1625553800001, 30.519705155634753 ], [ -87.30665538000008, 30.321405155634736 ], [ -87.5255553800001, 30.277205155634746 ], [ -87.341355380000095, 30.429205155634762 ], [ -87.420355380000103, 30.480905155634744 ], [ -87.568655380000081, 30.279405155634734 ], [ -87.733655380000101, 30.235005155634738 ], [ -88.020555380000104, 30.218605155634762 ], [ -87.756355380000088, 30.285305155634759 ], [ -88.020255380000094, 30.70110515563475 ], [ -88.138055380000083, 30.313605155634761 ], [ -88.980855380000094, 30.418305155634741 ], [ -89.583855380000102, 30.150805155634757 ], [ -90.230555380000084, 30.380805155634746 ], [ -90.425855380000087, 30.186405155634745 ], [ -90.34975538000009, 30.061705155634755 ], [ -89.667255380000086, 30.167805155634753 ], [ -89.843655380000087, 30.005305155634758 ], [ -89.636655380000093, 29.872505155634755 ], [ -89.399455380000092, 30.050805155634762 ], [ -89.404155380000105, 29.762505155634742 ], [ -89.479955380000092, 29.831905155634743 ], [ -89.753355380000102, 29.630805155634746 ], [ -89.676355380000103, 29.52390515563475 ], [ -89.008355380000097, 29.176905155634742 ], [ -89.404955380000104, 28.926705155634735 ], [ -89.272755380000092, 29.155805155634752 ], [ -89.395555380000104, 29.093905155634744 ], [ -90.178355380000085, 29.572505155634744 ], [ -90.049755380000079, 29.223805155634736 ], [ -90.247755380000086, 29.082505155634735 ], [ -90.444455380000079, 29.32610515563475 ], [ -90.70475538000008, 29.114705155634752 ], [ -91.262755380000101, 29.247805155634737 ], [ -91.33775538000009, 29.335305155634742 ], [ -91.123855380000094, 29.344705155634742 ], [ -91.841655380000105, 29.830305155634747 ], [ -92.148655380000093, 29.768905155634755 ], [ -92.09975538000009, 29.61550515563475 ], [ -92.279155380000105, 29.539705155634735 ], [ -93.240855380000085, 29.785005155634749 ], [ -93.885555380000085, 29.745305155634739 ], [ -93.535255380000081, 31.181905155634738 ], [ -94.043055380000084, 31.993305155634758 ], [ -94.0452553800001, 33.55330515563476 ], [ -94.48415538000009, 33.647205155634751 ], [ -94.440855380000102, 35.410005155634749 ], [ -94.618355380000082, 36.499705155634743 ], [ -90.16225538000009, 36.499705155634743 ], [ -90.067255380000091, 36.287205155634737 ], [ -90.382755380000106, 35.985505155634755 ], [ -89.731155380000104, 36.000505155634741 ], [ -89.56635538000009, 36.557205155634747 ], [ -89.490255380000093, 36.44800515563476 ], [ -89.372255380000098, 36.627805155634761 ], [ -89.214755380000099, 36.585005155634761 ], [ -89.072255380000087, 37.183305155634756 ], [ -88.488355380000087, 37.065805155634749 ], [ -88.480255380000102, 37.394705155634753 ], [ -88.082255380000106, 37.483605155634748 ], [ -88.147755380000092, 37.676405155634754 ], [ -87.841355380000095, 37.88720515563476 ], [ -87.427455380000083, 37.944705155634736 ], [ -87.113055380000105, 37.788905155634737 ], [ -86.829455380000098, 37.989205155634735 ], [ -86.635055380000097, 37.846905155634758 ], [ -86.370555380000098, 38.196705155634746 ], [ -85.958655380000096, 38.007805155634756 ], [ -85.829155380000088, 38.278005155634744 ], [ -85.41195538000008, 38.54530515563475 ], [ -85.4416553800001, 38.726105155634755 ], [ -84.842755380000085, 38.793305155634741 ], [ -84.882455380000096, 39.05300515563475 ], [ -84.700255380000101, 39.120005155634757 ], [ -83.666355380000084, 38.627805155634761 ], [ -82.883655380000079, 38.743005155634748 ], [ -82.589755380000099, 38.413305155634745 ], [ -82.633355380000097, 38.152805155634738 ], [ -81.928055380000103, 37.370305155634739 ], [ -81.644455380000096, 37.208905155634753 ], [ -81.360555380000079, 37.338905155634748 ], [ -81.213655380000091, 37.24250515563476 ], [ -80.284455380000082, 37.515005155634739 ], [ -79.653055380000097, 38.588005155634747 ], [ -79.288555380000105, 38.421905155634747 ], [ -78.996955380000088, 38.846905155634758 ], [ -78.872755380000086, 38.781705155634754 ], [ -78.561355380000094, 39.008905155634736 ], [ -78.330255380000096, 39.455805155634735 ], [ -77.836155380000093, 39.144705155634753 ], [ -77.738855380000103, 39.321405155634736 ], [ -77.888855380000081, 39.602805155634755 ], [ -78.180555380000101, 39.698905155634762 ], [ -79.059455380000088, 39.484705155634757 ], [ -79.487155380000104, 39.204305155634742 ], [ -79.477455380000094, 39.721705155634751 ], [ -75.459455380000094, 39.788305155634745 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 79, "LEVEL1_COD": 7, "LEVEL1_NAM": "NORTHERN AMERICA", "LEVEL2_NAM": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.742855380000094, 18.322805155634754 ], [ -114.796455380000097, 18.318905155634738 ], [ -114.803055380000089, 18.332805155634745 ], [ -114.723955380000092, 18.353305155634743 ], [ -114.742855380000094, 18.322805155634754 ] ] ], [ [ [ -87.372755380000086, 18.40030515563474 ], [ -87.338655380000091, 18.448305155634742 ], [ -87.331655380000086, 18.503005155634739 ], [ -87.326955380000101, 18.453305155634737 ], [ -87.372755380000086, 18.40030515563474 ] ] ], [ [ [ -87.251655380000102, 18.641405155634757 ], [ -87.259455380000105, 18.627805155634761 ], [ -87.265055380000092, 18.733905155634758 ], [ -87.246655380000078, 18.689205155634752 ], [ -87.251655380000102, 18.641405155634757 ] ] ], [ [ [ -91.8286553800001, 18.639205155634741 ], [ -91.646155380000096, 18.753605155634759 ], [ -91.5238553800001, 18.770505155634751 ], [ -91.524455380000092, 18.748605155634735 ], [ -91.8286553800001, 18.639205155634741 ] ] ], [ [ [ -110.926155380000097, 18.72110515563476 ], [ -111.071455380000089, 18.768305155634735 ], [ -111.003355380000087, 18.865005155634762 ], [ -110.939455380000098, 18.827505155634739 ], [ -110.926155380000097, 18.72110515563476 ] ] ], [ [ [ -110.788655380000094, 19.308005155634746 ], [ -110.83005538000009, 19.271105155634743 ], [ -110.835855380000098, 19.271405155634753 ], [ -110.81335538000009, 19.341705155634756 ], [ -110.788655380000094, 19.308005155634746 ] ] ], [ [ [ -86.7327553800001, 20.585505155634749 ], [ -86.885555380000085, 20.353905155634735 ], [ -86.999955380000102, 20.256405155634738 ], [ -86.938855380000092, 20.539405155634753 ], [ -86.7327553800001, 20.585505155634749 ] ] ], [ [ [ -86.701355380000081, 21.197205155634762 ], [ -86.738855380000103, 21.240005155634762 ], [ -86.749155380000104, 21.286405155634739 ], [ -86.729155380000094, 21.258605155634754 ], [ -86.701355380000081, 21.197205155634762 ] ] ], [ [ [ -106.195555380000087, 21.255305155634758 ], [ -106.269455380000096, 21.29500515563474 ], [ -106.265055380000092, 21.33670515563476 ], [ -106.197555380000097, 21.338605155634738 ], [ -106.195555380000087, 21.255305155634758 ] ] ], [ [ [ -106.386655380000093, 21.420805155634739 ], [ -106.501955380000098, 21.432205155634747 ], [ -106.511355380000097, 21.450305155634751 ], [ -106.335555380000088, 21.498905155634745 ], [ -106.386655380000093, 21.420805155634739 ] ] ], [ [ [ -106.515055380000092, 21.513005155634758 ], [ -106.628355380000087, 21.572505155634744 ], [ -106.645855380000086, 21.688305155634751 ], [ -106.530055380000093, 21.690805155634749 ], [ -106.515055380000092, 21.513005155634758 ] ] ], [ [ [ -106.656355380000093, 21.752505155634751 ], [ -106.675255380000095, 21.741405155634752 ], [ -106.670555380000096, 21.81640515563474 ], [ -106.643655380000098, 21.768605155634745 ], [ -106.656355380000093, 21.752505155634751 ] ] ], [ [ [ -97.6077553800001, 21.736705155634738 ], [ -97.674155380000087, 21.790305155634755 ], [ -97.685555380000096, 21.860005155634738 ], [ -97.600255380000078, 21.750305155634734 ], [ -97.6077553800001, 21.736705155634738 ] ] ], [ [ [ -97.818855380000088, 22.682505155634757 ], [ -97.830855380000088, 22.697205155634762 ], [ -97.784155380000101, 22.77420515563476 ], [ -97.778355380000079, 22.75390515563474 ], [ -97.818855380000088, 22.682505155634757 ] ] ], [ [ [ -97.773055380000102, 22.791405155634735 ], [ -97.781355380000093, 22.80500515563476 ], [ -97.760255380000103, 22.834205155634734 ], [ -97.766655380000088, 22.799705155634754 ], [ -97.773055380000102, 22.791405155634735 ] ] ], [ [ [ -109.784455380000097, 24.135005155634744 ], [ -109.871455380000086, 24.187505155634753 ], [ -109.915555380000086, 24.368905155634749 ], [ -109.798655380000099, 24.191105155634759 ], [ -109.784455380000097, 24.135005155634744 ] ] ], [ [ [ -111.53255538000009, 24.378005155634739 ], [ -111.494755380000086, 24.351405155634737 ], [ -111.670355380000089, 24.371905155634735 ], [ -111.660855380000086, 24.391405155634757 ], [ -111.53255538000009, 24.378005155634739 ] ] ], [ [ [ -111.705855380000088, 24.331705155634737 ], [ -111.835055380000085, 24.427505155634762 ], [ -112.016755380000092, 24.532505155634752 ], [ -111.836955380000092, 24.541105155634753 ], [ -111.705855380000088, 24.331705155634737 ] ] ], [ [ [ -110.328055380000094, 24.400805155634757 ], [ -110.357855380000089, 24.433905155634747 ], [ -110.401955380000089, 24.580005155634737 ], [ -110.300055380000089, 24.484405155634747 ], [ -110.328055380000094, 24.400805155634757 ] ] ], [ [ [ -110.536955380000094, 24.882205155634736 ], [ -110.643955380000094, 24.931105155634739 ], [ -110.70505538000009, 25.093905155634744 ], [ -110.578955380000096, 25.033905155634741 ], [ -110.536955380000094, 24.882205155634736 ] ] ], [ [ [ -112.046155380000087, 24.519205155634737 ], [ -112.252855380000085, 24.810005155634755 ], [ -112.133655380000093, 25.281105155634762 ], [ -112.202555380000092, 24.845005155634752 ], [ -112.046155380000087, 24.519205155634737 ] ] ], [ [ [ -108.842755380000085, 25.428605155634742 ], [ -108.789155380000096, 25.372205155634745 ], [ -109.011155380000091, 25.438305155634751 ], [ -108.891955380000098, 25.44140515563474 ], [ -108.842755380000085, 25.428605155634742 ] ] ], [ [ [ -110.796955380000085, 25.595005155634752 ], [ -110.82535538000009, 25.642505155634737 ], [ -110.808355380000094, 25.695805155634744 ], [ -110.791655380000094, 25.643305155634735 ], [ -110.796955380000085, 25.595005155634752 ] ] ], [ [ [ -111.197555380000097, 25.845005155634752 ], [ -111.191455380000093, 26.038905155634737 ], [ -111.086655380000096, 26.07440515563475 ], [ -111.099455380000094, 26.004405155634757 ], [ -111.197555380000097, 25.845005155634752 ] ] ], [ [ [ -109.948855380000097, 27.024405155634739 ], [ -109.949455380000089, 27.017505155634737 ], [ -110.033555380000095, 27.092105155634741 ], [ -109.981355380000096, 27.07640515563476 ], [ -109.948855380000097, 27.024405155634739 ] ] ], [ [ [ -110.546155380000087, 27.310005155634755 ], [ -110.525855380000095, 27.301405155634754 ], [ -110.580255380000096, 27.317205155634738 ], [ -110.597455380000099, 27.336105155634741 ], [ -110.590255380000087, 27.415305155634755 ], [ -110.546155380000087, 27.310005155634755 ] ] ], [ [ [ -114.22005538000009, 27.738305155634762 ], [ -114.313655380000085, 27.780005155634754 ], [ -114.323955380000086, 27.81670515563475 ], [ -114.245055380000096, 27.814405155634759 ], [ -114.22005538000009, 27.738305155634762 ] ] ], [ [ [ -115.173955380000095, 28.027505155634756 ], [ -115.326755380000094, 28.13830515563474 ], [ -115.240855380000099, 28.370505155634746 ], [ -115.146155380000096, 28.178905155634752 ], [ -115.173955380000095, 28.027505155634756 ] ] ], [ [ [ -112.760055380000097, 28.593605155634762 ], [ -112.863055380000091, 28.650805155634757 ], [ -112.885855380000095, 28.683905155634747 ], [ -112.796455380000097, 28.644205155634737 ], [ -112.760055380000097, 28.593605155634762 ] ] ], [ [ [ -112.581655380000086, 28.67030515563475 ], [ -112.603655380000092, 28.727205155634735 ], [ -112.540855380000096, 28.735805155634736 ], [ -112.546155380000087, 28.679205155634762 ], [ -112.581655380000086, 28.67030515563475 ] ] ], [ [ [ -118.289155380000096, 28.881705155634748 ], [ -118.404155380000091, 29.147805155634742 ], [ -118.310055380000094, 29.195305155634756 ], [ -118.238355380000087, 29.030305155634736 ], [ -118.289155380000096, 28.881705155634748 ] ] ], [ [ [ -112.261955380000089, 28.773305155634759 ], [ -112.564155380000088, 28.878305155634749 ], [ -112.345855380000089, 29.233605155634748 ], [ -112.202755380000099, 29.032205155634742 ], [ -112.261955380000089, 28.773305155634759 ] ] ], [ [ [ -113.135555380000099, 29.019705155634753 ], [ -113.592255380000097, 29.425805155634762 ], [ -113.588655380000091, 29.583605155634743 ], [ -113.195855380000097, 29.228305155634743 ], [ -113.135555380000099, 29.019705155634753 ] ] ], [ [ [ -114.650855380000095, 31.690505155634739 ], [ -114.763655380000088, 31.712505155634759 ], [ -114.790355380000094, 31.799405155634744 ], [ -114.745055380000096, 31.786705155634749 ], [ -114.650855380000095, 31.690505155634739 ] ] ], [ [ [ -113.052855380000096, 31.97110515563476 ], [ -111.045855380000091, 31.333005155634751 ], [ -108.208355380000086, 31.333005155634751 ], [ -108.208655380000096, 31.78330515563475 ], [ -106.400855380000095, 31.750305155634734 ], [ -106.214455380000089, 31.475305155634757 ], [ -104.900555380000085, 30.572805155634754 ], [ -104.540055380000098, 29.671105155634748 ], [ -103.299755380000093, 28.998005155634743 ], [ -102.954955380000087, 29.183005155634746 ], [ -102.670255380000086, 29.742805155634741 ], [ -102.305855380000096, 29.889405155634748 ], [ -101.405055380000093, 29.772805155634742 ], [ -100.668355380000094, 29.113305155634762 ], [ -100.282455380000087, 28.281405155634744 ], [ -99.504955380000098, 27.570305155634756 ], [ -99.458655380000096, 27.046905155634747 ], [ -99.104755380000086, 26.435005155634755 ], [ -97.418855380000082, 25.843605155634762 ], [ -97.140755380000087, 25.966405155634746 ], [ -97.651655380000079, 24.520305155634745 ], [ -97.741355380000101, 22.905805155634752 ], [ -97.889755380000082, 22.600805155634745 ], [ -97.699155380000093, 21.976905155634753 ], [ -97.317255380000091, 21.564205155634752 ], [ -97.416655380000094, 21.271105155634743 ], [ -97.3697553800001, 21.538105155634739 ], [ -97.742255380000103, 22.012505155634742 ], [ -97.666655380000094, 21.661705155634749 ], [ -97.176155380000097, 20.685005155634755 ], [ -96.447755380000103, 19.861705155634738 ], [ -96.294155380000092, 19.338905155634748 ], [ -95.911355380000089, 18.825305155634751 ], [ -94.802255380000105, 18.522505155634761 ], [ -94.478855380000084, 18.146705155634734 ], [ -93.57805538000008, 18.423005155634755 ], [ -93.126955380000084, 18.338905155634748 ], [ -91.995055380000082, 18.727805155634755 ], [ -91.85885538000008, 18.611105155634746 ], [ -92.034455380000082, 18.594705155634742 ], [ -92.042555380000096, 18.550805155634762 ], [ -91.814755380000094, 18.383005155634734 ], [ -91.4750553800001, 18.439405155634759 ], [ -91.183855380000097, 18.652205155634746 ], [ -91.433755380000093, 18.853705155634756 ], [ -90.756655380000097, 19.315805155634749 ], [ -90.681155380000092, 19.76220515563476 ], [ -90.45475538000008, 19.975305155634757 ], [ -90.327555380000092, 21.031405155634744 ], [ -88.451355380000081, 21.568905155634738 ], [ -87.249155380000104, 21.44140515563474 ], [ -87.1291553800001, 21.55470515563475 ], [ -87.414455380000078, 21.526905155634736 ], [ -87.0786553800001, 21.606105155634751 ], [ -86.82835538000009, 21.430305155634741 ], [ -86.772755380000092, 21.151405155634748 ], [ -87.430055380000084, 20.214705155634746 ], [ -87.471955380000082, 20.092805155634736 ], [ -87.443255380000096, 19.915605155634736 ], [ -87.445855380000097, 19.892805155634747 ], [ -87.467855380000088, 19.843705155634737 ], [ -87.448055380000085, 19.923805155634753 ], [ -87.476955380000078, 19.961105155634741 ], [ -87.738855380000103, 19.674705155634754 ], [ -87.670055380000093, 19.505305155634758 ], [ -87.411655380000099, 19.578905155634757 ], [ -87.676355380000103, 19.318005155634737 ], [ -87.646155380000096, 19.211105155634741 ], [ -87.488655380000097, 19.291405155634735 ], [ -87.847455380000099, 18.190805155634749 ], [ -88.080855380000088, 18.517205155634755 ], [ -88.0375553800001, 18.869405155634738 ], [ -88.841355380000095, 17.903905155634746 ], [ -89.02525538000009, 18.006405155634738 ], [ -89.141955380000098, 17.818905155634738 ], [ -90.98245538000009, 17.820605155634738 ], [ -90.98385538000008, 17.256105155634756 ], [ -91.437455380000102, 17.241105155634742 ], [ -90.406355380000093, 16.416405155634735 ], [ -90.441955380000081, 16.088305155634757 ], [ -91.729155380000094, 16.075005155634742 ], [ -92.2113553800001, 15.262205155634746 ], [ -92.065855380000102, 15.077805155634749 ], [ -92.246755380000081, 14.550505155634752 ], [ -92.772755380000092, 15.174405155634744 ], [ -93.93195538000009, 16.094205155634754 ], [ -94.368055380000101, 16.294405155634749 ], [ -94.43165538000008, 16.213005155634747 ], [ -94.057755380000089, 16.040805155634743 ], [ -94.72475538000009, 16.196705155634746 ], [ -94.57805538000008, 16.318305155634746 ], [ -94.789755380000088, 16.257805155634756 ], [ -94.861955380000097, 16.427505155634762 ], [ -95.067255380000091, 16.274705155634749 ], [ -94.8577553800001, 16.215805155634754 ], [ -96.557755380000089, 15.656405155634744 ], [ -97.784955380000099, 15.968605155634762 ], [ -98.782255380000095, 16.55300515563475 ], [ -99.692255380000091, 16.708305155634761 ], [ -100.909955380000099, 17.217505155634754 ], [ -101.950055380000094, 17.977505155634745 ], [ -102.170255380000086, 17.918305155634741 ], [ -103.473855380000089, 18.32640515563476 ], [ -103.971955380000097, 18.877205155634741 ], [ -105.022555380000085, 19.371905155634735 ], [ -105.527755380000087, 20.043905155634761 ], [ -105.676955380000095, 20.424205155634738 ], [ -105.244155380000095, 20.574205155634743 ], [ -105.322755380000089, 20.767805155634747 ], [ -105.544455380000088, 20.785005155634749 ], [ -105.241355380000087, 21.064705155634741 ], [ -105.189455380000098, 21.437505155634753 ], [ -105.654155380000091, 21.987805155634746 ], [ -105.816955380000095, 22.660305155634759 ], [ -106.919155380000092, 23.868905155634749 ], [ -107.735355380000087, 24.465705155634751 ], [ -107.600955380000087, 24.42230515563476 ], [ -107.618955380000088, 24.520305155634745 ], [ -107.99915538000009, 24.652505155634756 ], [ -107.989455380000095, 24.961905155634739 ], [ -108.101355380000086, 24.819405155634755 ], [ -108.228655380000092, 25.027505155634756 ], [ -108.042555380000096, 25.073605155634752 ], [ -108.394155380000086, 25.141105155634747 ], [ -108.767755380000096, 25.542205155634761 ], [ -109.108855380000094, 25.526105155634738 ], [ -108.970255380000097, 25.564405155634759 ], [ -108.828055380000094, 25.798305155634736 ], [ -109.136955380000089, 25.578005155634756 ], [ -109.388055380000097, 25.756105155634756 ], [ -109.424455380000097, 26.030505155634742 ], [ -109.214755380000085, 26.339205155634758 ], [ -109.103855380000098, 26.28360515563476 ], [ -109.439955380000086, 26.712505155634759 ], [ -109.75385538000009, 26.696105155634754 ], [ -109.950855380000093, 27.095305155634762 ], [ -110.529755380000097, 27.371105155634737 ], [ -110.635855380000095, 27.656105155634762 ], [ -110.509755380000087, 27.866405155634752 ], [ -111.105555380000098, 27.938305155634751 ], [ -112.164755380000088, 28.972505155634749 ], [ -112.210555380000088, 29.301905155634742 ], [ -112.396155380000096, 29.40970515563474 ], [ -113.08135538000009, 30.698905155634762 ], [ -113.086655380000096, 31.227205155634735 ], [ -113.589755380000085, 31.331705155634737 ], [ -113.965555380000097, 31.662505155634747 ], [ -114.01585538000009, 31.500305155634734 ], [ -114.204155380000088, 31.516405155634757 ], [ -115.03425538000009, 31.963305155634757 ], [ -114.779455380000087, 31.643605155634745 ], [ -114.880355380000097, 31.148605155634741 ], [ -114.705355380000086, 30.925005155634736 ], [ -114.545355380000089, 30.001105155634761 ], [ -113.673055380000093, 29.289705155634735 ], [ -113.504755380000091, 28.891405155634757 ], [ -113.194155380000097, 28.814405155634759 ], [ -113.111955380000097, 28.479705155634761 ], [ -112.862855380000099, 28.433305155634756 ], [ -112.752555380000089, 27.834705155634751 ], [ -112.322855380000092, 27.511705155634743 ], [ -111.858655380000087, 26.661905155634756 ], [ -111.688055380000094, 26.590805155634754 ], [ -111.842255380000097, 26.903005155634744 ], [ -111.560855380000092, 26.723605155634758 ], [ -111.299755380000093, 25.780305155634736 ], [ -110.686955380000086, 24.89920515563476 ], [ -110.654455380000087, 24.330005155634737 ], [ -110.354155380000094, 24.11580515563476 ], [ -110.213655380000091, 24.351905155634753 ], [ -109.410855380000086, 23.468305155634752 ], [ -109.488355380000087, 23.155505155634742 ], [ -109.914455380000092, 22.868605155634739 ], [ -110.316755380000089, 23.567505155634748 ], [ -112.087555380000097, 24.756105155634756 ], [ -112.070855380000097, 25.613005155634752 ], [ -112.106155380000089, 25.518305155634735 ], [ -112.396655380000098, 26.272805155634742 ], [ -113.220355380000086, 26.705505155634754 ], [ -113.128355380000087, 26.958905155634753 ], [ -113.597555380000088, 26.736905155634744 ], [ -114.469755380000095, 27.229405155634751 ], [ -114.521155380000096, 27.420805155634739 ], [ -114.988955380000093, 27.72110515563476 ], [ -115.02055538000009, 27.846705155634751 ], [ -114.429455380000093, 27.808005155634746 ], [ -114.17895538000009, 27.695305155634756 ], [ -113.983055380000096, 27.702505155634739 ], [ -114.310555380000096, 27.86550515563475 ], [ -114.128555380000094, 28.023705155634744 ], [ -114.063655380000085, 28.527205155634746 ], [ -114.95035538000009, 29.377505155634751 ], [ -115.693955380000091, 29.768305155634735 ], [ -115.826455380000098, 30.331905155634743 ], [ -116.036455380000092, 30.442805155634758 ], [ -116.054155380000097, 30.797805155634748 ], [ -116.677555380000086, 31.555305155634741 ], [ -116.600555380000088, 31.835305155634742 ], [ -116.848955380000092, 31.996105155634737 ], [ -117.122355380000087, 32.535305155634759 ], [ -114.719155380000089, 32.718405155634755 ], [ -114.800755380000098, 32.502905155634735 ], [ -113.052855380000096, 31.97110515563476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 80, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Central America" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.595355380000086, 3.996005155634748 ], [ -81.605955380000097, 3.978605155634753 ], [ -81.610855380000089, 4.001705155634752 ], [ -81.595355380000086, 3.996005155634748 ] ] ], [ [ [ -87.048055380000079, 5.520305155634745 ], [ -87.083055380000104, 5.50720515563475 ], [ -87.097455380000099, 5.523305155634745 ], [ -87.052755380000093, 5.560605155634747 ], [ -87.048055380000079, 5.520305155634745 ] ] ], [ [ [ -81.778655380000089, 7.276405155634748 ], [ -81.794455380000102, 7.22550515563475 ], [ -81.797555380000091, 7.225805155634745 ], [ -81.818655380000081, 7.290005155634745 ], [ -81.778655380000089, 7.276405155634748 ] ] ], [ [ [ -81.205855380000088, 7.486705155634752 ], [ -81.249755380000096, 7.488305155634748 ], [ -81.033655380000084, 7.570805155634744 ], [ -81.066155380000083, 7.534405155634744 ], [ -81.205855380000088, 7.486705155634752 ] ] ], [ [ [ -81.649455380000092, 7.384205155634746 ], [ -81.590855380000079, 7.326705155634755 ], [ -81.874255380000079, 7.491105155634742 ], [ -81.758655380000079, 7.634205155634746 ], [ -81.649455380000092, 7.384205155634746 ] ] ], [ [ [ -81.103955380000087, 7.71780515563475 ], [ -81.121655380000078, 7.721105155634746 ], [ -81.149155380000082, 7.741705155634747 ], [ -81.124255380000079, 7.75890515563475 ], [ -81.103955380000087, 7.71780515563475 ] ] ], [ [ [ -81.165355380000079, 7.822805155634754 ], [ -81.173655380000099, 7.818005155634751 ], [ -81.161455380000092, 7.841705155634742 ], [ -81.16225538000009, 7.830305155634747 ], [ -81.165355380000079, 7.822805155634754 ] ] ], [ [ [ -82.339155380000079, 8.087805155634754 ], [ -82.366155380000095, 8.091405155634746 ], [ -82.318655380000081, 8.136105155634752 ], [ -82.320055380000099, 8.099205155634749 ], [ -82.339155380000079, 8.087805155634754 ] ] ], [ [ [ -82.212055380000095, 8.197905155634743 ], [ -82.278055380000097, 8.190005155634751 ], [ -82.313955380000095, 8.212805155634754 ], [ -82.278055380000097, 8.228005155634747 ], [ -82.212055380000095, 8.197905155634743 ] ] ], [ [ [ -77.988355380000087, 8.247205155634745 ], [ -77.987655380000092, 8.241105155634742 ], [ -78.003455380000105, 8.250005155634753 ], [ -77.998055380000096, 8.251705155634752 ], [ -77.988355380000087, 8.247205155634745 ] ] ], [ [ [ -82.332555380000088, 8.233605155634748 ], [ -82.388055380000083, 8.207205155634753 ], [ -82.403655380000089, 8.253005155634753 ], [ -82.334855380000079, 8.292005155634754 ], [ -82.332555380000088, 8.233605155634748 ] ] ], [ [ [ -79.106955380000102, 8.20110515563475 ], [ -79.124755380000096, 8.231405155634747 ], [ -79.096255380000088, 8.309105155634754 ], [ -79.056355380000099, 8.250605155634744 ], [ -79.106955380000102, 8.20110515563475 ] ] ], [ [ [ -79.074155380000093, 8.374405155634747 ], [ -79.117955380000097, 8.392505155634751 ], [ -79.118055380000101, 8.411705155634749 ], [ -79.076955380000101, 8.409205155634751 ], [ -79.074155380000093, 8.374405155634747 ] ] ], [ [ [ -78.85145538000009, 8.288605155634755 ], [ -78.961955380000092, 8.296405155634744 ], [ -78.960355380000095, 8.447205155634748 ], [ -78.8500553800001, 8.433605155634751 ], [ -78.85145538000009, 8.288605155634755 ] ] ], [ [ [ -82.015055380000092, 9.126405155634743 ], [ -82.049255380000091, 9.144205155634751 ], [ -82.043355380000094, 9.177505155634748 ], [ -82.004755380000091, 9.138805155634742 ], [ -82.015055380000092, 9.126405155634743 ] ] ], [ [ [ -82.223655380000082, 9.337805155634754 ], [ -82.229055380000091, 9.336305155634747 ], [ -82.225555380000088, 9.351705155634747 ], [ -82.222355380000096, 9.349905155634744 ], [ -82.223655380000082, 9.337805155634754 ] ] ], [ [ [ -82.078255380000087, 9.284705155634754 ], [ -82.124455380000086, 9.271905155634755 ], [ -82.208355380000086, 9.343605155634748 ], [ -82.091655380000105, 9.309405155634749 ], [ -82.078255380000087, 9.284705155634754 ] ] ], [ [ [ -82.239255380000088, 9.330305155634747 ], [ -82.322255380000087, 9.40360515563475 ], [ -82.314455380000084, 9.424705155634754 ], [ -82.258355380000097, 9.429205155634747 ], [ -82.239255380000088, 9.330305155634747 ] ] ], [ [ [ -85.115855380000085, 10.073605155634752 ], [ -85.176155380000097, 10.077505155634753 ], [ -85.197455380000093, 10.111805155634755 ], [ -85.108355380000091, 10.105005155634743 ], [ -85.115855380000085, 10.073605155634752 ] ] ], [ [ [ -109.204455380000098, 10.288105155634753 ], [ -109.218055380000095, 10.281105155634748 ], [ -109.236955380000097, 10.302805155634744 ], [ -109.206955380000096, 10.304405155634754 ], [ -109.204455380000098, 10.288105155634753 ] ] ], [ [ [ -83.710855380000083, 11.870305155634753 ], [ -83.726955380000078, 11.875605155634744 ], [ -83.732255380000083, 11.927805155634744 ], [ -83.711455380000103, 11.988005155634752 ], [ -83.710855380000083, 11.870305155634753 ] ] ], [ [ [ -87.685755380000103, 13.169405155634749 ], [ -87.722255380000092, 13.168905155634747 ], [ -87.723055380000091, 13.214705155634746 ], [ -87.702255380000082, 13.211905155634753 ], [ -87.685755380000103, 13.169405155634749 ] ] ], [ [ [ -87.621255380000093, 13.246805155634746 ], [ -87.660255380000081, 13.250405155634752 ], [ -87.669755380000083, 13.278305155634754 ], [ -87.618955380000102, 13.288905155634751 ], [ -87.621255380000093, 13.246805155634746 ] ] ], [ [ [ -87.571955380000105, 13.368605155634754 ], [ -87.580755380000085, 13.304505155634743 ], [ -87.658355380000103, 13.335805155634745 ], [ -87.635955380000098, 13.370305155634753 ], [ -87.571955380000105, 13.368605155634754 ] ] ], [ [ [ -87.803355380000085, 17.294205155634742 ], [ -87.825055380000094, 17.291705155634745 ], [ -87.826955380000101, 17.40030515563474 ], [ -87.799255380000091, 17.333905155634753 ], [ -87.803355380000085, 17.294205155634742 ] ] ], [ [ [ -87.820555380000087, 17.426905155634742 ], [ -87.901955380000089, 17.389705155634758 ], [ -87.925455380000102, 17.27530515563474 ], [ -87.918355380000094, 17.417205155634761 ], [ -87.819455380000079, 17.550005155634736 ], [ -87.820555380000087, 17.426905155634742 ] ] ], [ [ [ -88.044155380000092, 17.555505155634748 ], [ -88.05835538000008, 17.568005155634737 ], [ -88.07035538000008, 17.63830515563474 ], [ -88.053655380000095, 17.613005155634752 ], [ -88.044155380000092, 17.555505155634748 ] ] ], [ [ [ -88.132555380000099, 17.667205155634761 ], [ -88.167555380000096, 17.669705155634759 ], [ -88.072155380000083, 17.732905155634754 ], [ -88.094755380000095, 17.686405155634745 ], [ -88.132555380000099, 17.667205155634761 ] ] ], [ [ [ -87.89225538000008, 18.042505155634743 ], [ -87.95505538000009, 17.911705155634749 ], [ -88.006155380000081, 17.901905155634736 ], [ -87.853055380000086, 18.164705155634735 ], [ -87.89225538000008, 18.042505155634743 ] ] ], [ [ [ -88.377855380000085, 18.48280515563475 ], [ -88.092555380000078, 18.37350515563476 ], [ -88.282555380000105, 17.623905155634745 ], [ -88.208655380000096, 16.968605155634762 ], [ -88.353055380000086, 16.503105155634742 ], [ -88.741455380000104, 16.218305155634752 ], [ -88.883355380000097, 15.866705155634762 ], [ -88.612255380000079, 15.697505155634744 ], [ -88.551455380000078, 15.940805155634749 ], [ -88.138655380000102, 15.681705155634759 ], [ -87.714455380000089, 15.922805155634748 ], [ -87.470555380000093, 15.78300515563474 ], [ -86.399155380000082, 15.766405155634757 ], [ -85.944455380000079, 15.921905155634747 ], [ -86.008655380000079, 16.025805155634757 ], [ -85.49445538000009, 15.88890515563476 ], [ -84.996955380000088, 15.991305155634748 ], [ -84.597255380000092, 15.77390515563475 ], [ -84.264755380000082, 15.828605155634747 ], [ -83.855555380000084, 15.460005155634761 ], [ -84.209455380000094, 15.549205155634738 ], [ -84.071455380000089, 15.346905155634744 ], [ -83.828955380000082, 15.258605155634754 ], [ -83.956155380000098, 15.404705155634744 ], [ -83.758355380000097, 15.196705155634746 ], [ -83.531455380000097, 15.268905155634755 ], [ -83.568355380000099, 15.157505155634752 ], [ -83.507255380000089, 15.280605155634746 ], [ -83.612355380000082, 15.352605155634748 ], [ -83.386655380000093, 15.252505155634751 ], [ -83.131855380000104, 14.993005155634748 ], [ -83.421455380000083, 14.806105155634754 ], [ -83.186955380000086, 14.323905155634748 ], [ -83.493955380000102, 13.726705155634747 ], [ -83.476955380000078, 12.432805155634753 ], [ -83.631355380000088, 12.474105155634746 ], [ -83.53725538000009, 12.765805155634752 ], [ -83.617855380000094, 12.815005155634751 ], [ -83.676955380000095, 12.050505155634752 ], [ -83.831955380000096, 11.871705155634743 ], [ -83.648955380000103, 11.604705155634747 ], [ -83.8714553800001, 11.314205155634752 ], [ -83.406155380000087, 10.389405155634748 ], [ -82.363655380000097, 9.407205155634742 ], [ -82.248655380000088, 9.006905155634755 ], [ -81.816455380000093, 8.945305155634742 ], [ -81.883955380000089, 9.174405155634744 ], [ -81.510355380000078, 8.793605155634751 ], [ -81.196155380000079, 8.78030515563475 ], [ -80.096755380000104, 9.217205155634744 ], [ -79.625855380000104, 9.594205155634754 ], [ -78.959455380000094, 9.543305155634755 ], [ -79.058055380000098, 9.430905155634747 ], [ -78.035555380000091, 9.230005155634743 ], [ -77.366655380000083, 8.67500515563475 ], [ -77.478355380000096, 8.479705155634747 ], [ -77.198355380000095, 7.999405155634747 ], [ -77.333355380000086, 7.698905155634748 ], [ -77.577255380000082, 7.525005155634744 ], [ -77.746655380000078, 7.722205155634754 ], [ -77.915355380000079, 7.23580515563475 ], [ -78.431155380000092, 8.067205155634753 ], [ -78.257255380000089, 8.101905155634753 ], [ -78.139155380000091, 8.403905155634746 ], [ -78.025855380000081, 8.251705155634752 ], [ -77.779155380000105, 8.155005155634754 ], [ -78.107555380000093, 8.455805155634749 ], [ -78.413055380000088, 8.343605155634748 ], [ -78.507255380000089, 8.616905155634754 ], [ -79.053055380000103, 8.966705155634742 ], [ -78.977755380000104, 9.142005155634749 ], [ -79.697855380000078, 8.866705155634747 ], [ -79.952855380000102, 8.450805155634754 ], [ -80.473655380000082, 8.212805155634754 ], [ -79.989755380000105, 7.516105155634747 ], [ -80.43335538000008, 7.244405155634752 ], [ -80.925355380000099, 7.250005155634753 ], [ -81.058055380000098, 7.873305155634753 ], [ -81.178855380000101, 7.855005155634743 ], [ -81.217855380000088, 7.607205155634745 ], [ -81.496955380000088, 7.698605155634752 ], [ -81.738655380000097, 8.162505155634747 ], [ -82.28725538000009, 8.313305155634751 ], [ -82.721755380000104, 8.317205155634753 ], [ -82.8988553800001, 8.025705155634753 ], [ -83.341655380000105, 8.726905155634753 ], [ -83.484755380000081, 8.703305155634752 ], [ -83.291155380000106, 8.370305155634753 ], [ -83.730855380000094, 8.583005155634751 ], [ -83.624255380000079, 9.035305155634745 ], [ -84.615355380000096, 9.575805155634754 ], [ -84.740355380000096, 9.966705155634742 ], [ -85.243055380000101, 10.204205155634753 ], [ -85.228655380000106, 10.088905155634748 ], [ -84.897255380000104, 9.807505155634743 ], [ -85.14225538000008, 9.589405155634751 ], [ -85.345055380000105, 9.832805155634745 ], [ -85.664455380000078, 9.908605155634746 ], [ -85.861755380000091, 10.368305155634744 ], [ -85.631955380000079, 10.626405155634743 ], [ -85.911455380000092, 10.891105155634747 ], [ -85.666955380000104, 11.053905155634752 ], [ -87.690055380000103, 12.907805155634748 ], [ -87.581455380000079, 13.053305155634746 ], [ -87.418055380000084, 12.915805155634743 ], [ -87.291255380000081, 12.920205155634747 ], [ -87.513055380000083, 13.273605155634755 ], [ -87.400355380000093, 13.413905155634751 ], [ -87.837655380000086, 13.436505155634748 ], [ -87.783955380000094, 13.289405155634753 ], [ -87.937855380000087, 13.156405155634744 ], [ -88.758955380000089, 13.235505155634755 ], [ -89.809155380000078, 13.526105155634752 ], [ -90.492255380000103, 13.900305155634754 ], [ -91.384755380000087, 13.978905155634749 ], [ -92.24585538000008, 14.547205155634742 ], [ -92.065855380000102, 15.077805155634749 ], [ -92.211455380000103, 15.262205155634746 ], [ -91.729155380000094, 16.075005155634742 ], [ -90.441955380000081, 16.088305155634757 ], [ -90.406455380000097, 16.416405155634735 ], [ -91.437555380000106, 17.241105155634742 ], [ -90.983955380000083, 17.256105155634756 ], [ -90.98245538000009, 17.820605155634738 ], [ -89.141955380000098, 17.818905155634738 ], [ -89.0358553800001, 18.005805155634746 ], [ -88.841455380000099, 17.903905155634746 ], [ -88.377855380000085, 18.48280515563475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 81, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Caribbean" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.907255380000095, 10.729405155634751 ], [ -63.998055380000096, 10.768005155634754 ], [ -63.996655380000078, 10.802205155634752 ], [ -63.906655380000103, 10.777505155634742 ], [ -63.907255380000095, 10.729405155634751 ] ] ], [ [ [ -60.923055380000079, 10.797205155634742 ], [ -61.008055380000087, 10.140505155634742 ], [ -61.918055380000084, 10.042805155634753 ], [ -61.458355380000086, 10.278305155634754 ], [ -61.473655380000082, 10.597805155634745 ], [ -61.66225538000009, 10.709205155634749 ], [ -60.923055380000079, 10.797205155634742 ] ] ], [ [ [ -65.268655380000098, 10.881105155634742 ], [ -65.393355380000088, 10.906905155634746 ], [ -65.417255380000086, 10.924705155634754 ], [ -65.211955380000092, 10.956105155634745 ], [ -65.268655380000098, 10.881105155634742 ] ] ], [ [ [ -63.804755380000103, 11.021405155634753 ], [ -64.055555380000101, 10.857205155634745 ], [ -64.405855380000105, 10.967505155634754 ], [ -64.218355380000105, 11.088005155634747 ], [ -64.040355380000079, 10.988605155634744 ], [ -63.881155380000081, 11.176905155634742 ], [ -63.804755380000103, 11.021405155634753 ] ] ], [ [ [ -60.639455380000101, 11.203005155634742 ], [ -60.797455380000088, 11.141705155634753 ], [ -60.847455380000099, 11.15830515563475 ], [ -60.526655380000079, 11.346105155634746 ], [ -60.639455380000101, 11.203005155634742 ] ] ], [ [ [ -66.648355380000083, 11.758605155634754 ], [ -66.666655380000094, 11.756405155634752 ], [ -66.610555380000079, 11.821105155634754 ], [ -66.586455380000103, 11.771705155634749 ], [ -66.648355380000083, 11.758605155634754 ] ] ], [ [ [ -66.115855380000085, 11.773605155634755 ], [ -66.126755380000105, 11.770505155634751 ], [ -66.193055380000089, 11.817205155634753 ], [ -66.108655380000101, 11.825505155634744 ], [ -66.115855380000085, 11.773605155634755 ] ] ], [ [ [ -64.572255380000087, 11.805505155634748 ], [ -64.643955380000079, 11.824705155634746 ], [ -64.615055380000086, 11.895505155634751 ], [ -64.553655380000095, 11.848905155634753 ], [ -64.572255380000087, 11.805505155634748 ] ] ], [ [ [ -83.048955380000081, 12.145505155634751 ], [ -83.056555380000106, 12.184305155634746 ], [ -83.022555380000085, 12.184905155634752 ], [ -83.022255380000104, 12.174705155634754 ], [ -83.048955380000081, 12.145505155634751 ] ] ], [ [ [ -61.746955380000088, 11.997505155634755 ], [ -61.72475538000009, 12.172205155634742 ], [ -61.611955380000097, 12.231105155634751 ], [ -61.628655380000083, 12.048005155634755 ], [ -61.746955380000088, 11.997505155634755 ] ] ], [ [ [ -68.195255380000106, 12.221105155634746 ], [ -68.251155380000085, 12.020505155634751 ], [ -68.416155380000106, 12.256905155634755 ], [ -68.3697553800001, 12.306905155634752 ], [ -68.195255380000106, 12.221105155634746 ] ] ], [ [ [ -82.963655380000091, 12.289405155634753 ], [ -82.983755380000105, 12.298905155634742 ], [ -82.98415538000009, 12.312105155634754 ], [ -82.971455380000094, 12.312505155634753 ], [ -82.963655380000091, 12.289405155634753 ] ] ], [ [ [ -61.579955380000087, 12.295505155634743 ], [ -61.589155380000079, 12.298005155634755 ], [ -61.578855380000078, 12.32310515563475 ], [ -61.572455380000093, 12.308905155634747 ], [ -61.579955380000087, 12.295505155634743 ] ] ], [ [ [ -68.965555380000097, 12.198905155634748 ], [ -68.824155380000093, 12.160305155634745 ], [ -68.746955380000088, 12.040305155634755 ], [ -69.062455380000102, 12.188305155634751 ], [ -69.16365538000008, 12.366405155634752 ], [ -68.965555380000097, 12.198905155634748 ] ] ], [ [ [ -61.428355380000085, 12.453605155634747 ], [ -61.496955380000088, 12.443605155634742 ], [ -61.434455380000088, 12.529205155634742 ], [ -61.419455380000102, 12.507505155634746 ], [ -61.428355380000085, 12.453605155634747 ] ] ], [ [ [ -81.710255380000092, 12.490805155634746 ], [ -81.719755380000095, 12.55000515563475 ], [ -81.688355380000104, 12.59110515563475 ], [ -81.690555380000092, 12.533605155634746 ], [ -81.710255380000092, 12.490805155634746 ] ] ], [ [ [ -61.416955380000104, 12.590305155634752 ], [ -61.443855380000088, 12.584405155634755 ], [ -61.454155380000088, 12.593905155634744 ], [ -61.425855380000087, 12.61250515563475 ], [ -61.416955380000104, 12.590305155634752 ] ] ], [ [ [ -69.876155380000085, 12.411705155634749 ], [ -70.059455380000088, 12.538105155634753 ], [ -70.063055380000094, 12.628605155634745 ], [ -69.9322553800001, 12.528105155634748 ], [ -69.876155380000085, 12.411705155634749 ] ] ], [ [ [ -61.32805538000008, 12.687805155634749 ], [ -61.347755380000081, 12.700305155634751 ], [ -61.310555380000096, 12.735005155634752 ], [ -61.305855380000082, 12.714205155634744 ], [ -61.32805538000008, 12.687805155634749 ] ] ], [ [ [ -61.216655380000105, 12.998105155634747 ], [ -61.252255380000094, 12.988605155634744 ], [ -61.199755380000084, 13.044705155634745 ], [ -61.197255380000087, 13.033605155634746 ], [ -61.216655380000105, 12.998105155634747 ] ] ], [ [ [ -59.510255380000103, 13.055005155634746 ], [ -59.628655380000083, 13.103305155634743 ], [ -59.6411553800001, 13.331405155634755 ], [ -59.429155380000083, 13.165005155634745 ], [ -59.510255380000103, 13.055005155634746 ] ] ], [ [ [ -81.365555380000103, 13.32310515563475 ], [ -81.389455380000101, 13.335005155634747 ], [ -81.352555380000098, 13.378105155634742 ], [ -81.349655380000087, 13.333305155634747 ], [ -81.365555380000103, 13.32310515563475 ] ] ], [ [ [ -61.173055380000079, 13.132505155634746 ], [ -61.281355380000093, 13.207805155634745 ], [ -61.177255380000105, 13.384205155634746 ], [ -61.120255380000089, 13.307505155634743 ], [ -61.173055380000079, 13.132505155634746 ] ] ], [ [ [ -60.90025538000009, 13.778305155634754 ], [ -61.074455380000103, 13.801905155634742 ], [ -60.936355380000094, 14.109205155634754 ], [ -60.878655380000083, 13.975805155634745 ], [ -60.90025538000009, 13.778305155634754 ] ] ], [ [ [ -82.750855380000104, 14.353905155634749 ], [ -82.789755380000088, 14.375005155634753 ], [ -82.733655380000101, 14.418905155634747 ], [ -82.721455380000094, 14.377205155634755 ], [ -82.750855380000104, 14.353905155634749 ] ] ], [ [ [ -60.817255380000091, 14.476105155634755 ], [ -61.033855380000091, 14.465805155634754 ], [ -61.226655380000096, 14.832205155634753 ], [ -61.034455380000082, 14.829205155634753 ], [ -60.817255380000091, 14.476105155634755 ] ] ], [ [ [ -61.280255380000085, 15.23750515563475 ], [ -61.374155380000104, 15.202505155634753 ], [ -61.468055380000095, 15.628005155634739 ], [ -61.26725538000008, 15.516705155634739 ], [ -61.280255380000085, 15.23750515563475 ] ] ], [ [ [ -63.636755380000096, 15.710605155634752 ], [ -63.633755380000082, 15.692805155634758 ], [ -63.642655380000093, 15.704705155634755 ], [ -63.636755380000096, 15.710605155634752 ] ] ], [ [ [ -61.245555380000098, 15.871705155634757 ], [ -61.329455380000098, 15.928605155634742 ], [ -61.266955380000098, 16.015005155634739 ], [ -61.186955380000086, 15.921105155634748 ], [ -61.245555380000098, 15.871705155634757 ] ] ], [ [ [ -86.882655380000102, 16.087405155634755 ], [ -86.954155380000088, 16.069405155634755 ], [ -86.991655380000083, 16.087205155634749 ], [ -86.876155380000085, 16.121705155634757 ], [ -86.882655380000102, 16.087405155634755 ] ] ], [ [ [ -61.03725538000009, 16.311105155634735 ], [ -61.086655380000082, 16.295805155634739 ], [ -60.988655380000097, 16.34610515563476 ], [ -60.990855380000085, 16.340805155634754 ], [ -61.03725538000009, 16.311105155634735 ] ] ], [ [ [ -86.598755380000085, 16.29700515563475 ], [ -86.410255380000081, 16.42170515563474 ], [ -86.263355380000093, 16.423305155634736 ], [ -86.376955380000084, 16.39920515563476 ], [ -86.598755380000085, 16.29700515563475 ] ] ], [ [ [ -85.944755380000089, 16.40970515563474 ], [ -85.90025538000009, 16.494705155634747 ], [ -85.835555380000102, 16.498905155634745 ], [ -85.87115538000009, 16.455805155634735 ], [ -85.944755380000089, 16.40970515563474 ] ] ], [ [ [ -61.346155380000084, 16.334205155634734 ], [ -61.205555380000078, 16.267205155634755 ], [ -61.567055380000085, 16.226905155634753 ], [ -61.695055380000099, 15.949205155634743 ], [ -61.783655380000084, 16.333005155634751 ], [ -61.541855380000101, 16.290205155634752 ], [ -61.460355380000095, 16.514205155634741 ], [ -61.346155380000084, 16.334205155634734 ] ] ], [ [ [ -62.165555380000086, 16.67170515563474 ], [ -62.236655380000087, 16.711905155634739 ], [ -62.201955380000101, 16.813605155634761 ], [ -62.146355380000102, 16.746705155634757 ], [ -62.165555380000086, 16.67170515563474 ] ] ], [ [ [ -61.686655380000104, 17.024405155634739 ], [ -61.829155380000088, 16.996905155634735 ], [ -61.887255380000084, 17.105305155634753 ], [ -61.794455380000102, 17.163305155634745 ], [ -61.686655380000104, 17.024405155634739 ] ] ], [ [ [ -62.552755380000093, 17.094205155634754 ], [ -62.621955380000088, 17.111405155634756 ], [ -62.59975538000009, 17.197205155634762 ], [ -62.542455380000092, 17.182205155634747 ], [ -62.552755380000093, 17.094205155634754 ] ] ], [ [ [ -62.701655380000091, 17.336905155634739 ], [ -62.625255380000084, 17.22080515563475 ], [ -62.863855380000103, 17.370805155634756 ], [ -62.817455380000098, 17.410805155634748 ], [ -62.701655380000091, 17.336905155634739 ] ] ], [ [ [ -83.946655380000095, 17.405305155634736 ], [ -83.956155380000098, 17.40860515563476 ], [ -83.955255380000096, 17.417805155634753 ], [ -83.944455380000079, 17.414205155634747 ], [ -83.946655380000095, 17.405305155634736 ] ] ], [ [ [ -83.910555380000091, 17.40970515563474 ], [ -83.922755380000098, 17.409205155634751 ], [ -83.926355380000103, 17.416705155634745 ], [ -83.909955380000099, 17.418605155634751 ], [ -83.910555380000091, 17.40970515563474 ] ] ], [ [ [ -62.961155380000093, 17.460805155634759 ], [ -62.995355380000092, 17.489705155634752 ], [ -62.996655380000078, 17.520505155634751 ], [ -62.938655380000085, 17.490305155634744 ], [ -62.961155380000093, 17.460805155634759 ] ] ], [ [ [ -71.532255380000095, 17.540305155634755 ], [ -71.522255380000104, 17.615305155634744 ], [ -71.4630553800001, 17.581905155634743 ], [ -71.493055380000101, 17.556405155634749 ], [ -71.532255380000095, 17.540305155634755 ] ] ], [ [ [ -61.729155380000094, 17.608605155634748 ], [ -61.853055380000086, 17.583005155634751 ], [ -61.873055380000096, 17.703905155634757 ], [ -61.78725538000009, 17.700505155634758 ], [ -61.729155380000094, 17.608605155634748 ] ] ], [ [ [ -64.761955380000103, 17.77420515563476 ], [ -64.696655380000095, 17.745505155634746 ], [ -64.657755380000083, 17.769205155634737 ], [ -64.560255380000086, 17.748305155634753 ], [ -64.895955380000089, 17.678105155634753 ], [ -64.761955380000103, 17.77420515563476 ] ] ], [ [ [ -62.811455380000098, 17.88830515563474 ], [ -62.841155380000089, 17.87920515563475 ], [ -62.86915538000008, 17.92970515563475 ], [ -62.790855380000096, 17.912505155634747 ], [ -62.811455380000098, 17.88830515563474 ] ] ], [ [ [ -73.584755380000104, 18.056905155634738 ], [ -73.667555380000096, 18.057205155634747 ], [ -73.706155380000098, 18.101405155634737 ], [ -73.598055380000091, 18.089705155634746 ], [ -73.584755380000104, 18.056905155634738 ] ] ], [ [ [ -67.880555380000089, 18.048305155634736 ], [ -67.936955380000086, 18.081405155634755 ], [ -67.930855380000082, 18.109705155634757 ], [ -67.846755380000104, 18.10750515563474 ], [ -67.880555380000089, 18.048305155634736 ] ] ], [ [ [ -63.028355380000079, 18.015505155634756 ], [ -63.116155380000095, 18.042805155634753 ], [ -63.146655380000084, 18.071905155634752 ], [ -63.019155380000086, 18.117805155634741 ], [ -63.028355380000079, 18.015505155634756 ] ] ], [ [ [ -65.441455380000093, 18.090305155634738 ], [ -65.5803553800001, 18.114705155634752 ], [ -65.301155380000097, 18.147805155634742 ], [ -65.337855380000093, 18.11690515563474 ], [ -65.441455380000093, 18.090305155634738 ] ] ], [ [ [ -68.574455380000103, 18.129405155634757 ], [ -68.731955380000102, 18.120005155634757 ], [ -68.783955380000094, 18.195005155634746 ], [ -68.597855380000084, 18.161405155634739 ], [ -68.574455380000103, 18.129405155634757 ] ] ], [ [ [ -63.156655380000103, 18.165005155634745 ], [ -63.053355380000085, 18.259205155634746 ], [ -62.972455380000099, 18.276705155634758 ], [ -62.993055380000101, 18.227205155634735 ], [ -63.156655380000103, 18.165005155634745 ] ] ], [ [ [ -65.242855380000094, 18.302205155634752 ], [ -65.275355380000093, 18.276905155634736 ], [ -65.338955380000101, 18.346705155634751 ], [ -65.262555380000094, 18.323305155634742 ], [ -65.242855380000094, 18.302205155634752 ] ] ], [ [ [ -64.665255380000104, 18.332205155634753 ], [ -64.704455380000098, 18.307505155634757 ], [ -64.790255380000104, 18.330805155634735 ], [ -64.731955380000102, 18.371905155634735 ], [ -64.665255380000104, 18.332205155634753 ] ] ], [ [ [ -64.841655380000105, 18.312505155634753 ], [ -64.878055380000092, 18.310505155634743 ], [ -65.026955380000089, 18.362805155634746 ], [ -64.903855380000095, 18.364705155634752 ], [ -64.841655380000105, 18.312505155634753 ] ] ], [ [ [ -75.003055380000092, 18.410805155634748 ], [ -75.011955380000103, 18.395305155634745 ], [ -75.031355380000093, 18.414205155634747 ], [ -75.003055380000092, 18.410805155634748 ] ] ], [ [ [ -64.6608553800001, 18.383905155634736 ], [ -64.652555380000081, 18.441105155634759 ], [ -64.55835538000008, 18.451905155634748 ], [ -64.567455380000098, 18.418305155634741 ], [ -64.6608553800001, 18.383905155634736 ] ] ], [ [ [ -64.422455380000088, 18.438605155634761 ], [ -64.41225538000009, 18.506105155634756 ], [ -64.322255380000087, 18.506105155634756 ], [ -64.330555380000078, 18.494205155634759 ], [ -64.422455380000088, 18.438605155634761 ] ] ], [ [ [ -66.996655380000078, 18.505005155634748 ], [ -65.89055538000008, 18.452205155634758 ], [ -65.603055380000086, 18.23250515563474 ], [ -65.937255380000096, 17.966705155634756 ], [ -67.187255380000096, 17.932505155634757 ], [ -67.2661553800001, 18.368005155634748 ], [ -66.996655380000078, 18.505005155634748 ] ] ], [ [ [ -77.688655380000085, 18.486405155634756 ], [ -76.94535538000008, 18.394405155634743 ], [ -76.341655380000105, 18.149705155634749 ], [ -76.221155380000084, 17.904205155634756 ], [ -76.836155380000093, 17.986905155634744 ], [ -76.948355380000095, 17.829405155634745 ], [ -77.131955380000079, 17.87890515563474 ], [ -77.182555380000082, 17.69800515563476 ], [ -78.373955380000098, 18.251105155634761 ], [ -78.213955380000101, 18.45080515563474 ], [ -77.688655380000085, 18.486405155634756 ] ] ], [ [ [ -73.739455380000095, 18.584205155634734 ], [ -73.795355380000103, 18.596405155634741 ], [ -73.798055380000079, 18.624705155634743 ], [ -73.715355380000091, 18.624405155634761 ], [ -73.739455380000095, 18.584205155634734 ] ] ], [ [ [ -64.311355380000094, 18.746105155634737 ], [ -64.269955380000084, 18.696405155634736 ], [ -64.408055380000093, 18.735805155634736 ], [ -64.407255380000095, 18.74190515563474 ], [ -64.311355380000094, 18.746105155634737 ] ] ], [ [ [ -72.815555380000092, 18.698905155634762 ], [ -73.218055380000095, 18.834205155634734 ], [ -73.300055380000089, 18.927205155634752 ], [ -72.857255380000083, 18.835005155634761 ], [ -72.815555380000092, 18.698905155634762 ] ] ], [ [ [ -81.097255380000092, 19.308905155634747 ], [ -81.266955380000098, 19.264705155634758 ], [ -81.401155380000091, 19.288305155634745 ], [ -81.254455380000081, 19.353905155634735 ], [ -81.097255380000092, 19.308905155634747 ] ] ], [ [ [ -80.097455380000099, 19.654205155634756 ], [ -80.075855380000093, 19.697505155634744 ], [ -79.966655380000105, 19.707205155634753 ], [ -79.969155380000103, 19.69970515563476 ], [ -80.097455380000099, 19.654205155634756 ] ] ], [ [ [ -79.866355380000101, 19.686905155634761 ], [ -79.893355380000088, 19.693305155634746 ], [ -79.7327553800001, 19.748605155634735 ], [ -79.771155380000096, 19.718905155634744 ], [ -79.866355380000101, 19.686905155634761 ] ] ], [ [ [ -72.673655380000099, 19.916705155634745 ], [ -71.719755380000095, 19.697505155634744 ], [ -71.66395538000009, 19.895305155634745 ], [ -70.998055380000096, 19.931105155634739 ], [ -70.288055380000088, 19.648305155634759 ], [ -69.946155380000079, 19.676105155634744 ], [ -69.753655380000083, 19.289405155634753 ], [ -69.156755380000078, 19.292805155634753 ], [ -69.230055380000096, 19.180305155634741 ], [ -69.614755380000105, 19.225305155634757 ], [ -69.623355380000106, 19.089205155634758 ], [ -68.921155380000101, 19.028905155634746 ], [ -68.323655380000105, 18.59440515563476 ], [ -68.649755380000101, 18.204205155634739 ], [ -68.895355380000098, 18.396405155634753 ], [ -69.881655380000097, 18.46940515563476 ], [ -70.154155380000105, 18.233005155634757 ], [ -70.510855380000095, 18.194705155634736 ], [ -70.690055380000103, 18.433905155634747 ], [ -71.07975538000008, 18.301105155634744 ], [ -71.422555380000091, 17.601905155634753 ], [ -72.069155380000097, 18.239705155634752 ], [ -72.819155380000097, 18.13830515563474 ], [ -73.451455380000084, 18.256905155634755 ], [ -73.881655380000097, 18.022805155634742 ], [ -74.446655380000095, 18.341905155634734 ], [ -74.421155380000101, 18.612505155634736 ], [ -74.268055380000078, 18.665805155634743 ], [ -72.739755380000105, 18.424205155634738 ], [ -72.3500553800001, 18.530305155634736 ], [ -72.32805538000008, 18.683305155634756 ], [ -72.800355380000099, 19.03300515563474 ], [ -72.7233553800001, 19.455005155634737 ], [ -73.465355380000091, 19.687805155634734 ], [ -73.154755380000097, 19.922205155634757 ], [ -72.673655380000099, 19.916705155634745 ] ] ], [ [ [ -72.628355380000102, 19.986905155634744 ], [ -72.876155380000085, 20.025005155634759 ], [ -72.956455380000079, 20.056705155634759 ], [ -72.811955380000086, 20.092205155634744 ], [ -72.628355380000102, 19.986905155634744 ] ] ], [ [ [ -78.327855380000102, 20.51360515563475 ], [ -78.391455380000082, 20.540805155634743 ], [ -78.458355380000086, 20.605505155634759 ], [ -78.345855380000103, 20.569405155634755 ], [ -78.327855380000102, 20.51360515563475 ] ] ], [ [ [ -78.381955380000079, 20.637805155634751 ], [ -78.41225538000009, 20.647205155634751 ], [ -78.402855380000091, 20.675805155634762 ], [ -78.389455380000101, 20.676705155634735 ], [ -78.381955380000079, 20.637805155634751 ] ] ], [ [ [ -78.441755380000103, 20.710505155634749 ], [ -78.513355380000093, 20.690005155634751 ], [ -78.547555380000091, 20.703605155634747 ], [ -78.458655380000096, 20.731705155634742 ], [ -78.441755380000103, 20.710505155634749 ] ] ], [ [ [ -78.76755538000009, 20.706105155634745 ], [ -78.815555380000092, 20.736105155634746 ], [ -78.821955380000105, 20.756905155634755 ], [ -78.763655380000102, 20.730505155634759 ], [ -78.76755538000009, 20.706105155634745 ] ] ], [ [ [ -75.487255380000079, 20.728905155634735 ], [ -75.571155380000079, 20.755805155634746 ], [ -75.57805538000008, 20.781105155634762 ], [ -75.515055380000092, 20.791905155634751 ], [ -75.487255380000079, 20.728905155634735 ] ] ], [ [ [ -78.847555380000102, 20.771705155634734 ], [ -78.935855380000106, 20.789405155634753 ], [ -78.965855380000079, 20.810005155634755 ], [ -78.93165538000008, 20.834205155634734 ], [ -78.847555380000102, 20.771705155634734 ] ] ], [ [ [ -78.977855380000079, 20.839405155634736 ], [ -79.051155380000097, 20.871705155634757 ], [ -79.077555380000092, 20.893905155634755 ], [ -78.969755380000095, 20.874205155634755 ], [ -78.977855380000079, 20.839405155634736 ] ] ], [ [ [ -79.084455380000094, 20.898305155634759 ], [ -79.118055380000101, 20.907805155634762 ], [ -79.225555380000088, 21.000505155634741 ], [ -79.176755380000088, 21.008605155634754 ], [ -79.084455380000094, 20.898305155634759 ] ] ], [ [ [ -79.406455380000097, 21.104705155634761 ], [ -79.442855380000083, 21.110005155634738 ], [ -79.451155380000102, 21.122805155634737 ], [ -79.402555380000081, 21.121105155634737 ], [ -79.406455380000097, 21.104705155634761 ] ] ], [ [ [ -79.302255380000105, 21.064405155634759 ], [ -79.342555380000078, 21.072205155634762 ], [ -79.384155380000095, 21.118305155634758 ], [ -79.341455380000099, 21.121105155634737 ], [ -79.302255380000105, 21.064405155634759 ] ] ], [ [ [ -73.03725538000009, 21.139405155634748 ], [ -73.151655380000079, 20.97220515563474 ], [ -73.685855380000106, 20.935505155634743 ], [ -73.536355380000089, 21.183305155634756 ], [ -73.261155380000105, 21.134205155634746 ], [ -73.024455380000092, 21.332505155634735 ], [ -73.03725538000009, 21.139405155634748 ] ] ], [ [ [ -71.140255380000099, 21.431905155634738 ], [ -71.1505553800001, 21.47080515563475 ], [ -71.135555380000085, 21.511105155634752 ], [ -71.128055380000092, 21.44140515563474 ], [ -71.140255380000099, 21.431905155634738 ] ] ], [ [ [ -72.924755380000079, 21.483605155634748 ], [ -73.038055380000088, 21.435005155634755 ], [ -73.067455380000098, 21.507805155634756 ], [ -72.978055380000086, 21.540505155634762 ], [ -72.924755380000079, 21.483605155634748 ] ] ], [ [ [ -81.530855380000105, 21.600305155634757 ], [ -81.55695538000009, 21.622805155634737 ], [ -81.366955380000093, 21.711905155634739 ], [ -81.421955380000099, 21.656705155634754 ], [ -81.530855380000105, 21.600305155634757 ] ] ], [ [ [ -72.460555380000102, 21.629705155634738 ], [ -72.456655380000086, 21.69970515563476 ], [ -72.43365538000009, 21.713305155634757 ], [ -72.428655380000095, 21.692805155634758 ], [ -72.460555380000102, 21.629705155634738 ] ] ], [ [ [ -71.468855380000093, 21.655005155634754 ], [ -71.534955380000099, 21.71940515563476 ], [ -71.533355380000103, 21.734405155634747 ], [ -71.46275538000009, 21.72080515563475 ], [ -71.468855380000093, 21.655005155634754 ] ] ], [ [ [ -71.657755380000083, 21.823305155634742 ], [ -71.658855380000091, 21.739705155634752 ], [ -71.850555380000088, 21.84580515563475 ], [ -71.695055380000099, 21.838905155634748 ], [ -71.657755380000083, 21.823305155634742 ] ] ], [ [ [ -72.262255380000084, 21.751105155634761 ], [ -72.300855380000087, 21.758905155634736 ], [ -72.327255380000082, 21.855805155634741 ], [ -72.247755380000086, 21.795505155634757 ], [ -72.262255380000084, 21.751105155634761 ] ] ], [ [ [ -82.545355380000103, 21.571105155634754 ], [ -82.897255380000104, 21.432805155634739 ], [ -83.076655380000091, 21.464405155634736 ], [ -83.193055380000089, 21.621405155634747 ], [ -82.937255380000096, 21.580005155634737 ], [ -83.089455380000089, 21.785505155634738 ], [ -82.97445538000008, 21.942805155634758 ], [ -82.715855380000079, 21.890305155634749 ], [ -82.545355380000103, 21.571105155634754 ] ] ], [ [ [ -71.884155380000095, 21.84720515563474 ], [ -72.029155380000105, 21.905005155634754 ], [ -72.033355380000103, 21.942805155634758 ], [ -71.91225538000009, 21.943305155634746 ], [ -71.884155380000095, 21.84720515563474 ] ] ], [ [ [ -77.915055380000098, 22.094705155634742 ], [ -77.653355380000079, 22.069705155634736 ], [ -77.638355380000093, 21.953005155634756 ], [ -77.705555380000078, 21.90860515563476 ], [ -77.915055380000098, 22.094705155634742 ] ] ], [ [ [ -77.846455380000094, 22.106405155634761 ], [ -78.044155380000092, 22.186705155634755 ], [ -77.99755538000008, 22.285305155634759 ], [ -77.859455380000099, 22.218005155634742 ], [ -77.846455380000094, 22.106405155634761 ] ] ], [ [ [ -77.777255380000099, 22.195005155634746 ], [ -77.771655380000084, 22.168005155634759 ], [ -77.8500553800001, 22.294705155634759 ], [ -77.836155380000093, 22.290005155634745 ], [ -77.777255380000099, 22.195005155634746 ] ] ], [ [ [ -78.118655380000092, 22.413905155634737 ], [ -78.019455380000096, 22.26190515563475 ], [ -78.311455380000098, 22.403905155634746 ], [ -78.208655380000096, 22.436905155634761 ], [ -78.118655380000092, 22.413905155634737 ] ] ], [ [ [ -72.829155380000088, 22.382205155634736 ], [ -72.781355380000093, 22.284205155634751 ], [ -73.164755380000088, 22.370805155634756 ], [ -73.081655380000086, 22.443605155634756 ], [ -72.829155380000088, 22.382205155634736 ] ] ], [ [ [ -78.341455380000099, 22.533905155634741 ], [ -78.280355380000088, 22.436405155634745 ], [ -78.696655380000095, 22.514705155634758 ], [ -78.673055380000079, 22.558005155634746 ], [ -78.341455380000099, 22.533905155634741 ] ] ], [ [ [ -73.610255380000098, 22.579705155634755 ], [ -73.620555380000098, 22.599705155634737 ], [ -73.5983553800001, 22.614705155634752 ], [ -73.593355380000105, 22.606105155634751 ], [ -73.610255380000098, 22.579705155634755 ] ] ], [ [ [ -73.46275538000009, 22.601905155634753 ], [ -73.471155380000084, 22.597505155634749 ], [ -73.551355380000103, 22.612205155634754 ], [ -73.497755380000086, 22.618905155634749 ], [ -73.46275538000009, 22.601905155634753 ] ] ], [ [ [ -74.377755380000082, 22.538905155634737 ], [ -74.379455380000081, 22.57640515563476 ], [ -74.280055380000078, 22.662505155634747 ], [ -74.277555380000081, 22.647805155634742 ], [ -74.377755380000082, 22.538905155634737 ] ] ], [ [ [ -78.97645538000009, 22.637505155634742 ], [ -79.025855380000081, 22.651105155634738 ], [ -79.054455380000093, 22.665305155634755 ], [ -78.968955380000097, 22.669205155634742 ], [ -78.97645538000009, 22.637505155634742 ] ] ], [ [ [ -73.847255380000092, 22.723605155634758 ], [ -73.867555380000084, 22.46940515563476 ], [ -74.281355380000093, 22.173005155634755 ], [ -73.867755380000091, 22.51220515563476 ], [ -74.037755380000078, 22.622505155634755 ], [ -73.847255380000092, 22.723605155634758 ] ] ], [ [ [ -79.323055380000085, 22.614705155634752 ], [ -79.627555380000103, 22.777205155634746 ], [ -79.632555380000099, 22.800005155634736 ], [ -79.576155380000102, 22.810005155634755 ], [ -79.323055380000085, 22.614705155634752 ] ] ], [ [ [ -74.073655380000105, 22.663305155634745 ], [ -74.272555380000085, 22.714405155634736 ], [ -74.343855380000093, 22.835005155634761 ], [ -74.017755380000096, 22.716405155634746 ], [ -74.073655380000105, 22.663305155634745 ] ] ], [ [ [ -79.891955380000098, 22.92830515563476 ], [ -79.942855380000083, 22.920805155634739 ], [ -79.958055380000104, 22.948205155634739 ], [ -79.883055380000087, 22.965305155634738 ], [ -79.891955380000098, 22.92830515563476 ] ] ], [ [ [ -80.232855380000103, 22.995005155634757 ], [ -80.234255380000093, 22.956405155634755 ], [ -80.348655380000082, 22.982405155634737 ], [ -80.249455380000086, 23.011105155634752 ], [ -80.232855380000103, 22.995005155634757 ] ] ], [ [ [ -80.049455380000097, 23.026105155634738 ], [ -80.077255380000082, 23.041905155634751 ], [ -80.076655380000091, 23.07440515563475 ], [ -80.05835538000008, 23.065005155634751 ], [ -80.049455380000097, 23.026105155634738 ] ] ], [ [ [ -73.728855380000084, 23.070505155634734 ], [ -73.784755380000092, 23.067505155634748 ], [ -73.813655380000085, 23.096905155634758 ], [ -73.665055380000098, 23.088905155634748 ], [ -73.728855380000084, 23.070505155634734 ] ] ], [ [ [ -80.146455380000106, 23.070305155634756 ], [ -80.168655380000104, 23.056405155634749 ], [ -80.224155380000099, 23.099405155634756 ], [ -80.199455380000103, 23.121905155634735 ], [ -80.146455380000106, 23.070305155634756 ] ] ], [ [ [ -80.927555380000086, 23.125505155634741 ], [ -80.973655380000082, 23.10750515563474 ], [ -80.847255380000092, 23.17940515563474 ], [ -80.797255380000081, 23.150505155634747 ], [ -80.927555380000086, 23.125505155634741 ] ] ], [ [ [ -82.003955380000093, 23.186405155634745 ], [ -81.500855380000104, 23.055505155634748 ], [ -81.226955380000078, 23.161705155634749 ], [ -81.134755380000087, 23.023005155634749 ], [ -80.633055380000087, 23.098305155634748 ], [ -80.278655380000089, 22.905305155634736 ], [ -80.033355380000103, 22.95110515563475 ], [ -79.335855380000083, 22.40690515563476 ], [ -78.573355380000095, 22.321905155634752 ], [ -77.341155380000089, 21.636105155634752 ], [ -77.610055380000091, 21.883005155634734 ], [ -77.543055380000084, 21.918605155634751 ], [ -77.140055380000092, 21.652805155634738 ], [ -77.364455380000095, 21.61720515563475 ], [ -77.258955380000089, 21.473605155634758 ], [ -77.061955380000086, 21.585005155634761 ], [ -76.896155380000096, 21.306405155634749 ], [ -75.707255380000106, 21.121905155634735 ], [ -75.57975538000008, 21.006905155634755 ], [ -75.736755380000091, 20.696905155634752 ], [ -74.955555380000078, 20.685305155634737 ], [ -74.132955380000084, 20.192505155634748 ], [ -75.1214553800001, 19.887505155634742 ], [ -75.092855380000088, 20.056405155634749 ], [ -75.355555380000084, 19.875505155634741 ], [ -76.248955380000098, 19.99080515563476 ], [ -77.722555380000102, 19.832805155634745 ], [ -77.115855380000085, 20.365005155634762 ], [ -77.236455380000081, 20.663005155634735 ], [ -78.050355380000099, 20.69970515563476 ], [ -78.495055380000082, 21.030305155634736 ], [ -78.750355380000087, 21.639205155634741 ], [ -79.231955380000102, 21.541105155634753 ], [ -79.987855380000099, 21.723605155634758 ], [ -80.491955380000093, 22.177205155634752 ], [ -80.8911553800001, 22.039705155634735 ], [ -81.823055380000085, 22.183605155634737 ], [ -82.163055380000088, 22.398305155634759 ], [ -81.648955380000103, 22.491405155634752 ], [ -81.885055380000097, 22.680805155634758 ], [ -82.763955380000084, 22.700505155634758 ], [ -83.370055380000082, 22.200005155634742 ], [ -83.931455380000102, 22.161105155634758 ], [ -84.026155380000091, 21.915005155634745 ], [ -84.501155380000085, 21.765505155634756 ], [ -84.495055380000082, 21.934405155634735 ], [ -84.95335538000009, 21.860005155634738 ], [ -84.3380553800001, 22.01220515563476 ], [ -84.4005553800001, 22.332805155634745 ], [ -84.076955380000101, 22.660505155634738 ], [ -83.229155380000094, 22.998905155634745 ], [ -82.003955380000093, 23.186405155634745 ] ] ], [ [ [ -80.493055380000101, 23.188005155634741 ], [ -80.496955380000088, 23.164705155634735 ], [ -80.57975538000008, 23.176105155634744 ], [ -80.55865538000009, 23.203605155634747 ], [ -80.493055380000101, 23.188005155634741 ] ] ], [ [ [ -75.551155380000097, 23.431405155634749 ], [ -75.525055380000083, 23.404405155634734 ], [ -75.650955380000084, 23.454405155634745 ], [ -75.623855380000094, 23.455505155634754 ], [ -75.551155380000097, 23.431405155634749 ] ] ], [ [ [ -75.021355380000102, 23.106405155634761 ], [ -74.850255380000078, 23.00420515563475 ], [ -74.830555380000078, 22.860805155634736 ], [ -75.168655380000104, 23.142805155634747 ], [ -75.068355380000099, 23.111905155634744 ], [ -75.307555380000082, 23.667805155634753 ], [ -75.021355380000102, 23.106405155634761 ] ] ], [ [ [ -75.771955380000094, 23.499705155634743 ], [ -75.991155380000095, 23.599405155634756 ], [ -76.028655380000089, 23.672505155634738 ], [ -75.918655380000104, 23.626405155634743 ], [ -75.771955380000094, 23.499705155634743 ] ] ], [ [ [ -74.781955380000085, 23.683905155634747 ], [ -74.819755380000089, 23.639405155634748 ], [ -74.948655380000105, 23.685305155634737 ], [ -74.801955380000095, 23.718305155634752 ], [ -74.781955380000085, 23.683905155634747 ] ] ], [ [ [ -76.363855380000103, 24.072205155634762 ], [ -76.321655380000095, 23.972805155634759 ], [ -76.398355380000083, 24.113305155634762 ], [ -76.363855380000103, 24.072205155634762 ] ] ], [ [ [ -74.490255380000093, 23.954405155634745 ], [ -74.526955380000089, 24.100805155634745 ], [ -74.460855380000083, 24.142805155634747 ], [ -74.423655380000099, 24.075505155634758 ], [ -74.490255380000093, 23.954405155634745 ] ] ], [ [ [ -77.946655380000095, 24.150005155634759 ], [ -77.971655380000101, 24.193605155634756 ], [ -77.800255380000095, 24.253305155634749 ], [ -77.885855380000095, 24.175505155634752 ], [ -77.946655380000095, 24.150005155634759 ] ] ], [ [ [ -77.936655380000104, 24.225805155634745 ], [ -77.99585538000008, 24.225605155634739 ], [ -78.019455380000096, 24.250805155634751 ], [ -77.931155380000092, 24.279405155634734 ], [ -77.936655380000104, 24.225805155634745 ] ] ], [ [ [ -76.468855380000093, 24.210005155634761 ], [ -76.503655380000083, 24.217805155634736 ], [ -76.5452553800001, 24.290305155634755 ], [ -76.466355380000095, 24.223605155634758 ], [ -76.468855380000093, 24.210005155634761 ] ] ], [ [ [ -77.735555380000079, 24.028605155634736 ], [ -77.606655380000092, 24.213905155634748 ], [ -77.516955380000098, 23.927805155634744 ], [ -77.566955380000081, 23.739205155634735 ], [ -77.773055380000102, 23.742805155634741 ], [ -77.681855380000087, 23.760305155634754 ], [ -77.572755380000103, 23.842805155634736 ], [ -77.730255380000102, 23.786905155634756 ], [ -77.876655380000102, 24.073105155634735 ], [ -77.676355380000103, 24.296105155634748 ], [ -77.735555380000079, 24.028605155634736 ] ] ], [ [ [ -77.686955380000086, 24.337205155634749 ], [ -77.79665538000009, 24.308005155634746 ], [ -77.80665538000008, 24.319705155634736 ], [ -77.70335538000009, 24.369705155634747 ], [ -77.686955380000086, 24.337205155634749 ] ] ], [ [ [ -75.314755380000094, 24.213905155634748 ], [ -75.515055380000092, 24.139705155634758 ], [ -75.4630553800001, 24.288105155634739 ], [ -75.739455380000095, 24.695005155634746 ], [ -75.314755380000094, 24.213905155634748 ] ] ], [ [ [ -77.436355380000094, 25.008005155634734 ], [ -77.561355380000094, 25.027505155634756 ], [ -77.258655380000079, 25.049405155634744 ], [ -77.341155380000089, 25.016905155634745 ], [ -77.436355380000094, 25.008005155634734 ] ] ], [ [ [ -78.191955380000081, 25.203605155634747 ], [ -77.9827553800001, 25.146105155634743 ], [ -77.716655380000105, 24.506705155634748 ], [ -78.021355380000102, 24.272805155634742 ], [ -78.440555380000092, 24.613605155634744 ], [ -78.314755380000094, 24.711105155634741 ], [ -78.331355380000105, 24.58640515563475 ], [ -78.192755380000079, 24.597505155634749 ], [ -78.305855380000082, 24.72110515563476 ], [ -78.191955380000081, 25.203605155634747 ] ] ], [ [ [ -76.533355380000103, 25.398305155634759 ], [ -76.349655380000087, 25.343305155634752 ], [ -76.118855380000099, 25.131105155634756 ], [ -76.168355380000094, 24.690005155634751 ], [ -76.3380553800001, 24.825005155634742 ], [ -76.17165538000009, 25.140805155634737 ], [ -76.715855380000079, 25.44170515563475 ], [ -76.735255380000098, 25.559205155634757 ], [ -76.533355380000103, 25.398305155634759 ] ] ], [ [ [ -77.821955380000105, 25.702205155634758 ], [ -77.888055380000083, 25.774405155634739 ], [ -77.888055380000083, 25.785005155634749 ], [ -77.856355380000082, 25.77530515563474 ], [ -77.821955380000105, 25.702205155634758 ] ] ], [ [ [ -77.563355380000104, 26.268905155634755 ], [ -77.581155380000098, 26.318605155634756 ], [ -77.57375538000008, 26.335805155634759 ], [ -77.53725538000009, 26.306905155634738 ], [ -77.563355380000104, 26.268905155634755 ] ] ], [ [ [ -77.917255380000086, 26.745305155634739 ], [ -78.708655380000096, 26.489705155634752 ], [ -78.978855380000084, 26.695305155634756 ], [ -78.704155380000088, 26.583905155634753 ], [ -78.518855380000105, 26.73420515563474 ], [ -77.917255380000086, 26.745305155634739 ] ] ], [ [ [ -77.734955380000088, 26.914405155634753 ], [ -77.53695538000008, 26.891405155634757 ], [ -77.042255380000086, 26.508905155634736 ], [ -77.20475538000008, 25.880805155634746 ], [ -77.398055380000102, 26.026405155634748 ], [ -77.218855380000093, 26.146905155634741 ], [ -77.1488553800001, 26.548905155634756 ], [ -77.539755380000088, 26.864705155634752 ], [ -77.950255380000101, 26.897805155634742 ], [ -77.734955380000088, 26.914405155634753 ] ] ], [ [ [ -64.855855380000094, 32.278605155634736 ], [ -64.874455380000086, 32.293005155634759 ], [ -64.8380553800001, 32.314205155634752 ], [ -64.85885538000008, 32.296305155634755 ], [ -64.855855380000094, 32.278605155634736 ] ] ], [ [ [ -64.643355380000088, 32.354405155634751 ], [ -64.656155380000087, 32.355805155634741 ], [ -64.685855380000106, 32.357205155634759 ], [ -64.655255380000085, 32.370805155634756 ], [ -64.643355380000088, 32.354405155634751 ] ] ], [ [ [ -64.783355380000103, 32.270505155634751 ], [ -64.858255380000088, 32.266805155634742 ], [ -64.67165538000009, 32.380005155634748 ], [ -64.696155380000079, 32.35980515563476 ], [ -64.694655380000086, 32.33010515563474 ], [ -64.783355380000103, 32.270505155634751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 82, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Northern South America" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -58.450555380000083, 6.896905155634755 ], [ -58.413355380000098, 6.969205155634754 ], [ -58.32805538000008, 6.956705155634751 ], [ -58.371955380000088, 6.926405155634754 ], [ -58.450555380000083, 6.896905155634755 ] ] ], [ [ [ -61.278355380000079, 8.516705155634753 ], [ -61.263655380000102, 8.49990515563475 ], [ -61.182555380000082, 8.499405155634747 ], [ -61.405355380000088, 8.48580515563475 ], [ -61.545355380000103, 8.551905155634742 ], [ -61.278355380000079, 8.516705155634753 ] ] ], [ [ [ -61.003655380000083, 8.548905155634742 ], [ -61.04665538000009, 8.511705155634743 ], [ -61.266455380000082, 8.509205155634746 ], [ -61.227555380000098, 8.568605155634742 ], [ -61.149155380000082, 8.540905155634746 ], [ -61.080855380000088, 8.610305155634748 ], [ -61.003655380000083, 8.548905155634742 ] ] ], [ [ [ -61.047855380000101, 8.629405155634743 ], [ -61.099155380000099, 8.623605155634749 ], [ -61.150355380000093, 8.570005155634746 ], [ -61.184455380000088, 8.598605155634743 ], [ -61.167255380000086, 8.651905155634751 ], [ -61.047855380000101, 8.629405155634743 ] ] ], [ [ [ -61.041955380000104, 8.640305155634749 ], [ -61.146955380000094, 8.654405155634748 ], [ -61.177855380000096, 8.679405155634754 ], [ -60.934455380000088, 8.718305155634752 ], [ -61.041955380000104, 8.640305155634749 ] ] ], [ [ [ -60.827255380000082, 8.649405155634753 ], [ -60.923355380000089, 8.618305155634744 ], [ -60.988655380000097, 8.635505155634746 ], [ -60.840855380000079, 8.728005155634747 ], [ -60.827255380000082, 8.649405155634753 ] ] ], [ [ [ -60.97615538000008, 8.725805155634745 ], [ -61.16365538000008, 8.688305155634751 ], [ -61.172855380000101, 8.697805155634754 ], [ -60.860555380000079, 8.853305155634743 ], [ -60.97615538000008, 8.725805155634745 ] ] ], [ [ [ -61.019755380000106, 8.846905155634744 ], [ -60.9416553800001, 9.011705155634743 ], [ -60.843955380000097, 9.005305155634744 ], [ -60.89225538000008, 8.910505155634752 ], [ -61.019755380000106, 8.846905155634744 ] ] ], [ [ [ -61.070555380000087, 8.892505155634751 ], [ -61.065855380000102, 8.976905155634753 ], [ -60.848655380000082, 9.093605155634748 ], [ -60.858355380000091, 9.065005155634751 ], [ -60.943355380000099, 9.022205155634751 ], [ -61.070555380000087, 8.892505155634751 ] ] ], [ [ [ -60.870355380000092, 9.108305155634753 ], [ -60.894155380000086, 9.088005155634747 ], [ -60.958655380000096, 9.066905155634743 ], [ -60.863655380000097, 9.193305155634746 ], [ -60.870355380000092, 9.108305155634753 ] ] ], [ [ [ -60.730055380000096, 9.186405155634745 ], [ -60.838655380000091, 9.113605155634744 ], [ -60.841455380000099, 9.116705155634747 ], [ -60.822855380000078, 9.201705155634755 ], [ -60.730055380000096, 9.186405155634745 ] ] ], [ [ [ -61.206655380000086, 9.585805155634745 ], [ -61.326955380000101, 9.646705155634749 ], [ -61.411655380000099, 9.729705155634747 ], [ -61.240855380000085, 9.633305155634744 ], [ -61.206655380000086, 9.585805155634745 ] ] ], [ [ [ -62.28865538000008, 9.755505155634751 ], [ -62.314155380000102, 9.807505155634743 ], [ -62.286455380000092, 9.934205155634743 ], [ -62.249155380000104, 9.856905155634749 ], [ -62.28865538000008, 9.755505155634751 ] ] ], [ [ [ -62.647555380000085, 10.302505155634748 ], [ -62.682855380000092, 10.351005155634752 ], [ -62.788055380000088, 10.415005155634745 ], [ -62.78725538000009, 10.478605155634753 ], [ -62.645855380000086, 10.345005155634752 ], [ -62.647555380000085, 10.302505155634748 ] ] ], [ [ [ -69.770855380000086, 11.696105155634754 ], [ -69.629755380000091, 11.46610515563475 ], [ -68.843355380000105, 11.447505155634744 ], [ -68.418355380000094, 11.180005155634746 ], [ -68.160055380000102, 10.496905155634749 ], [ -66.235355380000101, 10.642205155634741 ], [ -65.817255380000091, 10.229205155634745 ], [ -65.081455380000079, 10.060505155634743 ], [ -64.202555380000092, 10.450005155634742 ], [ -63.697555380000097, 10.485505155634755 ], [ -64.238955380000078, 10.513305155634754 ], [ -64.258955380000089, 10.661705155634749 ], [ -61.88285538000008, 10.733305155634753 ], [ -62.337255380000101, 10.529405155634748 ], [ -62.916655380000094, 10.528005155634744 ], [ -63.008055380000087, 10.451905155634748 ], [ -62.84975538000009, 10.52390515563475 ], [ -62.830555380000078, 10.402205155634746 ], [ -62.931155380000092, 10.418605155634751 ], [ -63.000355380000087, 10.399405155634753 ], [ -63.000355380000087, 10.271705155634749 ], [ -62.782155380000091, 10.399705155634749 ], [ -62.623955380000098, 10.118005155634748 ], [ -63.014755380000082, 10.093605155634748 ], [ -62.805355380000094, 10.008605155634754 ], [ -62.617555380000084, 10.089705155634746 ], [ -62.586455380000103, 10.228605155634753 ], [ -62.318055380000089, 9.705005155634751 ], [ -62.277255380000099, 9.747505155634755 ], [ -62.237855380000099, 9.848905155634753 ], [ -62.255055380000101, 9.968605155634748 ], [ -62.210855380000083, 9.922505155634752 ], [ -62.210855380000083, 9.634405155634752 ], [ -62.024155380000082, 9.865805155634746 ], [ -62.188655380000085, 10.015805155634752 ], [ -61.962255380000101, 9.911905155634742 ], [ -61.738655380000097, 9.595505155634754 ], [ -61.801555380000082, 9.814605155634752 ], [ -61.592855380000088, 9.781705155634754 ], [ -61.62255538000008, 9.906105155634748 ], [ -60.959755380000104, 9.532505155634752 ], [ -60.783655380000084, 9.305005155634746 ], [ -60.987855380000099, 9.188605155634747 ], [ -61.082255380000106, 9.102205155634749 ], [ -60.949755380000084, 9.179405155634754 ], [ -61.097855380000084, 8.963305155634743 ], [ -61.205855380000088, 8.599405155634742 ], [ -61.598955380000092, 8.555005155634746 ], [ -61.329155380000088, 8.430805155634744 ], [ -61.077555380000092, 8.493005155634748 ], [ -61.073955380000086, 8.400805155634743 ], [ -60.982855380000103, 8.568605155634742 ], [ -60.205855380000088, 8.621905155634749 ], [ -59.137255380000084, 8.045805155634753 ], [ -58.468655380000087, 7.340805155634754 ], [ -58.646155380000096, 6.426105155634744 ], [ -58.41365538000008, 6.874405155634747 ], [ -57.986455380000081, 6.790505155634747 ], [ -57.519255380000089, 6.270805155634747 ], [ -57.188955380000095, 6.131105155634742 ], [ -57.248555380000084, 5.486105155634746 ], [ -56.972555380000102, 5.996905155634749 ], [ -56.0178553800001, 5.818305155634746 ], [ -55.899055380000078, 5.673205155634747 ], [ -55.924755380000079, 5.887205155634746 ], [ -55.771155380000096, 5.966905155634748 ], [ -55.127955380000088, 5.822205155634748 ], [ -54.864455380000095, 5.853005155634747 ], [ -55.16225538000009, 5.958005155634751 ], [ -55.044155380000092, 6.003005155634753 ], [ -54.20475538000008, 5.879705155634753 ], [ -53.989455380000095, 5.745305155634753 ], [ -54.166855380000101, 5.347205155634754 ], [ -53.861955380000097, 5.755505155634751 ], [ -52.937855380000087, 5.458305155634747 ], [ -52.026455380000101, 4.689405155634745 ], [ -52.040055380000098, 4.331405155634755 ], [ -51.91225538000009, 4.653305155634754 ], [ -51.794455380000102, 4.605505155634745 ], [ -51.664455380000078, 4.067505155634748 ], [ -52.344955380000101, 3.157405155634748 ], [ -52.594455380000085, 2.473905155634753 ], [ -52.948055380000085, 2.17800515563475 ], [ -53.745055380000082, 2.373905155634745 ], [ -54.123355380000106, 2.113605155634744 ], [ -54.972255380000092, 2.55470515563475 ], [ -55.710355380000095, 2.399205155634746 ], [ -55.965855380000079, 2.532805155634748 ], [ -56.115855380000085, 2.249205155634755 ], [ -55.901455380000101, 2.04530515563475 ], [ -55.946655380000095, 1.853305155634743 ], [ -57.302855380000096, 1.981405155634747 ], [ -57.554155380000083, 1.701405155634745 ], [ -58.013955380000084, 1.512205155634746 ], [ -58.297255380000081, 1.582805155634745 ], [ -58.510355380000078, 1.269705155634753 ], [ -58.813655380000085, 1.185505155634743 ], [ -59.672855380000101, 1.762805155634751 ], [ -59.731955380000102, 2.283005155634754 ], [ -59.988955380000078, 2.687205155634743 ], [ -59.831955380000096, 3.524205155634746 ], [ -59.568655380000081, 3.899405155634753 ], [ -59.673355380000089, 4.384405155634752 ], [ -60.147555380000085, 4.517505155634751 ], [ -59.983055380000081, 5.022505155634747 ], [ -60.116155380000095, 5.247505155634755 ], [ -60.698355380000095, 5.214705155634746 ], [ -60.57975538000008, 4.946705155634746 ], [ -60.985055380000091, 4.520505155634751 ], [ -61.313655380000085, 4.506705155634748 ], [ -61.848955380000092, 4.160505155634752 ], [ -62.438355380000104, 4.184205155634743 ], [ -62.74585538000008, 4.032505155634752 ], [ -62.732555380000093, 3.681905155634752 ], [ -62.875055380000106, 3.560305155634751 ], [ -63.343055380000095, 3.961105155634755 ], [ -64.0178553800001, 3.886105155634752 ], [ -64.130055380000101, 4.112805155634746 ], [ -64.582255380000106, 4.121705155634743 ], [ -64.795355380000103, 4.281405155634744 ], [ -64.191155380000083, 3.594405155634746 ], [ -64.045055380000093, 2.482505155634755 ], [ -63.361155380000099, 2.419205155634742 ], [ -63.393055380000078, 2.151405155634748 ], [ -64.001955380000084, 1.95110515563475 ], [ -64.116155380000095, 1.578905155634743 ], [ -65.12085538000008, 1.133605155634754 ], [ -65.484455380000099, 0.662205155634751 ], [ -65.60115538000008, 0.991705155634747 ], [ -66.317555380000101, 0.752205155634755 ], [ -66.891755380000092, 1.251405155634743 ], [ -67.192555380000101, 2.392505155634751 ], [ -67.606955380000102, 2.795505155634743 ], [ -67.82835538000009, 2.825005155634742 ], [ -67.290555380000086, 3.397505155634747 ], [ -67.618655380000092, 3.763305155634754 ], [ -67.859755380000081, 4.558605155634751 ], [ -67.84975538000009, 5.307805155634753 ], [ -67.613055380000105, 5.539205155634747 ], [ -67.454455380000098, 6.193005155634751 ], [ -67.822855380000078, 6.309405155634749 ], [ -68.637255380000084, 6.13390515563475 ], [ -69.056455380000102, 6.21610515563475 ], [ -69.245355380000092, 6.081405155634755 ], [ -69.429455380000093, 6.118605155634754 ], [ -70.11915538000008, 6.975805155634745 ], [ -70.719755380000095, 7.098005155634752 ], [ -71.186755380000079, 6.962805155634754 ], [ -72.000055380000106, 7.018905155634755 ], [ -72.154755380000097, 7.325305155634751 ], [ -72.471755380000104, 7.491905155634754 ], [ -72.325355380000104, 8.095505155634754 ], [ -72.779755380000097, 9.080305155634747 ], [ -73.006455380000091, 9.304405155634754 ], [ -73.378055380000092, 9.171405155634744 ], [ -72.493055380000101, 11.121105155634751 ], [ -72.20935538000009, 11.250005155634753 ], [ -71.977255380000088, 11.665005155634745 ], [ -71.324755380000084, 11.853005155634747 ], [ -71.961955380000092, 11.584405155634755 ], [ -71.576955380000101, 10.714405155634751 ], [ -72.127555380000103, 9.813005155634755 ], [ -71.734255380000093, 9.378005155634753 ], [ -71.7130553800001, 9.07610515563475 ], [ -71.248055380000096, 9.148305155634745 ], [ -71.05665538000008, 9.336105155634755 ], [ -71.070555380000087, 9.841905155634748 ], [ -71.545055380000093, 10.565505155634753 ], [ -71.49755538000008, 10.960005155634747 ], [ -70.045055380000093, 11.522205155634751 ], [ -69.798655380000099, 11.427805155634744 ], [ -69.814455380000084, 11.690805155634749 ], [ -70.238355380000087, 11.631705155634748 ], [ -70.292555380000096, 11.90530515563475 ], [ -70.026955380000089, 12.195305155634742 ], [ -69.770855380000086, 11.696105155634754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 83, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Western South America" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.193355380000099, -3.034694844365248 ], [ -80.206755380000089, -2.724194844365257 ], [ -79.903055380000097, -2.71969484436525 ], [ -80.123655380000088, -2.888294844365248 ], [ -80.193355380000099, -3.034694844365248 ] ] ], [ [ [ -79.838655380000091, -2.641994844365257 ], [ -79.886955380000103, -2.626994844365257 ], [ -79.855255380000102, -2.467094844365249 ], [ -79.821655380000095, -2.543594844365245 ], [ -79.838655380000091, -2.641994844365257 ] ] ], [ [ [ -89.62115538000009, -1.406694844365248 ], [ -89.6822553800001, -1.401894844365245 ], [ -89.751955380000084, -1.360794844365245 ], [ -89.648355380000083, -1.343894844365252 ], [ -89.62115538000009, -1.406694844365248 ] ] ], [ [ [ -90.434455380000088, -1.355294844365247 ], [ -90.523055380000102, -1.306694844365254 ], [ -90.481655380000092, -1.219194844365248 ], [ -90.365855380000085, -1.269194844365245 ], [ -90.434455380000088, -1.355294844365247 ] ] ], [ [ [ -90.043355380000094, -0.838894844365257 ], [ -90.083055380000104, -0.829194844365247 ], [ -90.082255380000106, -0.801094844365252 ], [ -90.039755380000088, -0.809394844365258 ], [ -90.043355380000094, -0.838894844365257 ] ] ], [ [ [ -89.443655380000081, -0.936694844365249 ], [ -89.629455380000081, -0.927194844365246 ], [ -89.258655380000079, -0.687494844365247 ], [ -89.275055380000083, -0.766894844365254 ], [ -89.443655380000081, -0.936694844365249 ] ] ], [ [ [ -90.260555380000085, -0.751094844365255 ], [ -90.430555380000101, -0.770294844365253 ], [ -90.535255380000081, -0.583894844365247 ], [ -90.190555380000092, -0.542794844365247 ], [ -90.260555380000085, -0.751094844365255 ] ] ], [ [ [ -91.498855380000094, -0.496094844365246 ], [ -91.663855380000086, -0.316094844365253 ], [ -91.471155380000084, -0.248094844365255 ], [ -91.396155380000096, -0.437194844365251 ], [ -91.498855380000094, -0.496094844365246 ] ] ], [ [ [ -90.547455380000088, -0.304994844365254 ], [ -90.605855380000094, -0.375594844365253 ], [ -90.874455380000086, -0.269994844365257 ], [ -90.793355380000094, -0.149394844365247 ], [ -90.547455380000088, -0.304994844365254 ] ] ], [ [ [ -91.218855380000093, -0.011094844365246 ], [ -90.810855380000106, -0.732494844365249 ], [ -90.926355380000103, -0.968294844365246 ], [ -91.376155380000085, -1.026694844365252 ], [ -91.47615538000008, -0.826394844365254 ], [ -91.080555380000078, -0.587194844365257 ], [ -91.424755380000079, -0.025594844365258 ], [ -91.605855380000094, -0.004994844365257 ], [ -91.383655380000079, 0.130305155634744 ], [ -91.218855380000093, -0.011094844365246 ] ] ], [ [ [ -90.459155380000084, 0.266405155634743 ], [ -90.5358553800001, 0.296705155634754 ], [ -90.532455380000101, 0.346705155634751 ], [ -90.408355380000103, 0.326905155634748 ], [ -90.459155380000084, 0.266405155634743 ] ] ], [ [ [ -90.751155380000085, 0.547505155634752 ], [ -90.799755380000079, 0.563305155634751 ], [ -90.792255380000086, 0.651705155634744 ], [ -90.746955380000088, 0.60780515563475 ], [ -90.751155380000085, 0.547505155634752 ] ] ], [ [ [ -78.91225538000009, 1.23920515563475 ], [ -78.998955380000098, 1.275005155634744 ], [ -78.903355380000079, 1.367805155634741 ], [ -78.894755380000106, 1.268305155634749 ], [ -78.91225538000009, 1.23920515563475 ] ] ], [ [ [ -78.544355380000098, 2.415305155634755 ], [ -78.553655380000095, 2.406705155634754 ], [ -78.550355380000099, 2.433305155634741 ], [ -78.544155380000092, 2.432505155634743 ], [ -78.544355380000098, 2.415305155634755 ] ] ], [ [ [ -78.1214553800001, 2.500805155634751 ], [ -78.215555380000097, 2.577805155634749 ], [ -78.189255380000105, 2.640505155634742 ], [ -78.127855380000085, 2.643005155634754 ], [ -78.1214553800001, 2.500805155634751 ] ] ], [ [ [ -77.986455380000081, 2.542505155634743 ], [ -78.045555380000081, 2.583005155634751 ], [ -77.977555380000098, 2.651905155634751 ], [ -77.948355380000095, 2.627805155634746 ], [ -77.986455380000081, 2.542505155634743 ] ] ], [ [ [ -77.857555380000093, 2.573305155634742 ], [ -77.883355380000097, 2.586905155634753 ], [ -77.921155380000101, 2.693905155634752 ], [ -77.78695538000008, 2.59280515563475 ], [ -77.857555380000093, 2.573305155634742 ] ] ], [ [ [ -77.769755380000106, 2.591405155634746 ], [ -77.839755380000099, 2.640305155634749 ], [ -77.884755380000087, 2.717205155634744 ], [ -77.827855380000102, 2.703905155634743 ], [ -77.769755380000106, 2.591405155634746 ] ] ], [ [ [ -77.568955380000091, 3.069205155634748 ], [ -77.662855380000082, 3.075805155634754 ], [ -77.530555380000095, 3.209405155634755 ], [ -77.528955380000099, 3.136105155634752 ], [ -77.568955380000091, 3.069205155634748 ] ] ], [ [ [ -77.448355380000095, 4.074205155634743 ], [ -77.535555380000091, 4.167205155634747 ], [ -77.49415538000008, 4.204205155634753 ], [ -77.448355380000095, 4.167505155634743 ], [ -77.448355380000095, 4.074205155634743 ] ] ], [ [ [ -77.543055380000084, 4.193305155634746 ], [ -77.426155380000097, 4.334705155634751 ], [ -77.319755380000089, 4.251705155634752 ], [ -77.333055380000104, 4.239405155634742 ], [ -77.500255380000084, 4.209705155634751 ], [ -77.543055380000084, 4.193305155634746 ] ] ], [ [ [ -78.544355380000098, 2.415305155634755 ], [ -77.986955380000097, 2.522505155634747 ], [ -77.948655380000105, 2.559405155634749 ], [ -77.940055380000103, 2.655005155634754 ], [ -77.867255380000103, 2.560305155634751 ], [ -77.792555380000096, 2.567505155634748 ], [ -77.740855380000085, 2.604705155634747 ], [ -77.781155380000087, 2.756405155634752 ], [ -77.408355380000103, 3.288105155634753 ], [ -77.542555380000096, 3.254705155634753 ], [ -77.028655380000089, 3.917805155634753 ], [ -77.271655380000084, 3.840805155634754 ], [ -77.187255380000096, 4.060305155634751 ], [ -77.364455380000095, 3.92500515563475 ], [ -77.434155380000078, 4.028305155634754 ], [ -77.239455380000095, 4.254405155634743 ], [ -77.384155380000095, 4.341905155634748 ], [ -77.347855380000084, 5.24050515563475 ], [ -77.532255380000095, 5.518905155634755 ], [ -77.240855380000085, 5.751405155634743 ], [ -77.490355380000096, 6.190805155634749 ], [ -77.340555380000097, 6.568905155634752 ], [ -77.889755380000082, 7.228905155634749 ], [ -77.746655380000078, 7.722205155634754 ], [ -77.573955380000086, 7.525305155634754 ], [ -77.215555380000097, 7.937205155634743 ], [ -77.472255380000092, 8.532205155634742 ], [ -77.346955380000082, 8.662205155634751 ], [ -76.835155380000089, 8.132105155634747 ], [ -76.923355380000089, 7.93400515563475 ], [ -76.755355380000083, 7.918905155634747 ], [ -76.769455380000096, 8.399405155634753 ], [ -76.928355380000085, 8.568305155634746 ], [ -76.315555380000092, 8.940005155634751 ], [ -76.089755380000099, 9.335805155634745 ], [ -75.629455380000081, 9.453605155634747 ], [ -75.505055380000101, 10.552505155634748 ], [ -75.269755380000106, 10.79830515563475 ], [ -74.860855380000089, 11.125505155634755 ], [ -74.28865538000008, 11.002505155634751 ], [ -74.592255380000097, 10.878005155634753 ], [ -74.4005553800001, 10.738905155634754 ], [ -74.228355380000096, 11.113305155634748 ], [ -74.236955380000097, 11.235005155634752 ], [ -74.155055380000078, 11.331405155634755 ], [ -73.284455380000082, 11.295505155634743 ], [ -72.258655380000079, 11.889205155634755 ], [ -72.149455380000092, 12.246405155634747 ], [ -71.937855380000087, 12.162805155634743 ], [ -71.664455380000078, 12.463905155634748 ], [ -71.271155380000096, 12.343605155634748 ], [ -71.138055380000083, 12.010305155634754 ], [ -71.977255380000088, 11.665005155634745 ], [ -72.20935538000009, 11.250005155634753 ], [ -72.493055380000101, 11.121105155634751 ], [ -73.378055380000092, 9.171405155634744 ], [ -73.006455380000091, 9.304405155634754 ], [ -72.779755380000097, 9.080305155634747 ], [ -72.325355380000104, 8.095505155634754 ], [ -72.471755380000104, 7.491905155634754 ], [ -72.154755380000097, 7.325305155634751 ], [ -72.000055380000106, 7.018905155634755 ], [ -71.186755380000079, 6.962805155634754 ], [ -70.719755380000095, 7.098005155634752 ], [ -70.11915538000008, 6.975805155634745 ], [ -69.429455380000093, 6.118605155634754 ], [ -69.245355380000092, 6.081405155634755 ], [ -69.056455380000102, 6.21610515563475 ], [ -68.637255380000084, 6.13390515563475 ], [ -67.822855380000078, 6.309405155634749 ], [ -67.454455380000098, 6.193005155634751 ], [ -67.613055380000105, 5.539205155634747 ], [ -67.84975538000009, 5.307805155634753 ], [ -67.859755380000081, 4.558605155634751 ], [ -67.618655380000092, 3.763305155634754 ], [ -67.290555380000086, 3.397505155634747 ], [ -67.82835538000009, 2.825005155634742 ], [ -67.606955380000102, 2.795505155634743 ], [ -67.192555380000101, 2.392505155634751 ], [ -66.8714553800001, 1.221105155634746 ], [ -67.075955380000096, 1.172905155634751 ], [ -67.072555380000097, 1.625305155634749 ], [ -67.424255380000091, 2.143905155634755 ], [ -67.914755380000088, 1.745305155634753 ], [ -68.196455380000089, 1.977505155634745 ], [ -68.153055380000097, 1.724205155634749 ], [ -69.846155380000084, 1.710405155634746 ], [ -69.842255380000097, 1.072205155634748 ], [ -69.270055380000088, 1.038305155634745 ], [ -69.124755380000096, 0.645005155634749 ], [ -69.464155380000079, 0.740305155634744 ], [ -70.044155380000092, 0.590805155634754 ], [ -70.058055380000098, -0.157494844365246 ], [ -69.607555380000093, -0.517494844365245 ], [ -69.378055380000092, -1.338094844365258 ], [ -69.950355380000104, -4.26249484436525 ], [ -70.194155380000097, -4.333194844365252 ], [ -70.323955380000086, -4.136694844365252 ], [ -70.76585538000009, -4.146394844365247 ], [ -70.950355380000104, -4.381394844365246 ], [ -71.902555380000081, -4.518194844365254 ], [ -72.851955380000078, -5.124694844365251 ], [ -73.229755380000086, -6.093594844365256 ], [ -73.123955380000098, -6.447194844365256 ], [ -73.74415538000008, -6.876994844365257 ], [ -73.702855380000102, -7.306994844365249 ], [ -73.931155380000092, -7.359194844365248 ], [ -74.00785538000008, -7.552494844365256 ], [ -73.7036553800001, -7.778594844365259 ], [ -73.771955380000094, -7.948094844365258 ], [ -73.533055380000093, -8.355594844365257 ], [ -72.964155380000079, -8.983294844365247 ], [ -73.2053553800001, -9.40719484436525 ], [ -72.305555380000101, -9.529994844365248 ], [ -72.185855380000106, -10.002494844365245 ], [ -71.298955380000081, -9.996394844365255 ], [ -70.514655380000079, -9.427994844365259 ], [ -70.631455380000091, -11.009194844365254 ], [ -69.41225538000009, -10.937794844365257 ], [ -68.62085538000008, -11.116394844365246 ], [ -68.280555380000095, -10.979994844365251 ], [ -68.061155380000088, -10.676394844365248 ], [ -67.70335538000009, -10.694694844365259 ], [ -66.634455380000105, -9.906994844365258 ], [ -65.570055380000099, -9.836394844365245 ], [ -65.381955380000079, -9.697794844365248 ], [ -65.3928553800001, -11.266394844365252 ], [ -64.991655380000083, -12.008094844365246 ], [ -64.513355380000093, -12.242494844365254 ], [ -64.394255380000089, -12.461694844365255 ], [ -63.075055380000094, -12.649994844365253 ], [ -62.769755380000106, -13.005794844365255 ], [ -62.111955380000097, -13.152494844365251 ], [ -61.833955380000106, -13.544694844365253 ], [ -61.039055380000093, -13.493094844365245 ], [ -60.470855380000103, -13.807194844365256 ], [ -60.258955380000089, -15.093594844365256 ], [ -60.571455380000089, -15.097494844365258 ], [ -60.227255380000088, -15.478594844365247 ], [ -60.160355380000084, -16.263094844365256 ], [ -58.327555380000092, -16.27919484436525 ], [ -58.475755380000095, -16.674594844365245 ], [ -58.397555380000085, -17.249194844365249 ], [ -57.743055380000101, -17.593094844365254 ], [ -57.521155380000096, -18.203894844365252 ], [ -57.70475538000008, -19.043594844365245 ], [ -58.12115538000009, -19.741394844365246 ], [ -57.893055380000078, -20.023894844365245 ], [ -58.158955380000094, -20.168094844365257 ], [ -58.151455380000101, -19.828094844365253 ], [ -59.095855380000103, -19.348894844365248 ], [ -60.015955380000094, -19.299394844365253 ], [ -61.742555380000084, -19.644994844365257 ], [ -62.269455380000096, -20.562194844365251 ], [ -62.258955380000089, -21.056994844365249 ], [ -62.643755380000101, -22.238894844365248 ], [ -62.811955380000086, -21.996994844365247 ], [ -63.941155380000083, -22.000794844365245 ], [ -64.324755380000084, -22.873594844365257 ], [ -64.594755380000095, -22.211694844365255 ], [ -65.748055380000096, -22.111694844365246 ], [ -66.223055380000091, -21.780494844365251 ], [ -66.30695538000009, -22.076994844365245 ], [ -66.736755380000091, -22.227494844365253 ], [ -67.18365538000009, -22.821694844365254 ], [ -67.793355380000094, -22.878094844365251 ], [ -68.188655380000085, -21.296994844365258 ], [ -68.56005538000008, -20.891394844365252 ], [ -68.466655380000105, -20.628894844365249 ], [ -68.756955380000079, -20.406994844365258 ], [ -68.784755380000092, -20.097794844365254 ], [ -68.523355380000083, -19.916394844365257 ], [ -68.699755380000084, -19.729994844365251 ], [ -68.437555380000106, -19.43029484436525 ], [ -68.965855380000079, -18.953094844365253 ], [ -69.071655380000095, -18.038894844365245 ], [ -69.298955380000081, -17.973094844365249 ], [ -69.499755380000096, -17.505294844365253 ], [ -69.832255380000106, -17.676994844365254 ], [ -69.770055380000088, -17.968894844365252 ], [ -69.951155380000102, -18.24279484436525 ], [ -70.405555380000095, -18.348594844365252 ], [ -71.301755380000088, -17.711694844365255 ], [ -71.49755538000008, -17.296994844365258 ], [ -75.047555380000091, -15.469194844365248 ], [ -75.930055380000084, -14.661694844365257 ], [ -76.393955380000079, -13.898094844365247 ], [ -76.196955380000105, -13.418294844365249 ], [ -77.123055380000096, -12.077494844365248 ], [ -77.20305538000008, -11.658294844365258 ], [ -77.652555380000081, -11.292194844365255 ], [ -77.679455380000093, -10.934194844365251 ], [ -78.989755380000105, -8.226994844365251 ], [ -79.344755380000095, -7.894194844365245 ], [ -79.982855380000103, -6.764494844365245 ], [ -81.196455380000089, -5.989994844365256 ], [ -80.8714553800001, -5.652194844365255 ], [ -81.209755380000104, -5.192794844365253 ], [ -81.084455380000094, -5.023094844365247 ], [ -81.353955380000087, -4.693094844365248 ], [ -81.286155380000082, -4.299694844365249 ], [ -80.529755380000097, -3.505594844365248 ], [ -79.954455380000098, -3.206694844365245 ], [ -79.72615538000008, -2.591094844365259 ], [ -79.845855380000103, -2.376394844365251 ], [ -79.763655380000102, -2.009194844365254 ], [ -79.899455380000092, -2.552194844365246 ], [ -80.062255380000096, -2.581994844365255 ], [ -80.015055380000092, -2.331694844365245 ], [ -80.256455380000091, -2.73639484436525 ], [ -80.9750553800001, -2.216994844365246 ], [ -80.730355380000105, -1.931994844365249 ], [ -80.911155380000082, -1.031094844365256 ], [ -80.575555380000083, -0.898094844365247 ], [ -80.430355380000094, -0.565794844365257 ], [ -80.39255538000009, -0.629494844365254 ], [ -80.264755380000082, -0.627194844365249 ], [ -80.501955380000084, -0.367494844365254 ], [ -80.068355380000099, 0.062805155634749 ], [ -80.059755380000098, 0.828605155634747 ], [ -78.889355380000097, 1.238405155634752 ], [ -78.809755380000098, 1.437805155634749 ], [ -79.051755380000088, 1.63390515563475 ], [ -78.854455380000104, 1.836105155634755 ], [ -78.584155380000084, 1.768905155634755 ], [ -78.687255380000096, 2.200005155634742 ], [ -78.544355380000098, 2.415305155634755 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 84, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -48.550555380000105, -27.821394844365258 ], [ -48.51725538000008, -27.430794844365252 ], [ -48.418355380000094, -27.388894844365254 ], [ -48.406355380000093, -27.592794844365258 ], [ -48.550555380000105, -27.821394844365258 ] ] ], [ [ [ -48.581155380000098, -26.391694844365247 ], [ -48.707755380000094, -26.309694844365254 ], [ -48.537755380000078, -26.167194844365255 ], [ -48.484955380000088, -26.234194844365248 ], [ -48.581155380000098, -26.391694844365247 ] ] ], [ [ [ -48.282455380000101, -25.486094844365255 ], [ -48.333055380000104, -25.413094844365247 ], [ -48.256655380000097, -25.338894844365257 ], [ -48.256155380000081, -25.467494844365248 ], [ -48.282455380000101, -25.486094844365255 ] ] ], [ [ [ -47.877755380000082, -25.026994844365248 ], [ -47.8166553800001, -24.899994844365253 ], [ -47.606655380000092, -24.783594844365254 ], [ -47.8072553800001, -24.934494844365247 ], [ -47.877755380000082, -25.026994844365248 ] ] ], [ [ [ -46.282755380000083, -23.989194844365258 ], [ -46.396155380000096, -23.980294844365247 ], [ -46.416355380000084, -23.950294844365246 ], [ -46.323655380000105, -23.929994844365254 ], [ -46.282755380000083, -23.989194844365258 ] ] ], [ [ [ -45.126355380000092, -23.821394844365258 ], [ -45.136355380000083, -23.797794844365256 ], [ -45.104955380000092, -23.806394844365258 ], [ -45.105555380000084, -23.816094844365253 ], [ -45.126355380000092, -23.821394844365258 ] ] ], [ [ [ -45.220855380000103, -23.779494844365246 ], [ -45.218355380000105, -23.955794844365258 ], [ -45.44135538000009, -23.928894844365246 ], [ -45.320055380000099, -23.725294844365251 ], [ -45.220855380000103, -23.779494844365246 ] ] ], [ [ [ -44.088855380000098, -23.174494844365256 ], [ -44.323855380000083, -23.221094844365254 ], [ -44.36915538000008, -23.172194844365251 ], [ -44.228655380000106, -23.071094844365248 ], [ -44.088855380000098, -23.174494844365256 ] ] ], [ [ [ -29.840055380000081, -20.496394844365255 ], [ -29.848955380000092, -20.500794844365245 ], [ -29.852255380000088, -20.49109484436525 ], [ -29.844155380000103, -20.489694844365246 ], [ -29.840055380000081, -20.496394844365255 ] ] ], [ [ [ -30.2952553800001, -20.505794844365255 ], [ -30.319455380000079, -20.519994844365257 ], [ -30.334155380000084, -20.482194844365253 ], [ -30.312255380000096, -20.489194844365258 ], [ -30.2952553800001, -20.505794844365255 ] ] ], [ [ [ -38.911655380000099, -13.675294844365254 ], [ -38.946155380000079, -13.676694844365258 ], [ -38.989455380000095, -13.582794844365253 ], [ -38.912755380000078, -13.587494844365253 ], [ -38.911655380000099, -13.675294844365254 ] ] ], [ [ [ -38.936955380000086, -13.562494844365247 ], [ -39.041155380000106, -13.462194844365257 ], [ -39.032755380000083, -13.389694844365252 ], [ -38.908055380000093, -13.385594844365258 ], [ -38.936955380000086, -13.562494844365247 ] ] ], [ [ [ -38.754755380000091, -13.11309484436525 ], [ -38.793355380000094, -13.057794844365247 ], [ -38.643355380000088, -12.89219484436525 ], [ -38.591655380000105, -12.987494844365258 ], [ -38.754755380000091, -13.11309484436525 ] ] ], [ [ [ -37.132555380000099, -11.129494844365254 ], [ -37.146355380000102, -11.108594844365257 ], [ -37.03695538000008, -10.952494844365248 ], [ -37.042255380000086, -10.993594844365248 ], [ -37.132555380000099, -11.129494844365254 ] ] ], [ [ [ -34.873855380000094, -7.07329484436525 ], [ -34.888855380000081, -7.07199484436525 ], [ -34.866655380000083, -7.048594844365255 ], [ -34.865255380000093, -7.054194844365256 ], [ -34.873855380000094, -7.07329484436525 ] ] ], [ [ [ -34.854155380000094, -7.005294844365253 ], [ -34.85885538000008, -7.015294844365258 ], [ -34.863055380000105, -7.013894844365254 ], [ -34.859755380000081, -6.994494844365249 ], [ -34.854155380000094, -7.005294844365253 ] ] ], [ [ [ -32.450855380000093, -3.883594844365248 ], [ -32.424155380000087, -3.845794844365258 ], [ -32.386655380000093, -3.840294844365246 ], [ -32.39085538000009, -3.862194844365249 ], [ -32.450855380000093, -3.883594844365248 ] ] ], [ [ [ -44.610255380000098, -3.008094844365246 ], [ -44.656155380000087, -2.973594844365252 ], [ -44.611655380000087, -2.887194844365254 ], [ -44.572255380000087, -2.910294844365254 ], [ -44.610255380000098, -3.008094844365246 ] ] ], [ [ [ -44.5863553800001, -3.052494844365256 ], [ -44.559855380000101, -2.913094844365247 ], [ -44.577555380000092, -2.80189484436525 ], [ -44.48385538000008, -2.709994844365255 ], [ -44.5863553800001, -3.052494844365256 ] ] ], [ [ [ -42.050855380000087, -2.761694844365252 ], [ -42.076155380000102, -2.760294844365248 ], [ -42.184455380000088, -2.677494844365256 ], [ -42.069455380000079, -2.685794844365248 ], [ -42.050855380000087, -2.761694844365252 ] ] ], [ [ [ -43.693355380000099, -2.326894844365256 ], [ -43.739155380000085, -2.350294844365251 ], [ -43.685255380000086, -2.267494844365245 ], [ -43.615255380000093, -2.26249484436525 ], [ -43.693355380000099, -2.326894844365256 ] ] ], [ [ [ -51.048155380000082, -1.967294844365256 ], [ -51.145855380000086, -1.824394844365258 ], [ -50.846155380000084, -2.003894844365249 ], [ -50.943755380000084, -1.963594844365247 ], [ -51.048155380000082, -1.967294844365256 ] ] ], [ [ [ -49.024155380000082, -1.829194844365247 ], [ -49.055555380000101, -1.852494844365253 ], [ -49.156955380000085, -1.858094844365255 ], [ -49.055555380000101, -1.721094844365254 ], [ -49.024155380000082, -1.829194844365247 ] ] ], [ [ [ -48.961155380000093, -1.795794844365247 ], [ -49.046155380000101, -1.705294844365255 ], [ -48.902755380000087, -1.577194844365252 ], [ -48.900855380000081, -1.629994844365257 ], [ -48.961155380000093, -1.795794844365247 ] ] ], [ [ [ -44.652755380000087, -1.623894844365253 ], [ -44.66225538000009, -1.66189484436525 ], [ -44.78725538000009, -1.656094844365256 ], [ -44.7130553800001, -1.561094844365257 ], [ -44.652755380000087, -1.623894844365253 ] ] ], [ [ [ -52.024755380000101, -1.580294844365255 ], [ -52.131155380000081, -1.585594844365247 ], [ -52.200855380000093, -1.646694844365257 ], [ -52.029455380000087, -1.439694844365249 ], [ -51.914455380000078, -1.516394844365252 ], [ -52.024755380000101, -1.580294844365255 ] ] ], [ [ [ -48.633655380000079, -1.484694844365251 ], [ -48.696655380000095, -1.449194844365252 ], [ -48.657455380000101, -1.375794844365245 ], [ -48.606155380000104, -1.443594844365251 ], [ -48.633655380000079, -1.484694844365251 ] ] ], [ [ [ -48.525855380000081, -1.524994844365253 ], [ -48.592555380000078, -1.442194844365247 ], [ -48.553355380000085, -1.36609484436525 ], [ -48.539755380000088, -1.381394844365246 ], [ -48.525855380000081, -1.524994844365253 ] ] ], [ [ [ -52.418355380000094, -1.527494844365251 ], [ -52.431155380000092, -1.466394844365254 ], [ -52.168655380000104, -1.408294844365258 ], [ -52.259155380000095, -1.468594844365256 ], [ -52.418355380000094, -1.527494844365251 ] ] ], [ [ [ -44.987455380000085, -1.401894844365245 ], [ -44.975555380000088, -1.261694844365252 ], [ -44.881155380000081, -1.283094844365252 ], [ -44.884155380000095, -1.332194844365247 ], [ -44.987455380000085, -1.401894844365245 ] ] ], [ [ [ -45.634155380000095, -1.34639484436525 ], [ -45.689455380000084, -1.360794844365245 ], [ -45.626955380000084, -1.126894844365253 ], [ -45.6077553800001, -1.148894844365245 ], [ -45.634155380000095, -1.34639484436525 ] ] ], [ [ [ -48.340255380000087, -1.212794844365249 ], [ -48.465555380000097, -1.162794844365251 ], [ -48.41225538000009, -1.07499484436525 ], [ -48.322455380000093, -1.076894844365256 ], [ -48.340255380000087, -1.212794844365249 ] ] ], [ [ [ -46.498855380000094, -1.020294844365253 ], [ -46.548355380000089, -0.972194844365248 ], [ -46.468055380000095, -0.879694844365247 ], [ -46.4399553800001, -1.006394844365246 ], [ -46.498855380000094, -1.020294844365253 ] ] ], [ [ [ -50.987255380000079, -0.866394844365246 ], [ -50.920855380000091, -0.869694844365256 ], [ -51.012655380000098, -0.919494844365246 ], [ -51.070055380000099, -1.037794844365251 ], [ -51.182455380000079, -1.09169484436525 ], [ -50.987255380000079, -0.866394844365246 ] ] ], [ [ [ -51.375255380000084, -1.213594844365247 ], [ -51.248855380000094, -1.024694844365257 ], [ -51.20305538000008, -0.84169484436525 ], [ -51.239455380000095, -1.143894844365249 ], [ -51.375255380000084, -1.213594844365247 ] ] ], [ [ [ -50.9202553800001, -0.844994844365246 ], [ -50.922755380000098, -0.729194844365253 ], [ -50.842755380000085, -0.727794844365249 ], [ -50.846955380000082, -0.812794844365257 ], [ -50.9202553800001, -0.844994844365246 ] ] ], [ [ [ -47.934955380000105, -0.727194844365258 ], [ -47.970855380000103, -0.679994844365254 ], [ -47.932455380000079, -0.636694844365252 ], [ -47.876155380000085, -0.673094844365252 ], [ -47.934955380000105, -0.727194844365258 ] ] ], [ [ [ -47.668055380000084, -0.709194844365257 ], [ -47.718855380000093, -0.640594844365253 ], [ -47.665255380000104, -0.573594844365246 ], [ -47.637255380000084, -0.62079484436525 ], [ -47.668055380000084, -0.709194844365257 ] ] ], [ [ [ -51.131955380000079, -0.959394844365249 ], [ -51.070255380000106, -0.694394844365249 ], [ -50.815855380000102, -0.572194844365256 ], [ -50.820055380000099, -0.689394844365253 ], [ -50.93195538000009, -0.725794844365254 ], [ -51.131955380000079, -0.959394844365249 ] ] ], [ [ [ -51.051155380000097, -0.659194844365246 ], [ -51.0983553800001, -0.633894844365258 ], [ -51.021155380000096, -0.561894844365256 ], [ -51.007255380000089, -0.606894844365257 ], [ -51.051155380000097, -0.659194844365246 ] ] ], [ [ [ -51.901355380000098, -1.476694844365255 ], [ -51.884955380000093, -1.178894844365246 ], [ -51.66225538000009, -1.083294844365255 ], [ -51.609755380000081, -0.733894844365253 ], [ -51.199755380000084, -0.52919484436525 ], [ -51.271655380000084, -1.01419484436525 ], [ -51.901355380000098, -1.476694844365255 ] ] ], [ [ [ -51.403355380000079, -0.540794844365251 ], [ -51.411355380000089, -0.499694844365251 ], [ -51.239455380000095, -0.454394844365254 ], [ -51.257255380000089, -0.491394844365246 ], [ -51.403355380000079, -0.540794844365251 ] ] ], [ [ [ -51.011355380000083, -0.548094844365252 ], [ -51.070255380000106, -0.484394844365255 ], [ -50.8988553800001, -0.378894844365249 ], [ -50.958055380000104, -0.505594844365248 ], [ -51.011355380000083, -0.548094844365252 ] ] ], [ [ [ -50.958655380000096, -0.567494844365257 ], [ -50.878355380000102, -0.385294844365248 ], [ -50.776955380000089, -0.383894844365258 ], [ -50.783355380000103, -0.471694844365246 ], [ -50.958655380000096, -0.567494844365257 ] ] ], [ [ [ -51.1077553800001, -0.539994844365253 ], [ -51.131955380000079, -0.403094844365256 ], [ -51.034755380000092, -0.283094844365252 ], [ -50.946655380000095, -0.353894844365257 ], [ -51.047455380000088, -0.398894844365245 ], [ -51.1077553800001, -0.539994844365253 ] ] ], [ [ [ -50.907255380000095, -0.335794844365253 ], [ -50.955855380000088, -0.324194844365252 ], [ -51.02495538000008, -0.248894844365253 ], [ -50.888655380000102, -0.291394844365257 ], [ -50.907255380000095, -0.335794844365253 ] ] ], [ [ [ -50.803355380000085, -0.358894844365253 ], [ -50.908055380000093, -0.358294844365247 ], [ -50.748855380000094, -0.226694844365255 ], [ -50.763355380000093, -0.330294844365255 ], [ -50.803355380000085, -0.358894844365253 ] ] ], [ [ [ -51.380555380000089, -0.484694844365251 ], [ -51.238855380000103, -0.20169484436525 ], [ -51.103055380000086, -0.121394844365255 ], [ -51.137455380000091, -0.285294844365254 ], [ -51.380555380000089, -0.484694844365251 ] ] ], [ [ [ -49.713355380000081, -0.227794844365249 ], [ -49.1899553800001, -0.13579484436525 ], [ -48.373055380000096, -0.289194844365255 ], [ -48.627255380000094, -1.064394844365253 ], [ -48.860855380000089, -1.478094844365245 ], [ -49.166355380000084, -1.613894844365248 ], [ -49.672455380000088, -1.776694844365252 ], [ -49.75385538000009, -1.633594844365248 ], [ -49.812755380000084, -1.815794844365257 ], [ -50.049755380000079, -1.706894844365252 ], [ -50.57805538000008, -1.800794844365257 ], [ -50.815255380000082, -1.340594844365256 ], [ -50.781155380000087, -1.151894844365245 ], [ -50.549955380000085, -1.069194844365256 ], [ -50.796955380000099, -0.971894844365252 ], [ -50.733655380000101, -0.593694844365245 ], [ -50.705455380000103, -0.643794844365246 ], [ -50.542455380000092, -0.682794844365247 ], [ -50.726355380000086, -0.497794844365245 ], [ -50.657755380000083, -0.27919484436525 ], [ -50.351955380000078, -0.100794844365254 ], [ -49.713355380000081, -0.227794844365249 ] ] ], [ [ [ -50.55695538000009, -0.062494844365247 ], [ -50.8577553800001, -0.283094844365252 ], [ -51.027255380000099, -0.224194844365257 ], [ -50.972755380000081, -0.089994844365251 ], [ -50.55695538000009, -0.062494844365247 ] ] ], [ [ [ -50.901655380000079, -0.047494844365247 ], [ -50.82975538000008, 0.060805155634753 ], [ -50.697455380000093, 0.02390515563475 ], [ -50.711955380000092, 0.004705155634753 ], [ -50.901655380000079, -0.047494844365247 ] ] ], [ [ [ -49.5255553800001, -0.134394844365247 ], [ -49.694755380000089, -0.156394844365252 ], [ -49.852455380000094, -0.064394844365253 ], [ -49.501655380000102, 0.070605155634752 ], [ -49.381155380000081, -0.068594844365251 ], [ -49.5255553800001, -0.134394844365247 ] ] ], [ [ [ -50.455555380000078, -0.022794844365251 ], [ -50.593355380000105, 0.022505155634747 ], [ -50.643355380000088, 0.171105155634748 ], [ -50.464955380000106, 0.146705155634749 ], [ -50.455555380000078, -0.022794844365251 ] ] ], [ [ [ -50.243055380000101, 0.229405155634751 ], [ -50.184155380000078, 0.324205155634743 ], [ -50.083655380000096, 0.320005155634746 ], [ -50.105855380000094, 0.298605155634746 ], [ -50.243055380000101, 0.229405155634751 ] ] ], [ [ [ -49.636155380000105, 0.227505155634745 ], [ -49.984755380000081, -0.072194844365256 ], [ -50.392455380000087, 0.109405155634747 ], [ -50.029155380000105, 0.298605155634746 ], [ -49.636155380000105, 0.227505155634745 ] ] ], [ [ [ -50.416355380000084, 0.210805155634745 ], [ -50.536355380000089, 0.226105155634755 ], [ -50.373855380000094, 0.621405155634747 ], [ -50.317755380000079, 0.308905155634747 ], [ -50.416355380000084, 0.210805155634745 ] ] ], [ [ [ -50.237455380000085, 0.350805155634745 ], [ -50.308055380000098, 0.506405155634752 ], [ -50.063655380000085, 0.646105155634743 ], [ -50.023055380000102, 0.541905155634751 ], [ -50.237455380000085, 0.350805155634745 ] ] ], [ [ [ -50.007255380000089, 0.881705155634748 ], [ -50.110855380000089, 0.762505155634742 ], [ -50.267755380000096, 0.751705155634752 ], [ -50.200555380000083, 0.87920515563475 ], [ -50.007255380000089, 0.881705155634748 ] ] ], [ [ [ -50.0375553800001, 0.884405155634752 ], [ -50.086955380000092, 0.894705155634753 ], [ -50.093855380000093, 0.920805155634753 ], [ -50.042255380000086, 0.918105155634748 ], [ -50.0375553800001, 0.884405155634752 ] ] ], [ [ [ -50.0255553800001, 1.052205155634752 ], [ -49.935255380000086, 1.027805155634752 ], [ -50.024455380000092, 0.92970515563475 ], [ -50.074455380000103, 0.94470515563475 ], [ -50.0255553800001, 1.052205155634752 ] ] ], [ [ [ -50.396655380000084, 1.881405155634752 ], [ -50.504955380000098, 2.025005155634744 ], [ -50.394455380000096, 2.135305155634754 ], [ -50.297255380000081, 1.965605155634748 ], [ -50.396655380000084, 1.881405155634752 ] ] ], [ [ [ -50.475255380000078, 2.119705155634747 ], [ -50.51725538000008, 2.203105155634745 ], [ -50.405555380000095, 2.193605155634742 ], [ -50.404755380000097, 2.146405155634753 ], [ -50.475255380000078, 2.119705155634747 ] ] ], [ [ [ -50.0255553800001, 1.052205155634752 ], [ -51.297455380000088, -0.191394844365249 ], [ -51.699955380000091, -0.752494844365245 ], [ -51.71245538000008, -1.026694844365252 ], [ -51.920055380000093, -1.166394844365257 ], [ -51.934955380000105, -1.344394844365254 ], [ -52.232555380000093, -1.345294844365256 ], [ -52.71275538000009, -1.603294844365251 ], [ -52.285255380000081, -1.533594844365254 ], [ -52.208455380000089, -1.692094844365258 ], [ -51.257255380000089, -1.218294844365246 ], [ -51.031655380000103, -1.041694844365253 ], [ -50.992255380000103, -0.925294844365254 ], [ -50.847455380000099, -0.916394844365257 ], [ -50.8166553800001, -1.439694844365249 ], [ -50.663855380000086, -1.767794844365255 ], [ -50.814755380000094, -1.898294844365253 ], [ -51.336955380000092, -1.646894844365249 ], [ -51.521955380000094, -2.046394844365253 ], [ -51.451955380000101, -2.273594844365249 ], [ -51.307455380000079, -1.763594844365258 ], [ -50.991355380000101, -2.026394844365257 ], [ -51.029155380000105, -2.344994844365246 ], [ -50.99445538000009, -2.419394844365257 ], [ -50.846155380000084, -2.508594844365248 ], [ -51.001155380000085, -2.368894844365258 ], [ -50.98385538000008, -2.066094844365253 ], [ -50.706355380000105, -2.220594844365252 ], [ -50.823655380000105, -1.962794844365249 ], [ -50.6779553800001, -1.810394844365248 ], [ -50.416355380000084, -1.952194844365252 ], [ -49.289755380000088, -1.708294844365255 ], [ -49.490055380000086, -2.564994844365245 ], [ -49.190555380000092, -1.898094844365247 ], [ -48.960255380000092, -1.833594844365251 ], [ -48.697255380000087, -1.469194844365248 ], [ -48.430555380000101, -1.661694844365257 ], [ -48.41365538000008, -1.499394844365256 ], [ -48.184455380000088, -1.471894844365252 ], [ -48.503055380000092, -1.458294844365255 ], [ -48.479155380000094, -1.30189484436525 ], [ -48.335855380000083, -1.317794844365253 ], [ -48.238055380000105, -0.86779484436525 ], [ -48.052255380000105, -0.705294844365255 ], [ -47.956955380000096, -0.775294844365249 ], [ -47.749455380000086, -0.635294844365248 ], [ -47.737755380000095, -0.758094844365246 ], [ -47.542455380000092, -0.636694844365252 ], [ -47.393855380000105, -0.812794844365257 ], [ -47.431355380000099, -0.582494844365257 ], [ -46.95475538000008, -0.704394844365254 ], [ -46.951155380000102, -0.908094844365252 ], [ -46.821655380000095, -0.712794844365249 ], [ -46.604355380000101, -1.02919484436525 ], [ -46.448355380000095, -1.043094844365257 ], [ -46.191955380000081, -0.957494844365257 ], [ -46.259755380000087, -1.183594844365246 ], [ -46.043355380000094, -1.210294844365251 ], [ -45.97475538000009, -1.07499484436525 ], [ -45.851955380000078, -1.271894844365249 ], [ -45.735555380000079, -1.179994844365254 ], [ -45.696155380000079, -1.370294844365247 ], [ -45.446955380000105, -1.310794844365248 ], [ -45.462255380000101, -1.545594844365255 ], [ -45.326655380000091, -1.313294844365245 ], [ -45.347455380000099, -1.740294844365252 ], [ -45.161155380000082, -1.481394844365255 ], [ -44.860255380000098, -1.425294844365254 ], [ -44.951355380000081, -1.601694844365255 ], [ -44.820555380000087, -1.578294844365246 ], [ -44.799155380000087, -1.704994844365245 ], [ -44.490555380000103, -1.980794844365249 ], [ -44.636955380000103, -2.223594844365252 ], [ -44.661355380000089, -2.281094844365256 ], [ -44.656355380000093, -2.331094844365253 ], [ -44.490055380000086, -2.144394844365252 ], [ -44.359955380000088, -2.338894844365257 ], [ -44.582255380000106, -2.556994844365249 ], [ -44.786355380000089, -3.297494844365247 ], [ -44.420555380000081, -2.929994844365254 ], [ -44.356955380000102, -2.526694844365252 ], [ -44.063355380000104, -2.405794844365246 ], [ -44.339755380000099, -2.830294844365255 ], [ -44.18365538000009, -2.76419484436525 ], [ -44.199555380000106, -2.868694844365251 ], [ -43.926155380000097, -2.547494844365247 ], [ -43.448355380000095, -2.537794844365251 ], [ -43.482555380000093, -2.388294844365248 ], [ -43.347455380000099, -2.365794844365254 ], [ -42.235855380000089, -2.837794844365249 ], [ -41.831655380000086, -2.733894844365253 ], [ -41.248055380000096, -3.023594844365249 ], [ -41.222855380000084, -2.880294844365253 ], [ -39.996955380000088, -2.84639484436525 ], [ -38.490355380000096, -3.724994844365256 ], [ -37.174455380000097, -4.918594844365245 ], [ -35.417455380000092, -5.214694844365255 ], [ -34.980255380000102, -6.406394844365252 ], [ -34.908055380000093, -7.128894844365249 ], [ -34.864055380000082, -7.077394844365259 ], [ -34.836855380000088, -6.977094844365254 ], [ -34.825655380000086, -6.986494844365254 ], [ -34.815255380000082, -7.935294844365245 ], [ -35.376955380000084, -9.290294844365249 ], [ -36.393355380000088, -10.492494844365254 ], [ -37.021655380000084, -10.935794844365248 ], [ -37.02525538000009, -10.858894844365253 ], [ -37.092255380000097, -10.743894844365258 ], [ -37.153355380000079, -10.748594844365257 ], [ -37.073055380000085, -10.967194844365252 ], [ -37.156655380000103, -11.104494844365249 ], [ -37.279155380000105, -11.025294844365249 ], [ -37.207255380000106, -11.219494844365258 ], [ -37.375255380000084, -11.430594844365245 ], [ -37.2875553800001, -11.217494844365248 ], [ -37.347755380000081, -11.187794844365257 ], [ -38.041355380000084, -12.633094844365246 ], [ -38.488655380000097, -13.019994844365257 ], [ -38.506955380000079, -12.724194844365257 ], [ -38.6916553800001, -12.577794844365258 ], [ -38.809955380000105, -12.844994844365246 ], [ -38.901155380000091, -12.705594844365251 ], [ -38.855855380000094, -12.851694844365255 ], [ -38.725255380000078, -12.874494844365245 ], [ -39.056355380000099, -13.377494844365245 ], [ -39.080255380000096, -13.538294844365254 ], [ -38.9630553800001, -13.681394844365258 ], [ -39.038855380000086, -14.175794844365257 ], [ -38.920555380000081, -13.915594844365245 ], [ -39.066955380000081, -14.643894844365249 ], [ -38.871955380000088, -15.874194844365249 ], [ -39.206655380000086, -17.147494844365255 ], [ -39.130855380000099, -17.683894844365255 ], [ -39.643655380000098, -18.223294844365256 ], [ -39.801455380000078, -19.632494844365254 ], [ -40.010355380000078, -19.744694844365256 ], [ -40.237255380000079, -20.28389484436525 ], [ -40.34975538000009, -20.234694844365251 ], [ -40.406155380000087, -20.599494844365253 ], [ -40.763355380000093, -20.854994844365251 ], [ -40.960555380000102, -21.235794844365245 ], [ -40.971655380000101, -21.98809484436525 ], [ -41.763055380000083, -22.346094844365254 ], [ -41.990855380000085, -22.571394844365258 ], [ -42.034455380000082, -22.919194844365251 ], [ -43.091955380000087, -22.95469484436525 ], [ -43.075855380000093, -22.668294844365249 ], [ -43.264755380000082, -22.744494844365249 ], [ -43.218355380000105, -22.996994844365247 ], [ -44.00385538000009, -23.101994844365251 ], [ -43.603855380000084, -23.018894844365249 ], [ -43.85915538000009, -22.895794844365255 ], [ -44.6625553800001, -23.048094844365252 ], [ -44.577255380000082, -23.356094844365245 ], [ -44.92165538000009, -23.347794844365254 ], [ -45.4108553800001, -23.628894844365249 ], [ -45.418355380000094, -23.830794844365258 ], [ -45.890055380000092, -23.767794844365255 ], [ -46.293055380000084, -24.026994844365248 ], [ -46.273055380000102, -23.983294844365247 ], [ -46.303355380000085, -23.922194844365251 ], [ -46.382755380000106, -23.868294844365252 ], [ -48.026155380000091, -25.014994844365248 ], [ -47.910255380000081, -25.145294844365253 ], [ -48.208655380000096, -25.461694844365255 ], [ -48.131355380000088, -25.272194844365245 ], [ -48.394955380000084, -25.296094844365257 ], [ -48.477255380000088, -25.479694844365255 ], [ -48.718655380000087, -25.424694844365249 ], [ -48.361355380000106, -25.576394844365254 ], [ -48.770555380000104, -25.879994844365257 ], [ -48.581155380000098, -25.872194844365254 ], [ -48.581955380000096, -26.179994844365254 ], [ -48.73385538000008, -26.223294844365256 ], [ -48.802555380000086, -26.067194844365247 ], [ -48.485255380000098, -27.211394844365245 ], [ -48.622455380000105, -27.242194844365258 ], [ -48.563855380000092, -27.86439484436525 ], [ -48.761955380000103, -28.492194844365258 ], [ -48.871955380000088, -28.345594844365252 ], [ -48.774755380000101, -28.522194844365245 ], [ -49.7524553800001, -29.369694844365256 ], [ -50.749455380000086, -31.081094844365253 ], [ -52.072455380000093, -32.174194844365246 ], [ -52.0863553800001, -31.823594844365246 ], [ -51.852255380000088, -31.870594844365257 ], [ -51.251355380000092, -31.471694844365246 ], [ -51.1625553800001, -31.078094844365253 ], [ -50.978355380000096, -31.136394844365256 ], [ -50.567255380000091, -30.457194844365247 ], [ -50.60885538000008, -30.190594844365251 ], [ -50.928355380000085, -30.419494844365246 ], [ -51.281655380000103, -30.009994844365252 ], [ -51.271155380000096, -30.795594844365255 ], [ -51.371955380000088, -30.644994844365257 ], [ -51.46245538000008, -31.066694844365259 ], [ -51.962255380000101, -31.335294844365251 ], [ -52.221355380000091, -31.746994844365247 ], [ -52.254755380000091, -32.05529484436525 ], [ -52.089955380000106, -32.166694844365253 ], [ -52.636655380000093, -33.129494844365254 ], [ -53.386355380000083, -33.743894844365258 ], [ -53.534455380000082, -33.656994844365258 ], [ -53.519755380000106, -33.136994844365248 ], [ -53.093055380000095, -32.729694844365255 ], [ -53.553355380000085, -32.446094844365248 ], [ -53.879755380000091, -31.967794844365258 ], [ -54.2858553800001, -31.804494844365252 ], [ -54.5880553800001, -31.462794844365249 ], [ -55.235555380000079, -31.245294844365247 ], [ -55.581955380000096, -30.845794844365258 ], [ -56.008955380000089, -31.079794844365253 ], [ -56.001655380000102, -30.795794844365247 ], [ -56.811355380000094, -30.105294844365247 ], [ -57.065855380000102, -30.106094844365245 ], [ -57.220255380000083, -30.293294844365249 ], [ -57.607955380000078, -30.184894844365246 ], [ -55.891355380000078, -28.36779484436525 ], [ -55.692455380000098, -28.40889484436525 ], [ -55.765255380000099, -28.22609484436525 ], [ -55.021655380000084, -27.833894844365247 ], [ -54.811155380000088, -27.532494844365246 ], [ -53.838755380000094, -27.171094844365257 ], [ -53.65025538000009, -26.243894844365258 ], [ -53.890255380000099, -25.631994844365252 ], [ -54.104155380000094, -25.493894844365258 ], [ -54.598955380000092, -25.573194844365247 ], [ -54.243855380000099, -24.05359484436525 ], [ -54.627755380000082, -23.803894844365246 ], [ -55.031355380000093, -23.994494844365249 ], [ -55.405055380000078, -23.964494844365248 ], [ -55.609455380000099, -22.633894844365258 ], [ -55.84975538000009, -22.288894844365245 ], [ -56.205855380000088, -22.273594844365249 ], [ -56.403055380000097, -22.065594844365251 ], [ -56.8774553800001, -22.274194844365255 ], [ -57.985155380000094, -22.091794844365253 ], [ -57.814455380000084, -20.971994844365256 ], [ -58.158855380000091, -20.168094844365257 ], [ -57.848755380000085, -19.978794844365254 ], [ -58.12115538000009, -19.741394844365246 ], [ -57.70475538000008, -19.043594844365245 ], [ -57.521155380000096, -18.203894844365252 ], [ -57.743055380000101, -17.593094844365254 ], [ -58.397555380000085, -17.249194844365249 ], [ -58.475755380000095, -16.674594844365245 ], [ -58.327555380000092, -16.27919484436525 ], [ -60.160255380000081, -16.263094844365256 ], [ -60.227255380000088, -15.478594844365247 ], [ -60.571355380000085, -15.097494844365258 ], [ -60.258855380000085, -15.093594844365256 ], [ -60.470855380000103, -13.807194844365256 ], [ -61.03895538000009, -13.493094844365245 ], [ -61.833855380000102, -13.544694844365253 ], [ -62.111955380000097, -13.152494844365251 ], [ -62.769755380000106, -13.005794844365255 ], [ -63.074955380000091, -12.649994844365253 ], [ -64.394155380000086, -12.461694844365255 ], [ -64.513355380000093, -12.242494844365254 ], [ -64.991655380000083, -12.008094844365246 ], [ -65.392755380000096, -11.266394844365252 ], [ -65.300555380000105, -10.967194844365252 ], [ -65.449555380000106, -10.479194844365253 ], [ -65.287755380000078, -10.20169484436525 ], [ -65.390055380000092, -9.692194844365247 ], [ -65.570055380000099, -9.836394844365245 ], [ -66.634455380000105, -9.906994844365258 ], [ -67.70335538000009, -10.694694844365259 ], [ -68.061155380000088, -10.676394844365248 ], [ -68.280555380000095, -10.979994844365251 ], [ -68.62085538000008, -11.116394844365246 ], [ -69.41225538000009, -10.937794844365257 ], [ -70.631355380000088, -11.009194844365254 ], [ -70.514655380000079, -9.427994844365259 ], [ -71.298855380000106, -9.996394844365255 ], [ -72.185855380000106, -10.002494844365245 ], [ -72.305555380000101, -9.529994844365248 ], [ -73.205255380000096, -9.40719484436525 ], [ -72.964155380000079, -8.983294844365247 ], [ -73.533055380000093, -8.355594844365257 ], [ -73.771955380000094, -7.948094844365258 ], [ -73.7036553800001, -7.778594844365259 ], [ -74.010555380000085, -7.541394844365257 ], [ -73.702755380000099, -7.306994844365249 ], [ -73.74415538000008, -6.876994844365257 ], [ -73.123955380000098, -6.447194844365256 ], [ -73.229755380000086, -6.093594844365256 ], [ -72.851955380000078, -5.124694844365251 ], [ -71.902555380000081, -4.518194844365254 ], [ -70.950355380000104, -4.381394844365246 ], [ -70.76585538000009, -4.146394844365247 ], [ -70.323955380000086, -4.136694844365252 ], [ -70.194155380000097, -4.333194844365252 ], [ -69.950355380000104, -4.26249484436525 ], [ -69.378055380000092, -1.338094844365258 ], [ -69.607555380000093, -0.517494844365245 ], [ -70.058055380000098, -0.157494844365246 ], [ -70.044155380000092, 0.590805155634754 ], [ -69.464155380000079, 0.740305155634744 ], [ -69.124755380000096, 0.645005155634749 ], [ -69.270055380000088, 1.038305155634745 ], [ -69.842255380000097, 1.072205155634748 ], [ -69.846155380000084, 1.710405155634746 ], [ -68.153055380000097, 1.724205155634749 ], [ -68.196455380000089, 1.977505155634745 ], [ -67.914755380000088, 1.745305155634753 ], [ -67.418355380000094, 2.142505155634751 ], [ -67.072555380000097, 1.625305155634749 ], [ -67.075955380000096, 1.172905155634751 ], [ -66.870455380000095, 1.220905155634753 ], [ -66.311955380000086, 0.750505155634755 ], [ -65.589755380000099, 0.98920515563475 ], [ -65.524455380000092, 0.648605155634755 ], [ -65.12085538000008, 1.133605155634754 ], [ -64.116155380000095, 1.578905155634743 ], [ -64.001955380000084, 1.95110515563475 ], [ -63.393055380000078, 2.151405155634748 ], [ -63.361155380000099, 2.419205155634742 ], [ -64.045055380000093, 2.482505155634755 ], [ -64.191155380000083, 3.594405155634746 ], [ -64.786655380000099, 4.286405155634753 ], [ -64.582255380000106, 4.121705155634743 ], [ -64.129955380000098, 4.112805155634746 ], [ -64.017755380000096, 3.886105155634752 ], [ -63.343055380000095, 3.961105155634755 ], [ -62.874955380000102, 3.560305155634751 ], [ -62.732555380000093, 3.681905155634752 ], [ -62.74585538000008, 4.032505155634752 ], [ -61.553055380000103, 4.249205155634755 ], [ -60.652255380000099, 4.838905155634748 ], [ -60.576155380000102, 4.964405155634751 ], [ -60.730355380000105, 5.204805155634745 ], [ -60.116155380000095, 5.247505155634755 ], [ -59.983055380000081, 5.022505155634747 ], [ -60.147555380000085, 4.517505155634751 ], [ -59.675855380000087, 4.388905155634745 ], [ -59.568655380000081, 3.899405155634753 ], [ -59.831955380000096, 3.524205155634746 ], [ -59.9827553800001, 2.860305155634748 ], [ -59.9005553800001, 2.376905155634745 ], [ -59.730255380000102, 2.278105155634748 ], [ -59.751955380000084, 1.865305155634744 ], [ -58.80695538000009, 1.185605155634747 ], [ -58.510255380000103, 1.269705155634753 ], [ -58.297255380000081, 1.582805155634745 ], [ -58.013855380000081, 1.512205155634746 ], [ -57.554155380000083, 1.701405155634745 ], [ -57.302755380000093, 1.981405155634747 ], [ -55.946655380000095, 1.853305155634743 ], [ -55.901355380000098, 2.04530515563475 ], [ -56.115855380000085, 2.249205155634755 ], [ -55.965855380000079, 2.532805155634748 ], [ -55.710255380000092, 2.399205155634746 ], [ -54.972255380000092, 2.55470515563475 ], [ -54.123355380000106, 2.113605155634744 ], [ -53.744955380000079, 2.373905155634745 ], [ -52.948055380000085, 2.178105155634753 ], [ -52.594455380000085, 2.473905155634753 ], [ -52.344955380000101, 3.157405155634748 ], [ -51.77495538000008, 3.979705155634747 ], [ -51.540255380000104, 4.15360515563475 ], [ -51.447755380000103, 3.972505155634749 ], [ -51.5375553800001, 4.391405155634743 ], [ -51.083855380000102, 3.902805155634752 ], [ -51.023655380000093, 3.130005155634748 ], [ -50.679755380000103, 2.164705155634749 ], [ -50.445255380000106, 1.825805155634754 ], [ -49.924955380000085, 1.700605155634747 ], [ -49.892755380000096, 1.321705155634746 ], [ -50.121955380000088, 1.214205155634744 ], [ -49.914455380000078, 1.244205155634745 ], [ -50.0255553800001, 1.052205155634752 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 85, "LEVEL1_COD": 8, "LEVEL1_NAM": "SOUTHERN AMERICA", "LEVEL2_NAM": "Southern South America" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.21275538000009, -55.893594844365253 ], [ -67.246955380000088, -55.89499484436525 ], [ -67.413855380000086, -55.832194844365254 ], [ -67.246955380000088, -55.828094844365253 ], [ -67.21275538000009, -55.893594844365253 ] ] ], [ [ [ -67.493055380000101, -55.829194844365254 ], [ -67.611955380000097, -55.902194844365255 ], [ -67.857555380000093, -55.84919484436525 ], [ -67.797755380000098, -55.815594844365251 ], [ -67.493055380000101, -55.829194844365254 ] ] ], [ [ [ -67.085255380000092, -55.917494844365251 ], [ -67.17165538000009, -55.874194844365249 ], [ -67.105855380000094, -55.801994844365254 ], [ -67.083655380000096, -55.816694844365252 ], [ -67.085255380000092, -55.917494844365251 ] ] ], [ [ [ -67.167255380000086, -55.786394844365255 ], [ -67.215555380000097, -55.803294844365254 ], [ -67.241355380000101, -55.790294844365249 ], [ -67.173855380000106, -55.759694844365249 ], [ -67.167255380000086, -55.786394844365255 ] ] ], [ [ [ -67.268055380000078, -55.72139484436525 ], [ -67.338855380000098, -55.790794844365251 ], [ -67.556355380000099, -55.71219484436525 ], [ -67.356655380000092, -55.574694844365254 ], [ -67.268055380000078, -55.72139484436525 ] ] ], [ [ [ -67.728655380000106, -55.624494844365252 ], [ -67.688055380000094, -55.501694844365254 ], [ -67.589755380000099, -55.540594844365252 ], [ -67.590555380000097, -55.582194844365254 ], [ -67.728655380000106, -55.624494844365252 ] ] ], [ [ [ -69.690555380000092, -55.412494844365249 ], [ -69.766355380000078, -55.40419484436525 ], [ -69.764755380000082, -55.337794844365249 ], [ -69.637555380000094, -55.382494844365254 ], [ -69.690555380000092, -55.412494844365249 ] ] ], [ [ [ -69.985255380000098, -55.364194844365251 ], [ -70.018055380000078, -55.366994844365252 ], [ -70.106155380000104, -55.295794844365254 ], [ -69.936355380000094, -55.290794844365251 ], [ -69.985255380000098, -55.364194844365251 ] ] ], [ [ [ -66.874755380000096, -55.332194844365254 ], [ -67.05695538000009, -55.328894844365252 ], [ -67.073655380000105, -55.276094844365254 ], [ -66.878655380000083, -55.22889484436525 ], [ -66.874755380000096, -55.332194844365254 ] ] ], [ [ [ -66.571355380000085, -55.284694844365255 ], [ -66.626155380000085, -55.199694844365254 ], [ -66.420555380000081, -55.194694844365252 ], [ -66.508055380000087, -55.26699484436525 ], [ -66.571355380000085, -55.284694844365255 ] ] ], [ [ [ -66.8166553800001, -55.118594844365255 ], [ -67.061155380000088, -55.026694844365252 ], [ -67.072255380000087, -55.002794844365255 ], [ -66.862255380000079, -55.02639484436525 ], [ -66.8166553800001, -55.118594844365255 ] ] ], [ [ [ -68.396655380000084, -54.959494844365253 ], [ -68.330855380000088, -55.067194844365254 ], [ -68.601355380000086, -55.152794844365253 ], [ -69.061155380000088, -55.057194844365249 ], [ -68.210555380000102, -55.264994844365255 ], [ -68.745055380000082, -55.271094844365251 ], [ -68.159455380000082, -55.398594844365249 ], [ -67.963855380000098, -55.593294844365253 ], [ -68.066855380000078, -55.71839484436525 ], [ -68.376155380000085, -55.476994844365251 ], [ -68.939155380000102, -55.459694844365252 ], [ -68.775055380000083, -55.384194844365254 ], [ -68.9125553800001, -55.342194844365252 ], [ -68.803655380000095, -55.188594844365255 ], [ -69.032755380000083, -55.269194844365252 ], [ -69.239455380000095, -55.139494844365252 ], [ -69.434755380000098, -55.166094844365254 ], [ -69.290855380000096, -55.167494844365251 ], [ -69.388355380000093, -55.290594844365252 ], [ -69.174155380000087, -55.512194844365254 ], [ -69.706955380000096, -55.310294844365252 ], [ -69.499955380000102, -55.174994844365251 ], [ -70.033355380000103, -55.156394844365252 ], [ -68.396655380000084, -54.959494844365253 ] ] ], [ [ [ -67.780555380000095, -54.919494844365254 ], [ -67.223855380000089, -54.950794844365255 ], [ -67.053655380000095, -55.136394844365249 ], [ -67.243855380000099, -55.308894844365248 ], [ -67.526155380000091, -55.170794844365254 ], [ -68.095255380000083, -55.236994844365249 ], [ -68.364455380000095, -54.944494844365252 ], [ -67.780555380000095, -54.919494844365254 ] ] ], [ [ [ -70.508755380000082, -54.970094844365249 ], [ -70.73415538000009, -55.015294844365251 ], [ -70.28725538000009, -55.030594844365254 ], [ -70.264455380000101, -55.11609484436525 ], [ -70.545855380000091, -55.211094844365249 ], [ -71.01585538000009, -54.96669484436525 ], [ -70.311655380000104, -54.904694844365252 ], [ -70.508755380000082, -54.970094844365249 ] ] ], [ [ [ -69.762255380000084, -55.03859484436525 ], [ -69.93195538000009, -54.899194844365255 ], [ -69.166355380000084, -54.958294844365248 ], [ -69.50385538000009, -55.01249484436525 ], [ -69.762255380000084, -55.03859484436525 ] ] ], [ [ [ -70.60915538000009, -54.904694844365252 ], [ -70.745555380000098, -54.874494844365252 ], [ -70.393655380000098, -54.871694844365251 ], [ -70.4108553800001, -54.880794844365255 ], [ -70.60915538000009, -54.904694844365252 ] ] ], [ [ [ -71.106955380000102, -54.871994844365254 ], [ -70.91225538000009, -54.924494844365249 ], [ -71.456655380000086, -54.884994844365252 ], [ -71.396955380000094, -54.82499484436525 ], [ -71.106955380000102, -54.871994844365254 ] ] ], [ [ [ -63.813655380000085, -54.731394844365255 ], [ -64.678355380000085, -54.90719484436525 ], [ -64.755255380000079, -54.834994844365255 ], [ -64.337555380000083, -54.727794844365249 ], [ -63.813655380000085, -54.731394844365255 ] ] ], [ [ [ -72.021155380000096, -54.634694844365249 ], [ -71.92135538000008, -54.70449484436525 ], [ -71.931155380000092, -54.744694844365249 ], [ -72.101355380000086, -54.656394844365252 ], [ -72.021155380000096, -54.634694844365249 ] ] ], [ [ [ -72.30835538000008, -54.369194844365254 ], [ -72.463355380000081, -54.429994844365254 ], [ -72.540555380000086, -54.341394844365254 ], [ -72.406355380000093, -54.309494844365254 ], [ -72.30835538000008, -54.369194844365254 ] ] ], [ [ [ -70.281355380000093, -54.275594844365251 ], [ -70.465055380000081, -54.236694844365253 ], [ -70.511155380000105, -54.160794844365249 ], [ -70.218855380000093, -54.226694844365255 ], [ -70.281355380000093, -54.275594844365251 ] ] ], [ [ [ -72.322255380000087, -54.258094844365253 ], [ -72.468355380000105, -54.258594844365248 ], [ -72.511155380000105, -54.202794844365251 ], [ -72.301655380000085, -54.071694844365254 ], [ -72.206955380000096, -54.148294844365253 ], [ -72.322255380000087, -54.258094844365253 ] ] ], [ [ [ -73.194155380000097, -54.128894844365249 ], [ -73.272555380000085, -54.135594844365251 ], [ -73.470555380000093, -54.072794844365255 ], [ -73.246655380000078, -54.035794844365249 ], [ -73.194155380000097, -54.128894844365249 ] ] ], [ [ [ -71.257555380000099, -54.076094844365251 ], [ -71.009755380000087, -54.102794844365249 ], [ -71.116355380000101, -54.384694844365249 ], [ -71.347755380000081, -54.310794844365255 ], [ -71.407255380000095, -54.116994844365252 ], [ -71.540555380000086, -54.259194844365254 ], [ -71.699455380000103, -54.161094844365252 ], [ -71.635255380000103, -54.108094844365255 ], [ -71.6077553800001, -53.945794844365253 ], [ -71.257555380000099, -54.076094844365251 ] ] ], [ [ [ -71.671155380000101, -53.943894844365254 ], [ -71.736155380000099, -54.16359484436525 ], [ -71.9536553800001, -54.019494844365255 ], [ -71.740055380000086, -54.237794844365254 ], [ -71.846655380000101, -54.339694844365255 ], [ -72.257555380000099, -53.941094844365253 ], [ -71.671155380000101, -53.943894844365254 ] ] ], [ [ [ -70.441955380000081, -53.860594844365252 ], [ -70.371955380000088, -54.036394844365255 ], [ -70.674455380000097, -53.926694844365251 ], [ -70.524455380000092, -54.228594844365254 ], [ -70.878655380000083, -54.05079484436525 ], [ -70.898055380000102, -53.879694844365254 ], [ -70.618055380000101, -53.862494844365251 ], [ -70.708055380000104, -53.692794844365253 ], [ -70.534455380000082, -53.560794844365255 ], [ -70.441955380000081, -53.860594844365252 ] ] ], [ [ [ -73.831955380000096, -53.590294844365253 ], [ -73.857255380000083, -53.453294844365253 ], [ -73.687455380000102, -53.52169484436525 ], [ -73.701955380000101, -53.54309484436525 ], [ -73.831955380000096, -53.590294844365253 ] ] ], [ [ [ -72.911155380000082, -53.429494844365252 ], [ -72.878355380000102, -53.681994844365249 ], [ -72.843855380000093, -53.458094844365249 ], [ -72.139455380000101, -53.801694844365251 ], [ -72.419455380000102, -53.899194844365255 ], [ -72.330855380000088, -54.045294844365252 ], [ -72.87085538000008, -54.136694844365252 ], [ -73.031355380000093, -54.07969484436525 ], [ -72.776955380000089, -54.01719484436525 ], [ -72.732255380000083, -53.839694844365255 ], [ -73.065555380000092, -53.813294844365252 ], [ -73.132555380000099, -54.011694844365252 ], [ -73.313855380000092, -53.844494844365251 ], [ -73.249955380000102, -53.707194844365254 ], [ -73.58775538000009, -53.755594844365248 ], [ -73.479455380000104, -53.698894844365249 ], [ -73.570555380000087, -53.578594844365249 ], [ -73.171955380000099, -53.676094844365252 ], [ -72.952255380000082, -53.666994844365249 ], [ -73.426155380000097, -53.469194844365255 ], [ -72.911155380000082, -53.429494844365252 ] ] ], [ [ [ -73.463855380000098, -53.474994844365249 ], [ -73.4947553800001, -53.574494844365255 ], [ -73.801955380000095, -53.429194844365249 ], [ -73.394455380000096, -53.409194844365253 ], [ -73.463855380000098, -53.474994844365249 ] ] ], [ [ [ -74.1916553800001, -53.331994844365255 ], [ -74.243655380000092, -53.299694844365249 ], [ -74.059455380000088, -53.243094844365253 ], [ -74.105555380000084, -53.309194844365251 ], [ -74.1916553800001, -53.331994844365255 ] ] ], [ [ [ -73.413055380000088, -52.878594844365253 ], [ -73.3911553800001, -52.953594844365249 ], [ -73.752255380000094, -52.893294844365251 ], [ -73.575855380000093, -52.845294844365249 ], [ -73.413055380000088, -52.878594844365253 ] ] ], [ [ [ -70.725855380000098, -52.893594844365253 ], [ -70.780855380000105, -52.877794844365255 ], [ -70.618855380000099, -52.821394844365251 ], [ -70.637255380000084, -52.843894844365252 ], [ -70.725855380000098, -52.893594844365253 ] ] ], [ [ [ -74.360555380000079, -52.948894844365249 ], [ -73.607555380000093, -53.065294844365255 ], [ -73.521155380000096, -53.26079484436525 ], [ -73.455555380000078, -53.138894844365254 ], [ -73.091655380000105, -53.359694844365251 ], [ -73.490055380000086, -53.329194844365254 ], [ -73.893355380000088, -53.064694844365249 ], [ -74.322755380000103, -53.096994844365248 ], [ -74.745055380000082, -52.756694844365249 ], [ -74.360555380000079, -52.948894844365249 ] ] ], [ [ [ -73.385255380000103, -52.739994844365249 ], [ -73.398055380000102, -52.732494844365249 ], [ -73.32805538000008, -52.699494844365255 ], [ -73.371955380000088, -52.734194844365248 ], [ -73.385255380000103, -52.739994844365249 ] ] ], [ [ [ -69.151655380000079, -52.684494844365254 ], [ -68.617555380000084, -52.641494844365255 ], [ -68.294755380000083, -52.932494844365252 ], [ -68.222755380000081, -53.115594844365255 ], [ -68.368355380000082, -53.003894844365249 ], [ -68.543655380000104, -53.229494844365249 ], [ -68.166155380000106, -53.291694844365253 ], [ -67.988655380000097, -53.592194844365252 ], [ -67.35915538000009, -54.028894844365254 ], [ -66.227555380000098, -54.541994844365249 ], [ -65.140055380000092, -54.65719484436525 ], [ -65.353855380000084, -54.929194844365249 ], [ -66.458055380000104, -55.051694844365251 ], [ -67.011355380000083, -54.908594844365254 ], [ -68.635855380000095, -54.788294844365254 ], [ -68.5572553800001, -54.87999484436525 ], [ -68.886955380000103, -54.799194844365253 ], [ -68.746255380000093, -54.902594844365254 ], [ -69.090855380000079, -54.950594844365249 ], [ -69.656955380000085, -54.819994844365254 ], [ -69.630555380000089, -54.693894844365254 ], [ -70.762755380000101, -54.841094844365252 ], [ -70.457255380000106, -54.62829484436525 ], [ -71.032455380000101, -54.778294844365249 ], [ -70.970555380000093, -54.620294844365255 ], [ -71.272755380000092, -54.679694844365251 ], [ -71.340255380000087, -54.522194844365252 ], [ -71.485255380000098, -54.691394844365249 ], [ -71.967255380000097, -54.644694844365254 ], [ -71.993855380000099, -54.454994844365253 ], [ -71.675255380000095, -54.576994844365252 ], [ -71.847755380000081, -54.41809484436525 ], [ -70.970255380000083, -54.473894844365255 ], [ -70.855055380000096, -54.32199484436525 ], [ -70.612455380000085, -54.344194844365255 ], [ -70.7541553800001, -54.59469484436525 ], [ -70.586955380000092, -54.390794844365253 ], [ -70.130855380000099, -54.54889484436525 ], [ -70.880255380000079, -54.133894844365251 ], [ -70.142755380000096, -54.428294844365254 ], [ -70.200855380000093, -54.316094844365253 ], [ -70.055255380000091, -54.249194844365249 ], [ -69.769955380000084, -54.557494844365252 ], [ -69.85915538000009, -54.283094844365252 ], [ -69.241155380000095, -54.446394844365251 ], [ -69.416955380000104, -54.62359484436525 ], [ -69.376355380000092, -54.686694844365249 ], [ -68.99615538000009, -54.46969484436525 ], [ -70.049455380000097, -54.097494844365251 ], [ -70.178355380000085, -53.836894844365254 ], [ -69.353855380000084, -53.506094844365251 ], [ -69.364155380000085, -53.342194844365252 ], [ -70.227755380000104, -53.472494844365251 ], [ -70.487255380000079, -53.230794844365249 ], [ -70.430255380000091, -53.000794844365252 ], [ -70.1000553800001, -52.911094844365252 ], [ -70.397555380000085, -52.748094844365255 ], [ -69.917255380000086, -52.825794844365255 ], [ -69.420555380000081, -52.458094844365249 ], [ -69.151655380000079, -52.684494844365254 ] ], [ [ -70.870255380000089, -54.686394844365253 ], [ -70.910155380000106, -54.705494844365255 ], [ -70.771355380000102, -54.681094844365255 ], [ -70.808055380000098, -54.675294844365254 ], [ -70.870255380000089, -54.686394844365253 ] ] ], [ [ [ -73.807555380000082, -52.69829484436525 ], [ -74.077755380000099, -52.606694844365251 ], [ -73.742255380000103, -52.403594844365252 ], [ -73.67135538000008, -52.481694844365251 ], [ -73.807555380000082, -52.69829484436525 ] ] ], [ [ [ -74.739455380000095, -52.316994844365254 ], [ -74.820555380000087, -52.229494844365249 ], [ -74.620055380000082, -52.207794844365253 ], [ -74.686155380000088, -52.298294844365252 ], [ -74.739455380000095, -52.316994844365254 ] ] ], [ [ [ -73.808055380000098, -52.397194844365252 ], [ -73.881655380000097, -52.36139484436525 ], [ -74.092755380000085, -52.161994844365253 ], [ -73.789155380000096, -52.26419484436525 ], [ -73.808055380000098, -52.397194844365252 ] ] ], [ [ [ -74.194155380000097, -52.136694844365252 ], [ -73.938055380000094, -52.317194844365254 ], [ -73.93505538000008, -52.33719484436525 ], [ -74.139755380000082, -52.396394844365254 ], [ -74.145855380000086, -52.197194844365249 ], [ -74.418655380000104, -52.139694844365252 ], [ -74.194155380000097, -52.136694844365252 ] ] ], [ [ [ -74.762555380000094, -52.188294844365252 ], [ -74.785255380000081, -52.121394844365248 ], [ -74.596155380000084, -52.073594844365253 ], [ -74.683055380000098, -52.169194844365251 ], [ -74.762555380000094, -52.188294844365252 ] ] ], [ [ [ -74.360555380000079, -52.077194844365252 ], [ -74.396455380000106, -52.076594844365253 ], [ -74.405855380000105, -52.047194844365251 ], [ -74.354155380000094, -52.056094844365255 ], [ -74.360555380000079, -52.077194844365252 ] ] ], [ [ [ -74.717255380000097, -52.08719484436525 ], [ -74.551955380000095, -51.927494844365249 ], [ -74.487755380000095, -51.957194844365254 ], [ -74.499755380000096, -52.004194844365252 ], [ -74.717255380000097, -52.08719484436525 ] ] ], [ [ [ -73.694755380000089, -52.241694844365249 ], [ -74.112755380000095, -51.99859484436525 ], [ -74.095255380000083, -51.922794844365249 ], [ -73.768055380000078, -52.068294844365255 ], [ -73.694755380000089, -52.241694844365249 ] ] ], [ [ [ -74.863655380000097, -52.13919484436525 ], [ -74.746955380000088, -51.833894844365254 ], [ -74.599155380000099, -51.840594844365249 ], [ -74.769755380000106, -52.083594844365251 ], [ -74.863655380000097, -52.13919484436525 ] ] ], [ [ [ -75.089755380000099, -51.901694844365252 ], [ -75.070855380000097, -51.740294844365252 ], [ -74.972455380000099, -51.723594844365252 ], [ -75.007755380000106, -51.855794844365249 ], [ -75.089755380000099, -51.901694844365252 ] ] ], [ [ [ -74.144755380000106, -51.951394844365254 ], [ -74.3774553800001, -51.889694844365252 ], [ -74.505255380000079, -51.714194844365252 ], [ -74.092255380000097, -51.874994844365254 ], [ -74.144755380000106, -51.951394844365254 ] ] ], [ [ [ -73.79665538000009, -51.819194844365249 ], [ -73.849155380000099, -51.809694844365254 ], [ -73.9399553800001, -51.663094844365254 ], [ -73.793355380000094, -51.728594844365254 ], [ -73.79665538000009, -51.819194844365249 ] ] ], [ [ [ -74.781155380000087, -51.821694844365254 ], [ -74.884455380000105, -52.045594844365255 ], [ -74.969755380000095, -52.118094844365253 ], [ -75.059755380000098, -51.970594844365252 ], [ -74.82975538000008, -51.84169484436525 ], [ -74.932555380000082, -51.643594844365253 ], [ -74.789455380000078, -51.648294844365253 ], [ -74.781155380000087, -51.821694844365254 ] ] ], [ [ [ -74.055055380000084, -51.55359484436525 ], [ -73.926155380000097, -51.756994844365252 ], [ -73.9399553800001, -51.785794844365249 ], [ -74.238055380000105, -51.701394844365254 ], [ -74.055055380000084, -51.55359484436525 ] ] ], [ [ [ -74.117755380000091, -51.45449484436525 ], [ -74.245255380000089, -51.404494844365253 ], [ -74.261355380000083, -51.30059484436525 ], [ -74.171155380000101, -51.285794844365249 ], [ -74.117755380000091, -51.45449484436525 ] ] ], [ [ [ -75.000255380000084, -51.395594844365249 ], [ -75.155855380000105, -51.57969484436525 ], [ -75.310255380000086, -51.634194844365254 ], [ -75.205255380000096, -51.299194844365253 ], [ -75.000255380000084, -51.395594844365249 ] ] ], [ [ [ -73.781355380000093, -51.371394844365248 ], [ -73.86945538000009, -51.358094844365255 ], [ -73.914455380000078, -51.299994844365251 ], [ -73.791355380000084, -51.261094844365253 ], [ -73.781355380000093, -51.371394844365248 ] ] ], [ [ [ -74.045855380000091, -51.379194844365252 ], [ -74.103355380000096, -51.359694844365251 ], [ -74.097255380000092, -51.225794844365254 ], [ -73.968055380000095, -51.244194844365254 ], [ -74.045855380000091, -51.379194844365252 ] ] ], [ [ [ -74.536155380000082, -51.27919484436525 ], [ -74.600555380000088, -51.406994844365251 ], [ -75.021155380000096, -51.468294844365253 ], [ -74.793855380000082, -51.209494844365253 ], [ -74.536155380000082, -51.27919484436525 ] ] ], [ [ [ -74.995555380000098, -51.177194844365253 ], [ -74.9399553800001, -51.098594844365252 ], [ -74.857255380000083, -51.135294844365255 ], [ -74.870255380000089, -51.15889484436525 ], [ -74.995555380000098, -51.177194844365253 ] ] ], [ [ [ -74.411655380000099, -51.208294844365248 ], [ -74.573855380000083, -51.159994844365251 ], [ -74.603055380000086, -51.077494844365255 ], [ -74.466655380000105, -51.028294844365249 ], [ -74.411655380000099, -51.208294844365248 ] ] ], [ [ [ -74.263355380000093, -51.247794844365252 ], [ -74.33775538000009, -51.028894844365254 ], [ -74.322255380000087, -50.919694844365253 ], [ -74.19135538000009, -51.195594844365253 ], [ -74.263355380000093, -51.247794844365252 ] ] ], [ [ [ -74.396655380000084, -50.860594844365252 ], [ -74.405555380000095, -51.089694844365255 ], [ -74.482255380000083, -50.997794844365252 ], [ -74.720555380000093, -51.111994844365249 ], [ -74.964755380000099, -50.965794844365249 ], [ -74.616155380000095, -50.89499484436525 ], [ -74.657455380000101, -50.726694844365255 ], [ -74.396655380000084, -50.860594844365252 ] ] ], [ [ [ -74.689155380000102, -50.890794844365253 ], [ -74.928355380000085, -50.854494844365249 ], [ -74.95475538000008, -50.731094844365252 ], [ -74.748855380000094, -50.701994844365252 ], [ -74.689155380000102, -50.890794844365253 ] ] ], [ [ [ -74.993855380000099, -50.813894844365251 ], [ -75.109755380000081, -50.73639484436525 ], [ -75.070855380000097, -50.652194844365255 ], [ -74.979755380000086, -50.664494844365251 ], [ -74.993855380000099, -50.813894844365251 ] ] ], [ [ [ -74.651355380000098, -50.588594844365254 ], [ -74.685855380000106, -50.52169484436525 ], [ -74.581655380000086, -50.53219484436525 ], [ -74.600255380000078, -50.566394844365249 ], [ -74.651355380000098, -50.588594844365254 ] ] ], [ [ [ -75.096355380000091, -50.516394844365252 ], [ -75.274755380000101, -50.584694844365252 ], [ -75.288855380000086, -50.785794844365249 ], [ -75.515055380000092, -50.663094844365254 ], [ -75.37115538000009, -50.61609484436525 ], [ -75.416655380000094, -50.467194844365252 ], [ -75.096355380000091, -50.516394844365252 ] ] ], [ [ [ -74.363855380000103, -50.491394844365253 ], [ -74.181155380000092, -50.770294844365253 ], [ -74.193355380000099, -50.848294844365249 ], [ -74.515055380000092, -50.733094844365255 ], [ -74.423655380000099, -50.523594844365249 ], [ -74.670055380000093, -50.479494844365249 ], [ -74.363855380000103, -50.491394844365253 ] ] ], [ [ [ -74.738355380000087, -50.499994844365254 ], [ -74.753055380000092, -50.388294844365255 ], [ -74.543655380000104, -50.381394844365254 ], [ -74.557555380000082, -50.405594844365254 ], [ -74.738355380000087, -50.499994844365254 ] ] ], [ [ [ -75.048655380000099, -50.166994844365249 ], [ -74.789755380000088, -50.149394844365254 ], [ -75.214155380000079, -50.436694844365249 ], [ -75.322755380000103, -50.413294844365254 ], [ -75.198655380000105, -50.309494844365254 ], [ -75.458655380000096, -50.364194844365251 ], [ -75.374455380000086, -50.148294844365253 ], [ -75.143655380000098, -50.246394844365248 ], [ -75.399755380000101, -50.03669484436525 ], [ -75.048655380000099, -50.166994844365249 ] ] ], [ [ [ -75.30695538000009, -49.671994844365251 ], [ -75.173855380000106, -49.903094844365249 ], [ -75.591955380000087, -49.78389484436525 ], [ -75.55865538000009, -49.623894844365253 ], [ -75.30695538000009, -49.671994844365251 ] ] ], [ [ [ -75.480555380000084, -49.547194844365251 ], [ -75.565555380000092, -49.501394844365251 ], [ -75.578855380000078, -49.464694844365255 ], [ -75.484455380000099, -49.481094844365252 ], [ -75.480555380000084, -49.547194844365251 ] ] ], [ [ [ -74.294155380000092, -49.560594844365255 ], [ -74.419455380000102, -49.627794844365255 ], [ -74.435855380000106, -49.427494844365249 ], [ -74.339155380000079, -49.478594844365254 ], [ -74.294155380000092, -49.560594844365255 ] ] ], [ [ [ -74.920555380000081, -49.294994844365249 ], [ -75.045855380000091, -49.205294844365248 ], [ -75.237255380000079, -49.137194844365254 ], [ -74.972455380000099, -49.031094844365249 ], [ -74.920555380000081, -49.294994844365249 ] ] ], [ [ [ -75.2858553800001, -49.100294844365251 ], [ -75.514155380000091, -49.271994844365253 ], [ -75.656355380000093, -49.216994844365253 ], [ -75.35885538000008, -48.985594844365252 ], [ -75.2858553800001, -49.100294844365251 ] ] ], [ [ [ -75.281355380000093, -48.889994844365255 ], [ -75.257755380000106, -49.081994844365255 ], [ -75.322555380000097, -48.95449484436525 ], [ -75.499955380000102, -49.046394844365253 ], [ -75.656655380000103, -48.938894844365251 ], [ -75.281355380000093, -48.889994844365255 ] ] ], [ [ [ -75.176155380000097, -48.999694844365251 ], [ -75.226355380000086, -48.966994844365253 ], [ -75.312455380000102, -48.799994844365251 ], [ -75.082255380000106, -48.88919484436525 ], [ -75.176155380000097, -48.999694844365251 ] ] ], [ [ [ -74.979455380000104, -48.742494844365254 ], [ -74.991355380000101, -48.648894844365252 ], [ -74.825555380000083, -48.66169484436525 ], [ -74.935855380000106, -48.731394844365255 ], [ -74.979455380000104, -48.742494844365254 ] ] ], [ [ [ -75.281655380000103, -48.713294844365251 ], [ -75.491355380000101, -48.780794844365253 ], [ -75.654755380000097, -48.768094844365251 ], [ -75.348055380000091, -48.635594844365251 ], [ -75.281655380000103, -48.713294844365251 ] ] ], [ [ [ -75.120555380000098, -48.833594844365251 ], [ -75.248355380000106, -48.771394844365254 ], [ -75.071355380000085, -48.63449484436525 ], [ -75.05665538000008, -48.702494844365255 ], [ -75.120555380000098, -48.833594844365251 ] ] ], [ [ [ -75.322555380000097, -48.604194844365253 ], [ -75.60115538000008, -48.691994844365254 ], [ -75.44135538000009, -48.613594844365252 ], [ -75.649755380000101, -48.618594844365255 ], [ -75.6505553800001, -48.481994844365246 ], [ -75.346355380000091, -48.431394844365258 ], [ -75.322555380000097, -48.604194844365253 ] ] ], [ [ [ -74.411355380000089, -48.529994844365248 ], [ -74.504955380000098, -48.431394844365258 ], [ -74.497755380000086, -48.399194844365255 ], [ -74.301955380000095, -48.475794844365254 ], [ -74.411355380000089, -48.529994844365248 ] ] ], [ [ [ -74.049155380000087, -48.446094844365248 ], [ -74.074155380000093, -48.49109484436525 ], [ -74.248855380000094, -48.376394844365251 ], [ -74.175255380000095, -48.369494844365249 ], [ -74.049155380000087, -48.446094844365248 ] ] ], [ [ [ -74.264455380000101, -48.466994844365246 ], [ -74.461655380000082, -48.385294844365248 ], [ -74.491655380000083, -48.35109484436525 ], [ -74.306355380000099, -48.286694844365257 ], [ -74.264455380000101, -48.466994844365246 ] ] ], [ [ [ -74.608355380000091, -48.455794844365258 ], [ -74.442455380000098, -49.227794844365249 ], [ -74.601955380000078, -49.714494844365255 ], [ -74.471155380000084, -49.624194844365249 ], [ -74.412755380000078, -49.732494844365249 ], [ -74.474155380000099, -49.944494844365252 ], [ -74.771155380000096, -50.054994844365254 ], [ -74.87255538000008, -50.001394844365251 ], [ -74.6625553800001, -49.955294844365248 ], [ -74.896155380000096, -49.95449484436525 ], [ -74.920055380000093, -49.68309484436525 ], [ -74.646355380000102, -49.35559484436525 ], [ -75.004955380000098, -49.508094844365253 ], [ -75.01725538000008, -49.899394844365254 ], [ -75.471155380000084, -49.331694844365252 ], [ -75.167555380000096, -49.502494844365252 ], [ -75.320855380000097, -49.264994844365255 ], [ -75.163055380000088, -49.341394844365254 ], [ -75.0863553800001, -49.199194844365252 ], [ -74.918055380000084, -49.336094844365249 ], [ -74.827255380000082, -49.095794844365251 ], [ -75.051355380000103, -48.798294844365252 ], [ -74.611155380000099, -48.697094844365253 ], [ -75.028655380000089, -48.494994844365252 ], [ -74.708655380000096, -48.454194844365247 ], [ -74.734955380000088, -48.123094844365255 ], [ -74.608355380000091, -48.455794844365258 ] ] ], [ [ [ -74.418855380000082, -48.304694844365258 ], [ -74.53725538000009, -48.333894844365247 ], [ -74.59975538000009, -48.151694844365252 ], [ -74.390255380000099, -48.22609484436525 ], [ -74.418855380000082, -48.304694844365258 ] ] ], [ [ [ -74.924955380000085, -48.155794844365246 ], [ -74.803855380000101, -48.181094844365248 ], [ -74.836955380000092, -48.361994844365256 ], [ -75.044155380000092, -48.443594844365251 ], [ -75.256955380000079, -48.07329484436525 ], [ -74.924955380000085, -48.155794844365246 ] ] ], [ [ [ -75.239455380000095, -48.270594844365249 ], [ -75.071955380000105, -48.596094844365254 ], [ -75.234455380000099, -48.711394844365252 ], [ -75.295055380000093, -48.436694844365249 ], [ -75.555855380000082, -48.408594844365254 ], [ -75.344155380000103, -48.295794844365247 ], [ -75.543355380000094, -48.323594844365246 ], [ -75.582455380000084, -48.086694844365255 ], [ -75.344155380000103, -48.010294844365248 ], [ -75.239455380000095, -48.270594844365249 ] ] ], [ [ [ -74.805255380000091, -47.898094844365247 ], [ -74.8697553800001, -48.069194844365256 ], [ -75.266655380000088, -48.031994844365258 ], [ -74.834455380000094, -47.807794844365247 ], [ -74.805255380000091, -47.898094844365247 ] ] ], [ [ [ -73.924455380000097, -47.886094844365246 ], [ -73.799755380000079, -47.887794844365246 ], [ -74.498855380000094, -47.923094844365252 ], [ -74.278055380000097, -47.801394844365248 ], [ -73.924455380000097, -47.886094844365246 ] ] ], [ [ [ -75.131955380000079, -47.848894844365248 ], [ -75.198855380000083, -47.863294844365257 ], [ -75.303655380000095, -47.773294844365253 ], [ -75.134455380000105, -47.69829484436525 ], [ -75.131955380000079, -47.848894844365248 ] ] ], [ [ [ -74.95475538000008, -47.783094844365252 ], [ -75.044755380000083, -47.763594844365258 ], [ -75.075255380000101, -47.694494844365252 ], [ -74.951355380000081, -47.706394844365249 ], [ -74.95475538000008, -47.783094844365252 ] ] ], [ [ [ -74.455255380000096, -47.176994844365254 ], [ -74.48415538000009, -47.083294844365255 ], [ -74.313055380000094, -47.062794844365257 ], [ -74.332755380000094, -47.108594844365257 ], [ -74.455255380000096, -47.176994844365254 ] ] ], [ [ [ -74.154455380000087, -47.172494844365247 ], [ -74.18365538000009, -47.025294844365249 ], [ -73.975255380000078, -47.047494844365247 ], [ -74.080555380000078, -47.149194844365255 ], [ -74.154455380000087, -47.172494844365247 ] ] ], [ [ [ -73.765055380000092, -46.211094844365249 ], [ -73.93165538000008, -46.077794844365258 ], [ -73.91225538000009, -46.020294844365253 ], [ -73.68335538000008, -46.07669484436525 ], [ -73.765055380000092, -46.211094844365249 ] ] ], [ [ [ -73.681155380000092, -46.028294844365249 ], [ -73.819455380000079, -45.998894844365253 ], [ -73.778055380000097, -45.904994844365248 ], [ -73.708655380000096, -45.925294844365254 ], [ -73.681155380000092, -46.028294844365249 ] ] ], [ [ [ -74.715555380000097, -45.851994844365251 ], [ -74.910555380000091, -46.104494844365249 ], [ -75.083055380000104, -46.088594844365247 ], [ -74.949155380000093, -46.011394844365256 ], [ -75.101955380000078, -45.874194844365249 ], [ -74.715555380000097, -45.851994844365251 ] ] ], [ [ [ -73.703855380000078, -45.842794844365258 ], [ -73.696655380000095, -45.894994844365257 ], [ -73.801355380000103, -45.883094844365246 ], [ -73.928855380000101, -45.975794844365254 ], [ -73.884155380000095, -45.858594844365257 ], [ -73.703855380000078, -45.842794844365258 ] ] ], [ [ [ -74.015055380000092, -45.917794844365247 ], [ -74.106955380000102, -45.788294844365254 ], [ -74.03865538000008, -45.73639484436525 ], [ -73.965555380000097, -45.754194844365259 ], [ -74.015055380000092, -45.917794844365247 ] ] ], [ [ [ -74.752755380000082, -45.707794844365253 ], [ -74.876655380000102, -45.649694844365257 ], [ -74.86915538000008, -45.605794844365249 ], [ -74.799455380000097, -45.617194844365258 ], [ -74.752755380000082, -45.707794844365253 ] ] ], [ [ [ -74.620255380000089, -45.756994844365252 ], [ -74.682555380000082, -45.636994844365248 ], [ -74.548655380000099, -45.577494844365248 ], [ -74.549455380000097, -45.687194844365251 ], [ -74.620255380000089, -45.756994844365252 ] ] ], [ [ [ -73.986955380000097, -45.724694844365246 ], [ -74.115255380000093, -45.603594844365247 ], [ -74.028855380000095, -45.53859484436525 ], [ -73.896155380000096, -45.620594844365257 ], [ -73.986955380000097, -45.724694844365246 ] ] ], [ [ [ -74.458655380000096, -45.77919484436525 ], [ -74.466655380000105, -45.538894844365245 ], [ -74.390255380000099, -45.443894844365246 ], [ -74.210055380000085, -45.636094844365246 ], [ -74.458655380000096, -45.77919484436525 ] ] ], [ [ [ -73.645555380000104, -45.75949484436525 ], [ -73.781955380000085, -45.670294844365259 ], [ -73.700555380000083, -45.443894844365246 ], [ -73.580855380000088, -45.474994844365256 ], [ -73.645555380000104, -45.75949484436525 ] ] ], [ [ [ -74.504455380000081, -45.539494844365251 ], [ -74.570055380000099, -45.52919484436525 ], [ -74.438055380000094, -45.42389484436525 ], [ -74.493855380000099, -45.494994844365252 ], [ -74.504455380000081, -45.539494844365251 ] ] ], [ [ [ -74.017755380000096, -45.433094844365257 ], [ -73.831355380000105, -45.452794844365258 ], [ -73.815855380000102, -45.475794844365254 ], [ -73.865855380000085, -45.569694844365259 ], [ -74.041355380000084, -45.51719484436525 ], [ -74.144755380000106, -45.576394844365254 ], [ -74.017755380000096, -45.433094844365257 ] ] ], [ [ [ -73.896955380000094, -45.434194844365251 ], [ -74.014755380000082, -45.413894844365245 ], [ -74.024155380000082, -45.400294844365249 ], [ -73.825555380000083, -45.373094844365255 ], [ -73.896955380000094, -45.434194844365251 ] ] ], [ [ [ -74.341355380000095, -45.406094844365256 ], [ -74.482255380000083, -45.358294844365247 ], [ -74.527755380000087, -45.30529484436525 ], [ -74.387255380000084, -45.288094844365247 ], [ -74.341355380000095, -45.406094844365256 ] ] ], [ [ [ -73.976655380000096, -45.267494844365245 ], [ -73.831155380000098, -45.263094844365256 ], [ -73.783055380000093, -45.335294844365251 ], [ -74.166155380000106, -45.250594844365253 ], [ -73.976655380000096, -45.267494844365245 ] ] ], [ [ [ -74.308855380000097, -45.305794844365252 ], [ -74.418855380000082, -45.24279484436525 ], [ -74.394755380000106, -45.154494844365246 ], [ -74.270555380000104, -45.214194844365252 ], [ -74.308855380000097, -45.305794844365252 ] ] ], [ [ [ -73.846655380000101, -45.002794844365255 ], [ -73.731355380000082, -45.284494844365256 ], [ -74.235855380000089, -45.160294844365254 ], [ -74.179755380000103, -45.030294844365258 ], [ -73.846655380000101, -45.002794844365255 ] ] ], [ [ [ -73.980255380000102, -44.984494844365258 ], [ -74.277255380000099, -45.030794844365246 ], [ -74.366655380000083, -45.010594844365258 ], [ -74.168355380000094, -44.866694844365256 ], [ -73.980255380000102, -44.984494844365258 ] ] ], [ [ [ -75.069455380000079, -44.92559484436525 ], [ -75.148055380000102, -44.839994844365251 ], [ -75.111655380000087, -44.778294844365249 ], [ -75.023055380000102, -44.84639484436525 ], [ -75.069455380000079, -44.92559484436525 ] ] ], [ [ [ -74.026155380000091, -44.856994844365246 ], [ -74.067255380000091, -44.857494844365249 ], [ -74.186655380000104, -44.812494844365247 ], [ -73.957755380000094, -44.783594844365254 ], [ -74.026155380000091, -44.856994844365246 ] ] ], [ [ [ -73.793655380000104, -44.964994844365251 ], [ -73.924155380000087, -44.89219484436525 ], [ -73.917755380000102, -44.781694844365248 ], [ -73.833655380000096, -44.786994844365253 ], [ -73.793655380000104, -44.964994844365251 ] ] ], [ [ [ -73.651155380000091, -44.844494844365258 ], [ -73.745055380000082, -44.813094844365253 ], [ -73.748855380000094, -44.756394844365246 ], [ -73.608355380000091, -44.74109484436525 ], [ -73.651155380000091, -44.844494844365258 ] ] ], [ [ [ -74.376955380000084, -44.859494844365258 ], [ -74.464155380000079, -44.831394844365249 ], [ -74.526355380000098, -44.741994844365252 ], [ -74.429455380000093, -44.719494844365258 ], [ -74.376955380000084, -44.859494844365258 ] ] ], [ [ [ -74.455555380000078, -44.693894844365246 ], [ -74.62885538000009, -44.69829484436525 ], [ -74.673655380000099, -44.668594844365245 ], [ -74.57835538000009, -44.619994844365252 ], [ -74.455555380000078, -44.693894844365246 ] ] ], [ [ [ -74.209755380000104, -44.784494844365256 ], [ -74.409755380000092, -44.63449484436525 ], [ -73.873355380000106, -44.686994844365245 ], [ -73.875555380000094, -44.697194844365256 ], [ -74.209755380000104, -44.784494844365256 ] ] ], [ [ [ -74.777255380000099, -44.687494844365247 ], [ -74.825055380000094, -44.628594844365253 ], [ -74.804155380000083, -44.549194844365246 ], [ -74.72615538000008, -44.597794844365254 ], [ -74.777255380000099, -44.687494844365247 ] ] ], [ [ [ -73.745555380000098, -44.743594844365248 ], [ -73.823055380000085, -44.571694844365254 ], [ -73.688655380000085, -44.544494844365246 ], [ -73.589755380000099, -44.709694844365245 ], [ -73.745555380000098, -44.743594844365248 ] ] ], [ [ [ -74.2952553800001, -44.577194844365252 ], [ -74.368355380000082, -44.532794844365256 ], [ -74.139155380000091, -44.55059484436525 ], [ -74.189755380000094, -44.560594844365255 ], [ -74.2952553800001, -44.577194844365252 ] ] ], [ [ [ -74.019755380000106, -44.556694844365254 ], [ -74.129455380000081, -44.532494844365246 ], [ -74.129455380000081, -44.44829484436525 ], [ -73.959455380000094, -44.482794844365259 ], [ -74.019755380000106, -44.556694844365254 ] ] ], [ [ [ -74.4125553800001, -44.512794844365246 ], [ -74.547455380000088, -44.468094844365254 ], [ -74.217755380000085, -44.468094844365254 ], [ -74.221655380000101, -44.478094844365245 ], [ -74.4125553800001, -44.512794844365246 ] ] ], [ [ [ -73.844155380000103, -44.464494844365248 ], [ -73.902255380000099, -44.456994844365255 ], [ -73.904155380000105, -44.374994844365247 ], [ -73.78865538000008, -44.422494844365247 ], [ -73.844155380000103, -44.464494844365248 ] ] ], [ [ [ -72.722755380000081, -44.549194844365246 ], [ -72.983355380000091, -44.606094844365245 ], [ -72.843855380000093, -44.714494844365248 ], [ -73.22475538000009, -44.939194844365247 ], [ -73.407755380000083, -44.820594844365246 ], [ -73.207255380000106, -44.798594844365255 ], [ -73.464755380000099, -44.644494844365255 ], [ -72.998055380000096, -44.367194844365258 ], [ -72.722755380000081, -44.549194844365246 ] ] ], [ [ [ -73.688855380000092, -44.439694844365249 ], [ -73.713855380000098, -44.436994844365245 ], [ -73.788055380000088, -44.381994844365252 ], [ -73.652755380000087, -44.352794844365249 ], [ -73.688855380000092, -44.439694844365249 ] ] ], [ [ [ -73.929455380000093, -44.448094844365258 ], [ -74.082255380000106, -44.388894844365254 ], [ -74.105555380000084, -44.322794844365248 ], [ -73.930855380000082, -44.355594844365257 ], [ -73.929455380000093, -44.448094844365258 ] ] ], [ [ [ -73.241955380000093, -44.388294844365248 ], [ -73.303355380000085, -44.363294844365257 ], [ -73.249755380000096, -44.310794844365248 ], [ -73.168855380000082, -44.369994844365252 ], [ -73.241955380000093, -44.388294844365248 ] ] ], [ [ [ -73.846955380000082, -44.338094844365258 ], [ -73.958355380000086, -44.323594844365246 ], [ -73.973855380000089, -44.281994844365258 ], [ -73.802255380000105, -44.270794844365255 ], [ -73.846955380000082, -44.338094844365258 ] ] ], [ [ [ -74.291655380000094, -44.306394844365258 ], [ -74.3988553800001, -44.292194844365255 ], [ -74.42135538000008, -44.262794844365246 ], [ -74.327255380000082, -44.246394844365255 ], [ -74.291655380000094, -44.306394844365258 ] ] ], [ [ [ -73.7113553800001, -44.304194844365256 ], [ -73.753355380000102, -44.291694844365253 ], [ -73.761155380000105, -44.253894844365249 ], [ -73.665555380000086, -44.251394844365251 ], [ -73.7113553800001, -44.304194844365256 ] ] ], [ [ [ -74.011655380000093, -44.284194844365246 ], [ -74.126155380000085, -44.207794844365253 ], [ -74.067255380000091, -44.151994844365248 ], [ -73.950855380000093, -44.240594844365248 ], [ -74.011655380000093, -44.284194844365246 ] ] ], [ [ [ -74.320055380000099, -44.194994844365254 ], [ -74.342555380000078, -44.189494844365257 ], [ -74.385555380000085, -44.154494844365246 ], [ -74.259155380000095, -44.159494844365256 ], [ -74.320055380000099, -44.194994844365254 ] ] ], [ [ [ -73.852755380000104, -44.195794844365253 ], [ -73.97445538000008, -44.182194844365256 ], [ -74.011155380000105, -44.141994844365257 ], [ -73.922255380000081, -44.098894844365248 ], [ -73.852755380000104, -44.195794844365253 ] ] ], [ [ [ -74.293355380000094, -44.031994844365258 ], [ -74.319455380000079, -44.01719484436525 ], [ -74.20475538000008, -44.019194844365245 ], [ -74.255555380000089, -44.028594844365259 ], [ -74.293355380000094, -44.031994844365258 ] ] ], [ [ [ -73.646155380000096, -44.131394844365246 ], [ -73.756655380000097, -43.994494844365249 ], [ -73.728655380000106, -43.938894844365251 ], [ -73.634455380000105, -44.009994844365252 ], [ -73.646155380000096, -44.131394844365246 ] ] ], [ [ [ -73.155055380000078, -44.022794844365251 ], [ -73.275855380000081, -43.994194844365254 ], [ -73.269455380000096, -43.920794844365247 ], [ -73.148055380000102, -43.888294844365248 ], [ -73.155055380000078, -44.022794844365251 ] ] ], [ [ [ -73.855555380000084, -43.765794844365246 ], [ -73.765055380000092, -43.893294844365258 ], [ -74.172455380000088, -43.877794844365255 ], [ -74.128055380000092, -43.805794844365252 ], [ -73.855555380000084, -43.765794844365246 ] ] ], [ [ [ -74.646155380000096, -43.612494844365258 ], [ -74.793855380000082, -43.647794844365251 ], [ -74.862455380000085, -43.562494844365247 ], [ -74.761155380000105, -43.527794844365246 ], [ -74.646155380000096, -43.612494844365258 ] ] ], [ [ [ -73.391855380000095, -42.998494844365254 ], [ -73.456355380000105, -42.997494844365249 ], [ -73.610255380000098, -42.932194844365256 ], [ -73.552555380000086, -42.917494844365251 ], [ -73.391855380000095, -42.998494844365254 ] ] ], [ [ [ -73.597455380000099, -42.618094844365245 ], [ -73.609755380000081, -42.644994844365257 ], [ -73.753055380000092, -42.611694844365246 ], [ -73.618855380000099, -42.57029484436525 ], [ -73.597455380000099, -42.618094844365245 ] ] ], [ [ [ -73.416655380000094, -42.556394844365258 ], [ -73.623655380000088, -42.449694844365254 ], [ -73.652755380000087, -42.381394844365246 ], [ -73.5358553800001, -42.384994844365252 ], [ -73.416655380000094, -42.556394844365258 ] ] ], [ [ [ -73.106155380000104, -42.311394844365253 ], [ -73.176155380000097, -42.292794844365247 ], [ -73.189755380000094, -42.251394844365251 ], [ -73.069155380000097, -42.260294844365248 ], [ -73.106155380000104, -42.311394844365253 ] ] ], [ [ [ -72.513055380000083, -42.152494844365251 ], [ -72.607555380000093, -42.114694844365246 ], [ -72.616955380000093, -42.097794844365254 ], [ -72.509455380000105, -42.060794844365248 ], [ -72.513055380000083, -42.152494844365251 ] ] ], [ [ [ -73.885255380000103, -41.815594844365251 ], [ -74.004955380000098, -41.831994844365255 ], [ -73.501155380000085, -41.843294844365246 ], [ -73.368655380000092, -42.250594844365253 ], [ -73.672255380000081, -42.361994844365256 ], [ -73.618055380000101, -42.51719484436525 ], [ -73.820255380000106, -42.507494844365254 ], [ -73.800255380000095, -42.61779484436525 ], [ -73.498855380000094, -42.800794844365257 ], [ -73.653855380000095, -42.93329484436525 ], [ -73.489455380000095, -43.114694844365246 ], [ -73.772555380000085, -43.117194844365258 ], [ -73.714755380000099, -43.370294844365247 ], [ -73.85915538000009, -43.399994844365253 ], [ -74.407755380000083, -43.243594844365248 ], [ -74.177255380000105, -42.884194844365254 ], [ -74.061355380000094, -41.810794844365248 ], [ -73.885255380000103, -41.815594844365251 ] ] ], [ [ [ -73.01585538000009, -41.864494844365254 ], [ -73.089755380000099, -41.844194844365248 ], [ -73.077555380000092, -41.739994844365256 ], [ -73.001155380000085, -41.831394844365249 ], [ -73.01585538000009, -41.864494844365254 ] ] ], [ [ [ -61.87885538000009, -39.242494844365254 ], [ -62.059155380000078, -39.168594844365245 ], [ -62.095255380000083, -39.089194844365252 ], [ -61.89055538000008, -39.13919484436525 ], [ -61.87885538000009, -39.242494844365254 ] ] ], [ [ [ -61.996955380000088, -39.066994844365254 ], [ -62.10915538000009, -39.041394844365257 ], [ -62.132755380000106, -39.018894844365249 ], [ -61.981355380000082, -39.026994844365248 ], [ -61.996955380000088, -39.066994844365254 ] ] ], [ [ [ -80.737855380000099, -33.779494844365246 ], [ -80.774755380000101, -33.741994844365252 ], [ -80.735355380000101, -33.689494844365257 ], [ -80.701655380000091, -33.748994844365257 ], [ -80.737855380000099, -33.779494844365246 ] ] ], [ [ [ -78.772555380000085, -33.623594844365257 ], [ -78.763355380000093, -33.647494844365255 ], [ -78.991655380000083, -33.668094844365257 ], [ -78.888355380000093, -33.580594844365251 ], [ -78.772555380000085, -33.623594844365257 ] ] ], [ [ [ -79.882555380000099, -26.346994844365256 ], [ -79.902555380000081, -26.349494844365253 ], [ -79.906955380000085, -26.34639484436525 ], [ -79.86945538000009, -26.340794844365249 ], [ -79.882555380000099, -26.346994844365256 ] ] ], [ [ [ -80.076955380000101, -26.261694844365252 ], [ -80.082255380000106, -26.26249484436525 ], [ -80.09975538000009, -26.261394844365256 ], [ -80.080555380000078, -26.251394844365251 ], [ -80.076955380000101, -26.261694844365252 ] ] ], [ [ [ -69.483655380000101, -17.635594844365258 ], [ -69.298855380000106, -17.973094844365249 ], [ -69.071655380000095, -18.038894844365245 ], [ -68.907755380000083, -19.05529484436525 ], [ -68.437455380000102, -19.43029484436525 ], [ -68.699755380000084, -19.729994844365251 ], [ -68.523355380000083, -19.916394844365257 ], [ -68.784755380000092, -20.097794844365254 ], [ -68.756955380000079, -20.406994844365258 ], [ -68.466655380000105, -20.628894844365249 ], [ -68.56005538000008, -20.891394844365252 ], [ -68.188655380000085, -21.296994844365258 ], [ -67.793355380000094, -22.878094844365251 ], [ -67.18365538000009, -22.821694844365254 ], [ -66.736655380000087, -22.227494844365253 ], [ -66.30695538000009, -22.076994844365245 ], [ -66.223055380000091, -21.780494844365251 ], [ -65.748055380000096, -22.111694844365246 ], [ -64.594755380000095, -22.211694844365255 ], [ -64.324755380000084, -22.873594844365257 ], [ -63.941155380000083, -22.000794844365245 ], [ -62.811955380000086, -21.996994844365247 ], [ -62.643755380000101, -22.238894844365248 ], [ -62.258955380000089, -21.056994844365249 ], [ -62.269455380000096, -20.562194844365251 ], [ -61.742555380000084, -19.644994844365257 ], [ -59.972855380000084, -19.296994844365258 ], [ -59.095855380000103, -19.348894844365248 ], [ -58.151455380000101, -19.828094844365253 ], [ -58.155855380000105, -20.228594844365247 ], [ -57.814455380000084, -20.971994844365256 ], [ -57.985155380000094, -22.091794844365253 ], [ -56.877555380000103, -22.274194844365255 ], [ -56.403055380000097, -22.065594844365251 ], [ -56.205855380000088, -22.273594844365249 ], [ -55.84975538000009, -22.288894844365245 ], [ -55.609455380000099, -22.633894844365258 ], [ -55.405055380000078, -23.964494844365248 ], [ -55.031455380000097, -23.994494844365249 ], [ -54.627855380000085, -23.803894844365246 ], [ -54.243955380000102, -24.05359484436525 ], [ -54.598955380000092, -25.573194844365247 ], [ -54.104155380000094, -25.493894844365258 ], [ -53.890255380000099, -25.631994844365252 ], [ -53.65025538000009, -26.243894844365258 ], [ -53.838755380000094, -27.171094844365257 ], [ -54.811155380000088, -27.532494844365246 ], [ -55.021655380000084, -27.833894844365247 ], [ -55.765255380000099, -28.22609484436525 ], [ -55.692455380000098, -28.40889484436525 ], [ -55.891355380000078, -28.36779484436525 ], [ -57.607955380000078, -30.184894844365246 ], [ -57.220355380000086, -30.293294844365249 ], [ -57.065855380000102, -30.106094844365245 ], [ -56.790355380000079, -30.115594844365248 ], [ -56.001655380000102, -30.795794844365247 ], [ -56.008955380000089, -31.079794844365253 ], [ -55.576455380000084, -30.848594844365252 ], [ -55.235555380000079, -31.245294844365247 ], [ -54.5880553800001, -31.462794844365249 ], [ -54.2858553800001, -31.804494844365252 ], [ -53.879755380000091, -31.967794844365258 ], [ -53.553355380000085, -32.446094844365248 ], [ -53.093055380000095, -32.729694844365255 ], [ -53.519755380000106, -33.136994844365248 ], [ -53.534455380000082, -33.656994844365258 ], [ -53.374355380000083, -33.740694844365251 ], [ -53.531655380000103, -34.056694844365254 ], [ -54.145055380000088, -34.671394844365253 ], [ -54.325555380000083, -34.562794844365257 ], [ -54.282855380000086, -34.697794844365248 ], [ -54.896155380000096, -34.943594844365251 ], [ -55.685555380000096, -34.77449484436525 ], [ -56.158355380000103, -34.927194844365246 ], [ -57.117855380000094, -34.462194844365257 ], [ -57.840355380000091, -34.494694844365256 ], [ -58.402855380000091, -33.929694844365258 ], [ -58.361955380000097, -33.133294844365253 ], [ -58.146455380000106, -33.101994844365251 ], [ -58.045555380000081, -32.934694844365254 ], [ -58.200755380000089, -32.448594844365246 ], [ -58.147255380000104, -33.051694844365258 ], [ -58.426955380000095, -33.096994844365256 ], [ -58.531955380000085, -33.516994844365257 ], [ -58.383855380000085, -34.055794844365252 ], [ -58.469755380000095, -34.539694844365258 ], [ -57.188355380000104, -35.320594844365246 ], [ -57.376655380000102, -35.962794844365249 ], [ -57.1000553800001, -36.288294844365254 ], [ -56.741655380000083, -36.318294844365255 ], [ -56.663055380000088, -36.900594844365258 ], [ -57.487455380000085, -37.834994844365255 ], [ -57.571655380000095, -38.133094844365246 ], [ -58.301155380000097, -38.484994844365247 ], [ -61.094455380000085, -38.99579484436525 ], [ -61.818055380000089, -38.986094844365255 ], [ -62.381355380000088, -38.798594844365255 ], [ -62.326655380000091, -39.26249484436525 ], [ -62.1625553800001, -39.287494844365256 ], [ -62.019955380000084, -39.378094844365251 ], [ -62.277255380000099, -39.335294844365251 ], [ -62.067755380000079, -39.505594844365248 ], [ -62.116355380000101, -39.839494844365248 ], [ -62.271155380000096, -39.841094844365259 ], [ -62.489455380000095, -40.299494844365256 ], [ -62.259955380000093, -40.559994844365249 ], [ -62.338355380000081, -40.673094844365252 ], [ -62.183855380000097, -40.629694844365247 ], [ -62.390055380000092, -40.901994844365248 ], [ -63.039455380000078, -41.150294844365249 ], [ -63.76585538000009, -41.165794844365251 ], [ -64.800555380000105, -40.722794844365254 ], [ -65.134455380000105, -40.847794844365254 ], [ -65.013655380000102, -42.092194844365252 ], [ -64.462555380000083, -42.263594844365258 ], [ -64.606955380000102, -42.418894844365255 ], [ -64.451955380000101, -42.445794844365253 ], [ -64.049155380000087, -42.383094844365246 ], [ -64.329155380000088, -42.233594844365257 ], [ -63.735555380000079, -42.095294844365256 ], [ -63.587255380000101, -42.328294844365246 ], [ -63.623355380000106, -42.756994844365252 ], [ -64.102255380000088, -42.888094844365256 ], [ -64.449755380000084, -42.507494844365254 ], [ -64.960555380000102, -42.666394844365257 ], [ -64.992755380000091, -42.793594844365245 ], [ -64.295055380000093, -42.991994844365252 ], [ -64.922455380000088, -43.230794844365249 ], [ -65.322555380000097, -43.653094844365256 ], [ -65.249455380000086, -44.313094844365253 ], [ -65.6916553800001, -44.716994844365246 ], [ -65.530555380000095, -44.894994844365257 ], [ -65.604755380000086, -45.016394844365252 ], [ -66.182755380000089, -44.964494844365248 ], [ -66.949455380000103, -45.255594844365248 ], [ -67.620055380000082, -46.076994844365245 ], [ -67.506155380000081, -46.458894844365247 ], [ -66.80665538000008, -46.998294844365248 ], [ -65.779455380000087, -47.189494844365257 ], [ -65.871955380000088, -47.758094844365246 ], [ -66.022555380000085, -47.76079484436525 ], [ -66.113855380000103, -47.817494844365257 ], [ -66.229155380000094, -47.84039484436525 ], [ -66.243655380000092, -47.860294844365256 ], [ -65.964155380000079, -47.784494844365256 ], [ -65.788855380000086, -47.968094844365254 ], [ -65.9613553800001, -47.954194844365247 ], [ -65.964155380000079, -48.092794844365258 ], [ -67.579455380000098, -49.034194844365253 ], [ -67.832755380000094, -49.381694844365249 ], [ -67.605055380000096, -49.259194844365254 ], [ -67.897255380000104, -49.985794844365252 ], [ -68.273355380000083, -50.123294844365255 ], [ -68.592555380000078, -49.92859484436525 ], [ -69.011155380000105, -50.011994844365255 ], [ -68.583655380000096, -49.979494844365249 ], [ -68.370255380000089, -50.14669484436525 ], [ -68.941155380000083, -50.388094844365249 ], [ -69.145255380000094, -50.884194844365254 ], [ -69.408855380000091, -51.077794844365251 ], [ -69.18365538000009, -50.970594844365252 ], [ -68.968055380000095, -51.573894844365249 ], [ -69.374455380000086, -51.556394844365251 ], [ -69.613855380000103, -51.625794844365252 ], [ -68.993355380000082, -51.621394844365248 ], [ -68.390055380000092, -52.34639484436525 ], [ -69.261155380000105, -52.206394844365249 ], [ -69.670555380000081, -52.528094844365249 ], [ -70.811655380000104, -52.732494844365249 ], [ -70.973655380000082, -53.755594844365248 ], [ -71.284755380000092, -53.886394844365249 ], [ -72.111655380000087, -53.689194844365254 ], [ -72.453855380000078, -53.40139484436525 ], [ -72.122255380000098, -53.249994844365254 ], [ -72.238855380000103, -53.436394844365253 ], [ -72.105255380000102, -53.429694844365251 ], [ -71.864455380000095, -53.221694844365253 ], [ -71.78725538000009, -53.44249484436525 ], [ -72.007255380000089, -53.563094844365253 ], [ -71.803055380000103, -53.516394844365252 ], [ -71.752755380000082, -53.454994844365253 ], [ -71.743055380000101, -53.217194844365252 ], [ -71.335855380000083, -53.106094844365252 ], [ -71.170555380000081, -52.80809484436525 ], [ -72.023655380000093, -53.12529484436525 ], [ -72.30865538000009, -53.028894844365254 ], [ -72.552755380000093, -53.074694844365254 ], [ -72.188655380000085, -53.183894844365248 ], [ -72.654155380000105, -53.323894844365249 ], [ -72.40025538000009, -53.540294844365249 ], [ -73.301355380000103, -53.158594844365254 ], [ -72.706155380000098, -53.29309484436525 ], [ -72.793055380000084, -53.178294844365254 ], [ -72.653055380000097, -53.146994844365253 ], [ -72.9399553800001, -53.101694844365255 ], [ -72.915855380000096, -52.824694844365254 ], [ -71.534455380000082, -52.560594844365255 ], [ -72.303855380000101, -52.519694844365254 ], [ -72.422455380000088, -52.656994844365251 ], [ -72.549955380000085, -52.588294844365251 ], [ -72.396355380000102, -52.503594844365253 ], [ -72.799155380000087, -52.539694844365251 ], [ -72.8988553800001, -52.625594844365253 ], [ -72.675255380000095, -52.65889484436525 ], [ -73.005855380000099, -52.854194844365253 ], [ -72.980855380000094, -53.066094844365253 ], [ -73.451155380000102, -53.006694844365249 ], [ -73.234955380000088, -52.889694844365252 ], [ -73.562755380000084, -52.793594844365252 ], [ -73.222755380000081, -52.786094844365252 ], [ -73.101955380000078, -52.506994844365252 ], [ -72.886655380000093, -52.509994844365252 ], [ -73.149755380000101, -52.489694844365253 ], [ -73.269155380000086, -52.673094844365252 ], [ -73.6899553800001, -52.724994844365249 ], [ -73.547755380000098, -52.538894844365252 ], [ -73.731155380000104, -52.034194844365253 ], [ -73.327555380000092, -52.223594844365252 ], [ -72.988655380000097, -52.068594844365251 ], [ -72.986655380000087, -52.187494844365254 ], [ -72.861955380000097, -52.26419484436525 ], [ -72.784755380000092, -52.062194844365251 ], [ -72.878055380000092, -52.205594844365251 ], [ -72.943355380000099, -52.087794844365249 ], [ -72.698355380000095, -51.983294844365254 ], [ -72.570555380000087, -52.31579484436525 ], [ -72.899455380000092, -52.458594844365251 ], [ -72.490855380000085, -52.318894844365254 ], [ -72.669455380000102, -51.96669484436525 ], [ -72.465855380000079, -51.931994844365249 ], [ -72.468855380000093, -51.789194844365255 ], [ -72.718855380000093, -51.580794844365251 ], [ -73.243655380000092, -51.46219484436525 ], [ -72.560855380000106, -51.781694844365255 ], [ -73.281355380000093, -51.610294844365249 ], [ -72.99415538000008, -51.78669484436525 ], [ -73.200855380000093, -51.888594844365251 ], [ -72.924155380000087, -51.86329484436525 ], [ -73.236955380000097, -52.089994844365251 ], [ -73.320855380000097, -51.723294844365249 ], [ -73.386655380000093, -51.655594844365254 ], [ -73.283655380000084, -52.154994844365248 ], [ -73.560855380000106, -52.045294844365252 ], [ -73.636655380000093, -51.819494844365252 ], [ -73.396955380000094, -52.016094844365249 ], [ -73.593355380000105, -51.753894844365249 ], [ -73.461655380000082, -51.687194844365251 ], [ -73.70475538000008, -51.791694844365253 ], [ -73.905855380000105, -51.622494844365249 ], [ -73.894155380000086, -51.369994844365252 ], [ -73.598055380000091, -51.618294844365252 ], [ -73.711655380000082, -51.159694844365255 ], [ -74.086955380000092, -51.207794844365253 ], [ -74.252755380000082, -50.94079484436525 ], [ -73.851355380000086, -50.916694844365253 ], [ -73.747755380000086, -50.659194844365253 ], [ -73.528655380000089, -50.714494844365255 ], [ -73.72475538000009, -50.557794844365255 ], [ -73.56635538000009, -50.401694844365252 ], [ -73.771355380000102, -50.537494844365249 ], [ -73.827555380000092, -50.767794844365248 ], [ -74.048355380000089, -50.827494844365255 ], [ -74.293055380000084, -50.482194844365253 ], [ -73.884755380000087, -50.538894844365252 ], [ -74.693655380000081, -50.203294844365253 ], [ -74.355055380000096, -50.08719484436525 ], [ -74.2036553800001, -50.217794844365251 ], [ -73.865855380000085, -50.293894844365255 ], [ -74.37255538000008, -49.991394844365253 ], [ -73.885055380000097, -50.069494844365252 ], [ -74.303655380000095, -49.891394844365252 ], [ -74.343855380000093, -49.794494844365254 ], [ -74.061955380000086, -49.718094844365254 ], [ -74.2952553800001, -49.743894844365251 ], [ -74.325255380000101, -49.627194844365249 ], [ -73.956655380000086, -49.556094844365255 ], [ -73.889455380000101, -49.662494844365249 ], [ -73.712555380000083, -49.757194844365252 ], [ -73.880255380000079, -49.524194844365255 ], [ -74.111655380000087, -49.480294844365254 ], [ -74.066155380000083, -49.260594844365251 ], [ -73.965255380000087, -49.328894844365252 ], [ -73.842555380000078, -49.35109484436525 ], [ -74.028855380000095, -49.093094844365254 ], [ -73.834155380000084, -49.02919484436525 ], [ -74.043355380000094, -49.021994844365253 ], [ -74.210255380000092, -49.52919484436525 ], [ -74.373855380000094, -49.427494844365249 ], [ -74.449755380000084, -48.812194844365251 ], [ -74.060855380000106, -48.741394844365253 ], [ -74.40025538000009, -48.614494844365254 ], [ -74.04665538000009, -48.547794844365256 ], [ -74.021155380000096, -48.41359484436525 ], [ -74.654455380000087, -48.023894844365245 ], [ -74.415855380000096, -47.986694844365246 ], [ -74.210555380000102, -48.234694844365251 ], [ -74.324455380000103, -47.999994844365247 ], [ -73.774755380000101, -48.028894844365254 ], [ -73.553355380000085, -48.24579484436525 ], [ -73.349155380000099, -48.197494844365252 ], [ -73.283055380000093, -48.151694844365252 ], [ -73.274155380000082, -48.087194844365257 ], [ -73.48415538000009, -48.124694844365251 ], [ -73.654155380000105, -47.903594844365259 ], [ -73.49585538000008, -47.983294844365247 ], [ -73.220855380000103, -48.001094844365255 ], [ -73.710055380000085, -47.784494844365256 ], [ -73.719155380000103, -47.528294844365249 ], [ -73.76725538000008, -47.78219484436525 ], [ -73.934455380000088, -47.846994844365256 ], [ -74.741655380000083, -47.715794844365249 ], [ -74.553655380000095, -47.54889484436525 ], [ -74.371655380000078, -47.592794844365258 ], [ -74.317555380000101, -47.703494844365252 ], [ -74.228855380000084, -47.753594844365253 ], [ -74.254955380000098, -47.629194844365259 ], [ -74.041155380000106, -47.618094844365245 ], [ -74.529155380000105, -47.437794844365257 ], [ -74.316955380000081, -47.218294844365246 ], [ -74.105255380000102, -47.347494844365258 ], [ -73.934455380000088, -47.036094844365252 ], [ -74.265055380000092, -46.785594844365249 ], [ -74.618655380000092, -46.785594844365249 ], [ -74.498855380000094, -46.903294844365249 ], [ -75.013855380000081, -46.750294844365257 ], [ -74.942255380000091, -46.439994844365245 ], [ -75.654755380000097, -46.764994844365248 ], [ -75.420055380000093, -46.713894844365257 ], [ -75.413055380000088, -46.933894844365255 ], [ -75.717555380000078, -46.725294844365251 ], [ -74.821655380000095, -46.112794844365254 ], [ -74.678055380000103, -45.828094844365253 ], [ -74.361155380000099, -45.791094844365247 ], [ -74.14085538000009, -45.805794844365252 ], [ -73.97445538000008, -46.09469484436525 ], [ -74.311655380000104, -46.249194844365249 ], [ -74.49445538000009, -46.190294844365255 ], [ -74.340855380000079, -46.266394844365252 ], [ -74.049755380000079, -46.195594844365246 ], [ -74.004755380000091, -46.289994844365253 ], [ -73.853855380000084, -46.347194844365248 ], [ -74.019955380000084, -46.215794844365249 ], [ -73.882755380000106, -46.141094844365256 ], [ -73.768055380000078, -46.302794844365252 ], [ -73.995055380000082, -46.561394844365253 ], [ -73.841155380000089, -46.588894844365257 ], [ -73.425555380000105, -46.074494844365248 ], [ -73.690855380000102, -46.319194844365256 ], [ -73.663355380000098, -45.973294844365256 ], [ -73.1822553800001, -45.667494844365251 ], [ -73.587255380000101, -45.779694844365252 ], [ -73.51555538000008, -45.454994844365245 ], [ -73.218855380000093, -45.299994844365258 ], [ -73.011355380000083, -45.44999484436525 ], [ -72.827255380000082, -45.422494844365247 ], [ -73.254955380000098, -45.245294844365247 ], [ -73.456155380000098, -45.278094844365256 ], [ -73.299455380000097, -45.141694844365247 ], [ -73.391655380000088, -44.980594844365257 ], [ -73.142455380000087, -44.944494844365252 ], [ -72.7661553800001, -44.753294844365257 ], [ -72.613855380000103, -44.472794844365254 ], [ -73.289455380000078, -44.143594844365253 ], [ -72.845855380000103, -43.776694844365252 ], [ -73.042055380000079, -43.733794844365249 ], [ -73.116355380000101, -43.439694844365249 ], [ -72.865255380000093, -43.020794844365255 ], [ -72.745255380000089, -43.048294844365245 ], [ -72.860855380000089, -42.574494844365248 ], [ -72.534955380000099, -42.559194844365251 ], [ -72.847455380000099, -42.279994844365248 ], [ -72.591655380000105, -42.186094844365257 ], [ -72.42135538000008, -42.453094844365253 ], [ -72.46275538000009, -41.971094844365254 ], [ -72.859455380000099, -41.906994844365258 ], [ -72.350555380000088, -41.652494844365251 ], [ -72.31005538000008, -41.435794844365248 ], [ -72.571355380000085, -41.707794844365253 ], [ -72.946655380000095, -41.483294844365247 ], [ -73.2036553800001, -41.792494844365251 ], [ -73.743055380000101, -41.756694844365256 ], [ -73.682755380000089, -41.624694844365251 ], [ -73.564155380000102, -41.613594844365252 ], [ -73.491955380000093, -41.520794844365255 ], [ -73.868855380000099, -41.482494844365249 ], [ -73.995055380000082, -40.969994844365246 ], [ -73.74755538000008, -40.524694844365257 ], [ -73.714455380000089, -39.978594844365247 ], [ -73.404155380000105, -39.884994844365252 ], [ -73.222455380000099, -39.414694844365258 ], [ -73.518655380000098, -38.537194844365246 ], [ -73.453855380000078, -38.055594844365245 ], [ -73.669455380000102, -37.72609484436525 ], [ -73.679455380000093, -37.335594844365247 ], [ -73.591655380000105, -37.145294844365253 ], [ -73.198655380000105, -37.154694844365252 ], [ -73.129455380000081, -36.682494844365252 ], [ -72.9827553800001, -36.701994844365245 ], [ -72.798055380000079, -35.976994844365251 ], [ -72.588855380000098, -35.796694844365248 ], [ -72.651955380000089, -35.582494844365257 ], [ -72.21275538000009, -35.091994844365246 ], [ -72.016355380000078, -34.142794844365255 ], [ -71.655055380000078, -33.662494844365256 ], [ -71.756955380000079, -33.095594844365252 ], [ -71.568655380000081, -33.010594844365258 ], [ -71.405255380000085, -32.393294844365258 ], [ -71.538355380000098, -32.186994844365245 ], [ -71.695855380000097, -30.506694844365256 ], [ -71.287755380000078, -29.896994844365253 ], [ -71.521655380000084, -28.969994844365246 ], [ -70.9108553800001, -27.621994844365247 ], [ -70.966655380000105, -27.179194844365256 ], [ -70.786155380000082, -26.993594844365248 ], [ -70.638055380000083, -26.301394844365248 ], [ -70.733055380000081, -25.805594844365245 ], [ -70.449155380000093, -25.364694844365246 ], [ -70.583855380000102, -24.714994844365251 ], [ -70.3911553800001, -23.561994844365245 ], [ -70.62255538000008, -23.49279484436525 ], [ -70.574755380000084, -23.066994844365254 ], [ -70.285555380000091, -22.889994844365248 ], [ -70.053355380000085, -21.425694844365253 ], [ -70.405455380000092, -18.348594844365252 ], [ -69.965855380000079, -18.256094844365251 ], [ -69.769955380000084, -17.968894844365252 ], [ -69.814755380000094, -17.652194844365255 ], [ -69.499755380000096, -17.505294844365253 ], [ -69.483655380000101, -17.635594844365258 ] ], [ [ -74.069455380000079, -46.006094844365251 ], [ -74.105055380000096, -46.087494844365253 ], [ -74.164455380000078, -46.136694844365252 ], [ -74.072255380000087, -46.097794844365254 ], [ -74.069455380000079, -46.006094844365251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 90, "LEVEL1_COD": 9, "LEVEL1_NAM": "ANTARCTIC", "LEVEL2_NAM": "Subantarctic Islands" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -27.325855380000093, -59.427194844365253 ], [ -27.298055380000079, -59.473094844365249 ], [ -27.4125553800001, -59.434494844365254 ], [ -27.3791553800001, -59.422794844365249 ], [ -27.325855380000093, -59.427194844365253 ] ] ], [ [ [ -26.582855380000098, -59.069994844365254 ], [ -26.628955380000093, -59.064694844365249 ], [ -26.665055380000098, -59.025794844365251 ], [ -26.501155380000085, -59.036994844365253 ], [ -26.582855380000098, -59.069994844365254 ] ] ], [ [ [ -26.2464553800001, -58.407494844365253 ], [ -26.248955380000098, -58.49859484436525 ], [ -26.459155380000084, -58.427194844365253 ], [ -26.416655380000094, -58.383594844365248 ], [ -26.2464553800001, -58.407494844365253 ] ] ], [ [ [ -26.412855380000082, -57.80809484436525 ], [ -26.499155380000104, -57.797794844365249 ], [ -26.512255380000084, -57.771094844365251 ], [ -26.443355380000099, -57.743894844365251 ], [ -26.412855380000082, -57.80809484436525 ] ] ], [ [ [ -26.6608553800001, -57.086394844365252 ], [ -26.686155380000088, -57.088594844365254 ], [ -26.728955380000087, -57.06279484436525 ], [ -26.675855380000087, -57.056394844365251 ], [ -26.6608553800001, -57.086394844365252 ] ] ], [ [ [ -27.108655380000101, -56.717494844365248 ], [ -27.2053553800001, -56.71969484436525 ], [ -27.209755380000104, -56.693594844365251 ], [ -27.129455380000081, -56.682194844365249 ], [ -27.108655380000101, -56.717494844365248 ] ] ], [ [ [ -27.563955380000095, -56.320594844365253 ], [ -27.605355380000105, -56.30079484436525 ], [ -27.6000553800001, -56.281094844365249 ], [ -27.549455380000097, -56.274194844365255 ], [ -27.563955380000095, -56.320594844365253 ] ] ], [ [ [ 158.882144619999906, -54.711394844365252 ], [ 158.833344619999934, -54.749694844365251 ], [ 158.957444619999933, -54.474694844365253 ], [ 158.941944619999902, -54.588094844365251 ], [ 158.882144619999906, -54.711394844365252 ] ] ], [ [ [ -37.03865538000008, -54.511694844365252 ], [ -37.083655380000096, -54.512794844365253 ], [ -37.105855380000094, -54.471094844365254 ], [ -37.043355380000094, -54.481394844365255 ], [ -37.03865538000008, -54.511694844365252 ] ] ], [ [ [ 3.459444619999914, -54.448894844365249 ], [ 3.361344619999898, -54.462794844365249 ], [ 3.341644619999897, -54.43309484436525 ], [ 3.443844619999908, -54.384194844365254 ], [ 3.459444619999914, -54.448894844365249 ] ] ], [ [ [ -37.495055380000082, -54.010594844365251 ], [ -36.656455380000097, -54.107794844365252 ], [ -36.671455380000083, -54.272794844365251 ], [ -36.346155380000084, -54.361694844365253 ], [ -36.397555380000085, -54.246994844365254 ], [ -36.288055380000088, -54.266394844365252 ], [ -35.782555380000105, -54.765594844365253 ], [ -36.09975538000009, -54.763594844365251 ], [ -35.920355380000103, -54.856094844365252 ], [ -36.115855380000085, -54.887194844365254 ], [ -36.519755380000106, -54.498294844365255 ], [ -37.411455380000092, -54.268294844365251 ], [ -37.239455380000095, -54.147794844365251 ], [ -38.033055380000093, -54.04889484436525 ], [ -37.495055380000082, -54.010594844365251 ] ] ], [ [ [ 73.434144619999927, -53.029694844365252 ], [ 73.578844619999927, -53.024394844365254 ], [ 73.7738446199999, -53.124994844365254 ], [ 73.474444619999929, -53.194194844365249 ], [ 73.2344446199999, -52.987794844365254 ], [ 73.434144619999927, -53.029694844365252 ] ] ], [ [ [ -59.6916553800001, -52.24279484436525 ], [ -59.761155380000105, -52.273594844365249 ], [ -59.753355380000102, -52.169994844365249 ], [ -59.683855380000097, -52.172794844365249 ], [ -59.6916553800001, -52.24279484436525 ] ] ], [ [ [ -58.434955380000105, -52.093894844365252 ], [ -58.524155380000082, -52.054994844365254 ], [ -58.533855380000091, -52.024394844365254 ], [ -58.432455380000079, -51.990294844365252 ], [ -58.434955380000105, -52.093894844365252 ] ] ], [ [ [ -61.22445538000008, -51.864694844365253 ], [ -61.283055380000093, -51.854994844365251 ], [ -61.313855380000092, -51.824694844365254 ], [ -61.214955380000106, -51.797194844365251 ], [ -61.22445538000008, -51.864694844365253 ] ] ], [ [ [ -61.034455380000082, -51.869494844365249 ], [ -60.89085538000009, -51.825794844365255 ], [ -60.867755380000091, -51.903294844365249 ], [ -61.149455380000092, -51.848894844365255 ], [ -60.940555380000092, -51.800294844365254 ], [ -61.034455380000082, -51.869494844365249 ] ] ], [ [ [ -61.195855380000097, -51.699494844365255 ], [ -61.284755380000092, -51.756094844365251 ], [ -61.315855380000102, -51.73359484436525 ], [ -61.304955380000081, -51.693094844365248 ], [ -61.195855380000097, -51.699494844365255 ] ] ], [ [ [ -59.210555380000102, -51.410594844365249 ], [ -60.368055380000101, -52.159194844365253 ], [ -60.617455380000081, -52.24559484436525 ], [ -60.980855380000094, -52.061994844365252 ], [ -60.180555380000101, -51.758894844365251 ], [ -60.638355380000093, -51.722194844365255 ], [ -60.16365538000008, -51.661394844365255 ], [ -60.64225538000008, -51.35559484436525 ], [ -60.132255380000089, -51.494694844365249 ], [ -60.019455380000096, -51.37999484436525 ], [ -59.210555380000102, -51.410594844365249 ] ] ], [ [ [ -58.696655380000095, -51.336694844365255 ], [ -58.347455380000099, -51.364194844365251 ], [ -58.550255380000095, -51.433594844365253 ], [ -58.226955380000078, -51.654494844365253 ], [ -58.279455380000087, -51.417494844365251 ], [ -57.91195538000008, -51.376394844365251 ], [ -57.761655380000093, -51.538294844365254 ], [ -58.142755380000096, -51.553894844365253 ], [ -57.731355380000082, -51.692194844365254 ], [ -58.414955380000094, -51.900594844365251 ], [ -58.940555380000092, -51.801994844365254 ], [ -58.646955380000094, -52.067194844365254 ], [ -59.289755380000088, -52.004194844365252 ], [ -59.035255380000081, -52.143894844365249 ], [ -59.449155380000093, -52.140794844365253 ], [ -59.348055380000091, -52.343094844365254 ], [ -59.718055380000095, -52.121094844365253 ], [ -59.228655380000106, -51.71969484436525 ], [ -58.9947553800001, -51.806694844365254 ], [ -59.174155380000087, -51.581094844365253 ], [ -59.008855380000085, -51.569194844365249 ], [ -59.084755380000104, -51.41169484436525 ], [ -58.696655380000095, -51.336694844365255 ] ] ], [ [ [ -59.935555380000096, -51.350794844365254 ], [ -59.984955380000088, -51.334694844365252 ], [ -60.02525538000009, -51.297794844365249 ], [ -59.906155380000087, -51.303094844365255 ], [ -59.935555380000096, -51.350794844365254 ] ] ], [ [ [ -60.110555380000079, -51.405294844365251 ], [ -60.268355380000088, -51.398094844365254 ], [ -60.300255380000095, -51.271394844365254 ], [ -60.068055380000089, -51.307494844365252 ], [ -60.110555380000079, -51.405294844365251 ] ] ], [ [ [ -59.508355380000097, -51.337494844365253 ], [ -59.573655380000105, -51.333594844365251 ], [ -59.811155380000088, -51.269694844365254 ], [ -59.479155380000094, -51.264694844365252 ], [ -59.508355380000097, -51.337494844365253 ] ] ], [ [ [ 69.812744619999933, -49.678094844365255 ], [ 69.793844619999902, -49.678094844365255 ], [ 69.761944619999895, -49.65889484436525 ], [ 69.7949446199999, -49.647194844365252 ], [ 69.812744619999933, -49.678094844365255 ] ] ], [ [ [ 70.011944619999895, -49.57199484436525 ], [ 69.850244619999899, -49.519194844365252 ], [ 69.835544619999894, -49.508094844365253 ], [ 69.921044619999918, -49.513094844365249 ], [ 70.011944619999895, -49.57199484436525 ] ] ], [ [ [ 69.904444619999936, -49.477194844365251 ], [ 69.843044619999887, -49.459494844365253 ], [ 69.825244619999921, -49.42579484436525 ], [ 69.8580446199999, -49.430594844365253 ], [ 69.904444619999936, -49.477194844365251 ] ] ], [ [ [ 68.789144619999888, -49.361694844365253 ], [ 68.699644619999901, -49.362794844365254 ], [ 68.644444619999888, -49.343594844365249 ], [ 68.801644619999934, -49.328294844365253 ], [ 68.789144619999888, -49.361694844365253 ] ] ], [ [ [ 69.606644619999884, -49.207794844365253 ], [ 69.533044619999885, -49.196694844365254 ], [ 69.678344619999905, -49.153094844365249 ], [ 69.645544619999896, -49.198894844365249 ], [ 69.606644619999884, -49.207794844365253 ] ] ], [ [ [ 69.264644619999899, -49.091094844365252 ], [ 69.216344619999916, -48.967194844365252 ], [ 69.368844619999891, -48.886394844365249 ], [ 69.406944619999933, -48.942194844365254 ], [ 69.264644619999899, -49.091094844365252 ] ] ], [ [ [ 69.152144619999888, -48.98809484436525 ], [ 69.148044619999894, -48.924194844365253 ], [ 69.222144619999881, -48.856094844365252 ], [ 69.242444619999901, -48.892494844365253 ], [ 69.152144619999888, -48.98809484436525 ] ] ], [ [ [ 69.491044619999911, -48.88279484436525 ], [ 69.445244619999926, -48.87999484436525 ], [ 69.401944619999881, -48.834494844365253 ], [ 69.517144619999897, -48.860294844365249 ], [ 69.491044619999911, -48.88279484436525 ] ] ], [ [ [ 69.001044619999902, -48.797494844365254 ], [ 69.186044619999905, -48.766694844365254 ], [ 69.003044619999912, -49.030794844365253 ], [ 69.063044619999914, -49.119694844365249 ], [ 69.103844619999904, -48.99579484436525 ], [ 69.217144619999885, -49.125594844365253 ], [ 69.621944619999908, -48.978094844365252 ], [ 69.640744619999907, -49.124194844365249 ], [ 69.359644619999926, -49.132094844365248 ], [ 69.282444619999922, -49.186394844365253 ], [ 69.582744619999914, -49.304494844365252 ], [ 70.323844619999932, -49.05079484436525 ], [ 70.5666446199999, -49.244994844365252 ], [ 70.306944619999911, -49.382194844365252 ], [ 70.459144619999904, -49.444194844365249 ], [ 69.77464461999989, -49.394194844365252 ], [ 69.840744619999896, -49.551994844365254 ], [ 70.021344619999923, -49.586394844365252 ], [ 70.153544619999934, -49.507494844365254 ], [ 70.328844619999927, -49.544194844365251 ], [ 70.2535446199999, -49.691094844365253 ], [ 69.879444619999902, -49.702194844365252 ], [ 69.64334461999988, -49.501394844365251 ], [ 69.697444619999885, -49.666094844365254 ], [ 69.254644619999908, -49.512794844365253 ], [ 68.797744619999889, -49.721994844365248 ], [ 68.880844619999891, -49.403594844365252 ], [ 68.739144619999934, -49.071694844365254 ], [ 69.072144619999904, -48.659994844365251 ], [ 69.001044619999902, -48.797494844365254 ] ] ], [ [ [ 68.675544619999926, -48.643894844365249 ], [ 68.651344619999918, -48.655294844365251 ], [ 68.606044619999921, -48.639694844365252 ], [ 68.668544619999921, -48.628094844365251 ], [ 68.675544619999926, -48.643894844365249 ] ] ], [ [ [ 68.797744619999889, -48.614994844365249 ], [ 68.787144619999935, -48.577194844365252 ], [ 68.824644619999901, -48.570594844365246 ], [ 68.830544619999898, -48.591394844365254 ], [ 68.797744619999889, -48.614994844365249 ] ] ], [ [ [ 37.850844619999918, -46.956994844365255 ], [ 37.624944619999894, -46.957494844365257 ], [ 37.576344619999929, -46.909494844365256 ], [ 37.781944619999933, -46.832194844365247 ], [ 37.850844619999918, -46.956994844365255 ] ] ], [ [ [ 37.959444619999886, -46.658594844365254 ], [ 37.876144619999934, -46.651394844365257 ], [ 37.856944619999922, -46.626994844365257 ], [ 37.942744619999928, -46.603294844365251 ], [ 37.959444619999886, -46.658594844365254 ] ] ], [ [ [ 52.254444619999902, -46.457494844365257 ], [ 52.191344619999882, -46.463594844365247 ], [ 52.0883446199999, -46.411094844365252 ], [ 52.257144619999906, -46.378094844365251 ], [ 52.254444619999902, -46.457494844365257 ] ] ], [ [ [ 51.819444619999899, -46.453594844365256 ], [ 51.718344619999925, -46.45169484436525 ], [ 51.651944619999881, -46.374194844365249 ], [ 51.779944619999924, -46.341094844365259 ], [ 51.819444619999899, -46.453594844365256 ] ] ], [ [ [ 50.272144619999892, -46.131394844365246 ], [ 50.185244619999935, -46.108094844365255 ], [ 50.176944619999915, -46.062494844365247 ], [ 50.2738446199999, -46.050794844365257 ], [ 50.272144619999892, -46.131394844365246 ] ] ], [ [ [ -9.89225538000008, -40.390794844365246 ], [ -10.040855380000096, -40.34169484436525 ], [ -10.028655380000089, -40.309494844365247 ], [ -9.952255380000082, -40.306694844365254 ], [ -9.89225538000008, -40.390794844365246 ] ] ], [ [ [ 77.529444619999936, -38.737794844365254 ], [ 77.499644619999913, -38.731094844365245 ], [ 77.506044619999898, -38.703894844365252 ], [ 77.53664461999989, -38.724694844365246 ], [ 77.529444619999936, -38.737794844365254 ] ] ], [ [ [ 77.554144619999931, -37.902794844365246 ], [ 77.509144619999915, -37.888294844365248 ], [ 77.4838446199999, -37.835294844365251 ], [ 77.554444619999913, -37.822494844365252 ], [ 77.554144619999931, -37.902794844365246 ] ] ], [ [ [ -12.206455380000079, -37.112494844365258 ], [ -12.26585538000009, -37.155594844365254 ], [ -12.331655380000086, -37.107494844365249 ], [ -12.259455380000105, -37.052794844365252 ], [ -12.206455380000079, -37.112494844365258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "LEVEL2_COD": 91, "LEVEL1_COD": 9, "LEVEL1_NAM": "ANTARCTIC", "LEVEL2_NAM": "Antarctic Continent" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.145278930664062, -60.76611328125 ], [ -45.378334045410156, -60.671394348144531 ], [ -46.023612976074219, -60.61083984375 ], [ -45.491950988769531, -60.537223815917969 ], [ -45.145278930664062, -60.76611328125 ] ] ], [ [ [ -45.016944885253906, -60.726112365722656 ], [ -45.073333740234375, -60.680000305175781 ], [ -45.064727783203125, -60.627227783203125 ], [ -45.023056030273438, -60.646949768066406 ], [ -45.016944885253906, -60.726112365722656 ] ] ], [ [ [ -44.72528076171875, -60.776390075683594 ], [ -44.78472900390625, -60.734451293945312 ], [ -44.422500610351562, -60.71722412109375 ], [ -44.655555725097656, -60.743896484375 ], [ -44.72528076171875, -60.776390075683594 ] ] ], [ [ [ -55.240837097167969, -61.27972412109375 ], [ -55.49444580078125, -61.126670837402344 ], [ -54.646392822265625, -61.092781066894531 ], [ -55.028892517089844, -61.161666870117188 ], [ -55.240837097167969, -61.27972412109375 ] ] ], [ [ [ -54.0594482421875, -61.2711181640625 ], [ -54.2005615234375, -61.236114501953125 ], [ -54.016395568847656, -61.091117858886719 ], [ -54.006393432617188, -61.19000244140625 ], [ -54.0594482421875, -61.2711181640625 ] ] ], [ [ [ -58.5836181640625, -62.250282287597656 ], [ -58.98638916015625, -62.207778930664062 ], [ -58.387504577636719, -61.935836791992188 ], [ -57.658340454101562, -61.880561828613281 ], [ -57.586669921875, -62.004722595214844 ], [ -58.228889465332031, -62.175003051757812 ], [ -58.399726867675781, -62.055557250976562 ], [ -58.5836181640625, -62.250282287597656 ] ] ], [ [ [ -58.992500305175781, -62.3477783203125 ], [ -59.079727172851562, -62.341667175292969 ], [ -59.208892822265625, -62.285560607910156 ], [ -58.816390991210938, -62.298057556152344 ], [ -58.992500305175781, -62.3477783203125 ] ] ], [ [ [ -59.476669311523438, -62.459724426269531 ], [ -59.56195068359375, -62.432228088378906 ], [ -59.678337097167969, -62.3638916015625 ], [ -59.327507019042969, -62.371391296386719 ], [ -59.476669311523438, -62.459724426269531 ] ] ], [ [ [ -59.679450988769531, -62.558059692382812 ], [ -59.886390686035156, -62.525283813476562 ], [ -59.979171752929688, -62.450836181640625 ], [ -59.542228698730469, -62.498611450195312 ], [ -59.679450988769531, -62.558059692382812 ] ] ], [ [ [ -60.267784118652344, -62.761672973632812 ], [ -60.343894958496094, -62.613616943359375 ], [ -60.800834655761719, -62.669174194335938 ], [ -61.172500610351562, -62.575004577636719 ], [ -60.132225036621094, -62.460838317871094 ], [ -59.816947937011719, -62.614173889160156 ], [ -60.267784118652344, -62.761672973632812 ] ] ], [ [ [ -61.387222290039062, -62.815559387207031 ], [ -61.479171752929688, -62.753890991210938 ], [ -61.150558471679688, -62.7086181640625 ], [ -61.206672668457031, -62.761116027832031 ], [ -61.387222290039062, -62.815559387207031 ] ] ], [ [ [ -62.704727172851562, -63.09722900390625 ], [ -62.489448547363281, -62.921112060546875 ], [ -62.26055908203125, -62.881668090820312 ], [ -62.364723205566406, -62.993057250976562 ], [ -62.704727172851562, -63.09722900390625 ] ] ], [ [ [ -60.580001831054688, -63.008056640625 ], [ -60.731616973876953, -62.981895446777344 ], [ -60.746433258056641, -62.928554534912109 ], [ -60.617366790771484, -62.879169464111328 ], [ -60.471839904785156, -62.900897979736328 ], [ -60.64666748046875, -62.92333984375 ], [ -60.580001831054688, -63.008056640625 ] ] ], [ [ [ -56.279449462890625, -63.169723510742188 ], [ -56.473892211914062, -63.108894348144531 ], [ -56.584724426269531, -63.035003662109375 ], [ -55.970840454101562, -63.054450988769531 ], [ -56.279449462890625, -63.169723510742188 ] ] ], [ [ [ -56.349723815917969, -63.437782287597656 ], [ -56.542778015136719, -63.344451904296875 ], [ -56.010284423828125, -63.132781982421875 ], [ -55.001113891601562, -63.256950378417969 ], [ -55.148056030273438, -63.360000610351562 ], [ -55.868896484375, -63.3013916015625 ], [ -56.349723815917969, -63.437782287597656 ] ] ], [ [ [ 69.722549438476562, -68.7247314453125 ], [ 69.385025024414062, -68.851409912109375 ], [ 69.781448364257812, -68.94586181640625 ], [ 69.292007446289062, -69.102783203125 ], [ 69.757522583007812, -69.22613525390625 ], [ 69.743118286132812, -69.363082885742188 ], [ 68.975296020507812, -69.349472045898438 ], [ 68.787796020507812, -69.509735107421875 ], [ 69.340042114257812, -69.638626098632812 ], [ 69.075576782226562, -69.741119384765625 ], [ 69.205337524414062, -69.863906860351562 ], [ 68.722793579101562, -70.025299072265625 ], [ 68.154495239257812, -69.861129760742188 ], [ 67.690017700195312, -70.216690063476562 ], [ 67.681716918945312, -70.424468994140625 ], [ 68.273086547851562, -70.443344116210938 ], [ 68.258926391601562, -70.76751708984375 ], [ 68.683120727539062, -70.73974609375 ], [ 68.850601196289062, -70.524459838867188 ], [ 68.677566528320312, -70.361968994140625 ], [ 69.144790649414062, -70.331390380859375 ], [ 69.299758911132812, -70.486679077148438 ], [ 69.040908813476562, -70.960556030273438 ], [ 67.605300903320312, -71.583084106445312 ], [ 67.901138305664062, -71.64447021484375 ], [ 67.357254028320312, -72.088912963867188 ], [ 68.667007446289062, -72.416946411132812 ], [ 69.443679809570312, -72.352523803710938 ], [ 69.920059204101562, -72.107513427734375 ], [ 70.839797973632812, -71.942230224609375 ], [ 71.109756469726562, -71.639175415039062 ], [ 71.449783325195312, -71.546112060546875 ], [ 71.248123168945312, -71.389450073242188 ], [ 71.495315551757812, -70.962509155273438 ], [ 71.864517211914062, -70.839447021484375 ], [ 71.827835083007812, -70.712509155273438 ], [ 72.521438598632812, -70.635025024414062 ], [ 72.500076293945312, -70.44805908203125 ], [ 72.863113403320312, -70.432785034179688 ], [ 72.615615844726562, -70.20361328125 ], [ 72.901138305664062, -70.021957397460938 ], [ 74.073684692382812, -69.751953125 ], [ 74.990615844726562, -69.751129150390625 ], [ 75.078933715820312, -69.5625 ], [ 75.823379516601562, -69.595291137695312 ], [ 76.058120727539062, -69.392227172851562 ], [ 77.747268676757812, -69.116973876953125 ], [ 78.132827758789062, -68.77862548828125 ], [ 77.846145629882812, -68.673065185546875 ], [ 78.116409301757812, -68.459732055664062 ], [ 79.125625610351562, -68.096405029296875 ], [ 81.357559204101562, -67.795486450195312 ], [ 81.461990356445312, -67.625 ], [ 82.057266235351562, -67.6722412109375 ], [ 81.469741821289062, -67.505294799804688 ], [ 82.014480590820312, -67.251678466796875 ], [ 82.6650390625, -67.393890380859375 ], [ 83.403396606445312, -67.15667724609375 ], [ 85.79168701171875, -67.177780151367188 ], [ 87.502517700195312, -66.894744873046875 ], [ 88.1094970703125, -66.65252685546875 ], [ 88.22723388671875, -66.036392211914062 ], [ 88.482009887695312, -66.078079223632812 ], [ 88.833938598632812, -66.51611328125 ], [ 88.73974609375, -66.716690063476562 ], [ 88.96722412109375, -66.761398315429688 ], [ 92.00531005859375, -66.533905029296875 ], [ 95.636184692382812, -66.680557250976562 ], [ 97.09033203125, -66.546112060546875 ], [ 97.54888916015625, -66.611129760742188 ], [ 97.564453125, -66.740570068359375 ], [ 98.261962890625, -66.51611328125 ], [ 98.8555908203125, -66.561965942382812 ], [ 99.2830810546875, -66.880844116210938 ], [ 100.95391845703125, -66.080841064453125 ], [ 102.62615966796875, -65.901123046875 ], [ 106.766143798828125, -66.410018920898438 ], [ 107.804779052734375, -66.398361206054688 ], [ 108.82421875, -66.831130981445312 ], [ 110.6297607421875, -66.486679077148438 ], [ 110.8917236328125, -66.063629150390625 ], [ 113.315338134765625, -65.713348388671875 ], [ 114.431427001953125, -66.179473876953125 ], [ 114.575027465820312, -66.309738159179688 ], [ 114.518356323242188, -66.4727783203125 ], [ 116.180038452148438, -66.366683959960938 ], [ 116.7244873046875, -66.559188842773438 ], [ 116.91448974609375, -66.805023193359375 ], [ 117.766998291015625, -66.98974609375 ], [ 121.023933410644531, -66.826675415039062 ], [ 122.183357238769531, -66.547805786132812 ], [ 122.979766845703125, -66.646408081054688 ], [ 122.989486694335938, -66.77667236328125 ], [ 124.289222717285156, -66.511688232421875 ], [ 124.614486694335938, -66.553359985351562 ], [ 124.734756469726562, -66.743896484375 ], [ 125.190017700195312, -66.73419189453125 ], [ 125.543952941894531, -66.421112060546875 ], [ 126.356163024902344, -66.27972412109375 ], [ 126.988357543945312, -66.453582763671875 ], [ 126.92864990234375, -66.834457397460938 ], [ 128.83477783203125, -67.14251708984375 ], [ 129.298095703125, -67.018890380859375 ], [ 129.3255615234375, -66.737808227539062 ], [ 129.67559814453125, -66.47613525390625 ], [ 130.35198974609375, -66.225845336914062 ], [ 133.528106689453125, -66.0572509765625 ], [ 134.24530029296875, -66.201126098632812 ], [ 134.431121826171875, -65.969467163085938 ], [ 134.059173583984375, -65.421951293945312 ], [ 134.184478759765625, -65.270004272460938 ], [ 134.100616455078125, -65.123062133789062 ], [ 134.407257080078125, -64.925308227539062 ], [ 134.994476318359375, -65.04168701171875 ], [ 135.272247314453125, -65.4364013671875 ], [ 134.933929443359375, -66.089752197265625 ], [ 140.236114501953125, -66.728363037109375 ], [ 141.99444580078125, -66.77667236328125 ], [ 142.56640625, -66.994171142578125 ], [ 143.4000244140625, -66.85113525390625 ], [ 143.873626708984375, -67.09002685546875 ], [ 144.45361328125, -67.020294189453125 ], [ 144.5855712890625, -67.245285034179688 ], [ 145.404449462890625, -67.017227172851562 ], [ 145.87530517578125, -67.19586181640625 ], [ 145.31500244140625, -67.61334228515625 ], [ 146.642791748046875, -67.709457397460938 ], [ 147.150848388671875, -67.990859985351562 ], [ 146.953338623046875, -68.141693115234375 ], [ 148.029449462890625, -67.844467163085938 ], [ 148.6480712890625, -67.98919677734375 ], [ 148.21722412109375, -68.127243041992188 ], [ 148.8133544921875, -68.335281372070312 ], [ 150.992523193359375, -68.390853881835938 ], [ 151.133056640625, -68.560287475585938 ], [ 150.960296630859375, -68.871688842773438 ], [ 151.185028076171875, -68.980026245117188 ], [ 152.4605712890625, -68.765853881835938 ], [ 153.76861572265625, -68.9222412109375 ], [ 153.88250732421875, -68.764450073242188 ], [ 153.681671142578125, -68.622528076171875 ], [ 153.910858154296875, -68.591949462890625 ], [ 153.625, -68.404190063476562 ], [ 153.778350830078125, -68.3436279296875 ], [ 154.68585205078125, -68.615005493164062 ], [ 154.389739990234375, -68.672805786132812 ], [ 154.563079833984375, -68.797515869140625 ], [ 154.28668212890625, -68.863082885742188 ], [ 154.856689453125, -69.102523803710938 ], [ 156.33612060546875, -69.240570068359375 ], [ 157.157806396484375, -69.154190063476562 ], [ 157.10418701171875, -68.995574951171875 ], [ 157.23638916015625, -68.942520141601562 ], [ 157.5594482421875, -69.24139404296875 ], [ 159.670013427734375, -69.6602783203125 ], [ 160.968902587890625, -70.255569458007812 ], [ 161.6763916015625, -70.20501708984375 ], [ 161.88250732421875, -70.351959228515625 ], [ 162.04473876953125, -70.198898315429688 ], [ 162.0594482421875, -70.426956176757812 ], [ 162.75390625, -70.280303955078125 ], [ 163.198333740234375, -70.621688842773438 ], [ 163.520843505859375, -70.675003051757812 ], [ 163.7852783203125, -70.628067016601562 ], [ 163.534454345703125, -70.466690063476562 ], [ 164.371673583984375, -70.476409912109375 ], [ 165.800567626953125, -70.717514038085938 ], [ 166.599456787109375, -70.599472045898438 ], [ 166.899169921875, -70.701416015625 ], [ 166.463043212890625, -70.701950073242188 ], [ 167.661102294921875, -70.757247924804688 ], [ 168.229736328125, -71.149185180664062 ], [ 170.23193359375, -71.653900146484375 ], [ 170.432525634765625, -71.484451293945312 ], [ 170.21527099609375, -71.282791137695312 ], [ 170.35723876953125, -71.309188842773438 ], [ 170.99444580078125, -71.86419677734375 ], [ 170.129974365234375, -72.051406860351562 ], [ 169.87164306640625, -72.379196166992188 ], [ 170.304168701171875, -72.30084228515625 ], [ 170.322235107421875, -72.580307006835938 ], [ 170.05224609375, -72.603622436523438 ], [ 170.20635986328125, -72.68084716796875 ], [ 169.681640625, -73.053070068359375 ], [ 169.26641845703125, -73.083908081054688 ], [ 169.07916259765625, -73.52752685546875 ], [ 168.6463623046875, -73.416397094726562 ], [ 168.383880615234375, -73.626129150390625 ], [ 167.561676025390625, -73.403350830078125 ], [ 167.6461181640625, -73.470840454101562 ], [ 165.855804443359375, -73.860015869140625 ], [ 165.99029541015625, -73.932510375976562 ], [ 165.548583984375, -73.932510375976562 ], [ 166.23583984375, -74.056137084960938 ], [ 166.129150390625, -74.127243041992188 ], [ 164.780853271484375, -74.136962890625 ], [ 165.348602294921875, -74.5330810546875 ], [ 165.33331298828125, -74.672805786132812 ], [ 164.50140380859375, -74.630569458007812 ], [ 164.540557861328125, -74.774185180664062 ], [ 164.14251708984375, -74.616119384765625 ], [ 163.65667724609375, -74.774459838867188 ], [ 163.871673583984375, -74.953353881835938 ], [ 162.559173583984375, -75.086959838867188 ], [ 162.609466552734375, -75.434188842773438 ], [ 163.09417724609375, -75.568893432617188 ], [ 162.897796630859375, -75.8961181640625 ], [ 163.136962890625, -75.936676025390625 ], [ 162.337799072265625, -76.167236328125 ], [ 162.875579833984375, -76.247787475585938 ], [ 162.77362060546875, -76.3194580078125 ], [ 162.9322509765625, -76.583084106445312 ], [ 162.623626708984375, -76.619461059570312 ], [ 163.069732666015625, -76.730850219726562 ], [ 162.332794189453125, -76.951416015625 ], [ 163.23834228515625, -77.041397094726562 ], [ 163.89697265625, -77.466690063476562 ], [ 163.607513427734375, -77.556961059570312 ], [ 163.758636474609375, -77.6177978515625 ], [ 163.61083984375, -77.696121215820312 ], [ 164.56500244140625, -77.73638916015625 ], [ 164.556060791015625, -78.00347900390625 ], [ 164.206695556640625, -78.143890380859375 ], [ 164.9605712890625, -78.039169311523438 ], [ 165.023590087890625, -78.25030517578125 ], [ 165.540008544921875, -78.00335693359375 ], [ 165.70166015625, -78.096115112304688 ], [ 165.448638916015625, -78.19085693359375 ], [ 165.785858154296875, -78.29669189453125 ], [ 165.68359375, -78.391693115234375 ], [ 167.085845947265625, -78.50030517578125 ], [ 167.269439697265625, -78.655838012695312 ], [ 166.2177734375, -78.520004272460938 ], [ 164.49444580078125, -78.569747924804688 ], [ 162.901123046875, -78.806396484375 ], [ 162.78167724609375, -78.948348999023438 ], [ 161.825286865234375, -78.865859985351562 ], [ 160.494171142578125, -79.020858764648438 ], [ 160.040557861328125, -79.155838012695312 ], [ 160.4947509765625, -79.213912963867188 ], [ 160.543060302734375, -79.307510375976562 ], [ 160.3436279296875, -79.348892211914062 ], [ 160.738067626953125, -79.453079223632812 ], [ 159.092803955078125, -79.971115112304688 ], [ 160.374176025390625, -79.9130859375 ], [ 160.524444580078125, -80.041397094726562 ], [ 158.0572509765625, -80.280563354492188 ], [ 158.810028076171875, -80.48333740234375 ], [ 160.8919677734375, -80.37750244140625 ], [ 160.99444580078125, -80.490005493164062 ], [ 159.7569580078125, -80.569747924804688 ], [ 161.174468994140625, -80.63555908203125 ], [ 160.01556396484375, -80.780303955078125 ], [ 160.843902587890625, -80.89306640625 ], [ 160.503082275390625, -80.952789306640625 ], [ 160.839447021484375, -81.078079223632812 ], [ 160.626129150390625, -81.20501708984375 ], [ 162.19390869140625, -81.297805786132812 ], [ 160.39111328125, -81.521408081054688 ], [ 162.275848388671875, -81.6622314453125 ], [ 162.32000732421875, -81.783905029296875 ], [ 163.859466552734375, -82.174179077148438 ], [ 163.446136474609375, -82.265029907226562 ], [ 165.3194580078125, -82.421951293945312 ], [ 165.460845947265625, -82.491119384765625 ], [ 165.24053955078125, -82.557785034179688 ], [ 167.366668701171875, -82.802780151367188 ], [ 166.77862548828125, -82.827239990234375 ], [ 167.163909912109375, -82.9102783203125 ], [ 166.7528076171875, -82.977523803710938 ], [ 168.360260009765625, -82.994171142578125 ], [ 168.692474365234375, -83.146408081054688 ], [ 167.4697265625, -83.439178466796875 ], [ 169.250823974609375, -83.33001708984375 ], [ 172.318603515625, -83.59722900390625 ], [ 171.905029296875, -83.80169677734375 ], [ 174.741668701171875, -83.828353881835938 ], [ 178.189422607421875, -84.184188842773438 ], [ 179.511688232421875, -84.155014038085938 ], [ 179.62054443359375, -84.178070068359375 ], [ 179.310821533203125, -84.241119384765625 ], [ 180.0, -84.30224609375 ], [ 180.0, -90.0 ], [ -180.0, -90.0 ], [ -180.0, -84.305343627929688 ], [ -177.721954345703125, -84.498336791992188 ], [ -174.517242431640625, -84.443069458007812 ], [ -169.223358154296875, -84.663894653320312 ], [ -168.445281982421875, -84.84222412109375 ], [ -167.211944580078125, -84.788894653320312 ], [ -162.52667236328125, -85.250564575195312 ], [ -157.48333740234375, -85.448623657226562 ], [ -152.810577392578125, -85.32806396484375 ], [ -150.239471435546875, -85.463623046875 ], [ -148.138336181640625, -85.090835571289062 ], [ -139.661407470703125, -85.245010375976562 ], [ -138.589447021484375, -84.984725952148438 ], [ -149.29473876953125, -84.56195068359375 ], [ -151.691131591796875, -84.324172973632812 ], [ -153.053070068359375, -84.012786865234375 ], [ -153.2327880859375, -83.818618774414062 ], [ -152.943634033203125, -83.648345947265625 ], [ -153.00750732421875, -83.087509155273438 ], [ -151.794189453125, -82.577789306640625 ], [ -154.89141845703125, -81.905014038085938 ], [ -153.98919677734375, -81.629180908203125 ], [ -154.20501708984375, -81.552230834960938 ], [ -156.96002197265625, -81.251678466796875 ], [ -156.546417236328125, -81.096954345703125 ], [ -154.92169189453125, -81.001953125 ], [ -148.413360595703125, -81.357513427734375 ], [ -148.060028076171875, -81.101394653320312 ], [ -145.524169921875, -80.460556030273438 ], [ -146.81195068359375, -79.88751220703125 ], [ -154.298065185546875, -79.057235717773438 ], [ -155.906402587890625, -78.7197265625 ], [ -156.01806640625, -78.6602783203125 ], [ -154.0836181640625, -78.481399536132812 ], [ -153.75030517578125, -78.308334350585938 ], [ -154.43280029296875, -78.098617553710938 ], [ -156.81195068359375, -78.270278930664062 ], [ -157.9102783203125, -78.001953125 ], [ -158.17584228515625, -77.859725952148438 ], [ -158.005279541015625, -77.77862548828125 ], [ -158.074462890625, -77.663345336914062 ], [ -157.69696044921875, -77.571395874023438 ], [ -157.847503662109375, -77.36083984375 ], [ -157.753082275390625, -77.108062744140625 ], [ -156.48333740234375, -77.358612060546875 ], [ -155.86138916015625, -77.084457397460938 ], [ -153.790283203125, -77.174728393554688 ], [ -153.0836181640625, -77.286666870117188 ], [ -152.97308349609375, -77.378341674804688 ], [ -153.244171142578125, -77.4283447265625 ], [ -153.106414794921875, -77.497222900390625 ], [ -152.061126708984375, -77.325286865234375 ], [ -149.6622314453125, -77.761123657226562 ], [ -149.087249755859375, -77.696121215820312 ], [ -149.4141845703125, -77.570846557617188 ], [ -148.7327880859375, -77.625564575195312 ], [ -147.591400146484375, -77.422225952148438 ], [ -147.493072509765625, -77.296951293945312 ], [ -147.071685791015625, -77.372787475585938 ], [ -147.0322265625, -77.220840454101562 ], [ -146.26861572265625, -77.466400146484375 ], [ -145.87890625, -77.306396484375 ], [ -146.227508544921875, -77.165008544921875 ], [ -145.842803955078125, -77.114181518554688 ], [ -146.3013916015625, -76.999176025390625 ], [ -145.29888916015625, -77.0291748046875 ], [ -146.10223388671875, -76.840011596679688 ], [ -145.456390380859375, -76.760284423828125 ], [ -146.9322509765625, -76.451950073242188 ], [ -149.506134033203125, -76.38751220703125 ], [ -148.101287841796875, -76.095657348632812 ], [ -146.491668701171875, -76.367507934570312 ], [ -145.479461669921875, -76.443344116210938 ], [ -145.451416015625, -76.311111450195312 ], [ -146.2952880859375, -76.03973388671875 ], [ -145.9766845703125, -75.898895263671875 ], [ -144.206390380859375, -75.837783813476562 ], [ -144.170562744140625, -75.664459228515625 ], [ -142.745574951171875, -75.636123657226562 ], [ -142.56640625, -75.480560302734375 ], [ -140.243621826171875, -75.466949462890625 ], [ -139.327789306640625, -75.106674194335938 ], [ -137.020843505859375, -75.011672973632812 ], [ -136.737518310546875, -74.751678466796875 ], [ -134.30389404296875, -74.532791137695312 ], [ -134.129730224609375, -74.731124877929688 ], [ -133.26251220703125, -74.84722900390625 ], [ -131.84222412109375, -74.723892211914062 ], [ -129.650299072265625, -74.86138916015625 ], [ -126.8114013671875, -74.634735107421875 ], [ -121.478347778320312, -74.742507934570312 ], [ -118.53167724609375, -74.613616943359375 ], [ -118.33612060546875, -74.55029296875 ], [ -118.517227172851562, -74.430557250976562 ], [ -117.743057250976562, -74.308624267578125 ], [ -117.396957397460938, -74.530838012695312 ], [ -114.697776794433594, -74.46917724609375 ], [ -114.635833740234375, -74.328903198242188 ], [ -114.810012817382812, -74.104736328125 ], [ -114.003616333007812, -73.889175415039062 ], [ -113.1864013671875, -74.168899536132812 ], [ -113.51611328125, -74.307510375976562 ], [ -113.433616638183594, -74.47222900390625 ], [ -112.930282592773438, -74.455001831054688 ], [ -113.555557250976562, -74.634445190429688 ], [ -112.598892211914062, -74.694168090820312 ], [ -112.739730834960938, -74.793060302734375 ], [ -112.654167175292969, -74.858612060546875 ], [ -111.343063354492188, -74.759445190429688 ], [ -111.724456787109375, -74.587234497070312 ], [ -111.385833740234375, -74.462234497070312 ], [ -111.65167236328125, -74.2841796875 ], [ -111.503890991210938, -74.191680908203125 ], [ -110.154716491699219, -74.2841796875 ], [ -109.96112060546875, -74.55389404296875 ], [ -110.149436950683594, -74.664169311523438 ], [ -109.928886413574219, -74.761398315429688 ], [ -110.793899536132812, -74.967788696289062 ], [ -110.582778930664062, -75.001678466796875 ], [ -110.961669921875, -75.157791137695312 ], [ -110.383056640625, -75.306121826171875 ], [ -109.068618774414062, -75.128890991210938 ], [ -106.979446411132812, -75.3477783203125 ], [ -105.834457397460938, -75.127227783203125 ], [ -103.338058471679688, -75.028335571289062 ], [ -100.831390380859375, -75.307785034179688 ], [ -99.510284423828125, -75.092514038085938 ], [ -99.751678466796875, -74.91473388671875 ], [ -100.851669311523438, -74.814727783203125 ], [ -100.151123046875, -74.760833740234375 ], [ -100.515556335449219, -74.671112060546875 ], [ -100.140007019042969, -74.617782592773438 ], [ -100.248062133789062, -74.4908447265625 ], [ -101.331947326660156, -74.480560302734375 ], [ -101.6622314453125, -74.17584228515625 ], [ -101.658340454101562, -73.9989013671875 ], [ -102.901397705078125, -73.875839233398438 ], [ -102.811111450195312, -73.720291137695312 ], [ -103.013343811035156, -73.629180908203125 ], [ -100.310562133789062, -73.75 ], [ -99.175567626953125, -73.619171142578125 ], [ -100.460853576660156, -73.36639404296875 ], [ -103.036117553710938, -73.326400756835938 ], [ -103.603347778320312, -72.891952514648438 ], [ -103.176116943359375, -72.73333740234375 ], [ -102.322776794433594, -72.802505493164062 ], [ -102.663887023925781, -73.014175415039062 ], [ -102.099166870117188, -73.084732055664062 ], [ -98.835556030273438, -72.973342895507812 ], [ -96.518890380859375, -73.306121826171875 ], [ -92.451950073242188, -73.15362548828125 ], [ -90.861114501953125, -73.326675415039062 ], [ -89.321121215820312, -73.054168701171875 ], [ -89.283065795898438, -72.771957397460938 ], [ -89.5372314453125, -72.633621215820312 ], [ -89.261123657226562, -72.639450073242188 ], [ -88.335845947265625, -72.816116333007812 ], [ -88.825286865234375, -73.102783203125 ], [ -88.70916748046875, -73.179458618164062 ], [ -87.64111328125, -73.157501220703125 ], [ -86.840835571289062, -73.336395263671875 ], [ -85.9666748046875, -73.041397094726562 ], [ -85.470840454101562, -73.3497314453125 ], [ -85.724456787109375, -73.489456176757812 ], [ -85.5997314453125, -73.558334350585938 ], [ -83.698898315429688, -73.65472412109375 ], [ -82.134170532226562, -73.943344116210938 ], [ -81.041397094726562, -73.715560913085938 ], [ -81.295562744140625, -73.520278930664062 ], [ -81.275283813476562, -73.36944580078125 ], [ -80.519180297851562, -73.446395874023438 ], [ -80.695556640625, -73.050567626953125 ], [ -78.958892822265625, -73.392501831054688 ], [ -78.78973388671875, -73.693069458007812 ], [ -76.61834716796875, -73.576675415039062 ], [ -77.10028076171875, -73.82861328125 ], [ -76.962783813476562, -73.873062133789062 ], [ -75.203903198242188, -73.662506103515625 ], [ -73.932510375976562, -73.710281372070312 ], [ -73.070846557617188, -73.4888916015625 ], [ -69.4283447265625, -73.197235107421875 ], [ -67.630279541015625, -72.845840454101562 ], [ -66.797225952148438, -72.407791137695312 ], [ -66.952789306640625, -72.189178466796875 ], [ -66.859176635742188, -71.89556884765625 ], [ -67.5372314453125, -71.454727172851562 ], [ -67.400283813476562, -71.040008544921875 ], [ -67.703903198242188, -70.593063354492188 ], [ -67.963348388671875, -70.25750732421875 ], [ -68.398056030273438, -70.111953735351562 ], [ -68.505279541015625, -69.936676025390625 ], [ -68.339447021484375, -69.67889404296875 ], [ -68.838058471679688, -69.417236328125 ], [ -68.1683349609375, -69.264175415039062 ], [ -67.396957397460938, -69.350570678710938 ], [ -66.657791137695312, -69.017791748046875 ], [ -67.49444580078125, -68.815567016601562 ], [ -66.932235717773438, -68.773895263671875 ], [ -67.178619384765625, -68.505279541015625 ], [ -66.935287475585938, -68.3800048828125 ], [ -67.165557861328125, -68.2933349609375 ], [ -66.589736938476562, -68.238067626953125 ], [ -66.916397094726562, -68.220001220703125 ], [ -67.1572265625, -68.01055908203125 ], [ -66.706680297851562, -67.808334350585938 ], [ -67.025848388671875, -67.792236328125 ], [ -66.679168701171875, -67.73638916015625 ], [ -66.894180297851562, -67.671401977539062 ], [ -66.427230834960938, -67.533340454101562 ], [ -67.6239013671875, -67.553619384765625 ], [ -67.602455139160156, -67.171043395996094 ], [ -67.152511596679688, -66.931121826171875 ], [ -66.85833740234375, -66.921401977539062 ], [ -66.873336791992188, -67.077789306640625 ], [ -66.40472412109375, -66.88555908203125 ], [ -66.497222900390625, -66.622512817382812 ], [ -66.088058471679688, -66.564727783203125 ], [ -65.689727783203125, -66.125 ], [ -65.215286254882812, -66.168060302734375 ], [ -65.27667236328125, -65.983612060546875 ], [ -64.931396484375, -65.932510375976562 ], [ -64.453338623046875, -65.981674194335938 ], [ -64.65972900390625, -65.740280151367188 ], [ -64.323333740234375, -65.782501220703125 ], [ -64.398895263671875, -65.62445068359375 ], [ -64.040283203125, -65.67584228515625 ], [ -64.1763916015625, -65.545562744140625 ], [ -63.712783813476562, -65.50250244140625 ], [ -64.05084228515625, -65.427230834960938 ], [ -64.075286865234375, -65.178619384765625 ], [ -63.922500610351562, -65.033889770507812 ], [ -63.090560913085938, -65.133895874023438 ], [ -62.995834350585938, -65.081390380859375 ], [ -63.177505493164062, -64.93890380859375 ], [ -62.765007019042969, -64.847503662109375 ], [ -62.938056945800781, -64.797500610351562 ], [ -62.530838012695312, -64.9072265625 ], [ -62.319450378417969, -64.858901977539062 ], [ -62.617782592773438, -64.7550048828125 ], [ -62.45361328125, -64.58917236328125 ], [ -62.201393127441406, -64.761672973632812 ], [ -60.941947937011719, -64.277511596679688 ], [ -60.854728698730469, -64.139724731445312 ], [ -60.991668701171875, -64.035842895507812 ], [ -60.017227172851562, -63.941390991210938 ], [ -59.845840454101562, -63.770835876464844 ], [ -59.445838928222656, -63.893058776855469 ], [ -59.326950073242188, -63.699722290039062 ], [ -58.898056030273438, -63.650558471679688 ], [ -58.910835266113281, -63.533058166503906 ], [ -57.27667236328125, -63.20916748046875 ], [ -57.008338928222656, -63.24945068359375 ], [ -56.721389770507812, -63.5947265625 ], [ -57.140838623046875, -63.637222290039062 ], [ -57.145561218261719, -63.471672058105469 ], [ -57.3800048828125, -63.460556030273438 ], [ -58.6461181640625, -63.979728698730469 ], [ -58.880279541015625, -64.216400146484375 ], [ -58.778640747070312, -64.535812377929688 ], [ -59.493057250976562, -64.316116333007812 ], [ -59.505279541015625, -64.5372314453125 ], [ -59.918891906738281, -64.4122314453125 ], [ -61.623893737792969, -65.225006103515625 ], [ -61.959449768066406, -65.180282592773438 ], [ -62.089729309082031, -65.440292358398438 ], [ -61.683059692382812, -65.538619995117188 ], [ -62.09222412109375, -65.571395874023438 ], [ -62.459724426269531, -65.90472412109375 ], [ -61.872779846191406, -66.171951293945312 ], [ -61.3477783203125, -66.070846557617188 ], [ -61.321395874023438, -65.917236328125 ], [ -61.070556640625, -66.063064575195312 ], [ -60.999168395996094, -65.90472412109375 ], [ -60.557502746582031, -65.945281982421875 ], [ -60.93695068359375, -66.260009765625 ], [ -61.151947021484375, -66.324722290039062 ], [ -61.416671752929688, -66.125289916992188 ], [ -61.713890075683594, -66.46917724609375 ], [ -62.181396484375, -66.180282592773438 ], [ -62.885284423828125, -66.262786865234375 ], [ -62.443611145019531, -66.430282592773438 ], [ -62.679450988769531, -66.5513916015625 ], [ -62.43194580078125, -66.6683349609375 ], [ -62.608894348144531, -66.728347778320312 ], [ -63.162223815917969, -66.295562744140625 ], [ -63.675559997558594, -66.218338012695312 ], [ -63.777778625488281, -66.349456787109375 ], [ -63.586669921875, -66.376678466796875 ], [ -63.864448547363281, -66.401947021484375 ], [ -63.981117248535156, -66.48028564453125 ], [ -63.801673889160156, -66.58111572265625 ], [ -64.0966796875, -66.56500244140625 ], [ -64.196670532226562, -66.720291137695312 ], [ -63.743614196777344, -66.891677856445312 ], [ -64.837783813476562, -66.951400756835938 ], [ -64.938613891601562, -67.021957397460938 ], [ -64.666946411132812, -67.13250732421875 ], [ -64.924728393554688, -67.216400146484375 ], [ -64.77056884765625, -67.317230224609375 ], [ -65.406951904296875, -67.33416748046875 ], [ -65.6138916015625, -67.559173583984375 ], [ -65.290283203125, -67.67333984375 ], [ -65.617782592773438, -67.8800048828125 ], [ -65.329177856445312, -67.9747314453125 ], [ -65.723617553710938, -68.148056030273438 ], [ -64.970840454101562, -68.025283813476562 ], [ -64.768341064453125, -68.122787475585938 ], [ -65.5966796875, -68.347503662109375 ], [ -65.0916748046875, -68.44195556640625 ], [ -65.438613891601562, -68.595291137695312 ], [ -65.313339233398438, -68.711395263671875 ], [ -63.857780456542969, -68.842788696289062 ], [ -64.3900146484375, -68.513336181640625 ], [ -63.614173889160156, -68.35528564453125 ], [ -62.728340148925781, -68.410003662109375 ], [ -63.974166870117188, -68.536392211914062 ], [ -63.210556030273438, -68.786956787109375 ], [ -63.706672668457031, -68.742507934570312 ], [ -63.726394653320312, -68.820281982421875 ], [ -63.460006713867188, -68.898056030273438 ], [ -63.61639404296875, -68.979446411132812 ], [ -63.368057250976562, -69.050003051757812 ], [ -63.638893127441406, -69.22723388671875 ], [ -63.237228393554688, -69.149734497070312 ], [ -63.123893737792969, -69.368057250976562 ], [ -62.475837707519531, -69.45306396484375 ], [ -62.635002136230469, -69.853347778320312 ], [ -61.940834045410156, -70.229171752929688 ], [ -62.501396179199219, -70.233901977539062 ], [ -62.490837097167969, -70.380569458007812 ], [ -62.166671752929688, -70.540847778320312 ], [ -61.484451293945312, -70.520278930664062 ], [ -62.209449768066406, -70.704177856445312 ], [ -62.128890991210938, -70.865570068359375 ], [ -61.380279541015625, -70.815292358398438 ], [ -60.9425048828125, -71.158340454101562 ], [ -61.101951599121094, -71.235565185546875 ], [ -60.963615417480469, -71.361114501953125 ], [ -61.259727478027344, -71.323333740234375 ], [ -61.107223510742188, -71.425567626953125 ], [ -61.929725646972656, -71.656402587890625 ], [ -61.258895874023438, -71.538894653320312 ], [ -60.904167175292969, -71.73638916015625 ], [ -62.546394348144531, -71.921951293945312 ], [ -62.2469482421875, -71.995010375976562 ], [ -62.552505493164062, -72.047500610351562 ], [ -61.343894958496094, -72.134735107421875 ], [ -60.865837097167969, -72.003067016601562 ], [ -60.815559387207031, -72.101394653320312 ], [ -61.074722290039062, -72.163619995117188 ], [ -60.791671752929688, -72.240570068359375 ], [ -61.003334045410156, -72.282501220703125 ], [ -60.852500915527344, -72.388900756835938 ], [ -61.549728393554688, -72.42279052734375 ], [ -61.270835876464844, -72.700286865234375 ], [ -60.616111755371094, -72.643341064453125 ], [ -60.617225646972656, -73.02862548828125 ], [ -59.774169921875, -72.900283813476562 ], [ -59.849449157714844, -73.233062744140625 ], [ -60.462783813476562, -73.147781372070312 ], [ -60.599723815917969, -73.36029052734375 ], [ -61.919448852539062, -73.14306640625 ], [ -61.436393737792969, -73.343612670898438 ], [ -61.836669921875, -73.36639404296875 ], [ -61.609169006347656, -73.546112060546875 ], [ -60.821945190429688, -73.536117553710938 ], [ -60.678337097167969, -73.578903198242188 ], [ -60.911949157714844, -73.713623046875 ], [ -60.587783813476562, -73.70611572265625 ], [ -60.977783203125, -73.957778930664062 ], [ -61.762504577636719, -73.913894653320312 ], [ -61.036392211914062, -74.098342895507812 ], [ -61.755279541015625, -74.306396484375 ], [ -61.612785339355469, -74.431396484375 ], [ -62.026390075683594, -74.636123657226562 ], [ -61.887504577636719, -74.832229614257812 ], [ -62.531394958496094, -74.982513427734375 ], [ -62.620834350585938, -74.762222290039062 ], [ -63.245834350585938, -74.604171752929688 ], [ -63.0513916015625, -74.895278930664062 ], [ -63.989448547363281, -75.008056640625 ], [ -63.095840454101562, -75.130844116210938 ], [ -64.447784423828125, -75.29779052734375 ], [ -63.0947265625, -75.3255615234375 ], [ -63.429168701171875, -75.4505615234375 ], [ -66.313613891601562, -76.03472900390625 ], [ -69.385284423828125, -76.296112060546875 ], [ -70.476394653320312, -76.707778930664062 ], [ -75.4444580078125, -76.546401977539062 ], [ -76.167236328125, -76.38250732421875 ], [ -76.380569458007812, -76.06500244140625 ], [ -77.77166748046875, -75.918899536132812 ], [ -77.737228393554688, -76.031951904296875 ], [ -78.471115112304688, -76.195556640625 ], [ -78.349456787109375, -76.327224731445312 ], [ -78.476669311523438, -76.4072265625 ], [ -75.632781982421875, -77.508621215820312 ], [ -74.483062744140625, -77.458892822265625 ], [ -72.839736938476562, -77.6400146484375 ], [ -73.674179077148438, -77.98529052734375 ], [ -74.853347778320312, -78.14111328125 ], [ -81.4969482421875, -77.657791137695312 ], [ -80.605560302734375, -77.886398315429688 ], [ -81.470001220703125, -77.897232055664062 ], [ -78.1300048828125, -78.283615112304688 ], [ -77.487503051757812, -78.52667236328125 ], [ -78.957504272460938, -78.813339233398438 ], [ -81.090835571289062, -78.777511596679688 ], [ -83.171401977539062, -78.27862548828125 ], [ -84.1077880859375, -78.36083984375 ], [ -82.885284423828125, -79.008621215820312 ], [ -81.517227172851562, -79.17529296875 ], [ -80.63555908203125, -79.619171142578125 ], [ -80.403060913085938, -79.589736938476562 ], [ -80.5513916015625, -79.276123046875 ], [ -80.202789306640625, -79.228897094726562 ], [ -77.029449462890625, -79.279449462890625 ], [ -76.318618774414062, -79.4041748046875 ], [ -76.0836181640625, -79.645843505859375 ], [ -77.321945190429688, -80.011398315429688 ], [ -79.9586181640625, -79.913894653320312 ], [ -79.849456787109375, -79.954452514648438 ], [ -76.089447021484375, -80.197235107421875 ], [ -74.693893432617188, -80.697235107421875 ], [ -67.848068237304688, -81.3577880859375 ], [ -59.648056030273438, -82.43389892578125 ], [ -58.783058166503906, -82.645004272460938 ], [ -59.147506713867188, -82.882232666015625 ], [ -59.079727172851562, -82.965835571289062 ], [ -58.210838317871094, -83.033340454101562 ], [ -55.545562744140625, -82.387786865234375 ], [ -53.725837707519531, -82.150283813476562 ], [ -48.129173278808594, -81.831390380859375 ], [ -43.084449768066406, -81.851394653320312 ], [ -41.4888916015625, -81.383346557617188 ], [ -28.319446563720703, -80.276947021484375 ], [ -28.0625, -80.004730224609375 ], [ -30.210556030273438, -79.666671752929688 ], [ -27.085556030273438, -79.013336181640625 ], [ -33.001113891601562, -79.453903198242188 ], [ -35.985000610351562, -79.019180297851562 ], [ -36.302780151367188, -78.7791748046875 ], [ -35.707229614257812, -78.308334350585938 ], [ -33.886116027832031, -77.660568237304688 ], [ -31.549167633056641, -77.331680297851562 ], [ -28.305278778076172, -76.565292358398438 ], [ -24.560836791992188, -76.083343505859375 ], [ -17.758056640625, -75.729736328125 ], [ -18.256389617919922, -75.495834350585938 ], [ -17.321666717529297, -75.040008544921875 ], [ -17.147224426269531, -74.78472900390625 ], [ -13.704723358154297, -73.94195556640625 ], [ -14.596389770507812, -73.8125 ], [ -16.326114654541016, -74.06390380859375 ], [ -16.919170379638672, -73.976119995117188 ], [ -16.069168090820312, -73.747512817382812 ], [ -16.898891448974609, -73.773056030273438 ], [ -16.023612976074219, -73.320281982421875 ], [ -14.441113471984863, -73.2327880859375 ], [ -13.731111526489258, -73.020843505859375 ], [ -14.469167709350586, -72.796676635742188 ], [ -13.406112670898438, -72.82305908203125 ], [ -11.657777786254883, -72.326950073242188 ], [ -11.325834274291992, -71.965011596679688 ], [ -12.140834808349609, -71.651123046875 ], [ -12.276945114135742, -71.37750244140625 ], [ -11.556507110595703, -71.278823852539062 ], [ -11.592779159545898, -71.56195068359375 ], [ -11.019445419311523, -71.6572265625 ], [ -10.048612594604492, -71.11138916015625 ], [ -10.430000305175781, -70.986953735351562 ], [ -9.91139030456543, -70.904449462890625 ], [ -9.459445953369141, -70.92279052734375 ], [ -9.669168472290039, -71.0352783203125 ], [ -8.942222595214844, -71.226669311523438 ], [ -8.641668319702148, -71.742507934570312 ], [ -8.366945266723633, -71.825836181640625 ], [ -7.337778091430664, -71.69195556640625 ], [ -7.723333358764648, -71.429168701171875 ], [ -7.028889656066895, -70.99444580078125 ], [ -6.021111488342285, -70.699722290039062 ], [ -5.44111156463623, -70.88250732421875 ], [ -6.103889465332031, -71.144454956054688 ], [ -6.009166717529297, -71.418899536132812 ], [ -2.261666774749756, -71.17083740234375 ], [ -2.335556030273438, -71.2933349609375 ], [ -2.093889236450195, -71.486114501953125 ], [ -1.053333520889282, -71.27667236328125 ], [ -0.777222275733948, -71.389175415039062 ], [ -0.923055648803711, -71.58917236328125 ], [ -0.297500014305115, -71.658889770507812 ], [ 0.451781988143921, -71.270294189453125 ], [ 2.803160190582275, -70.846954345703125 ], [ 6.699520111083984, -70.586395263671875 ], [ 7.557308197021484, -70.168350219726562 ], [ 7.966181755065918, -70.17889404296875 ], [ 8.480646133422852, -70.477249145507812 ], [ 9.090387344360352, -70.318344116210938 ], [ 8.682855606079102, -70.074462890625 ], [ 9.231195449829102, -70.095001220703125 ], [ 10.663995742797852, -70.647232055664062 ], [ 11.270622253417969, -70.710281372070312 ], [ 12.046745300292969, -70.717514038085938 ], [ 12.740348815917969, -70.2811279296875 ], [ 14.165641784667969, -70.158905029296875 ], [ 15.705924987792969, -70.27862548828125 ], [ 18.036487579345703, -69.96917724609375 ], [ 23.246753692626953, -70.546417236328125 ], [ 31.083419799804688, -69.773895263671875 ], [ 32.902320861816406, -69.276947021484375 ], [ 33.026710510253906, -69.056396484375 ], [ 33.445045471191406, -68.957244873046875 ], [ 33.298934936523438, -68.774185180664062 ], [ 33.424232482910156, -68.651412963867188 ], [ 34.140357971191406, -68.4827880859375 ], [ 34.638099670410156, -68.534454345703125 ], [ 34.867042541503906, -68.8697509765625 ], [ 35.619483947753906, -69.1580810546875 ], [ 36.414527893066406, -69.314453125 ], [ 36.482032775878906, -69.449722290039062 ], [ 36.090614318847656, -69.380569458007812 ], [ 36.126441955566406, -69.533615112304688 ], [ 36.722572326660156, -69.728073120117188 ], [ 37.136207580566406, -69.401947021484375 ], [ 37.916175842285156, -69.251419067382812 ], [ 37.850929260253906, -69.533905029296875 ], [ 37.145057678222656, -69.664749145507812 ], [ 38.001747131347656, -69.744171142578125 ], [ 38.239234924316406, -69.9927978515625 ], [ 38.236183166503906, -69.800582885742188 ], [ 38.564491271972656, -69.500579833984375 ], [ 38.694496154785156, -69.558624267578125 ], [ 38.547035217285156, -69.721694946289062 ], [ 38.650367736816406, -69.988632202148438 ], [ 39.025367736816406, -69.738906860351562 ], [ 39.701759338378906, -69.648635864257812 ], [ 39.540626525878906, -69.446685791015625 ], [ 39.890052795410156, -69.395294189453125 ], [ 39.634803771972656, -69.226959228515625 ], [ 39.810340881347656, -69.164169311523438 ], [ 39.760353088378906, -68.9544677734375 ], [ 41.103126525878906, -68.523895263671875 ], [ 42.290626525878906, -68.363906860351562 ], [ 42.845367431640625, -68.088348388671875 ], [ 44.465911865234375, -67.98114013671875 ], [ 45.008941650390625, -67.732513427734375 ], [ 46.308929443359375, -67.641693115234375 ], [ 46.403411865234375, -67.5836181640625 ], [ 46.246429443359375, -67.357513427734375 ], [ 46.551429748535156, -67.277252197265625 ], [ 47.448951721191406, -67.417800903320312 ], [ 47.009498596191406, -67.550308227539062 ], [ 47.395606994628906, -67.722518920898438 ], [ 48.217010498046875, -67.634445190429688 ], [ 49.167266845703125, -67.38336181640625 ], [ 48.262855529785156, -67.167526245117188 ], [ 49.163970947265625, -66.862808227539062 ], [ 49.304534912109375, -66.952239990234375 ], [ 49.151702880859375, -67.088623046875 ], [ 49.829498291015625, -67.02166748046875 ], [ 50.009490966796875, -67.155303955078125 ], [ 50.689483642578125, -67.181396484375 ], [ 50.860076904296875, -67.135848999023438 ], [ 50.463409423828125, -67.066696166992188 ], [ 50.441192626953125, -66.888076782226562 ], [ 50.169769287109375, -66.743057250976562 ], [ 50.413116455078125, -66.441970825195312 ], [ 51.988922119140625, -65.9755859375 ], [ 53.727813720703125, -65.841400146484375 ], [ 55.619232177734375, -66.0069580078125 ], [ 56.272544860839844, -66.386688232421875 ], [ 57.311973571777344, -66.563339233398438 ], [ 57.338096618652344, -66.69805908203125 ], [ 56.883941650390625, -66.697784423828125 ], [ 56.729522705078125, -66.901123046875 ], [ 58.923919677734375, -67.181396484375 ], [ 59.075584411621094, -67.296951293945312 ], [ 58.893096923828125, -67.356674194335938 ], [ 59.110618591308594, -67.4122314453125 ], [ 60.527305603027344, -67.369171142578125 ], [ 62.728118896484375, -67.646957397460938 ], [ 63.777549743652344, -67.516403198242188 ], [ 68.297561645507812, -67.866119384765625 ], [ 69.605606079101562, -67.741683959960938 ], [ 69.705581665039062, -68.192794799804688 ], [ 70.102005004882812, -68.523895263671875 ], [ 69.722549438476562, -68.7247314453125 ] ] ], [ [ [ -62.237503051757812, -63.335281372070312 ], [ -62.210556030273438, -63.211395263671875 ], [ -61.943336486816406, -63.281669616699219 ], [ -61.971115112304688, -63.306671142578125 ], [ -62.237503051757812, -63.335281372070312 ] ] ], [ [ [ -55.999725341796875, -63.582504272460938 ], [ -56.205558776855469, -63.452781677246094 ], [ -55.707778930664062, -63.452507019042969 ], [ -55.741111755371094, -63.512504577636719 ], [ -55.999725341796875, -63.582504272460938 ] ] ], [ [ [ -60.738334655761719, -63.868339538574219 ], [ -60.886116027832031, -63.802505493164062 ], [ -60.764167785644531, -63.660560607910156 ], [ -60.531394958496094, -63.65167236328125 ], [ -60.738334655761719, -63.868339538574219 ] ] ], [ [ [ -57.3477783203125, -63.904449462890625 ], [ -57.590003967285156, -63.879173278808594 ], [ -57.693893432617188, -63.809173583984375 ], [ -57.045562744140625, -63.822784423828125 ], [ -57.3477783203125, -63.904449462890625 ] ] ], [ [ [ -58.422508239746094, -64.120315551757812 ], [ -58.183334350585938, -63.980278015136719 ], [ -58.2550048828125, -63.908889770507812 ], [ -57.837783813476562, -63.795280456542969 ], [ -57.768890380859375, -64.076126098632812 ], [ -57.463340759277344, -63.914169311523438 ], [ -57.033340454101562, -64.172500610351562 ], [ -57.345840454101562, -64.293624877929688 ], [ -57.270004272460938, -64.382781982421875 ], [ -57.91278076171875, -64.445281982421875 ], [ -58.239448547363281, -64.32501220703125 ], [ -58.080833435058594, -64.084732055664062 ], [ -58.422508239746094, -64.120315551757812 ] ] ], [ [ [ -62.548614501953125, -64.51556396484375 ], [ -62.704727172851562, -64.46612548828125 ], [ -62.42333984375, -64.231948852539062 ], [ -62.480560302734375, -64.0433349609375 ], [ -62.011672973632812, -64.21417236328125 ], [ -62.548614501953125, -64.51556396484375 ] ] ], [ [ [ -56.830001831054688, -64.317230224609375 ], [ -56.758338928222656, -64.23779296875 ], [ -56.5755615234375, -64.2197265625 ], [ -56.637504577636719, -64.278335571289062 ], [ -56.830001831054688, -64.317230224609375 ] ] ], [ [ [ -63.655281066894531, -64.834457397460938 ], [ -64.220565795898438, -64.67333984375 ], [ -63.2852783203125, -64.245559692382812 ], [ -63.089447021484375, -64.296676635742188 ], [ -63.306671142578125, -64.428619384765625 ], [ -63.091949462890625, -64.399169921875 ], [ -63.228057861328125, -64.5513916015625 ], [ -62.760284423828125, -64.560287475585938 ], [ -63.655281066894531, -64.834457397460938 ] ] ], [ [ [ -57.324447631835938, -64.554458618164062 ], [ -57.488616943359375, -64.49639892578125 ], [ -56.855003356933594, -64.338623046875 ], [ -57.066390991210938, -64.517501831054688 ], [ -57.324447631835938, -64.554458618164062 ] ] ], [ [ [ -63.324447631835938, -64.911956787109375 ], [ -63.555000305175781, -64.89306640625 ], [ -63.115005493164062, -64.727508544921875 ], [ -63.11083984375, -64.760009765625 ], [ -63.324447631835938, -64.911956787109375 ] ] ], [ [ [ -59.515007019042969, -65.121124267578125 ], [ -59.400558471679688, -65.237228393554688 ], [ -59.813056945800781, -65.107223510742188 ], [ -59.765281677246094, -65.080841064453125 ], [ -59.515007019042969, -65.121124267578125 ] ] ], [ [ [ 103.4686279296875, -65.438568115234375 ], [ 103.125846862792969, -65.410018920898438 ], [ 102.773933410644531, -65.140289306640625 ], [ 103.201171875, -65.167800903320312 ], [ 103.4686279296875, -65.438568115234375 ] ] ], [ [ [ 101.25665283203125, -65.503768920898438 ], [ 100.98114013671875, -65.663345336914062 ], [ 100.246147155761719, -65.600296020507812 ], [ 100.760307312011719, -65.394744873046875 ], [ 101.25665283203125, -65.503768920898438 ] ] ], [ [ [ -66.1138916015625, -65.881668090820312 ], [ -65.944168090820312, -65.542510986328125 ], [ -65.594451904296875, -65.517791748046875 ], [ -65.640838623046875, -65.675567626953125 ], [ -65.903335571289062, -65.705001831054688 ], [ -65.826950073242188, -65.838897705078125 ], [ -66.1138916015625, -65.881668090820312 ] ] ], [ [ [ 92.497817993164062, -65.807510375976562 ], [ 92.2689208984375, -65.764175415039062 ], [ 92.76226806640625, -65.763916015625 ], [ 92.698928833007812, -65.798355102539062 ], [ 92.497817993164062, -65.807510375976562 ] ] ], [ [ [ 100.750312805175781, -65.861679077148438 ], [ 100.70806884765625, -65.832794189453125 ], [ 100.99810791015625, -65.808914184570312 ], [ 100.932563781738281, -65.83917236328125 ], [ 100.750312805175781, -65.861679077148438 ] ] ], [ [ [ 100.91278076171875, -66.009185791015625 ], [ 100.85418701171875, -65.9989013671875 ], [ 100.8436279296875, -65.983078002929688 ], [ 100.95892333984375, -65.968338012695312 ], [ 100.91278076171875, -66.009185791015625 ] ] ], [ [ [ 100.8031005859375, -66.027252197265625 ], [ 100.7728271484375, -66.013336181640625 ], [ 100.842826843261719, -66.017227172851562 ], [ 100.838623046875, -66.024185180664062 ], [ 100.8031005859375, -66.027252197265625 ] ] ], [ [ [ 100.49169921875, -66.150009155273438 ], [ 100.61865234375, -66.046951293945312 ], [ 100.75640869140625, -66.079193115234375 ], [ 100.68084716796875, -66.128616333007812 ], [ 100.49169921875, -66.150009155273438 ] ] ], [ [ [ -66.7630615234375, -66.318069458007812 ], [ -66.738067626953125, -66.111114501953125 ], [ -66.5675048828125, -66.09417724609375 ], [ -66.585281372070312, -66.231948852539062 ], [ -66.7630615234375, -66.318069458007812 ] ] ], [ [ [ 96.7294921875, -66.263916015625 ], [ 96.318923950195312, -66.221954345703125 ], [ 96.260009765625, -66.188919067382812 ], [ 96.863906860351562, -66.133071899414062 ], [ 96.7294921875, -66.263916015625 ] ] ], [ [ [ 100.2528076171875, -66.193893432617188 ], [ 100.2586669921875, -66.133071899414062 ], [ 100.351676940917969, -66.143630981445312 ], [ 100.32501220703125, -66.184188842773438 ], [ 100.2528076171875, -66.193893432617188 ] ] ], [ [ [ 162.54974365234375, -66.436676025390625 ], [ 162.350006103515625, -66.32501220703125 ], [ 162.30029296875, -66.188919067382812 ], [ 162.601409912109375, -66.3505859375 ], [ 162.54974365234375, -66.436676025390625 ] ] ], [ [ [ 97.22918701171875, -66.466400146484375 ], [ 97.1236572265625, -66.449188232421875 ], [ 97.08837890625, -66.415283203125 ], [ 97.353103637695312, -66.42388916015625 ], [ 97.22918701171875, -66.466400146484375 ] ] ], [ [ [ 98.72918701171875, -66.495834350585938 ], [ 98.62615966796875, -66.476669311523438 ], [ 98.60198974609375, -66.433334350585938 ], [ 98.86279296875, -66.4544677734375 ], [ 98.72918701171875, -66.495834350585938 ] ] ], [ [ [ 85.316162109375, -66.629730224609375 ], [ 85.19061279296875, -66.6239013671875 ], [ 85.151992797851562, -66.590286254882812 ], [ 85.284194946289062, -66.520294189453125 ], [ 85.316162109375, -66.629730224609375 ] ] ], [ [ [ 163.094451904296875, -66.7589111328125 ], [ 163.02056884765625, -66.716949462890625 ], [ 162.949188232421875, -66.572235107421875 ], [ 163.11834716796875, -66.623062133789062 ], [ 163.094451904296875, -66.7589111328125 ] ] ], [ [ [ 99.27166748046875, -66.750839233398438 ], [ 99.2183837890625, -66.716400146484375 ], [ 99.52587890625, -66.5977783203125 ], [ 99.38336181640625, -66.71917724609375 ], [ 99.27166748046875, -66.750839233398438 ] ] ], [ [ [ -67.676155090332031, -67.160812377929688 ], [ -68.132781982421875, -67.32501220703125 ], [ -67.948623657226562, -67.437225341796875 ], [ -68.56500244140625, -67.748062133789062 ], [ -68.90362548828125, -67.76611328125 ], [ -69.228897094726562, -67.541397094726562 ], [ -67.8094482421875, -66.609725952148438 ], [ -67.585556030273438, -66.6138916015625 ], [ -67.910842895507812, -66.848892211914062 ], [ -67.913345336914062, -67.04779052734375 ], [ -67.676155090332031, -67.160812377929688 ] ] ], [ [ [ 86.45977783203125, -66.776123046875 ], [ 86.30169677734375, -66.711135864257812 ], [ 86.732009887695312, -66.712234497070312 ], [ 86.702285766601562, -66.741973876953125 ], [ 86.45977783203125, -66.776123046875 ] ] ], [ [ [ -67.45806884765625, -66.898895263671875 ], [ -67.490570068359375, -66.71112060546875 ], [ -67.212783813476562, -66.77972412109375 ], [ -67.296401977539062, -66.892501831054688 ], [ -67.45806884765625, -66.898895263671875 ] ] ], [ [ [ 86.031997680664062, -67.005020141601562 ], [ 85.46893310546875, -66.848892211914062 ], [ 85.372817993164062, -66.746688842773438 ], [ 86.190322875976562, -66.935562133789062 ], [ 86.031997680664062, -67.005020141601562 ] ] ], [ [ [ 48.397315979003906, -66.890289306640625 ], [ 48.311988830566406, -66.782241821289062 ], [ 48.843414306640625, -66.805023193359375 ], [ 48.814483642578125, -66.828353881835938 ], [ 48.397315979003906, -66.890289306640625 ] ] ], [ [ [ 50.316436767578125, -67.120574951171875 ], [ 50.255035400390625, -67.115570068359375 ], [ 50.130645751953125, -67.074188232421875 ], [ 50.250091552734375, -67.067794799804688 ], [ 50.316436767578125, -67.120574951171875 ] ] ], [ [ [ 58.842864990234375, -67.123062133789062 ], [ 58.800315856933594, -67.120574951171875 ], [ 58.774192810058594, -67.108612060546875 ], [ 58.870330810546875, -67.114456176757812 ], [ 58.842864990234375, -67.123062133789062 ] ] ], [ [ [ 58.570579528808594, -67.131668090820312 ], [ 58.528648376464844, -67.1177978515625 ], [ 58.671470642089844, -67.120010375976562 ], [ 58.642547607421875, -67.126419067382812 ], [ 58.570579528808594, -67.131668090820312 ] ] ], [ [ [ 164.76611328125, -67.600006103515625 ], [ 164.6177978515625, -67.50836181640625 ], [ 164.561676025390625, -67.27166748046875 ], [ 164.84002685546875, -67.423629760742188 ], [ 164.76611328125, -67.600006103515625 ] ] ], [ [ [ 59.308921813964844, -67.338623046875 ], [ 59.269256591796875, -67.290283203125 ], [ 59.416465759277344, -67.320571899414062 ], [ 59.406707763671875, -67.328079223632812 ], [ 59.308921813964844, -67.338623046875 ] ] ], [ [ [ 47.898040771484375, -67.594284057617188 ], [ 47.719764709472656, -67.651412963867188 ], [ 47.407867431640625, -67.624725341796875 ], [ 47.535926818847656, -67.51055908203125 ], [ 47.898040771484375, -67.594284057617188 ] ] ], [ [ [ -67.5594482421875, -67.811111450195312 ], [ -67.815292358398438, -67.689178466796875 ], [ -67.08416748046875, -67.631393432617188 ], [ -67.296401977539062, -67.754180908203125 ], [ -67.5594482421875, -67.811111450195312 ] ] ], [ [ [ -60.765708923339844, -68.681732177734375 ], [ -60.688613891601562, -68.74334716796875 ], [ -61.081672668457031, -68.679458618164062 ], [ -60.898338317871094, -68.650848388671875 ], [ -60.765708923339844, -68.681732177734375 ] ] ], [ [ [ -68.363067626953125, -70.755844116210938 ], [ -68.071395874023438, -71.638336181640625 ], [ -68.132232666015625, -71.879730224609375 ], [ -68.426681518554688, -71.989181518554688 ], [ -68.391677856445312, -72.233901977539062 ], [ -69.066680908203125, -72.375289916992188 ], [ -69.260009765625, -72.564178466796875 ], [ -72.376113891601562, -72.727783203125 ], [ -73.1944580078125, -72.431396484375 ], [ -72.636947631835938, -72.299179077148438 ], [ -70.9747314453125, -72.408340454101562 ], [ -70.521957397460938, -72.207778930664062 ], [ -72.045013427734375, -72.1944580078125 ], [ -70.947235107421875, -72.038894653320312 ], [ -71.8416748046875, -71.9202880859375 ], [ -72.267501831054688, -71.6461181640625 ], [ -72.866668701171875, -71.934173583984375 ], [ -73.879180908203125, -71.820556640625 ], [ -73.58111572265625, -72.047225952148438 ], [ -74.0433349609375, -72.208892822265625 ], [ -75.345565795898438, -71.9697265625 ], [ -75.466949462890625, -71.8447265625 ], [ -75.253616333007812, -71.797500610351562 ], [ -75.496673583984375, -71.717514038085938 ], [ -75.0513916015625, -71.572235107421875 ], [ -74.435836791992188, -71.693069458007812 ], [ -74.5069580078125, -71.485000610351562 ], [ -74.301116943359375, -71.427230834960938 ], [ -73.484176635742188, -71.6400146484375 ], [ -73.679168701171875, -71.358062744140625 ], [ -72.836669921875, -71.451950073242188 ], [ -72.411956787109375, -71.336395263671875 ], [ -73.15972900390625, -71.185012817382812 ], [ -72.9263916015625, -71.1158447265625 ], [ -71.628890991210938, -71.183624267578125 ], [ -71.23583984375, -71.026123046875 ], [ -70.6138916015625, -71.166397094726562 ], [ -71.020843505859375, -70.8033447265625 ], [ -72.470001220703125, -70.588623046875 ], [ -72.329452514648438, -70.430007934570312 ], [ -71.389175415039062, -70.230010986328125 ], [ -71.81500244140625, -69.984176635742188 ], [ -71.624176025390625, -69.778900146484375 ], [ -71.790283203125, -69.632781982421875 ], [ -71.645843505859375, -69.517501831054688 ], [ -72.120285034179688, -69.402511596679688 ], [ -72.2469482421875, -69.193618774414062 ], [ -70.596389770507812, -68.777511596679688 ], [ -70.087509155273438, -68.899734497070312 ], [ -70.08416748046875, -69.263626098632812 ], [ -69.503067016601562, -69.48028564453125 ], [ -69.05694580078125, -70.192779541015625 ], [ -68.63751220703125, -70.345291137695312 ], [ -68.363067626953125, -70.755844116210938 ] ] ], [ [ [ -90.594451904296875, -68.92584228515625 ], [ -90.7308349609375, -68.870010375976562 ], [ -90.75140380859375, -68.799179077148438 ], [ -90.486953735351562, -68.827789306640625 ], [ -90.594451904296875, -68.92584228515625 ] ] ], [ [ [ -63.466949462890625, -68.851669311523438 ], [ -63.561393737792969, -68.83612060546875 ], [ -63.627784729003906, -68.796951293945312 ], [ -63.413337707519531, -68.837234497070312 ], [ -63.466949462890625, -68.851669311523438 ] ] ], [ [ [ 155.3096923828125, -68.985015869140625 ], [ 155.200836181640625, -69.046112060546875 ], [ 154.95391845703125, -69.017227172851562 ], [ 155.088165283203125, -68.922195434570312 ], [ 155.3096923828125, -68.985015869140625 ] ] ], [ [ [ 155.883697509765625, -69.058975219726562 ], [ 155.817779541015625, -69.152786254882812 ], [ 155.5150146484375, -69.0625 ], [ 155.556671142578125, -68.993896484375 ], [ 155.883697509765625, -69.058975219726562 ] ] ], [ [ [ -62.061393737792969, -69.72222900390625 ], [ -62.381950378417969, -69.276123046875 ], [ -62.327224731445312, -69.107513427734375 ], [ -61.715560913085938, -69.468612670898438 ], [ -62.061393737792969, -69.72222900390625 ] ] ], [ [ [ -72.051193237304688, -69.67950439453125 ], [ -72.525848388671875, -69.755569458007812 ], [ -72.945846557617188, -69.607513427734375 ], [ -72.465286254882812, -69.493621826171875 ], [ -72.051193237304688, -69.67950439453125 ] ] ], [ [ [ 38.194801330566406, -69.6802978515625 ], [ 38.118385314941406, -69.673629760742188 ], [ 38.056190490722656, -69.636688232421875 ], [ 38.256752014160156, -69.665023803710938 ], [ 38.194801330566406, -69.6802978515625 ] ] ], [ [ [ -74.755096435546875, -70.150115966796875 ], [ -75.269729614257812, -70.178070068359375 ], [ -75.862228393554688, -70.046951293945312 ], [ -75.637222290039062, -69.83917236328125 ], [ -75.234451293945312, -69.8114013671875 ], [ -74.451675415039062, -70.0150146484375 ], [ -74.755096435546875, -70.150115966796875 ] ] ], [ [ [ 15.933706283569336, -70.175003051757812 ], [ 15.504508972167969, -70.1319580078125 ], [ 15.360343933105469, -70.028900146484375 ], [ 15.920339584350586, -69.860015869140625 ], [ 16.362052917480469, -70.01751708984375 ], [ 15.933706283569336, -70.175003051757812 ] ] ], [ [ [ -61.289573669433594, -69.96270751953125 ], [ -61.406112670898438, -70.015838623046875 ], [ -61.528060913085938, -69.965286254882812 ], [ -61.390556335449219, -69.908889770507812 ], [ -61.289573669433594, -69.96270751953125 ] ] ], [ [ [ 12.980644226074219, -70.03668212890625 ], [ 13.221183776855469, -70.13751220703125 ], [ 12.481742858886719, -70.110565185546875 ], [ 12.548698425292969, -70.049728393554688 ], [ 12.980644226074219, -70.03668212890625 ] ] ], [ [ [ -1.814166784286499, -70.234176635742188 ], [ -1.905555725097656, -70.223342895507812 ], [ -1.973055601119995, -70.181671142578125 ], [ -1.774722337722778, -70.220001220703125 ], [ -1.814166784286499, -70.234176635742188 ] ] ], [ [ [ 72.206741333007812, -70.615859985351562 ], [ 71.831436157226562, -70.55584716796875 ], [ 71.688125610351562, -70.338348388671875 ], [ 71.930068969726562, -70.294174194335938 ], [ 72.206741333007812, -70.615859985351562 ] ] ], [ [ [ -2.762429237365723, -70.287185668945312 ], [ -2.644166946411133, -70.415283203125 ], [ -3.32972240447998, -70.48333740234375 ], [ -3.20472240447998, -70.330001831054688 ], [ -2.762429237365723, -70.287185668945312 ] ] ], [ [ [ 163.36419677734375, -70.38250732421875 ], [ 163.3052978515625, -70.34918212890625 ], [ 163.48333740234375, -70.353897094726562 ], [ 163.464752197265625, -70.365570068359375 ], [ 163.36419677734375, -70.38250732421875 ] ] ], [ [ [ 2.922605991363525, -70.628616333007812 ], [ 2.621763229370117, -70.485305786132812 ], [ 3.327329635620117, -70.468917846679688 ], [ 3.235898971557617, -70.553619384765625 ], [ 2.922605991363525, -70.628616333007812 ] ] ], [ [ [ -5.969852447509766, -70.417953491210938 ], [ -5.960000038146973, -70.571945190429688 ], [ -6.37861156463623, -70.484451293945312 ], [ -6.132223129272461, -70.4102783203125 ], [ -5.969852447509766, -70.417953491210938 ] ] ], [ [ [ -60.814064025878906, -70.661331176757812 ], [ -61.0755615234375, -70.641952514648438 ], [ -61.159172058105469, -70.575836181640625 ], [ -60.631393432617188, -70.54833984375 ], [ -60.814064025878906, -70.661331176757812 ] ] ], [ [ [ 2.008116245269775, -70.70001220703125 ], [ 1.895933866500854, -70.6461181640625 ], [ 2.216734409332275, -70.636398315429688 ], [ 2.172056674957275, -70.681137084960938 ], [ 2.008116245269775, -70.70001220703125 ] ] ], [ [ [ -73.81292724609375, -70.902328491210938 ], [ -75.745834350585938, -71.178070068359375 ], [ -76.431671142578125, -71.205001831054688 ], [ -76.635009765625, -71.060287475585938 ], [ -75.316116333007812, -70.852783203125 ], [ -74.98583984375, -70.669448852539062 ], [ -74.535003662109375, -70.821121215820312 ], [ -74.454727172851562, -70.641952514648438 ], [ -73.604446411132812, -70.730010986328125 ], [ -73.81292724609375, -70.902328491210938 ] ] ], [ [ [ -2.722777843475342, -71.040557861328125 ], [ -3.291388988494873, -70.890289306640625 ], [ -3.452500343322754, -70.67889404296875 ], [ -1.982777833938599, -70.816390991210938 ], [ -2.722777843475342, -71.040557861328125 ] ] ], [ [ [ -7.902500152587891, -70.734176635742188 ], [ -8.043611526489258, -70.70001220703125 ], [ -7.725277900695801, -70.710281372070312 ], [ -7.748333930969238, -70.720840454101562 ], [ -7.902500152587891, -70.734176635742188 ] ] ], [ [ [ -60.535530090332031, -71.056350708007812 ], [ -60.841117858886719, -71.011672973632812 ], [ -60.95916748046875, -70.945281982421875 ], [ -60.624725341796875, -70.885009765625 ], [ -60.535530090332031, -71.056350708007812 ] ] ], [ [ [ 0.452026128768921, -71.1005859375 ], [ 0.270934879779816, -71.0714111328125 ], [ 0.23980700969696, -71.033615112304688 ], [ 0.586730599403381, -71.064453125 ], [ 0.452026128768921, -71.1005859375 ] ] ], [ [ [ -98.663619995117188, -72.56695556640625 ], [ -99.645004272460938, -72.439453125 ], [ -99.343902587890625, -72.3416748046875 ], [ -102.562789916992188, -72.124725341796875 ], [ -100.414459228515625, -71.881393432617188 ], [ -100.061660766601562, -71.935134887695312 ], [ -100.51055908203125, -72.02362060546875 ], [ -100.0625, -72.032791137695312 ], [ -100.235000610351562, -72.130844116210938 ], [ -99.698898315429688, -71.96417236328125 ], [ -99.611114501953125, -72.14111328125 ], [ -98.83306884765625, -72.131393432617188 ], [ -99.307510375976562, -71.943893432617188 ], [ -98.886123657226562, -71.761672973632812 ], [ -98.8194580078125, -71.883621215820312 ], [ -98.287857055664062, -71.87799072265625 ], [ -98.547500610351562, -72.147232055664062 ], [ -98.018341064453125, -72.142227172851562 ], [ -98.136306762695312, -71.892898559570312 ], [ -97.814453125, -71.906951904296875 ], [ -97.712509155273438, -72.01055908203125 ], [ -97.87139892578125, -72.10528564453125 ], [ -97.6864013671875, -72.18194580078125 ], [ -97.391952514648438, -72.0614013671875 ], [ -97.349456787109375, -71.862503051757812 ], [ -96.692230224609375, -71.868896484375 ], [ -96.342636108398438, -72.002197265625 ], [ -97.258056640625, -72.22222900390625 ], [ -95.995147705078125, -72.080001831054688 ], [ -95.821670532226562, -72.189453125 ], [ -96.596115112304688, -72.286666870117188 ], [ -95.67584228515625, -72.360565185546875 ], [ -96.2650146484375, -72.557235717773438 ], [ -97.716949462890625, -72.45361328125 ], [ -98.663619995117188, -72.56695556640625 ] ] ], [ [ [ 69.778091430664062, -72.035858154296875 ], [ 69.773086547851562, -71.923629760742188 ], [ 69.957290649414062, -71.91864013671875 ], [ 69.957534790039062, -71.939453125 ], [ 69.778091430664062, -72.035858154296875 ] ] ], [ [ [ 68.460586547851562, -72.279190063476562 ], [ 68.693130493164062, -72.088912963867188 ], [ 68.820022583007812, -72.165283203125 ], [ 68.776687622070312, -72.2205810546875 ], [ 68.460586547851562, -72.279190063476562 ] ] ], [ [ [ -60.328277587890625, -72.255538940429688 ], [ -60.452507019042969, -72.253067016601562 ], [ -60.501945495605469, -72.199722290039062 ], [ -60.343612670898438, -72.194168090820312 ], [ -60.328277587890625, -72.255538940429688 ] ] ], [ [ [ -68.886123657226562, -72.478347778320312 ], [ -68.976669311523438, -72.454727172851562 ], [ -68.598068237304688, -72.385833740234375 ], [ -68.663619995117188, -72.443618774414062 ], [ -68.886123657226562, -72.478347778320312 ] ] ], [ [ [ -77.706939697265625, -72.471542358398438 ], [ -77.439178466796875, -72.588623046875 ], [ -77.594451904296875, -72.910003662109375 ], [ -78.8447265625, -73.185287475585938 ], [ -79.421676635742188, -72.960006713867188 ], [ -78.8416748046875, -72.771392822265625 ], [ -79.461395263671875, -72.566390991210938 ], [ -79.247512817382812, -72.402511596679688 ], [ -78.2569580078125, -72.588623046875 ], [ -77.706939697265625, -72.471542358398438 ] ] ], [ [ [ -94.696762084960938, -72.61419677734375 ], [ -95.331390380859375, -72.671951293945312 ], [ -95.518341064453125, -72.649444580078125 ], [ -94.933334350585938, -72.49639892578125 ], [ -94.696762084960938, -72.61419677734375 ] ] ], [ [ [ -61.080001831054688, -72.561111450195312 ], [ -61.135002136230469, -72.545013427734375 ], [ -60.970001220703125, -72.527511596679688 ], [ -60.992225646972656, -72.552780151367188 ], [ -61.080001831054688, -72.561111450195312 ] ] ], [ [ [ -90.83416748046875, -72.665847778320312 ], [ -90.851959228515625, -72.916397094726562 ], [ -91.363067626953125, -73.158340454101562 ], [ -91.328338623046875, -72.8880615234375 ], [ -91.621414184570312, -72.610488891601562 ], [ -91.033340454101562, -72.53167724609375 ], [ -90.83416748046875, -72.665847778320312 ] ] ], [ [ [ -99.552505493164062, -72.809722900390625 ], [ -100.424453735351562, -72.755279541015625 ], [ -100.858612060546875, -72.665557861328125 ], [ -100.335563659667969, -72.556121826171875 ], [ -98.930557250976562, -72.665283203125 ], [ -99.552505493164062, -72.809722900390625 ] ] ], [ [ [ -93.1943359375, -72.562255859375 ], [ -93.26556396484375, -72.634735107421875 ], [ -93.475570678710938, -72.646392822265625 ], [ -93.448333740234375, -72.579452514648438 ], [ -93.1943359375, -72.562255859375 ] ] ], [ [ [ -98.148056030273438, -72.730010986328125 ], [ -98.343612670898438, -72.699447631835938 ], [ -97.825286865234375, -72.663345336914062 ], [ -97.940841674804688, -72.70361328125 ], [ -98.148056030273438, -72.730010986328125 ] ] ], [ [ [ -93.7852783203125, -72.913070678710938 ], [ -94.130279541015625, -72.86834716796875 ], [ -94.1380615234375, -72.83917236328125 ], [ -93.80584716796875, -72.81500244140625 ], [ -93.7852783203125, -72.913070678710938 ] ] ], [ [ [ -74.185821533203125, -73.06256103515625 ], [ -74.5050048828125, -73.321395874023438 ], [ -74.268341064453125, -73.535003662109375 ], [ -74.465560913085938, -73.648345947265625 ], [ -76.093612670898438, -73.209457397460938 ], [ -75.395278930664062, -73.060012817382812 ], [ -75.720291137695312, -72.945556640625 ], [ -75.318069458007812, -72.811676025390625 ], [ -74.185821533203125, -73.06256103515625 ] ] ], [ [ [ -90.280838012695312, -73.08306884765625 ], [ -90.337783813476562, -72.95556640625 ], [ -89.943069458007812, -72.845001220703125 ], [ -89.456680297851562, -72.906951904296875 ], [ -90.280838012695312, -73.08306884765625 ] ] ], [ [ [ -104.890556335449219, -73.2408447265625 ], [ -105.052513122558594, -73.21417236328125 ], [ -105.241119384765625, -73.054733276367188 ], [ -105.040008544921875, -72.949172973632812 ], [ -104.55029296875, -73.186676025390625 ], [ -104.890556335449219, -73.2408447265625 ] ] ], [ [ [ -73.4971923828125, -73.156784057617188 ], [ -73.785842895507812, -73.396392822265625 ], [ -74.064178466796875, -73.3255615234375 ], [ -73.724456787109375, -73.15362548828125 ], [ -73.4971923828125, -73.156784057617188 ] ] ], [ [ [ -78.347335815429688, -73.258270263671875 ], [ -77.929458618164062, -73.212509155273438 ], [ -77.635833740234375, -73.314453125 ], [ -78.196945190429688, -73.446121215820312 ], [ -78.347335815429688, -73.258270263671875 ] ] ], [ [ [ -125.102546691894531, -73.589950561523438 ], [ -125.178070068359375, -73.7025146484375 ], [ -124.230560302734375, -73.689178466796875 ], [ -123.724166870117188, -74.100570678710938 ], [ -125.252792358398438, -74.06390380859375 ], [ -126.476119995117188, -73.6622314453125 ], [ -127.121116638183594, -73.667510986328125 ], [ -127.085563659667969, -73.535568237304688 ], [ -127.392501831054688, -73.41778564453125 ], [ -126.30584716796875, -73.217514038085938 ], [ -125.102546691894531, -73.589950561523438 ] ] ], [ [ [ 169.75030517578125, -73.600845336914062 ], [ 169.54248046875, -73.594741821289062 ], [ 169.388031005859375, -73.5330810546875 ], [ 169.888336181640625, -73.294174194335938 ], [ 169.91802978515625, -73.554183959960938 ], [ 169.75030517578125, -73.600845336914062 ] ] ], [ [ [ -118.551620483398438, -73.924850463867188 ], [ -119.437789916992188, -74.167236328125 ], [ -122.132232666015625, -74.368057250976562 ], [ -122.629997253417969, -74.320846557617188 ], [ -122.449722290039062, -74.185012817382812 ], [ -122.576133728027344, -74.039169311523438 ], [ -122.414459228515625, -73.870559692382812 ], [ -123.159393310546875, -73.734039306640625 ], [ -122.272781372070312, -73.598068237304688 ], [ -120.545562744140625, -73.789459228515625 ], [ -119.169448852539062, -73.758346557617188 ], [ -118.551620483398438, -73.924850463867188 ] ] ], [ [ [ -115.884292602539062, -73.925308227539062 ], [ -116.27362060546875, -74.15362548828125 ], [ -117.241119384765625, -74.1875 ], [ -116.728897094726562, -73.970565795898438 ], [ -115.884292602539062, -73.925308227539062 ] ] ], [ [ [ -20.40496826171875, -74.118316650390625 ], [ -20.321666717529297, -74.241668701171875 ], [ -20.589447021484375, -74.455001831054688 ], [ -20.150836944580078, -74.685562133789062 ], [ -20.14666748046875, -74.861679077148438 ], [ -20.813056945800781, -74.576950073242188 ], [ -21.599166870117188, -74.466949462890625 ], [ -20.40496826171875, -74.118316650390625 ] ] ], [ [ [ -117.161392211914062, -74.337234497070312 ], [ -117.11334228515625, -74.283065795898438 ], [ -116.751678466796875, -74.247222900390625 ], [ -116.778633117675781, -74.277511596679688 ], [ -117.161392211914062, -74.337234497070312 ] ] ], [ [ [ -127.440567016601562, -74.581390380859375 ], [ -127.928886413574219, -74.405014038085938 ], [ -128.160858154296875, -74.254180908203125 ], [ -127.036117553710938, -74.392227172851562 ], [ -127.440567016601562, -74.581390380859375 ] ] ], [ [ [ -130.7994384765625, -74.370803833007812 ], [ -130.896392822265625, -74.544174194335938 ], [ -132.00836181640625, -74.423065185546875 ], [ -131.67083740234375, -74.2933349609375 ], [ -130.7994384765625, -74.370803833007812 ] ] ], [ [ [ -132.2022705078125, -74.405715942382812 ], [ -132.3719482421875, -74.46417236328125 ], [ -132.661956787109375, -74.419174194335938 ], [ -132.39251708984375, -74.356674194335938 ], [ -132.2022705078125, -74.405715942382812 ] ] ], [ [ [ -142.96173095703125, -75.515228271484375 ], [ -143.13555908203125, -75.533340454101562 ], [ -143.280853271484375, -75.491668701171875 ], [ -143.082244873046875, -75.465286254882812 ], [ -142.96173095703125, -75.515228271484375 ] ] ], [ [ [ -145.547576904296875, -75.557540893554688 ], [ -145.25250244140625, -75.634735107421875 ], [ -145.111968994140625, -75.718338012695312 ], [ -145.867279052734375, -75.60455322265625 ], [ -145.547576904296875, -75.557540893554688 ] ] ], [ [ [ -146.846405029296875, -75.858901977539062 ], [ -146.938629150390625, -75.851119995117188 ], [ -147.003631591796875, -75.8194580078125 ], [ -146.755584716796875, -75.843902587890625 ], [ -146.846405029296875, -75.858901977539062 ] ] ], [ [ [ -146.6097412109375, -76.308624267578125 ], [ -146.83807373046875, -76.2841796875 ], [ -147.278076171875, -76.11334228515625 ], [ -146.776123046875, -76.087234497070312 ], [ -146.6097412109375, -76.308624267578125 ] ] ], [ [ [ 168.57666015625, -76.2347412109375 ], [ 168.435821533203125, -76.20556640625 ], [ 168.361083984375, -76.162506103515625 ], [ 168.490814208984375, -76.158615112304688 ], [ 168.57666015625, -76.2347412109375 ] ] ], [ [ [ -147.059722900390625, -76.51251220703125 ], [ -146.760833740234375, -76.570556640625 ], [ -146.730010986328125, -76.69500732421875 ], [ -147.25140380859375, -76.576950073242188 ], [ -147.059722900390625, -76.51251220703125 ] ] ], [ [ [ -147.386962890625, -76.61639404296875 ], [ -147.562225341796875, -76.579727172851562 ], [ -147.618072509765625, -76.55694580078125 ], [ -147.343902587890625, -76.607513427734375 ], [ -147.386962890625, -76.61639404296875 ] ] ], [ [ [ -147.433624267578125, -76.688613891601562 ], [ -147.8013916015625, -76.653335571289062 ], [ -147.954193115234375, -76.59112548828125 ], [ -147.591400146484375, -76.593902587890625 ], [ -147.433624267578125, -76.688613891601562 ] ] ], [ [ [ -148.43695068359375, -76.691390991210938 ], [ -148.68695068359375, -76.678619384765625 ], [ -148.774749755859375, -76.652786254882812 ], [ -148.36724853515625, -76.672225952148438 ], [ -148.43695068359375, -76.691390991210938 ] ] ], [ [ [ -150.37811279296875, -76.67279052734375 ], [ -149.895294189453125, -76.658889770507812 ], [ -149.76806640625, -76.700836181640625 ], [ -150.701416015625, -76.719451904296875 ], [ -150.37811279296875, -76.67279052734375 ] ] ], [ [ [ -148.8558349609375, -76.836944580078125 ], [ -149.169189453125, -76.732223510742188 ], [ -148.1572265625, -76.765289306640625 ], [ -148.3778076171875, -76.808334350585938 ], [ -148.8558349609375, -76.836944580078125 ] ] ], [ [ [ -146.83502197265625, -76.989181518554688 ], [ -146.977783203125, -76.832229614257812 ], [ -146.223358154296875, -76.897506713867188 ], [ -146.337799072265625, -76.946121215820312 ], [ -146.83502197265625, -76.989181518554688 ] ] ], [ [ [ -149.9853515625, -76.873672485351562 ], [ -149.51641845703125, -76.885833740234375 ], [ -149.072509765625, -77.100845336914062 ], [ -150.73638916015625, -76.951126098632812 ], [ -149.9853515625, -76.873672485351562 ] ] ], [ [ [ -148.770843505859375, -77.020004272460938 ], [ -149.194732666015625, -76.9505615234375 ], [ -148.206695556640625, -76.978057861328125 ], [ -148.305572509765625, -76.99945068359375 ], [ -148.770843505859375, -77.020004272460938 ] ] ], [ [ [ -147.650848388671875, -77.106948852539062 ], [ -147.80889892578125, -77.068893432617188 ], [ -147.835296630859375, -77.03472900390625 ], [ -147.65472412109375, -77.040008544921875 ], [ -147.650848388671875, -77.106948852539062 ] ] ], [ [ [ -148.0452880859375, -77.436111450195312 ], [ -148.30474853515625, -77.358901977539062 ], [ -148.86279296875, -77.263336181640625 ], [ -148.79779052734375, -77.116119384765625 ], [ -148.464447021484375, -77.070556640625 ], [ -147.708892822265625, -77.189453125 ], [ -147.590850830078125, -77.331680297851562 ], [ -148.0452880859375, -77.436111450195312 ] ] ], [ [ [ -147.258056640625, -77.243057250976562 ], [ -147.34112548828125, -77.234725952148438 ], [ -147.532806396484375, -77.151947021484375 ], [ -147.0625, -77.17388916015625 ], [ -147.258056640625, -77.243057250976562 ] ] ], [ [ [ 169.423004150390625, -77.462982177734375 ], [ 168.9405517578125, -77.640289306640625 ], [ 167.5836181640625, -77.636688232421875 ], [ 166.776641845703125, -77.8577880859375 ], [ 166.67999267578125, -77.815292358398438 ], [ 166.870849609375, -77.720840454101562 ], [ 166.547760009765625, -77.706680297851562 ], [ 166.88250732421875, -77.671951293945312 ], [ 166.213348388671875, -77.53863525390625 ], [ 166.613861083984375, -77.392227172851562 ], [ 166.366119384765625, -77.282241821289062 ], [ 166.63165283203125, -77.172805786132812 ], [ 167.37969970703125, -77.383621215820312 ], [ 169.423004150390625, -77.462982177734375 ] ] ], [ [ [ -151.193084716796875, -77.26971435546875 ], [ -150.81890869140625, -77.19500732421875 ], [ -150.076416015625, -77.340560913085938 ], [ -150.308349609375, -77.369735717773438 ], [ -151.193084716796875, -77.26971435546875 ] ] ], [ [ [ -149.124176025390625, -77.356674194335938 ], [ -149.282501220703125, -77.34417724609375 ], [ -149.51947021484375, -77.290847778320312 ], [ -148.82305908203125, -77.344451904296875 ], [ -149.124176025390625, -77.356674194335938 ] ] ], [ [ [ -148.793060302734375, -77.443069458007812 ], [ -148.900848388671875, -77.438064575195312 ], [ -149.0352783203125, -77.416946411132812 ], [ -148.747528076171875, -77.428619384765625 ], [ -148.793060302734375, -77.443069458007812 ] ] ], [ [ [ -51.364448547363281, -79.826950073242188 ], [ -50.594169616699219, -79.546951293945312 ], [ -50.712783813476562, -79.335006713867188 ], [ -50.499168395996094, -79.080001831054688 ], [ -50.556114196777344, -78.950836181640625 ], [ -49.875839233398438, -78.479171752929688 ], [ -48.272781372070312, -78.056396484375 ], [ -46.966949462890625, -77.919723510742188 ], [ -45.44000244140625, -78.013336181640625 ], [ -43.919174194335938, -78.342514038085938 ], [ -43.890007019042969, -78.528060913085938 ], [ -44.088890075683594, -78.692230224609375 ], [ -45.575279235839844, -78.851959228515625 ], [ -43.872779846191406, -78.965835571289062 ], [ -43.821395874023438, -79.231674194335938 ], [ -44.583335876464844, -79.333892822265625 ], [ -43.5433349609375, -79.447235107421875 ], [ -43.33111572265625, -79.631118774414062 ], [ -43.640007019042969, -80.04833984375 ], [ -44.572502136230469, -80.09222412109375 ], [ -44.1380615234375, -80.306671142578125 ], [ -46.416671752929688, -80.590011596679688 ], [ -52.904167175292969, -80.921676635742188 ], [ -54.343055725097656, -80.897232055664062 ], [ -54.908889770507812, -80.718612670898438 ], [ -54.012779235839844, -80.293060302734375 ], [ -52.425834655761719, -80.139724731445312 ], [ -51.364448547363281, -79.826950073242188 ] ] ], [ [ [ 167.11749267578125, -78.254730224609375 ], [ 166.874176025390625, -78.194747924804688 ], [ 167.425018310546875, -77.997528076171875 ], [ 167.677490234375, -78.117523193359375 ], [ 167.11749267578125, -78.254730224609375 ] ] ], [ [ [ 166.31805419921875, -78.314743041992188 ], [ 166.0655517578125, -78.11474609375 ], [ 166.774169921875, -78.221115112304688 ], [ 166.745269775390625, -78.23974609375 ], [ 166.31805419921875, -78.314743041992188 ] ] ], [ [ [ -71.098068237304688, -79.65167236328125 ], [ -71.738067626953125, -79.570846557617188 ], [ -71.85528564453125, -79.4202880859375 ], [ -71.527786254882812, -79.107513427734375 ], [ -70.304168701171875, -78.805282592773438 ], [ -67.9888916015625, -78.456390380859375 ], [ -67.317230224609375, -78.503616333007812 ], [ -70.3819580078125, -79.57806396484375 ], [ -71.098068237304688, -79.65167236328125 ] ] ], [ [ [ -37.932502746582031, -78.665557861328125 ], [ -39.470558166503906, -78.60833740234375 ], [ -41.930557250976562, -78.591949462890625 ], [ -41.026947021484375, -78.473892211914062 ], [ -37.459449768066406, -78.640289306640625 ], [ -37.932502746582031, -78.665557861328125 ] ] ], [ [ [ -159.0875244140625, -79.8819580078125 ], [ -162.46502685546875, -79.64556884765625 ], [ -163.59222412109375, -79.372512817382812 ], [ -163.8153076171875, -79.180557250976562 ], [ -162.7861328125, -78.734176635742188 ], [ -161.6683349609375, -78.747787475585938 ], [ -158.542510986328125, -79.661666870117188 ], [ -159.0875244140625, -79.8819580078125 ] ] ], [ [ [ 162.15972900390625, -79.061676025390625 ], [ 161.947784423828125, -79.030838012695312 ], [ 161.92584228515625, -78.981674194335938 ], [ 162.172515869140625, -79.050308227539062 ], [ 162.15972900390625, -79.061676025390625 ] ] ], [ [ [ -60.195175170898438, -80.227828979492188 ], [ -60.750839233398438, -80.690292358398438 ], [ -61.843894958496094, -80.836395263671875 ], [ -64.18084716796875, -80.431121826171875 ], [ -66.07000732421875, -80.45001220703125 ], [ -67.031951904296875, -80.166397094726562 ], [ -62.550003051757812, -80.258895874023438 ], [ -61.789451599121094, -80.12445068359375 ], [ -61.418617248535156, -79.706680297851562 ], [ -60.69500732421875, -79.610000610351562 ], [ -60.173614501953125, -79.711669921875 ], [ -60.195175170898438, -80.227828979492188 ] ] ] ] } } +] +} diff --git a/tests/conftest.py b/tests/conftest.py index b663fe1..fdee8d4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -4,9 +4,3 @@ import pytest -@pytest.fixture -def repos(tmpdir): - from pydplace.api import Repos - - shutil.copytree(str(Path(__file__).parent / 'repos'), str(tmpdir.join('repos'))) - return Repos(str(tmpdir.join('repos'))) diff --git a/tests/dataset_with_societies/raw/codes.csv b/tests/dataset_with_societies/raw/codes.csv new file mode 100644 index 0000000..2958a24 --- /dev/null +++ b/tests/dataset_with_societies/raw/codes.csv @@ -0,0 +1,28 @@ +var_id,code,description,name +WNAI8,NA,Missing data,Missing data +WNAI8,1,"Western pines: yellow pine, sugar pine, lodgepole pine, Douglas-fir",Western pines:spp +WNAI8,2,"Northwestern conifers: Western larch, western white pine, Douglas-fir, redwood",Northwest conifers +WNAI8,3,Sagebrush,Sagebrush +WNAI8,4,Creosote bush and mesquite,Creosote-Mesquite +WNAI8,5,Chaparral (broadleaf forest and scrub forest),Chaparral +WNAI8,6,Pinon-juniper,Pinon-Juniper +WNAI8,7,Bunchgrass,Bunchgrass +WNAI8,8,Short grass,Short grass +WNAI8,9,Tundra,Tundra +WNAI8,10,"Codes 4 & 6 (creosote, mesquite, and juniper)",4 and 6 +WNAI8,11,Codes 6 & 8 (pinon-juniper and bunch grass),6 and 8 +WNAI11,NA,Missing data,Missing data +WNAI11,1,Absent,Absent +WNAI11,2,Present,Present +WNAI11,3,"Present and very frequent (a codominant species of the natural vegetation, after Kucher, 1964)",Very Frequent +WNAI11,4,Sufficiently frequent species to be sole representative of the genus shown on Kuchler’s map of dominant natural vegetation,Dominates the genus +WNAI12,NA,Missing data,Missing data +WNAI12,1,Absent,Absent +WNAI12,2,Present,Present +WNAI12,3,Very frequent,Very Frequent +WNAI12,4,Only representative of the genus shown on map of dominant vegetation,Dominates the genus +WNAI13,NA,Missing data,Missing data +WNAI13,1,Absent,Absent +WNAI13,2,Present,Present +WNAI13,3,Very frequent,Very Frequent +WNAI13,4,Only representative of the genus shown on map of dominant vegetation,Dominates the genus diff --git a/tests/dataset_with_societies/raw/data.csv b/tests/dataset_with_societies/raw/data.csv new file mode 100644 index 0000000..ddf702c --- /dev/null +++ b/tests/dataset_with_societies/raw/data.csv @@ -0,0 +1,13 @@ +soc_id,sub_case,year,var_id,code,comment,references,source_coded_data,admin_comment +WNAI1,,NA,WNAI8,2,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI2,,NA,WNAI8,2,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI3,,NA,WNAI8,2,,drucker1940; drucker1950; drucker1965; krause1956; murdock1934a; murdock1934b; murdock1936a; rosmanandrubel1971; swanton1909,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI1,,NA,WNAI11,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI2,,NA,WNAI11,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI3,,NA,WNAI11,1,,drucker1940; drucker1950; drucker1965; krause1956; murdock1934a; murdock1934b; murdock1936a; rosmanandrubel1971; swanton1909,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI1,,NA,WNAI12,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI2,,NA,WNAI12,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI3,,NA,WNAI12,1,,drucker1940; drucker1950; drucker1965; krause1956; murdock1934a; murdock1934b; murdock1936a; rosmanandrubel1971; swanton1909,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI1,,NA,WNAI13,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI2,,NA,WNAI13,1,,delaguna1960; barnett1968; drucker1950; druckerandheizer1967; garfield1947; jones1914; krause1956; olson1936b; olson1967; rosmanandrubel1971; swanton1908,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", +WNAI3,,NA,WNAI13,1,,drucker1940; drucker1950; drucker1965; krause1956; murdock1934a; murdock1934b; murdock1936a; rosmanandrubel1971; swanton1909,"wn01.dat (World Cultures CD-ROM 2011, folder 10#2)", diff --git a/tests/dataset_with_societies/raw/societies.csv b/tests/dataset_with_societies/raw/societies.csv new file mode 100644 index 0000000..7b7c87d --- /dev/null +++ b/tests/dataset_with_societies/raw/societies.csv @@ -0,0 +1,4 @@ +id,xd_id,pref_name_for_society,glottocode,ORIG_name_and_ID_in_this_dataset,alt_names_by_society,main_focal_year,HRAF_name_ID,HRAF_link,origLat,origLong,Lat,Long,Comment,glottocode_comment +WNAI1,xd1431,North Tlingit,tlin1245,North Tlingit (J1),North Tlinkit,NA,Tlingit (NA12),http://ehrafworldcultures.yale.edu/collection?owc=NA12,59,136,59,-136,Original,"Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog." +WNAI2,xd1082,South Tlingit,tlin1245,South Tlingit (J2),"Kolosh, Southern Tlingit, South Tlingit",NA,Tlingit (NA12),http://ehrafworldcultures.yale.edu/collection?owc=NA12,57,134,57,-133.59,Revised,"Preferred name updated 9May2019 to distinguish from North Tlingit. Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog." +WNAI3,xd1068,Haida (Northern),nort2938,North Masset Haida (J3),North Masset Haida,NA,,,54,132,54,-132,Original, diff --git a/tests/dataset_with_societies/raw/societies_mapping.csv b/tests/dataset_with_societies/raw/societies_mapping.csv new file mode 100644 index 0000000..7b49880 --- /dev/null +++ b/tests/dataset_with_societies/raw/societies_mapping.csv @@ -0,0 +1,173 @@ +id,related +WNAI72,EA: Monachi (Nc23) [Nc23]; Binford: Monache (B157) [B157] +WNAI73,EA: Yokuts (Nc3) [Nc3]; Binford: Yokuts (northern foothill) (B154) [B154] +WNAI70, +WNAI71,Binford: North Fork Mono Paiute (B219) [B219] +WNAI76,EA: Lake Yokuts (Nc24) [Nc24]; Binford: Lake Yokuts (B148) [B148]; SCCS: Yokuts (Lake) (SCCS136) [SCCS136] +WNAI77,EA: Lake Yokuts (Nc24) [Nc24]; Binford: Lake Yokuts (B148) [B148]; SCCS: Yokuts (Lake) (SCCS136) [SCCS136] +WNAI74, +WNAI75,EA: Wukchumni (Nc25) [Nc25]; Binford: Wukchumi (B151) [B151] +WNAI78,EA: Tubatulabal (Nc2) [Nc2]; Binford: Tubatulabal (B152) [B152] +WNAI79,EA: Kawaiisu (Nc27) [Nc27]; Binford: Kawaiisu Shoshoni (B199) [B199] +WNAI123,EA: White Knife (Nd43) [Nd43]; Binford: White Knife Shoshoni (B216) [B216] +WNAI122,EA: Wadaduka (Nd41) [Nd41]; Binford: Wadaduica (Ruby Valley Shoshoni) (B228) [B228] +WNAI121,EA: Spring Valley (Nd39) [Nd39]; Binford: Spring Valley Shoshoni (B215) [B215]; Binford: Antelope Valley Shoshoni (B224) [B224] +WNAI120,EA: Mahaguaduka (Nd35) [Nd35]; Binford: Reese River Shoshoni (B218) [B218] +WNAI127,EA: Hukundika (Nd5) [Nd5]; Binford: Hukundika Shoshoni (B213) [B213] +WNAI126,EA: Agaiduka (Nd46) [Nd46]; Binford: Salmon Eater Shoshoni (B207) [B207] +WNAI125,EA: Bohogue (Nd45) [Nd45]; Binford: Bohogue (Northern Shoshoni) (B229) [B229] +WNAI124,EA: Gosiute (Nd48) [Nd48]; Binford: Gosiute Shoshoni (B214) [B214] +WNAI129,EA: Uintah (Nd58) [Nd58]; Binford: Uintah Ute (B230) [B230] +WNAI128,EA: Wind River (Nd64) [Nd64]; Binford: Wind River Shoshoni (B227) [B227] +WNAI170,EA: Taos (Nh6) [Nh6] +WNAI3,EA: Haida (Nb1) [Nb1]; Binford: Haida (B290) [B290]; SCCS: Haida (SCCS131) [SCCS131] +WNAI61,EA: Yuki (Nc7) [Nc7]; Binford: Yuki (B171) [B171] +WNAI60,EA: Coast Yuki (Nc15) [Nc15]; Binford: Coast Yuki (B177) [B177] +WNAI63,EA: Northern Pomo (Nc17) [Nc17]; Binford: Nothern Pomo (B173) [B173] +WNAI62,EA: Yana (Nc11) [Nc11]; Binford: Northern Yana (B174) [B174] +WNAI65,EA: Southern Pomo (Nc19) [Nc19] +WNAI64,EA: Eastern Pomo (Nc18) [Nc18]; Binford: Eastern Pomo (B158) [B158]; Binford: Clear Lake Pomo (B159) [B159]; SCCS: Pomo (Eastern) (SCCS135) [SCCS135] +WNAI67,EA: Patwin (Nc22) [Nc22]; Binford: Patwin (B155) [B155] +WNAI66,EA: Wappo (Nc20) [Nc20]; Binford: Wappo (B172) [B172] +WNAI69,EA: Miwok (Nc5) [Nc5]; Binford: Sierra Miwok (B175) [B175] +WNAI68, +WNAI130,EA: Uncompahgre (Nd62) [Nd62]; Binford: Uncompahgre Ute (B234) [B234] +WNAI131,EA: Southern Ute (Nd2) [Nd2]; Binford: Southern Ute (Wimonantci Ute) (B222) [B222] +WNAI132,EA: Shivwits (Nd52) [Nd52] +WNAI133,EA: Kaibab (Nd53) [Nd53]; EA: Las Vegas (Nd55) [Nd55]; Binford: Kaibab Southern Paiute (B204) [B204] +WNAI134,EA: San Juan (Nd56) [Nd56] +WNAI135,EA: Chemehuevi (Nd54) [Nd54] +WNAI136,EA: Havasupai (Nd3) [Nd3]; SCCS: Havasupai (SCCS150) [SCCS150] +WNAI137,EA: Walapai (Nd65) [Nd65]; Binford: Walapai (B198) [B198] +WNAI138,EA: Yavapai (Nd66) [Nd66]; Binford: Yavapai (B196) [B196] +WNAI139,EA: Yavapai (Nd66) [Nd66]; Binford: Yavapai (B196) [B196] +WNAI58,EA: Nisenan (Nc13) [Nc13]; Binford: Nisenan (B163) [B163] +WNAI59,EA: Nisenan (Nc13) [Nc13]; Binford: Nisenan (B163) [B163] +WNAI54, +WNAI55, +WNAI56,EA: Maidu (Nc12) [Nc12]; Binford: Mountain Maidu (B185) [B185] +WNAI57,EA: Nisenan (Nc13) [Nc13]; Binford: Nisenan (B163) [B163] +WNAI50,EA: Nomlaki (Nc1) [Nc1]; Binford: Nomlaki (B153) [B153] +WNAI51,EA: Achomawi (Nc10) [Nc10]; Binford: Achomawi (B187) [B187] +WNAI52,EA: Achomawi (Nc10) [Nc10]; Binford: Achomawi (B187) [B187] +WNAI53,EA: Atsugewi (Nc4) [Nc4]; Binford: Atsugewi (B183) [B183] +WNAI109, +WNAI108,EA: Umatilla (Nd19) [Nd19]; Binford: Umatilla (B316) [B316] +WNAI105,EA: Flathead (Nd12) [Nd12]; Binford: Flathead (B330) [B330] +WNAI104,EA: Kalispel (Nd13) [Nd13]; Binford: Kalispel (B326) [B326] +WNAI107,EA: Nez Perce (Nd20) [Nd20]; Binford: Nez Perce (B324) [B324] +WNAI106,EA: Kutenai (Nd7) [Nd7]; Binford: Kutenai (B250) [B250]; SCCS: Kutenai (SCCS139) [SCCS139] +WNAI101, +WNAI100,EA: Sanpoil (Nd4) [Nd4]; Binford: Sanpoil (B323) [B323] +WNAI103,EA: Coeur d'Alene (Nd14) [Nd14]; Binford: Coeur d'Alene (B320) [B320] +WNAI102,EA: Wenatchi (Nd16) [Nd16]; Binford: Wenatchi (B317) [B317] +WNAI169, +WNAI168,EA: Santa Clara (Nh26) [Nh26] +WNAI167,EA: Tewa (Nh11) [Nh11] +WNAI166, +WNAI165,EA: Cochiti (Nh7) [Nh7] +WNAI164,EA: Santo Domingo (Nh27) [Nh27] +WNAI163,EA: Santa Ana (Nh12) [Nh12] +WNAI162,EA: Sia (Nh25) [Nh25] +WNAI161,EA: Acoma (Nh13) [Nh13] +WNAI160,EA: Zuni (Nh4) [Nh4]; SCCS: Zuni (SCCS149) [SCCS149] +WNAI49,EA: Wintu (Nc14) [Nc14]; Binford: Wintu (B160) [B160] +WNAI48,EA: Wintu (Nc14) [Nc14]; Binford: Wintu (B160) [B160] +WNAI43, +WNAI42, +WNAI41,EA: Mattole (Nb38) [Nb38]; Binford: Mattole (B169) [B169] +WNAI40,EA: Sinkyone (Nb39) [Nb39]; Binford: Sinkyone (B166) [B166] +WNAI47,EA: Wintu (Nc14) [Nc14]; Binford: Wintu (B160) [B160] +WNAI46,EA: Chimariko (Nb33) [Nb33]; Binford: Chimariko (B162) [B162] +WNAI45,EA: Shasta (Nb32) [Nb32]; Binford: Shasta (B179) [B179] +WNAI44,EA: Shasta (Nb32) [Nb32]; Binford: Shasta (B179) [B179] +WNAI118,EA: Panamint (Nd32) [Nd32]; Binford: Death Valley Shoshoni (B192) [B192]; Binford: Panamint Shoshoni (B195) [B195]; Binford: Saline Valley Shoshoni (B200) [B200] +WNAI119,EA: Washo (Nd6) [Nd6]; Binford: Washo (B225) [B225] +WNAI112,EA: Klamath (Nc8) [Nc8]; Binford: Klamath (B189) [B189]; SCCS: Klamath (SCCS138) [SCCS138] +WNAI113,EA: Modoc (Nc9) [Nc9]; Binford: Modoc (B188) [B188] +WNAI110,EA: Wishram (Nd18) [Nd18]; Binford: Wishram (B319) [B319] +WNAI111,EA: Tenino (Nd1) [Nd1]; Binford: Tenino (B315) [B315] +WNAI116,EA: Kuyuidokado (Nd27) [Nd27]; Binford: Kuyuidokado (Pyramid Lake Paiute) (B208) [B208] +WNAI117,EA: Eastern Mono (Nd30) [Nd30]; Binford: Owens Valley Paiute (Eastern Mono) (B202) [B202] +WNAI114,EA: Wadadokado (Nd22) [Nd22]; Binford: Wadadokado Paiute (B231) [B231]; SCCS: Paiute (Northern) (SCCS137) [SCCS137] +WNAI115,EA: Kidutokado (Nd24) [Nd24]; Binford: Kidutokado (Surprise Valley Paiute) (B226) [B226] +WNAI8, +WNAI9,EA: Bellabella (Nb23) [Nb23]; Binford: Bella-Bella (B283) [B283] +WNAI6,Binford: Gitksan (B293) [B293] +WNAI7,EA: Haisla (Nb8) [Nb8]; Binford: Haisla (B287) [B287] +WNAI4, +WNAI5,EA: Tsimshian (Nb7) [Nb7]; Binford: Tsimshim (B289) [B289] +WNAI2,EA: Tlingit (Nb22) [Nb22]; Binford: Tlingit (B292) [B292] +WNAI171,EA: Isleta (Nh10) [Nh10] +WNAI172,EA: Jemez (Nh8) [Nh8] +WNAI1, +WNAI38,EA: Hupa (Nb35) [Nb35]; Binford: Hupa (B180) [B180] +WNAI39,EA: Wiyot (Nb36) [Nb36]; Binford: Wiyot (B184) [B184] +WNAI36,EA: Yurok (Nb4) [Nb4]; Binford: Yurok (B186) [B186]; SCCS: Yurok (SCCS134) [SCCS134] +WNAI37,EA: Karok (Nb34) [Nb34]; Binford: Karok (B182) [B182] +WNAI34, +WNAI35,EA: Tolowa (Nb6) [Nb6]; Binford: Tolowa (B178) [B178] +WNAI32,EA: Tututni (Nb31) [Nb31]; Binford: Tututni (B181) [B181] +WNAI33, +WNAI30,EA: Siuslaw (Nb29) [Nb29] +WNAI31,EA: Coos (Nb21) [Nb21]; Binford: Coos (B275) [B275] +WNAI149,EA: Western Apache (Nh17) [Nh17] +WNAI148,EA: Western Apache (Nh17) [Nh17] +WNAI141,EA: Yuma (Nh22) [Nh22] +WNAI140,EA: Mohave (Nh21) [Nh21] +WNAI143,EA: Cocopa (Nh19) [Nh19] +WNAI142,EA: Kamia (Nh20) [Nh20] +WNAI145,EA: Pima (Ni6) [Ni6] +WNAI144,EA: Maricopa (Nh5) [Nh5] +WNAI147,EA: Western Apache (Nh17) [Nh17] +WNAI146,EA: Papago (Ni2) [Ni2]; SCCS: Papago (SCCS151) [SCCS151] +WNAI29,EA: Alsea (Nb28) [Nb28]; Binford: Alsea (B269) [B269] +WNAI28,EA: Tillamok (Nb20) [Nb20]; Binford: Tillamook (B281) [B281] +WNAI25,EA: Puyallup (Nb17) [Nb17]; Binford: Puyallup (B270) [B270] +WNAI24,EA: Quinault (Nb25) [Nb25]; Binford: Quinault (B278) [B278] +WNAI27,EA: Chinook (Nb19) [Nb19]; Binford: Chinook (B274) [B274] +WNAI26,EA: Quileute (Nb18) [Nb18]; Binford: Quileute (B284) [B284] +WNAI21,EA: Lummi (Nb15) [Nb15]; Binford: Lummi (B277) [B277] +WNAI20, +WNAI23,EA: Twana (Nb2) [Nb2]; Binford: Twana (B271) [B271]; SCCS: Twana (SCCS133) [SCCS133] +WNAI22,EA: Klallam (Nb16) [Nb16]; Binford: Clallam (B285) [B285] +WNAI18, +WNAI19,EA: Stalo (Nb27) [Nb27]; Binford: Stalo (B279) [B279] +WNAI10,EA: Kwakiutl (Nb3) [Nb3]; Binford: Kwakiutl (B288) [B288] +WNAI11,EA: Bellacoola (Nb9) [Nb9]; Binford: Bella-Coola (B291) [B291]; SCCS: Bellacoola (SCCS132) [SCCS132] +WNAI12,EA: Nootka (Nb11) [Nb11]; Binford: Nootka (B273) [B273] +WNAI13,EA: Makah (Nb24) [Nb24]; Binford: Makah (B286) [B286] +WNAI14,EA: Klahuse (Nb12) [Nb12] +WNAI15, +WNAI16,EA: Squamish (Nb13) [Nb13]; Binford: Squamish (B268) [B268] +WNAI17,EA: Cowichan (Nb26) [Nb26]; Binford: Cowichan (B280) [B280] +WNAI90,EA: Diegueno (Nc6) [Nc6]; Binford: Diegueno (B147) [B147] +WNAI91,EA: Kiliwa (Nc34) [Nc34]; Binford: Kiliwa (B146) [B146] +WNAI92, +WNAI93,EA: Carrier (Na19) [Na19]; Binford: Carrier (B349) [B349] +WNAI94,EA: Carrier (Na19) [Na19]; Binford: Carrier (B349) [B349] +WNAI95,EA: Chilcotin (Nd8) [Nd8]; Binford: Chilcotin (B348) [B348] +WNAI96,EA: Shuswap (Nd11) [Nd11]; Binford: Shuswap (B333) [B333] +WNAI97,EA: Lillooet (Nd9) [Nd9]; Binford: Lillooet (B276) [B276] +WNAI98,EA: Thompson (Nd10) [Nd10]; Binford: Thompson (B325) [B325] +WNAI99,Binford: Okanagan (B322) [B322] +WNAI89,EA: Diegueno (Nc6) [Nc6]; Binford: Diegueno (B147) [B147] +WNAI88, +WNAI158,EA: Navaho (Nh3) [Nh3] +WNAI84,EA: Serrano (Nc30) [Nc30]; Binford: Serrano (B149) [B149] +WNAI156,EA: Jicarilla (Nh16) [Nh16] +WNAI157,EA: Navaho (Nh3) [Nh3] +WNAI154,EA: Mescalero (Nh15) [Nh15] +WNAI155,EA: Lipan (Nh24) [Nh24]; Binford: Lipan Apache (B240) [B240] +WNAI152,EA: Chiricahua (Nh1) [Nh1]; Binford: Chiricahua Apache (B242) [B242]; SCCS: Chiricahua (SCCS148) [SCCS148] +WNAI153,EA: Chiricahua (Nh1) [Nh1]; Binford: Chiricahua Apache (B242) [B242]; SCCS: Chiricahua (SCCS148) [SCCS148] +WNAI150,EA: Western Apache (Nh17) [Nh17] +WNAI151,EA: Western Apache (Nh17) [Nh17] +WNAI87, +WNAI86, +WNAI85,EA: Cahuilla (Nc31) [Nc31]; Binford: Cahuilla (B144) [B144] +WNAI80,EA: Salinan (Nc26) [Nc26]; Binford: Salinan (B164) [B164] +WNAI83,EA: Cupeno (Nc32) [Nc32]; Binford: Cupeno (B145) [B145] +WNAI82,EA: Luiseno (Nc33) [Nc33]; Binford: Luiseno (B150) [B150] +WNAI81,EA: Gabrielo (Nc29) [Nc29]; Binford: Gabrieleno (B156) [B156] +WNAI159,EA: Hopi (Nh18) [Nh18] diff --git a/tests/dataset_with_societies/raw/sources.bib b/tests/dataset_with_societies/raw/sources.bib new file mode 100644 index 0000000..34e17b4 --- /dev/null +++ b/tests/dataset_with_societies/raw/sources.bib @@ -0,0 +1,41602 @@ +# -*- coding: utf-8 -*- +@book{abadie1924, + author = {Abadie, Maurice}, + title = {Les races du Haut-Tonkin}, + address = {Paris}, + year = {1924}, + url = {https://archive.org/details/McGillLibrary-103431-303}, + key = {Abadie (1924)}, + lgcode = {Man [kimm1245]} +} +@article{abasadse1894, + author = {Abasadse, N. L. von.}, + title = {Die Familiengemeinde bei den Grusinern}, + journal = {Archaeology & Anthropology}, + number = {2}, + pages = {435-442}, + year = {1894}, + key = {Abasadse (1894)}, + lgcode = {Georgians [imer1248]} +} +@book{abbeville1614, + author = {Abbeville, C. d'.}, + title = {Histoire de la Mission des Peres Capucins en l'Isle de Maragnan et terres circonuoisines}, + publisher = {L'Imprimérie de François Huby}, + address = {Paris}, + year = {1614}, + glottolog_ref = {hh:ew:dAbbeville:Maragnan}, + key = {Abbeville (1614)}, + lgcode = {Tupinambá [tupi1273]} +} +@article{abbie1957, + author = {Abbie, A. A.}, + title = {Metrical Characters of a Central Australian Tribe}, + journal = {Oceania}, + publisher = {Blackwell Publishing Ltd}, + volume = {27}, + number = {3}, + pages = {220-243}, + year = {1957}, + issn = {1834-4461}, + url = {https://doi.org/10.1002/j.1834-4461.1957.tb00207.x}, + doi = {10.1002/j.1834-4461.1957.tb00207.x}, + key = {Abbie (1957)}, + lgcode = {Walbiri [warl1254]} +} +@incollection{abbott1892, + author = {Abbott, W. R.}, + title = {Ethnological Collections}, + booktitle = {Reports of the U. S. National Museum, 1890-91}, + pages = {381-428}, + year = {1892}, + key = {Abbott (1892)}, + lgcode = {Chagga [moch1256]} +} +@book{abbott1917, + author = {Abbott, F. F.}, + title = {Common People of Ancient Rome}, + address = {New York}, + year = {1917}, + key = {Abbott (1917)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{abdallah1917, + author = {Abd Allah, M. M.}, + title = {Sîwan customs}, + journal = {Harvard Afr. Studies 1}, + volume = {1}, + pages = {1-28}, + year = {1917}, + glottolog_ref = {eballiso2009:11756}, + key = {Abd Allah (1917)}, + lgcode = {Siwans [siwi1239]} +} +@book{aberle1953, + author = {Aberle, David F.}, + title = {The Kinship System of the Kalmuk Mongols}, + series = {University of New Mexico Publications in Anthropology}, + number = {8}, + pages = {1-48}, + year = {1953}, + key = {Aberle (1953)}, + lgcode = {Baga [mbul1258], Kalmyk [kalm1243]} +} +@incollection{aberle1961, + author = {Aberle, David F.}, + editor = {David Schneider and Kathleen Gough}, + title = {Navajo}, + pages = {96-201}, + year = {1961}, + key = {Aberle, 1961}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{abrahams1967, + author = {Abrahams, R. G.}, + title = {The Peoples of Greater Unyamwezi, Tanzania}, + address = {London}, + year = {1967}, + key = {Abrahams (1967)}, + lgcode = {Sukuma [suku1261], Sumbwa [sumb1240]} +} +@book{adams1973, + author = {Adams, J. W.}, + title = {The Gitksan Potlatch Population Flux, Resource Ownership and Reciprocity}, + publisher = {Holt, Rinehart and Winston of Canada}, + address = {Toronto}, + year = {1973}, + key = {Adams (1973)}, + lgcode = {Gitxsan [gitx1241]} +} +@article{adeler1939, + author = {Adeler}, + title = {Coutume maure}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A, 9}, + pages = {373-400}, + year = {1939}, + key = {Adeler (1939)}, + lgcode = {Zenaga [zena1248]} +} +@mastersthesis{adelmannd, + author = {Adelman, F.}, + title = {The Kalmuks of the Lower Volga River and Their Kinship Structure}, + school = {University of Pennsylvania}, + year = {1954}, + key = {Adelman (nd)}, + lgcode = {Kalmyk [kalm1243]} +} +@article{adney1900, + author = {Adney, T.}, + title = {Moose Hunting with the Tro-Kutchin}, + journal = {Harpers Magazine}, + number = {100}, + pages = {495-507}, + year = {1900}, + key = {Adney (1900)}, + lgcode = {Hän [hann1241]} +} +@book{adrianiandkruijt1912, + author = {Adriani, N., and A. C. Kruijt}, + title = {De Bare'e-sprekende Toradja's van Midden-Celebes}, + publisher = {Batavia: Landesdrukkerij}, + address = {Batavia}, + year = {1912}, + glottolog_ref = {mpieva:Adriani19121914DeBarees}, + howpublished = {reprinted 1950-51 Amsterdam}, + key = {Adriani and Kruijt (1912)}, + lgcode = {Toradja [pamo1252]} +} +@book{afanaseva1990, + author = {Afanas'eva, G. M.}, + title = {Traditsionnaja sistema vosproizvodstva nganasan (problemy reproduktsii obosoblennyh populjatsij)}, + publisher = {Institut Etnologii i Antropologii}, + address = {Moscow}, + year = {1990}, + key = {Afanas'eva (1990)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Nganasan Traditional Reproductive System: Problems of Reproduction among Population Isolates} +} +@article{aginsky1935, + author = {Aginsky, B. W.}, + title = {The Mechanics of Kinship}, + journal = {American Anthropologist}, + publisher = {Blackwell Publishing Ltd}, + volume = {37}, + number = {3}, + pages = {450-457}, + year = {1935}, + issn = {1548-1433}, + url = {https://doi.org/10.1525/aa.1935.37.3.02a00080}, + doi = {10.1525/aa.1935.37.3.02a00080}, + key = {Aginsky (1935)}, + lgcode = {Southern Pomo [sout2984]} +} +@article{aginsky1943, + author = {Aginsky, B. W.}, + title = {Central Sierra}, + journal = {Anth. Records}, + volume = {8}, + pages = {393-468}, + year = {1943}, + key = {Aginsky (1943)}, + lgcode = {Central Sierra Miwok [cent2140], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Southern Miwok [sout2985], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@book{aginskyandaginsky1967, + author = {Aginsky, B. W., and E. G. Aginsky.}, + title = {Deep Valley}, + address = {N. Y.}, + year = {1967}, + key = {Aginsky and Aginsky (1967)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{agrawal1967, + author = {Agrawal, H. N.}, + title = {Physical Characteristics of the Shompen of Great Nicobar}, + journal = {Bulletin of the Anthropological Survey of India}, + volume = {16}, + number = {1-2}, + pages = {83-97}, + year = {1967}, + key = {Agrawal (1967)}, + lgcode = {Shompen [shom1245]} +} +@article{ahlqvist1885, + author = {Ahlqvist, A.}, + title = {Unter Wogulen und Ostjaken}, + journal = {Acta Soc. Scient. Fennicae}, + volume = {14}, + pages = {133-307}, + year = {1885}, + key = {Ahlqvist (1885)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{ahmarov1907, + author = {Ahmarov, G. N.}, + title = {Svadebnye obrjady kazanskiht tatar}, + address = {Kazan}, + year = {1907}, + key = {Ahmarov (1907)}, + lgcode = {Kazan tatar [midd1325]}, + title_english = {Wedding Rituals of the Kazan Tatars} +} +@book{ajisafe1924, + author = {Ajisafe, A. K.}, + title = {The laws and customs of the Yoruba people}, + publisher = {London: George Routledge & Sons}, + address = {London}, + year = {1924}, + glottolog_ref = {eballiso2009:59283}, + key = {Ajisafe (1924)}, + lgcode = {Egba [egba1238]} +} +@book{aleksandrov1899, + author = {Aleksandrov, N. A.}, + title = {Cheremisy i chuvashi. (Lesnaja okraina) (The Mari and Chuvash. Forest Province)}, + address = {Moscow}, + year = {1899}, + key = {Aleksandrov (1899)}, + lgcode = {Chuvash [chuv1255]} +} +@book{aleksandrov1900a, + author = {Aleksandrov, N. A.}, + title = {Inorodtsy lesov}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900a)}, + lgcode = {Latvians [latv1249]}, + title_english = {Non-Russian Woodland Peoples} +} +@book{aleksandrov1900b, + author = {Aleksandrov, N. A.}, + title = {Stepi. Bessarabija. Moldavane (rumyny)}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900b)}, + lgcode = {Moldovans [mold1248]}, + title_english = {Steppes. Bessarabia. Moldovans (Rumanians)} +} +@book{aleksandrovandshlygina1971, + editor = {Aleksandrov, V. A., and N. V. Shlygina}, + title = {Sel'skie poselenija Pribaltiki (XIII-XX vv. )}, + address = {Moscow}, + year = {1971}, + key = {Aleksandrov and Shlygina (1971)}, + lgcode = {Estonians [esto1258], Latvians [latv1249]}, + title_english = {Rural Settlements of the Baltic Region (from the Eighteenth to the Twentieth Century)} +} +@book{alexandreandbinet1958, + author = {Alexandre, P., and J. Binet.}, + title = {Le groupe dit pahouin: fang-boulou-beti}, + publisher = {Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {6}, + year = {1958}, + glottolog_ref = {eballiso2009:47214}, + key = {Alexandre and Binet (1958)}, + lgcode = {Fang [fang1246]} +} +@article{alkire1965, + author = {Alkire, W. H.}, + title = {Lamotrek Atoll and Inter-island Socioeconomic Ties}, + journal = {Illinois Studies in Anthropology}, + volume = {5}, + pages = {1-180}, + year = {1965}, + key = {Alkire (1965)}, + lgcode = {Lamotrek [lamo1243]} +} +@article{alland1963, + author = {Alland, A.}, + title = {Residence, Domicile, and Descent Groups Among the Abrong}, + journal = {Ethnology}, + volume = {2}, + pages = {276-281}, + year = {1963}, + key = {Alland (1963)}, + lgcode = {Abron [abro1238]} +} +@article{allanetal1948, + author = {Allan, W. and M. Gluckman and D. U. Peters and C. G. Trapell}, + title = {Land Holding and Land Usage Among the Plateau Tonga of Mazabuka District}, + journal = {Rhodes-Liv. Pap.}, + volume = {14}, + pages = {1-192}, + year = {1948}, + key = {Allan et al (1948)}, + lgcode = {Plateau Tonga [tong1318]} +} +@misc{allegret1927, + author = {Allegret, E.}, + title = {Correspondence}, + year = {1927}, + howpublished = {published in H. A. Junod, the Life of a South African Tribe 1: 271n}, + key = {Allegret (1927)}, + lgcode = {Mpongwe [myen1241]} +} +@book{allen1932, + author = {Allen, W. E. D.}, + title = {A History of the Georgia People}, + address = {London}, + year = {1932}, + key = {Allen (1932)}, + lgcode = {Georgians [imer1248]} +} +@article{allys1930, + author = {Allys}, + title = {Monographie de la tribu des Dzems}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {21}, + pages = {3-21}, + year = {1930}, + key = {Allys (1930)}, + lgcode = {Dzem [njye1238]} +} +@book{alphonse1956, + author = {Alphonse, E. S.}, + title = {Guaymi Grammar and Dictionary}, + publisher = {Washington: United States Government Printing Office}, + address = {Washington}, + series = {Bulletin of the Bureau of American Ethnology}, + number = {162}, + pages = {1-128}, + year = {1956}, + url = {https://repository.si.edu/handle/10088/15456}, + glottolog_ref = {wals:145}, + key = {Alphonse (1956)}, + lgcode = {Ngäbe [ngab1239]} +} +@book{altandalt1959, + author = {Alt, H., and E. Alt}, + title = {Russia's Children}, + address = {N. Y.}, + year = {1959}, + key = {Alt and Alt (1959)}, + lgcode = {Russians [russ1263]} +} +@book{altman1987, + author = {Altman, J. C.}, + title = {Hunter-Gatherers Today: An Aboriginal Economy in North Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + year = {1987}, + key = {Altman (1987)}, + lgcode = {Gunwinygu [gunw1252]} +} +@article{altschuler1965a, + author = {Altschuler, M.}, + title = {Notes on Cayapa kinship}, + journal = {Ethnology}, + volume = {4}, + pages = {440-447}, + year = {1965}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha05}, + key = {Altschuler (1965a)}, + lgcode = {Chachi [chac1249]} +} +@phdthesis{altschuler1965b, + author = {Altschuler, M.}, + title = {The Cayapa}, + school = {University of Minnesota}, + year = {1965}, + key = {Altschuler (1965b)}, + lgcode = {Chachi [chac1249]} +} +@incollection{altschuler1971, + author = {Altschuler, M.}, + editor = {D. S. Marshall and R. C. Suggs}, + title = {Cayapa Personality and Sexual Motivation}, + booktitle = {Human Sexual Behavior}, + address = {Princeton}, + pages = {38-58}, + year = {1971}, + key = {Altschuler (1971)}, + lgcode = {Chachi [chac1249]} +} +@article{ambrosetti1895, + author = {Ambrosetti, J. B.}, + title = {Los Indios Caingua del alto Parana}, + journal = {Boletin del Instituto Geografico Argentino}, + volume = {15}, + pages = {661-744}, + year = {1895}, + key = {Ambrosetti (1895)}, + lgcode = {Cayua [mbya1239]} +} +@book{ames1934, + author = {Ames, C. G.}, + title = {Gazetteer of the Plateau Province, Nigeria}, + publisher = {Ms.}, + pages = {474}, + year = {1934}, + glottolog_ref = {hh:he:Ames:Plateau}, + key = {Ames (1934)}, + lgcode = {Yergum [taro1263]} +} +@phdthesis{ames1953, + author = {Ames, D. W.}, + title = {Plural Marriage Among the Wolof in the Gambia}, + school = {Northwestern University}, + year = {1953}, + key = {Ames (1953)}, + lgcode = {Wolof [nucl1347]} +} +@book{ames1958, + author = {Ames, D.W.}, + title = {The dual function of the "little people" of the forest in the lives of the Wolof}, + year = {1958}, + key = {Ames (1958)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959a, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Selection of Mates}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {156-68}, + year = {1959}, + key = {Ames (1959a)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959b, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Wolof Co-operative Work Groups}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {224-237}, + year = {1959}, + key = {Ames (1959b)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1962, + author = {Ames, D. W.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Rural Wolof of the Gambia}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {29-60}, + year = {1962}, + key = {Ames (1962)}, + lgcode = {Wolof [nucl1347]} +} +@book{ammar1954, + author = {Ammar, H.}, + title = {Growing Up in an Egyptian Village}, + address = {London}, + year = {1954}, + key = {Ammar (1954)}, + lgcode = {Egyptians [egyp1253]} +} +@phdthesis{amsden1977, + author = {Amsden, C. W.}, + title = {A Quantitative Analysis of Nunamiut Eskimo Settlement Dynamics: 1898 to 1969}, + school = {Department of Anthropology, University of New Mexico}, + address = {Albuerque}, + year = {1977}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Amsden (1977)}, + lgcode = {Nunamiut [nort2944]} +} +@book{amundsen1908, + author = {Amundsen, R. E. G.}, + title = {Roald Amundsen's "The Northwest Passage." Being the Record of a Voyage of Exploration of the Ship "Gjoa, " 1903-1907. 2 vols}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1908}, + key = {Amundsen (1908)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@misc{anderson1949, + author = {Anderson, R.}, + title = {Northern Cheyenne field notes}, + year = {1949}, + howpublished = {Manuscript}, + key = {Anderson (1949)}, + lgcode = {Cheyenne [chey1247]} +} +@incollection{andersonandrobins1988, + author = {Anderson, C., and R. Robins.}, + editor = {B. Meenan and R. Jones}, + title = {Dismissed Due to Lack of Evidence? Kuku-Yalanji Sites and the Archaeological Record}, + booktitle = {Archaeology with Ethnography: An Australian Perspective}, + publisher = {Australian National University}, + address = {Canberra}, + pages = {182-205}, + year = {1988}, + key = {Anderson and Robins (1988)}, + lgcode = {Kuku (Yalanji) [kuku1273]} +} +@book{andersson1953, + author = {Andersson, E.}, + title = {Contribution à l'ethnographie des kuta}, + publisher = {Stockholm: Almqvist & Wiksell}, + address = {Stockholm}, + series = {Studia ethnographica upsaliensia}, + volume = {6}, + pages = {1-364}, + year = {1953}, + glottolog_ref = {eballiso2009:18840}, + key = {Andersson (1953)}, + lgcode = {Kota [ndas1238]} +} +@article{anguloandfreeland1929, + author = {Angulo, J. de, and L. S. Freeland}, + title = {Notes on the Northern Paiute of California}, + journal = {Journ. Soc. Americ.}, + volume = {21}, + pages = {313-335}, + year = {1929}, + key = {Angulo and Freeland (1929)}, + lgcode = {Kidutokado [nort1551]} +} +@article{ankermann1910, + author = {Ankermann, B.}, + title = {Bericht uber eine Forschungreise ins Grasland von Kamerun}, + journal = {Zeitschrift für Ethnologie}, + volume = {42}, + pages = {288-310}, + year = {1910}, + key = {Ankermann (1910)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{anonymous1869, + author = {Anonymous}, + title = {Zametkio latyshaht rehi nfljandskihu ezdov Vitebskoj gubemii}, + journal = {Vilenskij sbornik}, + volume = {1}, + pages = {223-43}, + year = {1869}, + key = {Anonymous (1869)}, + lgcode = {Latvians [latv1249]}, + title_english = {Notes on the Latvians of the Three Infliandian Uezds of the Vitebskaja Guberia} +} +@article{anonymous1939, + author = {Anonymous}, + title = {Coutumes haoussa et peul}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {261-301}, + year = {1939}, + key = {Anonymous (1939)}, + lgcode = {Tazarawa [haus1257]} +} +@article{anonymous1939a, + author = {Anonymous}, + title = {Coutume soussou}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {575-610}, + year = {1939}, + key = {Anonymous (1939a)}, + lgcode = {Susu [susu1250]} +} +@book{antropovaandkuznetsova1964, + author = {Antropova, V.V. and V.G. Kuznetsova}, + title = {The Chukchi}, + year = {1964}, + key = {Antropova and Kuznetsova (1964)}, + lgcode = {Chukchi [chuk1273]} +} +@book{anumanrajadhon1961, + author = {Anuman Rajadhon, P.}, + editor = {W. J. Gedney}, + title = {Life and Ritual in Old Siam}, + address = {New Haven}, + year = {1961}, + key = {Anuman Rajadhon (1961)}, + lgcode = {Thai [thai1261]} +} +@article{ardener1954, + author = {Ardener, E. W.}, + title = {The kinship terminology of a group of southern Ibo}, + journal = {Africa}, + volume = {24}, + pages = {85-99}, + year = {1954}, + glottolog_ref = {weball:975}, + key = {Ardener (1954)}, + lgcode = {Igbo [nucl1417]} +} +@book{ardener1956, + author = {Ardener, E.}, + title = {Coastal Bantu of the Cameroons}, + publisher = {London: International African Institute (IAI)}, + address = {London}, + pages = {116}, + year = {1956}, + glottolog_ref = {weball:976}, + key = {Ardener (1956)}, + lgcode = {Duala [dual1243], Kpe [mokp1239]} +} +@book{arensbergandkimball1940, + author = {Arensberg, C. M., and S. T. Kimball}, + title = {Family and Community in Ireland}, + address = {Cambridge}, + year = {1940 (Revised Edition 1968)}, + key = {Arensberg and Kimball (1940)}, + lgcode = {Irish [iris1253]} +} +@book{argyle1966, + author = {Argyle, W. J.}, + title = {The Fon of Dahomey}, + address = {London}, + year = {1966}, + key = {Argyle (1966)}, + lgcode = {Fon [fonn1241]} +} +@incollection{arima1984, + author = {Arima, E. Y.}, + editor = {D. Damas}, + title = {Caribou Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {447-462}, + year = {1984}, + key = {Arima (1984)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{ariyapala1956, + author = {Ariyapala, M. B.}, + title = {Society in Medieval Ceylon}, + publisher = {K. V. G. de Silva}, + address = {Colombo}, + year = {1956}, + key = {Ariyapala (1956)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{armstrong1928, + author = {Armstrong, W. E.}, + title = {Rossel Island}, + address = {Cambridge}, + year = {1928}, + key = {Armstrong (1928)}, + lgcode = {Rossel Islanders [yele1255]} +} +@article{armstrong1954, + author = {Armstrong, R. G.}, + title = {A West African Inquest}, + journal = {American Anthropologist}, + volume = {56}, + pages = {1051-1075}, + year = {1954}, + key = {Armstrong (1954)}, + lgcode = {Idoma [idom1241]} +} +@article{armstrongandmetraux1948, + author = {Armstrong, J. M., and A. M‚traux.}, + title = {The Goajiro}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 360-383}, + year = {1948}, + key = {Armstrong and Metraux (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{arnaud1921, + author = {Arnaud, R.}, + title = {Notes sur les montagnards Habe}, + journal = {Rev. Ethnog. Trad. Pop.}, + volume = {2}, + pages = {241-318}, + year = {1921}, + key = {Arnaud (1921)}, + lgcode = {Dogon [bank1259]} +} +@book{arnaud1964, + author = {Arnaud, E.}, + title = {Noticia sobre los Indios Gavioes de Oeste}, + series = {Antropologia}, + number = {20}, + year = {1964}, + key = {Arnaud (1964)}, + lgcode = {Canela [cane1242]} +} +@article{aroandshepard1967, + author = {Aro, K. V., and M. P. Shepard}, + title = {Pacific Salmon in Canada}, + journal = {International North Pacific Fisheries Commission Bulletin}, + address = {Victoria, B.C.}, + volume = {23}, + pages = {225-327}, + year = {1967}, + key = {Aro and Shepard (1967)}, + lgcode = {Chilcotin [chil1280], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249], Lillooet [lill1248], Nlaka'pamux [thom1243], Shuswap [shus1248]} +} +@book{arsenev1926, + author = {Arsen'ev, V. K.}, + title = {Lesnye ljudi udeheitsy}, + address = {Vladivostok}, + year = {1926}, + key = {Arsen'ev (1926)}, + lgcode = {Udihe [udih1248]}, + title_english = {The Udihe, the Forest People} +} +@article{ascher1962, + author = {Ascher, R.}, + title = {Ethnography for Archeology: A Case from the Seri Indians}, + journal = {Ethnology}, + volume = {1}, + pages = {360-369}, + year = {1962}, + key = {Ascher (1962)}, + lgcode = {Seri [seri1257]} +} +@book{aschmann1967, + author = {Aschmann, H.}, + title = {The Central Desert of Baja California: Demography and Ecology}, + publisher = {Manessier}, + address = {Riverside, Calif.}, + year = {1967}, + key = {Aschmann (1967)}, + lgcode = {Guaicura [guai1237]} +} +@article{ashkenazi1948, + author = {Ashkenazi, T.}, + title = {The Anazah Tribes}, + journal = {Southwestern Journal of Anthropology}, + volume = {4}, + pages = {222-239}, + year = {1948}, + key = {Ashkenazi (1948)}, + lgcode = {Rwala [east2690]} +} +@book{ashton1952, + author = {Ashton, H.}, + title = {The Basuto}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + year = {1952}, + glottolog_ref = {eballiso2009:27743}, + key = {Ashton (1952)}, + lgcode = {Sotho [sout2807]} +} +@article{asmis1911, + author = {Asmis, G.}, + title = {Die Stammesrechte der Bezirke Misahohe, Anecho und Lome-Land}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {22}, + pages = {1-133}, + year = {1911}, + key = {Asmis (1911)}, + lgcode = {Buem [siwu1238], Ewe [aguu1242]} +} +@article{asmis1912, + author = {Asmis, G.}, + title = {Die Stammersrechte des Bezirkes Sansane-Mangu}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {27}, + pages = {71-128}, + year = {1912}, + key = {Asmis (1912)}, + lgcode = {Moba [moba1244]} +} +@article{aspelin1976, + author = {Aspelin, P. L.}, + title = {Nambicuara economic dualism: Lévi-Strauss in the garden, once again}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + address = {La Haya}, + volume = {132}, + pages = {1-31}, + year = {1976}, + key = {Aspelin (1976)}, + lgcode = {Nambikwara [sout2994]} +} +@incollection{atkinson1953, + author = {Atkinson, William C.}, + editor = {H. V. Livermore}, + title = {Institutions and law}, + booktitle = {Portugal and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Atkinson (1953)}, + lgcode = {Portuguese [gali1257]} +} +@article{aubert1936, + author = {Aubert, M.}, + title = {Laws and Customs of the Susus}, + journal = {Sierra Leone Stud.}, + volume = {2}, + pages = {21-44}, + year = {1936}, + key = {Aubert (1936)}, + lgcode = {Susu [susu1250]} +} +@book{audric1972, + author = {Audric, J.}, + title = {Angkor and the Khmer empire}, + year = {1972}, + key = {Audric (1972)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@article{aujas1931, + author = {Aujas, L.}, + title = {Les Sereres du Senegal}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {293-333}, + year = {1931}, + key = {Aujas (1931)}, + lgcode = {Serer [sere1260]} +} +@article{autenrieth1908, + author = {Autenrieth, H.}, + title = {Recht der Kissibaleute}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {21}, + pages = {354-392}, + year = {1908}, + key = {Autenrieth (1908)}, + lgcode = {Haya [haya1250]} +} +@article{avadhani1975, + author = {Avadhani P.N.}, + title = {A study of the Punan Busang}, + journal = {Malayan Nature Journal}, + volume = {28}, + number = {3-4}, + pages = {121-172}, + year = {1975}, + key = {Avadhani (1975)}, + lgcode = {Punan [west2563]} +} +@article{avon191516, + author = {Avon.}, + title = {Vie sociale des Wabende am Tanganika}, + journal = {Anthropos}, + volume = {10-111}, + pages = {98-113}, + year = {1915-16}, + key = {Avon (1915-16)}, + lgcode = {Bende [bend1258]} +} +@book{aymard1911, + author = {Aymard, A.}, + title = {Les Touareg}, + address = {Paris}, + year = {1911}, + key = {Aymard (1911)}, + lgcode = {Kel Antessar [timb1263]} +} +@book{aymonier190004, + author = {Aymonier, E.}, + title = {Le Cambodge. 3v}, + address = {Paris}, + year = {1900-04}, + key = {Aymonier (1900-04)}, + lgcode = {Khmer [cent1989]} +} +@book{ayrout1945, + author = {Ayrout, H. H.}, + title = {The Fellaheen}, + address = {Cairo}, + year = {1945}, + key = {Ayrout (1945)}, + lgcode = {Egyptians [egyp1253]} +} +@book{ayrout1963, + author = {Ayrout, H. H.}, + title = {The Egyptian Peasant}, + year = {1963 [First published in 1938]}, + key = {Ayrout (1963)}, + lgcode = {Egyptians [egyp1253]} +} +@misc{bacdayan1962, + author = {Bacdayan, A. S.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Bacdayan (1962)}, + lgcode = {Sagada [nort2877]} +} +@incollection{bachtiar1967, + author = {Bachtiar, H. W.}, + editor = {Koentjaraningrat}, + title = {Negeri Taran: A. Minangkabau Village Community}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {348-385}, + year = {1967}, + key = {Bachtiar (1967)}, + lgcode = {Minangkabau [mina1268]} +} +@article{bacon1922, + author = {Bacon, C. R. K.}, + title = {The Anuak}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {113-129}, + year = {1922}, + glottolog_ref = {eballiso2009:9053}, + key = {Bacon (1922)}, + lgcode = {Anuak [anua1242]} +} +@article{bacon1958, + author = {Bacon, E. B.}, + title = {Obok}, + journal = {Viking Fund Publ. Anth.}, + volume = {25}, + pages = {1-235}, + year = {1958}, + key = {Bacon (1958)}, + lgcode = {Hazara [haza1239]} +} +@article{badier1929, + author = {Badier}, + title = {Monographie de la tribu des Batekes}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {10}, + pages = {37-43}, + year = {1929}, + key = {Badier (1929)}, + lgcode = {Teke [teke1278]} +} +@incollection{baegert1863, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1863}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {352-369}, + year = {1863}, + key = {Baegert (1863)}, + lgcode = {Guaicura [guai1237]} +} +@incollection{baegert1865, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1864}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {378-399}, + year = {1865}, + url = {https://archive.org/details/accountofaborigi00baeg}, + key = {Baegert (1865)}, + lgcode = {Guaicura [guai1237]}, + note = {Continued from the Smithsonian report for 1863.} +} +@article{baerandbaer1949, + author = {Baer, P., and M. Baer.}, + title = {Notes on Lacandon marriage}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {101-6}, + year = {1949}, + glottolog_ref = {sil16:10140}, + key = {Baer and Baer (1949)}, + lgcode = {Lacandon [laca1243]} +} +@book{baerandengelbrecht1990, + author = {Baer, G. and B. Engelbrecht}, + title = {Wirtschaft und Technologie}, + year = {1990}, + key = {Baer and Engelbrecht (1990)}, + lgcode = {Aztec [clas1250]} +} +@article{baerandschmitz1964, + author = {Baer, G., and C. A. Schmitz}, + title = {On the Social Organization of the Ona (Selk'nam)}, + journal = {Journal de la Société des Américanistes}, + volume = {54}, + number = {1}, + pages = {23-29}, + year = {1965}, + url = {http://www.persee.fr/doc/jsa_0037-9174_1965_num_54_1_1271}, + doi = {10.3406/jsa.1965.1271}, + key = {Baer and Schmitz (1964)}, + lgcode = {Ona [onaa1245]} +} +@article{baeyens1913, + author = {Baeyens, M.}, + title = {Les Lesa}, + journal = {REv. Congol.}, + volume = {4}, + pages = {129-143, 193-206, 257-270, 321-336}, + year = {1913}, + glottolog_ref = {eballiso2009:51329}, + key = {Baeyens (1913)}, + lgcode = {Sakata [saka1287]} +} +@article{bahuchet1979, + author = {Bahuchet, S.}, + title = {Utilisation de'Pespace forestier par les Pygmees Aka, Chasseurs-sueilleurs d'Afrique Centrale}, + journal = {Information sur les sciences sociales}, + volume = {18}, + number = {6}, + pages = {999-1019}, + year = {1979}, + key = {Bahuchet (1979)}, + lgcode = {Aka [bamb1264]} +} +@incollection{bahuchet1988, + author = {Bahuchet, S.}, + editor = {I. de Garine and G. A. Harrison}, + title = {Food Supply Uncertainty among the Aka Pygmies (Lobaye, Central African Republic)}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Clarendon Press}, + address = {Oxford}, + pages = {118-149}, + year = {1988}, + key = {Bahuchet (1988)}, + lgcode = {Aka [bamb1264]} +} +@article{bailey1863, + author = {Bailey, J.}, + title = {An Account of the Wild Tribes of the Veddahs of Ceylon: Their Habits, Customs and Superstitions}, + journal = {Transactions of the Ethnological Society of London}, + volume = {2}, + pages = {278-320}, + year = {1863}, + key = {Bailey (1863)}, + lgcode = {Vedda [vedd1240]} +} +@phdthesis{bailey1985, + author = {Bailey, R. C.}, + title = {The Socioecology of the Efe Pygmy Men in the Ituri Forest, Zaire}, + school = {Department of Social Relations, Harvard University}, + address = {Cambridge}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bailey (1985)}, + lgcode = {Efe [efee1239]} +} +@incollection{baileyandpeacock1988, + author = {Bailey, R. C., and N. R. Peacock}, + editor = {Garine, Igor de and Harrison, G.A.}, + title = {Efe pygmies of northeast Zaïre: subsistence strategies in the Ituri Forest}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Oxford Univ. Press}, + pages = {88-117}, + year = {1988}, + glottolog_ref = {eballiso2009:56046}, + key = {Bailey and Peacock (1988)}, + lgcode = {Efe [efee1239]} +} +@article{balandier1952, + author = {Balandier, G.}, + title = {Les villages gabonais}, + journal = {Mem. Inst. Et. CentrAfr.}, + volume = {5}, + pages = {1-86}, + year = {1952}, + key = {Balandier (1952)}, + lgcode = {Mitsogho [tsog1243]} +} +@book{balashov1995, + editor = {Balashov, V. A.}, + title = {Mordva: istoriko-kul'turye ocherki (The Mordva: Historical-Cultural Essays)}, + address = {Saransk}, + year = {1995}, + key = {Balashov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{baldus1931, + author = {Baldus, H.}, + title = {Indianerstudien im nordöstlichen Chaco}, + publisher = {Leipzig}, + series = {Forschungen zur Völkerpsychologie und Soziologie}, + volume = {II}, + pages = {1-239}, + year = {1931}, + glottolog_ref = {fabreall2009ann:714}, + key = {Baldus (1931)}, + lgcode = {Chamacoco [cham1315], Lengua [leng1262]} +} +@article{baldus1937, + author = {Baldus, H.}, + title = {The Social Position of the Woman among the Eastern Bororo (transl. I. Lillios)}, + journal = {Ensaios de etnologia brasileira}, + publisher = {São Paulo: Biblioteca Pedagógica Brasileira, série 5a, Brasiliana 101}, + volume = {101}, + pages = {112-162}, + year = {1937}, + glottolog_ref = {fabreall2009ann:716}, + key = {Baldus (1937)}, + lgcode = {Bororo [boro1282]} +} +@book{balikci1970, + author = {Balikci, A.}, + title = {The Netsilik Eskimo}, + publisher = {Natural History Press}, + address = {Garden City, N.Y.}, + year = {1970}, + key = {Balikci (1970)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963a, + author = {Balikei, A.}, + title = {Le regime matrimonial des Esquimaux Netsilik}, + journal = {L'Homme}, + volume = {1963}, + pages = {88-101}, + year = {1963}, + key = {Balikei (1963a)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963b, + author = {Balikei, A.}, + title = {Shamanistic Behavior Among the Netsilik Eskimos}, + journal = {Southw. Journ. Anth.}, + volume = {19}, + pages = {380-396}, + year = {1963}, + key = {Balikei (1963b)}, + lgcode = {Netsilik [nets1241]} +} +@article{ballard1935, + author = {Ballard, A. C.}, + title = {Southern Puget Sound Salish Kinship Terms}, + journal = {American Anthropologist}, + volume = {37}, + pages = {111-116}, + year = {1935}, + key = {Ballard (1935)}, + lgcode = {Puyallup [sout2965]} +} +@book{ballis1956, + editor = {Ballis, W. B.}, + title = {Mongolian People's Republic}, + address = {New Haven}, + year = {1956}, + key = {Ballis (1956)}, + lgcode = {Khalka [halh1238]}, + note = {3 vols} +} +@book{balsdon1963, + author = {Balsdon, J. P. V. D.}, + title = {Roman Women}, + address = {New York}, + year = {1963}, + key = {Balsdon (1963)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balsdon1969, + author = {Balsdon, J. P. V. D.}, + title = {Life and Leisure in Ancient Rome}, + address = {New York}, + year = {1969}, + key = {Balsdon (1969)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balyn1957, + author = {Balyn, D.}, + title = {The Geography of the Bible}, + address = {New York}, + year = {1957}, + key = {Balyn (1957)}, + lgcode = {Hebrews [anci1244]} +} +@book{bamforth1988, + author = {Bamforth, D. B.}, + title = {Ecology and Human Organization on the Great Plains}, + publisher = {Plenum Press}, + address = {New York}, + year = {1988}, + key = {Bamforth (1988)}, + lgcode = {Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa [kiow1266], Kiowa Apache [kiow1264], Plains Cree [plai1258], Sarcee [sars1236]} +} +@book{banfieldandmacintyre1915, + author = {Banfield, A. W., and J. I. MacIntyre. V-3.}, + title = {A grammar of the Nupe language}, + publisher = {Society for the Promotion of Christian Knowledge}, + address = {London}, + pages = {186}, + year = {1915}, + glottolog_ref = {hh:g:BanfieldMacintyre:Nupe}, + key = {Banfield and MacIntyre (1915)}, + lgcode = {Nupe [nupe1254]} +} +@article{bank1953, + author = {Bank, T. P.}, + title = {Health and Medical Lore of the Aleuts}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {38}, + pages = {415-431}, + year = {1953}, + key = {Bank (1953)}, + lgcode = {Aleut [east2533]} +} +@article{barandiaran1962, + author = {Barandiaran, D. de.}, + title = {Activadades vitales de subsistencia de los Indios Yekuana o Makitare}, + journal = {Antropologica}, + volume = {11}, + pages = {1-29}, + year = {1962}, + key = {Barandiaran (1962)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{bardin1944, + author = {Bardin, P.}, + title = {Les populations arabes du ontrole civil de GAfsa et leurs genres de vie}, + address = {Tunis}, + series = {Publ. Inst. Belles Lett. Arabes}, + volume = {6}, + pages = {1-64}, + year = {1944}, + key = {Bardin (1944)}, + lgcode = {Hamama [sout3114]} +} +@incollection{barger1981, + author = {Barger, W. K.}, + editor = {J. Helm}, + title = {Great Whale River, Quebec}, + booktitle = {SubArctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {673-682}, + year = {1981}, + key = {Barger (1981)}, + lgcode = {Great Whale Inuit [queb1248]} +} +@article{barker1953, + author = {Barker, J.}, + title = {Memoria sobre la cultura de los Guaika}, + journal = {Bol. Indig. Venez.}, + address = {Caracas}, + volume = {1}, + pages = {433-490}, + year = {1953}, + glottolog_ref = {fabreall2009ann:Yanomami_yanomami003}, + key = {Barker (1953)}, + lgcode = {Guaica [yano1262]} +} +@article{barnard1938, + author = {Barnard, T. T.}, + title = {The Social Organization of Ambrym}, + journal = {Man}, + volume = {28}, + pages = {133-137}, + year = {1938}, + key = {Barnard (1938)}, + lgcode = {Ranon [nort2839]} +} +@incollection{barnes1951, + author = {Barnes, J. A.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Fort Jameson Ngoni}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press}, + address = {London}, + series = {Rhodes-Livingstone papers}, + volume = {20}, + pages = {194-252}, + year = {1951}, + glottolog_ref = {eballiso2009:33873}, + key = {Barnes (1951)}, + lgcode = {Ngoni [ngon1269]} +} +@book{barnes1954, + author = {Barnes, James A.}, + title = {Politics in a changing society: a political history of the Fort Jameson Ngoni}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1954}, + glottolog_ref = {eballiso2009:26396}, + key = {Barnes (1954)}, + lgcode = {Ngoni [ngon1269]} +} +@article{barnett1937, + author = {Barnett, H. G.}, + title = {Oregon Coast}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {155-204}, + year = {1937}, + key = {Barnett (1937)}, + lgcode = {Alsea [alse1251], Chetco [tolo1259], Coos [coos1249], Siuslaw [sius1254], Taltushtuntede [gali1261], Tillamook [till1254], Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{barnett1938, + author = {Barnett, H. G.}, + title = {The Coast Salish of Canada}, + journal = {American Anthropologist}, + volume = {40}, + pages = {118-141}, + year = {1938}, + key = {Barnett (1938)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Squamish [squa1248]} +} +@article{barnett1939, + author = {Barnett, H. G.}, + title = {Gulf of Georgia Salish}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {221-295}, + year = {1939}, + key = {Barnett (1939)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1949, + author = {Barnett, H. G.}, + title = {Palauan Society}, + address = {Eugene}, + year = {1949}, + key = {Barnett (1949)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1955, + author = {Barnett, H. G.}, + title = {The Coast Salish of British Columbia}, + address = {Eugene}, + year = {1955}, + key = {Barnett (1955)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1960, + author = {Barnett, H. G.}, + title = {Being a Palauan}, + address = {New York}, + year = {1960}, + key = {Barnett (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1968, + author = {Barnett, Homer G.}, + title = {The Nature and Function of the Potlatch}, + publisher = {Department of Anthropology, University of Oregon}, + address = {Eugene, Ore.}, + year = {1968}, + key = {Barnett (1968)}, + lgcode = {Haisla [hais1244], North Tlingit [tlin1245], South Tlingit [tlin1245], Tsimshian [nucl1649]}, + note = {Originally published in 1938} +} +@book{barnouw1950, + author = {Barnouw, Victor}, + title = {Acculturation and personality among the Wisconsin Chippewa}, + series = {American Anthropological Association, Memoir}, + volume = {72}, + year = {1950}, + key = {Barnouw (1950)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{barrau1956, + author = {Barrau, J.}, + title = {L'agriculture viviere autochtone}, + address = {Noumea}, + year = {1956}, + key = {Barrau (1956)}, + lgcode = {Ajie [ajie1238]} +} +@book{barrett1908, + author = {Barrett, S. A.}, + title = {The Ethno-geography of the Pomo and Neighboring Indians}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {6}, + pages = {1-332}, + year = {1908}, + url = {https://archive.org/details/ethnogeographyp02barrgoog}, + key = {Barrett (1908)}, + lgcode = {Central Sierra Miwok [cent2140], Eastern Pomo [east2545], Kashaya Pomo [kash1280], Northern Pomo [nort2966], Patwin [patw1250], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{barrett1910, + author = {Barrett, Samuel A.}, + title = {The Material Culture of the Klamath Lake and Modoc Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {5}, + number = {4}, + pages = {239-292}, + year = {1910}, + url = {https://archive.org/details/materialcultureo00barrrich}, + key = {Barrett (1910)}, + lgcode = {Klamath [klam1254], Modoc [klam1254]} +} +@article{barrett1911a, + author = {Barrett, S. A.}, + title = {The dream dance of the Chippewa and Menominee Indians of northern Wisconsin}, + journal = {Bulletin of the Public Museum of the City of Milwaukee}, + address = {Milwaukee, Wisconsin}, + volume = {1}, + number = {2}, + pages = {251-406}, + year = {1911}, + key = {Barrett (1911a)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{barrett1911b, + author = {Barrett, W. E. H.}, + title = {Notes on the Customs and Beliefs of the Wa-Giriama}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {41}, + pages = {20-28}, + year = {1911}, + key = {Barrett (1911b)}, + lgcode = {Giriama [giry1241]} +} +@inbook{barrett1916, + author = {Barrett, S. A.}, + title = {Pomo Buildings}, + booktitle = {Holmes Anniversary Volume}, + address = {Washington}, + pages = {1-17}, + year = {1916}, + key = {Barrett (1916)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917a, + author = {Barrett, S. A.}, + title = {Ceremonies of the Pomo Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {12}, + pages = {397-441}, + year = {1917}, + key = {Barrett (1917a)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917b, + author = {Barrett, S. A.}, + title = {The Washo Indians}, + journal = {Bull. Publ. Mus. Milwaukee}, + volume = {2}, + pages = {1-52}, + year = {1917}, + key = {Barrett (1917b)}, + lgcode = {Washo [wash1253]} +} +@article{barrett1925, + author = {Barrett, S. A.}, + title = {The Cayapa Indians of Ecuador}, + journal = {Indian Notes and Monographs}, + publisher = {New York: Haye Foundation}, + volume = {40}, + pages = {1-476}, + year = {1925}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha07}, + key = {Barrett (1925)}, + lgcode = {Chachi [chac1249]} +} +@article{barrett1952, + author = {Barrett, S. A.}, + title = {Material Aspects of Pomo Culture}, + journal = {Bulletin, Public Museum of the City of Milwaukee}, + volume = {20}, + pages = {1-508}, + year = {1952}, + key = {Barrett (1952)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{barrettandgifford1933, + author = {Barrett, Samuel A., and Edward W. Gifford}, + title = {Miwok Material Culture: Indian Life of the Yosemite Region}, + journal = {Bulletin of the Milwaukee Public Museum}, + volume = {2}, + number = {4}, + pages = {117-276}, + year = {1933}, + url = {http://www.yosemite.ca.us/library/miwok_material_culture/miwok_material_culture.pdf}, + key = {Barrett and Gifford (1933)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@book{barrow180104, + author = {Barrow, J.}, + title = {An Account of Travels into the Interior of South Africa. 2V}, + address = {London}, + year = {1801-04}, + key = {Barrow (1801-04)}, + lgcode = {/Xam [xamm1241]} +} +@book{barth1953, + author = {Barth, F.}, + title = {Principles of Social Organization in Southern Kurdistan}, + address = {Oslo}, + series = {Bulletin of the University Ethnographic Museum}, + volume = {7}, + year = {1953}, + key = {Barth (1953)}, + lgcode = {Kurd [cent1972]} +} +@article{barth1956a, + author = {Barth, F.}, + title = {Ecologic Relationships of Ethnic Groups in Swat}, + journal = {American Anthropologist}, + volume = {58}, + pages = {1079-1089}, + year = {1956}, + key = {Barth (1956a)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1956b, + author = {Barth, F.}, + title = {Indus and Swat Kohistan}, + address = {Oslo}, + year = {1956}, + key = {Barth (1956b)}, + lgcode = {Kohistani [indu1241]} +} +@article{barth1959, + author = {Barth, F.}, + title = {Segmentary Opposition and the Theory of Games: A Study of Pathan Organization}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {89}, + pages = {5-21}, + year = {1959}, + key = {Barth (1959)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1961, + author = {Barth, F. K.}, + title = {Nomads of South Persia. The Basseri Tribe of the Khamseh Confederacy}, + publisher = {George Allen & Unwin}, + address = {London}, + year = {1961}, + key = {Barth (1961)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1964, + author = {Barth, F. K.}, + editor = {R. Firth and B. S. Yamey}, + title = {Capital, Investment and Social Structure of a Pastoral Nomadic Group}, + booktitle = {Capital, Saving and Credit in Peasant Societies}, + address = {Chicago}, + pages = {69-81}, + year = {1964}, + key = {Barth (1964)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1967, + author = {Barth, F.}, + editor = {R. Firth}, + title = {Economic Spheres in Darfur}, + booktitle = {Themes in Economic Anthropology}, + series = {Association for Social Anthropology Monographs}, + volume = {6}, + pages = {149-174}, + year = {1967}, + key = {Barth (1967)}, + lgcode = {Fur [furr1244]} +} +@article{bartlett1929, + author = {Bartlett, H. H. IV-1.}, + title = {Color nomenclature in Batak and Malay}, + journal = {Michigan Academy of Science, Arts, and Letters, Papers}, + volume = {10}, + pages = {1-52}, + year = {1929}, + key = {Bartlett (1929)}, + lgcode = {Toba Batak [bata1289]} +} +@article{barton1919, + author = {Barton, R. F.}, + title = {Ifugao Law}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + pages = {1-186}, + year = {1919}, + key = {Barton (1919)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1921, + author = {Barton, J.}, + title = {Notes on the Suk Tribe of Kenia Colony}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {51}, + pages = {82-100}, + year = {1921}, + glottolog_ref = {eballiso2009:25695}, + key = {Barton (1921)}, + lgcode = {Hill Suk [west2492]} +} +@article{barton1922, + author = {Barton, R. F.}, + title = {Ifugao Economics}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + number = {5}, + pages = {385-446}, + year = {1922}, + key = {Barton (1922)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1923, + author = {Barton, J.}, + title = {Notes on the Kipsikis or Lumbwa Tribe}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {53}, + pages = {42-78}, + year = {1923}, + key = {Barton (1923)}, + lgcode = {Kipsigis [kips1239]} +} +@book{barton1930, + author = {Barton, R. F.}, + title = {The Half-Way Sun}, + address = {New York}, + year = {1930}, + key = {Barton (1930)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1938, + author = {Barton, R. F.}, + title = {Philippine Pagans}, + address = {London}, + year = {1938}, + key = {Barton (1938)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1946, + author = {Barton, R. F.}, + title = {The Religion of the Ifugaos}, + journal = {Memoirs of the American Anthropological Association}, + volume = {65}, + pages = {1-219}, + year = {1946}, + key = {Barton (1946)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1949, + author = {Barton, R. F.}, + title = {The Kalingas}, + address = {Chicago}, + year = {1949}, + key = {Barton (1949)}, + lgcode = {Kalinga [lubu1243]} +} +@article{bartram1953, + author = {Bartram, W.}, + title = {Observations on the Creek and Cherokee Indians}, + journal = {Transactions of the American Ethnological Society}, + volume = {3}, + pages = {1-81}, + year = {1953}, + key = {Bartram (1953)}, + lgcode = {Muscogee [cree1270]} +} +@article{bascom1942, + author = {Bascom, W. R.}, + title = {The Principle of Seniority in the Social Structure of the Yoruba}, + journal = {American Anthropologist}, + volume = {44}, + pages = {37-46}, + year = {1942}, + key = {Bascom (1942)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1944, + author = {Bascom, W. R.}, + title = {The Sociological Role of the Yoruba Cult-Group}, + journal = {Mem. Amer. Anth. Assoc.}, + publisher = {Menasha WI}, + series = {Memoirs of the American Anthropological Ass.}, + volume = {63}, + pages = {1-175}, + year = {1944}, + glottolog_ref = {eballiso2009:2024}, + key = {Bascom (1944)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1965, + author = {Bascom, W. R.}, + title = {Ponape: A Pacific Economy in Transition}, + journal = {Anth. Rec.}, + volume = {22}, + pages = {1-149}, + year = {1965}, + key = {Bascom (1965)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{basedow1907, + author = {Basedow, H.}, + title = {Anthropological Notes on the Western Coastal Tribes of the Northern Territory of South Australia}, + journal = {Transactions and Proceedings and Report of the Royal Society of South Australia}, + volume = {31}, + pages = {1-62}, + year = {1907}, + glottolog_ref = {hh:ew:Basedow:WCoastal}, + key = {Basedow (1907)}, + lgcode = {Larikia [lara1258]} +} +@article{basedow1913, + author = {Basedow, H.}, + title = {Notes on the Natures of Bathurst Island}, + journal = {Journal of the Anthropology Institute}, + volume = {48}, + pages = {291-323}, + year = {1913}, + key = {Basedow (1913)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{basehart1960, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Subsistence Patterns and Socio-Political Organization}, + publisher = {The University of New Mexico Mescalero-Chiricahua Land Claims Project (mimeograph)}, + address = {Albuquerque, New Mexico}, + year = {1960}, + key = {Basehart (1960)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1967, + author = {Basehart, Harry W.}, + title = {The Resource Holding Corporation among the Mescalero Apache}, + journal = {Southwestern Journal of Anthropology}, + volume = {23}, + pages = {277-291}, + year = {1967}, + key = {Basehart (1967)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1970, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Band Organization and Leadership}, + journal = {Southwestern Journal of Anthropology}, + volume = {26}, + pages = {87-106}, + year = {1970}, + key = {Basehart (1970)}, + lgcode = {Mescalero [mesc1238]} +} +@incollection{basehart1971, + author = {Basehart, Harry W.}, + editor = {Basso and Opler}, + title = {Mescalero Apache Band Organization and Leadership}, + booktitle = {Apachean Culture History and Ethnology}, + pages = {35-49}, + year = {1971}, + key = {Basehart (1971)}, + lgcode = {Mescalero [mesc1238]} +} +@misc{basehart1972, + author = {Basehart, H. W.}, + title = {Band Organization and Leadership among the Mescalero Apache}, + year = {1972}, + howpublished = {Manuscript, Department of Anthropology, Southern Methodist University, Dallas}, + key = {Basehart (1972)}, + lgcode = {Chiricahua [mesc1238]} +} +@misc{basehartperscomm1972, + author = {Basehart, H. W.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Basehart pers. comm. (1972)}, + lgcode = {Lipan Apache [lipa1241]} +} +@book{basso1969, + author = {Basso, Keith H.}, + title = {Western Apache Witchcraft}, + series = {Anthropological Papers of the University of Arizona}, + volume = {15}, + pages = {1-75}, + year = {1969}, + key = {Basso (1969)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{basso1970, + author = {Basso, Keith H.}, + title = {The Cibecue Apache}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Basso (1970)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{bassoandopler1971, + editor = {Basso, Keith H., and Morris E. Opler}, + title = {Apachean Culture History and Ethnology}, + series = {Anthropological Papers of the University of Arizona}, + volume = {21}, + pages = {1-168}, + year = {1971}, + key = {Basso and Opler (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@phdthesis{bastien1951, + author = {Bastien, Rémy}, + title = {La familia rural haitiana, Valle de Marbial}, + school = {Universidad Nacional Autonoma de Mexico}, + year = {1951}, + key = {Bastien (1951)}, + lgcode = {Haitians [hait1244]} +} +@book{bastien1985, + author = {Bastien, Remy}, + title = {Le paysan haitien et sa famille. Vallée de Marbial}, + publisher = {ACCT-Karthala}, + address = {Paris}, + year = {1985 [1951]}, + key = {Bastien (1985)}, + lgcode = {Haitians [hait1244]} +} +@book{batchelor1895, + author = {Batchelor, J.}, + title = {The Ainu of Japan}, + address = {New York}, + year = {1895}, + key = {Batchelor (1895)}, + lgcode = {Ainu [ainu1240]} +} +@book{batchelor1927, + author = {Batchelor, J.}, + title = {Ainu Life and Lore: Echos of a Departing Race}, + publisher = {Kyobunkwan}, + address = {Tokyo}, + year = {1927}, + key = {Batchelor (1927)}, + lgcode = {Ainu [ainu1240]} +} +@article{bateson1932, + author = {Bateson, G.}, + title = {Social Structure of the Iatmul People}, + journal = {Oceania}, + volume = {2}, + pages = {245-291, 401-451}, + year = {1932}, + key = {Bateson (1932)}, + lgcode = {Iatmul [iatm1242]} +} +@book{bateson1936, + author = {Bateson, G.}, + title = {Naven}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + pages = {312}, + year = {1936}, + glottolog_ref = {hh:e:Bateson:Naven}, + key = {Bateson (1936)}, + lgcode = {Iatmul [iatm1242]} +} +@book{baudin1961, + author = {Baudin, L.}, + title = {A Socialist Empire: The Incas of Peru}, + address = {New York}, + year = {1961}, + key = {Baudin (1961)}, + lgcode = {Inca [cusc1236]} +} +@book{baudin1962, + author = {Baudin, L.}, + title = {Daily Life in Peru}, + address = {New York}, + year = {1962}, + key = {Baudin (1962)}, + lgcode = {Inca [cusc1236]} +} +@book{baumann1888, + author = {Baumann, O.}, + title = {Eine Afrikanische Tropeninsel: Fernando Po und die Bubi}, + address = {Wien}, + year = {1888}, + key = {Baumann (1888)}, + lgcode = {Bubi [bube1242]} +} +@book{baumann1891, + author = {Baumann, O.}, + title = {Usambara und seine Nachbargebiete}, + address = {Berlin}, + year = {1891}, + key = {Baumann (1891)}, + lgcode = {Digo [digo1243], Pare [asut1235], Zigula [zigu1242]} +} +@book{baumann1894, + author = {Baumann, O.}, + title = {Durch Massailand zur Nilquelle: Reisen und Forschungen der Massai-Expedition des deutschen Antisklaverei-Komite in den Jahren 1891-1893}, + publisher = {Dietrich Reimer}, + address = {Berlin}, + pages = {385}, + year = {1894}, + glottolog_ref = {hh:hew:Baumann:Massailand}, + key = {Baumann (1894)}, + lgcode = {Goroa [goro1270], Maasi [masa1300], Tatoga [dato1239]} +} +@book{baumann1935, + author = {Baumann, H.}, + title = {Lunda}, + address = {Berlin}, + year = {1935}, + key = {Baumann (1935)}, + lgcode = {Chokwe [chok1245], Luchazi [luch1239], Luimbe [luim1238], Ndembu [lund1266]} +} +@book{baumhoff1958, + author = {Baumhoff, Martin A.}, + title = {California Athabascan Groups}, + series = {University of California Anthropological Records}, + volume = {16}, + pages = {157-238}, + year = {1958}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar016-006.pdf}, + key = {Baumhoff (1958)}, + lgcode = {Hupa [hupa1239], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244]} +} +@article{baumhoff1963, + author = {Baumhoff, Martin A.}, + title = {Ecological Determinants of Aboriginal California Populations}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {49}, + number = {2}, + pages = {155-236}, + year = {1963}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp049-003.pdf}, + key = {Baumhoff (1963)}, + lgcode = {Central Sierra Miwok [cent2140], Coast Yuki [yuki1243], Eastern Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Mattole-Bear River [matt1238], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Northern Pomo [nort2966], Southern Miwok [sout2985], Southern Pomo [sout2984], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Wukchumni [tule1245], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{baumstark1900, + author = {Baumstark}, + title = {Die Warangi}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {13}, + pages = {45-60}, + year = {1900}, + glottolog_ref = {eballiso2009:3022}, + key = {Baumstark (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{baxterandbutt1953, + author = {Baxter, P. T. W. and A. Butt}, + title = {The Azande, and related peoples of the Anglo-Egyptian Sudan and Belgian Congo}, + publisher = {International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: East Central Africa: Part IX}, + pages = {152}, + year = {1953}, + glottolog_ref = {hh:he:BaxterButt:Azande}, + key = {Baxter and Butt (1953)}, + lgcode = {Azande [zand1248], Bongo [bong1285], Lendu [lend1245], Logo [logo1259], Lugbara [lugb1240], Madi [madi1260], Moru [moru1253]} +} +@article{beaglehole1937, + author = {Beaglehole, E.}, + title = {Notes on Hopi Economic Life}, + journal = {Yale Univ. Publ. Anth.}, + volume = {15}, + pages = {1-88}, + year = {1937}, + key = {Beaglehole (1937)}, + lgcode = {Hopi [hopi1249]} +} +@book{beagleholeandbeaglehole1935, + author = {Beaglehole, Ernest, and Pearl Beaglehole}, + title = {Hopi of the second mesa}, + series = {American Anthropological Association Memoir}, + volume = {44}, + year = {1935}, + key = {Beaglehole and Beaglehole (1935)}, + lgcode = {Hopi [hopi1249]} +} +@article{beagleholeandbeaglehole1938, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Ethnology of Pukapuka}, + journal = {Bull. Bishop Mus.}, + volume = {110}, + pages = {1-419}, + year = {1938}, + key = {Beaglehole and Beaglehole (1938)}, + lgcode = {Pukapukans [puka1242]} +} +@article{beagleholeandbeaglehole1941, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Pangai Village in Tonga}, + journal = {Mem. Polynesian Soc.}, + volume = {18}, + pages = {1-145}, + year = {1941}, + key = {Beaglehole and Beaglehole (1941)}, + lgcode = {Tongans [tong1325]} +} +@article{beals1933, + author = {Beals, R. L.}, + title = {Ethnology of the Nisenan}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {335-414}, + year = {1933}, + key = {Beals (1933)}, + lgcode = {Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{beals1943, + author = {Beals, R. L.}, + title = {Aboriginal Culture of the Cahita Indians}, + journal = {Ibero-Americana}, + volume = {19}, + pages = {1-86}, + year = {1943}, + key = {Beals (1943)}, + lgcode = {Yaqui [yaqu1251]} +} +@article{beals1945, + author = {Beals, R. L.}, + title = {Ethnology of the Western Mixe}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {1-176}, + year = {1945}, + key = {Beals (1945)}, + lgcode = {Mixe [isth1238]} +} +@article{bealsandhester1958, + author = {Beals, R. L. and J. A. Hester.}, + title = {A Lacustrine Economy in California}, + journal = {Miscellanea Paul Rivet Octogenario Dictata}, + address = {Mexico}, + volume = {1}, + pages = {211-217}, + year = {1958}, + key = {Beals and Hester (1958)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@book{bean1972, + author = {Bean, L. J.}, + title = {Mukat's People: The Cahuilla Indians of Southern California}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1972}, + key = {Bean (1972)}, + lgcode = {Cahuilla (Desert) [cahu1264]} +} +@book{beardsleyetal1959, + author = {Beardsley, R. K. and J. W. Hall and R. E. Ward.}, + title = {Village Japan}, + address = {Chicago}, + year = {1959}, + key = {Beardsley et al. (1959)}, + lgcode = {Japanese [nucl1643]} +} +@article{beaton1936, + author = {Beaton, A. C.}, + title = {The Bari}, + journal = {Sudan Notes and Records}, + volume = {19}, + pages = {109-145}, + year = {1936}, + key = {Beaton (1936)}, + lgcode = {Bari [ligo1238]} +} +@article{beaton1939, + author = {Beaton, A.C.}, + title = {Fur rain cults and ceremonies}, + journal = {Sudan Notes and Records}, + volume = {22}, + number = {2}, + pages = {181-203}, + year = {1939}, + key = {Beaton (1939)}, + lgcode = {Fur [furr1244]} +} +@article{beaton1948, + author = {Beaton, A. C.}, + title = {The Fur}, + journal = {Sudan Notes and Records}, + volume = {29}, + pages = {1-39}, + year = {1948}, + glottolog_ref = {eballiso2009:31938}, + key = {Beaton (1948)}, + lgcode = {Fur [furr1244]} +} +@article{beattie1957, + author = {Beattie, J. H. N.}, + title = {Nyoro Kinship, Marriage and Affinity}, + journal = {Africa}, + volume = {27; 28}, + pages = {317-340; 1-22}, + year = {1957-58}, + key = {Beattie (1957-58)} +} +@book{beattie1960, + author = {Beattie, J. H. N.}, + title = {Bunyoro}, + address = {New York}, + year = {1960}, + key = {Beattie (1960)}, + lgcode = {Nyoro [nyor1246]} +} +@book{beattie1965, + author = {Beattie, J. H. N.}, + title = {Understanding an African kingdom: Bunyuro}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + year = {1965}, + glottolog_ref = {eballiso2009:14859}, + key = {Beattie (1965)}, + lgcode = {Nyoro [nyor1246]} +} +@article{beaucorps1921, + author = {Beaucorps, R. de.}, + title = {Les Basongo de la Luniunga et de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge}, + volume = {10}, + pages = {iii, 1-176}, + year = {1921}, + key = {Beaucorps (1921)}, + lgcode = {Songo [song1299]} +} +@book{beaucorps1933, + author = {Beaucorps, R. de.}, + title = {Les bayansi du bas-Kwilu}, + publisher = {Louvain: Ed. de l'Aucarn}, + address = {Louvain}, + series = {Collection africana}, + volume = {1}, + year = {1933}, + glottolog_ref = {eballiso2009:52784}, + key = {Beaucorps (1933)}, + lgcode = {Yanzi [yans1239]} +} +@article{beaucorps1951, + author = {Beaucorps, R. de.}, + title = {L'evolution economique chez les Basongo de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {20}, + pages = {iv, 1-68}, + year = {1951}, + key = {Beaucorps (1951)}, + lgcode = {Songo [song1299]} +} +@article{becker1909, + author = {Becker, C.}, + title = {Die Nongkrem-Puja in den Khasi-ergen (Assam)}, + journal = {Anthropos}, + volume = {4}, + pages = {892-902}, + year = {1909}, + key = {Becker (1909)}, + lgcode = {Khasi [khas1269]} +} +@book{beckerdonner1944, + author = {Becker-Donner, E.}, + title = {Über zwei Kruvölkerstämme: Kran und Grebo}, + publisher = {Wien}, + series = {Wiener Beiträge zur Kulturgeschichte und Linguisti}, + volume = {6}, + pages = {1-70}, + year = {1944}, + glottolog_ref = {weball:1957}, + key = {Becker-Donner (1944)}, + lgcode = {Krahn [west2488]} +} +@article{bee1963, + author = {Bee, R. L.}, + title = {Changes in Yuma Social Organization}, + journal = {Ethnology}, + volume = {2}, + pages = {207-227}, + year = {1963}, + key = {Bee (1963)}, + lgcode = {Quechan [quec1382]} +} +@book{beech1911, + author = {Beech, M. W. H.}, + title = {The Suk: their language and folklore}, + publisher = {Clarendon Press}, + address = {Oxford}, + year = {1911}, + glottolog_ref = {eballiso2009:1276}, + key = {Beech (1911)}, + lgcode = {Hill Suk [west2492], Plains Suk [east2420]} +} +@article{behr1893, + author = {Behr, H. F. von.}, + title = {Die Völker zwischen Rufiji und Ruvuma}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {6}, + pages = {69-87}, + year = {1893}, + glottolog_ref = {eballiso2009:41152}, + key = {Behr (1893)}, + lgcode = {Makonde [mako1251]} +} +@book{beidelman1967, + author = {Beidelman, T. C.}, + title = {The Matrilineal Peoples of Eastern Tanzania}, + address = {London}, + year = {1967}, + key = {Beidelman (1967)}, + lgcode = {Kaguru [kagu1239], Luguru [lugu1238], Ngulu [ngul1246], Zigula [zigu1242]} +} +@book{beitipa1995, + author = {Beitipa, L.}, + title = {The Livs of the River Gauja}, + address = {Turaida}, + year = {1995}, + key = {Beitipa (1995)}, + lgcode = {Livs [livv1244]} +} +@article{bel1908, + author = {Bel, A.}, + title = {La population musulmane de Tlemeen}, + journal = {Rev. Et. Ethnog. Sociol.}, + volume = {1}, + pages = {201-225, 417-447}, + year = {1908}, + key = {Bel (1908)}, + lgcode = {Algerians [algi1247]} +} +@book{belgrave1923, + author = {Belgrave, C. D.}, + title = {Siwa, the Oasis of Jupiter Ammon}, + address = {London}, + year = {1923}, + key = {Belgrave (1923)}, + lgcode = {Siwans [siwi1239]} +} +@book{belitserandkotkova1963, + editor = {Belitser, V. N., and K. A. Kotkova}, + title = {Issledovanija po material'noj kul'ture mordovskogo naroda (The Mordva Material Culture)}, + address = {Moscow}, + year = {1963}, + key = {Belitser and Kotkova (1963)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{bell1924, + author = {Bell, C.}, + title = {Tibet, Past and Present}, + address = {Oxford}, + year = {1924}, + key = {Bell (1924)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{bell1928, + author = {Bell, C.}, + title = {The People of Tibet}, + address = {Oxford}, + year = {1928}, + key = {Bell (1928)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{bell1934, + author = {Bell, F. L. S.}, + title = {Report on Field Work in Tanga}, + journal = {Oceania}, + volume = {4}, + pages = {290-309}, + year = {1934}, + key = {Bell (1934)}, + lgcode = {Tangga [tang1348]} +} +@article{bell1938, + author = {Bell, F. L. S.}, + title = {Courtship and Marriage Among the Tanga}, + journal = {Oceania}, + volume = {8}, + pages = {401-418}, + year = {1938}, + key = {Bell (1938)}, + lgcode = {Tangga [tang1348]} +} +@book{bellah1952, + author = {Bellah, R. N.}, + title = {Apache Kinship Systems}, + address = {Cambridge}, + year = {1952}, + key = {Bellah (1952)}, + lgcode = {Jicarilla [jica1244]} +} +@article{belo1936, + author = {Belo, J.}, + title = {A Study of a Balinese Family}, + journal = {American Anthropologist}, + volume = {38}, + pages = {12-31}, + year = {1936}, + key = {Belo (1936)}, + lgcode = {Balinese [bali1278]} +} +@book{belo1970, + author = {Belo, J.}, + title = {Traditional Balinese Culture}, + address = {New York}, + year = {1970}, + key = {Belo (1970)}, + lgcode = {Balinese [bali1278]} +} +@article{belshaw1951, + author = {Belshaw, C. S.}, + title = {Recent History of Mekeo Society}, + journal = {Oceania}, + volume = {22}, + pages = {1-23}, + year = {1951}, + key = {Belshaw (1951)}, + lgcode = {Mekeo [meke1243]} +} +@article{belshaw1955, + author = {Belshaw, C. S.}, + title = {In Search of Wealth}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {80}, + pages = {1-84}, + year = {1955}, + key = {Belshaw (1955)}, + lgcode = {Dahuni [suau1242]} +} +@book{belshaw1957, + author = {Belshaw, C. S.}, + title = {The Great Village: The Economic and Social Welfare of Hanuabada, an Urban Community in Papua}, + address = {London}, + year = {1957}, + key = {Belshaw (1957)}, + lgcode = {Motu [motu1246]} +} +@incollection{belshaw1978, + author = {Belshaw, J.}, + editor = {I. McBryde}, + title = {Population Distribution and the Pattern of Seasonal Movement in Northern New South Wales}, + booktitle = {Records of Times Past: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {65-81}, + year = {1978}, + key = {Belshaw (1978)}, + lgcode = {Badjalang [midd1357]} +} +@article{benedict1924, + author = {Benedict , R. F.}, + title = {A Brief Sketch of Serrano Culture}, + journal = {American Anthropologist}, + volume = {26}, + pages = {366-392}, + year = {1924}, + key = {Benedict (1924)}, + lgcode = {Serrano [serr1255]} +} +@book{benedict1934, + author = {Benedict, Ruth.}, + title = {Patterns of Culture}, + publisher = {Houghton Mifflin Company}, + address = {Boston}, + year = {1934}, + key = {Benedict (1934)}, + lgcode = {Kwakwaka'wakw [kwak1269], Zuni [zuni1245]} +} +@article{benedict1942, + author = {Benedict, P. K.}, + title = {Tibetan and Chinese Kinship Terms}, + journal = {Harvard Journ. As. Stud.}, + volume = {6}, + pages = {313-337}, + year = {1942}, + key = {Benedict (1942)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{benedict1943, + author = {Benedict, R. F.}, + title = {Thai Culture and Behavior}, + address = {Ithaca}, + year = {1943}, + key = {Benedict (1943)}, + lgcode = {Thai [thai1261]} +} +@book{benet1970, + editor = {Benet, S.}, + title = {The Village of Viriatino}, + address = {New York}, + year = {1970}, + key = {Benet (1970)}, + lgcode = {Russians [russ1263]} +} +@book{benhazera1908, + author = {Benhazera, M.}, + title = {Six mois chez les Touareg de Ahaggar}, + address = {Alger}, + year = {1908}, + key = {Benhazera (1908)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{bennettandzingg1935, + author = {Bennett, W. C., and R. M. Zingg.}, + title = {The Tarahumara}, + address = {Chicago}, + year = {1935}, + key = {Bennett and Zingg (1935)}, + lgcode = {Tarahumara [cent2131]} +} +@article{berengerferaud1878, + author = {Berenger-Feraud, L. J. B.}, + title = {Etude sur les Soninkes}, + journal = {Rev. Anth., ser. 2}, + volume = {1}, + pages = {586-607}, + year = {1878}, + key = {Berenger-Feraud (1878)}, + lgcode = {Soninke [soni1259]} +} +@book{bergman1927, + author = {Bergman, S.}, + title = {Through Kamchatka by dog-sled and skis}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1927}, + key = {Bergman (1927)}, + lgcode = {Koryak [kory1246]} +} +@article{bernalvilla1954, + author = {Bernal Villa, A.}, + title = {Economía de los Páez}, + journal = {Rev. olomb. Antr.}, + address = {Bogotá}, + volume = {3}, + pages = {291-367}, + year = {1954}, + glottolog_ref = {fabreall2009ann:Nasa3}, + key = {Bernal Villa (1954)}, + lgcode = {Páez [paez1247]} +} +@book{bernard1929, + author = {Bernard, A.}, + title = {L'Algerie}, + address = {Paris}, + year = {1929}, + key = {Bernard (1929)}, + lgcode = {Algerians [algi1247], Hamyan [oran1236]} +} +@book{bernard1966, + author = {Bernard, J.}, + title = {Les bisa du circle de Garango}, + publisher = {Ouagadougou & Paris: Centre Voltaique de la Recherche Scientifique (CVRS); Centre National de la Recherche Scientifique (CNRS)}, + address = {Ouagadougou & Paris}, + series = {Recherches voltaiques: collection de travaux de sciences humaines sur la Haute-Volta}, + volume = {2}, + pages = {1-247}, + year = {1966}, + glottolog_ref = {eballiso2009:57776}, + key = {Bernard (1966)}, + lgcode = {Bisa [biss1248]} +} +@book{bernatzik1933, + author = {Bernatzik, H. A.}, + title = {Aethiopien des Westen. 2V}, + address = {Wien}, + year = {1933}, + key = {Bernatzik (1933)}, + lgcode = {Balanta [bala1301], Banyun [bain1259], Bijogo [bidy1244], Diola [ejam1238], Papel [pape1239]} +} +@book{bernatzik1936, + author = {Bernatzik, H. A.}, + title = {Gari-Gari}, + address = {New York}, + year = {1936}, + key = {Bernatzik (1936)}, + lgcode = {Jur [luwo1239]} +} +@book{bernatzik1938, + author = {Bernatzik, H. A.}, + title = {Overland with the Nomad Lapps}, + address = {New York}, + year = {1938}, + key = {Bernatzik (1938)}, + lgcode = {Sami [nort2671]} +} +@book{bernatzik1944, + author = {Bernatzik, H. A.}, + title = {Im Reiche der Bidyogo}, + address = {Innsbruck}, + year = {1944}, + key = {Bernatzik (1944)}, + lgcode = {Bijogo [bidy1244]}, + unknown = {Mendes Moreira,. 1946. Beve ensaio etnografico acerca dos Bijagos. Bol. Cultural Guine Port. 1: 69-115.} +} +@book{bernatzik1947, + author = {Bernatzik, H. A.}, + title = {Akha und Meau. 2v}, + address = {Innsbruck}, + year = {1947}, + key = {Bernatzik (1947)}, + lgcode = {Akha [akha1245]}, + unknown = {Young, G. 1962. The Hill Tribes of Northern Thailand. Bangkok: Siam Society.} +} +@book{bernatzik1951, + author = {Bernatzik, H. A.}, + title = {The Spirits of the Yellow Leaves}, + publisher = {Robert Hale}, + address = {London}, + year = {1951}, + key = {Bernatzik (1951)}, + lgcode = {Mlabri [mlab1235]}, + note = {In collaboration with E. Bernatzik} +} +@article{berndt1953, + author = {Berndt, R. M.}, + title = {A Day in the Life of a Dieri Man Before Alien Contact}, + journal = {Anthropos}, + volume = {48}, + pages = {171-201}, + year = {1953}, + key = {Berndt (1953)}, + lgcode = {Diyari [dier1241]} +} +@article{berndt1955, + author = {Berndt, R. M.}, + title = {"Murngin" (Wulamba) Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {84-106}, + year = {1955}, + key = {Berndt (1955)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@book{berndt1962, + author = {Berndt, R. M.}, + title = {Excess and Restraint}, + address = {Chicago}, + year = {1962}, + key = {Berndt (1962)}, + lgcode = {Fore [fore1270]} +} +@article{berndtandberndt1944, + author = {Berndt, R. M., and C. H. Berndt}, + title = {A Preliminary Report of Field Work in the Ooldea Region, Western South Australia: Women's Life}, + journal = {Oceania}, + volume = {14}, + pages = {220-249}, + year = {1944}, + key = {Berndt and Berndt (1944)}, + lgcode = {Ooldea [anta1253]} +} +@book{berndtandberndt1970, + author = {Berndt, R. M., and C. H. Berndt}, + title = {Man, land & myth in north Australia: the Gunwinggu people}, + publisher = {Michigan State University Press}, + address = {East Lansing}, + year = {1970}, + glottolog_ref = {ozbib:484}, + key = {Berndt and Berndt (1970)}, + lgcode = {Gunwinygu [gunw1252]} +} +@book{bernotandbernot1958, + author = {Bernot, D., and L. Bernot.}, + title = {Les Khyang des Collines de Chittagong (Pakistan Oriental): Matériaux pour l'étude linguistique des Chin}, + publisher = {Librairie Plon}, + address = {Paris}, + series = {L'Homme: Cahiers de d'Éthnologie, de Géographie et de Linguistique}, + volume = {3}, + pages = {148}, + year = {1958}, + glottolog_ref = {hh:d:BernotBernot:Chin}, + key = {Bernot and Bernot (1958)}, + lgcode = {Chin [asho1236]} +} +@article{berreman1962a, + author = {Berreman, G. D.}, + title = {Pahari Polyandry}, + journal = {American Anthropologist}, + volume = {64}, + pages = {60-75}, + year = {1962}, + key = {Berreman (1962a)}, + lgcode = {Pahari [maha1287]} +} +@article{berreman1962b, + author = {Berreman, G. D.}, + title = {Sib and Clan Among the Pahari of North India}, + journal = {Ethnology}, + volume = {1}, + pages = {524-528}, + year = {1962}, + key = {Berreman (1962b)}, + lgcode = {Pahari [maha1287]} +} +@book{berreman1963, + author = {Berreman, G. D.}, + title = {Hindus of the Himalayas}, + address = {Berkeley and Los Angeles}, + year = {1963}, + key = {Berreman (1963)}, + lgcode = {Pahari [maha1287]} +} +@book{bertrand1899, + author = {Bertrand, A.}, + title = {The Kingdom of the Barotsi}, + address = {London}, + year = {1899}, + key = {Bertrand (1899)}, + lgcode = {Lozi [lozi1239]} +} +@article{bertrand1920, + author = {Bertrand.}, + title = {Quelques notes sur la vie politique, le developpement, la decadence des petites societes Bantou du bassin central du Congo}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {1}, + pages = {i, 74-91}, + year = {1920}, + key = {Bertrand (1920)}, + lgcode = {Lokele [kele1255]} +} +@book{bessaignet1958, + author = {Bessaignet, P.}, + title = {Tribesmen of the Chittagong Hill Tracts}, + publisher = {Asiatic Society of Pakistan.}, + address = {Dacca}, + series = {Asiatic Society of Pakistan, Publications}, + volume = {1}, + pages = {iii, 109, illus., map}, + year = {1958}, + glottolog_ref = {sala:625}, + key = {Bessaignet (1958)}, + lgcode = {Chakma [chak1266], Mogh [rakh1245]} +} +@book{best1924, + author = {Best, E.}, + title = {The Maori. 2v}, + address = {Wellington}, + year = {1924}, + key = {Best (1924)}, + lgcode = {Māori [maor1246]} +} +@book{best1925, + author = {Best, E.}, + title = {Maori Agriculture}, + address = {Wellington}, + year = {1925}, + key = {Best (1925)}, + lgcode = {Māori [maor1246]} +} +@book{best1952, + author = {Best, E.}, + title = {The Maori as He Was}, + address = {Wellington}, + year = {1952}, + key = {Best (1952)}, + lgcode = {Māori [maor1246]} +} +@book{best1979a, + author = {Best, Elsdon}, + title = {The Maori. Vol.I}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979a)}, + lgcode = {Māori [maor1246]} +} +@book{best1979b, + author = {Best, Elsdon}, + title = {The Maori. Vol.II}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979b)}, + lgcode = {Māori [maor1246]} +} +@misc{bestnd, + author = {Best, O. H.}, + title = {Burmawa of Kanam}, + howpublished = {Manuscript}, + key = {Best (nd)}, + lgcode = {Burmawa [bogh1241]} +} +@incollection{bhanu1982, + author = {Bhanu, B. A.}, + editor = {P. K. Misra and K. C. Malhotra}, + title = {The Nomadic Cholanaickans of Kerala: An Analysis of Their Movements}, + booktitle = {Nomads in India}, + publisher = {Anthropological Survey of India}, + address = {Calcutta}, + pages = {215-226}, + year = {1982}, + key = {Bhanu (1982)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@incollection{bhanu1992, + author = {Bhanu, B. A.}, + editor = {M. J. Casimir and A. Rao}, + title = {Boundaries, obligations and reciprocity: levels of territoriality among the Cholanaickan of south India}, + booktitle = {Mobility and territoriality: social and spatial boundaries among foragers, fishers, pastoralists and peripatetics}, + publisher = {Berg}, + address = {Oxford}, + pages = {29-54}, + year = {1992}, + key = {Bhanu (1992)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@book{biddulph1880, + author = {Biddulph, J.}, + title = {Tribes of the Hindoo-Koosh}, + publisher = {Office of Superintendent Printing}, + address = {Calcutta}, + pages = {364}, + year = {1880}, + glottolog_ref = {hh:hewtyp:Biddulph:Hindoo-Koosh}, + key = {Biddulph (1880)}, + lgcode = {Shina [shin1264]} +} +@book{bieber192023, + author = {Bieber, F. J.}, + title = {Kaffa. 2v}, + address = {Münster}, + year = {1920-23}, + key = {Bieber (1920-23)}, + lgcode = {Kafa [kafa1242]} +} +@incollection{biernoff1979, + author = {Biernoff , D.}, + editor = {M. Heppell}, + title = {Traditional and Contemporary Structures and Settlement in Eastern Arnhem Land with Particular Reference to the Nunggubuyu}, + booktitle = {A Black Reality—Aboriginal Camps and Housing in Remote Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {153-179}, + year = {1979}, + key = {Biernoff (1979)}, + lgcode = {Nunggubuyu [nung1290]} +} +@article{biesele1972, + author = {Biesele, M.}, + title = {Hunting in semi-arid areas - the Kalahari Bushmen Today}, + journal = {Botswana Notes and Records (special ed.)}, + year = {1972}, + key = {Biesele (1972)}, + lgcode = {!Kung [juho1239]} +} +@phdthesis{biesele1975, + author = {Biesele, M.}, + title = {Folklore and ritual of !Kung hunter-gatherers}, + school = {Harvard}, + year = {1975}, + glottolog_ref = {eballiso2009:34947}, + key = {Biesele (1975)}, + lgcode = {!Kung [juho1239]} +} +@incollection{biesele1976, + author = {Biesele, M.}, + editor = {Lee, Richard Borshay and DeVore, Irven}, + title = {Aspects of !Kung folklore}, + booktitle = {Kalahari Hunter-Gatherers: Studies of the !Kung San and their Neighbours}, + publisher = {Harvard Univ. Press}, + address = {Cambridge MA & London}, + pages = {302-324}, + year = {1976}, + glottolog_ref = {eballiso2009:33436}, + key = {Biesele (1976)}, + lgcode = {!Kung [juho1239]} +} +@book{bikbulatov1964, + author = {Bikbulatov, N. V.}, + title = {Sistema rodstva bashkir (Kin System of the Bashkir)}, + address = {Moscow}, + year = {1964}, + key = {Bikbulatov (1964)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatov1980, + author = {Bikbulatov, N. V.}, + editor = {R. G. Kuzeev and N. V. Bikbulatov}, + title = {Istoricheskoer azvitieb ashkirskojs istemyr odstva (Historical Development of the Bashkir Kin System)}, + booktitle = {Obychai i kul'tumo-bytovye traditsii bashkir (Customs and Everyday Life Cultural Traditions of the Bashkir)}, + address = {Ufa}, + pages = {3-23}, + year = {1980}, + key = {Bikbulatov (1980)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1980a, + author = {Bikbulatov, N. V.}, + title = {Bashkirskij aul. Ocherk obshchestvennoj i kul'tumoj zhizni (Bashkir Aul: An Essay on Social and Cultural Life)}, + address = {Ufa}, + year = {1980}, + key = {Bikbulatov (1980a)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1981, + author = {Bikbulatov, N. V.}, + title = {Bashkirskajas istemar odstva (BashkirK in System)}, + address = {Moscow}, + year = {1981}, + key = {Bikbulatov (1981)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatovandfatyhova1991, + author = {Bikbulatov, N. V., and F. F. Fatyhova}, + title = {Semejnyj byt bashkir. XIX-XX w. (Family Everyday Life of the Bashkir in the Nineteenth and Twentieth Centuries)}, + address = {Moscow}, + year = {1991}, + key = {Bikbulatov and Fatyhova (1991)} +} +@book{bikbulatovandkuzeev1976, + editor = {Bikbulatov, N. V., and R. G. Kuzeev}, + title = {Etnografija Bashkirii (Ethnography of Bashkiria)}, + address = {Ufa}, + year = {1976}, + key = {Bikbulatov and Kuzeev (1976)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatovandpimenov1998, + author = {Bikbulatov, N. V., and V. V. Pimenov.}, + editor = {V. A. Tishkov}, + title = {Bashkiry (The Bashkir)}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + address = {Moscow}, + pages = {85-88}, + year = {1998}, + key = {Bikbulatov and Pimenov (1998)}, + lgcode = {Bashkir [bash1264]} +} +@misc{binford1969, + author = {Binford}, + year = {1969}, + howpublished = {field notes 1969 (July)}, + key = {Binford (1969)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binford1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford (1971)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binford1991a, + author = {Binford, L. R.}, + editor = {W. A. Bois-mier and C. S. Gamble}, + title = {When the Going Gets Tough, the Tough Get Going: Nunamiut Local Groups, Camping Patterns, and Economic Organization}, + booktitle = {Ethnoarchaeological Approaches to Mobile Campsites: Hunter-Gatherer and Pastoralist Case Studies}, + publisher = {International Monographs in Prehistory}, + address = {Ann Arbor, Mich.}, + series = {Ethnoarchaeology Series}, + volume = {1}, + pages = {25-137}, + year = {1991}, + key = {Binford (1991a)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binfordandchasko1976, + author = {Binford, L. R., and W. J. Chasko}, + editor = {E. B. Zubrow}, + title = {Nunamiut Demographic History}, + booktitle = {Demographic Anthropology: Quantitative Approaches}, + publisher = {University of New Mexico Press}, + address = {Albuquerque}, + pages = {63-143}, + year = {1976}, + key = {Binford and Chasko (1976)}, + lgcode = {Nunamiut [nort2944]} +} +@misc{binfordfieldnotes1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford field notes (1971)}, + lgcode = {Noatak Inuit [nort2945]} +} +@book{binfordfieldnotes1972, + author = {Binford, L. R.}, + title = {An Archaeological Perspective}, + publisher = {Seminar Press}, + address = {New York}, + year = {1972}, + key = {Binford field notes (1972)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binfordfieldnotes1974, + author = {Binford, L. R.}, + year = {1974}, + howpublished = {Field notes (Alyawara, July) on file, Department of Anthropology, Southern Methodist University, Dal-las, Texas.}, + key = {Binford field notes (1974)}, + lgcode = {Alyawara [alya1239]} +} +@misc{binfordfieldnotes1993, + title = {Binford field notes 1993}, + key = {Binford field notes (1993)}, + lgcode = {Northern Aranda [east2379]} +} +@incollection{bird1946, + author = {Bird, J. B.}, + editor = {J. H. Steward}, + title = {The Alacaluf}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {143}, + number = {1}, + pages = {55-80}, + year = {1946}, + key = {Bird (1946)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{bird1983, + author = {Bird, N.}, + editor = {P. Robb}, + title = {Wage-Gathering: SocioPOThoomic Changes and the Case of the Food-Gatheier Naikens of South India}, + booktitle = {Rural South Asia: Linkages, Change and Develop-ment}, + publisher = {Curzon Press}, + address = {London}, + pages = {57-88}, + year = {1983}, + key = {Bird (1983)}, + lgcode = {Nayaka [jenn1240]} +} +@book{bird1988, + author = {Bird, J. B.}, + editor = {J. Hyslop}, + title = {Travels and Archaeology in South Chile}, + publisher = {University of Iowa Press}, + address = {Iowa City}, + year = {1988}, + key = {Bird (1988)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{birddavid1987, + author = {Bird-David, N.}, + editor = {P. Hockings}, + title = {Single Persons and Social Cohesion in a HunterGatherer Society}, + booktitle = {Dimensions of Social Life: Essays in Honor of David G. Mandelbaum}, + publisher = {Mouton de Gruyter}, + address = {Berlin}, + pages = {151-166}, + year = {1987}, + key = {Bird-David (1987)}, + lgcode = {Nayaka [jenn1240]} +} +@misc{birdperscomm1970, + author = {Bird}, + year = {1970}, + howpublished = {Pers. comm.}, + key = {Bird pers. comm. (1970)}, + lgcode = {Alacaluf [qawa1238]} +} +@article{birdsell1967, + author = {Birdsell, J. B.}, + title = {Preliminary Data on the Trihybrid Origin of the Australian Aborigines}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {2}, + pages = {100-155}, + year = {1967}, + key = {Birdsell (1967)}, + lgcode = {Mamu [mamu1253]} +} +@book{birketsmith1924, + author = {Birket-Smith, Kaj}, + title = {Ethnography of the Egedesminde district}, + series = {Meddelelser om Gronland}, + volume = {66}, + year = {1924}, + key = {Birket-Smith (1924)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{birketsmith1928a, + author = {Birket-Smith, Kaj}, + title = {The Greenlanders of the Present Day}, + series = {Greenlan}, + volume = {2}, + pages = {1-207}, + year = {1928}, + key = {Birket-Smith (1928a)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@book{birketsmith1928b, + author = {Birket-Smith, Kaj}, + title = {Five Hundred Eskimo Words}, + series = {Rep. Fifth Thule Exp.}, + volume = {3}, + number = {iii}, + pages = {1-64}, + year = {1928}, + key = {Birket-Smith (1928b)}, + lgcode = {Iglulik Inuit [west2618], Inughuit (Northern Greenland) [pola1254]} +} +@book{birketsmith1929, + title = {The Caribou Eskimos}, + publisher = {Nordisk Forlag}, + address = {Copenhagen}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {i; ii}, + pages = {1-306; 1-419}, + key = {Birket-Smith (1929)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{birketsmith1930, + author = {Birket-Smith, Kaj}, + title = {Contributions to Chipewyan Ethnology}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {iii}, + pages = {1-113}, + year = {1930}, + key = {Birket-Smith (1930)}, + lgcode = {Dene [chip1261]} +} +@book{birketsmith1953, + author = {Birket-Smith, K.}, + title = {The Chugach Eskimo}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter, Etnografisk Raekkee}, + volume = {6}, + pages = {1-262}, + year = {1953}, + key = {Birket-Smith (1953)}, + lgcode = {Chugach [chug1254]} +} +@article{birketsmith1956, + author = {Birket-Smith, K.}, + title = {An Ethnological Sketch of Rennell Island}, + journal = {Kong. Danske Videnskab. Selskab, Hist. -Filol. Medd.}, + volume = {35}, + pages = {iii, 1-222}, + year = {1956}, + key = {Birket-Smith (1956)}, + lgcode = {Rennell Islanders [renn1242]} +} +@book{birketsmithanddelaguna1938, + author = {Birket-Smith, K., and F. De Laguna}, + title = {The Eyak Indians of the Copper River Delta, Alaska}, + publisher = {Levin and Munksgaard}, + address = {Copenhagen}, + year = {1938}, + key = {Birket-Smith and De Laguna (1938)}, + lgcode = {Eyak [eyak1241]} +} +@phdthesis{bishop1969, + author = {Bishop, C. A.}, + title = {The Northern Chippewa: An Ethnohistorical Study}, + school = {Department of Anthropology, State University of New York, Buffalo}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bishop (1969)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{bishop1978, + author = {Bishop, C. A.}, + editor = {C. D. Laughlin, Jr., and I. A. Brady}, + title = {Cultural and Biological Adaptations to Deprivation: The Northern Ojibwa Case}, + booktitle = {Extinction and Survival in Human Populations}, + publisher = {Columbia University Press}, + address = {New York}, + pages = {208-230}, + year = {1978}, + key = {Bishop (1978)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{black1960, + author = {Black, C. E.}, + title = {The Transformation of Russian Society}, + address = {Cambridge}, + year = {1960}, + key = {Black (1960)}, + lgcode = {Russians [russ1263]} +} +@book{black1973, + author = {Black, L.}, + title = {The Nivkh (Gilyak) of Sakhalin and the Lower Amur}, + year = {1973}, + key = {Black (1973)}, + lgcode = {Nivkh [gily1242]} +} +@phdthesis{blackburn1971, + author = {Blackburn, R. H.}, + title = {Honey in Okiek personality, culture and society}, + school = {Department of Anthropology, Michigan State University, East Lansing}, + year = {1971}, + glottolog_ref = {eballiso2009:33929}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blackburn (1971)}, + lgcode = {Dorobo [okie1245]} +} +@book{blackman1927, + author = {Blackman, W. S.}, + title = {The Fellahin of Upper Egypt}, + address = {London}, + year = {1927}, + key = {Blackman (1927)}, + lgcode = {Egyptians [egyp1253]} +} +@book{blackwood1935, + author = {Blackwood, B.}, + title = {Both Sides of Buka Passage}, + address = {Oxford}, + year = {1935}, + key = {Blackwood (1935)}, + lgcode = {Kurtatchi [tinp1237]} +} +@book{bleek1924a, + author = {Bleek, D. F.}, + title = {The Mantis and His Friends}, + publisher = {Maskew Miller}, + address = {Cape Town}, + year = {1924}, + key = {Bleek (1924a)}, + lgcode = {/Xam [xamm1241]} +} +@article{bleek1924b, + author = {Bleek, D. F.}, + title = {Bushman Terms of Relationship}, + journal = {Bantu Studies}, + volume = {2}, + pages = {57-70}, + year = {1924}, + key = {Bleek (1924b)}, + lgcode = {/Xam [xamm1241], Naron [naro1249]} +} +@book{bleek1928, + author = {Bleek, D. F.}, + title = {The Naron: A BuNman Tribe of the Central Kalahari}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1928}, + key = {Bleek (1928)}, + lgcode = {Naron [naro1249]} +} +@article{bleek1929, + author = {Bleek, D. F.}, + title = {Bushmen of Central Angola}, + journal = {Bantu Studies}, + volume = {3}, + pages = {105-125}, + year = {1929}, + key = {Bleek (1929)}, + lgcode = {!Kung [juho1239], Sekele [vase1234]} +} +@article{bleek1931a, + author = {Bleek, D. F.}, + title = {Traces of Former Bushmen Occupation in Tanganyika Territory}, + journal = {South African Journal of Science}, + volume = {28}, + pages = {423-429}, + year = {1931}, + key = {Bleek (1931a)}, + lgcode = {Hadza [hadz1240]} +} +@article{bleek1931b, + author = {Bleek, D. F.}, + title = {The Hadzapi or Watindiga of Tanganyika Territory}, + journal = {Africa}, + volume = {4}, + pages = {273-286}, + year = {1931}, + key = {Bleek (1931b)}, + lgcode = {Hadza [hadz1240]} +} +@book{blohm193133, + author = {Blohm, W.}, + title = {Die Nyamwezi. 3V}, + address = {Bamberg}, + year = {1931-33}, + key = {Blohm (1931-33)}, + lgcode = {Nyamwezi [nyam1276], Sumbwa [sumb1240]} +} +@phdthesis{blundell1975, + author = {Blundell, V. J.}, + title = {Aboriginal Adaptation in Northwest Australia}, + school = {Department of Anthropology, University of Wisconsin, Madison}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blundell (1975)}, + lgcode = {Worrorra [worr1237]} +} +@article{blundell1980, + author = {Blundell, V. J.}, + title = {Hunter-Gatherer Territoriality: Ideology and Behavior in Northwest Australia}, + journal = {Ethnohistory}, + volume = {27}, + number = {2}, + pages = {103-117}, + year = {1980}, + key = {Blundell (1980)}, + lgcode = {Worrorra [worr1237]} +} +@article{blurtonjonesetal1992, + author = {Blurton-Jones, N. G. and L. C. Smith and J. F. O'Connell and K. Hawkes and C. L. Kamuzora}, + title = {Demography of the Hadza: an increasing and high density population of savanna foragers}, + journal = {American Journal of Physical Anthropology}, + volume = {89}, + pages = {159-181}, + year = {1992}, + glottolog_ref = {eballiso2009:34759}, + key = {Blurton-Jones et al. (1992)}, + lgcode = {Hadza [hadz1240]} +} +@inbook{boas1888, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Annual Reports of the Bureau of American Ethnology}, + volume = {6}, + pages = {390-669}, + year = {1888}, + key = {Boas (1888)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1891a, + author = {Boas, F.}, + title = {Physical Characteristics of the Tribes of the North Pacific Coast}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {424-449}, + year = {1891}, + key = {Boas (1891a)}, + lgcode = {Alsea [alse1251]} +} +@article{boas1891b, + author = {Boas, F.}, + title = {The Bilqula}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {408-424}, + year = {1891}, + key = {Boas (1891b)}, + lgcode = {Nuxalk [bell1243]} +} +@article{boas1895a, + author = {Boas, F.}, + title = {The Indians of British Columbia: Physical Characteristics of the Tribes of the North Pacific Coast, the Tinnch Tribe of Nicola Valley, the Ts'ets'a'ut, theNisk'a', Linguistics of Nisk'a' and Ts'ets'a'ut and Vocabulary of the Tinnch Tribes of Canada}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {65}, + pages = {523-592}, + year = {1895}, + key = {Boas (1895a)}, + lgcode = {Mi'kmaq [mikm1235], Wegamon Ojibwa [seve1241]} +} +@article{boas1895b, + author = {Boas, F.}, + title = {The Social Organization and the Secret Societies of the Kwakiutl Indians}, + journal = {Rep. U. S. Nat. Mus.}, + volume = {1895}, + pages = {311-738}, + year = {1895}, + key = {Boas (1895b)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boas1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas (1899)}, + lgcode = {Bannock [bann1248], Kuyuidokado [sout2967], Timponogas [utee1244], Tukudika [nort2955], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622]} +} +@article{boas1901, + author = {Boas, F.}, + title = {A}, + journal = {J. Stone's Measurementso f the Natives of Northwestern Territories. Bulletin of the American Museum of Natural History}, + volume = {14}, + pages = {53-68}, + year = {1901}, + key = {Boas (1901)}, + lgcode = {Kutchin [gwic1235], Noatak Inuit [nort2945], Tahltan [tahl1239]} +} +@article{boas190107, + author = {Boas, F.}, + title = {The Eskimo of Baffinland and Hudson Bay}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + volume = {15}, + pages = {1-570}, + year = {1901-07}, + key = {Boas (1901-07)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1907, + author = {Boas, F.}, + title = {The Eskimo of Baffin Land and Hudson Bay}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {15}, + year = {1907}, + key = {Boas (1907)}, + lgcode = {Netsilik [nets1241]} +} +@article{boas1909, + author = {Boas, F.}, + title = {The Kwakiutl of Vancouver Island}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + volume = {8}, + pages = {307-515}, + year = {1909}, + key = {Boas (1909)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@article{boas1918, + author = {Boas, F.}, + title = {Kutenai Tales}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington, D.C.: Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {59}, + pages = {1-387}, + year = {1918}, + glottolog_ref = {hh:t:Boas:Kutenai}, + key = {Boas (1918)}, + lgcode = {Kutenai [kute1249]} +} +@article{boas1922, + author = {Boas, F.}, + title = {Das VerwandtschAftssystem der Vandau}, + journal = {Zeitschrift für Ethnologie}, + volume = {54}, + pages = {41-51}, + year = {1922}, + key = {Boas (1922)}, + lgcode = {Ndau [ndau1241]} +} +@article{boas1923, + author = {Boas, F.}, + title = {Notes on the Tillamook}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {3-16}, + year = {1923}, + key = {Boas (1923)}, + lgcode = {Tillamook [till1254]} +} +@article{boas1938, + author = {Boas, F.}, + title = {Bella Bella Texts}, + journal = {Columbia University Contributions to Anthropology}, + volume = {5}, + pages = {1-291}, + year = {1938}, + key = {Boas (1938)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{boas1964, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {University of Nebraska Press}, + address = {Lincoln}, + year = {1964}, + key = {Boas (1964)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{boas1966, + author = {Boas, F.}, + editor = {H. Codere}, + title = {Kwakiutl Ethnography}, + address = {Chicago}, + year = {1966}, + key = {Boas (1966)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boasandfarrand1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas and Farrand (1899)}, + lgcode = {Chilcotin [chil1280], Gitxsan [gitx1241], Kwakwaka'wakw [kwak1269], Lillooet [lill1248], Nlaka'pamux [thom1243], Nuxalk [bell1243], Tsimshian [nucl1649]} +} +@article{bock1966, + author = {Bock, P. K.}, + title = {The Micmac Indians of Restigouche}, + journal = {Bulletins of the National Museum of Canada}, + volume = {213}, + pages = {1-95}, + year = {1966}, + key = {Bock (1966)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{bockani1945, + author = {Bockani, J.}, + title = {Mende Warfare}, + journal = {Farm and Forest}, + volume = {6}, + number = {2}, + pages = {104-105}, + year = {1945}, + key = {Bockani (1945)}, + lgcode = {Mende [mend1266]} +} +@article{boelaert1940, + author = {Boelaert, E.}, + title = {De Nkundo-Maatschappij}, + journal = {Kongo-Overzee}, + volume = {6}, + pages = {148-161}, + year = {1940}, + key = {Boelaert (1940)}, + lgcode = {Nkundo [nkun1238]} +} +@book{boggiani1894, + author = {Boggiani, G.}, + title = {I Ciamacoco}, + publisher = {Roma: Società Romana per l'Antropologia}, + address = {Roma}, + pages = {132}, + year = {1894}, + glottolog_ref = {hh:ew:Boggiani:Ciamacoco}, + key = {Boggiani (1894)}, + lgcode = {Chamacoco [cham1315]} +} +@article{bogoras1901a, + author = {Bogoras, W.}, + title = {The Chukchee of Northeastern Asia}, + journal = {American Anthropologist}, + volume = {3}, + pages = {80-108}, + year = {1901}, + glottolog_ref = {hh:e:Bogoras:Chukchi}, + key = {Bogoras (1901a)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1901b, + author = {Bogoras, W.}, + title = {The Chukchee}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + pages = {1-703}, + year = {1901}, + key = {Bogoras (1901b)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1904, + author = {Bogoras, W.}, + title = {The Chukchee. The Jesup North Pacific Expedition, Vol. 7}, + publisher = {E. J. Brill}, + address = {Leiden, the Netherlands}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + year = {1904}, + key = {Bogoras (1904)}, + lgcode = {Ungazikmit [cent2128]} +} +@article{bohannan1949, + author = {Bohannan, L.}, + title = {Dahomean Marriage}, + journal = {Africa}, + volume = {19}, + pages = {273-278}, + year = {1949}, + key = {Bohannan (1949)}, + lgcode = {Fon [fonn1241]} +} +@article{bohannan1952, + author = {Bohannan, L.}, + title = {A Genealogical Charter}, + journal = {Africa}, + volume = {22}, + pages = {301-315}, + year = {1952}, + key = {Bohannan (1952)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1953, + author = {Bohannan, P.}, + title = {Concepts of Time Among the Tiv of Nigeria}, + journal = {Southwestern Journal of Anthropology}, + volume = {9}, + pages = {251-262}, + year = {1953}, + glottolog_ref = {eballiso2009:22304}, + key = {Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1954a, + author = {Bohannan. P.}, + title = {Tiv Farm and Settlement}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {15}, + year = {1954}, + glottolog_ref = {eballiso2009:22303}, + key = {Bohannan (1954a)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954b, + author = {Bohannan, P.}, + title = {The Migration and Expansion of the Tiv}, + journal = {Africa}, + volume = {24}, + pages = {2-16}, + year = {1954}, + key = {Bohannan (1954b)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954c, + author = {Bohannan, P.}, + title = {Circumcision among the Tiv}, + journal = {Man}, + volume = {54}, + pages = {2-6}, + year = {1954}, + key = {Bohannan (1954c)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1955, + author = {Bohannan, P.}, + title = {Some Principles of Exchange and Investment Among the Tiv}, + journal = {American Anthropologist}, + volume = {57}, + pages = {60-70}, + year = {1955}, + glottolog_ref = {eballiso2009:22302}, + key = {Bohannan (1955)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1957a, + author = {Bohannan, L.}, + editor = {J. Middleton and D. Tait}, + title = {Political Aspects of Tiv Social Organization}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {33-66}, + year = {1957}, + key = {Bohannan (1957a)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1957b, + author = {Bohannan, P.}, + title = {Justice and Judgment among the Tiv}, + publisher = {Oxford Univ. Press}, + address = {London}, + year = {1957}, + glottolog_ref = {eballiso2009:22299}, + key = {Bohannan (1957b)}, + lgcode = {Tiv [tivv1240]} +} +@misc{bohannan1960, + author = {Bohannan, P.}, + title = {Tiv Trade and Markets}, + year = {1960}, + howpublished = {Manuscript}, + key = {Bohannan (1960)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1965, + author = {Bohannan, P.}, + editor = {J. L. Gibbs, Jr.}, + title = {The Tiv of Nigeria}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {279-317}, + year = {1965}, + key = {Bohannan (1965)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1953, + author = {Bohannan, L., and P. Bohannan.}, + title = {The Tiv of Central Nigeria}, + publisher = {London: Oxford Univ. Press for the International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {8}, + pages = {100}, + year = {1953}, + glottolog_ref = {hh:e:BohannanBohannan:Tiv}, + key = {Bohannan and Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannanandbohannan1957, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Markets}, + journal = {New York Academy of Sciences, Transations, series}, + volume = {2}, + pages = {613-621}, + year = {1957}, + key = {Bohannan and Bohannan (1957)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1958, + author = {Bohannan, P. and Bohannan, L.}, + title = {Three Source Notebooks in Tiv Ethnography}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + year = {1958}, + glottolog_ref = {eballiso2009:13443}, + key = {Bohannan and Bohannan (1958)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1966, + author = {Bohannan, P. and Bohannan, L.}, + title = {A source notebook on Tiv subsistence, technology, and economics}, + address = {New Haven}, + year = {1966}, + key = {Bohannan and Bohannan (1966)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1968, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Economy}, + publisher = {Evanston: Northwestern Univ. Press}, + address = {Evanston}, + series = {African studies}, + volume = {20}, + year = {1968}, + glottolog_ref = {eballiso2009:35681}, + key = {Bohannan and Bohannan (1968)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1969, + author = {Bohannan, P. and Bohannan, L.}, + title = {A Source Notebook on Tiv Religion. 5v}, + address = {New Haven}, + year = {1969}, + key = {Bohannan and Bohannan (1969)}, + lgcode = {Tiv [tivv1240]} +} +@book{bois1966, + author = {Bois, Th.}, + title = {The Kurds}, + year = {1966}, + key = {Bois (1966)}, + lgcode = {Kurd [cent1972]} +} +@article{bolinder1957, + author = {Bolinder, G.}, + title = {Verwandtschaftssystem der Goajiro}, + journal = {Zeitschrift für Ethnologie}, + volume = {82}, + pages = {164-168}, + year = {1957}, + key = {Bolinder (1957)}, + lgcode = {Wayuu [wayu1243]}, + note = {English translation: 1957. Indians on Horseback. London.} +} +@book{bollig1927, + author = {Bollig, L.}, + title = {Die Bewohner der Truk-Inseln}, + address = {Münster}, + series = {Anthropos Ethnologische Bibliothek}, + volume = {3}, + year = {1927}, + key = {Bollig (1927)}, + lgcode = {Trukese [chuu1238]} +} +@book{bolton1916, + author = {Bolton, H. E. (editor).}, + title = {Spanish Exploration in the Southwest, 1542-1706}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1916}, + key = {Bolton (1916)}, + lgcode = {Karankawa [kara1289]} +} +@book{bonniard1934, + author = {Bonniard, F.}, + title = {Le tell septentrional en Tunisie}, + address = {Paris}, + year = {1934}, + key = {Bonniard (1934)}, + lgcode = {Tunisians [tuni1260]} +} +@misc{bordiend, + author = {Bordie, J. G.}, + school = {University of Texas}, + howpublished = {Personal communication}, + key = {Bordie (nd)}, + lgcode = {Sindhi [sind1272]} +} +@incollection{borisova1924, + author = {Borisova, A.}, + editor = {V. G. Bogoraz-Tan}, + title = {Vzaimootnoshenija polov u chuharej (Gender Relations among the Veps)}, + booktitle = {Staryj i novyj byt (Old and New Everyday Life Styles)}, + address = {Leningrad}, + pages = {59-79}, + year = {1924}, + key = {Borisova (1924)}, + lgcode = {Veps [veps1250]} +} +@incollection{borwnlee1927, + author = {Borwnlee, J.}, + editor = {G. Thompson}, + title = {Account of the Amakosae, or Southern Caffres}, + booktitle = {Travels and Adventures in Southern Africa}, + address = {London}, + volume = {2}, + pages = {335-375}, + year = {1927}, + key = {Borwnlee (1927)}, + lgcode = {Xhosa [xesi1238]} +} +@book{bosch1930, + author = {Bosch, F.}, + title = {Les Banyamwezi}, + address = {Münster}, + year = {1930}, + key = {Bosch (1930)}, + lgcode = {Nyamwezi [nyam1276]} +} +@article{boschinandmacuzzi1979, + author = {Boschin, M. T., and L. R. Macuzzi.}, + title = {Ensayo metodologico para la reconstruccion ethnohistorica: su aplicacion a la coprension del modelo Tehuelche Meridional}, + journal = {Colegio de Graduados en Antropologia, Serie Monografica (Buenos Aires)}, + volume = {4}, + pages = {3-37}, + year = {1979}, + key = {Boschin and Macuzzi (1979)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bose1936, + author = {Bose, J. K.}, + title = {Social Organization of the Aimol Kuki}, + journal = {Journ. Dept. Lett. Univ. Calcutta}, + volume = {25}, + pages = {vii, 1-24}, + year = {1936}, + key = {Bose (1936)}, + lgcode = {Aimol [aimo1244]} +} +@article{bose1964, + author = {Bose, S.}, + title = {Economy of the Onge of Little Andaman}, + journal = {Man in India}, + volume = {44}, + number = {4}, + pages = {298-310}, + year = {1964}, + glottolog_ref = {hh:e:Bose:Onge}, + key = {Bose (1964)}, + lgcode = {Onge [onge1236]} +} +@article{boseandray1953, + author = {Bose, U., and P. C. Ray.}, + title = {Application of Performance Tests on the Bhils of Central India}, + journal = {Bulletin of the Department of Anthropology}, + publisher = {Manage of Publications}, + address = {Delhi}, + volume = {1}, + number = {1}, + pages = {31-58}, + year = {1953}, + key = {Bose and Ray (1953)}, + lgcode = {Bhil [bhil1251]} +} +@book{bostock1950, + author = {Bostock, P. G.}, + title = {The Taita}, + address = {London}, + year = {1950}, + key = {Bostock (1950)}, + lgcode = {Teita [tait1250]} +} +@book{bouille1937, + author = {Bouillé, R.}, + title = {Les coutumes familiales au Kanem}, + address = {Paris}, + year = {1937}, + key = {Bouillé (1937)}, + lgcode = {Buduma [budu1265], Daza [daza1242], Kanembu [kane1243], Shuwa [char1283]} +} +@incollection{bourdieu1966, + author = {Bourdieu, P.}, + editor = {J. G. Peristiany}, + title = {The sentiment of honor in Kabyle society}, + booktitle = {Honour and Shame: The Values of Mediterranean Society}, + publisher = {University of Chicago Press}, + address = {Chicago}, + year = {1966}, + key = {Bourdieu (1966)}, + lgcode = {Kabyle [kaby1243]} +} +@article{bourgeau1933, + author = {Bourgeau, J.}, + title = {Notes sur la coutume des Sereres du Sine et du Saloum}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ.}, + volume = {16}, + pages = {1-65}, + year = {1933}, + key = {Bourgeau (1933)}, + lgcode = {Serer [sere1260]} +} +@article{bourgeois1954, + author = {Bourgeois, R.}, + title = {Banyarwanda et Barundi}, + journal = {Mem. Acad. Roy. Sci. Colon., Cl. Sci. Mor. Polit.}, + publisher = {Bruxelles}, + series = {Mémoires de l'ARSOM (Académie Royale des Sciences d'Outre-Mer), collection in-}, + volume = {35}, + pages = {1-472}, + year = {1954}, + glottolog_ref = {eballiso2009:486}, + key = {Bourgeois (1954)}, + lgcode = {Rundi [rund1242]} +} +@book{bourilly1932, + author = {Bourilly, J.}, + title = {Elements de l'ethnographie marocaine}, + address = {Paris}, + year = {1932}, + key = {Bourilly (1932)}, + lgcode = {Beraber [cent2194]} +} +@book{bourne1874, + author = {Bourne, B. F.}, + title = {The Captive in Patagonia}, + address = {Boston}, + year = {1874}, + key = {Bourne (1874)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bouronclecarreon1964, + author = {Bouroncle Carreon, A.}, + title = {Contribucion al estudio de los Aymaras}, + journal = {America Indigena}, + volume = {24}, + pages = {129-169, 233-269}, + year = {1964}, + key = {Bouroncle Carreon (1964)}, + lgcode = {Aymara [cent2142]} +} +@book{bouton1640, + author = {Bouton, J.}, + title = {Relation de l'establissement des Français depuis l'an 1635 en l'isle de Martinique}, + address = {Paris}, + year = {1640}, + key = {Bouton (1640)}, + lgcode = {Callinago [isla1278]} +} +@book{bowen1976, + author = {Bowen, T.}, + title = {Seri Prehistory: The Archaeology of the Central Coast of Sonora, Mexico}, + publisher = {University of Arizona Press}, + address = {Tucson}, + series = {Anthropological Papers of the University of Arizona}, + number = {27}, + year = {1976}, + key = {Bowen (1976)}, + lgcode = {Seri [seri1257]} +} +@book{bowers1950, + author = {Bowers, A. W.}, + title = {Mandan Social and Ceremonial Organization}, + address = {Chicago}, + year = {1950}, + key = {Bowers (1950)}, + lgcode = {Mandan [mand1446]} +} +@book{bowers1964, + author = {Bowers, N.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Bowers (1964)}, + lgcode = {Kakoli [umbu1258]} +} +@article{bowers1965, + author = {Bowers, A. W.}, + title = {Hidatsa Social and Ceremonial Organization}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {194}, + pages = {1-528}, + year = {1965}, + key = {Bowers (1965)}, + lgcode = {Hidatsa [hida1246]} +} +@incollection{boyd1990, + author = {Boyd, R.T.}, + editor = {W. Suttles}, + title = {Demographic History, 1774-1874}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {135-148}, + year = {1990}, + key = {Boyd (1990)}, + lgcode = {Coos [coos1249], Klallam [clal1241]} +} +@article{boyer1953, + author = {Boyer, G.}, + title = {Les Diawara}, + journal = {Mem. Inst. Franc. Af. Noire}, + volume = {29}, + pages = {1-122}, + year = {1953}, + key = {Boyer (1953)}, + lgcode = {Soninke [soni1259]} +} +@book{bradbury1957, + author = {Bradbury, R. E.}, + title = {The Benin Kingdom and the Edo-speaking Peoples of Southwestern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {13}, + year = {1957}, + glottolog_ref = {eballiso2009:1480}, + key = {Bradbury (1957)}, + lgcode = {Edo [bini1246], Isoko [isok1239], Kukuruku [yekh1238]} +} +@article{brain1969, + author = {Brain, J. L.}, + title = {Matrilineal descent and marital stability: a Tanzanian case}, + journal = {Journal of Asian and African Studies}, + volume = {4}, + number = {2}, + pages = {122-131}, + year = {1969}, + glottolog_ref = {eballiso2009:15472}, + key = {Brain (1969)}, + lgcode = {Luguru [lugu1238]} +} +@article{brandt1961, + author = {Brandt, J. H.}, + title = {The Negrito of Peninsular Thailand}, + journal = {Journal of the Siam Society}, + volume = {49}, + number = {2}, + pages = {123-160}, + year = {1961}, + glottolog_ref = {sala:983}, + key = {Brandt (1961)}, + lgcode = {Semang [kens1248]} +} +@article{brau1942, + author = {Brau, C.}, + title = {Le droit coutumier Lunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {155-267}, + year = {1942}, + key = {Brau (1942)}, + lgcode = {Luwa [sond1250]} +} +@book{brayshaw1990, + author = {Brayshaw, H.}, + title = {Well Beaten Paths}, + publisher = {Department of History, James Cook University of North Queensland}, + address = {Cairns}, + series = {Studies in North Queensland History}, + number = {10}, + year = {1990}, + key = {Brayshaw (1990)}, + lgcode = {Warunggu [waru1264]} +} +@article{brepoels1930, + author = {Brepoels, H.}, + title = {Het familiehoofd bij de Nkundo negers}, + journal = {Congo}, + volume = {2}, + pages = {ii, 332-430}, + year = {1930}, + key = {Brepoels (1930)}, + lgcode = {Nkundo [nkun1238]} +} +@book{breton1665, + author = {Breton, R.}, + title = {Observations of the Island Carib}, + publisher = {Besada, Marina et al}, + address = {Auxerre}, + year = {1665}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na038}, + key = {Breton (1665)}, + lgcode = {Callinago [isla1278]} +} +@article{bretonanddelapaix1929, + author = {Breton, R., and A. de la Paix.}, + editor = {J. Rennard}, + title = {Relation de l'ile de la Guadeloup}, + journal = {Histoire Coloniale}, + address = {Paris}, + volume = {1}, + pages = {45-74}, + year = {1929}, + key = {Breton and de la Paix (1929)}, + lgcode = {Callinago [isla1278]} +} +@book{bridges1949, + author = {Bridges, E. Lucas.}, + title = {Uttermost part of the earth}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1949}, + key = {Bridges (1949)}, + lgcode = {Ona [onaa1245]} +} +@article{briggs1951, + author = {Briggs, L. P.}, + title = {The Ancient Khmer Empire. The Kambuja, or Angkor, period}, + journal = {Transactions of the American Philosophical Society}, + volume = {41}, + pages = {241-250}, + year = {1951}, + key = {Briggs (1951)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@article{briggs1958, + author = {Briggs, L. L.}, + title = {The Living Races of the Sahara Desert}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {28}, + pages = {ii, 1-217}, + year = {1958}, + key = {Briggs (1958)}, + lgcode = {Chaambra [algi1247], Regeibat [hass1238], Teda [teda1241], Tuareg Ahaggar [hogg1238]} +} +@book{briggs1960, + author = {Briggs, L.C.}, + title = {Tribes of the Sahara}, + year = {1960}, + key = {Briggs (1960)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{briggs1970, + author = {Briggs, J.}, + title = {Never in Anger: Portrait of an Eskimo Family}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1970}, + key = {Briggs (1970)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@book{bright1959, + author = {Bright, J.}, + title = {A History of Israel}, + address = {Philadelphia}, + year = {1959}, + key = {Bright (1959)}, + lgcode = {Hebrews [anci1244]} +} +@phdthesis{brink1969, + author = {Brink, P. J.}, + title = {The Pyramid Lake Paiute of Nevada}, + school = {Department of Anthropology, Boston University, Boston}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Brink (1969)}, + lgcode = {Kidutokado [nort1551]} +} +@book{brinton1859, + author = {Brinton, D. G.}, + title = {Notes on the Floridian Peninsula}, + address = {Philadelphia}, + year = {1859}, + key = {Brinton (1859)}, + lgcode = {Timucua [timu1245]} +} +@article{broadfoot1885, + author = {Broadfoot, J. S.}, + title = {On Parts of the Ghilzi Country}, + journal = {Roy. Geog. Soc. Suppl. Pap.}, + volume = {1}, + pages = {341-400}, + year = {1885}, + key = {Broadfoot (1885)}, + lgcode = {Ghilzai [ghil1238]} +} +@article{brohez1905, + author = {Brohez.}, + title = {Les Balubas}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {29}, + pages = {460-478}, + year = {1905}, + key = {Brohez (1905)}, + lgcode = {Shila [luba1250]} +} +@article{brohm1963, + author = {Brohm, J.}, + title = {Buddhism and Animism in a Burmese Village}, + journal = {Journal of Asian Studies}, + volume = {22}, + pages = {155-167}, + year = {1963}, + key = {Brohm (1963)}, + lgcode = {Burmese [nucl1310]} +} +@book{brokensha1975, + author = {Brokensha, P.}, + title = {The Pitjantlatjara and Their Crafts}, + publisher = {Aboriginal ArtsBoard}, + address = {North Sydney}, + year = {1975}, + key = {Brokensha (1975)}, + lgcode = {Pitjandjara [pitj1243]} +} +@incollection{brooksetal1984, + author = {Brooks, A. S. and D. E. Gelburd and J. E. Yellen}, + editor = {J. D. Clark and S. A. Brandt}, + title = {Food production and culture change among the !Kung San: implications for prehistoric research}, + booktitle = {From Hunters to Farmers: The Causes and Consequences of Food Production in Africa}, + publisher = {Univ. of California Press}, + address = {Berkeley}, + pages = {293-310}, + year = {1984}, + glottolog_ref = {eballiso2009:19366}, + key = {Brooks et al. (1984)}, + lgcode = {!Kung [juho1239]} +} +@article{brosius1986, + author = {Brosius, J. P.}, + title = {River, Forest and Mountain: the Penan Gang Landscape}, + journal = {Sarawak Museum Journal}, + volume = {36}, + number = {57}, + pages = {173-184}, + year = {1986}, + key = {Brosius (1986)}, + lgcode = {Punan [west2563]} +} +@book{brown1926, + author = {Brown, J. Tom.}, + title = {Among the Bantu nomads}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1926}, + key = {Brown (1926)}, + lgcode = {Tswana [tswa1253]} +} +@article{brown1944, + author = {Brown, H. D.}, + title = {The Nkumu of the Tumba}, + journal = {Africa}, + volume = {14}, + pages = {431-447}, + year = {1944}, + key = {Brown (1944)}, + lgcode = {Bakongo [sans1272], Ekonda [ekon1238]} +} +@incollection{brown1955, + author = {Brown, P.}, + editor = {D. Forde}, + title = {The Igbira}, + booktitle = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {53-74}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Brown (1955)}, + lgcode = {Ebira [ebir1243]} +} +@book{brownandhutt1935, + author = {Brown, G. G., and A. M. B. Hutt.}, + title = {Anthropology in Action}, + address = {London}, + year = {1935}, + key = {Brown and Hutt (1935)}, + lgcode = {Hehe [hehe1240]} +} +@misc{brownnd, + author = {Brown, L. K.}, + howpublished = {Personal Communication}, + key = {Brown (nd)}, + lgcode = {Japanese [nucl1643]} +} +@book{brumbachandjarvenpa1989, + author = {Brumbach, H. J., and R. Jarvenpa.}, + title = {Ethnoarchaeological and Cultural Frontiers}, + publisher = {Peter Lang}, + address = {New York}, + year = {1989}, + key = {Brumbach and Jarvenpa (1989)}, + lgcode = {Dene [chip1261]} +} +@book{brundage1963, + author = {Brundage, B. C.}, + title = {Empire of the Inca}, + address = {Norman}, + year = {1963}, + key = {Brundage (1963)}, + lgcode = {Inca [cusc1236]} +} +@article{bruner1959, + author = {Bruner, E. M.}, + title = {Kinship Organization Among the Urban Batak of Sumatra}, + journal = {Trans. N. Y. Acad. Sci., ser. 2}, + volume = {22}, + pages = {118-125}, + year = {1959}, + key = {Bruner (1959)}, + lgcode = {Toba Batak [bata1289]} +} +@article{brussaux1907, + author = {Brussaux, E.}, + title = {Notes sur les Moundans}, + journal = {Bull. Soc. Anth. Paris, ser. 5}, + volume = {8}, + pages = {273-295}, + year = {1907}, + key = {Brussaux (1907)}, + lgcode = {Mundang [mund1325]} +} +@article{brutsch1950, + author = {Brutsch, J. R.}, + title = {Les relations de parente chez les Duala}, + journal = {Bull. Soc. Et. Camerounaises}, + volume = {3}, + pages = {211-230}, + year = {1950}, + key = {Brutsch (1950)}, + lgcode = {Duala [dual1243]} +} +@article{bruwer1949, + author = {Bruwer, J.}, + title = {The composition of a Chewa village (Mudzi)}, + journal = {African Studies}, + volume = {8}, + pages = {191-198}, + year = {1949}, + glottolog_ref = {eballiso2009:21817}, + key = {Bruwer (1949)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1955, + author = {Bruwer, J. P.}, + title = {Unkhoswe: The System of Guardianship in Cewa Matrilineal Society}, + journal = {African Studies}, + volume = {14}, + pages = {113-122}, + year = {1955}, + glottolog_ref = {eballiso2009:27536}, + key = {Bruwer (1955)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1958, + author = {Bruwer, J. P. van S.}, + title = {Matrilineal Kinship Among the Kunda}, + journal = {Africa}, + volume = {28}, + pages = {207-224}, + year = {1958}, + key = {Bruwer (1958)}, + lgcode = {Kunda [kund1255]} +} +@article{bruyns1951, + author = {Bruyns, L.}, + title = {De sociaal-economische ontwikkeling van made Bakongo}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {22}, + pages = {iii, 1-343}, + year = {1951}, + key = {Bruyns (1951)}, + lgcode = {Bakongo [sans1272]} +} +@book{bryant1949, + author = {A. T. Bryant}, + title = {The Zulu people}, + publisher = {Shuter and Shooter}, + address = {Pietermaritzburg}, + year = {1949}, + key = {Bryant (1949)}, + lgcode = {Zulu [zulu1248]} +} +@book{buch1882, + author = {Buch, M.}, + title = {Die Wotjaken. Eine ethnologische Studien}, + address = {Helsingfors}, + year = {1882}, + key = {Buch (1882)}, + lgcode = {Udmurt [sout2681]} +} +@book{buchner1887, + author = {Buchner, M.}, + title = {Kamerun}, + year = {1887}, + key = {Buchner (1887)}, + lgcode = {Duala [dual1243]} +} +@article{buck1930, + author = {Buck, P. H.}, + title = {Samoan Material Culture}, + journal = {Bulletins of the Bishop Museum}, + volume = {75}, + pages = {1-724}, + year = {1930}, + key = {Buck (1930)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{buck1932a, + author = {Buck, P. H.}, + title = {Ethnology of Manihiki and Rakahanga}, + journal = {Bull. Bishop Mus.}, + volume = {99}, + pages = {1-238}, + year = {1932}, + key = {Buck (1932a)}, + lgcode = {Manihikians [raka1237]} +} +@article{buck1932b, + author = {Buck, P. H.}, + title = {Ethnology of Tongareva}, + journal = {Bull. Bishop Mus.}, + volume = {92}, + pages = {1-225}, + year = {1932}, + key = {Buck (1932b)}, + lgcode = {Tongarevans [penr1237]} +} +@article{buck1934, + author = {Buck, P. H.}, + title = {Mangaian Society}, + journal = {Bull. Bishop Mus.}, + volume = {122}, + pages = {1-207}, + year = {1934}, + key = {Buck (1934)}, + lgcode = {Mangaians [raro1241]} +} +@article{buck1938, + author = {Buck, P. H.}, + title = {Ethnology of Mangareva}, + journal = {Bull. Bishop Mus.}, + volume = {117}, + pages = {1-519}, + year = {1938}, + key = {Buck (1938)}, + lgcode = {Mangarevans [mang1401]} +} +@book{buck1949, + author = {Buck, P. H.}, + title = {The Coming of the Maori}, + address = {Wellington}, + year = {1949}, + key = {Buck (1949)}, + lgcode = {Māori [maor1246]} +} +@book{buck1950, + author = {Buck, P. H.}, + title = {The Material Culture of Kapingamarangi}, + series = {Bull. Bishop Mus.}, + volume = {200}, + year = {1950}, + key = {Buck (1950)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{buck1957, + author = {Buck, P. H.}, + title = {Arts and Crafts of Hawaii}, + journal = {Bishop Mus. Spec. Publ.}, + volume = {45}, + pages = {1-606}, + year = {1957}, + key = {Buck (1957)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{buckandmasland1950, + author = {Buck, P. W. and J. W. Masland.}, + title = {The Governments of Foreign Powers}, + address = {New York}, + year = {1950}, + key = {Buck and Masland (1950)}, + lgcode = {Japanese [nucl1643]} +} +@book{budge1926, + author = {Budge, E. A. W.}, + title = {Dwellers on the Nile}, + address = {London}, + year = {1926}, + key = {Budge (1926)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@article{bufe1913, + author = {Bufe, E.}, + title = {Die Bakundu}, + journal = {Archiv. Anth.}, + volume = {40}, + pages = {228-239}, + year = {1913}, + key = {Bufe (1913)}, + lgcode = {Kundu [orok1266]} +} +@article{bugge1952, + author = {Bugge, A.}, + title = {The native Greenlander--a blending of old and new}, + journal = {Arctic}, + volume = {5}, + pages = {45-53}, + year = {1952}, + key = {Bugge (1952)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{bullock1928, + author = {Bullock, C.}, + title = {The Mashona}, + address = {Cape Town}, + year = {1928}, + key = {Bullock (1928)}, + lgcode = {Shona [shon1251]} +} +@book{bulow1971, + author = {Bülow, Werner von}, + title = {Der Stammbaum der Könige von Samoa}, + year = {1897}, + howpublished = {Globus, 1971}, + key = {Bülow (1971)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{bunzel1930, + author = {Bunzel, R.}, + title = {Zuni Katcinas}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {47}, + pages = {837-1086}, + year = {1930}, + key = {Bunzel (1930)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1932, + author = {Bunzel, R.}, + title = {Introduction to Zuni Ceremonialism}, + journal = {Annual Reports of the Bureau of American Ethnology}, + address = {Washington}, + volume = {47}, + number = {i}, + pages = {467-544}, + year = {1932}, + key = {Bunzel (1932)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1952, + author = {Bunzel, R.}, + title = {Chichicastenanago}, + journal = {Publications of the American Ethnological Society}, + volume = {22}, + pages = {1-438}, + year = {1952}, + key = {Bunzel (1952)}, + lgcode = {K'iche' [kich1262]} +} +@book{burch1975, + author = {Burch, E. S. Jr. and Burch, E.S., Jr.}, + title = {Eskimo kinsmen: Changing family relationships in Northwest Alaska}, + publisher = {West Publishing Company}, + address = {St. Paul}, + series = {American Ethnological Society Monograph}, + number = {59}, + year = {1975}, + key = {Burch (1975)}, + lgcode = {Inupiat [nort2944], Kobuk Inuit [kobu1239], Kotzebue Sound Inuit [kotz1238], Noatak Inuit [nort2945], Tareumiut [nort2944]} +} +@incollection{burch1984, + author = {Burch, E. S.}, + editor = {D. Damas}, + title = {Kotzebue Sound Eskimo}, + booktitle = {Arctic}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {303-319}, + year = {1984}, + key = {Burch (1984)}, + lgcode = {Kotzebue Sound Inuit [kotz1238]} +} +@misc{burd1952, + author = {Burd, W. W.}, + title = {Karimata: A Village in the Southern Ryukyus}, + year = {1952}, + howpublished = {Unpublished manuscript}, + key = {Burd (1952)}, + lgcode = {Miyakans [miya1259]} +} +@article{burel1910, + author = {Burel, G.}, + title = {Les populations de la moyenne Sanga: Les Pomo et les Boumali}, + journal = {Rev. Ethnog. Sociol.}, + volume = {1}, + pages = {3-32}, + year = {1910}, + key = {Burel (1910)}, + lgcode = {Sanga [bomw1238]} +} +@article{burgesse1944, + author = {Burgesse, J. A.}, + title = {The Woman and Child Among the Lac-St.-Jean Montagnais}, + journal = {Primitive Man}, + volume = {17}, + pages = {1-18}, + year = {1944}, + key = {Burgesse (1944)}, + lgcode = {Montagnais [mont1268]} +} +@book{burling1963, + author = {Burling, R.}, + title = {Rengsanggri: Family and kinship in a Garo village}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + pages = {377}, + year = {1963}, + glottolog_ref = {sala:1094}, + key = {Burling (1963)}, + lgcode = {Garo [garo1247]} +} +@article{burrows1936, + author = {Burrows, E. G.}, + title = {Ethnology of Futuna}, + journal = {Bull. Bishop Mus.}, + volume = {138}, + pages = {1-239}, + year = {1936}, + key = {Burrows (1936)}, + lgcode = {Futunans [east2447]} +} +@article{burrows1937, + author = {Burrows, E. G.}, + title = {Ethnology of Uvea}, + journal = {Bull. Bishop Mus.}, + volume = {145}, + pages = {1-176}, + year = {1937}, + key = {Burrows (1937)}, + lgcode = {Uveans [wall1257]} +} +@misc{burrows1949, + author = {Burrows, Edwin Grant.}, + title = {The people of Ifaluk: a little-disturbed atoll culture}, + year = {1949}, + howpublished = {Unpublished manuscript submitted as a final report, Coordinated investigation of Micronesian Anthropology. Washington, Pacific Science Board, National Research Council.}, + key = {Burrows (1949)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burrowsandspiro1953, + author = {Burrows, E. G., and M. E. Spiro.}, + title = {An Atoll Culture}, + address = {New Haven}, + year = {1953}, + key = {Burrows and Spiro (1953)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burssens1958, + author = {Burssens, H.}, + title = {Les peuplades de l'entre Congo-Ubangi}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, Congo}, + volume = {4; Annales du MRCB (Musée Royal du Congo Belge): monographies ethnographiques, #4}, + year = {1958}, + glottolog_ref = {eballiso2009:34309}, + key = {Burssens (1958)}, + lgcode = {Bwaka [ngba1284], Mbandja [mban1263], Ngala [ling1263], Ngbandi [nort2774], Ngombe [binj1250]} +} +@book{burton1876, + author = {Burton, R. F.}, + title = {Two Trips to Gorilla Land and the Cataracts of the Congo}, + address = {London}, + year = {1876}, + key = {Burton (1876)}, + lgcode = {Mpongwe [myen1241]} +} +@book{bush1964, + author = {Bush, N. F.}, + title = {Thailand: An Introduction to Modern Siam}, + address = {Princeton}, + year = {1964}, + key = {Bush (1964)}, + lgcode = {Thai [thai1261]} +} +@book{bushnell1922, + author = {Bushnell, D. I., Jr.}, + title = {Villages of the Algonquian, iauian and Caddoan Tribes West of the Mississippi}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau American Ethnology Bulletin}, + number = {77}, + year = {1922}, + key = {Bushnell (1922)}, + lgcode = {Assiniboine [assi1247], Blackfoot [pieg1239], Cheyenne [chey1247], Plains Cree [plai1258], Teton [lako1247]} +} +@book{busia1951, + author = {Busia, K. A.}, + title = {The Position of the Chief in the Modern Political System of Ashanti}, + address = {London}, + year = {1951}, + key = {Busia (1951)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{busia1954, + author = {Busia, K. A.}, + editor = {D. Forde}, + title = {The Ashanti of the Gold Coast}, + booktitle = {African Worlds}, + address = {London}, + pages = {190-209}, + year = {1954}, + key = {Busia (1954)}, + lgcode = {Ashanti [asan1239]} +} +@book{busyginandzorin1984, + author = {Busygin, E. P., and N. V. Zorin}, + title = {Etnografija narodov Srednego Povolzh'ja (Ethnography of the Peoples of the Middle Volga Region). Part. 1}, + address = {Kazan'.}, + year = {1984}, + key = {Busygin and Zorin (1984)}, + lgcode = {Udmurt [sout2681]} +} +@inbook{butt1952a, + author = {Butt, Audrey}, + title = {The Luo of Kenya}, + booktitle = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + key = {Butt (1952a)}, + lgcode = {Luo [luok1236]} +} +@book{butt1952b, + author = {Butt, Audrey}, + editor = {Forde, Daryll}, + title = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + glottolog_ref = {eballiso2009:36615}, + key = {Butt (1952b)}, + lgcode = {Acholi [dhop1238], Jur [luwo1239], Shilluk [shil1265]} +} +@incollection{buxton1958, + author = {Buxton, J.}, + editor = {J. Middleton and D. Tait}, + title = {The Mandari of the Souterhn Sudan}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {67-96}, + year = {1958}, + key = {Buxton (1958)}, + lgcode = {Mondari [mand1425]} +} +@incollection{byhan1926, + author = {Byhan, A.}, + editor = {G. Buschan}, + title = {Die Kaukasischen Völker}, + booktitle = {Illustrierte Völkerkunde}, + address = {Stuttgart}, + volume = {2}, + number = {ii}, + pages = {749-844}, + year = {1926}, + key = {Byhan (1926)}, + lgcode = {Abkhaz [abkh1244]} +} +@article{bynghall1909, + author = {Byng-Hall, F. F. w.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {13-20}, + year = {1909}, + key = {Byng-Hall (1909)}, + lgcode = {Basakomo [basa1282]} +} +@article{bystrom1954, + author = {Bystrom, K.}, + title = {Notes on the Ekparabong Clan}, + journal = {Orientalia Suecana}, + volume = {3}, + pages = {3126}, + year = {1954}, + key = {Bystrom (1954)}, + lgcode = {Ekoi [ejag1239]} +} +@phdthesis{cadelina1982, + author = {Cadelina, R. V.}, + title = {Batak Interhousehold Food Sharing: A Systematic Analysis of Food Management of Marginal Agriculturalists in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1982}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Cadelina (1982)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{cadire1953, + author = {Cadire, L. M., et al.}, + title = {Vietnamese Ethnographic Papers}, + address = {New Haven}, + year = {1953}, + key = {Cadire (1953)}, + lgcode = {Annamese [viet1252]} +} +@book{cagnolo1933, + author = {Cagnolo, C.}, + title = {The Akikuyu}, + address = {Nyeri}, + year = {1933}, + key = {Cagnolo (1933)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{caldwellandcalhoun1932, + author = {Caldwell, M. G., and J. Calhoun.}, + title = {The Culture of the Campas Indians}, + journal = {Sci. Monthly}, + volume = {1932}, + pages = {238-242}, + year = {1932}, + key = {Caldwell and Calhoun (1932)}, + lgcode = {Asháninka [ajyi1238]} +} +@incollection{callardandwheeler1963, + author = {Callard, K. and R. S. Wheeler.}, + editor = {G. McT. Kahin}, + title = {Pakistan}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {419-532}, + year = {1963}, + key = {Callard and Wheeler (1963)}, + lgcode = {Punjabi [west2386]} +} +@incollectin{callawayetal1986, + author = {Callaway, D. G. and J. C. Janetski and 0. C. Stewart.}, + editor = {W. L. d'Azevedo}, + title = {Ute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {336-367}, + year = {1986}, + key = {Callaway et al. (1986)}, + lgcode = {Southern Ute [utee1244], Timponogas [utee1244]} +} +@book{callenderandelguindi1971, + author = {Callender, C., and F. el Guindi.}, + title = {Life-Crisis Rituals Among the Kenuz}, + address = {Cleveland}, + series = {Case Western Reserve University Studies in Anthropology}, + volume = {3}, + year = {1971}, + key = {Callender and el Guindi (1971)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{cameron1890, + author = {Cameron, D.}, + editor = {L. F. R. Masson}, + title = {A sketch of the customs, manners, and way of living of the natives in the barren country about Nipigon}, + booktitle = {Les Bourgeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {229-300}, + year = {1890}, + key = {Cameron (1890)}, + lgcode = {Nipigon [cent2136]} +} +@book{cammann1951, + author = {Cammann, Schuyler}, + title = {Trade Through the Himalyas, The Early British Attempts to Open Tibet}, + publisher = {Princeton University Press}, + address = {Princeton}, + year = {1951}, + key = {Cammann (1951)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{campana1902, + author = {Campana, D. del.}, + title = {Notizie intorno ai Ciriguani}, + journal = {Arch. Antr. Ethnol.}, + address = {Florencia}, + volume = {32}, + pages = {17-139}, + year = {1902}, + glottolog_ref = {fabreall2009ann:Tupi_chiriguano021}, + key = {Campana (1902)}, + lgcode = {Guaraní [east2555]} +} +@book{campbell1928, + author = {Campbell, D.}, + title = {On the trail of the veiled Tuareg}, + year = {1928}, + key = {Campbell (1928)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@article{campbelletal1936, + author = {Campbell, T. D. and J. H. Gray and C. J. Hackett}, + title = {Physical Anthropology of the Aborigines of CentralAustralia}, + journal = {Oceania}, + volume = {7}, + pages = {106-139, 246-261}, + year = {1936}, + key = {Campbell et al. (1936)}, + lgcode = {Alyawara [alya1239], Pintubi [pint1250], Pitjandjara [pitj1243]} +} +@article{cann1929, + author = {Cann, G. P.}, + title = {A Day in the Life of an Idle Shilluk}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {251-253}, + year = {1929}, + key = {Cann (1929)}, + lgcode = {Shilluk [shil1265]} +} +@book{cannon1983, + editor = {Cannon , M.}, + title = {Historical Records of Victoria}, + publisher = {Victorian Government Printing Office}, + address = {Melbourne}, + series = {Foundation Series}, + volume = {2B: Aborigines and Protectors 1838-1839}, + year = {1983}, + key = {Cannon (1983)}, + lgcode = {Bunurong [woiw1237]} +} +@misc{carbou1912, + author = {Carbou, H.}, + title = {La region du Tehad et du Quadai 1: 172}, + address = {Paris}, + year = {1912}, + key = {Carbou (1912)}, + lgcode = {Daza [daza1242], Kanembu [kane1243]} +} +@book{carcopino1940, + author = {Carcopino, J.}, + editor = {H. T. Howell}, + title = {Daily Life in Ancient Rome}, + address = {New Haven}, + year = {1940}, + key = {Carcopino (1940)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{cardim1906, + author = {Cardim, F.}, + title = {A Treatise on Brasil}, + journal = {Haklyutus Posthumus or Purchas His Pilgrimes}, + address = {Glasgow}, + volume = {16}, + pages = {417-517}, + year = {1906}, + key = {Cardim (1906)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{careyandtuck1896, + author = {Carey, B. S., and H. P. Tuck.}, + title = {The Chin Hills. 2V}, + address = {Rangoon}, + year = {1896}, + key = {Carey and Tuck (1896)}, + lgcode = {Chin [asho1236]} +} +@article{carneiro1958, + author = {Carneiro, R.}, + title = {Extra-marital Sex Freedom Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {135-142}, + year = {1958}, + key = {Carneiro (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@article{carneiro1962, + author = {Carneiro, R. L.}, + title = {The Amahuaca Indians}, + journal = {Explorers Journal}, + volume = {40}, + pages = {iv, 28-37}, + year = {1962}, + key = {Carneiro (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964a, + author = {Carneiro, R. L.}, + title = {Shifting Cultivation Among the Amahuaca}, + journal = {Niedersächsisches Landesmuseum, Völkerkundliche Abhandlungen}, + address = {Hannover}, + volume = {1}, + pages = {9-18}, + year = {1964}, + key = {Carneiro (1964a)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964b, + author = {Carneiro, R. L.}, + title = {The Amahuaca and the Spirit World}, + journal = {Ethnology}, + volume = {3}, + pages = {6-11}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Pano-Takana_amahuaca02}, + key = {Carneiro (1964b)}, + lgcode = {Amahuaca [amah1246]} +} +@misc{carneiro1968, + author = {Carneiro, R. L.}, + title = {Hunting and Hunting Magic Among the Amahuaca}, + year = {1968}, + howpublished = {Manuscript}, + key = {Carneiro (1968)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiroanddole1957, + author = {Carneiro, R., and G. E. Dole.}, + title = {La cultura de los indios Kuikurus}, + journal = {Runa: Archivo para las Ciencias del Hombre}, + address = {Buenos Aires}, + volume = {8}, + number = {ii}, + pages = {169-202}, + year = {1957}, + key = {Carneiro and Dole (1957)}, + lgcode = {Kuikuru [kuik1246]} +} +@book{carobaroja1944, + author = {Caro Baroja, J.}, + title = {La vida rural en Vera de Bidasoa}, + address = {Madrid}, + year = {1944}, + key = {Caro Baroja (1944)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carobaroja1955, + author = {Caro Baroja, J.}, + title = {Estudios saharianos}, + publisher = {Madrid: Júcar}, + address = {Madrid}, + year = {1955}, + glottolog_ref = {eballiso2009:5306}, + key = {Caro Baroja (1955)}, + lgcode = {Delim [hass1238], Regeibat [hass1238]} +} +@book{carobaroja1958, + author = {Caro Baroja, J.}, + title = {Los Vascos. 2nd Edition}, + address = {Madrid}, + year = {1958}, + key = {Caro Baroja (1958)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carrapiett1909, + author = {Carrapiett, W. J. S.}, + title = {The Salons}, + address = {Rangoon}, + year = {1909}, + key = {Carrapiett (1909)}, + lgcode = {Moken [moke1242]} +} +@book{carrasco1959, + author = {Carrasco, P.}, + title = {Land and Polity in Tibet}, + address = {Seattle}, + year = {1959}, + key = {Carrasco (1959)}, + lgcode = {Central Tibetans [dbus1238]} +} +@incollection{carrasco1967, + author = {Carrasco, Pedro.}, + editor = {Cohen, Ronald, and John Middleton}, + title = {The Civil Religious Hierarchy in Meso American Communities: Pre-Spanish Background and Colonial Development}, + booktitle = {Comparative Political Systems: Studies in the Politics of Pre-Industrial Societies}, + publisher = {Natural History Press}, + address = {Garden City}, + pages = {397-414}, + year = {1967}, + key = {Carrasco (1967)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@article{cartry1966, + author = {Cartry, M.}, + title = {Clans, lgnages et groupements familiaux chez les Gourmantche}, + journal = {L'Homme}, + volume = {6}, + pages = {ii, 53-81}, + year = {1966}, + key = {Cartry (1966)}, + lgcode = {Gurma [gour1243]} +} +@book{casilis1859, + author = {Casilis, E. A.}, + title = {Les Bassoutos}, + address = {Paris}, + year = {1859}, + key = {Casilis (1859)}, + lgcode = {Sotho [sout2807]} +} +@article{castagn1930, + author = {Castagn‚, J.}, + title = {Magie et exorcisme chez les Kazak-Kirghizes}, + journal = {Revue des Etudes Islamiques}, + volume = {4}, + pages = {53-156}, + year = {1930}, + key = {Castagn (1930)}, + lgcode = {Kazakh [kaza1248]} +} +@article{castagne1929, + author = {Castagne, J.}, + title = {Le droit familial des montagnards du Caucase et des Tcherkesses en particulier}, + journal = {Rev. Et. Islamiques}, + volume = {3}, + pages = {245-275}, + year = {1929}, + key = {Castagne (1929)}, + lgcode = {Cherkess [kaba1278]} +} +@book{castetterandbell1942, + author = {Castetter, E. F. and W. H. Bell.}, + title = {Pima and Papago Indian Agriculture}, + address = {Albuquerque}, + series = {University of New Mexico Inter-American Studies}, + volume = {1}, + pages = {1-245}, + year = {1942}, + key = {Castetter and Bell (1942)}, + lgcode = {Pima [akim1239], Tohono O'odham [toho1246]} +} +@book{castetterandbell1951, + author = {Castetter, Edward F., and Willis H. Bell}, + title = {Yuman Indian Agriculture. University of New Mexico Press: Albuquerque, N. Mex.}, + year = {1951}, + key = {Castetter and Bell (1951)}, + lgcode = {Mojave [moha1256], Quechan [quec1382]} +} +@article{castetterandopler1936, + author = {Castetter, E. F., and M. E. Opler.}, + title = {The Ethnobiology of the Chiricahua and Mescalero Apache}, + journal = {Univ. New Mex. Bull., Biol. Ser.}, + volume = {4}, + pages = {v, 3-63}, + year = {1936}, + key = {Castetter and Opler (1936)}, + lgcode = {Mescalero [mesc1238]} +} +@article{castinel1945, + author = {Castinel, J.}, + title = {Le mariage et la mort dans la region du Yanga}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {7}, + pages = {148-155}, + year = {1945}, + key = {Castinel (1945)}, + lgcode = {Gurma [gour1243]} +} +@book{castren1853, + author = {Castren, M. A.}, + title = {Reiseerrinnerungen aus den Jahren 1838-1844}, + address = {St. Petersburg}, + year = {1853}, + key = {Castren (1853)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{cauneille1950, + author = {Cauneille, A.}, + title = {Les nomades Regueibat}, + journal = {Trav. Inst. Rech. Sahar. Univ. Alger}, + volume = {6}, + pages = {83-100}, + year = {1950}, + key = {Cauneille (1950)}, + lgcode = {Regeibat [hass1238]} +} +@inbook{cavallisforza1986a, + author = {Cavalli-Sforza, L. L.}, + editor = {L. L. Cavalli-Sforza}, + title = {Demographic Data}, + booktitle = {African pygmies}, + publisher = {Academic Press}, + address = {New York}, + pages = {23-45}, + year = {1986}, + glottolog_ref = {eballiso2009:32705}, + key = {Cavalli-Sforza (1986a)}, + lgcode = {Aka [bamb1264], Baka [baka1272]} +} +@book{cavallisforza1986c, + editor = {Cavalli-Sforza, L. L.}, + title = {African Pygmies}, + publisher = {Academic Press}, + address = {New York}, + year = {1986}, + key = {Cavalli-Sforza (1986c)}, + lgcode = {Baka [baka1272], Mbuti [bila1255]} +} +@article{cawthorne1844, + author = {Cawthorne, W. A.}, + title = {Rough Notes on the Manners and Customs of the Natives}, + journal = {Reprinted in Proceedings of the Royal Geographical Society of South Australia}, + volume = {27}, + pages = {47-77}, + year = {1844}, + glottolog_ref = {hh:e:Cawthorne:Manners-Customs}, + key = {Cawthorne (1844)}, + lgcode = {Kaurna [kaur1267]} +} +@book{cecchi188587, + author = {Cecchi, A.}, + title = {Da Zeila alle frontiere del Caffa. 3V}, + address = {Roma}, + year = {1885-87}, + key = {Cecchi (1885-87)}, + lgcode = {Gibe [west2721]} +} +@article{celerier1927, + author = {Celerier, J.}, + title = {La transhumance dans le Moyen-Atlas}, + journal = {Hesperis}, + volume = {7}, + pages = {53-68}, + year = {1927}, + key = {Celerier (1927)}, + lgcode = {Beraber [cent2194]} +} +@book{cerulli193233, + author = {Cerulli, E.}, + title = {Etiopia occidentale. 2V}, + address = {Roma}, + year = {1932-33}, + key = {Cerulli (1932-33)}, + lgcode = {Gibe [west2721], Kafa [kafa1242]} +} +@book{cerulli1956, + author = {Cerulli, E.}, + title = {Peoples of South-west Ethiopia and Its Borderland}, + publisher = {London: International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: North-Eastern Africa}, + volume = {III}, + pages = {148}, + year = {1956}, + glottolog_ref = {hh:he:Cerulli:SWEthiopia}, + key = {Cerulli (1956)}, + lgcode = {Anfillo [anfi1235], Arbore [arbo1245], Basketo [bask1236], Burji [burj1242], Darasa [gede1246], Galab [daas1238], Konso [kons1243], Mao [hozo1236], Sidama [sida1246], Suri [suri1267]} +} +@article{cesard193537, + author = {Cesard, E.}, + title = {Le Muhaya}, + journal = {Anthropos}, + volume = {20; 21; 22}, + pages = {75-106, 451-462; 489-508, 821-849; 15-60}, + year = {1935-37}, + key = {Cesard (1935-37)}, + lgcode = {Haya [haya1250]} +} +@book{chabot1950, + author = {Chabot, H. T.}, + title = {Verwantschap, stand en sexe in Zuid-Celebes}, + address = {Groningen}, + year = {1950}, + key = {Chabot (1950)}, + lgcode = {Macassarese [maka1311]} +} +@misc{chagnon1967, + author = {Chagnon, N. A.}, + title = {Yanomamo Social Organization and Warfare}, + year = {1967}, + howpublished = {Manuscript}, + key = {Chagnon (1967)}, + lgcode = {Yanomami [yano1261]} +} +@misc{chagnon1968a, + author = {Chagnon, N. A.}, + title = {Personal Fierceness and Headmen in Yanomamo Disputes}, + year = {1968}, + howpublished = {Manuscript}, + key = {Chagnon (1968a)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1968b, + author = {Chagnon, N. A.}, + title = {Yanomamo: The Fierce People}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + series = {Case studies in cultural anthropology}, + pages = {164}, + year = {1968}, + glottolog_ref = {hh:e:Chagnon:Yanomamo:1968}, + key = {Chagnon (1968b)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1971, + author = {Chagnon, N. A.}, + title = {Die soziale Organisation und die Kriege der Yanomamö-Indianer}, + year = {1971}, + key = {Chagnon (1971)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1974, + author = {Chagnon, N. A.}, + title = {Studying the Yanomamö}, + year = {1974}, + key = {Chagnon (1974)} +} +@book{chagnon1977, + author = {Chagnon, N. A.}, + title = {The Fierce People}, + year = {1977 (2nd ed.)}, + key = {Chagnon (1977)}, + lgcode = {Yanomami [yano1261]} +} +@article{chalmers1890, + author = {Chalmers, J.}, + title = {Toaripi and Koiari Tribes}, + journal = {Rep. Austr. Assoc. Adv. Sci.}, + volume = {2}, + pages = {ii, 311-323}, + year = {1890}, + key = {Chalmers (1890)}, + lgcode = {Koiari [gras1249]} +} +@incollection{chaloupka1981, + author = {Chaloupka, G.}, + editor = {T. Stokes}, + title = {The Traditional Movement of a Band of Aboriginals in Kakadu}, + booktitle = {Kakadu National Park Education Resources}, + publisher = {Australian National Parks and Wildlife Service}, + address = {Canberra}, + pages = {162-171}, + year = {1981}, + key = {Chaloupka (1981)}, + lgcode = {Kaakutju [gaga1251]} +} +@article{chamberlain1892, + author = {Chamberlain, A. F.}, + title = {Report on the Kootenay Indians of South-Eastern British Columbia}, + journal = {Reports of the British Association forthe Advancement of Science}, + volume = {62}, + pages = {539-617}, + year = {1892}, + key = {Chamberlain (1892)}, + lgcode = {Kutenai [kute1249], Shuswap [shus1248]} +} +@book{chamberlain1951, + author = {Chamberlain, Robert S.}, + title = {The Pre-Conquest Tribute and Service System of the Maya as Preparation for the Spanish Repartimiento-Ecomienda in Yucatan}, + series = {University of Miami Hispanic-American Studies}, + number = {10}, + year = {1951}, + key = {Chamberlain (1951)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{chance1966, + author = {Chance, N. A.}, + title = {The Eskimo of North Alaska}, + address = {New York}, + year = {1966}, + key = {Chance (1966)}, + lgcode = {Tareumiut [nort2944]} +} +@article{chapelle1929, + author = {Chapelle, F. de la}, + title = {Une cite de l'Quad Dra' sous le protectorat des nomades}, + journal = {Hesperis}, + volume = {9}, + pages = {29-42}, + year = {1929}, + key = {Chapelle (1929)}, + lgcode = {Drawa [susi1238]} +} +@book{chapelle1957a, + author = {Chapelle, J.}, + title = {Nomades noirs du Sahara}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957a)}, + lgcode = {Teda [teda1241]} +} +@book{chapelle1957b, + author = {Chapelle, J.}, + title = {Nomades noirs du Soudan}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957b)}, + lgcode = {Daza [daza1242]} +} +@book{chapman1982, + author = {Chapman, A.}, + title = {Drama and power in a hunting society: the Selk'nam of Tierra del Fuego}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1982}, + glottolog_ref = {fabreall2009ann:Chon_selknam24}, + key = {Chapman (1982)}, + lgcode = {Ona [onaa1245]} +} +@article{chard1961, + author = {Chard, C. S.}, + title = {Sternberg's Materials on the Sexual Life of the Gilyak}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {10}, + pages = {13-23}, + year = {1961}, + key = {Chard (1961)}, + lgcode = {Nivkh [gily1242]} +} +@article{chard1963, + author = {Chard, C. S.}, + title = {The Nganasan—Wild Reindeer Hunters of the Taimyr Peninsula}, + journal = {Arctic Anthropology}, + volume = {1}, + pages = {105-121}, + year = {1963}, + key = {Chard (1963)}, + lgcode = {Nganasan [ngan1291]} +} +@article{charles1911, + author = {Charles, L.}, + title = {Les Lobi}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {202-220}, + year = {1911}, + glottolog_ref = {eballiso2009:45348}, + key = {Charles (1911)}, + lgcode = {Lobi [lobi1245]} +} +@article{charsleyandmckenny1974, + author = {Charsley, S. R., and M. G. McKenny.}, + title = {The social structure of Nyakyusa}, + journal = {Africa}, + volume = {44}, + pages = {422-424}, + year = {1974}, + key = {Charsley and McKenny (1974)}, + lgcode = {Nyakyusa [nyak1261]} +} +@article{chatterjeeanddas1927, + author = {Chatterjee, A., and T. Das.}, + title = {The Hos of Seraikella}, + journal = {Anth. Pap. Univ. Calcutta, n. s.}, + volume = {1}, + pages = {1-94}, + year = {1927}, + key = {Chatterjee and Das (1927)}, + lgcode = {Ho [hooo1248]} +} +@article{chattopadhyay1941, + author = {Chattopadhyay, K. P.}, + title = {Khasi Kinship and Social Organization}, + journal = {Univ. Calcutta Anth. Papers, n. s.}, + publisher = {(Calcutta University anthropological papers, n. s. 6.) Calcutta: Calcutta University}, + address = {(Calcutta University anthropological papers, n. s. 6.) Calcutta}, + volume = {6}, + pages = {1-39}, + year = {1941}, + glottolog_ref = {stampe:160}, + key = {Chattopadhyay (1941)}, + lgcode = {Khasi [khas1269]} +} +@book{cheremin1909, + author = {Cheremin, N. A.}, + title = {Ozeryj kraj (The Lake Region)}, + address = {Moscow}, + year = {1909}, + key = {Cheremin (1909)}, + lgcode = {Karelians [livv1243]} +} +@article{cheron1913, + author = {Cheron, G.}, + title = {Les Minianka}, + journal = {Rev. Ethnog. Sociol.}, + volume = {4}, + pages = {165-186}, + year = {1913}, + key = {Cheron (1913)}, + lgcode = {Minianka [mama1271]} +} +@book{cheshihinvetrinskijv1901, + author = {Cheshihin-VetrinskijV,. E.}, + title = {Sredi latyshej (Among the Latvians)}, + address = {Moscow}, + year = {1901}, + key = {Cheshihin-VetrinskijV (1901)}, + lgcode = {Latvians [latv1249]} +} +@article{chevalier1908, + author = {Chevalier, A.}, + title = {Les Massifs montagneux du rd-ouest de la Cote d'Ivoire}, + journal = {Geographie}, + volume = {20}, + pages = {207-224}, + year = {1908}, + key = {Chevalier (1908)}, + lgcode = {Dan [gwee1242]} +} +@article{chevalier1909, + author = {Chevalier, A.}, + title = {La region des sources du Niger}, + journal = {Geographie}, + volume = {19}, + pages = {337-352}, + year = {1909}, + key = {Chevalier (1909)}, + lgcode = {Koranko [kura1250]} +} +@book{chien1967, + author = {Ch'ien, Tuan-sheng.}, + title = {The Government & Politics of China}, + address = {Cambridge}, + year = {1967}, + key = {Ch'ien (1967)}, + lgcode = {Chekiang [wuch1236]} +} +@book{childs1949, + author = {Childs, G. M.}, + title = {Umbundu Kinship and Character}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1949}, + glottolog_ref = {eballiso2009:9479}, + key = {Childs (1949)}, + lgcode = {Mbundu [umbu1257]} +} +@article{chisholm1910, + author = {Chisholm, J. A.}, + title = {Notes on the Manners and Customs of the Winamwanga and Wiwa}, + journal = {Journ. Afr. Soc.}, + volume = {9}, + pages = {360-387}, + year = {1910}, + glottolog_ref = {eballiso2009:35038}, + key = {Chisholm (1910)}, + lgcode = {Iwa [nyam1275]} +} +@article{chiu1962, + author = {Chiu, C. C.}, + title = {The Kinship Organization of the Take-Bakha Bunun}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + volume = {13}, + pages = {192-193}, + year = {1962}, + key = {Chiu (1962)}, + lgcode = {Bunun [bunu1267]} +} +@book{chlenov1973, + author = {Chlenov, M. A.}, + title = {K harakteristike sotsial'noj organizatsii aziatskih eskimosov (Asian Eskimo Social Organization)}, + address = {Moscow}, + year = {1973}, + key = {Chlenov (1973)}, + lgcode = {Ungazikmit [cent2128]} +} +@book{chodzidlo1951, + author = {Chodzidlo, Teofil.}, + title = {Die Familie bei den Jakuten}, + address = {Yakut (Siberia)}, + series = {Interntionale Schriftenreihe fur Soziale und Politische Wissenschaften, Ethnologische Reihe}, + volume = {1}, + year = {1951}, + key = {Chodzidlo (1951)}, + lgcode = {Yakut [yaku1245]} +} +@article{chook1967, + author = {Chook, P. P.}, + title = {Kinship and Culture: Some Problems in Ndembu Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {23}, + pages = {74-89}, + year = {1967}, + key = {Chook (1967)}, + lgcode = {Ndembu [lund1266]} +} +@article{chou1902, + author = {Chou, Ta-Kuan.}, + editor = {P. Pelliot}, + title = {Mémoires sur les coutumes du Cambodge}, + journal = {Bulletin de l'Ecole Française d'Extreme-Orient}, + volume = {2}, + pages = {123-177}, + year = {1902}, + key = {Chou (1902)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@phdthesis{chowning1957, + author = {Chowning, A.}, + title = {Lakalai Society}, + school = {University of Pennsylvania}, + year = {1957}, + key = {Chowning (1957)}, + lgcode = {Lakalai [naka1262]} +} +@article{chowning1962, + author = {Chowning, A.}, + title = {Cognatic Kin Groups Among the Molima of Fergusson Island}, + journal = {Ethnology}, + volume = {1}, + pages = {92-101}, + year = {1962}, + key = {Chowning (1962)}, + lgcode = {Molima [moli1248]} +} +@book{christensen1954, + author = {Christensen, J. B.}, + title = {Double Descent Among the Fanti}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + series = {Behavioral science monographs}, + volume = {4}, + year = {1954}, + glottolog_ref = {eballiso2009:20218}, + key = {Christensen (1954)}, + lgcode = {Fante [fant1241]} +} +@article{christensen1963, + author = {Christensen, J. B.}, + title = {Utani: joking, sexual license and social obligations among the Luguru}, + journal = {American Anthropologist}, + volume = {65}, + pages = {1314-1327}, + year = {1963}, + glottolog_ref = {weball:4144}, + key = {Christensen (1963)}, + lgcode = {Luguru [lugu1238]} +} +@book{christie1909, + author = {Christie, Emerson B.}, + title = {The Subanuns of Sindangan Bay}, + publisher = {Manila: Bureau of Science, Division of Ethnology}, + address = {Manila}, + series = {Bureau of Science Division of Ethnology Publications}, + volume = {6}, + number = {1}, + pages = {152}, + year = {1909}, + glottolog_ref = {hh:ew:Christie:Subanuns}, + key = {Christie (1909)}, + lgcode = {Subanun [cent2089]} +} +@book{christy1894, + author = {Christy, M. (editor).}, + title = {The Voyages of Captain Luke Fox of Hull and Captain Thomas James of Bristol in Search of a Northwest Pas-sage, in 1631-1632}, + publisher = {Hakluyt Society}, + address = {London}, + year = {1894}, + key = {Christy (1894)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{ciezadeleon1554, + author = {Cieza de Leon, P. de.}, + title = {Parte primera de la cronica del Peru}, + address = {Antwerp}, + year = {1554}, + key = {Cieza de Leon (1554)}, + lgcode = {Inca [cusc1236]} +} +@article{clark1938, + author = {Clark, W. T.}, + title = {Manners, Customs and Beliefs of the Northern Bega}, + journal = {Sudan Notes and Records}, + volume = {21}, + pages = {1-30}, + year = {1938}, + key = {Clark (1938)}, + lgcode = {Amarar [amar1281], Bisharin [bish1251]} +} +@article{clark1951, + author = {Clark, J.D.}, + title = {Bushman Hunters of the Barotse Forests}, + journal = {Northern Rhodesia Journal}, + volume = {1}, + number = {3}, + pages = {56-65}, + year = {1951}, + key = {Clark (1951)}, + lgcode = {Hukwe [kxoe1243]} +} +@article{clark1963, + author = {Clark, J.}, + title = {Hunza in the Himalayas}, + journal = {Natural History}, + volume = {72}, + pages = {38-45}, + year = {1963}, + key = {Clark (1963)}, + lgcode = {Burusho [buru1296]} +} +@book{clark1974, + author = {Clark, A. McF.}, + title = {Koyukuk River Culture}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + number = {18}, + year = {1974}, + key = {Clark (1974)}, + lgcode = {Koyukon [koyu1237]} +} +@inproceedings{clark1975, + author = {Clark, A. McF.}, + editor = {A. McF.Clark}, + title = {Upper Koyukon River Koyukon Athapaskan Social Culture: An Overview}, + booktitle = {Northern Athapaskan Conference, 1971}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + volume = {1}, + number = {27}, + pages = {147-180}, + year = {1975}, + key = {Clark (1975)}, + lgcode = {Koyukon [koyu1237]} +} +@article{clastres1968, + author = {Clastres, P.}, + title = {Ethnographie des Indiens Guayaki}, + journal = {Journal of the Societe des Americanistes}, + volume = {57}, + pages = {8-61}, + year = {1968}, + key = {Clastres (1968)}, + lgcode = {Aché [ache1246]} +} +@incollection{clastres1972, + author = {Clastres, P.}, + editor = {M. Bicchieri}, + title = {The Guayaki}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {138-174}, + year = {1972}, + key = {Clastres (1972)}, + lgcode = {Aché [ache1246]} +} +@article{claus1911, + author = {Claus, H.}, + title = {Die Wagogo}, + journal = {Baessler-Arch., Beihefte}, + volume = {2}, + pages = {1-72}, + year = {1911}, + key = {Claus (1911)}, + lgcode = {Gogo [gogo1263]} +} +@article{clement1903, + author = {Clement, E.}, + title = {Ethographical notes on the Western Australian Aborigines}, + journal = {Internationales Archive for Ethnographic}, + volume = {16}, + number = {I/II}, + pages = {1-29}, + year = {1903}, + glottolog_ref = {ozbib:1161}, + key = {Clement (1903)}, + lgcode = {Kariyarra [kari1304]} +} +@article{clifford1936, + author = {Clifford, M.}, + title = {A Nigerian Chiefdom}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {66}, + pages = {393-436}, + year = {1936}, + key = {Clifford (1936)}, + lgcode = {Igala [igal1242]} +} +@article{clifford1944, + author = {Clifford, M.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Man}, + volume = {44}, + pages = {107-116}, + year = {1944}, + key = {Clifford (1944)}, + lgcode = {Basakomo [basa1282]} +} +@article{cline1936, + author = {Cline, W.}, + title = {Notes on the People of Siwah and El Garah in the Libyan Desert}, + journal = {Gen. Ser. Anth.}, + publisher = {Menasha WI: George Banta}, + volume = {4}, + pages = {1-64}, + year = {1936}, + glottolog_ref = {eballiso2009:15831}, + key = {Cline (1936)}, + lgcode = {Siwans [siwi1239]} +} +@book{cline1950, + author = {Cline, W.}, + title = {The Teda of Tibesti, Borkou, and Kawar in the Eastern Sahara}, + publisher = {Menasha, Wisconsin: George Banta}, + series = {Gen. Ser. Anth.}, + volume = {12}, + pages = {1-52}, + year = {1950}, + glottolog_ref = {hh:e:Cline:Teda}, + key = {Cline (1950)}, + lgcode = {Daza [daza1242], Teda [teda1241]} +} +@incollection{clineetal1938, + author = {Cline, W. and R. S. Commons and M. Mandelbaum and R. H. Post and. L. V. W. Walters}, + editor = {L. Spier}, + title = {The Sinkaietk or Southern Okanagon of Washington}, + booktitle = {Contributions from the Laboratory of Anthropology, No. 2}, + publisher = {George Banta}, + address = {Menasha, Wisconsin}, + series = {General Series in Anthro-pology}, + number = {6}, + pages = {1-262}, + year = {1938}, + key = {Cline et al. (1938)}, + lgcode = {Sinkaitk [sout2963], Syilx [sout2963]} +} +@book{clozel1896, + author = {Clozel, F.}, + title = {Les Bayas}, + address = {Paris}, + year = {1896}, + key = {Clozel (1896)}, + lgcode = {Gbaya [nort2775]} +} +@book{clozelandvillamur1902, + author = {Clozel, F. J., and R. Villamur.}, + title = {Les coutumes indigenes de la Cote d'Ivorie}, + publisher = {Paris: Augustin Challamel}, + address = {Paris}, + year = {1902}, + glottolog_ref = {eballiso2009:9396}, + key = {Clozel and Villamur (1902)}, + lgcode = {Abron [abro1238], Alagya [alla1248], Anyi [anyi1245], Avikam [avik1243], Bakwe [bakw1243], Baule [baou1238]} +} +@book{cobo189095, + author = {Cobo, B.}, + title = {Historia del Nuevo Mundo. 4v}, + address = {Seville}, + year = {1890-95}, + key = {Cobo (1890-95)}, + lgcode = {Inca [cusc1236]} +} +@article{codere1950, + author = {Codere, H.}, + title = {Fighting with Property}, + journal = {Monog. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-143}, + year = {1950}, + key = {Codere (1950)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@book{codrington1891, + author = {Codrington, R. H.}, + title = {The Melanesians}, + address = {Oxford}, + year = {1891}, + key = {Codrington (1891)}, + lgcode = {Mota [mota1237]} +} +@book{codrington1926, + author = {Codrington, H. W.}, + title = {A Short History of Ceylon}, + publisher = {MacMillan and Co.}, + address = {London}, + year = {1926}, + key = {Codrington (1926)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{coedes1968, + author = {Coedes, G.}, + editor = {W. F. Vella}, + title = {The Indianized States of Southeast Asia}, + address = {Honolulu}, + year = {1968}, + key = {Coedes (1968)}, + lgcode = {Khmer [cent1989]} +} +@phdthesis{cohen1960, + author = {Cohen, R.}, + title = {The structure of Kanuri society}, + school = {University of Wisconsin}, + year = {1960}, + glottolog_ref = {eballiso2009:47830}, + key = {Cohen (1960)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohen1961, + author = {Cohen, R.}, + title = {Marriage Instability Among the Kanuri of Northern Nigeria}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1231-1249}, + year = {1961}, + key = {Cohen (1961)}, + lgcode = {Kanuri [cent2050]} +} +@book{cohen1967, + author = {Cohen, R.}, + title = {The Kanuri of Bornu}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + year = {1967}, + glottolog_ref = {eballiso2009:47833}, + key = {Cohen (1967)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohn1958, + author = {Cohn, B. S.}, + title = {Changing Traditions of a Low Caste}, + journal = {Journal of American Folklore}, + volume = {71}, + pages = {412-421}, + year = {1958}, + key = {Cohn (1958)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@misc{cohnnd, + author = {Cohn, B. S.}, + title = {Chamar Family in a North Indian Village}, + howpublished = {Manuscript}, + key = {Cohn (nd)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{cole1913, + author = {Cole, F. C.}, + title = {The Wild Tribes of the Davao District}, + journal = {Field Mus. Nat. Hist. Anth. Ser.}, + volume = {12}, + pages = {48-203}, + year = {1913}, + key = {Cole (1913)}, + lgcode = {Bilaan [koro1310]} +} +@article{coll1903, + author = {Coll, C. van.}, + title = {Gegevens over land en volk van Suriname}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {55}, + pages = {451-640}, + year = {1903}, + glottolog_ref = {fabreall2009ann:2116}, + key = {Coll (1903)}, + lgcode = {Lokono [araw1276]} +} +@book{colle1913, + author = {Colle, P.}, + title = {Les Baluba}, + address = {Bruxelles}, + series = {Coll. Monog. Ethnog.}, + volume = {10-11}, + year = {1913}, + key = {Colle (1913)}, + lgcode = {Buye [buyu1239]} +} +@article{colle1921, + author = {Colle, P.}, + title = {L'organisation politique des Bashi}, + journal = {Congo}, + volume = {2}, + pages = {657-684}, + year = {1921}, + glottolog_ref = {eballiso2009:5}, + key = {Colle (1921)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922a, + author = {Colle, P.}, + title = {Le mariage chez les Bashi}, + journal = {Congo}, + volume = {3}, + pages = {ii, 535-551}, + year = {1922}, + key = {Colle (1922a)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922b, + author = {Colle, P.}, + title = {Les clans au pays des Bashi}, + journal = {Congo}, + volume = {3}, + pages = {i, 337-352}, + year = {1922}, + key = {Colle (1922b)}, + lgcode = {Bashi [shii1238]} +} +@book{collierandthalman1991, + author = {Collier, E. T. and S. B. Thalman}, + title = {Interviews with Tom Smith and Maria Copa: Isabel Kelley's Ethnographic Notes on the Coast Miwok Indians of Marin and Southern Sonoma Counties California}, + series = {MAPOM Occasional Papers}, + volume = {6}, + year = {1991}, + key = {Collier and Thalman (1991)}, + lgcode = {Coast Miwok [coas1301]} +} +@book{collinder1949, + author = {Collinder, B.}, + title = {The Lapps}, + address = {Princeton}, + year = {1949}, + key = {Collinder (1949)}, + lgcode = {Sami [nort2671]} +} +@article{colliverandwoolston1975, + author = {Colliver, F. S., and F. P. Woolston.}, + title = {The Aborigines of Stradbroke Island}, + journal = {Proceedings of the Royal Society of Queensland}, + volume = {86}, + number = {16}, + pages = {91-104}, + year = {1975}, + glottolog_ref = {ozbib:1211}, + key = {Colliver and Woolston (1975)}, + lgcode = {Undanbi [waka1274]} +} +@book{colson1950, + author = {Colson, E.}, + title = {Marriage and the Family Among the Plateau Tonga of Northern Rhodesia}, + address = {New York}, + year = {1950}, + key = {Colson (1950)}, + lgcode = {Plateau Tonga [tong1318]} +} +@incollection{colson1951, + author = {Colson, E.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Plateau Tonga of Northern Rhodesia}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {94-162}, + year = {1951}, + glottolog_ref = {eballiso2009:40613}, + key = {Colson (1951)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{colson1953, + author = {Colson, E.}, + title = {The Makah Indians}, + address = {Minneapolis}, + year = {1953}, + key = {Colson (1953)}, + lgcode = {Makah [maka1318]} +} +@book{colson1960, + author = {Colson, E.}, + title = {The Social Organization of the Gwembe Tonga}, + publisher = {Manchester Univ. Press}, + address = {New York}, + series = {Kariba studies serie}, + volume = {riba studies series}, + year = {1960}, + glottolog_ref = {eballiso2009:27121}, + key = {Colson (1960)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{condominas1957, + author = {Condominas, G.}, + title = {Nous avons mange la foret}, + address = {Paris}, + year = {1957}, + key = {Condominas (1957)}, + lgcode = {Mnong Gar [east2333]} +} +@article{condominas1960, + author = {Condominas, G.}, + title = {Les Mnong Gar du centre Viet-Nam}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {15-23}, + year = {1960}, + key = {Condominas (1960)}, + lgcode = {Mnong Gar [east2333]} +} +@phdthesis{conklin1954, + author = {Conklin, H. C.}, + title = {The Relation of Hanunoo Culture to the Plant World}, + school = {Yale University}, + year = {1954}, + howpublished = {Unpublished}, + key = {Conklin (1954)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1955, + author = {Conklin, Harold C. IV-5.}, + title = {Hanunoo color catgories}, + journal = {Southwestern Journal of Anthropology}, + volume = {11}, + pages = {339-344}, + year = {1955}, + key = {Conklin (1955)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1957, + author = {Conklin, H. C.}, + title = {Hanunoo Agriculture}, + journal = {United Nations Food and Agric. Org. Forestry Devel. Pap.}, + volume = {12}, + pages = {1-209}, + year = {1957}, + key = {Conklin (1957)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conolly1897, + author = {Conolly, R. M. V-6.}, + title = {Social life in Fanti-land}, + journal = {Anthropological Institute of Great Britain and Ireland, Journal}, + volume = {26}, + pages = {128-53}, + year = {1897}, + key = {Conolly (1897)}, + lgcode = {Fante [fant1241]} +} +@article{conradt1902, + author = {Conradt, L.}, + title = {Die Ngumba in Sudkamerun}, + journal = {Globus}, + volume = {81}, + pages = {333-337, 350-354, 369-372}, + year = {1902}, + glottolog_ref = {eballiso2009:724}, + key = {Conradt (1902)}, + lgcode = {Ngumba [kwas1243]} +} +@book{contenau1954, + author = {Contenau, G.}, + title = {Everyday Life in Babylon and Assyria}, + address = {New York}, + year = {1954}, + key = {Contenau (1954)}, + lgcode = {Babylonians [akka1240]} +} +@article{conzemius1932, + author = {Conzemius, E.}, + title = {Ethnographic Survey of the Miskito and Sumu Indians of Honduras and Nicaragua}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington: BAE 106}, + volume = {106}, + pages = {1-191}, + year = {1932}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito027}, + key = {Conzemius (1932)}, + lgcode = {Miskito [misk1235]} +} +@book{cook1785, + author = {Cook, J.}, + title = {A Voyage to the Pacific Ocean}, + address = {London}, + year = {1785}, + key = {Cook (1785)}, + lgcode = {Aleut [east2533]} +} +@article{cook1900, + author = {Cook, A. C.}, + title = {The Aborigines of the Canary Islands}, + journal = {American Anthropologist}, + volume = {2}, + pages = {451-493}, + year = {1900}, + key = {Cook (1900)}, + lgcode = {Guanche [guan1277]} +} +@article{cook1908, + author = {Cook, W. A.}, + title = {The Bororo Indians of Matto Grosso, Brazil}, + journal = {Smithsonian Miscellaneous Collections}, + volume = {50}, + pages = {48-62}, + year = {1908}, + key = {Cook (1908)}, + lgcode = {Bororo [boro1282]} +} +@book{cook1931, + author = {Cook. P. A. W.}, + title = {Social Organisation and Ceremonial Institutions of the Bomvana}, + publisher = {Cape Town: J.C. Juta}, + address = {Cape Town}, + year = {1931}, + glottolog_ref = {eballiso2009:5015}, + key = {Cook (1931)}, + lgcode = {Bomvana [bomv1238]} +} +@article{cook1942, + author = {Cook, P. IV-6.}, + title = {The application of the Rorschach test to a Samoan group}, + journal = {Rorschach Research Exchange}, + volume = {6}, + pages = {51-60}, + year = {1942}, + key = {Cook (1942)}, + lgcode = {American Samoans [samo1305]} +} +@article{cook1955, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the San Joaquin Valley, California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {2}, + pages = {31-81}, + year = {1955}, + key = {Cook (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Lake Miwok [lake1258], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{cook1956, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the North Coast of California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {3}, + year = {1956}, + key = {Cook (1956)}, + lgcode = {Clear Lake Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kashaya Pomo [kash1280], Mattole-Bear River [matt1238], Northern Pomo [nort2966], Sinkyone [wail1244], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Yuki [yuki1243], Yurok [yuro1248]} +} +@book{cookandheizer1965, + author = {Cook, S. F., and R. F. Heizer}, + title = {The Quantitative Approach to the Relation between Population and Settlement Size}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Contributions of the University of the California Archaeological Research Facility}, + number = {64}, + year = {1965}, + key = {Cook and Heizer (1965)}, + lgcode = {Central Sierra Miwok [cent2140], Chumash [cruz1243], Karuk [karo1304], Maidu [nort2952], Nisenan [nise1244], Shasta [shas1239], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{cooley1962a, + author = {Cooley, F. L.}, + title = {Ambonese Adat}, + journal = {Yale Univ. Asia Studies, Cult. Rep. Ser.}, + volume = {10}, + pages = {1-94}, + year = {1962}, + key = {Cooley (1962a)}, + lgcode = {Ambonese [ambo1250]} +} +@article{cooley1962b, + author = {Cooley, F. L.}, + title = {Ambonese Kin Groups}, + journal = {Ethnology}, + volume = {1}, + pages = {102-112}, + year = {1962}, + key = {Cooley (1962b)}, + lgcode = {Ambonese [ambo1250]} +} +@article{coon1931, + author = {Coon, C. S.}, + title = {Tribes of the Rif}, + journal = {Harvard African Studies}, + publisher = {Cambridge MA: Harvard Univ. Press}, + address = {Cambridge MA}, + series = {Harvard African studies}, + volume = {9}, + pages = {1-417}, + year = {1931}, + glottolog_ref = {eballiso2009:6585}, + key = {Coon (1931)}, + lgcode = {Riffians [tari1263]} +} +@book{coon1939, + author = {Coon, C. S.}, + title = {Races of Europe}, + publisher = {Macmillan and Co.}, + address = {New York}, + year = {1939}, + key = {Coon (1939)}, + lgcode = {Dutch [dutc1256]} +} +@incollection{coon1949, + author = {Coon, Carleton S.}, + editor = {Robert J. Kerner}, + title = {Racial history}, + booktitle = {Yugoslavia}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1949}, + key = {Coon (1949)}, + lgcode = {Serbs [serb1264]} +} +@article{coon1950, + author = {Coon, C. S.}, + title = {The Mountain of Giants}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {23}, + pages = {iii, 1-105}, + year = {1950}, + key = {Coon (1950)}, + lgcode = {Gheg [gheg1238]} +} +@article{cooper1917, + author = {Cooper, J. M.}, + title = {Analytical and Critical Bibliography of the Tribes of Tierra del Fuego and Adjacent Territory}, + journal = {Bull. Bur. Amer. Ethn.}, + address = {Washington}, + volume = {63}, + pages = {1-233}, + year = {1917}, + glottolog_ref = {fabreall2009ann:2223}, + key = {Cooper (1917)}, + lgcode = {Alacaluf [qawa1238], Yahgan [yama1264]} +} +@incollection{cooper1946a, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Yahgan}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {81-106}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946a)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{cooper1946b, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Ona}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {107-125}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946b)}, + lgcode = {Ona [onaa1245]} +} +@incollection{cooper1946c, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Patagonian and Pampean hunters}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {127-168}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946c)}, + lgcode = {Tehuelche [tehu1242]} +} +@incollection{cooper1946d, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Chono}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {47-55}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + glottolog_ref = {fabreall2009ann:Chon25}, + key = {Cooper (1946d)}, + lgcode = {Chono [chon1248]} +} +@article{cooper1956, + author = {Cooper, J. M.}, + title = {The Gros Ventre of Montana: Religion and Ritual}, + journal = {Catholic University of America Anthropological Series}, + volume = {16}, + pages = {1-491}, + year = {1956}, + key = {Cooper (1956)}, + lgcode = {Gros Ventre [gros1243]} +} +@misc{cooper1991, + author = {Cooper, Z.}, + title = {Abandoned Onge Encampments and Their Relevance in Understanding the Archaeological Record in the Andaman Islands}, + year = {1991}, + howpublished = {Prepared for the Symposium on Living Traditions: South Asian Ethnoarchaeology, Cambridge, U.K., September 23-25. Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Cooper (1991)}, + lgcode = {Onge [onge1236]} +} +@book{copway1851, + author = {Copway, G.}, + title = {The Traditional History and Characteristic Sketches of the Ojibway Nation}, + publisher = {Benjamin B. Busey}, + address = {Boston}, + year = {1851}, + key = {Copway (1851)} +} +@article{corbusier1886, + author = {Corbusier, Wm. F.}, + title = {The Apache-Yumas and Apache-Mojaves}, + journal = {American Antiquarian}, + volume = {8}, + pages = {276-284, 325-339}, + year = {1886}, + key = {Corbusier (1886)}, + lgcode = {Yavapai [yava1252]} +} +@article{corfield1938, + author = {Corfield, F. D.}, + title = {The Koma}, + journal = {Sudan Notes and Records}, + volume = {25}, + pages = {123-165}, + year = {1938}, + glottolog_ref = {weball:4554}, + key = {Corfield (1938)}, + lgcode = {Koma [komo1258]} +} +@article{cornell1964, + author = {Cornell, J. B.}, + title = {Ainu Assimilation and Cultural Extinction: Acculturation Policy in Hokkaido}, + journal = {Ethnology}, + volume = {3}, + pages = {287-304}, + year = {1964}, + key = {Cornell (1964)}, + lgcode = {Ainu [ainu1240]} +} +@book{cortier1908, + author = {Cortier, M.}, + title = {D'une rive a l'autre du Soudan}, + address = {Paris}, + year = {1908}, + key = {Cortier (1908)}, + lgcode = {Ifora [tadh1242]} +} +@book{cory1953, + author = {Cory, H.}, + title = {Sukuma Law and Custom}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1953}, + glottolog_ref = {eballiso2009:6430}, + key = {Cory (1953)}, + lgcode = {Sukuma [suku1261]} +} +@book{coryandhartnoll1945, + author = {Cory, H., and M. M. Hartnoll.}, + title = {Customary Law of the Haya Tribe}, + address = {London}, + year = {1945}, + key = {Cory and Hartnoll (1945)}, + lgcode = {Haya [haya1250]} +} +@article{cotlarciuc1913, + author = {Cotlarciuc, N.}, + title = {Beitraege zum lebenden Ehe- und Familienrecht der Rumaenen}, + journal = {Zeits. Oesterr. Volkskunde}, + volume = {19}, + pages = {16-32, 93-104}, + year = {1913}, + key = {Cotlarciuc (1913)}, + lgcode = {Romanians [baya1255]} +} +@book{coudreau1893, + author = {Coudreau, H. A.}, + title = {Chez nos Indiens}, + address = {Paris}, + year = {1893}, + key = {Coudreau (1893)}, + lgcode = {Rucuyen [waya1269]} +} +@book{coughlin1950, + author = {Coughlin, R. J.}, + title = {The Position of Women in Vietnam}, + address = {New Haven}, + year = {1950}, + key = {Coughlin (1950)}, + lgcode = {Annamese [viet1252]} +} +@incollection{coughlin1965, + author = {Coughlin, R. J.}, + editor = {D. V. Hart, et al.}, + title = {Pregnancy and Childbirth in Vietnam}, + booktitle = {Southeast Asian Birth Customs: Three Studies in Human Reproduction}, + address = {New Haven}, + year = {1965}, + key = {Coughlin (1965)}, + lgcode = {Annamese [viet1252]} +} +@book{courlander1960, + author = {Courlander, H.}, + title = {The Drum and the Hoe: Life and Lore of the Haitian People}, + address = {Berkeley and Los Angeles}, + year = {1960}, + key = {Courlander (1960)}, + lgcode = {Haitians [hait1244]} +} +@article{coutouly1920, + author = {Coutouly, F. de.}, + title = {Quelques coutumes des Kroumen du Bas-Cavally}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {3}, + pages = {79-98}, + year = {1920}, + key = {Coutouly (1920)}, + lgcode = {Bakwe [bakw1243]} +} +@article{coutouly1923, + author = {Coutouly, F. de.}, + title = {Les populations du cercle de Dori}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {6}, + pages = {269-301, 471-496, 637-671}, + year = {1923}, + key = {Coutouly (1923)}, + lgcode = {Liptako [west2454], Udalan Tuareg [timb1263]} +} +@book{covarrubias1937, + author = {Covarrubias, Miguel.}, + title = {Island of Bali}, + address = {New York}, + year = {1937}, + key = {Covarrubias (1937)}, + lgcode = {Bali Nyonga [mung1266], Balinese [bali1278]} +} +@article{cowan1946, + author = {Cowan, F. H.}, + title = {Notas etnograficas sobre los Mazateco de Oaxaca}, + journal = {America Indigena}, + volume = {6}, + pages = {27-39}, + year = {1946}, + glottolog_ref = {sil16:10450}, + key = {Cowan (1946)}, + lgcode = {Mazateco [huau1238]} +} +@article{cowan1947, + author = {Cowan, F. H.}, + title = {Linguistic and Ethnological Aspects of Mazateco Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {3}, + pages = {247-256}, + year = {1947}, + glottolog_ref = {sil16:10451}, + key = {Cowan (1947)}, + lgcode = {Mazateco [huau1238]} +} +@book{coxe1804, + author = {Coxe, W.}, + title = {Account of Russian Discoveries Between Asia and America}, + address = {London}, + year = {1804}, + key = {Coxe (1804)}, + lgcode = {Aleut [east2533]} +} +@article{coxhead1914, + author = {Coxhead, J. C. C.}, + title = {The Native Tribes of Northeastern Rhodesia}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + publisher = {London: Royal Anthropological Inst. of Great Britain and Ireland (RAI)}, + address = {London}, + series = {Occasional papers}, + volume = {5}, + pages = {43-57}, + year = {1914}, + glottolog_ref = {eballiso2009:31863}, + key = {Coxhead (1914)}, + lgcode = {Iwa [nyam1275]} +} +@article{crabbeck1943, + author = {Crabbeck, G.}, + title = {Les Gbwaka}, + journal = {Bull. Juris. Indig. Droit Cout. Congol.}, + volume = {11}, + pages = {85-108}, + year = {1943}, + key = {Crabbeck (1943)}, + lgcode = {Bwaka [ngba1284]} +} +@article{craig1967, + author = {Craig, A. K.}, + title = {Brief Ethnology of the Campa Indians}, + journal = {America Indigena}, + volume = {27}, + pages = {223-235}, + year = {1967}, + key = {Craig (1967)}, + lgcode = {Asháninka [ajyi1238]} +} +@book{crane1955, + editor = {Crane, R. L.}, + title = {Jammu and Kashmir State}, + address = {New Haven}, + year = {1955}, + key = {Crane (1955)}, + lgcode = {Kashmiri [kash1277]} +} +@book{cranz1767, + author = {Cranz, D.}, + title = {The History of Greenland}, + publisher = {Brethren's Society}, + address = {London}, + volume = {1}, + year = {1767}, + key = {Cranz (1767)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{crazzolara1954, + author = {Crazzolara, J. P.}, + title = {Lwoo Clans}, + address = {Verona}, + year = {1954}, + key = {Crazzolara (1954)}, + lgcode = {Jur [luwo1239]} +} +@book{cremer192427, + author = {Cremer, J.}, + title = {Les Bobo}, + address = {Paris}, + volume = {2}, + year = {1924-27}, + key = {Cremer (1924-27)}, + lgcode = {Bobo [nort2819]} +} +@book{cresswell1969, + author = {Cresswell, R.}, + title = {Une communaut‚ rurale d'Irlande}, + address = {Paris}, + series = {Travaux et Memoires de I'Institut d'Ethnologie}, + volume = {74}, + pages = {1-571}, + year = {1969}, + key = {Cresswell (1969)}, + lgcode = {Irish [iris1253]} +} +@article{crocker1961, + author = {Crocker, W. H.}, + title = {The Canela since Nimuendaji}, + journal = {Anthropological Quarterly}, + volume = {23}, + pages = {69-84}, + year = {1961}, + key = {Crocker (1961)}, + lgcode = {Canela [cane1242]} +} +@article{crosby1937, + author = {Crosby, K. H.}, + title = {Polygamy in Mende Country}, + journal = {Africa}, + volume = {10}, + pages = {249-264}, + year = {1937}, + key = {Crosby (1937)}, + lgcode = {Mende [mend1266]} +} +@article{crosson1900, + author = {Crosson.}, + title = {L'thnographie de la Cote d'Ivoire}, + journal = {Rens. Colon. Doc. Com. Afr. Franc.}, + volume = {10}, + pages = {93-99, 111-118}, + year = {1900}, + key = {Crosson (1900)}, + lgcode = {Attie [atti1239]} +} +@incollection{crowandobley1981, + author = {Crow, J. R., and P. R. Obley}, + editor = {Helm, J.}, + title = {Han}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {506-513}, + year = {1981}, + glottolog_ref = {hh:e:CrowObley:Han}, + key = {Crow and Obley (1981)}, + lgcode = {Hän [hann1241]} +} +@book{cruise1824, + author = {Cruise, R. A.}, + title = {Journal of a Ten Month's Residence in New Zealand. 2nd edit.}, + address = {London}, + year = {1824}, + key = {Cruise (1824)}, + lgcode = {Māori [maor1246]} +} +@book{cuentas1929, + author = {Cuentas, J.A.}, + title = {Chucuito: Album grafico e historico}, + year = {1929}, + key = {Cuentas (1929)}, + lgcode = {Aymara [cent2142]} +} +@book{culbertson1952, + author = {Culbertson, T. A.}, + editor = {J. F. McDermott}, + title = {Journal of an Expedition to the Mauvaises Terres and the Upper Missouri in 1850}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {147}, + year = {1952}, + key = {Culbertson (1952)}, + lgcode = {Assiniboine [assi1247], Gros Ventre [gros1243], Teton [lako1247]} +} +@book{culshaw1949, + author = {Culshaw, W. J.}, + title = {Tribal Heritage. A Study of the Santals}, + publisher = {Lutterworth Press}, + address = {London}, + year = {1949}, + key = {Culshaw (1949)}, + lgcode = {Santal [sant1410]} +} +@book{culwickandculwick1935, + author = {Culwick, A. T., and G. M. Culwick}, + title = {Ubena of the Rivers}, + publisher = {London: George Allen & Unwin}, + address = {London}, + year = {1935}, + glottolog_ref = {eballiso2009:59285}, + key = {Culwick and Culwick (1935)}, + lgcode = {Bena [bena1262]} +} +@article{cummins1904, + author = {Cummins, S. L.}, + title = {Sub-Tribes of the Bahr-el-Ghazal Dinka}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {34}, + pages = {149-166}, + year = {1904}, + glottolog_ref = {eballiso2009:42978}, + key = {Cummins (1904)}, + lgcode = {Dinka [sout2832]} +} +@article{cunhataborde1950, + author = {Cunha Taborde, A. de.}, + title = {Apontamentos etnograficos sobre as Felupes de Suzana}, + journal = {Bol. Cultural Guine Port.}, + volume = {5}, + pages = {187-223}, + year = {1950}, + key = {Cunha Taborde (1950)}, + lgcode = {Diola [ejam1238]} +} +@article{cunnison1950, + author = {Cunnison, I. G.}, + title = {Kinship and Local Organization in the Luapula}, + journal = {Commun. Rhodes-Liv. Inst.}, + publisher = {Livingstone (Northern Rhodesia)}, + series = {Comm. from the Rhodes-Livingstone Inst.}, + volume = {5}, + pages = {1-32}, + year = {1950}, + glottolog_ref = {eballiso2009:5639}, + key = {Cunnison (1950)}, + lgcode = {Luapula [luun1238]} +} +@article{cunnison1954, + author = {Cunnison, I.}, + title = {The Humr and Their Land}, + journal = {Sudan Notes}, + volume = {35}, + pages = {ii, 50-68}, + year = {1954}, + key = {Cunnison (1954)}, + lgcode = {Messiria Humr [tama1331]} +} +@book{cunnison1959, + author = {Cunnison, I. G.}, + title = {The Luapula Peoples of Northern Rhodesia}, + address = {Manchester}, + year = {1959}, + key = {Cunnison (1959)}, + lgcode = {Luapula [luun1238]} +} +@book{curtis1908, + author = {Curtis, E. S.}, + title = {The Teton Sioux. The Yanktonai. The Assiniboin.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {3}, + pages = {3-118, 137-190}, + year = {1908}, + key = {Curtis (1908)}, + lgcode = {Teton [lako1247]} +} +@book{curtis1909, + author = {Curtis, E. S.}, + title = {The Apsaroke, or Crows. The Hidatsa.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {4}, + pages = {129-172, 180-196}, + year = {1909}, + key = {Curtis (1909)}, + lgcode = {Hidatsa [hida1246]} +} +@book{curtis1909b, + author = {Curtis, E. S.}, + title = {The Mandan. The Arikara. The Atsina.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {5}, + year = {1909}, + key = {Curtis (1909b)}, + lgcode = {Arikara [arik1262]} +} +@book{curtis1911, + author = {Curtis, E. S.}, + title = {The Nez Perces. Wallawalla. Umatilla. Cayuse. The Chinookan tribes.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {8}, + pages = {3-195}, + year = {1911}, + key = {Curtis (1911)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{curtis1912, + author = {Curtis, E. S.}, + title = {The Salishan tribes of the coast. The Chimakum and the Quilliute. The Willapa.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {9}, + pages = {19-195}, + year = {1912}, + key = {Curtis (1912)}, + lgcode = {Lummi [lumm1243]} +} +@misc{curtis1926, + author = {Curtis, Edward S.}, + title = {The Tiwa. The Keres}, + publisher = {Plimpton Press}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {16}, + pages = {65-248}, + year = {1926}, + key = {Curtis (1926)}, + lgcode = {Acoma [acom1246]}, + note = {Reprinted by Johnson Reprint, 1970} +} +@book{curtis1930, + author = {Curtis, E. S.}, + title = {The Indians of Oklahoma. The Wichita. The southern Cheyenne. The Oto. The Comanche. The Peyote cult.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {19}, + year = {1930}, + key = {Curtis (1930)}, + lgcode = {Wichita [wich1260]} +} +@article{cushing1882, + author = {Cushing, F. H.}, + title = {The Nation of the Willows}, + journal = {Atlantic Monthly}, + volume = {50}, + pages = {362-374, 541-559}, + year = {1882}, + key = {Cushing (1882)}, + lgcode = {Havasupai [hava1249]} +} +@book{cushing1896, + author = {Cushing, Frank}, + title = {Outlines of Zuni Creation Myths}, + series = {Annual Report of the Bureau of Ethnology}, + volume = {13}, + pages = {321-447}, + year = {1896}, + url = {https://archive.org/details/cu31924104094002}, + key = {Cushing (1896)}, + lgcode = {Zuni [zuni1245]} +} +@article{cushing1920, + author = {Cushing, F. H.}, + title = {Zuni Breadstuffs}, + journal = {Indian Notes and Monographs}, + volume = {8}, + pages = {1-673}, + year = {1920}, + key = {Cushing (1920)}, + lgcode = {Zuni [zuni1245]} +} +@book{cusinier1946, + author = {Cusinier, J.}, + title = {Les Mu'o'ng}, + series = {Trav. Mem. Inst. Ethnol.}, + volume = {45}, + year = {1946}, + key = {Cusinier (1946)}, + lgcode = {Muong [muon1246]} +} +@incollection{cybulski1990b, + author = {Cybulski, J. S.}, + editor = {W. Suttles}, + title = {Human Biology}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D. C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {52-59}, + year = {1990}, + key = {Cybulski (1990b)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Stó:lō [chil1281]} +} +@book{czaplieka1914, + author = {Czaplieka, M. A.}, + title = {Aboriginal Siberia}, + publisher = {At the Clarendon Press}, + address = {Oxford}, + year = {1914}, + key = {Czaplieka (1914)}, + lgcode = {Koryak [kory1246]} +} +@book{czekanowski1917, + author = {Czekanowski, J.}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {1}, + pages = {103-412}, + year = {1917}, + glottolog_ref_id = {86631}, + key = {Czekanowski (1917)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{czekanowski1924, + author = {Czekanowski, Jan}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + publisher = {Klinkhardt und Bierman}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {2}, + year = {1924}, + url = {https://archive.org/details/forschungenimnil02czek}, + glottolog_ref_id = {158170}, + key = {Czekanowski (1924)}, + lgcode = {Abarambo [bara1361], Baboa [bwaa1238], Bakongo [sans1272], Bira [bila1255], Budu [budu1250], Konjo [konz1239], Lendu [lend1245], Lese [lese1243], Logo [logo1259], Madi [madi1260], Mamvu [mamv1243], Mangbetu [nucl1420], Ndaka Babali [bali1274], Plains Bira [bera1259]} +} +@article{daigre193232, + author = {Daigre}, + title = {Les Bandas de l'Oubangui-Chari}, + journal = {Anthropos}, + volume = {26; 27}, + pages = {547-695; 153-181}, + year = {1932-32}, + key = {Daigre (1932-32)}, + lgcode = {Banda [west2458]} +} +@book{dallet1874, + author = {Dallet, C.}, + title = {Histoire de l'eglise de Coree, v. I.}, + address = {Paris}, + year = {1874}, + key = {Dallet (1874)}, + lgcode = {Koreans [kore1280]} +} +@book{dalman1932, + author = {Dalman, G.}, + title = {Arbeit und Sitte in Palestina. 8 v.}, + address = {Gütersloh}, + year = {1932}, + key = {Dalman (1932)}, + lgcode = {Hebrews [anci1244]} +} +@article{damas1964, + author = {Damas, D.}, + title = {The Patterning of the Iglulingmiut Kinship System}, + journal = {Ethnology}, + volume = {3}, + pages = {377-388}, + year = {1964}, + key = {Damas (1964)}, + lgcode = {Iglulik Inuit [west2618]} +} +@incollection{damas1972, + author = {Damas, D.}, + editor = {M. G. Bicchieri}, + title = {The Copper Eskimo}, + booktitle = {Hunters and Gatherers Today A Socioeconomic Study of Eleven Such Cultures in th Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {3-50}, + year = {1972}, + key = {Damas (1972)}, + lgcode = {Copper Inuit [copp1244]} +} +@incollection{damas1984, + author = {Damas, D. (editor)}, + editor = {D. Damas}, + title = {Copper Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {397-414}, + year = {1984}, + key = {Damas (1984)}, + lgcode = {Copper Inuit [copp1244]} +} +@misc{damas1992, + author = {Damas}, + year = {1992}, + howpublished = {letter 7/6/92}, + key = {Damas (1992)}, + lgcode = {Iglulik Inuit [west2618]} +} +@book{damm1938, + author = {Damm, Hans, et al.}, + title = {Zentralkurolinen, Part II: Ifaluk, Aurepik, Faraulip, Sorol, Mogemog (The Central Carolines Part II)}, + publisher = {Friederichsen, De Gruyter}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910. Section B}, + volume = {10, Part 2}, + year = {1938}, + key = {Damm (1938)}, + lgcode = {Ifaluk [nucl1479]} +} +@article{daniel1910, + author = {Daniel, F.}, + title = {Etude sur les Soninkes ou Sarakoles}, + journal = {Anthropos}, + volume = {5}, + pages = {27-49}, + year = {1910}, + glottolog_ref = {eballiso2009:16000}, + key = {Daniel (1910)}, + lgcode = {Soninke [soni1259]} +} +@article{daniell1856, + author = {Daniell, W. F.}, + title = {On the Ethnography of Akkrah and Adampe}, + journal = {Journ. Ethnol. Soc. London}, + volume = {4}, + pages = {1-32}, + year = {1856}, + key = {Daniell (1856)}, + lgcode = {Adangme [adan1247], Ga [gaaa1244]} +} +@article{danielsson1954, + author = {Danielsson, B.}, + title = {Raroian Culture}, + journal = {Atoll Research Bulletin}, + publisher = {Smithsonian Institution}, + address = {Washington D.C.}, + volume = {32}, + pages = {1-109}, + year = {1954}, + key = {Danielsson (1954)}, + lgcode = {Raroians [tuam1242]} +} +@book{danielsson1955, + author = {Danielsson, B.}, + title = {Work and Life on Raroia}, + address = {Uppsala}, + year = {1955}, + key = {Danielsson (1955)}, + lgcode = {Raroians [tuam1242]} +} +@book{darmagnac1934, + author = {d'Armagnac.}, + title = {LeMzab et les pays Chaamba}, + address = {Alger}, + year = {1934}, + key = {d'Armagnac (1934)}, + lgcode = {Chaambra [algi1247]} +} +@article{dart1937b, + author = {Dart, R.A.}, + title = {The physical characters of the /?Auni=Khomani Bushmen}, + journal = {Bantu Studies}, + volume = {11}, + pages = {176-246}, + year = {1937}, + key = {Dart (1937b)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{das1902, + author = {Das, Sarat Chandra}, + title = {Journey to Lhasa and Central Tibet}, + publisher = {John Murray}, + address = {London}, + year = {1902}, + key = {Das (1902)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{das1945, + author = {Das, T. C.}, + title = {The Purums}, + address = {Calcutta}, + year = {1945}, + glottolog_ref = {sala:1987}, + key = {Das (1945)}, + lgcode = {Purum [puru1266]} +} +@article{das1967, + author = {Das, A. K.}, + title = {Scientific Analysis of "Santal" Social System}, + journal = {Bulletin of the Cultural Research Institute}, + volume = {6}, + number = {i-ii}, + pages = {5-9}, + year = {1967}, + key = {Das (1967)}, + lgcode = {Santal [sant1410]} +} +@book{dasandbanerjee1962, + author = {Das, A. K., and S. K. Banerjee.}, + title = {The Lepchas of Darjeeling District}, + publisher = {Cultural Research Institute}, + address = {Calcutta}, + year = {1962}, + key = {Das and Banerjee (1962)}, + lgcode = {Lepcha [lepc1244]} +} +@book{dasent1861, + author = {Dasent, G. W.}, + title = {The Story of the Burnt Njal}, + address = {Edinburgh}, + year = {1861}, + key = {Dasent (1861)}, + lgcode = {Icelanders [icel1247]} +} +@book{dass1954, + author = {Dass, A.}, + title = {An Economic Survey of Gajju Chak}, + address = {Lahore}, + series = {Punjab Village Surveys}, + volume = {6}, + year = {1954}, + key = {Dass (1954)}, + lgcode = {Punjabi [west2386]} +} +@article{dattamajumder1956, + author = {Datta-Majumder, Nabendu}, + title = {The Santal. A Study in Culture Change}, + journal = {Memoirs of the Department of Anthropology, Government of India}, + volume = {2}, + pages = {1-150}, + year = {1956}, + key = {Datta-Majumder (1956)}, + lgcode = {Santal [sant1410]} +} +@incollection{davenport1964, + author = {Davenport, W.}, + editor = {W. H. Goodenough}, + title = {Social Structure of Santa Cruz Island}, + booktitle = {Explorations in Cultural Anthropology}, + address = {New York}, + pages = {57-93}, + year = {1964}, + key = {Davenport (1964)}, + lgcode = {Santa Cruz Islanders [natu1246]} +} +@misc{davenportnd, + author = {Davenport, W.}, + howpublished = {Unpublished ethnographic notes}, + key = {Davenport (nd)}, + lgcode = {Cantonese [yuec1235]} +} +@article{davidson1948, + author = {Davidson, J. W.}, + title = {Political Development in Western Samoa}, + journal = {Pacific Affairs}, + volume = {21}, + pages = {136-149}, + year = {1948}, + key = {Davidson (1948)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{davies1949, + author = {Davies, R. P.}, + title = {Syrian Arabic Kinship Terms}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {244-252}, + year = {1949}, + key = {Davies (1949)}, + lgcode = {Lebanese [nort3139]} +} +@book{davis1959, + author = {Davis, W. St.}, + title = {A Day in Old Rome}, + address = {New York}, + year = {1959}, + key = {Davis (1959)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{davis1965, + author = {Davis, E. L.}, + title = {An Ethnography of the Kuzedika Paiute of Mono Lake, Mono County, California}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {75}, + year = {1965}, + key = {Davis (1965)}, + lgcode = {Mono Lake Northern Paiute [sout2967]} +} +@article{dawson1891, + author = {Dawson, G. M.}, + title = {Notes on the Shuswap People of British Columbia}, + journal = {Proceedings and Transactions of the Royal Society of Canada}, + volume = {9}, + number = {2}, + pages = {3-44}, + year = {1891}, + key = {Dawson (1891)}, + lgcode = {Shuswap [shus1248]} +} +@article{dazevedo1962, + author = {d'Azevedo, W. L.}, + title = {Common Principles of Variant Kinship Structure Among the Gola of Western Liberia}, + journal = {American Anthropologist}, + volume = {64}, + pages = {504-520}, + year = {1962}, + key = {d'Azevedo (1962)}, + lgcode = {Gola [gola1255]} +} +@book{dazevedo1963, + editor = {D'Azevedo, W. L.}, + title = {The Washo Indians of California and Nevada}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {67}, + year = {1963}, + key = {d'Azevedo (1963)}, + lgcode = {Washo [wash1253]} +} +@article{deacon1927, + author = {Deacon, A. B.}, + title = {The Regulation of Marriage in Ambrym}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {325-342}, + year = {1927}, + key = {Deacon (1927)}, + lgcode = {Ranon [nort2839]} +} +@article{deacon1929, + author = {Deacon, A. B.}, + title = {Notes on Some Islands of the New Hebrides}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {59}, + pages = {498-506}, + year = {1929}, + key = {Deacon (1929)}, + lgcode = {Epi [lame1260]} +} +@book{deacon1934, + author = {Deacon, A. B.}, + title = {Malekula}, + address = {London}, + year = {1934}, + key = {Deacon (1934)}, + lgcode = {Seniang [sout2857]} +} +@misc{deananddean1954, + author = {Dean, J., and G. Dean}, + title = {Bilaan Word List}, + year = {1954}, + howpublished = {Unpublished Ms.}, + key = {Dean and Dean (1954)}, + lgcode = {Bilaan [koro1310]} +} +@book{deane1921, + author = {Deane, W.}, + title = {Fijian Society}, + address = {London}, + year = {1921}, + key = {Deane (1921)}, + lgcode = {Mbau Fijians [bauu1243]} +} +@incollection{debertrodano1978, + author = {De Bertrodano, R. E.}, + editor = {I. McBryde}, + title = {Description of an Aboriginal Tribe}, + booktitle = {Records of Times Past}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {281-286}, + year = {1978}, + key = {de Bertrodano (1978)}, + lgcode = {Badjalang [midd1357]} +} +@book{decary193033, + author = {Decary, R.}, + title = {L'Androy. 2V}, + address = {Paris}, + year = {1930-33}, + key = {Decary (1930-33)}, + lgcode = {Antandroy [tand1256]} +} +@article{decastroandalmeida1956, + author = {De Castro, M. E., and A. Alemeida}, + title = {Canones de mulheres indigenas de Angola}, + journal = {Progresso Cien}, + volume = {23}, + pages = {6-16}, + year = {1956}, + key = {De Castro and Almeida (1956)}, + lgcode = {Sekele [vase1234]} +} +@article{decastroandalmeida1957, + author = {De Castro, M. E., and A. Alemeida}, + title = {Subsidio para a estudo anthropologico dos Mucussos e mangares (Angolo)}, + journal = {Ultram}, + volume = {6}, + pages = {1-14}, + year = {1957}, + key = {De Castro and Almeida (1957)}, + lgcode = {Sekele [vase1234]} +} +@article{decker1942, + author = {Decker, J. M. de.}, + title = {Contribution a Petude du mariage chez les Bambunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {125-146}, + year = {1942}, + key = {Decker (1942)}, + lgcode = {Bunda [mpuo1241]} +} +@article{decleene1937a, + author = {De Cleene, N.}, + title = {La famille dans l'organisation sociale du Mayombe}, + journal = {Africa}, + volume = {10}, + pages = {1-16}, + year = {1937}, + key = {De Cleene (1937a)}, + lgcode = {Yombe [yomb1244]} +} +@article{decleene1937b, + author = {De Cleene, N.}, + title = {La structure de la societe Yombe}, + journal = {Bull. Seances Inst. Roy. Colon. Belge}, + volume = {8}, + pages = {44-51}, + year = {1937}, + key = {De Cleene (1937b)}, + lgcode = {Yombe [yomb1244]} +} +@article{dejong1912, + author = {DeJong, J.}, + title = {Social Organization of the Southern Peigans}, + journal = {Internationales Archiv Ethnographie}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {DeJong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@article{delacauw1936, + author = {Delacauw, A.}, + title = {Droit coutumier des Barundi}, + journal = {Congo}, + volume = {17}, + pages = {i, 332-357, 481-522}, + year = {1936}, + key = {Delacauw (1936)}, + lgcode = {Rundi [rund1242]} +} +@article{delacour191213, + author = {Delacour, A.}, + title = {Les Tenda}, + journal = {Rev. Ethnog. Sociol.}, + volume = {3; 4}, + pages = {287-296, 307-381; 31-53, 105-120, 140-153}, + year = {1912-13}, + key = {Delacour (1912-13)}, + lgcode = {Coniagui [wame1240]} +} +@book{delafosse1897, + author = {DelAfosse, M.}, + title = {Essai sur le peuple et la langue sara}, + publisher = {Paris: André'}, + address = {Paris}, + year = {1897}, + glottolog_ref = {eballiso2009:36341}, + key = {DelAfosse (1897)}, + lgcode = {Sara [sarr1246]} +} +@article{delafosse1899, + author = {DelAfosse, M.}, + title = {Les Vai}, + journal = {Anthropologie}, + volume = {10}, + pages = {129-250, 294-314}, + year = {1899}, + key = {DelAfosse (1899)}, + lgcode = {Vai [vaii1241]} +} +@article{delafosse190809, + author = {DelAfosse, M.}, + title = {Le peuple Siena ou Senoufo}, + journal = {Rev. et. Ethnog. Sociol.}, + volume = {1; 2}, + pages = {17-32, 79-92, 151-159, 242-275, 448-457, 483-486; 1-21}, + year = {1908-09}, + key = {DelAfosse (1908-09)}, + lgcode = {Senufo [ceba1235]} +} +@book{delaguna1956, + author = {de Laguna, F.}, + title = {Chugash Prehistory: The Archaeology of Prince William Sound, Alaska}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1956}, + key = {de Laguna (1956)}, + lgcode = {Chugach [chug1254]} +} +@book{delaguna1960, + author = {de Laguna, Frederica}, + title = {The story of a Tlingit community: A problem in the relationship between archeological, ethnological, and historical methods}, + series = {Bulletin of the Bureau of American Ethnology}, + volume = {172}, + year = {1960}, + key = {de Laguna (1960)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{delaguna1990, + author = {de Laguna, F.}, + editor = {Wayne Suttles}, + title = {Eyak}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {189-198}, + year = {1990}, + glottolog_ref = {hh:e:DeLaguna:Eyak}, + key = {de Laguna (1990)}, + lgcode = {Eyak [eyak1241]} +} +@book{delaporte1925, + author = {Delaporte, L. J.}, + title = {Mesopotamia}, + address = {New York}, + year = {1925}, + key = {Delaporte (1925)}, + lgcode = {Babylonians [akka1240]} +} +@book{delbert1961, + author = {Delbert, J.}, + title = {Le Paysan Cambodgien}, + address = {Paris}, + year = {1961}, + key = {Delbert (1961)}, + lgcode = {Khmer [cent1989]} +} +@article{deleeuwe1966, + author = {De Leeuwe, J.}, + title = {Development in Bambuti society}, + journal = {Antropos}, + volume = {61}, + pages = {737-763}, + year = {1966}, + howpublished = {German}, + key = {De Leeuwe (1966)}, + lgcode = {Mbuti [bila1255]} +} +@article{deleval1912, + author = {Deleval, H.}, + title = {Les tribus Kavati du Mayombe}, + journal = {Rev. Congolaise}, + volume = {3}, + pages = {32-40, 103-115, 170-186, 253-264}, + year = {1912}, + key = {Deleval (1912)}, + lgcode = {Yombe [yomb1244]} +} +@article{delhaise1908, + author = {Delhaise, C.}, + title = {Chez les Wabemba}, + journal = {Bulletin de la Societe Royale Belge de Geographie}, + volume = {32}, + pages = {173-227, 261-283}, + year = {1908}, + glottolog_ref = {hh:e:Delhaise:Wabemba}, + key = {Delhaise (1908)}, + lgcode = {Bemba [town1238]} +} +@article{delhaise1909a, + author = {Delhaise, C.}, + title = {Chez les Wasongola du sud}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {34-58, 109-135, 159-214}, + year = {1909}, + key = {Delhaise (1909a)}, + lgcode = {Songola [song1300]} +} +@article{delhaise1909b, + author = {Delhaise, C.}, + title = {Les Warega}, + journal = {Coll. Monog. Ethnog.}, + volume = {5}, + pages = {1-376}, + year = {1909}, + key = {Delhaise (1909b)}, + lgcode = {Rega [lega1249]} +} +@article{delhaise1912, + author = {Delhaise, C.}, + title = {Les Bapopoïe}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {XXXVI}, + pages = {86-113, 149-202}, + year = {1912}, + glottolog_ref = {hh:ew:Delhaise-Arnould:Bapopoie}, + key = {Delhaise (1912)}, + lgcode = {Popoi [popo1291]} +} +@article{delmond1953, + author = {Delmond, P.}, + title = {Dans la boucle du Niger: Dori, ville peule}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {9-109}, + year = {1953}, + key = {Delmond (1953)}, + lgcode = {Liptako [west2454]} +} +@article{deloria1932, + author = {Deloria, E.}, + title = {Dakota Texts}, + journal = {Publ. Amer. Ethn. Soc.}, + publisher = {New York: Stechert}, + address = {New York}, + series = {Publications of the American Ethnological Society}, + volume = {14}, + pages = {1-279}, + year = {1932}, + glottolog_ref = {mpieva:Deloria1932Dakotate}, + key = {Deloria (1932)}, + lgcode = {Teton [lako1247]} +} +@book{dempsey1955, + author = {Dempsey, J.}, + title = {Mission on the Nile}, + address = {London}, + year = {1955}, + key = {Dempsey (1955)}, + lgcode = {Shilluk [shil1265]} +} +@article{dempwolff1914, + author = {Dempwolff, O.}, + title = {Beitrage zur Volksbeschreibung der Hehe}, + journal = {Baessler-Archiv}, + volume = {4}, + pages = {87-173}, + year = {1914}, + glottolog_ref = {hh:e:Dempwolff:Hehe}, + key = {Dempwolff (1914)}, + lgcode = {Hehe [hehe1240]} +} +@book{dempwolff1916, + author = {Dempwolff, O.}, + title = {Die Sandawe}, + address = {Hamburg}, + year = {1916}, + key = {Dempwolff (1916)}, + lgcode = {Sandawe [sand1273]} +} +@article{demuenynck1908, + author = {Demuenynck.}, + title = {Au pays de Mahagi}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {36-80, 93-133}, + year = {1908}, + key = {Demuenynck (1908)}, + lgcode = {Alur [alur1250]} +} +@article{denham1975, + author = {Denham, W. W.}, + title = {Population Properties of Physical Groups among the Alyawara Tribe of Central Australia}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {10}, + pages = {115-159}, + year = {1975}, + key = {Denham (1975)}, + lgcode = {Alyawara [alya1239]} +} +@book{denhamandclapperton1826, + author = {Denham, D., and H. Clapperton.}, + title = {Narrative of Travels and Discoveries in Northern and Central Africa}, + publisher = {London: John Murray}, + address = {London}, + year = {1826}, + glottolog_ref = {eballiso2009:52947}, + key = {Denham and Clapperton (1826)}, + lgcode = {Kanuri [cent2050]} +} +@incollection{denig1930, + author = {Denig, E. T.}, + editor = {J. N. B. Hewitt}, + title = {Indian Tribes of the Upper Missouri}, + booktitle = {Forty-Sixth Annual Report of the Bureau of American Ethnology}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {375-628}, + year = {1930}, + key = {Denig (1930)}, + lgcode = {Assiniboine [assi1247]} +} +@incollection{denig1953, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Of the Crow Nation}, + booktitle = {Smithsonian Anthropological Papers No. 33. Bureau of Amerian Ethnology Bulletin No. 151}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {1-74}, + year = {1953}, + key = {Denig (1953)}, + lgcode = {Crow [crow1244]} +} +@book{denig1961, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Five Indian Tribes of the Upper Missouri: Sioux, Arickaras, Assiniboines, Crees, Crows}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1961}, + key = {Denig (1961)}, + lgcode = {Crow [crow1244]} +} +@article{denis1935, + author = {Denis, P. J.}, + title = {L'organisation d'un peuple primitif}, + journal = {Congo}, + volume = {16}, + pages = {481-502}, + year = {1935}, + glottolog_ref = {eballiso2009:5919}, + key = {Denis (1935)}, + lgcode = {Sakata [saka1287]} +} +@incollection{denisova1984, + author = {Denisova, N. P.}, + editor = {N. E. Egorov and V. A. Prohorova}, + title = {Administrativno-fiskal'nyei pravovye funktsii obshchiny u chuvashej (IX - nachaloX X v. ) (Administrative-Fiscal and Jurisdictional Functions of the Chuvash Community in the Nineteenth and early Twentieth Centuries)}, + booktitle = {Voprosy istorii dorevoljutsionnoj Chuvashii (Issues of the History of pre-Revolution Chuvashia)}, + address = {Cheboksary}, + pages = {46-71}, + year = {1984}, + key = {Denisova (1984)}, + lgcode = {Chuvash [chuv1255]} +} +@book{dennis1940, + author = {Dennis, W.}, + title = {The Hopi Child}, + address = {New York}, + year = {1940}, + key = {Dennis (1940)}, + lgcode = {Hopi [hopi1249]} +} +@incollection{dennison1981, + author = {Dennison, G.}, + editor = {J. Helm}, + title = {Sekani}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {433-441}, + year = {1981}, + key = {Dennison (1981)}, + lgcode = {Sekani [seka1250]} +} +@article{densmore1929, + author = {Densmore, F.}, + title = {Chippewa Customs}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {86}, + pages = {1-204}, + year = {1929}, + key = {Densmore (1929)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{dentan1967, + author = {Dentan, R. H.}, + title = {The Semai of West Malaysia}, + address = {New York}, + year = {1967}, + key = {Dentan (1967)}, + lgcode = {Senoi [sema1266]} +} +@article{denys1908, + author = {Denys, N.}, + editor = {W. F. Ganong}, + title = {The Description and Natural History of the Coasts of North America}, + journal = {Publications of the Champlain Society}, + volume = {2}, + pages = {399-452, 572-606}, + year = {1908}, + key = {Denys (1908)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{depuydt1868, + author = {De Puydt, L.}, + title = {Account of Scientific Explorations in the Isthmus of Darien in the Years 1861 and 1865}, + journal = {Journal of the Royal Geographic Society}, + volume = {38}, + pages = {69-110}, + year = {1868}, + key = {De Puydt (1868)}, + lgcode = {Guna [bord1248]} +} +@article{descazes1885, + author = {Descazes, E.}, + title = {Sur les Batekes}, + journal = {Rev. Ethnog.}, + volume = {4}, + pages = {160-168}, + year = {1885}, + key = {Descazes (1885)}, + lgcode = {Teke [teke1278]} +} +@book{deschamps1936, + author = {Deschamps, H.}, + title = {Les Antaisaka}, + address = {Tananarive}, + year = {1936}, + key = {Deschamps (1936)}, + lgcode = {Antaisaka [tesa1236]} +} +@book{deschlippe1956, + author = {De Schlippe, P.}, + title = {Shifting Cultivation in Africa}, + address = {London}, + year = {1956}, + key = {De Schlippe (1956)}, + lgcode = {Azande [zand1248]} +} +@incollection{desoignies1903, + author = {Desoignies.}, + editor = {S. R. Steinmetz}, + title = {Die Msalala}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + publisher = {Berlin: Julius Springer-Verlag}, + address = {Berlin}, + pages = {268-282}, + year = {1903}, + glottolog_ref = {eballiso2009:35292}, + key = {Desoignies (1903)}, + lgcode = {Sumbwa [sumb1240]} +} +@book{despois1930, + author = {Despois, J.}, + title = {Le Tunisie}, + address = {Paris}, + year = {1930}, + key = {Despois (1930)}, + lgcode = {Tunisians [tuni1260]} +} +@book{despois1940, + author = {Despois, J.}, + title = {La Tunisie orientale: Sahel et basse steppe}, + address = {Paris}, + year = {1940}, + key = {Despois (1940)}, + lgcode = {Hamama [sout3114], Sahel [sahi1245]} +} +@book{destaing190711, + author = {Destaing, E.}, + title = {Etude sur le dialecte berbère des Beni Snous}, + publisher = {Paris: Ernest Leroux}, + address = {Paris}, + series = {Publ. de l'Ecole des Lettres d'Alger; Bulletin de correspondence de africaine}, + volume = {34-35}, + year = {1907-11}, + glottolog_ref = {eballiso2009:58253}, + key = {Destaing (1907-11)}, + lgcode = {Zekara [chen1266]} +} +@article{devallee1925, + author = {Devallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Devallee (1925)}, + lgcode = {Shuwa [char1283]} +} +@book{devaux1961, + author = {DeVaux, R.}, + title = {Ancient Israel, Its Life and Institutions}, + address = {New York}, + year = {1961}, + key = {DeVaux (1961)}, + lgcode = {Hebrews [anci1244]}, + note = {John McHugh, Translator} +} +@incollection{devereaux1950, + author = {Devereaux, G.}, + editor = {Gez Roheim}, + title = {Heterosexual behavior of the Mohave Indians}, + booktitle = {Psychoanalysis and the Social Sciences (vol. 2)}, + publisher = {International. Universities Press}, + address = {New York}, + year = {1950}, + key = {Devereaux (1950)}, + lgcode = {Mojave [moha1256]} +} +@book{devos1965, + author = {DeVos, G.}, + title = {Social Values and Personal Attitudes in Primary Human Relations in Niiike}, + series = {University of Michigan Center for Japanese Studies, Occasional Papers}, + year = {1965}, + key = {DeVos (1965)}, + lgcode = {Japanese [nucl1643]} +} +@book{devosandwagatsuma1967, + author = {DeVos, G., and H. Wagatsuma.}, + title = {Japan's Invisible Race}, + address = {Berkeley and Los Angeles}, + year = {1967}, + key = {DeVos and Wagatsuma (1967)}, + lgcode = {Japanese [nucl1643]} +} +@book{devreux1864, + author = {Yves d'Evreux.}, + editor = {F. Denis}, + title = {Voyage dans le nord du Brésil fait durant les années 1613 et 1614}, + publisher = {Leipzig & Paris: Librairie A. Franck}, + address = {Leipzig and Paris}, + pages = {526}, + year = {1864}, + glottolog_ref = {hh:ew:dEvreux:Nord-Bresil}, + key = {d'Evreux (1864)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{dewey1962, + author = {Dewey, A. G.}, + title = {Peasant Marketing in Java}, + address = {New York}, + year = {1962}, + key = {Dewey (1962)}, + lgcode = {Javanese [java1254]} +} +@incollection{dhertefelt1965, + author = {D'Hertefelt, M.}, + editor = {J. L. Gibbs}, + title = {The Rwanda of Rwanda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {403-440}, + year = {1965}, + key = {D'Hertefelt (1965)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{dhertefeltetal1962, + author = {D'Hertefelt, M. and A. Trouwborst and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {D'Hertefelt et al. (1962)}, + lgcode = {Banyaruanda [kiny1244], Rundi [rund1242]} +} +@book{diamond1964, + author = {Diamond, D.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Diamond (1964)}, + lgcode = {Anaguta [igut1238]} +} +@book{dias1953, + author = {Dias, J.}, + title = {Rio de Onor}, + address = {Porto}, + year = {1953}, + key = {Dias (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{dickson1949, + author = {Dickson, H. R. P.}, + title = {The Arab of the Desert}, + address = {London}, + year = {1949}, + key = {Dickson (1949)}, + lgcode = {Mutair [sout3119]} +} +@article{diebold1966, + author = {Diebold, A. R., Jr.}, + title = {The Reflection of Coresidence in Mareno Kinship Terminology}, + journal = {Ethnology}, + volume = {5}, + pages = {37-79}, + year = {1966}, + key = {Diebold (1966)}, + lgcode = {Huave [sanm1287]} +} +@book{dieterlen1951, + author = {Dieterlen, G.}, + title = {Essai sur la religion Bambara}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + series = {Bibl. de sociologie contemporain}, + volume = {bl. de sociologie contemporaine}, + year = {1951}, + glottolog_ref = {eballiso2009:17734}, + key = {Dieterlen (1951)}, + lgcode = {Bambara [bamb1269]} +} +@article{dieterlen1956, + author = {Dieterlen, G.}, + title = {Parente et mariage chez les Dogon}, + journal = {Africa}, + volume = {26}, + pages = {107-148}, + year = {1956}, + key = {Dieterlen (1956)}, + lgcode = {Dogon [bank1259]} +} +@book{dieterlenandcisse1972, + author = {Dieterlen, G., and Y. Cisse.}, + title = {Les fondaments de la société d`initiation du Komo}, + publisher = {Paris: Mouton & Co.}, + address = {Paris}, + series = {Cahiers de l'homme: ethnologie, géographie, linguistique, nouvelle série}, + volume = {10}, + year = {1972}, + glottolog_ref = {eballiso2009:16502}, + key = {Dieterlen and Cisse (1972)}, + lgcode = {Bambara [bamb1269]} +} +@article{dietschy1959, + author = {Dietschy, H.}, + title = {Das Häuptlingswesen bei den Karaja}, + journal = {Mitt. Mus. Volkerk. Hamburg}, + address = {Hamburg}, + volume = {25}, + pages = {168-176}, + year = {1959}, + key = {Dietschy (1959)} +} +@misc{dietschy1962, + author = {Dietschy, H.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Dietschy (1962)}, + lgcode = {Carajá [kara1500]} +} +@misc{dietschynd, + author = {Dietschy, H.}, + title = {Le systeme de parente et la structure des Indiens Caraja}, + howpublished = {Manuscript}, + key = {Dietschy (nd)}, + lgcode = {Carajá [kara1500]} +} +@article{dimdelobosom1933, + author = {Dim Delobosom, A. A.}, + title = {L'empire Mogho-Daba: Coutumes des Mossi de la Haute-Volta}, + journal = {Et. Sociol. Ethnol. Jurid.}, + volume = {11}, + pages = {1-308}, + year = {1933}, + key = {Dim Delobosom (1933)}, + lgcode = {Mossi (Ouagadougou) [moss1236]} +} +@article{dixon1905, + author = {Dixon, R. B.}, + title = {The Northern Maidu}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {119-346}, + year = {1905}, + key = {Dixon (1905)}, + lgcode = {Foothill Maidu [nort2951], Maidu [nort2952], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Valley Maidu [vall1252]} +} +@article{dixon1907, + author = {Dixon, R. B.}, + title = {The Shasta}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {381-498}, + year = {1907}, + key = {Dixon (1907)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{dixon1910, + author = {Dixon, R. B.}, + title = {The Chimariko Indians and Language}, + journal = {Univ. Calif. Publ. Amer. Arch. Ethn.}, + volume = {5}, + number = {5}, + pages = {293-380}, + year = {1910}, + url = {https://archive.org/details/chimarikoindians00dixorich}, + key = {Dixon (1910)}, + lgcode = {Chimariko [chim1301]} +} +@book{dobrizhoffer1822, + author = {Dobrizhoffer, M.}, + title = {An Account of the Abipones. 3v}, + address = {London}, + year = {1822}, + key = {Dobrizhoffer (1822)}, + lgcode = {Abipón [abip1241]} +} +@book{doke1931, + author = {Doke, C. M.}, + title = {The Lambas of Northern Rhodesia}, + address = {London}, + year = {1931}, + key = {Doke (1931)}, + lgcode = {Lamba [lamb1271]} +} +@article{dole1958, + author = {Dole, G. E.}, + title = {Ownership and Exchange Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {125-133}, + year = {1958}, + key = {Dole (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@misc{dole1961, + author = {Dole, G. E.}, + title = {The Influence of Population Density on the Development of Social Organization Among the Amahuaca of East Peru}, + year = {1961}, + howpublished = {Paper presented at American Anthropological Association meeting, Philadelphia}, + key = {Dole (1961)}, + lgcode = {Amahuaca [amah1246]} +} +@article{dole1962, + author = {Dole, G. E.}, + title = {Endocannibalism Among the Amahuaca Indians}, + journal = {Transactions of the New York Academy of Sciences, ser. 2}, + volume = {24}, + pages = {567-573}, + year = {1962}, + key = {Dole (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@book{dolganovaetal1995, + author = {Dolganova, L. N. and I. A. Morozov and E. N. Minasenko}, + title = {Igry i razvlechenija udmurtov: istorija i sovremennost' (Games and Entertainments of the Udmurt: History and Modernity)}, + address = {Moscow}, + year = {1995}, + key = {Dolganova et al. (1995)}, + lgcode = {Udmurt [sout2681]} +} +@book{dollone1912, + author = {D'Ollone, H. M.}, + title = {In Forbidden China}, + address = {Boston}, + year = {1912}, + key = {D'Ollone (1912)}, + lgcode = {Lolo [sich1238]} +} +@phdthesis{donald1968a, + author = {Donald, L. H.}, + title = {Changes in Yalunka Social Organization}, + school = {University of Oregon}, + year = {1968}, + key = {Donald (1968a)}, + lgcode = {Yalunka [yalu1240]} +} +@misc{donald1968b, + author = {Donald, L. H.}, + year = {1968}, + howpublished = {Personal communication}, + key = {Donald (1968b)}, + lgcode = {Yalunka [yalu1240]} +} +@book{donner1932, + author = {Donner, K.}, + title = {Samojedische Woerterverzeichnisse}, + publisher = {Helsinki: Suomalais-Ugrilainen Sura}, + address = {Helsinki}, + series = {Suomalais-Ugrilaisen Seuran Toimituksia}, + volume = {64}, + pages = {vi+171}, + year = {1932}, + glottolog_ref = {mpieva:Donner1932Samojedi}, + key = {Donner (1932)}, + lgcode = {Selkup [selk1253]} +} +@book{donner1954, + author = {Donner, K.}, + title = {Among the Samoyed in Siberia}, + address = {New Haven}, + year = {1954}, + key = {Donner (1954)}, + lgcode = {Selkup [selk1253], Yurak-Samoyeds [nene1249]}, + note = {Trans} +} +@book{donoghue1964, + author = {Donoghue, J. D.}, + title = {Cam Ani, a Fishing Village in Central Vietnam}, + address = {Lansing}, + year = {1964}, + key = {Donoghue (1964)}, + lgcode = {Annamese [viet1252]} +} +@misc{donoghue1972, + author = {Donoghue, J. D.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Donoghue (1972)}, + lgcode = {Rade [rade1240]} +} +@book{donoghueetal1962, + author = {Donoghue, J. D. and D. D. Whitney and I. Ishino}, + title = {People in the Middle: The Rhade of South Vietnam}, + address = {East Lansing}, + year = {1962}, + key = {Donoghue et al. (1962)}, + lgcode = {Rade [rade1240]} +} +@book{dorman1935, + author = {Dorman, S. S.}, + title = {Pygmies and Bushmen of the Kalahari}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1935}, + key = {Dorman (1935)}, + lgcode = {Tswana [tswa1253]} +} +@article{dorsey1884, + author = {Dorsey, J. O.}, + title = {Omaha Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {3}, + pages = {205-320}, + year = {1884}, + key = {Dorsey (1884)}, + lgcode = {Omaha [omah1248]} +} +@article{dorsey1894, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {218-222}, + year = {1894}, + key = {Dorsey (1894)}, + lgcode = {Teton [lako1247]} +} +@article{dorsey1897, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {205-244}, + year = {1897}, + key = {Dorsey (1897)}, + lgcode = {Ponca [ponc1241]} +} +@book{dorsey1904a, + author = {Dorsey, G. A.}, + title = {The Mythology of the Wichita}, + address = {Washington}, + year = {1904}, + key = {Dorsey (1904a)}, + lgcode = {Wichita [wich1260]} +} +@article{dorsey1904b, + author = {Dorsey, G. A.}, + title = {Traditions of the Skidi Pawnee}, + journal = {Memoirs of the American Folk-Lore Society}, + volume = {8}, + pages = {1-366}, + year = {1904}, + key = {Dorsey (1904b)}, + lgcode = {Pawnee [pawn1254]} +} +@article{dorseyandmurie1940, + author = {Dorsey, G. A., and J. R. Murie.}, + title = {Notes on Skidi Pawnee Society}, + journal = {Field Museum of Natural History Anthropological Series}, + volume = {27}, + pages = {67-119}, + year = {1940}, + key = {Dorsey and Murie (1940)}, + lgcode = {Pawnee [pawn1254]} +} +@incollection{dossantos1901, + author = {Dos Santos, J.}, + editor = {G. M. Theal}, + title = {Eastern Ethiopia}, + booktitle = {Records of South-Eastern Africa}, + address = {London}, + volume = {7}, + pages = {183-383}, + year = {1901}, + key = {Dos Santos (1901)}, + lgcode = {Ndau [ndau1241]} +} +@article{douglas1952, + author = {Douglas,.}, + title = {Alternate Generations Among the Lele of the Kasai}, + journal = {Africa}, + volume = {22}, + pages = {59-65}, + year = {1952}, + key = {Douglas (1952)}, + lgcode = {Lele [lele1265]} +} +@incollection{douglas1962, + author = {Douglas, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Lele Economy Compared with the Bushong}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {211-233}, + year = {1962}, + key = {Douglas (1962)}, + lgcode = {Lele [lele1265]} +} +@book{douglas1963, + author = {Douglas, M.}, + title = {The Lele of the Kasai}, + publisher = {London: Oxford University Press}, + address = {London}, + pages = {286}, + year = {1963}, + glottolog_ref = {hh:e:Douglas:Lele}, + key = {Douglas (1963)}, + lgcode = {Lele [lele1265]} +} +@phdthesis{douglass1967, + author = {Douglass, W. A.}, + title = {Opportunity, Choice-Making, and Rural Depopulation in Two Spanish Basque Villages}, + school = {University of Chicago}, + year = {1967}, + key = {Douglass (1967)}, + lgcode = {Spanish Basques [west1508]} +} +@book{douglass1969, + author = {Douglass, W. A.}, + title = {Death in Murelaga}, + address = {Seattle}, + year = {1969}, + key = {Douglass (1969)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{downs1956, + author = {Downs, R. E.}, + title = {The Religion of the Bare'e-speaking Toradja}, + address = {The Hague}, + year = {1956}, + key = {Downs (1956)}, + lgcode = {Toradja [pamo1252]} +} +@book{downs1966, + author = {Downs, J. F.}, + title = {The Two Worlds of the Washo: An Indian tribe of California and Nevada}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Downs (1966)}, + lgcode = {Washo [wash1253]} +} +@book{doyly1929, + author = {D'Oyly, John.}, + title = {A Sketch of the Constitution of the Kandyan Kingom}, + publisher = {Government Printer, Ceylon}, + address = {Colombo}, + year = {1929}, + key = {D'Oyly (1929)}, + lgcode = {Sinhalese [sinh1246]} +} +@article{dozier1954, + author = {Dozier, E. P.}, + title = {The Hopi-Tewa of Arizona}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {44}, + number = {3}, + pages = {259-376}, + year = {1954}, + glottolog_ref = {hh:e:Dozier:Hopi-Tewa}, + key = {Dozier (1954)}, + lgcode = {Hano [ariz1237], Nambé Pueblo [namb1296], Ohkay Owingeh [sanj1276], San Ildefonso [sani1273]} +} +@incollection{dozier1961, + author = {Dozier, E. C.}, + editor = {Spicer, Edward H.}, + title = {Rio Grande Pueblos}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {94-186}, + year = {1961}, + key = {Dozier (1961)}, + lgcode = {San Ildefonso [sani1273]} +} +@book{dozier1966a, + author = {Dozier, E. P.}, + title = {Mountain Arbiters}, + address = {Tucson}, + year = {1966}, + key = {Dozier (1966a)}, + lgcode = {Kalinga [lubu1243]} +} +@article{dozier1966b, + author = {Dozier, E. P.}, + title = {Factionalism at Santa Clara Pueblo}, + journal = {Ethnology}, + volume = {5}, + number = {2}, + pages = {172-185}, + year = {1966}, + key = {Dozier (1966b)}, + lgcode = {Santa Clara [sant1421]} +} +@book{dozier1967, + author = {Dozier, E. P.}, + title = {The Kalinga of Northern Luzon}, + address = {New York}, + year = {1967}, + key = {Dozier (1967)}, + lgcode = {Kalinga [lubu1243]} +} +@book{dozier1970, + author = {Dozier, Edward P.}, + title = {The Pueblo Indians of North America}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Dozier (1970)}, + lgcode = {Hopi [hopi1249], Nambé Pueblo [namb1296], San Ildefonso [sani1273], Santa Clara [sant1421]} +} +@article{drabbe1940, + author = {Drabbe, P.}, + title = {Het leven van den Tanembarees}, + journal = {Int. Arch. Ethnog.}, + volume = {38}, + pages = {1-432}, + year = {1940}, + key = {Drabbe (1940)}, + lgcode = {Tanimbarese [sela1259], Toradja [pamo1252]}, + note = {Supplement} +} +@phdthesis{draper1972, + author = {Draper, Patricia}, + title = {!Kung Bushman childhood}, + school = {Harvard}, + year = {1972}, + glottolog_ref = {eballiso2009:50521}, + key = {Draper (1972)}, + lgcode = {!Kung [juho1239]} +} +@incollection{draper1975, + author = {Draper, Patricia}, + editor = {Reiter, Rayna P.}, + title = {!Kung women: contrasts in sexual egalitarianism in foraging and sedentary context}, + booktitle = {Toward an Anthropology of Women}, + publisher = {Monthly Review Press}, + address = {New York}, + pages = {77-109}, + year = {1975}, + glottolog_ref = {eballiso2009:50548}, + key = {Draper (1975)}, + lgcode = {!Kung [juho1239]} +} +@book{draper1978, + author = {Draper, Patricia}, + title = {The Learning Environment for Aggression and Anti-Social Behavior among the !Kung}, + year = {1978}, + key = {Draper (1978)}, + lgcode = {!Kung [juho1239]} +} +@misc{drapernd, + author = {Draper, Patricia}, + title = {!Kung Subsistence Work at /Du/da.}, + howpublished = {forthcoming}, + key = {Draper (nd)}, + lgcode = {!Kung [juho1239]} +} +@misc{draperperscomm1993, + author = {Draper, Patricia}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Draper pers. comm. (1993)}, + lgcode = {Kaurna [kaur1267]} +} +@book{dreyfus1900, + author = {Dreyfus, C.}, + title = {Six mois dans l'Attie}, + address = {Paris}, + year = {1900}, + key = {Dreyfus (1900)}, + lgcode = {Attie [atti1239]} +} +@book{dreyfus1963, + author = {Dreyfus, S.}, + title = {Les Kayapo du nord}, + address = {Paris and La Haye}, + year = {1963}, + key = {Dreyfus (1963)}, + lgcode = {Kayapo [kaya1330]} +} +@article{driberg1922, + author = {Driberg, J. H.}, + title = {A Preliminary Account of the Didinga}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {208-222}, + year = {1922}, + glottolog_ref = {eballiso2009:1206}, + key = {Driberg (1922)}, + lgcode = {Didinga [didi1258]} +} +@book{driberg1923, + author = {Driberg, J. H.}, + title = {The Lango}, + address = {London}, + year = {1923}, + key = {Driberg (1923)}, + lgcode = {Lango [lang1324]} +} +@article{driberg1925a, + author = {Driberg, J. H.}, + title = {Didinga Customary Law}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {153-175}, + year = {1925}, + key = {Driberg (1925a)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1925b, + author = {Driberg, J. H.}, + title = {LAfon Hill}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {47-57}, + year = {1925}, + key = {Driberg (1925b)}, + lgcode = {Pari [pari1256]} +} +@book{driberg1932, + author = {Driberg, J. H.}, + title = {At Home with the Savage}, + address = {New York}, + year = {1932}, + key = {Driberg (1932)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1932a, + author = {Driberg, J. H.}, + title = {Some Aspects of Lango Kinship}, + journal = {Sociologus}, + volume = {8}, + pages = {44-61}, + year = {1932}, + key = {Driberg (1932a)} +} +@article{driver1936, + author = {Driver, H. E.}, + title = {Wappo Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {36}, + pages = {179-220}, + year = {1936}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-004.pdf}, + key = {Driver (1936)}, + lgcode = {Wappo [wapp1239]} +} +@article{driver1937, + author = {Driver, H. E.}, + title = {Southern Sierra Nevada}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {53-154}, + year = {1937}, + key = {Driver (1937)}, + lgcode = {Eastern Mono [mono1275], Kawaiisu [kawa1283], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Koso [pana1305], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Paiute (Las Vegas) [sout2969], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tübalulabal [tuba1278], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{driver1939, + author = {Driver, H. E.}, + title = {Northwest California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {297-433}, + year = {1939}, + key = {Driver (1939)}, + lgcode = {Cahto [kato1244], Chimariko [chim1301], Coast Yuki [yuki1243], Hupa [hupa1239], Karuk [karo1304], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244], Tolowa [tolo1259], Wiyot [wiyo1248], Yurok [yuro1248]} +} +@book{driveranddriver1963, + author = {Driver, H. E., and W. Driver.}, + title = {Ethnography and Acculturation of the Chichimeca-Joanaz of Northeast Mexico}, + publisher = {Bloomington: Indiana University}, + address = {Bloomington}, + pages = {x+265}, + year = {1963}, + glottolog_ref = {hh:e:DriverDriver:Chichimeca-Jonaz}, + key = {Driver and Driver (1963)}, + lgcode = {Chichimeca [chic1272]} +} +@article{driverandmassey1957, + author = {Driver, H. E., and W. C. Massey.}, + title = {Comparative Studies of North American Indians}, + journal = {Trans. Amer. Phil. Soc., n. s.}, + volume = {47}, + pages = {ii, 165-456}, + year = {1957}, + key = {Driver and Massey (1957)}, + lgcode = {Coahuilteco [coah1252]} +} +@book{driverandmiles195255, + author = {Driver, G. R., and J. C. Miles.}, + title = {The Babylonian Laws. 2v}, + address = {Oxford}, + year = {1952-55}, + key = {Driver and Miles (1952-55)}, + lgcode = {Babylonians [akka1240]} +} +@article{drucker1936a, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1936}, + key = {Drucker (1936a)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{drucker1936b, + author = {Drucker, P.}, + title = {A Karuk World-Renewal Ceremony at Panamiuk}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {23-28}, + year = {1936}, + key = {Drucker (1936b)}, + lgcode = {Karuk [karo1304], Tututni [tutu1242]} +} +@article{drucker1937, + author = {Drucker, P.}, + title = {Southern California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {1-52}, + year = {1937}, + key = {Drucker (1937)}, + lgcode = {Akwa’ala [paip1241], Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Chemehuevi [chem1251], Cupeño [cupe1243], Kumeyaay [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Quechan [quec1382], San Juan [sout2969], Serrano [serr1255], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{drucker1937b, + author = {Drucker, Philip}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1937}, + key = {Drucker (1937b)}, + lgcode = {Chetco [tolo1259], Taltushtuntede [gali1261], Tolowa [tolo1259]} +} +@article{drucker1939, + author = {Drucker, P.}, + title = {Contributions to Alsea Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {35}, + number = {7}, + pages = {81-101}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp035-009.pdf}, + key = {Drucker (1939)}, + lgcode = {Alsea [alse1251]} +} +@article{drucker1940, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {4}, + pages = {221-300}, + year = {1940}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-005.pdf}, + key = {Drucker (1940)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Makah [maka1318], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Quileute [quil1240], Tolowa [tolo1259], Tsimshian [nucl1649]} +} +@article{drucker1941, + author = {Drucker, P.}, + title = {Yuman-Piman}, + journal = {Anth. Rec.}, + volume = {6}, + pages = {91-230}, + year = {1941}, + key = {Drucker (1941)}, + lgcode = {Chemehuevi [chem1251], Cocopa [coco1261], Hualapai [wala1270], Kamia [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Maricopa [mari1440], Mojave [moha1256], Pima [akim1239], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Tohono O'odham [toho1246], Yaqui [yaqu1251], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{drucker1950, + author = {Drucker, P.}, + title = {Northwest Coast}, + journal = {Anthropological Records}, + volume = {9}, + pages = {157-294}, + year = {1950}, + key = {Drucker (1950)}, + lgcode = {Gitxsan [gitx1241], Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@book{drucker1951, + author = {Drucker, P.}, + title = {The Northern and Central Nootkan Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {144}, + pages = {1-480}, + year = {1951}, + key = {Drucker (1951)}, + lgcode = {Nuu chah nulth [nuuc1236]} +} +@book{drucker1965, + author = {Drucker, Philip}, + title = {Cultures of the North Pacific Coast}, + publisher = {Chandler Press}, + address = {San Francisco}, + year = {1965}, + key = {Drucker (1965)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Tsimshian [nucl1649]} +} +@incollection{drucker1990, + author = {Drucker, P.}, + editor = {W. Suttles}, + title = {Central Coast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {453-475}, + year = {1990}, + key = {Drucker (1990)}, + lgcode = {Squamish [squa1248]} +} +@book{druckerandheizer1967, + author = {Drucker, Philip, and Robert F. Heizer}, + title = {To Make My Name Good}, + publisher = {University of California Press}, + address = {Berkeley, Calif.}, + year = {1967}, + key = {Drucker and Heizer (1967)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@inproceedings{dry1956, + author = {Dry, D. P. L.}, + title = {Some Aspects of Hausa Family Structure}, + booktitle = {Proceedings of the International West African Conference (1949)}, + pages = {158-163}, + year = {1956}, + key = {Dry (1956)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@book{dube1955, + author = {Dube, S. C.}, + title = {Indian Village}, + address = {Ithaca}, + year = {1955}, + key = {Dube (1955)}, + lgcode = {Telugu [telu1262]} +} +@article{dube1956, + author = {Dube, S. C.}, + title = {Cultural Factors in Rural Community Development}, + journal = {Journal of Asian Studies}, + volume = {16}, + pages = {19-30}, + year = {1956}, + key = {Dube (1956)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{dubie1953, + author = {Dubie, P.}, + title = {La vie materielle des Maures}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {111-252}, + year = {1953}, + key = {Dubie (1953)}, + lgcode = {Trarza [hass1238]} +} +@article{dubois1908, + author = {Du Bois, C. G.}, + title = {The Religion of the Luiseno Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {8}, + pages = {69-186}, + year = {1908}, + key = {Du Bois (1908)}, + lgcode = {Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253]} +} +@article{dubois1932, + author = {Du Bois, C. A.}, + title = {Tolowa Notes}, + journal = {American Anthropologist}, + volume = {34}, + pages = {248-262}, + year = {1932}, + key = {Du Bois (1932)}, + lgcode = {Tolowa [tolo1259]} +} +@book{dubois1935, + author = {Du Bois, C. A.}, + title = {Wintu Ethnography}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {1}, + pages = {1-148}, + year = {1935}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-002.pdf}, + key = {Du Bois (1935)}, + lgcode = {Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]} +} +@incollection{dubois1936, + author = {Du Bois, C.}, + title = {The Wealth Concept as an Integrative Factor in Tolowa-Tututni Culture}, + booktitle = {Essays in Anthropology Presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {49-65}, + year = {1936}, + key = {Du Bois (1936)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{dubois1938, + author = {Dubois, H. M.}, + title = {Monographie des Betsileo}, + journal = {Trav. Mem. Inst. Ethnol.}, + volume = {34}, + pages = {1-1510}, + year = {1938}, + key = {Dubois (1938)}, + lgcode = {Betsileo [bets1235]} +} +@article{dubois1940, + author = {Du Bois, C.}, + title = {How They Pay Debts in Alor}, + journal = {Asia}, + volume = {40}, + pages = {482-486}, + year = {1940}, + key = {Du Bois (1940)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1941, + author = {Du Bois, C.}, + editor = {L. Spier et al.}, + title = {Attitudes Toward Food and Hunger in Alor}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {272-281}, + year = {1941}, + key = {Du Bois (1941)}, + lgcode = {Alorese [abui1241]} +} +@book{dubois1944, + author = {Du Bois, C.}, + title = {The People of Alor}, + address = {Minneapolis}, + year = {1944}, + key = {Du Bois (1944)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1945, + author = {Du Bois, C.}, + editor = {A. Kardiner}, + title = {The Alorese}, + booktitle = {The Psychological Frontiers of Society}, + address = {New York}, + pages = {101-145}, + year = {1945}, + key = {Du Bois (1945)}, + lgcode = {Alorese [abui1241]} +} +@article{duchaillu1861, + author = {Du Chaillu, P. B.}, + title = {Observations on the People of Western Equatorial Africa}, + journal = {Trans. Ethnol. Soc. London, n. s.}, + volume = {1}, + pages = {305-315}, + year = {1861}, + glottolog_ref = {eballiso2009:7544}, + key = {Du Chaillu (1861)}, + lgcode = {Mpongwe [myen1241]} +} +@incollection{duff1951, + author = {Duff, Wilson}, + title = {Notes on Carrier Social Organization}, + booktitle = {Anthropology in British Columbia}, + volume = {2}, + pages = {28-34}, + year = {1951}, + key = {Duff (1951)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@misc{duff1952, + author = {Duff, Wilson}, + title = {The Upper Stalo Indians of the Fraser River of B. C.}, + publisher = {British Columbia Provincial Museum}, + address = {Victoria}, + series = {Anthropology in British Columbia Memoir}, + number = {1}, + pages = {1-136}, + year = {1952}, + key = {Duff (1952)}, + lgcode = {Stó:lō [chil1281]} +} +@article{duffsutherlanddunbar1915, + author = {Duff-Sutherland-Dunbar, G.}, + title = {Abors and Galongs}, + publisher = {Memoirs of the Asiatic Society of Bengal 5 (Extra number)}, + volume = {5 (Extra number)}, + year = {1915}, + glottolog_ref = {lapolla-tibeto-burman:524}, + key = {Duff-Sutherland-Dunbar (1915)}, + lgcode = {Adi [bori1243]} +} +@book{duffy1959, + author = {Duffy, J.}, + title = {Portuguese Africa}, + address = {Cambridge, Mass.}, + year = {1959}, + key = {Duffy (1959)}, + lgcode = {Mbundu [umbu1257]} +} +@article{dugast1944, + author = {Dugast, I.}, + title = {L'agriculture chez les Ndiki de population Banên}, + journal = {Bulletin de la Soci‚t‚ d'Etudes Cameroun, n. s.}, + volume = {8}, + pages = {7-130}, + year = {1944}, + key = {Dugast (1944)}, + lgcode = {Banen [tune1261]} +} +@article{dugast1949, + author = {Dugast, I.}, + title = {Inventaire ethnique du Sud-Cameroun}, + journal = {Mem. Inst. Franc. Afr. Noire, Cent. Cameroun, Ser. Pop.}, + publisher = {Dakar}, + series = {Mémoires de l'IFAN (Inst. Français de l'Afrique Noire), série 'populations'}, + volume = {1}, + pages = {1-159}, + year = {1949}, + glottolog_ref = {eballiso2009:52161}, + key = {Dugast (1949)}, + lgcode = {Ngumba [kwas1243]} +} +@book{dugast1955, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki: Vie matérielle}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {i}, + pages = {1-824}, + year = {1955}, + key = {Dugast (1955)}, + lgcode = {Banen [tune1261]} +} +@misc{dugast1959, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki. Vie sociale et familiale}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {ii}, + pages = {1-635}, + year = {1959}, + key = {Dugast (1959)}, + lgcode = {Banen [tune1261]} +} +@book{duggancronin1929, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa. Volume 2, Section 1, The Suto-Chuana Tribes, Subgroup 1, the Bechuana}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1929}, + key = {Duggan-Cronin (1929)}, + lgcode = {Tswana [tswa1253]} +} +@misc{duggancronin1931, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa, Vol. 2, Section 2, sub-group 2, the Bapedi Transvaal Basotho}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1931}, + key = {Duggan-Cronin (1931)}, + lgcode = {Pedi [tswe1238]}, + note = {with introductory article on the Bapedi by Werner Eiselen} +} +@article{dulphy1939, + author = {Dulphy, M.}, + title = {Coutume serere de la Petite-Cote}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {237-321}, + year = {1939}, + key = {Dulphy (1939)}, + lgcode = {Serer [sere1260]} +} +@article{dumarest1919, + author = {Dumarest, N.}, + title = {Notes on Chochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {27}, + pages = {137-237}, + year = {1919}, + key = {Dumarest (1919)}, + lgcode = {Cochiti [coch1273]} +} +@book{duncanjohnstoneandblair1932, + author = {Duncan-Johnstone, A., and H. A. Blair.}, + title = {Enquiry into the Constitution and Organisation of the Dagbon Kingdom}, + address = {Accra}, + year = {1932}, + key = {Duncan-Johnstone and Blair (1932)}, + lgcode = {Dagomba [dagb1246]} +} +@book{duncankemp1964, + author = {Duncan-Kemp, A. M.}, + title = {Where Strange Paths Go Down}, + publisher = {W. R. Smith and Paterson}, + address = {Brisbane}, + year = {1964}, + key = {Duncan-Kemp (1964)}, + lgcode = {Karuwali [karr1236]} +} +@article{dundas1915, + author = {Dundas, C.}, + title = {The Organization and Laws of Some Bantu Tribes of East Africa}, + journal = {Journ. Roy Anth. Inst.}, + volume = {45}, + pages = {234-306}, + year = {1915}, + glottolog_ref = {eballiso2009:2269}, + key = {Dundas (1915)}, + lgcode = {Kamba [kamb1297]} +} +@book{dundas1924, + author = {Dundas, C.}, + title = {Kilimanjaro and Its Peoples}, + address = {London}, + year = {1924}, + key = {Dundas (1924)}, + lgcode = {Chagga [moch1256]} +} +@article{dunglas1939, + author = {Dunglas, E.}, + title = {Coutumes et moeurs des Bete}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {361-451}, + year = {1939}, + key = {Dunglas (1939)}, + lgcode = {Bete [dalo1238]} +} +@book{duningorkavich1904, + author = {Dunin-Gorkavich, A. A.}, + title = {Tobol'skij Sever}, + address = {St. Petersburg}, + year = {1904}, + key = {Dunin-Gorkavich (1904)}, + lgcode = {Mansi [mans1258]} +} +@book{dunn1956, + author = {Dunn, H. d.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + address = {London}, + year = {1956}, + key = {Dunn (1956)}, + lgcode = {Gure [gbir1241]} +} +@incollection{dunn1971a, + author = {Dunn, E.}, + editor = {J. R. Millar}, + title = {The Importance of Religion in the Soviet Rural Community}, + booktitle = {The Soviet Rural Community}, + pages = {346-375}, + year = {1971}, + key = {Dunn (1971a)}, + lgcode = {Russians [russ1263]} +} +@incollection{dunn1971b, + author = {Dunn, S. P.}, + editor = {J. R. Millar}, + title = {Structure and Functions of the Soviet Rural Family}, + booktitle = {The Soviet Rural Community}, + address = {Urbana}, + pages = {325-345}, + year = {1971}, + key = {Dunn (1971b)}, + lgcode = {Russians [russ1263]} +} +@article{dunnanddunn1963, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Great Russian Peasant}, + journal = {Ethnology}, + address = {Urbana}, + volume = {2}, + pages = {320-338}, + year = {1963}, + key = {Dunn and Dunn (1963)}, + lgcode = {Russians [russ1263]} +} +@book{dunnanddunn1967, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Peasants of Central Russia}, + address = {New York}, + year = {1967}, + key = {Dunn and Dunn (1967)}, + lgcode = {Russians [russ1263]} +} +@book{dunning1959, + author = {Dunning, R. W.}, + title = {Social and Economic Change among the Northern Ojibwa}, + publisher = {University of Toronto Press}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959)}, + lgcode = {North Albany Ojibwa [wini1244], Pekangekum [lacs1238]} +} +@article{dunning1959a, + author = {Dunning, R. W.}, + title = {Rules of Residence and Ecology Among the Northern Ojibwa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {806-816}, + year = {1959}, + key = {Dunning (1959a)}, + lgcode = {Pekangekum [lacs1238]} +} +@book{dunning1959b, + author = {Dunning, R. W.}, + title = {Social and Economic Change Among the Northern Ojibwa}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959b)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238]} +} +@article{dupicq1931, + author = {Ardant du Picq.}, + title = {Les Dyerma}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {461-704}, + year = {1931}, + key = {du Picq (1931)}, + lgcode = {Zerma [zarm1239]} +} +@book{dupire1962a, + author = {Dupire, M.}, + title = {Peuls nomades: Etude descriptive des Wodaabe nomades du sahel nigerien}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {64}, + pages = {1-327}, + year = {1962}, + key = {Dupire (1962a)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1962b, + author = {Dupire, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Trade and Markets in the Economy of the Nomadic Fulani of Niger}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {335-62}, + year = {1962}, + key = {Dupire (1962b)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1963, + author = {Dupire, M.}, + editor = {D. Paulme}, + title = {The Position of Women in a Pastoral Society (Wodaabe)}, + booktitle = {Women of Tropical Africa}, + address = {Berkeley (and London)}, + pages = {47-92}, + year = {1963}, + key = {Dupire (1963)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@article{durand1929, + author = {Durand, O.}, + title = {Moeurs et instuttions d'une famille peule}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {12}, + pages = {1-85}, + year = {1929}, + key = {Durand (1929)}, + lgcode = {Futajalonke [pula1262]} +} +@book{durham1909, + author = {Durham, M. E.}, + title = {High Albania}, + address = {London}, + year = {1909}, + key = {Durham (1909)}, + lgcode = {Gheg [gheg1238]} +} +@book{durham1928, + author = {Durham, M. E.}, + title = {Some Tribal Origins, Laws and Customs of the Balkans}, + address = {London}, + year = {1928}, + key = {Durham (1928)}, + lgcode = {Gheg [gheg1238]} +} +@article{durlach1928, + author = {Durlach, T.}, + title = {The Relationship Systems of the Tlingit, Haida and Tsimshian}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {11}, + pages = {1-177}, + year = {1928}, + key = {Durlach (1928)}, + lgcode = {Tlingit [tlin1245]} +} +@book{dutertre1667, + author = {Du Tertre, J. B.}, + title = {Histoire générale des Antilles habitées par les Français, v. 2, 2d edit.}, + address = {Paris}, + year = {1667}, + key = {Du Tertre (1667)}, + lgcode = {Callinago [isla1278]} +} +@book{duttandgeib1987, + author = {Dutt, A.K. and Geib, M.M.}, + title = {Fully Annotated Atlas of South Asia}, + year = {1987}, + key = {Dutt and Geib (1987)}, + lgcode = {Toda [toda1252]} +} +@book{dutton1923, + author = {Dutton, Eric Aldhelm Torlough}, + title = {The Basuto of Basutoland}, + publisher = {Jonathan Cape}, + address = {London}, + year = {1923}, + key = {Dutton (1923)}, + lgcode = {Sotho [sout2807]} +} +@article{duvallee1925, + author = {Duvallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Duvallee (1925)}, + lgcode = {Bagirmi [bagi1246]} +} +@book{duveyrier1864, + author = {Duveyrier, H.}, + title = {Les Touareg du nord}, + address = {Paris}, + year = {1864}, + key = {Duveyrier (1864)}, + lgcode = {Azjer [ghat1242]} +} +@article{dysonhudson1963, + author = {Dyson-Hudson, N.}, + title = {The Karimojong Age System}, + journal = {Ethnology}, + volume = {2}, + pages = {353-401}, + year = {1963}, + glottolog_ref = {eballiso2009:32778}, + key = {Dyson-Hudson (1963)}, + lgcode = {Karamojong [nucl1430]} +} +@article{dzhanashvili1894, + author = {Dzhanashvili, M. G.}, + title = {Abkhaziya i Abkhaztsy}, + journal = {Zapiski Kavkazskago Otdiela Inperalorskago Russkago Geograficheskago Obshchestva}, + address = {Tiflis}, + volume = {16}, + pages = {1-59}, + year = {1894}, + key = {Dzhanashvili (1894)}, + lgcode = {Abkhaz [abkh1244]} +} +@book{earle1832, + author = {Earle, A.}, + title = {A Narrative of Nine Months' Residence in New Zealand in 1827}, + address = {London}, + year = {1832}, + key = {Earle (1832)}, + lgcode = {Māori [maor1246]} +} +@book{earthy1933, + author = {Earthy, E. D.}, + title = {Valenge Woman}, + address = {London}, + year = {1933}, + key = {Earthy (1933)}, + lgcode = {Lenge [leng1257]} +} +@incollection{ebihara1964, + author = {Ebihara, M.}, + editor = {LeBar, Frank M. and Hickey, Gerald C. and Musgrave, John K.}, + title = {Khmer}, + booktitle = {Ethnic Groups of Mainland Southeast Asia}, + publisher = {Human Relations Area Files Press}, + address = {New Haven}, + pages = {94-105}, + year = {1964}, + glottolog_ref = {sala:2514}, + key = {Ebihara (1964)}, + lgcode = {Khmer [cent1989]} +} +@incollection{edel1937, + author = {Edel, M. M.}, + editor = {M. Mead}, + title = {The Bachiga of East Africa}, + booktitle = {Cooperation and Competition Among Primitive Peoples}, + address = {New York}, + pages = {127-152}, + year = {1937}, + glottolog_ref = {eballiso2009:51249}, + key = {Edel (1937)}, + lgcode = {Kiga [chig1238]} +} +@book{edel1957, + author = {Edel, M. M.}, + title = {The Chiga of Western Uganda}, + publisher = {New York: Oxford Univ. Press; International African Inst. (IAI)}, + address = {New York}, + year = {1957}, + glottolog_ref = {eballiso2009:9341}, + key = {Edel (1957)}, + lgcode = {Kiga [chig1238]} +} +@article{eder1978, + author = {Eder, J.F.}, + title = {The Caloric Returns to Food Collecting: Disruption and Change among the Batak of the Philippine Tropical Forest}, + journal = {Human Ecology}, + volume = {6}, + number = {1}, + pages = {55-69}, + year = {1978}, + key = {Eder (1978)}, + lgcode = {Palawan Batak [bata1301]} +} +@article{eder1984, + author = {Eder, J.F.}, + title = {The Impact of Subsistence Change on Mobility and Settlement Pattern in a Tropical Forest Foraging Economy: Some Implications for Archeology}, + journal = {American Anthropologist}, + volume = {86}, + pages = {837-853}, + year = {1984}, + key = {Eder (1984)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{eder1987, + author = {Eder, J.F.}, + title = {On the Road to Tribal Extinction: Depopulation, Deculturation, and Adaptive Well-Being among the Batak of the Philippines}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1987}, + key = {Eder (1987)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{edwards1962, + author = {Edwards, A. C.}, + title = {The Ovimbundu under Two Sovereignties}, + address = {London}, + year = {1962}, + key = {Edwards (1962)}, + lgcode = {Mbundu [umbu1257]} +} +@article{eells1877, + author = {Eells, M.}, + title = {Twana Indians of the Skokomish Reservation}, + journal = {Bulletins of the U. S. Geographical and Geological survey of the Territories}, + volume = {3}, + pages = {57-114}, + year = {1877}, + key = {Eells (1877)}, + lgcode = {Twana [twan1247]} +} +@article{eells1884, + author = {Eells, M.}, + title = {Census of the Challam and Twana Indians of Washington}, + journal = {American Antiquarian and Oriental Journal}, + volume = {6}, + pages = {35-38}, + year = {1884}, + key = {Eells (1884)}, + lgcode = {Klallam [clal1241], Twana [twan1247]} +} +@article{eells1887a, + author = {Eells, M.}, + title = {Decrease of Population among the Indians of Puget Sound}, + journal = {American Antiquarian and Oriental Journal}, + volume = {9}, + pages = {271-276}, + year = {1887}, + key = {Eells (1887a)}, + lgcode = {Twana [twan1247]} +} +@article{eells1887b, + author = {Eells, M.}, + title = {The Twana, Chemakum and Clallum Indians of Washington}, + journal = {Ann. Rep. Smiths. Inst.}, + volume = {1886-87}, + pages = {605-681}, + year = {1887}, + key = {Eells (1887b)}, + lgcode = {Klallam [clal1241]} +} +@book{efimenko1877, + author = {Efimenko, A.}, + title = {Narodnye juridicheskie obychai loparej, karelov i samoedov Arhangel'skoj Guberii (Traditional Legal Customs of the Saami, Karelians, and Samoyeds of the Arhangel'skajaG uberia)}, + address = {St. Petersburg}, + year = {1877}, + key = {Efimenko (1877)}, + lgcode = {Karelians [livv1243]} +} +@book{efremova1982, + author = {Efremova, L. S.}, + title = {Latyshskajak rest'janskajase m'jav Latgale, 1860-1939 (Latvian Rural Family in Latgal)}, + address = {Riga}, + year = {1982}, + key = {Efremova (1982)}, + lgcode = {Latvians [latv1249]} +} +@article{egboh1971, + author = {Egboh, E. O.}, + title = {The beginning of the end of traditional religion in Iboland, Southeastern Nigeria}, + journal = {Civilizations}, + volume = {21}, + pages = {269-279}, + year = {1971}, + key = {Egboh (1971)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972a, + author = {Egboh, E. O.}, + title = {A reassessment of the concept of Ibo traditional religion}, + journal = {Numen}, + volume = {19}, + pages = {68-79}, + year = {1972}, + key = {Egboh (1972a)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972b, + author = {Egboh, E. O.}, + title = {Polygamy in Iboland, South-eastern Nigeria: with special reference to polygamy practice among Christian Ibos}, + journal = {Civilizations}, + volume = {22}, + pages = {431-444}, + year = {1972}, + key = {Egboh (1972b)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh19734, + author = {Egboh, E. O.}, + title = {The place of women in the Ibo society of Southeastern Nigeria, from earliest times to the present}, + journal = {Civilizations}, + volume = {23-24}, + pages = {305-316}, + year = {1973/4}, + key = {Egboh (1973/4)}, + lgcode = {Igbo [nucl1417]} +} +@book{egede1818, + author = {Egede, H.}, + title = {A description of Greenland}, + publisher = {Allman}, + address = {London}, + year = {1818}, + key = {Egede (1818)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{egerton1939, + author = {Egerton, F. C. C.}, + title = {African Majesty}, + address = {New York}, + year = {1939}, + key = {Egerton (1939)}, + lgcode = {Bamileke [fefe1239]} +} +@incollection{eggan1937, + author = {Eggan, F.}, + editor = {F. Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {35-98}, + year = {1937}, + key = {Eggan (1937)}, + lgcode = {Arapaho [arap1274]} +} +@article{eggan1937a, + author = {Eggan, F.}, + title = {Historical Changes in the Choctaw Kinship System}, + journal = {American Anthropologist}, + volume = {39}, + pages = {34-52}, + year = {1937}, + key = {Eggan (1937a)}, + lgcode = {Choctaw [choc1276], Yuchi [yuch1247]} +} +@incollection{eggan1937b, + author = {Eggan, F.}, + editor = {Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes}, + address = {Chicago}, + pages = {33-95}, + year = {1937}, + key = {Eggan (1937b)}, + lgcode = {Arapaho [arap1274], Cheyenne [chey1247]} +} +@book{eggan1950, + author = {Eggan, F.}, + title = {Social Organization of the Western Pueblo}, + address = {Chicago}, + year = {1950}, + key = {Eggan (1950)}, + lgcode = {Acoma [acom1246], Hopi [hopi1249], Laguna [acom1246], Zuni [zuni1245]} +} +@article{eggan1960, + author = {Eggan, F.}, + title = {The Sagada Igorots of Northern Luzon}, + journal = {Viking Fund. Publ. Anth.}, + volume = {29}, + pages = {24-50}, + year = {1960}, + key = {Eggan (1960)}, + lgcode = {Sagada [nort2877]} +} +@book{egganandpandey1979, + author = {Eggan, F. and Pandey, T.N.}, + title = {Zuni History, 1850 - 1970}, + year = {1979}, + key = {Eggan and Pandey (1979)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{eglar1957, + author = {Eglar, Z. S.}, + editor = {S. Maron}, + title = {Panjabi Village Life}, + booktitle = {Pakistan: Society and Culture}, + address = {Chapel Hill}, + pages = {62-80}, + year = {1957}, + key = {Eglar (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{eglar1960, + author = {Eglar, Z. S.}, + title = {A Punjabi Village in Pakistan}, + address = {New York}, + year = {1960}, + key = {Eglar (1960)}, + lgcode = {Punjabi [west2386]} +} +@book{ehrenfels1952, + author = {Ehrenfels, U. R.}, + title = {Kadar of Cochin}, + publisher = {Madras: University of Madras}, + address = {Madras}, + series = {Anthropological series}, + volume = {1}, + pages = {319}, + year = {1952}, + glottolog_ref = {hh:e:Ehrenfels:Kadar}, + key = {Ehrenfels (1952)}, + lgcode = {Kadar [kada1242]} +} +@article{ehrenreich1887, + author = {Ehrenreich, P.}, + title = {Über die Botocudos der Brasilianischen Provinzen Espiritu Santo and Minas Geraes}, + journal = {Zeitschrift für Ethnologie}, + volume = {19}, + pages = {1-46, 49-82}, + year = {1887}, + key = {Ehrenreich (1887)}, + lgcode = {Aimoré [kren1239]} +} +@article{ehrenreich1891, + author = {Ehrenreich, P.}, + title = {Beiträge zur Völkerkunde Brasiliens}, + journal = {Veröffentlichungen aus dem Koniglichen Museum fur Völkerkunde}, + address = {Leipzig}, + volume = {2}, + pages = {1-80}, + year = {1891}, + glottolog_ref = {fabreall2009ann:3137}, + key = {Ehrenreich (1891)}, + lgcode = {Carajá [kara1500]} +} +@article{ehrmann1940, + author = {Ehrmann, W. W.}, + title = {The Timucua Indians of Sixteenth Century Florida}, + journal = {Florida Hist. Quart.}, + volume = {18}, + pages = {168-191}, + year = {1940}, + key = {Ehrmann (1940)}, + lgcode = {Timucua [timu1245]} +} +@book{eibleibesfeldt1948, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1948}, + key = {Eibl-Eibesfeldt (1948)}, + lgcode = {!Ko [huaa1248]} +} +@misc{eibleibesfeldt1972, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1972}, + key = {Eibl-Eibesfeldt (1972)}, + lgcode = {!Ko [huaa1248]} +} +@article{eichhorn191124, + author = {Eichhorn, A.}, + title = {Beiträge zur Kenntnis der Waschambaa}, + journal = {Baessler-Archiv}, + volume = {1; 3; 7; 8}, + pages = {155-222; 69-131; 56-98; 1-53}, + year = {1911-24}, + key = {Eichhorn (1911-24)}, + lgcode = {Shambaa [sham1280]} +} +@book{eilers1934, + author = {Eilers, A.}, + editor = {G. Thilenius}, + title = {Inseln um Ponape}, + address = {Hamburg}, + series = {Ergebnisse der Suedsee-Expedition 1908-1910}, + volume = {2, B, 8}, + pages = {1-464}, + year = {1934}, + key = {Eilers (1934)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{ekblaw192728, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment}, + journal = {Ann. Assoc. Amer. Geog.}, + volume = {17; 18}, + pages = {147-198; 1-24}, + year = {1927-28}, + key = {Ekblaw (1927-28)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1928, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment (Continued)}, + journal = {Annals of the Association of American Geographers}, + volume = {18}, + number = {1}, + pages = {1-44}, + year = {1928}, + key = {Ekblaw (1928)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1948, + author = {Ekblaw, W. E.}, + title = {Significance of Movement among the Polar Eskimo}, + journal = {Bulletin of the Massachusetts Archaeological Society}, + volume = {10}, + pages = {1-4}, + year = {1948}, + key = {Ekblaw (1948)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekvall1961, + author = {Ekvall, Robert B.}, + title = {The nomadic pattern of living among the Tibetans as preparation for war}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1250-63}, + year = {1961}, + key = {Ekvall (1961)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{ekvall1964, + author = {Ekvall, Robert B.}, + title = {Peace and war among the Tibetan nomads}, + journal = {American Anthropologist}, + volume = {66}, + pages = {1119-48}, + year = {1964}, + key = {Ekvall (1964)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{eljashevish1994, + author = {Eljashevish, B. S.}, + title = {Istoriko-Etnograficheskioec herki (1926-1929) (Historical-Ethnographic Essays [1926-1929])}, + address = {Moscow}, + year = {1994}, + key = {Eljashevish (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{elkin1940a, + author = {Elkin, A. P.}, + title = {Kinship in South Australia}, + journal = {Oceania}, + volume = {8}, + pages = {419-452}, + year = {1940}, + key = {Elkin (1940a)}, + lgcode = {Diyari [dier1241]} +} +@incollection{elkin1940b, + author = {Elkin, H.}, + editor = {R. Linton}, + title = {The Northern Arapaho of Wyoming}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {207-258}, + year = {1940}, + key = {Elkin (1940b)}, + lgcode = {Arapaho [arap1274]} +} +@article{elkin1950, + author = {Elkin, A.}, + title = {The Complexity of Social Organization in Arnhem Land}, + journal = {Southwestern Journal of Anthropology}, + volume = {6}, + pages = {1-20}, + year = {1950}, + key = {Elkin (1950)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@article{elkin1953, + author = {Elkin, A. P.}, + title = {Delayed Exchange in the Wabag Sub-District}, + journal = {Oceania}, + volume = {23}, + pages = {161-201}, + year = {1953}, + key = {Elkin (1953)}, + lgcode = {Enga [enga1252]} +} +@book{elliott1886, + author = {Elliott, H. W.}, + title = {Our Arctic Province}, + address = {New York}, + year = {1886}, + key = {Elliott (1886)}, + lgcode = {Aleut [east2533]} +} +@misc{ellis1905, + author = {Ellis, H.}, + title = {Studies in the psychology of sex (vol 1)}, + publisher = {Random House}, + address = {New York}, + year = {1905}, + key = {Ellis (1905)}, + lgcode = {Tahitians [tahi1242]} +} +@book{ellis1914, + author = {Ellis, G. W.}, + title = {Negro Culture in West Africa}, + address = {New York}, + year = {1914}, + key = {Ellis (1914)}, + lgcode = {Vai [vaii1241]} +} +@article{elmendorf1948, + author = {Elmendorf, W. W.}, + title = {The Cultural Setting of the Twana Secret Society}, + journal = {American Anthropologist}, + volume = {50}, + pages = {625-633}, + year = {1948}, + url = {http://www.jstor.org/stable/663758}, + key = {Elmendorf (1948)}, + lgcode = {Twana [twan1247]} +} +@book{elmendorf1960, + author = {Elmendorf, W. W.}, + title = {The Structure of Twana Culture with Comparative Notes on the Structure of Yurok Culture}, + publisher = {Washington State University}, + address = {Pullman}, + series = {Research Studies Monographic Supplement}, + volume = {28}, + pages = {1-576}, + year = {1960}, + key = {Elmendorf (1960)}, + lgcode = {Twana [twan1247], Yurok [yuro1248]} +} +@misc{elmendorf1963, + author = {Elmendorf, W. W.}, + year = {1963}, + howpublished = {Personal communication}, + key = {Elmendorf (1963)}, + lgcode = {Nez Perce [nezp1238]} +} +@article{elmley1927, + author = {Elmley, E. D.}, + title = {The Turkana of Kolosia District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {157-201}, + year = {1927}, + key = {Elmley (1927)}, + lgcode = {Turkana [turk1308]} +} +@book{elwin1939, + author = {Elwin, V.}, + title = {The Baiga}, + address = {London}, + year = {1939}, + key = {Elwin (1939)}, + lgcode = {Baiga [chha1249]} +} +@book{elwin1950, + author = {Elwin, V.}, + title = {Bondo Highlanders}, + publisher = {Bombay: Oxford Univ. Press}, + address = {London}, + pages = {290}, + year = {1950}, + glottolog_ref = {hh:e:Elwin:Bondo}, + key = {Elwin (1950)}, + lgcode = {Khond [kuii1252]} +} +@book{elwin1957, + author = {Elwin, V.}, + title = {The Muria and Their Ghotul}, + address = {Bombay}, + year = {1957}, + key = {Elwin (1957)}, + lgcode = {Muria Gond [west2408]} +} +@misc{ember1954, + author = {Ember, M.}, + year = {1954}, + howpublished = {Unpublished ethnographic notes}, + key = {Ember (1954)}, + lgcode = {Byelorussians [bela1254]} +} +@article{ember1959, + author = {Ember, M.}, + title = {The Nonunilinear Descent Groups of Samoa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {573-577}, + year = {1959}, + key = {Ember (1959)}, + lgcode = {American Samoans [samo1305]} +} +@article{ember1962, + author = {Ember, M.}, + title = {Political Authority and the Structure of Kinship in Aboriginal Samoa}, + journal = {American Anthropologist}, + volume = {64}, + pages = {964-971}, + year = {1962}, + key = {Ember (1962)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{emeneau1939, + author = {Emeneau, M. B.}, + title = {Kinship and Marriage Among the Coorgs}, + journal = {Journ. Roy. As. Soc. Bengal, Letters}, + volume = {4}, + pages = {123-147}, + year = {1939}, + key = {Emeneau (1939)}, + lgcode = {Kodavas [koda1255]} +} +@incollection{emeneau1941, + author = {Emeneau, M. B.}, + editor = {Spier, Hallowell, and Newman}, + title = {Language and Social Forms: A Study of Toda Kinship Terms and Double Descent}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {158-179}, + year = {1941}, + key = {Emeneau (1941)}, + lgcode = {Toda [toda1252]} +} +@book{emmons1911, + author = {Emmons, G. T.}, + title = {The Tahltan Indians}, + publisher = {University of Pennsylvania Museum}, + address = {Philadelphia}, + series = {University of Pennsylvania Museum Anthropological Publications}, + volume = {4}, + number = {1}, + pages = {1-120}, + year = {1911}, + key = {Emmons (1911)}, + lgcode = {Tahltan [tahl1239]} +} +@article{emory1965, + author = {Emory, K. P.}, + title = {Kapingamarangi}, + journal = {Bull. Bishop Mus.}, + volume = {228}, + pages = {1-357}, + year = {1965}, + key = {Emory (1965)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{empain1922, + author = {Empain, A.}, + title = {Les Bakela de la Loto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {46}, + pages = {206-265}, + year = {1922}, + glottolog_ref = {eballiso2009:49543}, + key = {Empain (1922)}, + lgcode = {Kela [yela1238]} +} +@book{endle1911, + author = {Endle, S.}, + title = {The Kacharis}, + publisher = {London: MacMillan}, + address = {London}, + pages = {184}, + year = {1911}, + glottolog_ref = {hh:ew:Endle:Kacharis}, + key = {Endle (1911)}, + lgcode = {Kachari [kach1279]} +} +@book{englehardt1899, + author = {Englehardt, E. A.}, + title = {A Russian Province of the North}, + address = {Westminster}, + year = {1899}, + key = {Englehardt (1899)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@incollection{entwistle1953, + author = {Entwistle, William J.}, + editor = {H. V. Livermore}, + title = {Religion}, + booktitle = {Portual and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Entwistle (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{erdland1914, + author = {Erdland, P. A.}, + title = {Die Marshall-Insulaner}, + publisher = {Munster}, + address = {Wien}, + year = {1914}, + key = {Erdland (1914)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241], Marshallese - Jaluit atoll [rali1241]} +} +@article{erickson1943, + author = {Erickson, E. H.}, + title = {Observations on the Yurok: Childhood and World Image}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {25}, + pages = {257-302}, + year = {1943}, + key = {Erickson (1943)}, + lgcode = {Yurok [yuro1248]} +} +@article{erikson1939, + author = {Erikson, Erik H.}, + title = {Observations on Sioux education}, + journal = {Journal of Psychology}, + volume = {7}, + pages = {101-56}, + year = {1939}, + key = {Erikson (1939)}, + lgcode = {Teton [lako1247]} +} +@book{erikson1950, + author = {Erikson, Erik H.}, + title = {Childhood and society}, + publisher = {W. W. Norton}, + address = {New York}, + year = {1950}, + key = {Erikson (1950)}, + lgcode = {Teton [lako1247]} +} +@book{erman1923, + author = {Erman, A.}, + editor = {H. Ranke}, + title = {Aegypten und aegyptisches Leben im Altertum}, + address = {Tübingen}, + year = {1923}, + key = {Erman (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{espinosa1907, + author = {Espinosa, A. de.}, + editor = {Markham}, + title = {The Guanches of Teneriffe}, + address = {London}, + year = {1907}, + key = {Espinosa (1907)}, + lgcode = {Guanche [guan1277]} +} +@book{espinosa1935, + author = {Espinosa, L.}, + title = {Los Tupi del oriente peruano}, + address = {Madrid}, + year = {1935}, + key = {Espinosa (1935)}, + lgcode = {Cocama [coca1259]} +} +@article{essene1940, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1940}, + key = {Essene (1940)}, + lgcode = {Lassik [wail1244]} +} +@article{essene1942, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1942}, + key = {Essene (1942)}, + lgcode = {Cahto [kato1244], Northern Pomo [nort2966], Yuki [yuki1243]} +} +@incollection{etoeva1977, + author = {Etoeva, Z. I.}, + editor = {A. A. Shennikov}, + title = {Poselenija i zhilishcha vepsov kontsa XIX- nachala XX v. (Settlements and Homes of the Veps in the Late Nineteenth and Early Twentieth Centuries)}, + booktitle = {Etnografija narodov Vostochnoj Evropy (Ethnography of the East European Peoples)}, + address = {Leningrad}, + pages = {125-39}, + year = {1977}, + key = {Etoeva (1977)}, + lgcode = {Veps [veps1250]} +} +@article{euler1954, + author = {Euler, Robert C.}, + title = {Notes on Land Tenure at Isleta Pueblo}, + journal = {El palacio}, + volume = {61}, + pages = {368-373}, + year = {1954}, + key = {Euler (1954)}, + lgcode = {Isleta [sout2961]} +} +@book{euler1972, + author = {Euler, R.C.}, + title = {The Paiute People}, + address = {Phoenix}, + series = {Indian Tribal Series}, + year = {1972}, + key = {Euler (1972)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{eulerandfowler1966, + author = {Euler, R.C., and C. Fowler}, + title = {Southern Paiute Ethnohistory}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 28., University of Utah Anthropological Papers No. 78.}, + year = {1966}, + key = {Euler and Fowler (1966)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{evans1922, + author = {Evans, I. H. N.}, + title = {Among Primitive Peoples in North Borneo}, + publisher = {London: Seeley}, + address = {London}, + pages = {313}, + year = {1922}, + glottolog_ref = {hh:he:Evans:Borneo}, + key = {Evans (1922)}, + lgcode = {Kadazan-Dusun [cent2100]} +} +@book{evans1937, + author = {Evans, I. H. N.}, + title = {The Negritos of Malaya}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1937}, + key = {Evans (1937)}, + lgcode = {Semang [kens1248]} +} +@book{evans1957, + author = {Evans, E. E.}, + title = {Irish Folk-Ways}, + address = {London}, + year = {1957}, + key = {Evans (1957)}, + lgcode = {Irish [iris1253]} +} +@article{evanspritchard1927, + author = {Evans-Pritchard, E. E.}, + title = {A Preliminary Account of the Ingassana Tribe}, + journal = {Sudan Notes and Records}, + volume = {10}, + pages = {69-83}, + year = {1927}, + key = {Evans-Pritchard (1927)}, + lgcode = {Ingassana [gaam1241]} +} +@article{evanspritchard1929, + author = {Evans-Pritchard, E. E.}, + title = {The Bongo}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {1-61}, + year = {1929}, + glottolog_ref = {hh:e:Evans-Pritchard:Bongo}, + key = {Evans-Pritchard (1929)}, + lgcode = {Bongo [bong1285]} +} +@article{evanspritchard1932a, + author = {Evans-Pritchard, E. E.}, + title = {Ethnological Observations in Dar Fung}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {1-61}, + year = {1932}, + glottolog_ref = {hh:hw:Evans-Pritchard:Fung}, + key = {Evans-Pritchard (1932a)}, + lgcode = {Meban [maba1273]} +} +@article{evanspritchard1932b, + author = {Evans-Pritchard, E. E.}, + title = {Heredity and Gestation, as the Azande See Them}, + journal = {Sociologus}, + volume = {3}, + pages = {400-414}, + year = {1932}, + key = {Evans-Pritchard (1932b)}, + lgcode = {Azande [zand1248]} +} +@incollection{evanspritchard1936, + author = {Evans-Pritchard, Edward Evan}, + editor = {L. H. Dudley Buxton}, + title = {Daily life of the Nuer in dry-season camps}, + booktitle = {Custom is King}, + address = {London}, + series = {Hutchinson's Scientific and Technical Publications}, + pages = {291-299}, + year = {1936}, + key = {Evans-Pritchard (1936)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1937, + author = {Evans-Pritchard, E. E.}, + title = {Witchcraft, Oracles and Magic Among the Azande}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1937}, + glottolog_ref = {eballiso2009:34997}, + key = {Evans-Pritchard (1937)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1940, + author = {Evans-Pritchard, E. E.}, + title = {The Political System of the Anuak}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {4}, + pages = {1-164}, + year = {1940}, + key = {Evans-Pritchard (1940)}, + lgcode = {Anuak [anua1242]} +} +@incollection{evanspritchard1940a, + author = {Evans-Pritchard, E. E.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Nuer of the Southern Sudan}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {Oxford}, + pages = {272-292}, + year = {1940}, + glottolog_ref = {eballiso2009:34993}, + key = {Evans-Pritchard (1940a)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1940b, + author = {Evans-Pritchard, E. E.}, + title = {The Nuer}, + address = {Oxford}, + year = {1940}, + key = {Evans-Pritchard (1940b)}, + lgcode = {Nuer [nuer1246]} +} +@article{evanspritchard1940c, + author = {Evans-Pritchard, E. E.}, + title = {The Relationship Between the Anuak and the Fori}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {337-340}, + year = {1940}, + glottolog_ref = {eballiso2009:35002}, + key = {Evans-Pritchard (1940c)}, + lgcode = {Pari [pari1256]} +} +@article{evanspritchard1947, + author = {Evans-Pritchard, E. E.}, + title = {Further Observations on the Political System of the Anuak}, + journal = {Sudan Notes and Records}, + volume = {28}, + pages = {62-97}, + year = {1947}, + glottolog_ref = {eballiso2009:40844}, + key = {Evans-Pritchard (1947)}, + lgcode = {Anuak [anua1242]} +} +@book{evanspritchard1948, + author = {Evans-Pritchard, E. E.}, + title = {The Divine Kingship of the Shilluk of the Nilotic Sudan}, + address = {Cambridge}, + year = {1948}, + key = {Evans-Pritchard (1948)}, + lgcode = {Shilluk [shil1265]} +} +@article{evanspritchard1949a, + author = {Evans-Pritchard, E. E.}, + title = {Luo Tribes and Clans}, + journal = {Rhodes-Liv. Journ.}, + volume = {7}, + pages = {24-40}, + year = {1949}, + glottolog_ref = {eballiso2009:2793}, + key = {Evans-Pritchard (1949a)}, + lgcode = {Luo [luok1236]} +} +@book{evanspritchard1949b, + author = {Evans-Pritchard, E. E.}, + title = {The Sanusi of Cyrenaica}, + address = {Oxford}, + year = {1949}, + key = {Evans-Pritchard (1949b)}, + lgcode = {Sanusi [liby1240]} +} +@article{evanspritchard1950a, + author = {Evans-Pritchard, E. E.}, + title = {Marriage Customs of the Kenya Luo}, + journal = {Africa}, + volume = {20}, + pages = {132-142}, + year = {1950}, + key = {Evans-Pritchard (1950a)}, + lgcode = {Luo [luok1236]} +} +@article{evanspritchard1950b, + author = {Evans-Pritchard, Edward Evan.}, + title = {The Nuer family}, + journal = {Sudan Notes and Records}, + volume = {31}, + pages = {21-42}, + year = {1950}, + key = {Evans-Pritchard (1950b)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1951, + author = {Evans-Pritchard, E. E.}, + title = {Kinship and Marriage Among the Nuer}, + address = {Oxford}, + year = {1951}, + key = {Evans-Pritchard (1951)} +} +@book{evanspritchard1956, + author = {Evans-Pritchard, E. E.}, + title = {The Azande System of Agriculture}, + address = {London}, + year = {1956}, + key = {Evans-Pritchard (1956)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1957, + author = {Evans-Pritchard, E. E.}, + title = {The Zande Royal Court}, + journal = {Zaire}, + volume = {11}, + pages = {361-389, 493-511, 687-713}, + year = {1957}, + key = {Evans-Pritchard (1957)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1963, + author = {Evans-Pritchard, E. E.}, + title = {The Zande State}, + address = {London}, + year = {1963}, + key = {Evans-Pritchard (1963)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1971, + author = {Evans-Pritchard, E. E.}, + title = {The Azande: history and political institutions}, + publisher = {Oxford: Clarendon Press}, + pages = {439}, + year = {1971}, + glottolog_ref = {hh:e:Evans-Pritchard:Azande:History}, + key = {Evans-Pritchard (1971)}, + lgcode = {Azande [zand1248]}, + note = {revision of earlier articles} +} +@book{evanspritchard1974, + editor = {Evans-Pritchard, E. E.}, + title = {Man and Woman among the Azande}, + address = {London}, + year = {1974}, + key = {Evans-Pritchard (1974)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1974a, + author = {Evans-Pritchard, E. E.}, + title = {Bild der Völker. Die Brockhaus Völkerkunde, Bd. 6}, + year = {1974}, + key = {Evans-Pritchard (1974a)}, + lgcode = {Semang [kens1248]} +} +@article{even1931, + author = {Even, A.}, + title = {Quelques coutumes des tribus Badondos et Bassoundis}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {77-94}, + year = {1931}, + glottolog_ref = {hh:e:Even:Badondos}, + key = {Even (1931)}, + lgcode = {Sundi [koon1244]} +} +@book{ewers1937, + author = {Ewers, John C.}, + title = {Teton Dakota ethnology and history}, + publisher = {National Park Service}, + address = {Berkeley}, + year = {1937}, + key = {Ewers (1937)}, + lgcode = {Teton [lako1247]} +} +@book{ewers1955, + author = {Ewers, John C.}, + title = {The Horse in Blackfoot Indian Culture}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {159}, + pages = {1-374}, + year = {1955}, + key = {Ewers (1955)}, + lgcode = {Bitterroot Salish [kali1309], Blackfoot [pieg1239], Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa Apache [kiow1264], Piegan [pieg1239], White Knife Shoshoni [west2622]} +} +@book{ewers1958, + author = {Ewers, John C.}, + title = {The Blackfeet}, + address = {Norman}, + year = {1958}, + key = {Ewers (1958)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ewers1971, + author = {Ewers, John C.}, + title = {The Blackfeet: Raiders on The Northwestern Plains}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1971}, + key = {Ewers (1971)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ezell1961, + author = {Ezell, Paul H.}, + title = {Hispanic Acculturation of Gila River Pima}, + series = {American Anthropological Association Memoir}, + volume = {90}, + pages = {1-171}, + year = {1961}, + key = {Ezell (1961)}, + lgcode = {Pima [akim1239]} +} +@article{faidherbe1882, + author = {Faidherbe, L. L. C. V-8.}, + title = {Grammaire et vocabulaire de la langue Peul}, + publisher = {Paris: Miasonneuve et Libraires}, + year = {1882}, + glottolog_ref = {hh:s:Faidherbe:Poul}, + key = {Faidherbe (1882)}, + lgcode = {Bororo Fulani [boro1274]} +} +@article{fainberg1962, + author = {Fainberg, L. A.}, + title = {Terminologija rodstva nganasan kak istoricheskij istochnik (Nganasan Kinship Terminology as a Source for the Study of Their History)}, + journal = {Trudy Instituta Etnografi}, + volume = {78}, + pages = {226-37}, + year = {1962}, + key = {Fainberg (1962)}, + lgcode = {Nganasan [ngan1291]} +} +@book{fainsod1958, + author = {Fainsod, M.}, + title = {How Russia is Ruled}, + address = {Cambridge}, + year = {1958}, + key = {Fainsod (1958)}, + lgcode = {Russians [russ1263]} +} +@incollection{falad1963, + author = {Falad, S.}, + editor = {D. Paulme}, + title = {Women of Dakar and the Surrounding Urban Area}, + booktitle = {Women of Africa}, + address = {London}, + pages = {217-229}, + year = {1963}, + key = {Falad (1963)}, + lgcode = {Wolof [nucl1347]} +} +@book{falkenberg1962, + author = {Falkenberg, J.}, + title = {Kin and Totem}, + address = {Oslo}, + year = {1962}, + key = {Falkenberg (1962)}, + lgcode = {Murriny Patha [murr1258]} +} +@book{fallers1956, + author = {Fallers, L. A.}, + title = {Bantu Bureaucracy}, + address = {Cambridge}, + year = {1956}, + key = {Fallers (1956)}, + lgcode = {Soga [soga1242]} +} +@book{fallers1960, + author = {Fallers, M. C.}, + title = {The Eastern Lacustrine Bantu}, + address = {London}, + year = {1960}, + key = {Fallers (1960)}, + lgcode = {Ganda [gand1255], Soga [soga1242]} +} +@article{farabee1918, + author = {Farabee, W. C.}, + title = {The Central Arawaks}, + journal = {Univ. Penn. Mus. Anth. Publ.}, + publisher = {Philadephia: University Museum}, + series = {University Museum Anthropological Publication}, + volume = {9}, + pages = {13-121}, + year = {1918}, + glottolog_ref = {hh:hew:Farabee:CArawaks}, + key = {Farabee (1918)}, + lgcode = {Wapishana [wapi1253]} +} +@article{farabee1924, + author = {Farabee, W. C.}, + title = {The Central Caribs}, + journal = {Univ. Penn. Mus. Anth. Pap.}, + publisher = {University of Pennsylvania}, + series = {Anthropological Publications of the University Museum}, + volume = {10}, + pages = {13-152}, + year = {1924}, + glottolog_ref = {mpieva:Farabee1924Thecentr}, + key = {Farabee (1924)}, + lgcode = {Macushi [macu1259]} +} +@article{faron1961a, + author = {Faron, L. C.}, + title = {A Reinterpretation of Choco Society}, + journal = {Southw. Journ. Anth.}, + volume = {17}, + pages = {94-102}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Choco11}, + key = {Faron (1961a)}, + lgcode = {Emberá [nort2972]} +} +@article{faron1961b, + author = {Faron, L. C.}, + title = {Mapuche Social Structure}, + journal = {Illinois Studies in Anthropology}, + publisher = {Urbana: University of Illinois Press}, + volume = {1}, + pages = {1-247}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Mapuche415}, + key = {Faron (1961b)}, + lgcode = {Mapuche [mapu1245]} +} +@article{faron1962, + author = {Faron, L. C.}, + title = {Marriage residence and domestic groups among the Panamanian Chocó}, + journal = {Ethnology}, + volume = {1}, + pages = {13-38}, + year = {1962}, + glottolog_ref = {fabreall2009ann:Choco12}, + key = {Faron (1962)}, + lgcode = {Emberá [nort2972]} +} +@book{faron1964, + author = {Faron, L. C.}, + title = {Hawks of the Sun}, + publisher = {Pittsburgh}, + address = {Pittsburgh}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Mapuche421}, + key = {Faron (1964)}, + lgcode = {Mapuche [mapu1245]} +} +@book{faron1968, + author = {Faron, L. C.}, + title = {The Mapuche Indians of Chile}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + year = {1968}, + glottolog_ref = {fabreall2009ann:Mapuche422}, + key = {Faron (1968)}, + lgcode = {Mapuche [mapu1245]} +} +@misc{fathauer1954a, + author = {Fathauer, G. H.}, + title = {Kinship and Social Structure of the Trobriand Islands}, + year = {1954}, + howpublished = {Manuscript}, + key = {Fathauer (1954a)}, + lgcode = {Trobriands [kili1267]} +} +@article{fathauer1954b, + author = {Fathauer, George H.}, + title = {The Structure and Causation of Mohave Warfare}, + journal = {Southwestern Journal of Anthropology}, + volume = {10}, + pages = {97-118}, + year = {1954}, + key = {Fathauer (1954b)}, + lgcode = {Mojave [moha1256]} +} +@book{faublee1946, + author = {Faublee, J.}, + title = {Ethnopgrahie de Madagascar}, + address = {Paris}, + year = {1946}, + key = {Faublee (1946)}, + lgcode = {Sakalava [saka1291]} +} +@incollection{faye1923, + author = {Faye, P.L.}, + editor = {A. L. Kroeber}, + title = {Notes on the Southern Maidu}, + booktitle = {Phoebe Apperson Hearst Memorial Volume}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {35-53}, + year = {1923}, + key = {Faye (1923)}, + lgcode = {Nisenan [nise1244]} +} +@article{fayet1939, + author = {Fayet, J. C.}, + title = {Coutumes des Sereres N'Doute}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {195-212}, + year = {1939}, + key = {Fayet (1939)}, + lgcode = {Serer [sere1260]} +} +@book{fedjanovich1997, + author = {Fedjanovich, T. P.}, + title = {Semejnye obychai i obrjady finno-ugorskih narodov Uralo-Povolzh'ja (konets XIX veka - 1980-e gody)}, + address = {Moscow}, + year = {1997}, + key = {Fedjanovich (1997)}, + lgcode = {Erzya Mordvins [erzy1239], Udmurt [sout2681]}, + title_english = {Family Customs and Rites of the Finno-Ugric Peoples of the Ural-Volga Region (from the Late Nineteenth Century to the 1990s)} +} +@article{fegan1930, + author = {Fegan, E. S.}, + title = {Some Notes on the Bachama Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {29}, + pages = {269-279, 376-400}, + year = {1930}, + key = {Fegan (1930)}, + lgcode = {Bachama [baca1246]} +} +@book{fei1946, + author = {Fei, Hsiao-Tung}, + title = {Peasant Life in China}, + address = {New York}, + year = {1946}, + key = {Fei (1946)}, + lgcode = {Chekiang [wuch1236]} +} +@book{feilberg1952, + author = {Feilberg, C. G.}, + title = {Les Papis}, + address = {Copenhagen}, + year = {1952}, + key = {Feilberg (1952)}, + lgcode = {Bakhtiari [bakh1245]} +} +@article{fejos1943, + author = {Fejos, P.}, + title = {Ethnography of the Yagua}, + journal = {Viking Fund Publ. Anth.}, + publisher = {New York: The Viking Fundation}, + series = {Viking Fund publications in anthropology}, + volume = {1}, + pages = {1-144}, + year = {1943}, + glottolog_ref = {fabreall2009ann:Peba-Yagua_yawa33}, + key = {Fejos (1943)}, + lgcode = {Yagua [yagu1244]} +} +@article{felkin1883, + author = {Felkin, W.}, + title = {Notes on the Moru or Madi Tribe of Central Africa}, + journal = {proc. Roy. Soc. Edinburgh}, + volume = {12}, + pages = {303-353}, + year = {1883}, + glottolog_ref = {eballiso2009:25992}, + key = {Felkin (1883)}, + lgcode = {Moru [moru1253]} +} +@article{felkin1885, + author = {Felkin, R. W.}, + title = {Notes on the Fur Tribe}, + journal = {Proceedings of the Royal Society of Edinburgh}, + volume = {23}, + pages = {205-265}, + year = {1885}, + key = {Felkin (1885)}, + lgcode = {Fur [furr1244]} +} +@incollection{fenton1940, + author = {Fenton, William N.}, + title = {Masked medicine societies of the Iroquois}, + booktitle = {Annual Report of the Smithsonian Institution}, + publisher = {Government Printing Office}, + address = {Washington, D. C.}, + pages = {397-429}, + year = {1940}, + key = {Fenton (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{fenton1957, + author = {Fenton, William Nelson}, + title = {Factionalism at Taos Pueblo, New Mexico}, + series = {Bureau of American Ethnology. Bulletin}, + volume = {164}, + pages = {297-344}, + year = {1957}, + key = {Fenton (1957)}, + lgcode = {Taos [taos1236]} +} +@book{feoktistova1980, + author = {Feoktistova, L. H.}, + title = {Zemledelie u estontsev: XVIII- nachalo XX v.}, + address = {Moscow}, + year = {1980}, + key = {Feoktistova (1980)}, + lgcode = {Estonians [esto1258]}, + title_english = {Agriculture among the Estonians: From the Eighteenth to the Early Twentieth Century} +} +@book{fernea1966, + editor = {Fernea, R. A.}, + title = {Contemporary Egyptian Nubia. 2v}, + address = {New Haven}, + year = {1966}, + key = {Fernea (1966)}, + lgcode = {Barabra [kenu1236]} +} +@book{ferrell1969, + author = {Ferrell, R.}, + title = {Taiwan Aboriginal Groups: Problems in Cultural and Linguistic Classification}, + series = {Academia Sinica, Institute of Ethnology Monographs}, + volume = {17}, + year = {1969}, + key = {Ferrell (1969)}, + lgcode = {Atayal [atay1247]} +} +@article{ffoulkes1908, + author = {Ffoulkes, A.}, + title = {The Fanti Family System}, + journal = {Journ. Afr. Soc.}, + volume = {7}, + pages = {394-409}, + year = {1908}, + glottolog_ref = {eballiso2009:39270}, + key = {Ffoulkes (1908)}, + lgcode = {Fante [fant1241]} +} +@article{ffoulkes1909, + author = {Ffoulkes, A.}, + title = {Fanti Marriage Customs}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {31-48}, + year = {1909}, + key = {Ffoulkes (1909)}, + lgcode = {Fante [fant1241]} +} +@incollection{fidler1934, + author = {Fidler, P.}, + title = {Journal of a Journey with the Chepawyans, or Northern Indians, to the Slave Lake, and to the East and West of the Slave River in 1791 & 2}, + booktitle = {Publications}, + publisher = {Champlain Society}, + address = {Toronto}, + volume = {21}, + pages = {495-555}, + year = {1934}, + key = {Fidler (1934)}, + lgcode = {Dene [chip1261]} +} +@book{field1937, + author = {Field, M. J.}, + title = {Religion and Medicine of the Ga People}, + address = {London}, + year = {1937}, + key = {Field (1937)}, + lgcode = {Ga [gaaa1244]} +} +@book{field1940, + author = {Field, M. J.}, + title = {Social Organization of the Ga People}, + publisher = {Accra: Crown Agents for the Colonies}, + address = {London}, + year = {1940}, + glottolog_ref = {eballiso2009:32512}, + key = {Field (1940)}, + lgcode = {Ga [gaaa1244]} +} +@article{field1943, + author = {Field, M. J.}, + title = {The AGricultural System of the Manya-Krobo of the Gold Coast}, + journal = {Africa}, + volume = {14}, + pages = {54-65}, + year = {1943}, + key = {Field (1943)}, + lgcode = {Adangme [adan1247]} +} +@book{field1949, + author = {Field, M. J.}, + title = {Akim Kotoku}, + address = {London}, + year = {1949}, + key = {Field (1949)}, + lgcode = {Akyem [akye1239]} +} +@book{finsch1893, + author = {Finsch, O.}, + title = {Ethnologische Erfahrungen und Belegstucke aus der Südsee 3}, + address = {Wien}, + pages = {19-89}, + year = {1893}, + key = {Finsch (1893)}, + lgcode = {Makin [bana1287], Marshallese - Jaluit Atoll [rali1241]} +} +@book{firedl1962, + author = {Firedl, E.}, + title = {Vasilika, a Village in Modern Greece}, + address = {New York}, + year = {1962}, + key = {Firedl (1962)}, + lgcode = {Greeks [mode1248]} +} +@book{firkovich1969, + author = {Firkovich, R.}, + title = {Karaimika v Litve}, + address = {Trakaj}, + year = {1969}, + key = {Firkovich (1969)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title_english = {The Karaim Studies in Lithuania} +} +@book{firth1936, + author = {Firth, R.}, + title = {We, the Tikopia}, + address = {London}, + year = {1936}, + key = {Firth (1936)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1939, + author = {Firth, R.}, + title = {A Primitive Polynesian Economy}, + address = {London}, + year = {1939}, + key = {Firth (1939)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1940, + author = {Firth, R.}, + title = {Work of the Gods}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {1-2}, + year = {1940}, + key = {Firth (1940)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1943, + author = {Firth, Rosmary.}, + title = {Housekeeping among Malay peasants}, + address = {London}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {7}, + year = {1943}, + key = {Firth (1943)}, + lgcode = {Malays [mala1479]} +} +@book{firth1946, + author = {Firth, R.}, + title = {Malay Fishermen: Their Peasant Economy}, + address = {London}, + year = {1946}, + key = {Firth (1946)}, + lgcode = {Malays [mala1479]} +} +@misc{firth1952, + author = {Firth, R.}, + title = {Conflict and Adjustment in Tikopia Religions Systems}, + year = {1952}, + howpublished = {Manuscript}, + key = {Firth (1952)}, + lgcode = {Tikopia [tiko1237]} +} +@article{firth1956, + author = {Firth, R.}, + title = {Ceremonies for Children and Social Frequency in Tikopia}, + journal = {Oceania}, + volume = {27}, + pages = {12-55}, + year = {1956}, + key = {Firth (1956)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1959, + author = {Firth, R.}, + title = {Economics of the New Zealand Maori}, + address = {Wellington}, + year = {1959}, + key = {Firth (1959)}, + lgcode = {Māori [maor1246]}, + note = {2nd Edition} +} +@article{firth1960, + author = {Firth, R.}, + title = {Succession to Chieftainship in Tikopia}, + journal = {Oceania}, + volume = {30}, + pages = {161-180}, + year = {1960}, + key = {Firth (1960)}, + lgcode = {Tikopia [tiko1237]} +} +@article{fisch1913, + author = {Fisch, R.}, + title = {Die Dagbamba}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {132-164}, + year = {1913}, + key = {Fisch (1913)}, + lgcode = {Dagomba [dagb1246]} +} +@article{fischer187879, + author = {Fischer, G. A.}, + title = {Das Wapokomo-Land und seine Bewohner}, + journal = {Mitt. Geog. Ges. Hamburg}, + volume = {2}, + pages = {1-57}, + year = {1878-79}, + glottolog_ref = {eballiso2009:24561}, + key = {Fischer (1878-79)}, + lgcode = {Pokomo [poko1261]} +} +@book{fischer1950, + author = {Fischer, Ana M.}, + title = {The Role of the Trukese Mother and Its Effect on Child Training}, + year = {1950}, + howpublished = {Final SIM Report, Pacific Science Board, National Research Council, imeographed, Washington}, + key = {Fischer (1950)}, + lgcode = {Trukese [chuu1238]} +} +@article{fischer1957a, + author = {Fischer, H. T.}, + title = {Some Notes on Kinship Systems and Relationship Terms of Sumba, Manggarai and South Timor}, + journal = {Intern. Arch. Ethnog.}, + volume = {48}, + pages = {1-31}, + year = {1957}, + key = {Fischer (1957a)}, + lgcode = {Kodi [kodi1247]} +} +@misc{fischer1957b, + author = {Fischer, J. L.}, + year = {1957}, + howpublished = {Personal Communication}, + key = {Fischer (1957b)}, + lgcode = {Tigrinya [tigr1271]} +} +@book{fisher1900, + author = {Fisher, W. E. G.}, + title = {The Transvaal and the Boers}, + address = {London}, + year = {1900}, + key = {Fisher (1900)}, + lgcode = {Boers [afri1274]} +} +@phdthesis{fisher1987, + author = {Fisher, J. W.}, + title = {Shadows in the Forest: Ethnoarchaeology among the Efe Pygmies}, + school = {Department of Anthropology, University of California, Berkeley}, + year = {1987}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Fisher (1987)}, + lgcode = {Efe [efee1239]} +} +@article{fisherandstrickland1989, + author = {Fisher, J. W., and H. C. Strickland}, + title = {Ethnoarchaeology among the Efe Pygmies, Zaire: Spatial Organization of Campsites}, + journal = {American Journal of Physical Anthropology}, + volume = {78}, + pages = {473-484}, + year = {1989}, + key = {Fisher and Strickland (1989)}, + lgcode = {Efe [efee1239]} +} +@book{fisonandhowitt1880, + author = {Fison, L., and A. W. Howitt}, + title = {Kamilaroi and Kurnai}, + publisher = {George Robertson}, + address = {Melbourne}, + year = {1880}, + key = {Fison and Howitt (1880)}, + lgcode = {Kurnai [gana1278]} +} +@book{fitzgerald1941, + author = {Fitzgerald, C. P.}, + title = {The Tower of Five Glories}, + address = {London}, + year = {1941}, + key = {Fitzgerald (1941)}, + lgcode = {Minchia [cent2004]} +} +@article{fitzpatrick1910, + author = {Fitzpatrick, J. F. J.}, + title = {Some Notes on the Kwolla District and Its Tribes}, + journal = {Journ. Afr. Soc.}, + volume = {10}, + pages = {16-52, 213-221}, + year = {1910}, + glottolog_ref = {eballiso2009:29648}, + key = {Fitzpatrick (1910)}, + lgcode = {Angas [ngas1240], Yergum [taro1263]} +} +@book{fitzsimmons1957, + editor = {Fitzsimmons, T.}, + title = {RSFSR. 2v}, + address = {New Haven.}, + year = {1957}, + key = {Fitzsimmons (1957)}, + lgcode = {Russians [russ1263]} +} +@book{flad1860, + author = {Flad, J. M. A.}, + title = {A Short Description of the Falashas and Kemants}, + address = {Chrishona}, + year = {1860}, + key = {Flad (1860)}, + lgcode = {Beta Israel [qima1242]} +} +@article{flannery1932, + author = {Flannery, R.}, + title = {The Position of Woman Among the Mescalero Apache}, + journal = {Prim. Man}, + volume = {5}, + pages = {26-33}, + year = {1932}, + key = {Flannery (1932)}, + lgcode = {Mescalero [mesc1238]} +} +@book{flannery1953, + author = {Flannery, R.}, + title = {The Gros Ventres of Montana, Pt. I: Social Life}, + publisher = {Catholic University of America Press}, + address = {Washington, D.C.}, + series = {Catholic University of America Anthropological Series}, + volume = {15}, + pages = {1-221}, + year = {1953}, + url = {https://hdl.handle.net/2027/uc1.32106008103498}, + key = {Flannery (1953)}, + lgcode = {Arapaho [arap1274], Gros Ventre [gros1243]} +} +@article{flatz1963, + author = {Flatz, G.}, + title = {3 The Mrabri: Anthropometric, Genetic, and Medical Examinatiigns}, + journal = {Journal of the Siam Society}, + volume = {51}, + number = {2}, + pages = {161-170}, + year = {1963}, + key = {Flatz (1963)}, + lgcode = {Mlabri [mlab1235]} +} +@phdthesis{fleming1965, + author = {Fleming, H. C.}, + title = {The Age-Grading Cultures of East Africa}, + school = {University of Pittsburgh}, + year = {1965}, + key = {Fleming (1965)}, + lgcode = {Banna [hame1242], Burji [burj1242], Hamar [hame1242], Tsamai [tsam1247]} +} +@article{fletcherandlaflesche1911, + author = {Fletcher, A. C. and F. La Flesche.}, + title = {The Omaha Tribe}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {27}, + pages = {17-672}, + year = {1911}, + key = {Fletcher and La Flesche (1911)}, + lgcode = {Omaha [omah1248]} +} +@book{fock1963, + author = {Fock, N.}, + title = {Waiwai: Religion and Society of an Amazonian Tribe}, + publisher = {Copenhagen: The National Museum}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter: Etnografisk Række}, + volume = {VIII}, + pages = {316}, + year = {1963}, + glottolog_ref = {hh:e:Fock:Waiwai}, + key = {Fock (1963)}, + lgcode = {Wai-wai [waiw1244]} +} +@article{foelich1956, + author = {Foelich, J. C.}, + title = {Le commandement et l'organisation sociale chez des Fali}, + journal = {Et. Camerounaises}, + volume = {53-54}, + pages = {20-50}, + year = {1956}, + key = {Foelich (1956)}, + lgcode = {Fali [sout2782]} +} +@book{foote1966, + author = {Foote, D. C.}, + title = {Human Biographical Studies in Northwestern Arctic Alaska: The Upper Kobuk River Project, 1965. Final Report to the Association on American Indian Affairs}, + address = {New York}, + year = {1966}, + key = {Foote (1966)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@book{forbes1964, + author = {Forbes, R. J.}, + title = {Studies in Ancient Technology. 2d edit. 9v}, + address = {Leiden}, + year = {1964}, + key = {Forbes (1964)}, + lgcode = {Hebrews [anci1244]} +} +@article{force1960, + author = {Force, R. W.}, + title = {Leadership and Cultural Change in Palau}, + journal = {Fieldiana, Anthropology}, + volume = {50}, + pages = {1-211}, + year = {1960}, + key = {Force (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{forceandforce1972, + author = {Force, R.W. and Force, M.}, + title = {Just one House: A Description and Analysis of Kinship in the Palau Islands}, + year = {1972}, + key = {Force and Force (1972)}, + lgcode = {Palauans [pala1344]} +} +@book{ford1941, + author = {Ford, C. S.}, + title = {Smoke from Their Fires}, + address = {New Haven}, + year = {1941}, + key = {Ford (1941)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{forde1931, + author = {Forde, C. D.}, + title = {Ethnography of the Yuma Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {28}, + pages = {83-278}, + year = {1931}, + key = {Forde (1931)}, + lgcode = {Quechan [quec1382]} +} +@article{forde1939, + author = {Forde, C. D.}, + title = {Government in Umor}, + journal = {Africa}, + volume = {12}, + pages = {129-162}, + year = {1939}, + key = {Forde (1939)}, + lgcode = {Yako [loka1252]} +} +@article{forde1941, + author = {Forde, C. D.}, + title = {Marriage and the Family Among the Yako}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {5}, + pages = {1-121}, + year = {1941}, + key = {Forde (1941)}, + lgcode = {Yako [loka1252]} +} +@incollection{forde1950, + author = {Forde, C. D.}, + editor = {Radcliffe-Brown and Forde}, + title = {Double Descent Among the Yako}, + booktitle = {African systems of kinship and marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + pages = {285-332}, + year = {1950}, + glottolog_ref = {eballiso2009:25048}, + key = {Forde (1950)}, + lgcode = {Yako [loka1252]} +} +@book{forde1951, + author = {Forde, D.}, + title = {The Yoruba-speaking Peoples of Southwestern Nigeria}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {4}, + year = {1951}, + glottolog_ref = {eballiso2009:13680}, + key = {Forde (1951)}, + lgcode = {Egba [egba1238], Ekiti [ekit1244], Ife [ifee1241], Oyo Yoruba [ilaa1245]} +} +@article{forde1952, + author = {Forde, C. D.}, + title = {Land and Labour in a Cross River Village}, + journal = {Geographical Journal}, + volume = {90}, + pages = {24-51}, + year = {1952}, + key = {Forde (1952)}, + lgcode = {Yako [loka1252]} +} +@article{forde1955, + author = {Forde, Daryll}, + title = {The Nupe}, + journal = {In Peoples of the Niger-Benve confluence, edited by Daryll Ford, International African Institute, Ethnographic Survey of Africa, Western African, pt.}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {17-52}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde (1955)}, + lgcode = {Nupe [nupe1254]} +} +@book{forde1964, + author = {Forde, C. D.}, + title = {Yako Studies}, + address = {London}, + year = {1964}, + key = {Forde (1964)}, + lgcode = {Yako [loka1252]} +} +@book{fordeandjones1950, + author = {Forde, D. and G. I. Jones}, + title = {The Ibo and Ibibio-speaking Peoples of South-Eastern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {3}, + year = {1950}, + glottolog_ref = {eballiso2009:51522}, + key = {Forde and Jones (1950)}, + lgcode = {Efik [efik1245], Ibibio [ibib1240], Igbo [nucl1417]} +} +@book{fordeandscott1946, + author = {Forde, D. and R. Scott}, + title = {The Native Economies of Nigeria}, + address = {London}, + year = {1946}, + key = {Forde and Scott (1946)}, + lgcode = {Bororo Fulani [boro1274], Hausa Kanawa [kano1249]} +} +@book{fordeetal1955, + author = {Forde, D. and P. Brown and R. G. Armstrong}, + title = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde et al. (1955)}, + lgcode = {Eloyi [eloy1241], Idoma [idom1241], Igala [igal1242]} +} +@book{forster1777, + author = {Forster, J. G. A.}, + title = {A Voyage Round the World in Britannic Majesty's Sloop Resolution, Commanded by Captain J. Cook, During the Years 1772, 3, 4, and 5}, + address = {London}, + year = {1777}, + key = {Forster (1777)}, + lgcode = {Marquesans [nort2845]} +} +@article{fortes1937, + author = {Fortes, M.}, + title = {Communal Fishing and Fishing Magic in the Northern Territories of the Gold Coast}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {67}, + pages = {131-142}, + year = {1937}, + key = {Fortes (1937)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortes1938, + author = {Fortes, M.}, + title = {Social and Psychological Aspects of Education in Taleland}, + journal = {Africa}, + volume = {9}, + number = {4}, + pages = {Supplement}, + year = {1938}, + key = {Fortes (1938)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1940, + author = {Fortes, M.}, + editor = {M. Fortes and E. E. Evans-Pritchard}, + title = {The Political System of the Tallensi}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {London}, + pages = {239-271}, + year = {1940}, + glottolog_ref = {eballiso2009:31988}, + key = {Fortes (1940)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1945, + author = {Fortes, M.}, + title = {The Dynamics of Clanship Among the Tallensi}, + address = {London}, + year = {1945 (new ed. 1967)}, + key = {Fortes (1945)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1949a, + author = {Fortes, M.}, + title = {The Web of Kinship Among the Tallensi}, + address = {London}, + year = {1949}, + key = {Fortes (1949a)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1949b, + author = {Fortes, M.}, + editor = {M. Fortes}, + title = {Time and Social Structure: An Ashanti Case Study}, + booktitle = {Social Structure}, + address = {Oxford}, + pages = {54-84}, + year = {1949}, + key = {Fortes (1949b)}, + lgcode = {Ashanti [asan1239]} +} +@book{fortes1949c, + author = {Fortes, M.}, + title = {Time and social structure and other essays}, + address = {London, New York}, + year = {1949}, + key = {Fortes (1949c)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{fortes1950, + author = {Fortes, M.}, + editor = {A. R. Radcliffe-Brown and D. Forde}, + title = {Kinship and Marriage Among the Ashanti}, + booktitle = {African Studies of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {252-284}, + year = {1950}, + glottolog_ref = {eballiso2009:10091}, + key = {Fortes (1950)}, + lgcode = {Ashanti [asan1239]} +} +@misc{fortes1969, + author = {Fortes, M.}, + title = {Kinship and the Social Order}, + address = {Chicago}, + year = {1969}, + key = {Fortes (1969)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortes1975, + author = {Fortes, M.}, + title = {Tallensi Ritual Festivals and the Ancestors}, + journal = {Cambridge Anthropology}, + volume = {2}, + number = {2}, + pages = {3-31}, + year = {1975}, + key = {Fortes (1975)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesandfortes1936, + author = {Fortes, M. and S. L. Fortes}, + title = {Food in the Domestic Economy of the Tallensi}, + journal = {Africa}, + volume = {9}, + pages = {237-276}, + year = {1936}, + key = {Fortes and Fortes (1936)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesetal1947, + author = {Fortes, M. and R. W. Steel and P. Ady}, + title = {Ashanti Survey, 1945-46}, + journal = {Geographical Journal}, + volume = {110}, + pages = {149-179}, + year = {1947}, + key = {Fortes et al. (1947)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortune1932a, + author = {Fortune, R. F.}, + title = {Omaha Secret Societies}, + journal = {Columbia University Contributions to Anthropology}, + volume = {14}, + pages = {1-193}, + year = {1932}, + key = {Fortune (1932a)}, + lgcode = {Omaha [omah1248]} +} +@book{fortune1932b, + author = {Fortune, R. F.}, + title = {Sorcerers of Dobu}, + address = {New York}, + year = {1932}, + key = {Fortune (1932b)}, + lgcode = {Dobuans [dobu1241]} +} +@article{fortune1935, + author = {Fortune, R. F.}, + title = {Manus Religion}, + journal = {Memoirs of the American Philosophical Society}, + volume = {3}, + pages = {1-391}, + year = {1935}, + key = {Fortune (1935)}, + lgcode = {Manus [tita1241]} +} +@article{fosbrooke1948, + author = {Fosbrooke, H. A.}, + title = {An Administrative Survey of the Masai Social System}, + journal = {Tanganyika Notes and Records}, + volume = {26}, + pages = {1-50}, + year = {1948}, + glottolog_ref = {eballiso2009:23091}, + key = {Fosbrooke (1948)}, + lgcode = {Maasi [masa1300]} +} +@article{foster1940, + author = {Foster, G. M.}, + title = {Notes on the Popoluca of Veracruz}, + journal = {Publicaciones del Instituto Panamericano de Geografia e Historia}, + publisher = {México, DF: Instituto Panamericano de Geografía e Historia}, + volume = {51}, + pages = {1-41}, + year = {1940}, + glottolog_ref = {hh:s:Foster:Popoluca-Veracruz}, + key = {Foster (1940)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1942, + author = {Foster, G. M.}, + title = {A Primitive Mexican Economy}, + journal = {Monographs of the American Ethnological Society}, + volume = {5}, + pages = {1-115}, + year = {1942}, + key = {Foster (1942)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1943, + author = {Foster, G. M.}, + title = {The Geographical, Linguistic, and Cultural Position of the Popoluca of Veracruz}, + journal = {American Anthropologist}, + volume = {45}, + pages = {531-546}, + year = {1943}, + glottolog_ref = {hh:w:Foster:Popoluca}, + key = {Foster (1943)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1944, + author = {Foster, G. M.}, + title = {A Summary of Yuki Culture}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {5}, + number = {3}, + pages = {155-244}, + year = {1944}, + key = {Foster (1944)}, + lgcode = {Huchnom [yuki1243], Yuki [yuki1243]} +} +@article{foster1945, + author = {Foster, G. M.}, + title = {Sierra Popoluca Folklore and Beliefs}, + journal = {niversity of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {177-250}, + year = {1945}, + key = {Foster (1945)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1948, + author = {Foster, G. M.}, + title = {Empire's Children}, + journal = {Publ. Inst. Soc. Anth., Smithsonian Inst.}, + volume = {6}, + pages = {1-297}, + year = {1948}, + key = {Foster (1948)}, + lgcode = {Tarasco [pure1242]} +} +@article{fourie1927, + author = {Fourie, L.}, + title = {7 Preliminary Notes on Certain Customs of the Hei//orn Bushmen}, + journal = {Veroffentlichungen der Wissenschaftlichen Vereinigung in Sildwestafrika}, + volume = {1}, + pages = {19-63}, + year = {1927}, + key = {Fourie (1927)}, + lgcode = {Hai//om [haio1238]} +} +@incollection{fourie1928, + author = {Fourie, L.}, + editor = {C. H. Hahn, H. Vedder, and L. Fourie}, + title = {The Bushmen of South West Africa}, + booktitle = {The native tribes of South West Africa}, + publisher = {Frank Cass}, + address = {London}, + pages = {79-106}, + year = {1928}, + glottolog_ref = {guldemann:1856}, + key = {Fourie (1928)}, + lgcode = {Hai//om [haio1238]} +} +@article{fourneau1938, + author = {Fourneau, J.}, + title = {Une tribu paienne du Nord-Cameroun: Les Guissiga}, + journal = {Journ. Soc. Africanistes}, + volume = {8}, + pages = {163-195}, + year = {1938}, + key = {Fourneau (1938)}, + lgcode = {Gisiga [sout3051]} +} +@incollection{fowler1966, + author = {Fowler, D.}, + editor = {W. L. d'Azevedo}, + title = {Great Basin Social Organization}, + booktitle = {The Current Status of Anthropological Research in the Great Basin: 1964}, + publisher = {Desert Research Institute, University of Nevada}, + address = {Reno}, + series = {Publications in the Social Sciences}, + volume = {1}, + pages = {57-73}, + year = {1966}, + key = {Fowler (1966)}, + lgcode = {Kuyuidokado [sout2967]} +} +@book{fowler1992, + author = {Fowler, C. S.}, + title = {In the Shadow of Fox Peak: An Ethnography of the Cattail-Eater Northern Paiute People of Stillwater Marsh}, + publisher = {U.S. Department of Interior, Fish and Wildlife Service, Region 1. U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Cultural Resource Series}, + number = {5}, + year = {1992}, + key = {Fowler (1992)}, + lgcode = {Toedokado [sout2967]} +} +@incollection{fowlerandliljeblad1986, + author = {Fowler, C. S., and S. Liljeblad}, + editor = {W. L. d'Azevedo}, + title = {Northern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {435-465}, + year = {1986}, + key = {Fowler and Liljeblad (1986)}, + lgcode = {Kuyuidokado [sout2967], Tunava (Deep Springs) [mono1275]} +} +@article{fox1952, + author = {Fox, R.B.}, + title = {The Pinatubo Negritos: Their Useful Plants and Material Culture}, + journal = {Philippine Journal of Science}, + volume = {81}, + number = {3-4}, + pages = {173-394}, + year = {1952}, + key = {Fox (1952)}, + lgcode = {Ayta (Pinatubo) [boto1242]} +} +@phdthesis{fox1954, + author = {Fox, R. B.}, + title = {Religion and Society Among the Tagbanua of Palawan Island}, + school = {University of Chicago}, + year = {1954}, + key = {Fox (1954)}, + lgcode = {Tagbanua [tagb1258]}, + note = {Unpublished doctoral dissertation} +} +@article{fox1963, + author = {Fox, R. G.}, + title = {Caste Dominance and Coercion in the Nilgiris}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {48}, + pages = {493-512}, + year = {1963}, + key = {Fox (1963)}, + lgcode = {Toda [toda1252]} +} +@book{fox1967, + author = {Fox, Robin}, + title = {The Keresan Bridge}, + address = {London}, + series = {London School of Economics Monographs Social Anthropology}, + number = {35}, + year = {1967}, + key = {Fox (1967)}, + lgcode = {Cochiti [coch1273]} +} +@article{frachtenberg1914, + author = {Frachtenberg, Leo J.}, + title = {Lower Umpqua Texts and Notes on the Kusan Dialects}, + journal = {Columbia University Contributions to Anthropology}, + publisher = {New York: Columbia Univ. Press}, + address = {New York}, + series = {Columbia University Contributions to Anthropology}, + volume = {4}, + pages = {1-156}, + year = {1914}, + glottolog_ref = {mpieva:Frachtenberg1914LowerUmp}, + key = {Frachtenberg (1914)}, + lgcode = {Siuslaw [sius1254]} +} +@article{frachtenberg1921, + author = {Frachtenberg, Leo J.}, + title = {The Ceremonial Societies of the Quileute Indians}, + journal = {American Anthropologist}, + volume = {23}, + pages = {320-352}, + year = {1921}, + key = {Frachtenberg (1921)}, + lgcode = {Quileute [quil1240]} +} +@phdthesis{frake1955, + author = {Frake, C. O.}, + title = {Social Organization and Shifting Cultivation Among the Sindangan Subanun}, + school = {Yale University}, + year = {1955}, + key = {Frake (1955)}, + lgcode = {Subanun [cent2089]}, + note = {Unpublished Ph. D. disertation} +} +@article{frake1960, + author = {Frake, C. O.}, + title = {The Eastern Subanun of Mindanao}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {51-64}, + year = {1960}, + key = {Frake (1960)}, + lgcode = {Subanun [cent2089]} +} +@book{franciscanfathers1910, + author = {Franciscan Fathers. I-4.}, + title = {An ethnological dictionary of the Navaho language}, + address = {St. Michaels, Arizona}, + year = {1910}, + key = {Franciscan Fathers (1910)}, + lgcode = {Navajo [nava1243]} +} +@book{frankenetal1960, + author = {Franken, H. J. and R. Goris and C. J. Grader and V. E. Korn and J. L. Swellengrebel}, + title = {Bali: Studies in Life, Thought, and Ritual}, + address = {The Hague}, + year = {1960}, + key = {Franken et al. (1960)}, + lgcode = {Balinese [bali1278]} +} +@article{franz1931, + author = {Franz, G. H.}, + title = {Some customs of the Transvaal Basotho}, + journal = {Bantu Studies}, + volume = {5}, + pages = {241-46}, + year = {1931}, + glottolog_ref = {eballiso2009:41982}, + key = {Franz (1931)}, + lgcode = {Pedi [tswe1238]} +} +@book{fraser1960, + author = {Fraser, Thomas M., Jr.}, + title = {Rusembilan: a Malay fishing village in Southern Thailand}, + publisher = {Cornell University Press}, + address = {Ithaca}, + year = {1960}, + key = {Fraser (1960)}, + lgcode = {Malays [mala1479]} +} +@book{fraser1966, + author = {Fraser, Thomas M., Jr.}, + title = {Fishermen of South Thailand: the Malay villagers}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Fraser (1966)}, + lgcode = {Malays [mala1479]} +} +@article{freed1960, + author = {Freed, Stanley A.}, + title = {Changing Washo Kinship}, + journal = {Anth. Records}, + volume = {14}, + number = {6}, + pages = {349-418}, + year = {1960}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar014-007.pdf}, + key = {Freed (1960)}, + lgcode = {Washo [wash1253]} +} +@article{freed1963, + author = {Freed, Stanley A.}, + title = {Reconstruction of Aboriginal Washo Social Organization}, + journal = {University of Utah Anthropological Papers}, + volume = {67}, + pages = {8-24}, + year = {1963}, + key = {Freed (1963)}, + lgcode = {Washo [wash1253]} +} +@article{freeland1923, + author = {Freeland, L. S.}, + title = {Pomo Doctors and Poisoners}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {57-73}, + year = {1923}, + key = {Freeland (1923)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{freeman1955a, + author = {Freeman, J. D.}, + title = {Iban Agriculture}, + journal = {Colonial Research Studies}, + volume = {18}, + pages = {1-148}, + year = {1955}, + key = {Freeman (1955a)}, + lgcode = {Iban [iban1264]} +} +@book{freeman1955b, + author = {Freeman, J. D.}, + title = {Report on the Iban of Sarawak}, + address = {Kuching}, + year = {1955}, + key = {Freeman (1955b)}, + lgcode = {Iban [iban1264]}, + note = {2nd Edition 1970} +} +@article{freeman1957, + author = {Freeman, J.}, + title = {Iban Pottery}, + journal = {Sarawak Museum Journal}, + volume = {8}, + pages = {53-176}, + year = {1957}, + key = {Freeman (1957)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958a, + author = {Freeman, J. D.}, + title = {The Family System of the Iban}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {I}, + pages = {15-52}, + year = {1958}, + key = {Freeman (1958a)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958b, + author = {Freeman, J. D.}, + title = {The Iban of Western Borneo}, + journal = {Viking Fund Publications in Anthropology}, + volume = {29}, + pages = {65-87}, + year = {1958}, + key = {Freeman (1958b)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1965, + author = {Freeman, J. D.}, + title = {Some observations on Kinship and Political Authority in Samoa}, + journal = {American Anthropologist}, + volume = {66}, + pages = {553-568}, + year = {1965}, + key = {Freeman (1965)}, + lgcode = {American Samoans [samo1305]} +} +@book{freeman1970, + author = {Freeman, D.}, + title = {Report on the Iban}, + year = {1970}, + key = {Freeman (1970)}, + lgcode = {Iban [iban1264]} +} +@book{freikin1954, + author = {Freikin, Z. G.}, + title = {Turkmenskaia SSR}, + address = {Moskva}, + year = {1954}, + key = {Freikin (1954)}, + lgcode = {Turkmen [turk1304]} +} +@book{fremerey1978, + author = {Fremerey, M.}, + title = {Indonesien}, + year = {1978}, + key = {Fremerey (1978)}, + lgcode = {Mee [ekar1243]} +} +@incollection{french1961, + author = {French, David}, + editor = {Spicer, Edward H.}, + title = {Wasco-Wishram}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {337-429}, + year = {1961}, + key = {French (1961)}, + lgcode = {Wishram [wasc1239]} +} +@article{fricandradin1906, + author = {Fric, V. A., and P. Radin.}, + title = {Contributions to the Study of the Bororo Indians}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {36}, + pages = {382-406}, + year = {1906}, + key = {Fric and Radin (1906)}, + lgcode = {Bororo [boro1282]} +} +@book{fried1953, + author = {Fried, M.}, + title = {Fabric of Chinese Society}, + address = {N. Y.}, + year = {1953}, + key = {Fried (1953)}, + lgcode = {Chekiang [wuch1236]} +} +@book{friedlander1908, + author = {Friedlander, L.}, + title = {Roman Life and Manners Under the Early Empire}, + address = {London}, + year = {1908}, + key = {Friedlander (1908)}, + lgcode = {Ancient Romans [lati1261]} +} +@misc{friedrich1954, + author = {Friedrich, P. W.}, + title = {The Social Organization of a Ukrainian Village}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Friedrich (1954)}, + lgcode = {Ukranians [east2270]} +} +@article{frikel1959, + author = {Frikel, P.}, + title = {Agricultura dos Indios Munduruku}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + volume = {4}, + pages = {1-35}, + year = {1959}, + key = {Frikel (1959)}, + lgcode = {Munduruku [mund1330]} +} +@book{friters1949, + author = {Friters, G. M.}, + title = {Outer Mongolia and Its International Position}, + address = {Baltimore}, + year = {1949}, + key = {Friters (1949)}, + lgcode = {Khalka [halh1238]} +} +@book{fritsch1872, + author = {Fritsch, G. T.}, + title = {Die Eingeborenen Sud-Afrika's}, + address = {Breslau}, + year = {1872}, + key = {Fritsch (1872)}, + lgcode = {/Xam [xamm1241]} +} +@article{froelich1949a, + author = {Froelich, J. C.}, + title = {Generalites sur les Kabre}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {77-105}, + year = {1949}, + key = {Froelich (1949a)}, + lgcode = {Kabre [kabi1261]} +} +@article{froelich1949b, + author = {Froelich, J. C.}, + title = {Les Konkomba}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {409-437}, + year = {1949}, + key = {Froelich (1949b)}, + lgcode = {Konkomba [konk1269]} +} +@book{froelichetal1963, + author = {Froelich, J. C. P. Alexandre, and R. Cornevin.}, + title = {Les populations du Nord-Togo}, + publisher = {Paris & London: Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {10}, + year = {1963}, + glottolog_ref = {eballiso2009:53333}, + key = {Froelich et al. (1963)}, + lgcode = {Basari [ntch1242], Kabre [kabi1261], Konkomba [konk1269], Moba [moba1244], Tem [temm1241]} +} +@article{fromm1912, + author = {Fromm, P.}, + title = {Ufipa--Land und Leute}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {25}, + pages = {79-101}, + year = {1912}, + key = {Fromm (1912)}, + lgcode = {Fipa [fipa1238]} +} +@article{fuchs1956, + author = {Fuchs, P.}, + title = {Ueber die Tubbu von Tibesti}, + journal = {Archiv für Völkerkunde}, + volume = {11}, + pages = {43-66}, + year = {1956}, + key = {Fuchs (1956)}, + lgcode = {Teda [teda1241]} +} +@book{fuente1949, + author = {Fuente, J. de la.}, + title = {Yalagag: una villa zapoteca serrana}, + address = {Mexico}, + year = {1949}, + key = {Fuente (1949)}, + lgcode = {Zapotec [yala1267]} +} +@book{fuks1840, + author = {Fuks, A.}, + title = {Zapiski o chuvashah i cheremisah Kazanskoj gubemii (Notes on the Chuvash and Mari of the Kazanskaja Guberia)}, + address = {Kazan'}, + year = {1840}, + key = {Fuks (1840)}, + lgcode = {Chuvash [chuv1255]} +} +@article{fulop1955, + author = {Fulop, M.}, + title = {Notas sobre los terminos y el sistema de parentesco de los Tukano}, + journal = {Rev. Colomb. Antr.}, + address = {Bogotá}, + volume = {4}, + pages = {121-164}, + year = {1955}, + glottolog_ref = {fabreall2009ann:Tukano_tucano08}, + key = {Fulop (1955)}, + lgcode = {Tucano [tuca1252]} +} +@article{furerhaimendorf1943a, + author = {Fürer-Haimendorf, C. von.}, + title = {Avenues to Marriage Among the Bondos of Orissa}, + journal = {Man in India}, + volume = {23}, + pages = {158-172}, + year = {1943}, + key = {Fürer-Haimendorf (1943a)}, + lgcode = {Khond [kuii1252]} +} +@book{furerhaimendorf1943b, + author = {Fürer-Haimendorf, C. von.}, + title = {The Chenchus}, + publisher = {Macmillan}, + address = {London}, + series = {The Aboriginal Tribes of Hyderabad}, + volume = {1}, + year = {1943}, + key = {Fürer-Haimendorf (1943b)}, + lgcode = {Chenchu [chen1255]} +} +@book{furerhaimendorf1945, + author = {Fürer-Haimendorf, C. von.}, + title = {The Reddis of the Bison Hills}, + address = {London}, + year = {1945}, + key = {Fürer-Haimendorf (1945)}, + lgcode = {Reddi [mukh1238]} +} +@book{furerhaimendorf1964, + author = {Fürer-Haimendorf, C. von.}, + title = {The Sherpas of Nepal}, + address = {Berkeley and Los Angeles}, + year = {1964}, + key = {Fürer-Haimendorf (1964)}, + lgcode = {Sherpa [sher1255]} +} +@article{gaalon1939, + author = {Gaalon, R. de.}, + title = {Coutume touareg}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A.}, + volume = {10}, + pages = {217-237}, + year = {1939}, + key = {Gaalon (1939)}, + lgcode = {Udalan Tuareg [timb1263]} +} +@article{gabb1876, + author = {Gabb, W. M.}, + title = {On the Tribes and Languages of Costa Rica}, + journal = {Proceedings of the American Philosophic Society}, + volume = {14}, + pages = {483-602}, + year = {1876}, + key = {Gabb (1876)}, + lgcode = {Bribri [brib1243]} +} +@article{gaborydubourdeau1926, + author = {Gabory-Dubourdeau, P. M.}, + title = {Notice sur les coutumes des Tomas}, + journal = {Bull Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {9}, + pages = {288-475}, + year = {1926}, + key = {Gabory-Dubourdeau (1926)}, + lgcode = {Toma [toma1245]} +} +@book{gadd1965, + author = {Gadd, C. J.}, + title = {Hammurabi and the End of His Dynasty}, + address = {Cambridge}, + series = {Cambridge Ancient History}, + year = {1965}, + key = {Gadd (1965)}, + lgcode = {Babylonians [akka1240]}, + note = {rev. edit., fascicle 35} +} +@book{gaden1909, + author = {Gaden, Henri}, + title = {Essai de la grammaire de la langue baguirmienne}, + publisher = {Ernest Leroux}, + address = {Paris}, + year = {1909}, + url = {https://archive.org/details/rosettaproject_bmi_morsyn-1}, + key = {Gaden (1909)}, + lgcode = {Bagirmi [bagi1246]} +} +@incollection{gadzhieva1958, + author = {Gadzhieva, S. S.}, + title = {Kayakentskie Kumyki}, + series = {Trudy Instituta Etnografii, n. s., 46: Kavkaszkii. Etnograficheskii Sbornik, ed. M. O. Kosven, 2}, + pages = {5-90}, + year = {1958}, + key = {Gadzhieva (1958)}, + lgcode = {Kumyk [kumy1244]} +} +@book{gailey1965, + author = {Gailey, H. A.}, + title = {A History of the Gambia}, + address = {New York}, + year = {1965}, + key = {Gailey (1965)}, + lgcode = {Wolof [nucl1347]} +} +@book{gallardo1910, + author = {Gallardo, C. R.}, + title = {Los Onas}, + publisher = {Cabaut y Cía}, + address = {Buenos Aires}, + series = {Tierra del Fuego}, + year = {1910}, + glottolog_ref = {fabreall2009ann:Chon_selknam41}, + key = {Gallardo (1910)}, + lgcode = {Ona [onaa1245]} +} +@book{gambier1894, + author = {Gambier, J. W.}, + title = {The Guanches}, + series = {Ann. Rep. Smiths.}, + year = {1894}, + key = {Gambier (1894)}, + lgcode = {Guanche [guan1277]} +} +@book{gamble1957, + author = {Gamble, D. P.}, + title = {The Wolof of Senegambia}, + address = {London}, + year = {1957}, + key = {Gamble (1957)}, + lgcode = {Wolof [nucl1347]} +} +@book{gamitto1854, + author = {Gamitto, A. C. P.}, + title = {O Muata Cazembe}, + address = {Lisboa}, + year = {1854}, + key = {Gamitto (1854)}, + lgcode = {Luapula [luun1238]} +} +@book{gannandthompson1931, + author = {Gann, T. W. F., and J. E. Thompson.}, + title = {The History of the Maya}, + address = {New York}, + year = {1931}, + key = {Gann and Thompson (1931)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{gapanovich1927, + author = {Gapanovich, I. I.}, + title = {Amgunskie tungusy i negidal'tsy}, + address = {Kharbin}, + year = {1927}, + key = {Gapanovich (1927)}, + lgcode = {Negidal [negi1245]} +} +@book{garcia1760, + author = {Garcia, B.}, + title = {Manual para administrar los santos sacramentos}, + publisher = {Rivera}, + address = {Mexico}, + year = {1760}, + key = {Garcia (1760)}, + lgcode = {Coahuilteco [coah1252]} +} +@article{gardner1897, + author = {Gardner, J. S.}, + title = {The Natives of Rotuma}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {27}, + pages = {396-435, 457-524}, + year = {1897}, + key = {Gardner (1897)}, + lgcode = {Rotumans [rotu1241]} +} +@phdthesis{gardner1965, + author = {Gardner, P. M.}, + title = {Ecology and social structure in refugee populations: The Paliyans of South India}, + school = {Department of Anthropology, University of Pennsylvania, Philadelphia}, + pages = {174}, + year = {1965}, + glottolog_ref = {hh:e:Gardner:Paliyans:1965}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gardner (1965)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1972, + author = {Gardner, P. M.}, + editor = {M. Bicchieri}, + title = {The Paliyans}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + pages = {404-447}, + year = {1972}, + glottolog_ref = {hh:e:Gardner:Paliyans:1972}, + key = {Gardner (1972)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1978, + author = {Gardner, W.}, + editor = {I. McBryde}, + title = {Productions and Resources of the Northern and Western Districts of New South Wales (1842-54)}, + booktitle = {Records of Past Times: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {49-246}, + year = {1978}, + key = {Gardner (1978)}, + lgcode = {Badjalang [midd1357]} +} +@incollection{gardner1988, + author = {Gardner, P. M.}, + editor = {T. Ingold, D. Riches, and J. Woodburn}, + title = {Pressures for Tamil Propriety in Paliyan Social Organization}, + booktitle = {History, Evolution and Social Change}, + publisher = {Berg}, + address = {Oxford}, + series = {Hunters and Gatherers}, + volume = {1}, + pages = {91-106}, + year = {1988}, + key = {Gardner (1988)}, + lgcode = {Paliyans [pali1274]} +} +@article{garfield1939, + author = {Garfield, Viola E.}, + title = {Tsimshian Clan and Society}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {7}, + pages = {167-340}, + year = {1939}, + glottolog_ref = {anla:TS928G1939}, + key = {Garfield (1939)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{garfield1947, + author = {Garfield, Viola E.}, + title = {Historical Aspects of Tlingit Clans in Angoo, Alaska}, + journal = {American Anthropologist}, + volume = {49}, + pages = {438-452}, + year = {1947}, + key = {Garfield (1947)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@article{garfieldetal1951, + author = {Garfield, Viola E. and Paul S. Wingert and Marius Barbeau}, + title = {The Tsimshian: Their Arts ad Music}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-290}, + year = {1951}, + key = {Garfield et al. (1951)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@incollection{gargettandhayden1991, + author = {Gargett, R., and B. Hayden}, + editor = {E. Kroll and D. Price}, + title = {Site Structure, Kinship and Sharing in Aboriginal Australia: Implications for Archaeology}, + booktitle = {The Interpretation of Archaeological Spatial Patterning}, + publisher = {Plenum Press}, + address = {New York}, + pages = {11-32}, + year = {1991}, + key = {Gargett and Hayden (1991)}, + lgcode = {Pintubi [pint1250]} +} +@book{garine1964, + author = {Garine, I. de.}, + title = {Les Massa du Cameroun}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + year = {1964}, + glottolog_ref = {eballiso2009:17802}, + key = {Garine (1964)}, + lgcode = {Masa [masa1322]} +} +@article{garrod1946a, + author = {Garrod, O.}, + title = {The Nomadic Tribes of Persia Today}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {32-46}, + year = {1946}, + key = {Garrod (1946a)}, + lgcode = {Qashqui [qash1240]} +} +@article{garrod1946b, + author = {Garrod, O.}, + title = {The Qashqai Tribes of Fars}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {293-306}, + year = {1946}, + key = {Garrod (1946b)}, + lgcode = {Qashqui [qash1240]} +} +@article{garth1944, + author = {Garth, T. R.}, + title = {Kinship Terminology, Marriage Practices and Behavior Toward Kin Among the Atsugewi}, + journal = {American Anthropologist}, + volume = {46}, + pages = {348-361}, + year = {1944}, + key = {Garth (1944)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garth1953, + author = {Garth, T. R.}, + title = {Atsugewi Ethnography}, + journal = {Anth. Records}, + volume = {14}, + pages = {129-212}, + year = {1953}, + key = {Garth (1953)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garvan1931, + author = {Garvan, J. M.}, + title = {The Manobo of Mindanao}, + journal = {Mem. Nat. Acad. Sci.}, + publisher = {Washinton, D.C.: National Academy of Science}, + series = {National Academy of Science Memoirs}, + volume = {23}, + pages = {1-231}, + year = {1931}, + glottolog_ref = {hh:he:Garvan:Manobos}, + key = {Garvan (1931)}, + lgcode = {Manobo [agus1235]} +} +@book{gason1874, + author = {Gason, S.}, + title = {The Dieri Tribe}, + year = {1874}, + key = {Gason (1874)}, + lgcode = {Diyari [dier1241]}, + note = {Reprinted in J. Woods, ed., The Native Tribes of South Australia, Adelaide, 1879.} +} +@incollection{gason1879, + author = {Gason, S.}, + editor = {J. D. Woods}, + title = {The Dieyerie Tribe}, + booktitle = {The Native Tribes of South Australia}, + publisher = {E. S. Wigg and Son}, + address = {Adelaide}, + pages = {257-286}, + year = {1879}, + key = {Gason (1879)}, + lgcode = {Diyari [dier1241]} +} +@book{gatschet1890, + author = {Gatschet, A. S.}, + title = {The Klamath indians of Southwestern Oregon}, + publisher = {Washington: Gov. Print. Office}, + series = {Contributions to North American Ethnology}, + volume = {2, 2}, + pages = {711}, + year = {1890}, + glottolog_ref = {mpieva:Gatschet1890TheKlama}, + key = {Gatschet (1890)}, + lgcode = {Klamath [klam1254]} +} +@article{gatschet1891, + author = {Gatschet, A. A.}, + title = {The Karankawa Indians}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {1}, + pages = {ii, 5-103}, + year = {1891}, + key = {Gatschet (1891)}, + lgcode = {Karankawa [kara1289]} +} +@book{gaud1911, + author = {Gaud, F.}, + title = {Les Mandja}, + address = {Bruxelles}, + year = {1911}, + key = {Gaud (1911)}, + lgcode = {Mandja [manz1243]} +} +@book{gaudry1929, + author = {Gaudry, M.}, + title = {La femme cahouia de l'Aures}, + address = {Paris}, + year = {1929}, + key = {Gaudry (1929)}, + lgcode = {Shawiya [tach1249]} +} +@article{gaughwinandsullivan1984, + author = {Gaughwin, D., and H. Sullivan}, + title = {Aboriginal Boundaries and Movements in Western Port, Victoria}, + journal = {Aboriginal History}, + volume = {8}, + pages = {80-98}, + year = {1984}, + key = {Gaughwin and Sullivan (1984)}, + lgcode = {Bunurong [woiw1237]} +} +@article{gayton1930, + author = {Gayton, Ann H.}, + title = {Yokuts-Mono Chiefs and Shamans}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {24}, + pages = {361-420}, + year = {1930}, + key = {Gayton (1930)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@incollection{gayton1936, + author = {Gayton, Ann H.}, + editor = {R. H. Lowie}, + title = {Estudillo Among the Yokuts}, + booktitle = {Essays in Anthropology presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {67-85}, + year = {1936}, + key = {Gayton (1936)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{gayton1945, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Social Organization}, + journal = {American Anthropologist}, + volume = {47}, + pages = {409-426}, + year = {1945}, + key = {Gayton (1945)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{gayton1946, + author = {Gayton, Ann H.}, + title = {Culture-Environment Integration: External References in Yokuts Life}, + journal = {Southwestern Journal of Anthropology}, + volume = {2}, + pages = {252-268}, + year = {1946}, + url = {http://www.jstor.org/stable/3628717}, + key = {Gayton (1946)}, + lgcode = {Kings River Yokuts [sout2955], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Wukchumni [tule1245]} +} +@book{gayton1948a, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. I. Tulare Lake, Southern Valley, and Central Foothill Yokuts}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {1}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948a)}, + lgcode = {Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + note = {The years 1885 to 1860 cover the youth span of my older informants, the years 1860 to 1830 the mid-span of their parents' lives, and 1830 to 1800 the mid-span of their grandparents' lives. The bulk of cultural detail recalled was seen, experienced, or heard about in the years 1840 to 1890 approximately; fieldwork 1925-28} +} +@misc{gayton1948b, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. II. Northern Foothill Yokuts and Western Mono}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {2}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948b)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245], Yakut [yaku1245]} +} +@article{gearing1962, + author = {Gearing, F.}, + title = {Priests and Warriors}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {93}, + pages = {1-124}, + year = {1962}, + key = {Gearing (1962)}, + lgcode = {Cherokee [cher1273]} +} +@article{geddes1946, + author = {Geddes, W. R. IV-10.}, + title = {The color sense of Fijian natives}, + journal = {British Journal of Psychology}, + volume = {37}, + pages = {30-36}, + year = {1946}, + key = {Geddes (1946)}, + lgcode = {Lau [laua1243]} +} +@misc{geertz1959a, + author = {Geertz, C.}, + title = {Balinese Religion in Transition}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz (1959a)}, + lgcode = {Balinese [bali1278]} +} +@article{geertz1959b, + author = {Geertz, C.}, + title = {Form and Variation in Balinese Village Structure}, + journal = {American Anthropologist}, + volume = {61}, + pages = {991-1012}, + year = {1959}, + key = {Geertz (1959b)}, + lgcode = {Balinese [bali1278]} +} +@book{geertz1960, + author = {Geertz, C.}, + title = {The Religion of Java}, + address = {Chicago}, + year = {1960}, + key = {Geertz (1960)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1961, + author = {Geertz, H.}, + title = {The Javanese Family}, + address = {New York}, + year = {1961}, + key = {Geertz (1961)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1963, + author = {Geertz, C.}, + title = {Peddlers and Princes}, + address = {Chicago}, + year = {1963}, + key = {Geertz (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{geertz1965, + author = {Geertz, C.}, + title = {The Social History of an Indonesian Town}, + address = {Cambridge}, + year = {1965}, + key = {Geertz (1965)}, + lgcode = {Javanese [java1254]} +} +@incollection{geertz1967, + author = {Geertz, C.}, + editor = {Koentjaraningrat}, + title = {Tihingan}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {210-293}, + year = {1967}, + key = {Geertz (1967)}, + lgcode = {Balinese [bali1278]} +} +@misc{geertzandgeertz1959, + author = {Geertz, C., and H. Geertz.}, + title = {The Balinese Kinship System}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz and Geertz (1959)}, + lgcode = {Balinese [bali1278]} +} +@article{geoje1910, + author = {Geoje, C. H. de.}, + title = {Beitrage zur Volkerkunde von Surinam}, + journal = {Int. Arch. Ethnog.}, + volume = {19}, + pages = {1-28}, + year = {1910}, + key = {Geoje (1910)}, + lgcode = {Lokono [araw1276]} +} +@book{germann1933, + author = {Germann, P.}, + title = {Die Volkerstamme im Norden von Liberia}, + publisher = {Leipzig: R. Voigtlanders Verlag}, + address = {Leipzig}, + year = {1933}, + glottolog_ref = {eballiso2009:16606}, + key = {Germann (1933)}, + lgcode = {Gbande [band1352]} +} +@article{geyskes1954, + author = {Geyskes, D. C.}, + title = {De landbouw bij de Bosnegers van de Marowijne}, + journal = {West-Indische Gids}, + volume = {35}, + pages = {135-153}, + year = {1954}, + key = {Geyskes (1954)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{ghawi1924, + author = {Ghawi, J. B.}, + title = {Notes on the Law and Custom of the Jur Tribe}, + journal = {Sudan Notes Rec.}, + volume = {7}, + number = {ii}, + pages = {71-81}, + year = {1924}, + key = {Ghawi (1924)}, + lgcode = {Jur [luwo1239]} +} +@book{ghisletti1954, + author = {Ghisletti, L. V.}, + title = {Los Mwiskas}, + address = {Bogota}, + year = {1954}, + key = {Ghisletti (1954)}, + lgcode = {Muisca [chib1270]} +} +@article{gibbs1963, + author = {Gibbs, J. L.}, + title = {Marital Instability Among the Kpelle}, + journal = {American Anthropologist}, + volume = {65}, + pages = {552-573}, + year = {1963}, + key = {Gibbs (1963)}, + lgcode = {Kpelle [libe1247]} +} +@incollection{gibbs1965, + author = {Gibbs, J. L.}, + editor = {J. L. Gibbs}, + title = {The Kpelle of Liberia}, + booktitle = {Peoples of Africa}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + pages = {197-240}, + year = {1965}, + glottolog_ref = {hh:e:Gibbs:Kpelle}, + key = {Gibbs (1965)}, + lgcode = {Kpelle [libe1247]} +} +@article{giddings1956, + author = {Giddings, J. L.}, + title = {Forest Eskimos: An Ethnographic Sketch of Kobuk River People in the 1880's}, + journal = {University Museum Bulletin (Philadelphia)}, + volume = {20}, + number = {2}, + pages = {1-55}, + year = {1956}, + key = {Giddings (1956)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@misc{giddingsperscomm1963, + author = {Giddings, J. L.}, + year = {1963}, + howpublished = {pers. conmm.}, + key = {Giddings pers. comm. (1963)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@article{gifford1916, + author = {Gifford, E. W.}, + title = {Miwok Moieties}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {12}, + number = {4}, + pages = {139-194}, + year = {1916}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp012-006.pdf}, + key = {Gifford (1916)}, + lgcode = {Central Sierra Miwok [cent2140]} +} +@article{gifford1917, + author = {Gifford, E. W.}, + title = {Tubatulabal and Kawaiisu Kinship Terms}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley: Univ. of California Press}, + address = {Berkeley}, + series = {University of California publications in American archaeology and ethnology}, + volume = {12}, + pages = {219-248}, + year = {1917}, + glottolog_ref = {mpieva:Gifford1917Tubatula}, + key = {Gifford (1917)}, + lgcode = {Kawaiisu [kawa1283], Southern Paiute (Kaibab) [sout2969], Tübalulabal [tuba1278], Uintah Ute [utee1244]} +} +@book{gifford1918, + author = {Gifford, E. W.}, + title = {Clans and Moieties in Southern California}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {14}, + year = {1918}, + key = {Gifford (1918)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Serrano [serr1255]} +} +@article{gifford1922, + author = {Gifford, E. W.}, + title = {California Kinship Terminologies}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley, Calif.}, + volume = {18}, + pages = {1-285}, + year = {1922}, + glottolog_ref = {mpieva:Gifford1922Californ}, + key = {Gifford (1922)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Huchnom [yuki1243], Karuk [karo1304], Kumeyaay [kumi1248], Lake Miwok [lake1258], Lassik [wail1244], Maidu [nort2952], Northern Pomo [nort2966], Serrano [serr1255], Southern Pomo [sout2984], Wappo [wapp1239], Western Mono [mono1275], Wintu [nucl1651], Wiyot [wiyo1248], Yuki [yuki1243]} +} +@article{gifford1923, + author = {Gifford, Edward W.}, + title = {Pomo Lands on Clear Lake}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {77-92}, + year = {1923}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp020-006.pdf}, + key = {Gifford (1923)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{gifford1926a, + author = {Gifford, E. W.}, + title = {Clear Lake Pomo Society}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley}, + volume = {18}, + number = {2}, + pages = {287-390}, + year = {1926}, + key = {Gifford (1926a)}, + lgcode = {Clear Lake Pomo [east2545], Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@book{gifford1926b, + author = {Gifford, E. W.}, + title = {California Anthropometry}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {22}, + year = {1926}, + key = {Gifford (1926b)}, + lgcode = {Achumawi [achu1247], Atsugewi [atsu1245], Cahuilla (Desert) [cahu1264], Central Sierra Miwok [cent2140], Cupeño [cupe1243], Eastern Mono [mono1275], Eastern Pomo [east2545], Hupa [hupa1239], Klamath [klam1254], Luiseño [luis1253], Maidu [nort2952], Modoc [klam1254], Nomlaki [noml1242], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Pomo [nort2966], Patwin [patw1250], Salinan [sali1253], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wadatkuht [sout2967], Washo [wash1253], Wiyot [wiyo1248], Yana [yana1271], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{gifford1926c, + author = {Gifford, E. W.}, + title = {Miwok Lineages and the Political Unit in Aboriginal California}, + journal = {American Anthropologist}, + volume = {28}, + pages = {389-401}, + year = {1926}, + key = {Gifford (1926c)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1926d, + author = {Gifford, Edward W.}, + title = {Miwok Cults}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {18}, + pages = {391-408}, + year = {1926}, + key = {Gifford, 1926d}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1927, + author = {Gifford, Edward W.}, + title = {Southern Maidu Religious Ceremonies}, + journal = {American Anthropologist}, + volume = {29}, + pages = {214-257}, + year = {1927}, + key = {Gifford (1927)}, + lgcode = {Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{gifford1928, + author = {Gifford, E. W.}, + title = {Notes on Central Pomo and Northern Yana Society}, + journal = {American Anthropologist}, + volume = {30}, + pages = {675-684}, + year = {1928}, + key = {Gifford (1928)}, + lgcode = {Yana [yana1271]} +} +@article{gifford1929, + author = {Gifford, E. W.}, + title = {Tongan Society}, + journal = {Bull. Bishop Mus.}, + volume = {61}, + pages = {1-366}, + year = {1929}, + key = {Gifford (1929)}, + lgcode = {Tongans [tong1325]} +} +@article{gifford1931, + author = {Gifford, E. W.}, + title = {The Kamia of Imperial Valley}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {97}, + pages = {1-88}, + year = {1931}, + key = {Gifford (1931)}, + lgcode = {Kamia [kumi1248]} +} +@article{gifford1932a, + author = {Gifford, E. W.}, + title = {The Southeastern Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {29}, + pages = {177-252}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp029-004.pdf}, + key = {Gifford (1932a)}, + lgcode = {Kewyipaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1932b, + author = {Gifford, E. W.}, + title = {The Northfork Mono}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {2}, + pages = {15-65}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-003.pdf}, + key = {Gifford (1932b)}, + lgcode = {Kings River Western Mono [mono1275], North Fork Mono [mono1275], Western Mono [mono1275]} +} +@article{gifford1933, + author = {Gifford, E. W.}, + title = {The Cocopa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {257-334}, + year = {1933}, + key = {Gifford (1933)}, + lgcode = {Cocopa [coco1261]} +} +@article{gifford1936, + author = {Gifford, E. W.}, + title = {Northeastern and Western Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {34}, + pages = {247-354}, + year = {1936}, + key = {Gifford (1936)}, + lgcode = {Tolkepaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1939, + author = {Gifford, E. W.}, + title = {The Coast Yuki}, + journal = {Anthropos}, + volume = {34}, + pages = {292-375}, + year = {1939}, + key = {Gifford (1939)}, + lgcode = {Coast Yuki [yuki1243]} +} +@article{gifford1940, + author = {Gifford, E. W.}, + title = {Apache-Pueblo}, + journal = {Anth. Rec.}, + volume = {4}, + pages = {1-207}, + year = {1940}, + key = {Gifford (1940)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238], Jicarilla [jica1244], Lipan Apache [lipa1241], Mescalero [mesc1238], Santa Ana [sant1426], Southern Ute [utee1244], Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615], Zuni [zuni1245]} +} +@article{gifford1944, + author = {Gifford, Edward W.}, + title = {Miwok Lineages}, + journal = {American Anthropologist}, + volume = {46}, + pages = {376-381}, + year = {1944}, + key = {Gifford (1944)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1955, + author = {Gifford, E. W.}, + title = {Central Miwok Ceremonies}, + journal = {Anth. Rec.}, + volume = {14}, + pages = {261-318}, + year = {1955}, + key = {Gifford (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{giffordandkroeber1936, + author = {Gifford, E. W., and S. Klimek.}, + title = {Yana}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {71-100}, + year = {1936}, + key = {Gifford and Kroeber (1936)}, + lgcode = {Yana [yana1271]} +} +@article{giffordandkroeber1937a, + author = {Gifford, E. W., and A. I. Kroeber.}, + title = {Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937a)}, + lgcode = {Eastern Pomo [east2545], Lake Miwok [lake1258], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]} +} +@article{giffordandkroeber1937b, + author = {Gifford, E. W., and A. L. Kroeber.}, + title = {Culture Element Distributions IV: Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937b)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{giffordandlowie1928, + author = {Gifford, E. W. and Robert H. Lowie}, + title = {Notes on the Akwa'ala Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {23}, + pages = {339-352}, + year = {1928}, + key = {Gifford and Lowie (1928)}, + lgcode = {Akwa’ala [paip1241]} +} +@incollection{gilberg1984, + author = {Gilberg, R.}, + editor = {D. Damas}, + title = {Polar Eskimo}, + booktitle = {Arctic,}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {577-594}, + year = {1984}, + glottolog_ref = {hh:e:Gilberg:Polar-Eskimo}, + key = {Gilberg (1984)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@incollection{gilbert1937, + author = {Gilbert, W. H.}, + editor = {Eggan}, + title = {Eastern Cherokee Social Organization}, + booktitle = {Social Organization of North American Tribes}, + address = {Chicago}, + pages = {285-338}, + year = {1937}, + key = {Gilbert (1937)}, + lgcode = {Cherokee [cher1273]} +} +@article{gilbert1943, + author = {Gilbert, William H., Jr.}, + title = {The Eastern Cherokees}, + journal = {Bulletin of the Bureau of American Ethnology}, + volume = {133}, + pages = {227-338}, + year = {1943}, + key = {Gilbert (1943)}, + lgcode = {Cherokee [cher1273]} +} +@book{gildelgado1949, + author = {Gil-Delgado, C. C.}, + title = {Notas para un estudio antropologico y etnologico del Bubi de Fernando Poo}, + address = {Madrid}, + year = {1949}, + key = {Gil-Delgado (1949)}, + lgcode = {Bubi [bube1242]} +} +@article{gilg1965, + author = {Gilg, A.}, + title = {The Seri Indians in 1692}, + journal = {Arizona and the West}, + volume = {7}, + number = {1}, + pages = {33-56}, + year = {1965}, + key = {Gilg (1965)}, + lgcode = {Seri [seri1257]}, + note = {translated and edited by C. C. DiPeso and D. S. Matson} +} +@incollection{gillespie1981, + author = {Gillespie, B. C.}, + editor = {Helm, J.}, + title = {Mountain Indians}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {326-337}, + year = {1981}, + glottolog_ref = {hh:e:Gillespie:Mountain-Indians}, + key = {Gillespie (1981)}, + lgcode = {Mountain Dene [nort2942]} +} +@article{gilliard1925, + author = {Gilliard, L.}, + title = {Etude de la societe indigene}, + journal = {Congo}, + volume = {6}, + pages = {i, 39-76}, + year = {1925}, + key = {Gilliard (1925)}, + lgcode = {Ekonda [ekon1238]} +} +@book{gillin1936, + author = {Gillin, J. P.}, + title = {The Barama river Caribs of British Guiana}, + address = {Cambridge}, + series = {Papers of the Peabody Museum of Archeology and Ethnology, Harvard University}, + volume = {14}, + number = {ii}, + pages = {1-274}, + year = {1936}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na057}, + key = {Gillin (1936)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1948, + author = {Gillin, J. P.}, + title = {Tribes of the Guianas}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {799-860}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Caribe_chikena0}, + key = {Gillin (1948)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1951, + author = {Gillin, J. P.}, + title = {The Culture of Security in San Carlos}, + journal = {Publ. Middle Amer. Res. Inst., Tulane Univ.}, + volume = {16}, + pages = {1-128}, + year = {1951}, + key = {Gillin (1951)}, + lgcode = {Poqomam [poqo1253]} +} +@misc{gillinnd, + author = {Gillin, J. P.}, + howpublished = {Personal communication}, + key = {Gillin (nd)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gilmore1927, + author = {Gilmore, M. R.}, + title = {Some Notes on Arikara Tribal Organization}, + journal = {Indian Notes}, + volume = {4}, + pages = {332-350}, + year = {1927}, + key = {Gilmore (1927)}, + lgcode = {Arikara [arik1262]} +} +@book{ginsburgandroberts1958, + author = {Ginsburg, N., and C. F. Roberts, Jr.}, + title = {Malaya}, + address = {Seattle}, + year = {1958}, + key = {Ginsburg and Roberts (1958)}, + lgcode = {Malays [mala1479]} +} +@book{girard1904, + author = {Girard, H.}, + title = {Les tribes sauvages du Haut-Tonkin: Mans et Meos}, + address = {Paris}, + year = {1904}, + key = {Girard (1904)}, + lgcode = {Man [kimm1245]} +} +@article{girfanova2000, + author = {Girfanova, A. H.}, + title = {Udegejskie terminy rodstva (Udihe Kinship Terminology)}, + journal = {Algebra rodstva}, + volume = {5}, + pages = {271-77}, + year = {2000}, + key = {Girfanova (2000)}, + lgcode = {Udihe [udih1248]} +} +@article{girling1960, + author = {Girling, F. K.}, + title = {The Acholi of Uganda}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {30}, + pages = {1-238}, + year = {1960}, + glottolog_ref = {eballiso2009:17156}, + key = {Girling (1960)}, + lgcode = {Acholi [dhop1238]} +} +@book{glacken1955, + author = {Glacken, C. J.}, + title = {The Great Loochoo}, + address = {Berkeley}, + year = {1955}, + key = {Glacken (1955)}, + lgcode = {Okinawans [cent2126]} +} +@article{gladwin1948, + author = {Gladwin, T.}, + title = {Comanche Kin Behavior}, + journal = {American Anthropologist}, + volume = {50}, + pages = {73-94}, + year = {1948}, + key = {Gladwin (1948)}, + lgcode = {Comanche [coma1245]} +} +@article{gladwinandsarason1953, + author = {Gladwin, T., and S. B. Sarason.}, + title = {Truk:Man in Paradise}, + journal = {Viking Fund Publications in Anthropology}, + volume = {20}, + pages = {1-655}, + year = {1953}, + key = {Gladwin and Sarason (1953)}, + lgcode = {Trukese [chuu1238]} +} +@book{glover1927, + author = {Glover, T. R.}, + title = {Conflict of Religions in the Early Roman Empire}, + address = {London}, + year = {1927}, + key = {Glover (1927)}, + lgcode = {Ancient Romans [lati1261]} +} +@incollection{gluckman1940, + author = {Gluckman, M.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Kingdom of the Zulu in South Africa}, + booktitle = {African Political Systems}, + address = {Oxford}, + pages = {25-55}, + year = {1940}, + key = {Gluckman (1940)}, + lgcode = {Zulu [zulu1248]} +} +@book{gluckman1941, + author = {Gluckman, M.}, + title = {Economy of the Central Barotse Plain}, + series = {Rhodes-Livingstone Papers}, + volume = {7}, + year = {1941}, + key = {Gluckman (1941)}, + lgcode = {Lozi [lozi1239]} +} +@incollection{gluckman1950, + author = {Gluckman, M.}, + editor = {Radcliffe-Brown and Forde}, + title = {Kinship and Marriage Among the Lozi of Northern Rhodesia and the Zulu of Natal}, + booktitle = {African Systems of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {166-206}, + year = {1950}, + glottolog_ref = {eballiso2009:44745}, + key = {Gluckman (1950)}, + lgcode = {Lozi [lozi1239], Zulu [zulu1248]} +} +@incollection{gluckman1951, + author = {Gluckman, M.}, + editor = {E. Colson and M. Gluckman}, + title = {The Lozi of Barotseland}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {1-93}, + year = {1951}, + glottolog_ref = {eballiso2009:27123}, + key = {Gluckman (1951)}, + lgcode = {Lozi [lozi1239]} +} +@book{gluckman1965, + author = {Gluckman, Max}, + title = {The Judicial Process among the Barotse}, + year = {1965}, + key = {Gluckman (1965)}, + lgcode = {Lozi [lozi1239]} +} +@misc{gluckman1972, + author = {Gluckman, M.}, + title = {The Ideas in Barotse Jurisprudence}, + address = {Manchester}, + year = {1972}, + key = {Gluckman (1972)}, + lgcode = {Lozi [lozi1239]}, + note = {1st ed. 1965} +} +@article{gmann1953, + author = {gmann, J. J.}, + title = {Social Organization of the Attawapiskat Cree Indians}, + journal = {Anthropos}, + volume = {47}, + pages = {809-816}, + year = {1953}, + key = {gmann (1953)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@article{goddard1903, + author = {Goddard, P. E.}, + title = {Life and Culture of the Hupa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {1}, + pages = {1-88}, + year = {1903}, + key = {Goddard (1903)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1904, + author = {Goddard, P. E.}, + title = {Hupa Texts}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {1}, + number = {2}, + pages = {89-378}, + year = {1904}, + glottolog_ref = {wals:2151}, + key = {Goddard (1904)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1916, + author = {Goddard, P. E.}, + title = {The Beaver Indians}, + journal = {Anthropological Papers}, + publisher = {American Museum of Natural History}, + address = {New York}, + volume = {10}, + number = {4}, + pages = {201-293}, + year = {1916}, + key = {Goddard (1916)}, + lgcode = {Beaver [beav1236]} +} +@article{goddard1923, + author = {Goddard, P. E.}, + title = {Habitat of the Wailaki}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley and Los Angeles: University of California Press}, + address = {Berkeley and Los Angeles}, + volume = {20}, + pages = {95-109}, + year = {1923}, + glottolog_ref = {hh:e:Goddard:Wailaki}, + key = {Goddard (1923)}, + lgcode = {Sinkyone [wail1244]} +} +@article{goddard1973, + author = {Goddard, A.D.}, + title = {Changing Family Structures Among the Rural Hausa}, + journal = {Africa}, + volume = {43}, + pages = {207-218}, + year = {1973}, + key = {Goddard (1973)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@incollection{goethals1967, + author = {Goethals, P. R.}, + editor = {Koentjaraningrat}, + title = {Rarak: A Swidden Village of West Sumbawa}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {30-62}, + year = {1967}, + key = {Goethals (1967)}, + lgcode = {Sumbawanese [sumb1241]} +} +@incollection{gogginandsturtevant1964, + author = {Goggin, J. M., and W. C. Sturtevant}, + editor = {W. H. Goodenough}, + title = {The Calusa: A Stratified, Nonagricultural Society (with Notes on Sibling Marriage)}, + booktitle = {Explorations in Cultural Antirippology: Essays in Honor of George Peter Murdock}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {179-219}, + year = {1964}, + key = {Goggin and Sturtevant (1964)}, + lgcode = {Calusa [calu1239]} +} +@book{goichon1927, + author = {Goichon, M.}, + title = {La vie feminine au Mzab}, + address = {Paris}, + year = {1927}, + key = {Goichon (1927)}, + lgcode = {Mzab [tumz1238]} +} +@article{goldenweiser191213, + author = {Goldenweiser, A. A.}, + title = {On Iroquois Work}, + journal = {Summ. Rep. (Canada) Geol. Surv., Dep. Mines}, + volume = {1912; 1913}, + pages = {464-475; 365-372}, + year = {1912-13}, + key = {Goldenweiser (1912-13)}, + lgcode = {Seneca [sene1264]} +} +@book{golder192225, + author = {Golder, F. A.}, + title = {Bering's Voyages. 2v}, + address = {New York}, + year = {1922-25}, + key = {Golder (1922-25)}, + lgcode = {Aleut [east2533]} +} +@article{goldfrank1927, + author = {Goldfrank, E. S.}, + title = {The Social and Ceremonial Organization of Cochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {33}, + pages = {1-129}, + year = {1927}, + key = {Goldfrank (1927)}, + lgcode = {Cochiti [coch1273]} +} +@article{goldfrank1943, + author = {Goldfrank, Esther}, + title = {Historic Change and Social Character: A Study of the Teton Dakota}, + journal = {American Anthropologist}, + volume = {45}, + pages = {67-83}, + year = {1943}, + key = {Goldfrank (1943)}, + lgcode = {Teton [lako1247]} +} +@article{goldfrank1945a, + author = {Goldfrank, E. S.}, + title = {Changing Configurations in the Social Organization of a Blackfoot Tribe}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {7}, + pages = {1-73}, + year = {1945}, + key = {Goldfrank (1945a)}, + lgcode = {Kainai [bloo1239]} +} +@article{goldfrank1945b, + author = {Goldfrank, E. S.}, + title = {Irrigation Agriculture and Navaho Community Leadership}, + journal = {American Anthropologist}, + volume = {47}, + pages = {262-277}, + year = {1945}, + key = {Goldfrank (1945b)}, + lgcode = {Navajo [nava1243]} +} +@incollection{goldman1937, + author = {Goldman, Irving}, + key = {Goldman (1937)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937a, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Kwakiutl Indians of Vancouver Island}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {180-209}, + year = {1937}, + key = {Goldman (1937a)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937b, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Zuni Indians of New Mexico}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {313-353}, + year = {1937}, + key = {Goldman (1937b)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{goldman1940, + author = {Goldman, Irving}, + editor = {R. Linton}, + title = {The Alkatcho Carrier of British Columbia}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {333-386}, + year = {1940}, + key = {Goldman (1940)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1941, + author = {Goldman, I.}, + title = {The Alkatcho Carrier}, + journal = {American Anthropologist}, + volume = {43}, + pages = {396-418}, + year = {1941}, + key = {Goldman (1941)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1948, + author = {Goldman, I.}, + title = {Tribes of the Uaupés-Caquetá region}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {763-798}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Arawak_baniva03}, + key = {Goldman (1948)}, + lgcode = {Cubeo [cube1242]} +} +@article{goldman1963, + author = {Goldman, I.}, + title = {The Cubeo Indians}, + journal = {Illinois Studies in Anthropology}, + volume = {2}, + pages = {1-305}, + year = {1963}, + key = {Goldman (1963)}, + lgcode = {Cubeo [cube1242]}, + note = {field research 1939-40} +} +@article{goldschmidt1948, + author = {Goldschmidt, Walter R.}, + title = {Social Organization in Native California and the Origin of Clans}, + journal = {American Anthropologist}, + volume = {50}, + pages = {444-456}, + year = {1948}, + key = {Goldschmidt (1948)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidt1951, + author = {Goldschmidt, Walter R.}, + title = {Nomlaki Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {303-443}, + year = {1951}, + key = {Goldschmidt (1951)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidtetal1940, + author = {Goldschmidt, Walter R., and Harold E. Driver}, + title = {The Hupa White Deerskin Dance}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {103-42}, + year = {1940}, + key = {Goldschmidt et al. (1940)}, + lgcode = {Hupa [hupa1239]} +} +@misc{goldschmidtperscomm1966, + author = {Goldschmidt, Walter R.}, + year = {1966}, + howpublished = {pers. comm.}, + key = {Goldschmidt pers. comm. (1966)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldstein1934, + author = {Goldstein, M. S.}, + title = {Anthropometry of the Comanches}, + journal = {American Journal of Physical Anthropology}, + volume = {19}, + pages = {289-319}, + year = {1934}, + key = {Goldstein (1934)}, + lgcode = {Comanche [coma1245]} +} +@book{gomes1911, + author = {Gomes, E. H.}, + title = {Seventeen Years Among the Sea Dyaks of Borneo}, + address = {London}, + year = {1911}, + key = {Gomes (1911)}, + lgcode = {Iban [iban1264]} +} +@article{gomes1946, + author = {Gomes, Barbosa, O. C.}, + title = {Breve noticia dos caracteres etnicos dos indigenas da tribo BiAfada}, + journal = {Bol. Cultural Guine Port.}, + volume = {1}, + pages = {205-274}, + year = {1946}, + glottolog_ref = {hh:ew:Gomes:Biafada}, + key = {Gomes (1946)}, + lgcode = {Biafada [biaf1240]} +} +@inproceedings{goni1988, + author = {Goni, R.A.}, + title = {Arqueologia de momentos tardios en el Parque Nacional Perito Moreno (Santa Cruz, Argentina)}, + booktitle = {Precirculados de las Ponencias Cientificas presentada a los Simposios del IX Congreso nacional de Arquelogia Argentina}, + publisher = {Universidad de Buenos Aires}, + address = {Buenos Aires}, + pages = {140-151}, + year = {1988}, + key = {Goni (1988)}, + lgcode = {Tehuelche [tehu1242]} +} +@phdthesis{goodale1959, + author = {Goodale, J. C.}, + title = {The Tiwi Women of Melville Island}, + school = {University of Pennsylvania}, + year = {1959}, + key = {Goodale (1959)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1960, + author = {Goodale, J. C.}, + title = {Sketches of Tiwi Children}, + journal = {Expedition}, + volume = {2}, + number = {4}, + pages = {4-13}, + year = {1960}, + key = {Goodale (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1962, + author = {Goodale, J. C.}, + title = {Marriage Contacts among the Tiwi}, + journal = {Ethnology}, + volume = {1}, + pages = {452-466}, + year = {1962}, + key = {Goodale (1962)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodale1971, + author = {Goodale, J. C.}, + title = {Tiwi Wives. A Study of the Women of Melville Island, North Australia}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1971}, + key = {Goodale (1971)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodenough1949, + author = {Goodenough, W. H.}, + title = {Property, Kin, and Community on Truk}, + address = {New Haven}, + series = {Yale University Publications in Anthropology}, + volume = {46}, + pages = {1-192}, + year = {1949}, + key = {Goodenough (1949)}, + lgcode = {Trukese [chuu1238]} +} +@misc{goodenough1951a, + author = {Goodenough, W. H.}, + title = {Notes on the Bwaidoga People}, + year = {1951}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1951a)}, + lgcode = {Bwaidoga [bwai1242]} +} +@misc{goodenough1951b, + author = {Goodenough, W. H.}, + title = {Progress Report on Ethonographic Phase of Onotoa Project}, + year = {1951}, + howpublished = {Washington (mimeographed)}, + key = {Goodenough (1951b)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1952, + author = {Goodenough, W. H.}, + title = {Ethnological Reconnaisance in New Guinea}, + journal = {University (of Pennsylvania) Museum Bull.}, + volume = {17}, + pages = {5-37}, + year = {1952}, + key = {Goodenough (1952)}, + lgcode = {Molima [moli1248]} +} +@article{goodenough1953, + author = {Goodenough, W. H.}, + title = {Ethnographic Notes on the Mae People}, + journal = {Southw. Journ. Anth.}, + volume = {9}, + pages = {29-44}, + year = {1953}, + key = {Goodenough (1953)}, + lgcode = {Enga [enga1252]} +} +@misc{goodenough1954a, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Bakovi Tribe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954a)}, + lgcode = {Bakovi [bola1250]} +} +@misc{goodenough1954b, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Koobe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954b)}, + lgcode = {Kombe [mudu1242]} +} +@article{goodenough1955, + author = {Goodenough, W. H.}, + title = {A Problem in Malayo-Polynesian Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {71-83}, + year = {1955}, + key = {Goodenough (1955)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1962, + author = {Goodenough, W. H.}, + title = {Kindred and Hamlet in Lakalai, New Brittain}, + journal = {Ethnology}, + volume = {1}, + pages = {5-12}, + year = {1962}, + key = {Goodenough (1962)}, + lgcode = {Lakalai [naka1262]} +} +@misc{goodenough1969, + author = {Goodenough, W. H.}, + title = {Changing Social Organization on Romonum, Truk 1947-1965}, + year = {1969}, + howpublished = {Manuscript}, + key = {Goodenough (1969)}, + lgcode = {Trukese [chuu1238]} +} +@book{goodenough1974, + author = {Goodenough, W.H.}, + title = {Changing Social Organization on Romonum, Truk, 1947-1965}, + year = {1974}, + key = {Goodenough (1974)}, + lgcode = {Trukese [chuu1238]} +} +@article{goodmanetal1985, + author = {Goodman, M. J. and A. Estioko-Griffin and P. B. Griffin and J. S. Grove}, + title = {The Compatibility of Hunting and Mothering among Agta Hunter Gatherers of the Philippines}, + journal = {Sex Roles}, + volume = {12}, + number = {11-12}, + pages = {1199-1209}, + year = {1985}, + key = {Goodman et al. (1985)}, + lgcode = {Agta (Cagayan) [cent2084]} +} +@article{goodwin1935, + author = {Goodwin, Grenville}, + title = {The Social Divisions and Economic Life of the Western Apache}, + journal = {American Anthropologist}, + volume = {37}, + pages = {55-64}, + year = {1935}, + key = {Goodwin (1935)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goodwin1937, + author = {Goodwin, Grenville}, + title = {The Characteristics and Function of Clan in a Southern Athapascan Culture}, + journal = {American Anthropologist}, + volume = {39}, + pages = {394-407}, + year = {1937}, + key = {Goodwin (1937)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1942, + author = {Goodwin, Grenville}, + title = {The Social Organization of the Western Apache}, + address = {Chicago}, + year = {1942}, + key = {Goodwin (1942)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1971, + author = {Goodwin, Grenville}, + editor = {Keith H. Basso}, + title = {Western Apache Raiding and Warfare}, + publisher = {University of Arizona Press}, + address = {Tucson, Ariz.}, + year = {1971}, + key = {Goodwin (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goody1956, + author = {Goody, J. R.}, + title = {The Social Organisation of the LoWiili}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {19}, + pages = {1-119}, + year = {1956}, + glottolog_ref = {eballiso2009:25853}, + key = {Goody (1956)}, + lgcode = {Birifor [sout2790], Lowiili [sout2790]} +} +@article{goody1958, + author = {Goody, J. R.}, + title = {The Fission of Domestic Groups Among the Lo Dagaba}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {1}, + pages = {53-91}, + year = {1958}, + key = {Goody (1958)}, + lgcode = {Lowiili [sout2790]} +} +@book{gorer1938, + author = {Gorer, G.}, + title = {Himalayan Village}, + address = {London}, + year = {1938}, + key = {Gorer (1938)}, + lgcode = {Lepcha [lepc1244]} +} +@article{gottschling1905, + author = {Gottschling, E.}, + title = {The Bavenda: a sketch of their history and customs}, + journal = {Journal of the Anthropological Institute}, + volume = {35}, + pages = {365-86}, + year = {1905}, + glottolog_ref = {eballiso2009:2975}, + key = {Gottschling (1905)}, + lgcode = {Venda [vend1245]} +} +@incollection{gough1961, + author = {Gough, Kathleen}, + editor = {D. M. Schneider and K. Gough}, + title = {Nayar: Central Kerala}, + booktitle = {Matrilineal kinship}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1961}, + key = {Gough (1961)}, + lgcode = {Kerala [mala1464]} +} +@article{goughaberle1955, + author = {Gough (Aberle), E. K.}, + title = {The Social Structure of a Tanjore Village}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {83}, + pages = {36-52}, + year = {1955}, + key = {Gough (Aberle) (1955)}, + lgcode = {Tamil [tami1289]} +} +@misc{goughaberlend, + author = {Gough (Aberle), E. K.}, + howpublished = {Personal communication}, + key = {Gough (Aberle) (nd)}, + lgcode = {Tamil [tami1289]} +} +@article{gould1968, + author = {Gould, R. A.}, + title = {Living Archaeology: The Ngatatjara of Western Australia}, + journal = {Southwestern Journal of Anthropology}, + volume = {24}, + pages = {101-122}, + year = {1968}, + key = {Gould (1968)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1969, + author = {Gould, R. A.}, + title = {Yiwara: foragers of the Australian desert}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1969}, + glottolog_ref = {hh:lde:Gould:Yiwara}, + key = {Gould (1969)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@article{gould1971, + author = {Gould, R. A.}, + title = {The Archaeologist as Ethnographer: A Case Study from the Western DeSert of Australia}, + journal = {World Archaeology}, + volume = {3}, + pages = {143-177}, + year = {1971}, + key = {Gould (1971)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1977, + author = {Gould, R. A.}, + title = {Puntutjarpa Rockshelter and the Australian Desert Culture}, + address = {New York}, + series = {Anthropological Papers, American Museum of Natural History}, + volume = {54}, + year = {1977}, + key = {Gould (1977)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@incollection{gouldandplew1996, + author = {Gould, R. T., and M. G. Plew}, + editor = {M. G. Plew}, + title = {Late Archaic Fishing along the Middle Snake River, Southwestern Idaho}, + booktitle = {Prehistoric Hunter-Gatherer Fishing Strategies}, + publisher = {Department of Anthropology, Boise State University}, + address = {Boise, Idaho}, + pages = {64-83}, + year = {1996}, + key = {Gould and Plew (1996)}, + lgcode = {Agaiduka [nort2955]} +} +@misc{gouldperscomm1992, + author = {Gould, R. A.}, + howpublished = {pers. comm.}, + key = {Gould pers. comm. (1992)}, + lgcode = {Agaiduka [nort2955]} +} +@book{gouldsburyandsheane1911, + author = {Gouldsbury, C., and A. Sheane.}, + title = {The Great Plateau of Northern Rhodesia}, + address = {London}, + year = {1911}, + key = {Gouldsbury and Sheane (1911)}, + lgcode = {Bemba [town1238]} +} +@book{gourou1936, + author = {Gourou, P.}, + title = {Les paysans du delta tonkinois}, + address = {Paris}, + year = {1936}, + key = {Gourou (1936)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1954, + author = {Gourou, P.}, + title = {Land Utilization in French Indochina. 3v}, + address = {Washington}, + year = {1954}, + key = {Gourou (1954)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1955, + author = {Gourou, P.}, + title = {Peasants of Tonkin Delta, a Study of Human Geography}, + address = {New Haven}, + year = {1955}, + key = {Gourou (1955)}, + lgcode = {Annamese [viet1252]} +} +@article{grabert1974, + author = {Grabert, G. F.}, + title = {Okanagan Archaeology: 1966-67}, + journal = {Syesis}, + volume = {7}, + number = {2}, + pages = {1-83}, + year = {1974}, + key = {Grabert (1974)}, + lgcode = {Syilx [sout2963]} +} +@book{graburn1964, + author = {Graburn, N. H. H.}, + title = {Taqagmiut Eskimo Kinship Terminology}, + address = {Ottawa}, + year = {1964}, + key = {Graburn (1964)}, + lgcode = {Taqagmiut [queb1248]} +} +@book{graburn1969, + author = {Graburn, N. H. H.}, + title = {Eskimos without Igloos: Social and Economic Development in Sugluk}, + publisher = {Little, Brown}, + address = {Boston}, + year = {1969}, + key = {Graburn (1969)}, + lgcode = {Labrador Inuit [labr1244]} +} +@book{gracheva1983, + author = {Gracheva, G. N.}, + title = {Traditsionnoe mirovozzrenie ohotnikov Tajmyra (na materialah nganasan 19-nachala 20 v.)}, + address = {Leningrad}, + year = {1983}, + key = {Gracheva (1983)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Traditional Worldview of the Tajmyr Hunters: The Nganasan in the Nineteenth and Early Twentieth Centuries} +} +@incollection{gracheva1988, + author = {Gracheva, G. N.}, + editor = {I. S. Kon and Ch. M. Taksami}, + title = {Sotsializatsija detej i podrostkov v traditsionnom obshchestve nganasan (Child and Adolescent Socialization among the Nganasan)}, + booktitle = {Traditsionnoe vospitanie detej u narodov Sibiri (Traditonal Socialization Patterns among the Siberian Peoples)}, + address = {Leningrad}, + pages = {160-184}, + year = {1988}, + key = {Gracheva (1988)}, + lgcode = {Nganasan [ngan1291]} +} +@incollection{gracheva1994, + author = {Gracheva, G. N.}, + editor = {V. A. Tishkov}, + title = {Nganasany (The Nganasan)}, + booktitle = {Narody Rossii (Peoples of Russia)}, + address = {Moscow}, + pages = {242-244}, + year = {1994}, + key = {Gracheva (1994)}, + lgcode = {Nganasan [ngan1291]} +} +@phdthesis{gragson1989, + author = {Gragson, T.}, + title = {Allocation of time to subsistence and settlement in a Ciri Khonome Pume village of the Llanos of Apure, Venezuela}, + school = {Department of Anthropology, Pennsylvania State University, College Station}, + year = {1989}, + glottolog_ref = {fabreall2009ann:Yaruro5}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gragson (1989)}, + lgcode = {Pumé [pume1238]} +} +@book{grandidierandgrandidier190828, + author = {Grandidier, A. and G. Grandidier.}, + title = {Ethnographie de Madagascar}, + publisher = {Paris}, + volume = {5 vols}, + year = {1908-28}, + glottolog_ref = {eballiso2009:2125}, + key = {Grandidier and Grandidier (1908-28)}, + lgcode = {Merina [meri1243]} +} +@article{granqvist193135, + author = {Granqvist, H.}, + title = {Marriage Conditions in a Palestinian Village}, + journal = {Soc. Scient. Fenn., Comm. Hum. Litt.}, + volume = {3}, + pages = {8}, + year = {1931-35}, + key = {Granqvist (1931-35)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{grant1890, + author = {Grant, P.}, + editor = {L. F. R. Masson}, + title = {The Saulteaux Indians About 1804}, + booktitle = {Les Bouregeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {303-366}, + year = {1890}, + key = {Grant (1890)}, + lgcode = {Katikitegon [uppe1274], Nipigon [cent2136]} +} +@article{grant1924, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Lake Winnipeg Indians}, + journal = {American Journal of Physical Anthropology}, + volume = {7}, + pages = {299-315}, + year = {1924}, + key = {Grant (1924)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238], Round Lake Ojibwa [seve1241]} +} +@book{grant1925, + author = {Grant, Blanche C.}, + title = {Taos Indians}, + address = {Taos}, + year = {1925}, + key = {Grant (1925)}, + lgcode = {Taos [taos1236]} +} +@book{grant1930, + author = {Grant, J. C. B.}, + title = {Anthropometry of the Chipewyan and Cree Indians of the neighborhood of Lake Athabaska}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 64, Anthropological Series}, + number = {14}, + year = {1930}, + key = {Grant (1930)} +} +@book{grant1936, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Beaver, Sekani, and Carrier Indians}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 81, Anthropological Series}, + number = {18}, + year = {1936}, + key = {Grant (1936)}, + lgcode = {Beaver [beav1236], Dakelh [carr1249], Dene [chip1261], Sekani [seka1250]} +} +@book{grant1960, + author = {Grant, M.}, + title = {The World of Rome}, + address = {London}, + year = {1960}, + key = {Grant (1960)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{grant1964, + author = {Grant, B.}, + title = {Indonesia}, + address = {Melbourne}, + year = {1964}, + key = {Grant (1964)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@article{granvilleandroth1898, + author = {Granville, R. K., and F. N. Roth.}, + title = {Notes on the Jekris, Sobos ad Ijos of the Warri District}, + journal = {Journ. Roy Anth. Inst.}, + volume = {28}, + pages = {104-126}, + year = {1898}, + key = {Granville and Roth (1898)}, + lgcode = {Ijaw [kala1381]} +} +@book{grattan1948, + author = {Grattan, F. J. H.}, + title = {An Introduction to Samoan Custom}, + address = {Apia}, + year = {1948}, + key = {Grattan (1948)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{gray1953, + author = {Gray, R. F.}, + title = {Notes on Irangi Houses}, + journal = {Tanganyika Notes Rec.}, + volume = {35}, + pages = {45-52}, + year = {1953}, + key = {Gray (1953)}, + lgcode = {Rangi [lang1320]} +} +@book{gray1963, + author = {Gray, R. F.}, + title = {The Sonjo of Tanganyika}, + address = {London}, + year = {1963}, + key = {Gray (1963)}, + lgcode = {Sonjo [temi1247]} +} +@book{gray1966, + author = {Gray, J. M.}, + title = {A History of the Gambia}, + publisher = {London: Frank Cass & Co.}, + address = {New York}, + year = {1966}, + glottolog_ref = {eballiso2009:51009}, + key = {Gray (1966)}, + lgcode = {Wolof [nucl1347]} +} +@book{gray1987, + author = {Gray, D.J.}, + title = {The Takelma and Their Athapascan Neighbors}, + publisher = {University of Oregon}, + address = {Eugene}, + series = {Anthropological Papers}, + number = {37}, + year = {1987}, + key = {Gray (1987)}, + lgcode = {Takelma [take1257], Tututni [tutu1242]} +} +@misc{graynd, + author = {Gray, R. F.}, + title = {Outline of an Anthropological Field Study of the Wambugwe}, + howpublished = {Manuscript}, + key = {Gray (nd)}, + lgcode = {Mbugwe [mbug1242]} +} +@misc{greavesperscomm1993, + author = {Greaves}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Greaves pers. comm. (1993)}, + lgcode = {Pumé [pume1238]} +} +@book{green1947, + author = {Green, M. M.}, + title = {Ibo Village Affairs}, + address = {London}, + year = {1947}, + key = {Green (1947)}, + lgcode = {Igbo [nucl1417]}, + note = {2nd ed. 1964} +} +@article{greenberg1946, + author = {Greenberg, J. H.}, + title = {The Influence of Islam on a Sudanese Religion}, + journal = {Monographs of the American Ethnological Society}, + volume = {10}, + pages = {1-73}, + year = {1946}, + key = {Greenberg (1946)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@article{greenberg1947, + author = {Greenberg, J. H.}, + title = {Islam and Clan Organization among the Hausa}, + journal = {Southwestern Journal of Anthropology}, + volume = {3}, + pages = {193-211}, + year = {1947}, + glottolog_ref = {eballiso2009:15210}, + key = {Greenberg (1947)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@misc{greenwood1971, + author = {Greenwood, P. C.}, + year = {1971}, + howpublished = {Personal Communication}, + key = {Greenwood (1971)}, + lgcode = {French Basques [labo1236]} +} +@article{grevisse193738, + author = {Grevisse, F.}, + title = {Les Bayeke}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {5; 6}, + pages = {1-16, 29-40, 65-74, 97-113, 165-175; 200-216, 238-341}, + year = {1937-38}, + key = {Grevisse (1937-38)}, + lgcode = {Garanganze [sang1331]} +} +@incollection{griauleanddieterlen1954, + author = {Griaule, Marcel, and Germaine Dieterlen}, + editor = {C. Daryll Forde}, + title = {The Dogon}, + booktitle = {African worlds: studies in the cosmological ideas and social values of African peoples}, + publisher = {Oxford University Press}, + address = {London}, + year = {1954}, + key = {Griaule and Dieterlen (1954)}, + lgcode = {Dogon [bank1259]} +} +@book{grierson1885, + author = {Grierson, G. A.}, + title = {Bihar Peasant Life}, + address = {Calcutta}, + year = {1885}, + key = {Grierson (1885)}, + lgcode = {Bihari [mait1250]} +} +@book{griffen1959, + author = {Griffen, B.}, + title = {Notes on Seri Indian Culture, Sonora, Mexico}, + publisher = {University of Florida Press}, + address = {Gainesville}, + series = {Latin American Monograph Series}, + number = {10}, + year = {1959}, + key = {Griffen (1959)}, + lgcode = {Seri [seri1257]} +} +@article{griffith1954, + author = {Griffith, W. J.}, + title = {The Hasinai Indians of East Texas as seen by Europeans, 1687-1772}, + journal = {Mid. Amer. Res. Inst., Tulane Univ. Philol. Doc. St.}, + volume = {2}, + pages = {45-165}, + year = {1954}, + key = {Griffith (1954)}, + lgcode = {Hasinai [cadd1256]} +} +@book{griffiths1946, + author = {Griffiths, W. G.}, + title = {The Kol Tribe of Central India}, + address = {Calcutta}, + year = {1946}, + key = {Griffiths (1946)}, + lgcode = {Kol [mund1320]} +} +@book{grigolia1939, + author = {Grigolia, A.}, + title = {Custom and Justice in the Caucasus}, + address = {Philadelphia}, + year = {1939}, + key = {Grigolia (1939)}, + lgcode = {Khevsur [xevs1238], Svan [svan1243]} +} +@misc{grigson1938, + author = {Grigson, W. V.}, + title = {The Maria Gonds of Bastar}, + address = {London}, + year = {1938}, + key = {Grigson (1938)}, + lgcode = {Madia [mari1414]}, + note = {Rev. Edit. 1949} +} +@article{grimble1921, + author = {Grimble, A.}, + title = {From Birth to Death in the Gilbert Islands}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {51}, + pages = {25-54}, + year = {1921}, + key = {Grimble (1921)}, + lgcode = {Makin [bana1287]} +} +@article{grimesandgrimes1962, + author = {Grimes, J. E., and B. F. Grimes}, + title = {Semantic distinctions in Huichol (Uto-Aztecan) kinship}, + journal = {American Anthropologist}, + volume = {64}, + pages = {104-14}, + year = {1962}, + glottolog_ref = {sil16:10902}, + key = {Grimes and Grimes (1962)}, + lgcode = {Huichol [huic1243]} +} +@incollection{grimesandhinton1969, + author = {Grimes, J. E. and T. B. Hinton}, + editor = {R. Wauchope}, + title = {The Huichol and Cora}, + booktitle = {Handbook of Middle American Indians}, + address = {Austin}, + volume = {7}, + number = {ii}, + pages = {792-813}, + year = {1969}, + key = {Grimes and Hinton (1969)}, + lgcode = {Huichol [huic1243]} +} +@article{grinnell1918, + author = {Grinnell, George B.}, + title = {Early Cheyenne villages}, + journal = {American Anthropologist}, + volume = {20}, + pages = {359-380}, + year = {1918}, + key = {Grinnell (1918)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grinnell1923, + author = {Grinnell, G. B.}, + title = {The Cheyenne Indians. 2v}, + address = {New Haven}, + year = {1923}, + key = {Grinnell (1923)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grishin1995, + author = {Grishin, Ja. Ja.}, + title = {Pol'sko-litovskie tatary (Nasledniki Zolotoj Ordy) (The Polish-Lithuanian Tatar. Heirs to the Golden Horde)}, + address = {Kazan'}, + year = {1995}, + key = {Grishin (1995)}, + lgcode = {Lithuanian Tatar [west2405]} +} +@article{grivot1942, + author = {Grivot, R.}, + title = {Le cercle de Lahous}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {4}, + pages = {1-154}, + year = {1942}, + key = {Grivot (1942)}, + lgcode = {Avikam [avik1243]} +} +@book{grnnowetal1983, + author = {Grønnow, B. and M. Melgaard and J. B. Nielsen}, + title = {Aasiyissuit - The Great Summer Camp: Archaeological, Ethnographical and Zoo-Archaeological Studies of a Caribou-Hunting Site in West Greenland}, + publisher = {Commission for Scientific Research in Greenland}, + address = {Odense}, + series = {Meddelelser om Gronland, Man and Society}, + volume = {5}, + year = {1983}, + key = {Grønnow et al. (1983)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{grodekov1889, + author = {Grodekov, N. I.}, + title = {Kirghizy i Karakirgizy sur Dar'inskoi Oblasti. [Vol. I, Juridical Life. ]}, + address = {Tashkent}, + year = {1889}, + key = {Grodekov (1889)}, + lgcode = {Kazakh [kaza1248]}, + note = {The Typolithography of S. I. Lakhtin} +} +@book{groslier1956, + author = {Groslier, B. P.}, + title = {Angkor: Hommes et pierres}, + address = {Paris}, + year = {1956}, + key = {Groslier (1956)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@book{groslier1958, + author = {Groslier, B. P.}, + title = {Angkor et le Cambodge au XVIe siècle d'apres les sources portugaises at espagnoles}, + year = {1958}, + key = {Groslier (1958)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@book{grottanelli1940, + author = {Grottanelli, V. L.}, + title = {I. Mao}, + address = {Rome}, + series = {Mission Etnografica nel Uallega Occidentale}, + volume = {1}, + pages = {1-397}, + year = {1940}, + key = {Grottanelli (1940)}, + lgcode = {Anfillo [anfi1235], Mao [hozo1236]} +} +@article{grottanelli1948, + author = {Grottanelli, V. L.}, + title = {I Pre-Niloti}, + journal = {Annali Lateranensi}, + volume = {12}, + pages = {282-326}, + year = {1948}, + key = {Grottanelli (1948)}, + lgcode = {Koma [komo1258]} +} +@book{grottanelli1955, + author = {Grottanelli, V. L.}, + title = {Pescatori dell'Oceano Indiano}, + publisher = {Roma: Cremonese}, + address = {Roma}, + year = {1955}, + glottolog_ref = {hh:w:Grottanelli:Bagiuni}, + key = {Grottanelli (1955)}, + lgcode = {Bajuni [baju1245]} +} +@misc{grottanelli1972, + author = {Grottanelli, V. L.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Grottanelli (1972)}, + lgcode = {Mao [hozo1236]} +} +@book{grottanelliandmassari1943, + author = {Grottanelli, V. I., and C. Massari.}, + title = {I. Baria, i Cunama e i Beni Amer}, + address = {Rome}, + series = {Missione di Studio al Largo Tana}, + volume = {2}, + pages = {1-416}, + year = {1943}, + key = {Grottanelli and Massari (1943)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]} +} +@article{grove1919, + author = {Grove, E. T. N.}, + title = {Customs of the Acholi}, + journal = {Sudan Notes and Records}, + volume = {2}, + pages = {157-182}, + year = {1919}, + glottolog_ref = {eballiso2009:26574}, + key = {Grove (1919)}, + lgcode = {Acholi [dhop1238]} +} +@article{groves1934, + author = {Groves, W. C.}, + title = {The Natives of Sio Island}, + journal = {Oceania}, + volume = {5}, + pages = {43-63}, + year = {1934}, + key = {Groves (1934)}, + lgcode = {Sio [sioo1240]} +} +@article{groves1963, + author = {Groves, M.}, + title = {Western Motu Descent Groups}, + journal = {Ethnology}, + volume = {2}, + pages = {15-30}, + year = {1963}, + key = {Groves (1963)}, + lgcode = {Motu [motu1246]} +} +@misc{groves1964, + author = {Groves, M.}, + year = {1964}, + howpublished = {Personal communication}, + key = {Groves (1964)}, + lgcode = {Motu [motu1246]} +} +@book{grubb1911, + author = {Grubb, W. B.}, + title = {An Unknown People in an Unknown Land}, + address = {London}, + year = {1911}, + key = {Grubb (1911)}, + lgcode = {Lengua [leng1262]} +} +@incollection{guboglo1998, + author = {Guboglo, M. N.}, + editor = {V. A. Tishkov}, + title = {Gagauzy}, + booktitle = {Narody i Religii mira. Entsiklopedija (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {129}, + year = {1998}, + key = {Guboglo (1998)}, + lgcode = {Gagauz [gaga1249]} +} +@book{gubser1965, + author = {Gubser, N. J.}, + title = {The Nunamiut Eskimos}, + address = {New Haven}, + year = {1965}, + key = {Gubser (1965)}, + lgcode = {Nunamiut [nort2944]} +} +@book{gudgeon1885, + author = {Gudgeon, T. W.}, + title = {The History and doings of the Maoris}, + address = {Auckland}, + year = {1885}, + key = {Gudgeon (1885)}, + lgcode = {Māori [maor1246]} +} +@article{guebhard1911, + author = {Guebhard, P.}, + title = {Notes contributives a l'etude de la religion, des moeurs et des coutumes des Bobo}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {125-145}, + year = {1911}, + key = {Guebhard (1911)}, + lgcode = {Bobo [nort2819]} +} +@book{guenther1986, + author = {Guenther, M.}, + title = {The Nharo Bushmen of Botswana: tradition and change}, + publisher = {Helmut Buske Verlag}, + address = {Hamburg}, + series = {Quellen zur Khoisan-Forschung}, + volume = {3}, + year = {1986}, + glottolog_ref = {guldemann:1736}, + key = {Guenther (1986)}, + lgcode = {Naron [naro1249]} +} +@book{guha1931, + author = {Guha, B. S.}, + title = {The racial Affinities of the people of India}, + publisher = {Government of India Press}, + address = {Simla}, + series = {Census of India, Vol. I, Part III}, + year = {1931}, + key = {Guha (1931)}, + lgcode = {Khasi [khas1269], Telugu [telu1262]} +} +@article{guiart1956a, + author = {Guiart, J.}, + title = {Le district du Nord Ambrym}, + journal = {Journ. Soc. Oceanistes}, + volume = {23}, + pages = {201-336}, + year = {1956}, + key = {Guiart (1956a)}, + lgcode = {Ranon [nort2839]} +} +@book{guiart1956b, + author = {Guiart, J.}, + title = {L'organisation sociale et countumiere de la population autochtone de Nouvelle-Calédonie}, + address = {Noumea}, + year = {1956}, + key = {Guiart (1956b)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiart1963, + author = {Guiart, J.}, + title = {Structure de la chefferie en Mélanésie du Sud}, + journal = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {66}, + pages = {1-688}, + year = {1963}, + key = {Guiart (1963)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiral1886, + author = {Guiral, L.}, + title = {Les Batekes}, + journal = {Rev. Ethnog.}, + volume = {5}, + pages = {134-166}, + year = {1886}, + key = {Guiral (1886)}, + lgcode = {Teke [teke1278]} +} +@article{guiterasholmes1947, + author = {Guiteras Holmes, C.}, + title = {Clanes y sistema de parentesco de Cancuc}, + journal = {Acta Americana}, + volume = {5}, + pages = {1-17}, + year = {1947}, + key = {Guiteras Holmes (1947)}, + lgcode = {Tzeltal [tzel1254]} +} +@article{guiterasholmes1948, + author = {Guiteras Holmes, C.}, + title = {Sistema de parentesco huasteco}, + journal = {Acta Americana}, + volume = {6}, + pages = {152-172}, + year = {1948}, + key = {Guiteras Holmes (1948)}, + lgcode = {Huastec [huas1242]} +} +@article{gulick1953, + author = {Gulick, J.}, + title = {The Lebanese Village}, + journal = {American Anthropologist}, + volume = {55}, + pages = {367-372}, + year = {1953}, + key = {Gulick (1953)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1955, + author = {Gulick, J.}, + title = {Social Structure and Culture Change in a Lebanese Village}, + journal = {Viking Fund Publications in Anthropology}, + volume = {21}, + pages = {1-118}, + year = {1955}, + key = {Gulick (1955)}, + lgcode = {Lebanese [nort3139]} +} +@incollection{gulick1956, + author = {Gulick, J.}, + editor = {R. Patai}, + title = {Village Organization}, + booktitle = {The Republic of Lebanon}, + address = {New Haven}, + volume = {1}, + pages = {136-299}, + year = {1956}, + key = {Gulick (1956)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1958, + author = {Gulick, J. M.}, + title = {Indigenous Political Systems of Western Malaya}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {17}, + pages = {1-151}, + year = {1958}, + key = {Gulick (1958)}, + lgcode = {Negri Sembilan [nege1240]} +} +@book{gulliver1951, + author = {Gulliver, P. H.}, + title = {A preliminary survey of the Turkana}, + publisher = {Univ. of Cape Town (UCT)}, + series = {Comm. from the School of African Studies, new series}, + volume = {26}, + pages = {1-281}, + year = {1951}, + glottolog_ref = {eballiso2009:43438}, + key = {Gulliver (1951)}, + lgcode = {Turkana [turk1308]} +} +@article{gulliver1953, + author = {Gulliver, P. H.}, + title = {The Age-Set Organization of the Jiye Tribe}, + journal = {Journ. Roy. Anth. Indy.}, + volume = {83}, + pages = {147-168}, + year = {1953}, + key = {Gulliver (1953)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliver1955, + author = {Gulliver, P. H.}, + title = {The Family Herds}, + address = {London}, + year = {1955}, + key = {Gulliver (1955)}, + lgcode = {Jie [jiee1239], Turkana [turk1308]} +} +@incollection{gulliver1965, + author = {Gulliver, P. H.}, + editor = {J. L. Gibbs}, + title = {The Jie of Uganda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {157-196}, + year = {1965}, + key = {Gulliver (1965)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliverandgulliver1953, + author = {Gulliver, P., and P. H. Gulliver.}, + title = {The Central Nilo Hamites}, + publisher = {London: Oxford University Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {7}, + pages = {104}, + year = {1953}, + glottolog_ref = {hh:he:GulliverGulliver:Central-Nilo-Hamites}, + key = {Gulliver and Gulliver (1953)}, + lgcode = {Jie [jiee1239], Karamojong [nucl1430], Labwor [labw1238], Toposa [topo1242]} +} +@book{gunn1953, + author = {Gunn, H. D.}, + title = {Peoples of the Plateau Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {7}, + year = {1953}, + glottolog_ref = {eballiso2009:41321}, + key = {Gunn (1953)}, + lgcode = {Adara [kada1284], Anaguta [igut1238], Birom [bero1242], Chawai [atsa1241]} +} +@book{gunn1956, + author = {Gunn, H. D.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {12}, + year = {1956}, + glottolog_ref = {eballiso2009:41320}, + key = {Gunn (1956)}, + lgcode = {Kagoro [kago1246], Katab [kata1265], Kurama [kura1249]} +} +@book{gunnandconant1960, + author = {Gunn, H. D., and F. P. Conant}, + title = {Peoples of the Middle Niger Region}, + address = {London}, + year = {1960}, + key = {Gunn and Conant (1960)}, + lgcode = {Basa [basa1282], Basakomo [basa1282], Gbagyi [gbar1246], Kamuku [cind1241], Koro [ashe1269], Reshe [resh1242]} +} +@inproceedings{gunther1962, + author = {Gunther, E.}, + title = {Makah Marriage Patterns and Population Stability}, + booktitle = {Akten des 34th Internationalen Amerikanisten Kongress}, + publisher = {Verlag Ferdinand Berger}, + address = {Vienna}, + pages = {538-545}, + year = {1962}, + key = {Gunther (1962)}, + lgcode = {Makah [maka1318]} +} +@article{gunthere1927, + author = {Gunthere, E.}, + title = {Klallam Ethnography}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {1}, + pages = {171-314}, + year = {1927}, + key = {Gunthere (1927)}, + lgcode = {Klallam [clal1241]} +} +@article{gurden1904, + author = {Gurden, P. R. T.}, + title = {Note on the Khasis, Syntengs, and allied tribes inhabiting Khasi and Janital Hills district in Assam}, + journal = {Journal of the Asiatic Society of Bengal}, + volume = {73, Part 3}, + number = {4}, + pages = {57-75}, + year = {1904}, + key = {Gurden (1904)}, + lgcode = {Khasi [khas1269]} +} +@book{gurdon1907, + author = {Gurdon, P. R. T.}, + title = {The Khasis}, + publisher = {London: David Nutt}, + address = {London}, + pages = {xxvii+227+frontispiece+18 plates}, + year = {1907}, + glottolog_ref = {stampe:280}, + key = {Gurdon (1907)}, + lgcode = {Khasi [khas1269]} +} +@book{gusinde1931, + author = {Gusinde, M.}, + title = {The Selk'nam: On the Life and Thought of a Hunting People on the Great Land of Tierra del Fuego, translated by F. Schutze. Die Feuerland-Indianer, Vol. 1.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1931}, + key = {Gusinde (1931)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1931a, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, I. Die Selk'nam}, + publisher = {Mödling bei Wien}, + year = {1931}, + glottolog_ref = {fabreall2009ann:Chon_selknam42}, + key = {Gusinde (1931a)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1937a, + author = {Gusinde, M.}, + title = {The Yahgan: The Life and Thought of the Water Nomads of Cape Horn, translated by F. Schutze. Die Feuerland-Indianer, Vol. 2.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1937}, + key = {Gusinde (1937a)}, + lgcode = {Yahgan [yama1264]} +} +@book{gusinde1937b, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, 2: Yamana}, + publisher = {Mödling bei Wien}, + year = {1937}, + key = {Gusinde (1937b)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{gussow1954, + author = {Gussow, Z.}, + editor = {D. Horr}, + title = {Cheyenne and Arapaho: Aboriginal Occupations}, + booktitle = {American Indian Ethnohistory: Plains Indians}, + publisher = {Garland}, + address = {New York}, + pages = {27-96}, + year = {1954}, + key = {Gussow (1954)}, + lgcode = {Cheyenne [chey1247]} +} +@book{gussowetal1974, + author = {Gussow, Z. and L. R. Hafen and A. A. Ekireli}, + title = {Cheyenne and Arapaho: Commission Findings, Indian Claims Commission}, + publisher = {Garland}, + address = {New York}, + series = {American Indian Ethnohistory: Plains Indians Series}, + year = {1974}, + key = {Gussow et al. (1974)}, + lgcode = {Arapaho [arap1274]} +} +@article{gutersohn1920, + author = {Gutersohn, T.}, + title = {Het economisch leven van den Mongo-neger}, + journal = {Congo}, + volume = {1}, + number = {i}, + pages = {92-105}, + year = {1920}, + key = {Gutersohn (1920)}, + lgcode = {Mongo [long1393], Nkundo [nkun1238]} +} +@book{gutierrezdepineda1948, + author = {Gutierrez de Pineda, V.}, + title = {Organizacion social en la Guajira}, + address = {Bogota}, + series = {Revista del Instituto Etnologico Nacional}, + volume = {3}, + number = {ii}, + pages = {1-255}, + year = {1948}, + key = {Gutierrez de Pineda (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{gutmann1913, + author = {Gutmann, B.}, + title = {Feldbausitten und Wachstumsbrauche der Wadeschagga}, + journal = {Zeitschrift für Ethnologie}, + volume = {45}, + pages = {475-511}, + year = {1913}, + glottolog_ref = {eballiso2009:23721}, + key = {Gutmann (1913)}, + lgcode = {Chagga [moch1256]} +} +@book{gutmann1926, + author = {Gutmann, B.}, + title = {Das Recht der Dschagga}, + publisher = {München: Verlagshandlung Oskar Beck}, + address = {München}, + series = {Arbeiten zur Entwicklungspsychologie}, + volume = {7}, + pages = {1-1733}, + year = {1926}, + glottolog_ref = {eballiso2009:11574}, + key = {Gutmann (1926)}, + lgcode = {Chagga [moch1256]} +} +@incollection{guzenkovaandivanov1998, + author = {Guzenkova, T. S., and V. P. Ivanov}, + editor = {V. A. Tishkov}, + title = {Chuvashi (The Chuvash)}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {631-633}, + year = {1998}, + key = {Guzenkova and Ivanov (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{haas1939, + author = {Haas, M. r.}, + title = {Natchewz and Chitimacha Clans and Kinship Terminology}, + journal = {American Anthropologist}, + volume = {41}, + pages = {597-610}, + year = {1939}, + key = {Haas (1939)}, + lgcode = {Chitimacha [chit1248]} +} +@book{haddon1908, + editor = {Haddon, A. C.}, + title = {Reports of the Cambridge Anthropological Expedition to Torres Straits, v. 6}, + address = {Cambridge}, + year = {1908}, + key = {Haddon (1908)}, + lgcode = {Miriam [meri1244]} +} +@book{hadfield1920, + author = {Hadfield, E.}, + title = {Among the Natives of the Loyalty Group}, + address = {London}, + year = {1920}, + key = {Hadfield (1920)}, + lgcode = {Lifu [dehu1237]} +} +@article{haeberlinandgunther1930, + author = {Haeberlin, H. K., and E. Gunther.}, + title = {The Indians of Puget Sound}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {4}, + pages = {1-83}, + year = {1930}, + key = {Haeberlin and Gunther (1930)}, + lgcode = {Puyallup [sout2965]} +} +@misc{hafuz1994, + author = {Hafuz, M. E.}, + title = {Karaimy. Istoriko-etnograficheskieo cherki (The Karaim: Historical- Ethnographic Essays)}, + publisher = {In- t etnol. i antrop. RaN}, + address = {Moscow}, + year = {1994}, + key = {Hafuz (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@book{hagen1908, + author = {Hagen, B.}, + title = {Die Orang Kubu auf Sumatra}, + publisher = {Joseph Baer}, + address = {Frankfurt}, + series = {Veröffentlichungen aus dem Städtischen Völker-Museum}, + number = {2}, + pages = {1-269}, + year = {1908}, + key = {Hagen (1908)}, + lgcode = {Anak Dalam [kubu1239]} +} +@article{hagen1912, + author = {Hagen, G. von.}, + title = {Einige Notizen uber die Musgu}, + journal = {Baessler-Arch.}, + volume = {2}, + pages = {117-122}, + year = {1912}, + glottolog_ref = {hh:e:vonHagen:Musgu}, + key = {Hagen (1912)}, + lgcode = {Musgu [musg1254]} +} +@book{hagen1943, + author = {Hagen, V. W. von.}, + title = {The Jicaque Indians of Honduras}, + series = {Indian Notes Monogr., Misc. Ser}, + volume = {53}, + year = {1943}, + key = {Hagen (1943)}, + lgcode = {Tolupan [toll1241]} +} +@book{haglund1935, + author = {Haglund, S.}, + title = {Life among the Lapps}, + address = {London}, + year = {1935}, + key = {Haglund (1935)}, + lgcode = {Sami [nort2671]} +} +@book{haile1954, + author = {Haile, Berard}, + title = {Property Concepts of the Navajo Indians}, + series = {Catholic University of America, Anthropological Series}, + volume = {17}, + pages = {1-64}, + year = {1954}, + key = {Haile (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hailey1950, + author = {Hailey, W. M. H.}, + title = {Native administration in the British African territories}, + publisher = {London: H.M. Stationary Office; Colonial Office/Commonwealth Relations Office}, + address = {London}, + volume = {6 parts}, + year = {1950}, + glottolog_ref = {eballiso2009:4355}, + key = {Hailey (1950)}, + lgcode = {Kikuyu [kiku1240]} +} +@book{haines1955, + author = {Haines, F.}, + title = {The Nez Perces}, + address = {Norman}, + year = {1955}, + key = {Haines (1955)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{hajda1955, + editor = {Hajda, J.}, + title = {Czechoslovakia}, + address = {New Haven}, + year = {1955}, + key = {Hajda (1955)}, + lgcode = {Czechs [czec1258]} +} +@article{hajdu1963, + author = {Hajdu, P.}, + title = {Samoyed Peoples and Languages}, + journal = {Indiana University Publications, Uralic and Altaic Series}, + volume = {14}, + pages = {1-114}, + year = {1963}, + key = {Hajdu (1963)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{haleandtindale1933, + author = {Hale, H.M., and N. B. Tindale}, + title = {Aborigines of the Princess Charlotte Bay, North Queensland}, + journal = {Records of the South Australia Museum}, + volume = {5}, + pages = {63-107}, + year = {1933}, + key = {Hale and Tindale (1933)}, + lgcode = {Walmbaria [flin1247]} +} +@book{halkin1911, + author = {Halkin, J.}, + title = {Les Ababua}, + address = {Bruxelles}, + series = {Collec. Monog. Ethnog.}, + volume = {7}, + pages = {1-616}, + year = {1911}, + key = {Halkin (1911)}, + lgcode = {Baboa [bwaa1238]} +} +@book{hall1938, + author = {Hall, H. U.}, + title = {The Sherbro of Sierra Leone}, + address = {Philadelphia}, + year = {1938}, + key = {Hall (1938)}, + lgcode = {Sherbro [sher1258]} +} +@article{halleran1951, + author = {Halleran, T.}, + title = {Krobo Marriage Customs}, + journal = {Anthropos}, + volume = {46}, + pages = {996-997}, + year = {1951}, + key = {Halleran (1951)}, + lgcode = {Adangme [adan1247]} +} +@article{hallouin1947, + author = {Hallouin, J.}, + title = {Geographie humaine de la subdivision de Daloa}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {9}, + pages = {18-55}, + year = {1947}, + key = {Hallouin (1947)}, + lgcode = {Bete [dalo1238]} +} +@article{hallowell1926, + author = {Hallowell, A. I.}, + title = {Recent Changes in the Kinship Terminology of the St. Francis Abenaki}, + journal = {Proc. Intern. Congr. Americanists}, + volume = {22}, + number = {ii}, + pages = {97-145}, + year = {1926}, + key = {Hallowell (1926)}, + lgcode = {Abenaki [peno1243]} +} +@article{hallowell1929, + author = {Hallowell, A. I.}, + title = {The Physical Characteristics of the Indians of Labrador}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + volume = {21}, + pages = {337-371}, + year = {1929}, + key = {Hallowell (1929)}, + lgcode = {Iglulik Inuit [west2618], Naskapi [nask1242]} +} +@article{hallowell1938, + author = {Hallowell, A. I.}, + title = {The Incidence, Character, and Decline of Polygyny among the Lake Winnipeg Cree and Saulteaux}, + journal = {American Anthropologist}, + volume = {40}, + pages = {235-256}, + year = {1938}, + key = {Hallowell (1938)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938a, + author = {Hallowell, A. I.}, + title = {Fear and Anxiety as Cultural and Individual Variables in a Primitive Society}, + journal = {Journal of Social Psychology}, + volume = {9}, + pages = {25-47}, + year = {1938}, + key = {Hallowell (1938a)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938b, + author = {Hallowell, A. I.}, + title = {Notes on the Material Culture of the Island Lake Saulteaux}, + journal = {Journal de la Soci‚t‚ des Am‚ricanistes, n. s.}, + volume = {30}, + pages = {128-140}, + year = {1938}, + key = {Hallowell (1938b)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1939, + author = {Hallowell, A. I.}, + title = {Sin, Sex and Sickness in Saulteaux Belief}, + journal = {British Journal of Medical Psychology}, + volume = {18}, + pages = {191-197}, + year = {1939}, + key = {Hallowell (1939)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1940, + author = {Hallowell, A. I.}, + title = {Aggression in Saulteaux Society}, + journal = {Psychiatry}, + volume = {3}, + pages = {395-407}, + year = {1940}, + key = {Hallowell (1940)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1941, + author = {Hallowell, A. I.}, + title = {The Social Function of Anxiety in a Primitive Society}, + journal = {American Sociological Review}, + volume = {6}, + pages = {869-881}, + year = {1941}, + key = {Hallowell (1941)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1942, + author = {Hallowell, A. I.}, + title = {The Role of Conjuring in Saulteaux Society}, + journal = {Publications, Philadelphia Anthropological Society}, + volume = {2}, + pages = {1-96}, + year = {1942}, + key = {Hallowell (1942)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{hallowell1955, + author = {Hallowell, A. I.}, + title = {Culture and Experience}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + year = {1955}, + key = {Hallowell (1955)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{hallowell1963, + author = {Hallowell, A. I.}, + editor = {I. Goldstone}, + title = {Ojibwa World View and Disease}, + booktitle = {Man's Image in Medicine and Anthropology}, + address = {New York}, + pages = {258-315}, + year = {1963}, + key = {Hallowell (1963)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@misc{hallpike1969, + author = {Hallpike, C. R.}, + title = {The Konso of Ethiopia}, + year = {1969}, + howpublished = {Manuscript}, + key = {Hallpike (1969)}, + lgcode = {Konso [kons1243]} +} +@article{halpern1942, + author = {Halpern, A. M.}, + title = {Yuma Kinship Terms}, + journal = {American Anthropologist}, + volume = {44}, + pages = {425-441}, + year = {1942}, + key = {Halpern (1942)}, + lgcode = {Quechan [quec1382]} +} +@misc{halpern1956, + author = {Halpern, Joel M.}, + title = {Social and cultural change in a Serbian village}, + publisher = {Human Relations Area Files}, + address = {New Haven}, + year = {1956}, + key = {Halpern (1956)}, + lgcode = {Serbs [serb1264]} +} +@book{halpern1957, + author = {Halpern, J. M.}, + title = {A Serbian Village}, + address = {New York}, + year = {1957}, + key = {Halpern (1957)}, + lgcode = {Serbs [serb1264]} +} +@incollection{halpinandseguin1990, + author = {Halpin, M. M., and M. Seguin}, + editor = {Wayne Suttles}, + title = {Tsimshian Peoples: Southern Tsimshian, Coast Tsimshian, Nishga, and Gitksan}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {267-284}, + year = {1990}, + glottolog_ref = {hh:e:HalpinSeguin:Tsimshian}, + key = {Halpin and Seguin (1990)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{halseath1924, + author = {Halseath, Odd S.}, + title = {Report of Economic and Social Survey of the Keres Pueblo of Sia}, + journal = {El Palacio}, + volume = {16}, + pages = {67-75}, + year = {1924}, + key = {Halseath (1924)}, + lgcode = {Sia [ziaa1251]} +} +@article{hambly1934, + author = {Hambly, W. D.}, + title = {The Ovimbundu of Angola}, + journal = {Field Museum Anthropological Series}, + publisher = {Chicago: Field Museum of Natural History}, + address = {Chicago}, + series = {Publications 329. Anthropological Series}, + volume = {21}, + pages = {89-362}, + year = {1934}, + glottolog_ref = {guldemann:1887}, + key = {Hambly (1934)}, + lgcode = {Mbundu [umbu1257]} +} +@article{hambruch1907, + author = {Hambruch, P.}, + title = {Wuvulu und Aua}, + journal = {Mitt. Mus. Voelkerkunde Hamburg}, + volume = {21}, + pages = {1-156}, + year = {1907}, + key = {Hambruch (1907)}, + lgcode = {Aua [wuvu1239]} +} +@book{hambruch191415, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Nauru}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + year = {1914-15}, + key = {Hambruch (1914-15)}, + lgcode = {Nauruans [naur1243]} +} +@misc{hambruch193236, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Ponape}, + address = {Berlin}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + volume = {7: i, 1-376; ii, 1-386; iii, 1-127}, + year = {1932-36}, + key = {Hambruch (1932-36)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{hammond1964, + author = {Hammond, P. B.}, + title = {Mossi Joking}, + journal = {Ethnology}, + volume = {3}, + pages = {259-267}, + year = {1964}, + key = {Hammond (1964)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{hammond1966, + author = {Hammond, P. B.}, + title = {Yatenga}, + address = {New York}, + year = {1966}, + key = {Hammond (1966)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@misc{hammondnd, + author = {Hammond, P. B.}, + school = {University of Pittsburgh}, + howpublished = {Unpublished field notes}, + key = {Hammond (nd)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{handy1922, + author = {Handy, W. C.}, + title = {Tattooing in the Marquesas}, + address = {Honolulu}, + series = {Bulletins of the Bernice P. Biship Museum}, + number = {1}, + year = {1922}, + key = {Handy (1922)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1923, + author = {Handy, E. S. C.}, + title = {Native Culture in the Marquesas}, + journal = {Bulletins of the Bernice P. Bishop Museum.}, + volume = {9}, + pages = {1-358}, + year = {1923}, + key = {Handy (1923)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1930, + author = {Handy, E. S. C.}, + title = {History and Culture in the Society Islands}, + journal = {Bull. Bishop Mus.}, + volume = {79}, + pages = {1-110}, + year = {1930}, + key = {Handy (1930)}, + lgcode = {Tahitians [tahi1242]} +} +@book{handyetal1933, + author = {Handy, E. S. C. et al.}, + title = {Ancient Hawaiian Civilization}, + address = {Honolulu}, + year = {1933}, + key = {Handy et al. (1933)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{hanks1963, + author = {Hanks, J. R.}, + title = {Maternity and its Rituals in Bang Chan}, + address = {Ithaca}, + year = {1963}, + key = {Hanks (1963)}, + lgcode = {Thai [thai1261]} +} +@incollection{hanksandhanks1961, + author = {Hanks, L. M. Jr. and J. R. Hanks}, + editor = {B. J. Ward}, + title = {Thailand: Equality Between the Sexes}, + booktitle = {Women in the New Asia}, + pages = {424-451}, + year = {1961}, + key = {Hanks and Hanks (1961)}, + lgcode = {Thai [thai1261]} +} +@article{hanksandrichardson1945, + author = {Hanks, L. M., and J. Richardson.}, + title = {Observations on Northern Blackfoot Kinship}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {9}, + pages = {1-31}, + year = {1945}, + key = {Hanks and Richardson (1945)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{hann1991, + editor = {Hann, J.H. (editor and translator)}, + title = {Missions to the Calusa}, + publisher = {Florida Museum of Natural History and University of Florida Press}, + address = {Gainesville}, + year = {1991}, + key = {Hann (1991)}, + lgcode = {Calusa [calu1239]} +} +@book{hanoteauandletourneaux1893, + author = {Hanoteau, A., and A. Letourneaux.}, + title = {La Kabylie et les coutumes kabyles. 2d edit. 2v}, + address = {Paris}, + year = {1893}, + key = {Hanoteau and Letourneaux (1893)}, + lgcode = {Kabyle [kaby1243]} +} +@book{hansen1914, + author = {Hansen, S.}, + title = {Contributions to the Anthropology of the East Greenlanders}, + series = {Meddelelser om Gronland}, + volume = {39}, + number = {2}, + year = {1914}, + key = {Hansen (1914)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@article{hansen1961, + author = {Hansen, H. H.}, + title = {The Kurdish Woman's Life}, + journal = {Copenhagen Ethnographic Museum Record}, + volume = {7}, + pages = {1-213}, + year = {1961}, + key = {Hansen (1961)}, + lgcode = {Kurd [cent1972]} +} +@article{hansenetal1969, + author = {Hansen, J. D. L. and A. S. Truswell and C. Freeseman and B. MacHutchon}, + title = {The children of hunting and gathering Bushmen}, + journal = {South African Medical Journal}, + volume = {43}, + pages = {1158}, + year = {1969}, + glottolog_ref = {eballiso2009:39742}, + key = {Hansen et al. (1969)}, + lgcode = {!Kung [juho1239]} +} +@book{hanson1955, + author = {Hanson, A. H., et al.}, + title = {Studies in Turkish Local Government}, + address = {Ankara}, + year = {1955}, + key = {Hanson (1955)}, + lgcode = {Turks [nucl1301]} +} +@book{hantzsch1977, + author = {Hantzsch, B.}, + title = {My Life among the Eskimos: Baffin Island Journeys in the Years 1909-1911}, + publisher = {University of Saskatchewan}, + address = {Saskatoon}, + series = {Institute for Northern Studies Mawdsley Memoir Series}, + number = {3}, + year = {1977}, + key = {Hantzsch (1977)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{hanzeli1955, + author = {Hanzeli, V. E.}, + title = {The Hungarians}, + address = {New Haven}, + year = {1955}, + key = {Hanzeli (1955)}, + lgcode = {Magyar [hung1274]} +} +@article{harako1976, + author = {Harako, R.}, + title = {The Mbuti as hunters: a study of ecological anthropology of the Mbuti Pygmies}, + journal = {Kyoto University African Studies}, + publisher = {Kyoto University}, + address = {Kyoto}, + volume = {10}, + pages = {37-99}, + year = {1976}, + glottolog_ref = {eballiso2009:1586}, + key = {Harako (1976)}, + lgcode = {Mbuti [bila1255]} +} +@book{harding1967, + author = {Harding, T. G.}, + title = {Voyagers of the Vitiaz Strait}, + address = {Seattle}, + year = {1967}, + key = {Harding (1967)}, + lgcode = {Sio [sioo1240]} +} +@phdthesis{harner1960, + author = {Harner, M. J.}, + title = {Machetes, Shotguns, and Society: An Inquiry into the Social Impact of Technological Change among the Jivaro Indians}, + school = {University of California at Berkeley}, + year = {1960}, + key = {Harner (1960)}, + lgcode = {Shuar [shua1257]} +} +@article{harner1962, + author = {Harner, M. J.}, + title = {Jivaro Souls}, + journal = {American Anthropologist}, + volume = {64}, + pages = {258-272}, + year = {1962}, + key = {Harner (1962)}, + lgcode = {Shuar [shua1257]} +} +@book{harner1972, + author = {Harner, Michael}, + title = {The Jivaro. People of the Sacred Waterfalls}, + publisher = {Doubleday}, + address = {New York}, + year = {1972}, + key = {Harner (1972)}, + lgcode = {Shuar [shua1257]} +} +@phdthesis{harpending1971, + author = {Harpending, H. C.}, + title = {!Kung Hunter-Gatherer Population Structure}, + school = {Harvard University}, + year = {1971}, + key = {Harpending (1971)}, + lgcode = {!Kung [juho1239]} +} +@book{harper1964, + author = {Harper, F.}, + title = {Caribou Eskimos of the Upper Kazan River, Keewatin}, + publisher = {Allen Press}, + address = {Lawrence, Kansas}, + series = {University of Kansas Museum of Natural History Miscellaneous Publication}, + number = {36}, + year = {1964}, + key = {Harper (1964)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{harries1939, + author = {Harries, C. L.}, + title = {The laws and customs of the Bapedi}, + publisher = {Hortens}, + address = {Johannesburg}, + year = {1939}, + key = {Harries (1939)}, + lgcode = {Pedi [tswe1238]} +} +@article{harrington1912, + author = {Harrington, J. P.}, + title = {Tewa Relationship Terms}, + journal = {American Anthropologist}, + volume = {14}, + pages = {472-498}, + year = {1912}, + key = {Harrington (1912)}, + lgcode = {Santa Clara [sant1421]} +} +@article{harrington1913, + author = {Harrington, M. R.}, + title = {A Preliminary Sketch of Lenape Culture}, + journal = {American Anthropologist}, + volume = {15}, + pages = {208-235}, + year = {1913}, + key = {Harrington (1913)}, + lgcode = {Delaware [unam1242]} +} +@book{harrington1916, + author = {Harrington, John P.}, + title = {The Ethnography of the Tewa Indians}, + series = {Annual Report of the Bureau of American Ethnology}, + volume = {29}, + pages = {1-636}, + year = {1916}, + key = {Harrington (1916)}, + lgcode = {Nambé Pueblo [namb1296]} +} +@article{harrington1934, + author = {Harrington, J. P.}, + title = {A New Original Version of Boscana's Historical Account of the San Juan Capistrano Indians}, + journal = {Smiths. Misc. Coll.}, + volume = {92}, + pages = {iv, 1-62}, + year = {1934}, + key = {Harrington (1934)}, + lgcode = {Luiseño [luis1253]} +} +@article{harrington1942, + author = {Harrington, J. P.}, + title = {Central California Coast}, + journal = {Anth. Rec.}, + volume = {7}, + pages = {1-46}, + year = {1942}, + key = {Harrington (1942)}, + lgcode = {Chumash [cruz1243], Salinan [sali1253], Tongva [tong1329]} +} +@book{harrington1955, + author = {Harrington, Mark R.}, + title = {Ancient Life among the Southern California Indians}, + publisher = {Southwest Museum}, + series = {Southwest Museum Leaflets}, + pages = {79-88, 117-129, 153-167}, + year = {1955}, + key = {Harrington (1955)}, + lgcode = {Luiseño [luis1253]} +} +@book{harris1929, + author = {Harris, C. L.}, + title = {The Laws and Customs of the Bapedi and Cognate Tribes of the Transvaal}, + address = {Johannesburg}, + year = {1929}, + key = {Harris (1929)}, + lgcode = {Pedi [tswe1238]} +} +@article{harris1930, + author = {Harris, P. G.}, + title = {Notes on Yauri}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {60}, + pages = {283-324}, + year = {1930}, + key = {Harris (1930)}, + lgcode = {Reshe [resh1242]} +} +@article{harris1938, + author = {Harris, P. G.}, + title = {Notes on the Dakarkari Peoples}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {68}, + pages = {113-152}, + year = {1938}, + key = {Harris (1938)}, + lgcode = {Dakakari [clel1238]} +} +@incollection{harris1940, + author = {Harris, J.}, + editor = {R. Linton}, + title = {The White Knife Shoshoni of Nevada}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {39-166}, + year = {1940}, + key = {Harris (1940)}, + lgcode = {White Knife Shoshoni [west2622]} +} +@book{harris1957, + editor = {Harris, G. L.}, + title = {Egypt}, + address = {New Haven}, + year = {1957}, + key = {Harris (1957)}, + lgcode = {Egyptians [egyp1253]} +} +@book{harris1958, + author = {Harris, G. L.}, + title = {Jordan}, + address = {New Haven}, + year = {1958}, + key = {Harris (1958)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{harris1978, + author = {Harris, D. R.}, + editor = {N. Blurton-Jones and V. Reynolds}, + title = {Adaptation to a Tropical Rain-Forest Environment: Aboriginal Subsistence in Northeastern Queensland}, + booktitle = {Human Behavior and Adaptation}, + publisher = {Taylor and Francis}, + address = {London}, + pages = {113-133}, + year = {1978}, + key = {Harris (1978)}, + lgcode = {Mamu [mamu1253], Mardudjara [mart1256]} +} +@incollection{harris1982, + author = {Harris, D. R.}, + editor = {M. Harris and E. B. Ross}, + title = {Aboriginal Subsistence in a Tropical Rain Forest Environment: Food Procurement, Cannibalism, and Population Regulation in Northeastern Australia}, + booktitle = {Food and Evolution: Toward a Theory of Human Food Habits}, + publisher = {Temple University Press}, + address = {Philadelphia}, + pages = {357-385}, + year = {1982}, + key = {Harris (1982)}, + lgcode = {Mamu [mamu1253]} +} +@book{harrison1913, + editor = {Harrison, F.}, + title = {Roman Farm Management: The Treatises of Cato and Varro}, + address = {New York}, + year = {1913}, + key = {Harrison (1913)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{harrison1949, + author = {Harrison, T.}, + title = {Notes on Some Nomadic Punans}, + journal = {Sarawak Museum Journal}, + volume = {5}, + number = {1}, + pages = {130-146}, + year = {1949}, + key = {Harrison (1949)}, + lgcode = {Punan [west2563]} +} +@article{hart1954, + author = {Hart, D. M.}, + title = {An Ethnographic Survey of the Riffian Tribe of Aith Waryaghil}, + journal = {Tamuda}, + address = {Tetuan}, + volume = {1}, + pages = {55-86}, + year = {1954}, + key = {Hart (1954)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1954a, + author = {Hart, C.}, + title = {The Sons of Turimpi}, + journal = {American Anthropologist}, + volume = {56}, + pages = {242-261}, + year = {1954}, + key = {Hart (1954a)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1965, + author = {Hart, D. V.}, + title = {From Pregnancy Through Birth in a Bisayan Filipino Village. Southeast Asian Birth Customs}, + address = {New Haven}, + pages = {1-113}, + year = {1965}, + key = {Hart (1965)}, + lgcode = {Sugbuanon [cebu1242]} +} +@article{hart1970, + author = {Hart, C. W. M.}, + title = {Some Factors Affecting Residence among the Tiwi}, + journal = {Oceania}, + volume = {40}, + pages = {296-303}, + year = {1970}, + key = {Hart (1970)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1976, + author = {Hart, D. M.}, + title = {The Aith Waryaghar of the Moroccan Rif}, + publisher = {Tucson: University of Arizona Press}, + address = {Tucson}, + series = {Viking Fund Publications in Anthropology}, + volume = {55}, + pages = {556}, + year = {1976}, + glottolog_ref = {hh:e:Hart:Waryaghar}, + key = {Hart (1976)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1978, + author = {Hart, J. A.}, + title = {From Subsistence to Market: A case study of the Mbuti net hunters}, + journal = {Human Ecology}, + volume = {6}, + number = {3}, + pages = {325-353}, + year = {1978}, + key = {Hart (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{hartandpilling1960, + author = {Hart, C. W. M., and A. R. Pilling}, + title = {The Tiwi of North Australia}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1960}, + key = {Hart and Pilling (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{hartmann1927, + author = {Hartmann, H.}, + title = {Ethnographische Studie uber die Baja}, + journal = {Zeitschrift für Ethnologie}, + volume = {59}, + pages = {1-61}, + year = {1927}, + key = {Hartmann (1927)}, + lgcode = {Gbaya [nort2775]} +} +@article{hartmann1928, + author = {Hartmann, H.}, + title = {Some Customs of the Luwo}, + journal = {Anthropos}, + volume = {23}, + pages = {263-275}, + year = {1928}, + key = {Hartmann (1928)}, + lgcode = {Luo [luok1236]} +} +@book{hartmann1970, + author = {Hartmann, Günther}, + title = {Die materielle Kultur der Xavante, Zentralbrasilien}, + year = {1970}, + howpublished = {Baessler-Archiv, Neue Folge, Bd. XVIII: 43-70e. I dis}, + key = {Hartmann (1970)}, + lgcode = {Shavante [xava1240]} +} +@misc{hartnd, + author = {Hart, D. V.}, + howpublished = {Personal communications to C. O. Frake}, + key = {Hart (nd)}, + lgcode = {Sugbuanon [cebu1242]} +} +@book{haruzina1898, + author = {Haruzina, V. N.}, + title = {Votjaki}, + address = {Moscow}, + year = {1898}, + key = {Haruzina (1898)}, + lgcode = {Udmurt [sout2681]} +} +@article{harva193940, + author = {Harva, U.}, + title = {Der Bau des VerwandtschAftsnamensystems und die VerwandtschAftsverhaeltnisse bei den Fenno-Ugrier}, + journal = {Finno-Ugrische Forschungen}, + volume = {26}, + pages = {91-120}, + year = {1939-40}, + key = {Harva (1939-40)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{hasluck1954, + author = {Hasluck, M.}, + title = {The Unwritten Law in Albania}, + address = {Cambridge}, + year = {1954}, + key = {Hasluck (1954)}, + lgcode = {Gheg [gheg1238]} +} +@book{hassig1985, + author = {Hassig, R.}, + title = {Trade, Tribute, and Transportation. the Sixteenth-Century Political Economy of the Valley of Mexico}, + year = {1985}, + key = {Hassig (1985)}, + lgcode = {Aztec [clas1250]} +} +@book{hassig1988, + author = {Hassig, R.}, + title = {Aztec Warfare. Imperial Expansion and Political Control}, + year = {1988}, + key = {Hassig (1988)}, + lgcode = {Aztec [clas1250]} +} +@article{hassrick1944, + author = {Hassrick, R. B.}, + title = {Teton Dakota Kinship Terminology}, + journal = {American Anthropologist}, + volume = {46}, + pages = {338-347}, + year = {1944}, + key = {Hassrick (1944)}, + lgcode = {Teton [lako1247]} +} +@book{hassrick1964, + author = {Hassrick, R. B.}, + title = {The Sioux}, + address = {Norman}, + year = {1964}, + key = {Hassrick (1964)}, + lgcode = {Teton [lako1247]} +} +@book{hauck1958, + author = {Hauck, H. M. et al.}, + title = {Food Habits and Nutrient Intake in a Siamese Rice Village}, + address = {Ithaca}, + year = {1958}, + key = {Hauck (1958)}, + lgcode = {Thai [thai1261]} +} +@misc{haughton1912, + author = {Haughton, T. H.}, + title = {Mumuye Assessment Report}, + year = {1912}, + howpublished = {Manuscript}, + key = {Haughton (1912)}, + lgcode = {Mumuye [nucl1240]} +} +@book{haumant1929, + author = {Haumant, J. C.}, + title = {Les Lobi et leur coutume}, + address = {Paris}, + year = {1929}, + key = {Haumant (1929)}, + lgcode = {Lobi [lobi1245]} +} +@book{hawes1903, + author = {Hawes, C. H.}, + title = {In the Uttermost East}, + address = {London}, + year = {1903}, + key = {Hawes (1903)}, + lgcode = {Nivkh [gily1242]} +} +@article{hawkes1916, + author = {Hawkes, M. W.}, + title = {The Labrador Eskimo}, + journal = {Mem. Canada Dept. Mines, Geol. Surv}, + volume = {91}, + pages = {1-165}, + year = {1916}, + key = {Hawkes (1916)}, + lgcode = {Labrador Inuit [labr1244]} +} +@incollection{hawkesetal1989, + author = {Hawkes, C. and J. F. O'Connell and N. B. Jones}, + editor = {Standen, V. and Foley, R.A.}, + title = {Hardworking Hadza grandmothers}, + booktitle = {Comparative Socioecology: The Behavioral Ecology of Humans and Other Mammals}, + publisher = {Blackwell Scientific Publ.}, + address = {London}, + series = {Special publ. from the British Ecological Soc.}, + volume = {8}, + pages = {341-366}, + year = {1989}, + glottolog_ref = {eballiso2009:22617}, + key = {Hawkes et al. (1989)}, + lgcode = {Hadza [hadz1240]} +} +@article{hawkesworth1932, + author = {Hawkesworth, D.}, + title = {The Nuba Proper of Southern Kordofan}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {159-199}, + year = {1932}, + glottolog_ref = {eballiso2009:29349}, + key = {Hawkesworth (1932)}, + lgcode = {Dilling [dill1242]} +} +@article{hawley1950, + author = {Hawley, Florence M.}, + title = {Keresan Patterns of Kinship and Social Organization}, + journal = {American Anthropologist}, + volume = {52}, + pages = {499-512}, + year = {1950}, + key = {Hawley (1950)}, + lgcode = {Cochiti [coch1273]} +} +@article{hawley1964, + author = {Hawley Ellis, Florence}, + title = {A Reconstruction of the Basic Jemez Pattern of Social Organization: With Comparisons to Other Tanoan Social Structures}, + journal = {Univ. New Mexico Publ. Anth.}, + volume = {11}, + pages = {1-69}, + year = {1964}, + key = {Hawley (1964)}, + lgcode = {Jemez [jeme1245]} +} +@article{hawleyetal1943, + author = {Hawley, F. and M. Pijoan and C. A. Elkin}, + title = {An Inquiry into Food Economy and Body Economy in Zia Pueblo}, + journal = {American Anthropologist}, + volume = {45}, + pages = {547-556}, + year = {1943}, + key = {Hawley et al. (1943)}, + lgcode = {Sia [ziaa1251]} +} +@article{hawthorn1944, + author = {Hawthorn, H. B.}, + title = {The Maori: A Study in Acculturation}, + journal = {Memoirs of the American Anthropological Association}, + volume = {64}, + pages = {1-130}, + year = {1944}, + key = {Hawthorn (1944)}, + lgcode = {Māori [maor1246]} +} +@article{hawtrey1901, + author = {Hawtrey, S. H. C.}, + title = {The Lengua Indians of the Paraguayan Chaco}, + journal = {Journal of the Royal Anthropological Institute}, + address = {Londres}, + volume = {31}, + pages = {280-299}, + year = {1901}, + glottolog_ref = {fabreall2009ann:Enlhet-Enenlhet_enxet12}, + key = {Hawtrey (1901)}, + lgcode = {Lengua [leng1262]} +} +@book{haxthausen1854, + author = {Haxthausen, A. von.}, + title = {Transcaucasia. Transl.}, + address = {London}, + year = {1854}, + key = {Haxthausen (1854)}, + lgcode = {Armenians [nucl1235], Georgians [imer1248]} +} +@book{hayden1936, + author = {Hayden, C. (compiler)}, + title = {Walapai Papers: Historical Reports, Documents, and Extracts from Publications Relating to the Walapai Indians of Arizona}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Seventy-Fourth Congress, Second Session, Senate Document}, + number = {273}, + year = {1936}, + key = {Hayden (1936)}, + lgcode = {Hualapai [wala1270]} +} +@book{hayden1997, + author = {Hayden, B.}, + title = {The Pitshouses of Idatley Creek}, + publisher = {Harcourt Brace College Publishers}, + address = {Orlando, Fla.}, + year = {1997}, + key = {Hayden (1997)}, + lgcode = {Lillooet [lill1248]} +} +@incollection{haydenetal1996, + author = {Hayden, B. and G. A. Reinhardt and R. MacDonald and D. Holmberg and D. Crellin}, + editor = {G. Coupland and E. B. Banning}, + title = {Space per Capita and the Optimal Size of Housepits}, + booktitle = {People Who Lived in Big Houses: Archaeological Perspectives on Large Domestic Structures}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + series = {Monographs in World Archaeology}, + number = {27}, + pages = {151-164}, + year = {1996}, + key = {Hayden et al. (1996)}, + lgcode = {Caribou Inuit [cari1277], Copper Inuit [copp1244], Inuvialuit [sigl1242], Nlaka'pamux [thom1243], Tasiilaq [tunu1234], Ungazikmit [cent2128]} +} +@article{haydenperscomm1990, + author = {Hayden, B.}, + title = {Nimrods, Piscators, Pluckers, and Planters: The Emergence of Food Production}, + journal = {Journal of Anthropological Archaeology}, + volume = {9}, + pages = {31-69}, + year = {1990}, + key = {Hayden pers. comm. (1990)}, + lgcode = {Pintubi [pint1250]} +} +@incollection{haydenperscomm1992, + author = {Hayden, B.}, + editor = {A. B. Gebauer and T. C. Price}, + title = {Models of Domestication}, + booktitle = {Transitions to Agriculture in Prehistory}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + pages = {11-19}, + year = {1992}, + key = {Hayden pers. comm. (1992)}, + lgcode = {Pintubi [pint1250]} +} +@book{hayley1923, + author = {Hayley, F. A.}, + title = {A Treatise on the Laws and Customs of the Sinhalese}, + address = {Colombo}, + year = {1923}, + key = {Hayley (1923)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{hayley1947, + author = {Hayley, T. T. S.}, + title = {The Anatomy of Lango Religion and Kin Groups}, + address = {Cambridge}, + year = {1947}, + key = {Hayley (1947)}, + lgcode = {Lango [lang1324]} +} +@book{hazard1956, + author = {Hazard, H. W.}, + title = {Southern Arabia}, + address = {New Haven}, + year = {1956}, + key = {Hazard (1956)}, + lgcode = {Yemeni [sana1295]} +} +@phdthesis{headland1986, + author = {Headland, T. N.}, + title = {Why foragers do not become farmers: a historical study of a changing ecosystem and its effect on a negrito hunter-gatherer group in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1986}, + glottolog_ref = {guldemann:1973}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Headland (1986)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1992, + author = {Headland}, + year = {1992}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1992)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1993, + author = {Headland}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1993)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@phdthesis{heath1959, + author = {Heath, D. B.}, + title = {Camba: A Study of Land and Society in Eastern Bolivia}, + school = {Yale University}, + year = {1959}, + key = {Heath (1959)}, + lgcode = {Camba [chiq1248]} +} +@book{hebererandlehman1950, + author = {Heberer, G. and W. Lehmann}, + title = {Die Inland-Malaien von Lombok und Sumbawa}, + publisher = {Muster-Schmidt}, + address = {Göttingen}, + year = {1950}, + key = {Heberer and Lehman (1950)}, + lgcode = {Malays [mala1479]} +} +@article{heese1913, + author = {Heese}, + title = {Sitte und Brauch der Sango}, + journal = {Archaeology & Anthropology}, + volume = {40}, + pages = {134-146}, + year = {1913}, + key = {Heese (1913)}, + lgcode = {Sangu [sang1330]} +} +@book{heffner1955, + editor = {Heffner, R. C.}, + title = {The Cheremis}, + address = {New Haven}, + year = {1955}, + key = {Heffner (1955)}, + lgcode = {Mari [east2328]} +} +@phdthesis{heider1965, + author = {Heider, K. G.}, + title = {The Dugum Dani}, + school = {Harvard University.}, + year = {1965}, + key = {Heider (1965)}, + lgcode = {Dani [midg1235]} +} +@misc{heider1967, + author = {Heider, K. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Heider (1967)}, + lgcode = {Dani [midg1235]} +} +@article{heimann1932, + author = {Heimann, M.}, + title = {Die Cayapa Indianer}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {281-287}, + year = {1932}, + key = {Heimann (1932)}, + lgcode = {Chachi [chac1249]} +} +@misc{heinegeldernandhoehngerlachstein1958, + editor = {Heine-Geldern, R. and A. Hoehnwart-Gerlachstein}, + title = {Bulletin of the International Committee on Urgent Anthropological and Ethnological Research, No. 1}, + publisher = {International Union of Anthropological and Ethnological Sciences and UNESCO}, + address = {Vienna}, + year = {1958}, + key = {Heine-Geldern and Hoehn-Gerlachstein (1958)}, + lgcode = {Onge [onge1236]} +} +@book{heizerandmills1952, + author = {Heizer, R. F., and J. E. Mills}, + title = {The Four Ages of Tsurai: A Documentary History of the Indian Village on Trinidad Bay}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1952}, + key = {Heizer and Mills (1952)}, + lgcode = {Yurok [yuro1248]} +} +@book{held1947, + author = {Held, G. J.}, + title = {Papoea's van Waropen}, + address = {Leiden}, + year = {1947}, + key = {Held (1947)}, + lgcode = {Waropen [waro1242]} +} +@book{helm1961, + author = {Helm, J.}, + title = {The Lynx Point People: The Dynamics of a Northern Athapaskan Band}, + publisher = {Department of Northern Affairs and National Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin No. 176. Anthropological Series}, + number = {53}, + pages = {1-193}, + year = {1961}, + key = {Helm (1961)}, + lgcode = {DeneTha [sout2959], Hare [nort2942]} +} +@incollection{helm1968, + author = {Helm, J.}, + editor = {R. B. Lee and I. DeVore}, + title = {The Nature of Dogrib Socioterritorial Groups}, + booktitle = {Man the Hunter}, + publisher = {Aldine}, + address = {Chicago}, + pages = {118-125}, + year = {1968}, + key = {Helm (1968)}, + lgcode = {Tlicho [dogr1252]} +} +@incollection{helm1972, + author = {Helm, J.}, + editor = {M. G. Bicchieri}, + title = {The Dogrib Indians}, + booktitle = {Hunters and Gatherers Today}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {51-89}, + year = {1972}, + key = {Helm (1972)}, + lgcode = {Tlicho [dogr1252]} +} +@misc{helmandleacocknd, + author = {Helm, J. and E. Leacock}, + title = {The Hunting Tribes of Subarctic Canada}, + howpublished = {Manuscript}, + key = {Helm and Leacock (nd)}, + lgcode = {DeneTha [sout2959]} +} +@book{helmandlurie1961, + author = {Helm, J., and N. O. Lurie.}, + title = {The Subsistence Economy of the Dogrib Indians of Lac la Martre}, + address = {Ottawa}, + year = {1961}, + key = {Helm and Lurie (1961)}, + lgcode = {Tlicho [dogr1252]} +} +@article{helms1969, + author = {Helms, M. W.}, + title = {The Cultural Ecology of a Colonial Tribe}, + journal = {Ethnology}, + volume = {8}, + pages = {76-84}, + year = {1969}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito074}, + key = {Helms (1969)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1970, + author = {Helms, M.}, + title = {Matrilocality and the maintenance of ethnic identity: the Miskito of eastern Nicaragua and Honduras}, + year = {1970}, + key = {Helms (1970)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1971, + author = {Helms, M. W.}, + title = {Asang: Adaptations to culture contact in a Miskito community}, + address = {Gainesville}, + year = {1971}, + key = {Helms (1971)}, + lgcode = {Miskito [misk1235]} +} +@book{helser1926, + author = {Helser, A. D.}, + title = {In Sunny Nigeria}, + address = {New York}, + year = {1926}, + key = {Helser (1926)}, + lgcode = {Bura [bura1292]} +} +@article{henderson1939, + author = {Henderson, K. D. D.}, + title = {A Note on the Migration of the Messiria Tribe into South West Kordofan}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {49-77}, + year = {1939}, + glottolog_ref = {eballiso2009:27055}, + key = {Henderson (1939)}, + lgcode = {Messiria Humr [tama1331]} +} +@article{hendley1875, + author = {Hendley, T. H.}, + title = {An Account of the Maiwar Bhils}, + journal = {Journ. As. Soc. Bengal}, + volume = {44}, + pages = {i, 347-392}, + year = {1875}, + key = {Hendley (1875)}, + lgcode = {Bhil [bhil1251]} +} +@book{henriksen1973, + author = {Henriksen, G.}, + title = {Hunters in the Barrens: The Naskapi on the Edge of the White Man's World}, + publisher = {Memorial University of Newfoundland and University of Toronto Press}, + address = {St. Johns}, + series = {Newfoundland Social and Economic Studies}, + year = {1973}, + key = {Henriksen (1973)}, + lgcode = {Naskapi [nask1242]}, + nunber = {12} +} +@book{henry1910, + author = {Henry, J.}, + title = {L'ame d'un peuple Africain: Les Bambara. Leur vie psychique, ethique, sociale, religieuse}, + series = {Bibliotheque Anthropos}, + volume = {1}, + number = {ii}, + pages = {1-240}, + year = {1910}, + key = {Henry (1910)}, + lgcode = {Bambara [bamb1269]} +} +@article{henry1928, + author = {Henry, T.}, + title = {Old Tahiti}, + journal = {Bull. Bishop Mus.}, + volume = {48}, + pages = {1-651}, + year = {1928}, + key = {Henry (1928)}, + lgcode = {Tahitians [tahi1242]} +} +@book{henry1941, + author = {Henry, J.}, + title = {Jungle People}, + address = {New York}, + year = {1941}, + key = {Henry (1941)}, + lgcode = {Aweikoma [xokl1240]} +} +@book{henry1964, + author = {Henry, J.}, + title = {Jungle People: a Kaingang tribe of the highlands of Brazil}, + publisher = {Vintage Books}, + address = {New York}, + pages = {215}, + year = {1964}, + glottolog_ref = {hh:e:Henry:Kaingang}, + key = {Henry (1964)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{herman1950, + author = {Herman, M. W.}, + title = {A Reconstruction of Aboriginal Delaware Culture from Contemporary Sources}, + journal = {Koreber Anth. Soc. Pap.}, + volume = {1}, + pages = {45-77}, + year = {1950}, + key = {Herman (1950)}, + lgcode = {Delaware [unam1242]} +} +@article{herskovits1923, + author = {Herskovits, M. J.}, + title = {Some Property Concepts and Marriage Customs of the Vandau}, + journal = {American Anthropologist}, + volume = {25}, + pages = {376-386}, + year = {1923}, + glottolog_ref = {eballiso2009:9029}, + key = {Herskovits (1923)}, + lgcode = {Ndau [ndau1241]} +} +@article{herskovits1932, + author = {Herskovits, M. J.}, + title = {Some Aspects of Dahomean Ethnology}, + journal = {Africa}, + volume = {5}, + pages = {266-296}, + year = {1932}, + key = {Herskovits (1932)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovits1937a, + author = {Herskovits, M. J.}, + title = {A Note on 'Woman Marriage' in Dahomey}, + journal = {Africa}, + volume = {10}, + pages = {335-341}, + year = {1937}, + key = {Herskovits (1937a)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovits1937b, + author = {Herskovits, M. J.}, + title = {Life in a Haitian Valley}, + address = {New York}, + year = {1937}, + key = {Herskovits (1937b)}, + lgcode = {Haitians [hait1244]} +} +@book{herskovits1938, + author = {Herskovits, M. J.}, + title = {Dahomey. 2v}, + address = {New York}, + year = {1938}, + key = {Herskovits (1938)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovitsandherskovits1933, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {An Outline of Dahomean Religious Belief}, + journal = {Memoirs, American Anthropological Association}, + volume = {41}, + pages = {1-77}, + year = {1933}, + key = {Herskovits and Herskovits (1933)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovitsandherskovits1934, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {Rebel Destiny. Among the Bush Negroes of Dutch Guiana}, + address = {New York}, + year = {1934}, + key = {Herskovits and Herskovits (1934)}, + lgcode = {Saramaccan [sara1340]} +} +@book{hertefeltetal1962, + author = {Hertefelt, M. and A. Trouwborst, and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {Hertefelt et al. (1962)}, + lgcode = {Ha [haaa1252]} +} +@book{herzog1957, + author = {Herzog, R.}, + title = {Die Nubier}, + address = {Berlin}, + year = {1957}, + key = {Herzog (1957)}, + lgcode = {Barabra [kenu1236]} +} +@article{hesketh1923, + author = {Hesketh, J.}, + title = {History of the Turtle Mountain Chipewa}, + journal = {Collections of the North Dakota State Historical Society}, + volume = {5}, + pages = {85-154}, + year = {1923}, + key = {Hesketh (1923)}, + lgcode = {Bungi [west1510], Minnesota Ojibwa [redl1238]} +} +@book{heuer1972, + author = {Heuer, Berys}, + title = {Maori Women}, + year = {1972}, + key = {Heuer (1972)}, + lgcode = {Māori [maor1246]} +} +@article{heusch1955, + author = {Heusch, L. de}, + title = {Valeur, monnaie et structuration sociale chez les Nkutshu}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {28}, + pages = {i, 73-97}, + year = {1955}, + key = {Heusch (1955)}, + lgcode = {Tetela [tete1250]} +} +@book{hewesandkim1952, + author = {Hewes, G. W., and C. H. Kim}, + title = {Korean Kinship Behavior and Structure}, + address = {Pyongyang}, + series = {Research Monographs on Korea, Ser. F}, + volume = {2}, + pages = {1-20}, + year = {1952}, + key = {Hewes and Kim (1952)}, + lgcode = {Koreans [kore1280]} +} +@book{hewitt1939, + author = {Hewitt, J.N. B.}, + editor = {Swanton, J.R.}, + title = {Notes on the Creek Indians}, + year = {1939}, + key = {Hewitt (1939)}, + lgcode = {Muscogee [cree1270]} +} +@article{heydrich1931, + author = {Heydrich, M.}, + title = {Koreanische LandwirtschAft}, + journal = {Abhandlungen und Berichte, Museum fur Tierkunde and Volkerkunde zu Dresden}, + volume = {19}, + pages = {1-44}, + year = {1931}, + key = {Heydrich (1931)}, + lgcode = {Koreans [kore1280]} +} +@article{heymer1980, + author = {Heymer, A.}, + title = {The Bayaka Pygmies of Central Africa in the Light of Human Ethnological Research Work}, + journal = {Mankind Quarterly}, + volume = {20}, + number = {3-4}, + pages = {173-204}, + year = {1980}, + key = {Heymer (1980)}, + lgcode = {Bayaka [beka1240]} +} +@book{hiatt1965, + author = {Hiatt, L.R.}, + title = {Kinship and Conflict: A Study of an Aboriginal Community in Northern Arnhem Land}, + publisher = {Australian National University}, + address = {Canberra}, + year = {1965}, + key = {Hiatt (1965)}, + lgcode = {Gidjingali [gunn1248]} +} +@article{hiatt1967, + author = {Hiatt, B.}, + title = {The Food Quest and the Economy of the Tasmanian Aborigines}, + journal = {Oceania}, + volume = {38}, + number = {2; 3}, + pages = {99-133; 190-219}, + year = {1967}, + key = {Hiatt (1967)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@book{hickerson1962, + author = {Hickerson, H.}, + title = {The Southwestern Chippewa: An Ethnohistorical Study}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {Memoirs of the American Anthropological Association}, + number = {92}, + year = {1962}, + key = {Hickerson (1962)}, + lgcode = {Nipigon [cent2136]} +} +@book{hickerson1967, + author = {Hickerson, H.}, + title = {Land Tenure of the Rainy Lake Chippewa at the Beginning of the 19th Century}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Smithsonian Contributions to Anthroprology}, + volume = {2}, + number = {4}, + year = {1967}, + key = {Hickerson (1967)}, + lgcode = {Rainy River Ojibwe [rain1239]} +} +@book{hickey1964, + author = {Hickey, G. C.}, + title = {Village in Vietnam}, + address = {New Haven}, + year = {1964}, + key = {Hickey (1964)}, + lgcode = {Annamese [viet1252]} +} +@book{hicks1974, + author = {Hicks, D.}, + title = {The Tibagy Kaingang}, + year = {1974}, + key = {Hicks (1974)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{hiernauxetal1975, + author = {Hiernaux, J. and P. Rudan and A. Brambati}, + title = {Climate and the Weight/Height Relationship in SubSahara Atica}, + journal = {Annals of Human Biology}, + volume = {2}, + pages = {3-12}, + year = {1975}, + key = {Hiernaux et al. (1975)}, + lgcode = {Baka [baka1272], Bayaka [beka1240], Mbuti [bila1255]} +} +@article{hildebrandt1875, + author = {Hildebrandt, N. M.}, + title = {Vorlaufige Bemerkungen uber die Somal}, + journal = {Zeitschrift für Ethnologie}, + volume = {7}, + pages = {1-15}, + year = {1875}, + key = {Hildebrandt (1875)}, + lgcode = {Esa [nort3051]} +} +@article{hildebrandt1878, + author = {Hildebrandt, J. M.}, + title = {Ethnograpische Notizen uber Wakamba und ihre Nachbaren}, + journal = {Zeitschrift für Ethnologie}, + volume = {10}, + pages = {347-406}, + year = {1878}, + key = {Hildebrandt (1878)}, + lgcode = {Kamba [kamb1297]} +} +@book{hilger1939, + author = {Hilger, M. Inez}, + title = {A social study of one hundred fifty Chippewa Indian families of the White Earth Reservation of Minnesota}, + publisher = {The Catholic University of America Press}, + address = {Washington}, + year = {1939}, + key = {Hilger (1939)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{hilger1946, + author = {Hilger, Sister M. Inez.}, + title = {Notes on Cheyenne child life}, + journal = {American Anthropologist}, + volume = {48}, + pages = {60-69}, + year = {1946}, + key = {Hilger (1946)}, + lgcode = {Cheyenne [chey1247]} +} +@book{hilger1951, + author = {Hilger, M. I.}, + title = {Chippewa child life and its cultural background}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Smithsonian Institution, Bureau of American Ethnology, Bulletin}, + number = {146}, + year = {1951}, + key = {Hilger (1951)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{hilger1952, + author = {Hilger, M. I.}, + title = {Arapaho Child Life and Its Cultural Background}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {148}, + pages = {1-253}, + year = {1952}, + key = {Hilger (1952)}, + lgcode = {Arapaho [arap1274]} +} +@article{hilger1957, + author = {Hilger, M. I.}, + title = {Araucanian Child Life and Its Cultural Background}, + journal = {Smithsonian Miscellaneous Collection}, + address = {Washington: Smithsonian Institution}, + volume = {133}, + pages = {1-495}, + year = {1957}, + glottolog_ref = {fabreall2009ann:Mapuche645}, + key = {Hilger (1957)}, + lgcode = {Mapuche [mapu1245]} +} +@book{hilger1971, + author = {Hilger, M. I.}, + title = {Together with the Ainu}, + address = {Norman}, + year = {1971}, + key = {Hilger (1971)}, + lgcode = {Ainu [ainu1240]} +} +@article{hill1936, + author = {Hill, Willard W}, + title = {Notes on Pima Land Law and Tenure}, + journal = {American Anthropologist}, + volume = {38}, + pages = {586-589}, + year = {1936}, + key = {Hill (1936)}, + lgcode = {Pima [akim1239]} +} +@article{hill1938, + author = {Hill, W. W.}, + title = {The Agricultural and Hunting Methods of the Navaho Indians}, + journal = {Yale Univ. Publ. Anth.}, + volume = {18}, + pages = {1-194}, + year = {1938}, + key = {Hill (1938)}, + lgcode = {Navajo [nava1243], Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hill1956, + author = {Hill, G. W. et al.}, + title = {Los Guarao del delta Amacuro}, + address = {Caracas}, + year = {1956}, + key = {Hill (1956)}, + lgcode = {Warao [wara1303]} +} +@book{hill1972, + author = {Hill, P.}, + title = {Rural Hausa}, + address = {New York}, + year = {1972}, + key = {Hill (1972)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@article{hillandhill1970, + author = {Hill, J. H. and K. C. Hill. 1-9.}, + title = {A note on Uto-Aztecan color terminologies}, + journal = {Anthropological Linguistics}, + volume = {12}, + pages = {231-38}, + year = {1970}, + key = {Hill and Hill (1970)}, + lgcode = {Southern Ute [utee1244]} +} +@article{hilletal1984, + author = {Hill, K. and C. Hawkes and A. M. Hurtado and H. Kaplan}, + title = {Seasonal Variance in the Diet of Ache HunterGatherers of Eastern Paraguay}, + journal = {Human Ecology}, + volume = {12}, + number = {2}, + pages = {101-135}, + year = {1984}, + key = {Hill et al. (1984)}, + lgcode = {Aché [ache1246]} +} +@article{hillner1847, + author = {Hillner, W.}, + title = {Die Liven an der Nordkiiste von Kurland}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + volume = {3}, + pages = {201-6}, + year = {1847}, + key = {Hillner (1847)}, + lgcode = {Livs [livv1244]} +} +@article{hilltout1900, + author = {Hill-Tout, C.}, + title = {Notes on the Sk. qo'mic of British J952 Columbia}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {70}, + pages = {472-549}, + year = {1900}, + key = {Hill-Tout (1900)}, + lgcode = {Squamish [squa1248]} +} +@article{hilltout1902, + author = {Hill-Tout, C.}, + title = {Ethnological Studies of the Mainland Halkomelem}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {72}, + pages = {355-490}, + year = {1902}, + key = {Hill-Tout (1902)}, + lgcode = {Cowichan [cowi1241], Musqueam [musq1240], Stó:lō [chil1281]} +} +@article{hilltout1904, + author = {Hill-Tout, C.}, + title = {Ethnological Report on the Stseelis and Skaulits Tribes of the Halokmelem Division of the Salish of British Columbia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {34}, + pages = {311-376}, + year = {1904}, + key = {Hill-Tout (1904)}, + lgcode = {Cowichan [cowi1241], Stó:lō [chil1281]} +} +@article{hilltout1905, + author = {Hill-Tout, C.}, + title = {Report on the Ethnology of the Stlatlumh}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {35}, + pages = {126-218}, + year = {1905}, + key = {Hill-Tout (1905)}, + lgcode = {Lillooet [lill1248]} +} +@book{hilltout1907, + author = {Hill-Tout, Charles}, + title = {British North America: I. The Far West, The Home of the Salish and Déné}, + publisher = {Archibald Constable}, + address = {London}, + year = {1907}, + key = {Hill-Tout (1907)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@incollection{hilton1990, + author = {Hilton, S.}, + editor = {Wayne Suttles}, + title = {Haihais, Bella Bella, and Ooweekeeno}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {312-322}, + year = {1990}, + glottolog_ref = {hh:e:Hilton:Haihais}, + key = {Hilton (1990)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{hiltonsimpson1921, + author = {Hilton-Simpson, W. M.}, + title = {Among the Hill-Folk of Algeria}, + address = {London}, + year = {1921}, + key = {Hilton-Simpson (1921)}, + lgcode = {Shawiya [tach1249]} +} +@book{himmelheberandhimmelheber1958, + author = {Himmelheber, H., and U. Himmelheber.}, + title = {Die Dan}, + address = {Stuttgart}, + year = {1958}, + key = {Himmelheber and Himmelheber (1958)}, + lgcode = {Dan [gwee1242]} +} +@article{hinderling195253, + author = {Hinderling, P.}, + title = {Notizen von den Togo-Restvölkern}, + journal = {Tribus}, + volume = {1952-53}, + pages = {361-378}, + year = {1952-53}, + key = {Hinderling (1952-53)}, + lgcode = {Buem [siwu1238]} +} +@article{hinderling1955, + author = {Hinderling, P.}, + title = {Versuch einer Analyse der sozialen Struktur der Matakam}, + journal = {Africa}, + volume = {25}, + pages = {405-426}, + year = {1955}, + key = {Hinderling (1955)}, + lgcode = {Mafa [mafa1239]} +} +@book{hinz1990, + author = {Hinz, E.}, + title = {Das Aztekenreich: Soziale Gliederung und institutioneller Aufbau}, + year = {1990}, + key = {Hinz (1990)}, + lgcode = {Aztec [clas1250]} +} +@incollection{hitchcock1891, + author = {Hitchcock, R.}, + title = {The Ainos of Yezo, Japan}, + booktitle = {Report of the U.S. National Museum for 1889-1890}, + publisher = {U.S. Government Printing Office}, + address = {Washington}, + pages = {428-502}, + year = {1891}, + key = {Hitchcock (1891)}, + lgcode = {Ainu [ainu1240]} +} +@book{hitchcock1966, + author = {Hitchcock, J. T.}, + title = {The Magars of Banyan Hill}, + address = {New York}, + year = {1966}, + key = {Hitchcock (1966)}, + lgcode = {Magar [west2418]} +} +@article{hitchcockandebert1989, + author = {Hitchcock, R. K., and J. I. Ebert}, + title = {Modeling Kalahari Hunter-Gatherer Subsistence and Settlement Systems: Implications for Development Policy and Land Use Planning}, + journal = {Anthropos}, + volume = {84}, + pages = {47-62}, + year = {1989}, + glottolog_ref = {eballiso2009:40535}, + key = {Hitchcock and Ebert (1989)}, + lgcode = {!Ko [huaa1248], !Kung [juho1239], Kua [kuaa1238], Naron [naro1249]} +} +@misc{hitchcockperscomm1990, + author = {Hitchcock}, + year = {1990}, + howpublished = {pers. comm.}, + key = {Hitchcock pers. comm. (1990)}, + lgcode = {!Ko [huaa1248], G/wi [gwii1239], Kua [kuaa1238]} +} +@book{hoben1970, + author = {Hoben, A.}, + title = {Social Stratification in Traditional Amhara Society}, + year = {1970}, + key = {Hoben (1970)}, + lgcode = {Amhara [amha1245]} +} +@book{hoben1973, + author = {Hoben, A.}, + title = {Land Tenure among the Amhara of Ethiopia}, + year = {1973}, + key = {Hoben (1973)}, + lgcode = {Amhara [amha1245]} +} +@article{hobley1902, + author = {Hobley, C. W.}, + title = {Eastern Uganda}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + volume = {1}, + pages = {1-95}, + year = {1902}, + key = {Hobley (1902)}, + lgcode = {Luo [luok1236]} +} +@book{hobson1954, + author = {Hobson, Richard}, + title = {Navajo Acquisitive Values}, + series = {Papers of the Peabody Museum}, + volume = {42}, + number = {3}, + pages = {1-45}, + year = {1954}, + key = {Hobson (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{hocart1922, + author = {Hocart, A. M.}, + title = {The Cult of the Dead in Eddystone of the Solomons}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {55}, + pages = {71-112, 259-305}, + year = {1922}, + key = {Hocart (1922)}, + lgcode = {Simboese [simb1256]} +} +@book{hocart1929, + author = {Hocart, A. M.}, + title = {Lau Islands, Fiji}, + series = {Bull. Bishop Mus.}, + volume = {62}, + pages = {1-240}, + year = {1929}, + key = {Hocart (1929)}, + lgcode = {Lau [laua1243]} +} +@misc{hockett1938, + author = {Hockett, C. F.}, + year = {1938}, + howpublished = {Unpublished field notes}, + key = {Hockett (1938)}, + lgcode = {Kickapoo [kick1244]} +} +@article{hodgeandtaylor1957, + author = {Hodge, W. H. and D. M. Taylor.}, + title = {The Ethnobotany of the Island Caribs of Dominica}, + journal = {Webbia}, + address = {Firenze}, + volume = {12}, + number = {ii}, + pages = {513-644}, + year = {1957}, + key = {Hodge and Taylor (1957)}, + lgcode = {Callinago [isla1278]} +} +@book{hodgson1847, + author = {Hodgson, B. H.}, + title = {On the Kocch, Bodo and Dhimál tribes}, + publisher = {J. Thomas Baptist Mission Press}, + address = {Calcutta}, + pages = {221}, + year = {1847}, + glottolog_ref = {hh:es:Hodgson:Kocch-Bodo-Dhimal}, + key = {Hodgson (1847)}, + lgcode = {Kachari [kach1279]} +} +@article{hodgson1933, + author = {Hodgson, A. G. O.}, + title = {Notes on the Achewa and Ngoni}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {63}, + pages = {123-164}, + year = {1933}, + key = {Hodgson (1933)}, + lgcode = {Chewa [chew1246]} +} +@article{hoebel1935, + author = {Hoebel, E. Adamson}, + title = {The Sun Dance of the Hekandika Shoshone}, + journal = {American Anthropologist}, + volume = {37}, + pages = {570-581}, + year = {1935}, + key = {Hoebel (1935)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1939, + author = {Hoebel, E. A.}, + title = {Comanche and Hukandika Shoshone Relationship Systems}, + journal = {American Anthropologist}, + volume = {41}, + pages = {440-457}, + year = {1939}, + key = {Hoebel (1939)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1940, + author = {Hoebel, E. A.}, + title = {The Political Organization and Law-Ways of the Comanche Indians}, + journal = {Memoirs of the American Anthropological Association}, + volume = {54}, + pages = {1-149}, + year = {1940}, + key = {Hoebel (1940)}, + lgcode = {Comanche [coma1245]} +} +@book{hoebel1960, + author = {Hoebel, E. A.}, + title = {The Cheyennes}, + address = {New York}, + year = {1960}, + key = {Hoebel (1960)}, + lgcode = {Cheyenne [chey1247]} +} +@article{hoernl1918, + author = {Hoernl‚ A. W.}, + title = {Certain Rites of Transition and the Conception of !Nau among the Hottentots}, + journal = {Harvard African Studies}, + volume = {2}, + pages = {65-82}, + year = {1918}, + glottolog_ref = {eballiso2009:48080}, + key = {Hoernl (1918)}, + lgcode = {Nama [nama1265]} +} +@article{hoernl1925, + author = {Hoernl, A. W.}, + title = {The Social Organization of the Nama Hottentots}, + journal = {American Anthropologist}, + volume = {27}, + pages = {1-24}, + year = {1925}, + key = {Hoernl (1925)}, + lgcode = {Nama [nama1265]} +} +@article{hoffman1893, + author = {Hoffman, W. J.}, + title = {The Menomini Indians}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {14}, + pages = {i, 11-328}, + year = {1893}, + key = {Hoffman (1893)}, + lgcode = {Menominee [meno1252]} +} +@book{hofmayr1925, + author = {Hofmayr, Wilhelm}, + title = {Die Schilluk. Geschichte, Religion und Leben eines Nilotenstammes}, + address = {Wien}, + year = {1925}, + key = {Hofmayr (1925)}, + lgcode = {Shilluk [shil1265]} +} +@article{hogbin1931a, + author = {Hogbin, H. I.}, + title = {The sexual life of the natives of Ontong Java}, + journal = {Journal of the Polynesian Society}, + volume = {40}, + pages = {23-34}, + year = {1931}, + key = {Hogbin (1931a)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931b, + author = {Hogbin, H. I.}, + title = {The Social Organization of Ontong Java}, + journal = {Oceania}, + volume = {1}, + pages = {399-425}, + year = {1931}, + key = {Hogbin (1931b)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931c, + author = {Hogbin, H. Ian.}, + title = {Education at Ontong Java, Solomon Islands}, + journal = {American Anthropologist}, + volume = {33}, + pages = {601-14}, + year = {1931}, + key = {Hogbin (1931c)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1935, + author = {Hogbin, Ian.}, + title = {Native culture of Wogeo}, + journal = {Oceania}, + volume = {5}, + pages = {308-37}, + year = {1935}, + key = {Hogbin (1935)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1938, + author = {Hogbin, H. I.}, + title = {Law and Order in Polynesia}, + address = {London}, + year = {1938}, + key = {Hogbin (1938)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin193839, + author = {Hogbin, H. I.}, + title = {Tillage and Collection}, + journal = {Oceania}, + volume = {9}, + pages = {127-151, 286-325}, + year = {1938-39}, + key = {Hogbin (1938-39)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1943, + author = {Hogbin, H. I.}, + title = {A New Guinea Infancy}, + journal = {Oceania}, + volume = {13}, + pages = {285-309}, + year = {1943}, + key = {Hogbin (1943)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1945, + author = {Hogbin, H. I.}, + title = {Marriage in Wogeo}, + journal = {Oceania}, + volume = {15}, + pages = {324-352}, + year = {1945}, + key = {Hogbin (1945)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin194647, + author = {Hogbin, H. I.}, + title = {Sex and Marriage in Busama}, + journal = {Oceania}, + volume = {17-18}, + year = {1946-47}, + key = {Hogbin (1946-47)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946a, + author = {Hogbin, H. I.}, + title = {A New Guinea Childhood}, + journal = {Oceania}, + volume = {16}, + pages = {275-296}, + year = {1946}, + key = {Hogbin (1946a)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1946b, + author = {Hogbin, H. I.}, + title = {Local Government for New Guinea}, + journal = {Oceania}, + volume = {17}, + pages = {38-66}, + year = {1946}, + key = {Hogbin (1946b)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946c, + author = {Hogbin, H. I.}, + title = {Puberty to Marriage}, + journal = {Oceania}, + volume = {16}, + pages = {185-209}, + year = {1946}, + key = {Hogbin (1946c)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1965, + author = {Hogbin, H. I.}, + title = {A Guadalcanal Society: The Kaoka Speakers}, + address = {New York}, + year = {1965}, + key = {Hogbin (1965)}, + lgcode = {Kaoka [long1395]} +} +@article{hohnel1890, + author = {Hohnel, L. von.}, + title = {Ostaquatorial-Afrika}, + journal = {Petermanns Mitt., Erganzungsh.}, + volume = {21}, + number = {xcix}, + pages = {1-40}, + year = {1890}, + key = {Hohnel (1890)}, + lgcode = {Galab [daas1238]} +} +@book{holas1957, + author = {Holas, B.}, + title = {Les Senoufo (y compris les Minianka)}, + publisher = {Paris: Presses Universitaires de France pour l'International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {5}, + year = {1957}, + glottolog_ref = {eballiso2009:20508}, + key = {Holas (1957)}, + lgcode = {Minianka [mama1271], Senufo [ceba1235]} +} +@book{holas1962, + author = {Holas, B.}, + title = {Les Toura}, + address = {Paris}, + year = {1962}, + key = {Holas (1962)}, + lgcode = {Tura [tour1242]} +} +@article{holder1947, + author = {Holder, Preston.}, + title = {The Motilones}, + journal = {Washington Academy of Sciences Journal}, + volume = {37}, + pages = {417-27}, + year = {1947}, + key = {Holder (1947)}, + lgcode = {Barí (Motilon) [yukp1241]} +} +@article{holding1942, + author = {Holding, E. M.}, + title = {Some Preliminary Notes on Meru Age Grades}, + journal = {Man}, + volume = {42}, + pages = {58-65}, + year = {1942}, + glottolog_ref = {eballiso2009:4509}, + key = {Holding (1942)}, + lgcode = {Meru [meru1245]} +} +@article{holemans1959, + author = {Holemans, K.}, + title = {Etudes sur l'alimentation en milieu coutumier du Kwango}, + journal = {Annales de la Soci‚t‚ Belge de M‚decine Tropicale}, + volume = {39}, + pages = {361-374}, + year = {1959}, + key = {Holemans (1959)}, + lgcode = {Suku [suku1259]} +} +@book{holleman1952, + author = {Holleman, J. F.}, + title = {Shona Customary Law}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1952}, + glottolog_ref = {eballiso2009:26214}, + key = {Holleman (1952)}, + lgcode = {Shona [shon1251]} +} +@book{hollis1905, + author = {Hollis, A. C.}, + title = {The Masai: Their Language and Folklore}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1905}, + glottolog_ref = {guldemann:2133}, + key = {Hollis (1905)}, + lgcode = {Maasi [masa1300]} +} +@book{hollis1909, + author = {Hollis, A. C.}, + title = {The Nandi}, + address = {London}, + year = {1909}, + key = {Hollis (1909)}, + lgcode = {Nandi [nand1266]} +} +@article{holloman1969, + author = {Holloman, R.}, + title = {Acculturation and the Cuna}, + journal = {Field Museum of Natural History Bulletin}, + volume = {40}, + number = {7}, + pages = {4-9}, + year = {1969}, + key = {Holloman (1969)}, + lgcode = {Guna [bord1248]} +} +@article{holm1911, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Medd. om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1911}, + key = {Holm (1911)}, + lgcode = {Tasiilaq [tunu1234]} +} +@article{holm1914, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Meddelelser om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1914}, + key = {Holm (1914)}, + lgcode = {Tasiilaq [tunu1234]} +} +@book{holmberg1950, + author = {Holmberg, A. R.}, + title = {Nomads of the Long Bow: The Siriono of Eastern Bolivia}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Smithsonian Institution Institute of Social Anthropology Publication}, + number = {10}, + pages = {1-104}, + year = {1950}, + key = {Holmberg (1950)}, + lgcode = {Sirionó [siri1273]} +} +@book{holmberg1985, + author = {Holmberg, H. J.}, + editor = {M. W. Falk}, + title = {Holmberg's Ethnographic Sketches}, + publisher = {University of Alaska Press}, + address = {Fairbanks}, + year = {1985}, + key = {Holmberg (1985)}, + lgcode = {Koniag [koni1262]}, + note = {translated by F. Jaensch} +} +@article{holmer1951, + author = {Holmer, N. M.}, + title = {Cuna Chrestomathy}, + journal = {Etnologiska Studier}, + publisher = {Göteborg: Etnogrfiska Muséet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {18}, + pages = {1-191}, + year = {1951}, + glottolog_ref = {fabreall2009ann:Chibcha_kuna074}, + key = {Holmer (1951)}, + lgcode = {Guna [bord1248]} +} +@book{holmes1924, + author = {Holmes, J. H.}, + title = {In Primitive New Guinea}, + address = {New York}, + year = {1924}, + key = {Holmes (1924)}, + lgcode = {Purari [pura1257]} +} +@article{holt1946, + author = {Holt, C.}, + title = {Shasta Ethnography}, + journal = {Anth. Rec.}, + volume = {3}, + pages = {299-350}, + year = {1946}, + key = {Holt (1946)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{holtker1930, + author = {Holtker, G.}, + title = {Die Familie bei den Azteken in Altemexiko}, + journal = {Anthropos}, + volume = {25}, + pages = {465-526}, + year = {1930}, + key = {Holtker (1930)}, + lgcode = {Aztec [clas1250]} +} +@book{holub1895, + author = {Holub, E.}, + title = {Seven Years in South Africa, v. 2}, + address = {London}, + year = {1895}, + key = {Holub (1895)}, + lgcode = {Lozi [lozi1239]} +} +@misc{holybiblend, + title = {Holy Bible. Old Testament}, + key = {Holy_Bible (nd)}, + lgcode = {Hebrews [anci1244]} +} +@article{honigmann1946, + author = {Honigmann, J. J.}, + title = {Ethnography and Acculturation of the Fort Nelson Slave}, + journal = {Yale University Publications in Anthropology}, + volume = {33}, + pages = {1-169}, + year = {1946}, + key = {Honigmann (1946)}, + lgcode = {DeneTha [sout2959]} +} +@book{honigmann1949, + author = {Honigmann, J. J.}, + title = {Culture and Ethos of Kaska Society}, + publisher = {Yale University Press}, + address = {New Haven, Conn.}, + series = {Yale University Publications in Anthropology}, + number = {40}, + pages = {1-368}, + year = {1949}, + key = {Honigmann (1949)}, + lgcode = {Attawapiskat Cree [swam1239], Kaska [kask1239]} +} +@misc{honigmann1953, + author = {Honigmann, J. J.}, + title = {Information for Pakistan}, + year = {1953}, + howpublished = {Unpublished Manuscript}, + key = {Honigmann (1953)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{honigmann1954, + author = {Honigmann, J. J.}, + title = {The Kaska Indians: An Ethnographic Reconstruction}, + journal = {Yale University Publications in Anthropology}, + volume = {51}, + pages = {1-163}, + year = {1954}, + key = {Honigmann (1954)}, + lgcode = {Kaska [kask1239]} +} +@article{honigmann1956a, + author = {Honigmann, J. J.}, + title = {Notes on Sarsi Kin Behavior}, + journal = {Anthropologica}, + address = {Ottawa}, + volume = {2}, + pages = {17-38}, + year = {1956}, + key = {Honigmann (1956a)}, + lgcode = {Sarcee [sars1236]} +} +@article{honigmann1956b, + author = {Honigmann, J. J.}, + title = {The Attawapiskat Swampy Cree: An Ethnographic Reconstruction}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {5}, + pages = {23-82}, + year = {1956}, + key = {Honigmann (1956b)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@incollection{honigmann1957, + author = {Honigmann, J. J.}, + editor = {S. Maron}, + title = {Women in West Pakistan}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {154-176}, + year = {1957}, + key = {Honigmann (1957)}, + lgcode = {Punjabi [west2386]} +} +@inbook{honigmann1958, + author = {Honigmann, J. J.}, + title = {Third Village: Punjab Province, Chak 41MB}, + booktitle = {Three Pakistan Villages}, + address = {Chapel Hill}, + pages = {68-95}, + year = {1958}, + key = {Honigmann (1958)}, + lgcode = {Punjabi [west2386]} +} +@incollection{honigmann1981, + author = {Honigmann, J. J.}, + editor = {Helm, J.}, + title = {West Main Cree}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {217-230}, + year = {1981}, + glottolog_ref = {hh:e:Honigmann:West-Main-Cree}, + key = {Honigmann (1981)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@book{hooper1853, + author = {Hooper, W. H.}, + title = {Ten Months among the Tents of the Tuski: With Incidents of an Arctic Boat Expedition in Search of Sir John Franklin, as Far as the Mackenzie River, and Cape Bathurst}, + publisher = {John Murray}, + address = {London}, + year = {1853}, + key = {Hooper (1853)}, + lgcode = {Délįne [nort2942]} +} +@article{hooper1920, + author = {Hooper, L.}, + title = {The Cahuilla Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {16}, + pages = {316-380}, + year = {1920}, + key = {Hooper (1920)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243]} +} +@book{hopen1958, + author = {Hopen, C. E.}, + title = {The Pastoral Fulbe Family in Gwandu}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1958}, + glottolog_ref = {eballiso2009:43426}, + key = {Hopen (1958)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@book{horton1948, + author = {Horton, D.}, + title = {The Mundurucu}, + year = {1948}, + key = {Horton (1948)}, + lgcode = {Munduruku [mund1330]} +} +@book{hourst1899, + author = {Hourst, L.}, + title = {The Exploration of the Niger}, + address = {New York}, + year = {1899}, + key = {Hourst (1899)}, + lgcode = {Aulliminden [ioul1238]} +} +@book{howard1938, + author = {Howard, J. H.}, + title = {The Ojibwa woman}, + publisher = {Columbia University Press}, + address = {New York}, + year = {1938}, + key = {Howard (1938)} +} +@article{howard1961, + author = {Howard, J. H.}, + title = {The Identity and Demography of the Plains-Ojibwa}, + journal = {Plains Anthropologist}, + volume = {67}, + pages = {xiii, 171-178}, + year = {1961}, + key = {Howard (1961)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965a, + author = {Howard, J. H.}, + title = {The Plains-Ojbiwa or Bungi}, + journal = {Anth. Pap. South Dakota Mus.}, + volume = {1}, + pages = {1-165}, + year = {1965}, + key = {Howard (1965a)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965b, + author = {Howard, J. H.}, + title = {The Ponca Tribe}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {195}, + pages = {1-191}, + year = {1965}, + key = {Howard (1965b)}, + lgcode = {Ponca [ponc1241]} +} +@article{howardandhoward1964, + author = {Howard, A., and I. Howard.}, + title = {Pre-Marital Sex and Social Control Among the Rotumans}, + journal = {American Anthropologist}, + volume = {66}, + pages = {266-283}, + year = {1964}, + key = {Howard and Howard (1964)}, + lgcode = {Rotumans [rotu1241]} +} +@article{howell190810, + author = {Howell, W.}, + title = {The Sea Dyak}, + journal = {Sarawak Gazette}, + volume = {38-50}, + year = {1908-10}, + key = {Howell (1908-10)}, + lgcode = {Iban [iban1264]} +} +@article{howell1941, + author = {Howell, P. P.}, + title = {The Shilluk Settlement}, + journal = {Sudan Notes and Records}, + volume = {24}, + pages = {47-66}, + year = {1941}, + glottolog_ref = {eballiso2009:54993}, + key = {Howell (1941)}, + lgcode = {Shilluk [shil1265]} +} +@article{howell1951, + author = {Howell, P. P.}, + title = {Notes on the Ngork Dinka}, + journal = {Sudan Notes and Records}, + volume = {32}, + pages = {240-293}, + year = {1951}, + key = {Howell (1951)}, + lgcode = {Dinka [sout2832]} +} +@book{howell1979, + author = {Howell, N.}, + title = {Demography of the Dobe Area !Kung}, + publisher = {Academic Press}, + address = {New York}, + year = {1979}, + key = {Howell (1979)}, + lgcode = {!Kung [juho1239]} +} +@misc{howellnd, + author = {Howell, N.}, + title = {Estimating Absolute Age in a Remote and Nonliterate Population}, + address = {Princeton}, + howpublished = {Manuscript}, + key = {Howell (nd)}, + lgcode = {!Kung [juho1239]} +} +@book{howells1937, + author = {Howells, W. W.}, + title = {Anthropometry of the Natives of Arnhem Land and the Australian Race Problem}, + publisher = {Peabody Museum}, + address = {Cambridge, Mass.}, + series = {Papers of the Peabody Museum of AmericAn Archaeology and Ethnology}, + volume = {16}, + number = {1}, + year = {1937}, + key = {Howells (1937)}, + lgcode = {Larikia [lara1258], Nunggubuyu [nung1290], Tiwi [tiwi1244], Yolngu, Dhuwal [dhuw1249]} +} +@article{howitt1891, + author = {Howitt, A. W.}, + title = {The Dieri and Other Kindred Tribes of Central Australia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {20}, + pages = {30-104}, + year = {1891}, + glottolog_ref = {hh:e:Howitt:Dieri}, + key = {Howitt (1891)}, + lgcode = {Diyari [dier1241]} +} +@book{howitt1904, + author = {Howitt, A. W.}, + title = {The Native Tribes of Sout-East Australia}, + publisher = {MacMillan}, + address = {London}, + year = {1904}, + key = {Howitt (1904)}, + lgcode = {Diyari [dier1241], Kurnai [gana1278], Ngiyambaa [wang1291]} +} +@incollection{hrdlicka1909, + author = {Hrdlička, A.}, + editor = {S. Williams}, + title = {On the Stature of the Indians of the Southwest and of Northern Mexico}, + booktitle = {Putnam Anniversary Volume: Anthropological Essays Presented to Fredric Ward Putnam in Honor of His Seventieth Birthday, April 16, 1909}, + publisher = {AMS Press}, + address = {New York}, + pages = {405-426}, + year = {1909}, + key = {Hrdlička (1909)}, + lgcode = {Hualapai [wala1270], Lipan Apache [lipa1241], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244]} +} +@incollection{hrdlicka1930, + author = {Hrdlička, A.}, + title = {Older Anthropometric Data on the Western Eskimo: Stature and Other Measurements}, + booktitle = {46th Annual Report of the Bureau of American Ethnology, 1928-1929}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {228-253}, + year = {1930}, + key = {Hrdlička (1930)}, + lgcode = {Aivilingmiut Inuit [cari1277], Kuskowagmut [kusk1241], Nunivak [kusk1241], Sivokamiut Inuit [cent2128]} +} +@article{hrdlicka1935, + author = {Hrdlicka, Ales.}, + title = {The pueblos, with comparative data on the bulk of the tribes of the southwest northern Mexico}, + journal = {American Journal of Physical Anthropology}, + volume = {30}, + pages = {235-460}, + year = {1935}, + key = {Hrdlicka (1935)}, + lgcode = {Hopi [hopi1249]} +} +@book{hristoljubova1981, + editor = {Hristoljubova, L. S.}, + title = {Sel'skie poselenija Udmurtii v XIX-XX vv (Rural Settlements of the Udmurt in the Nineteenth and Twentieth Centuries)}, + address = {Izhevsk}, + year = {1981}, + key = {Hristoljubova (1981)}, + lgcode = {Udmurt [sout2681]} +} +@article{hudson1938, + author = {Hudson, A. E.}, + title = {Kazak Social Structure}, + journal = {Yale University Publications in Anthropology}, + volume = {20}, + pages = {1-109}, + year = {1938}, + key = {Hudson (1938)}, + lgcode = {Kazakh [kaza1248]} +} +@phdthesis{hudson1990, + author = {Hudson, J. L.}, + title = {Advancing Methods in Zooarchaeology: An Ethnoarchaeological Study among the Aka}, + school = {Department of Anthropology, University of California, Santa Barbara}, + year = {1990}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Hudson (1990)}, + lgcode = {Aka [bamb1264]} +} +@incollection{hudsonandbeacon1941, + author = {Hudson, A. E., and E. Bacon}, + editor = {L. Spier}, + title = {Social Control and the Individual in Eastern Hazara Culture}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {239-258}, + year = {1941}, + key = {Hudson and Beacon (1941)}, + lgcode = {Hazara [haza1239]} +} +@article{hueting1921, + author = {Hueting, A.}, + title = {De Tobeloreezen in hun denken en doen}, + journal = {Bijdragen tot de Taal-, Land-, en Volkenkunde}, + volume = {77; 78}, + pages = {217-358; 137-342}, + year = {1921}, + key = {Hueting (1921)}, + lgcode = {Tobelorese [tobe1252]} +} +@article{hughes1958, + author = {Hughes, C. C.}, + title = {An Eskimo Deviant from the "Eskimo" Type of Social Organization}, + journal = {American Anthropologist}, + volume = {60}, + pages = {1140-1147}, + year = {1958}, + key = {Hughes (1958)}, + lgcode = {Sivokakmeit [cent2128]} +} +@book{hughes1960, + author = {Hughes, C. C.}, + title = {The Eskimo Village in the Modern World}, + publisher = {Cornell University Press}, + address = {Ithaca, New York}, + year = {1960}, + key = {Hughes (1960)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128]} +} +@book{hughesandvanvelsen1955, + author = {Hughes, A. J. B., and J. van Velsen}, + title = {The Ndebele}, + address = {London}, + year = {1955}, + key = {Hughes and van Velsen (1955)}, + lgcode = {Ndebele [nort2795]} +} +@book{hulstaert1938, + author = {Hulstaert, G.}, + title = {Le mariage des Nkundo'}, + address = {Brussels}, + series = {Mémoires de l'Institut Royal Colonial Belge}, + volume = {8}, + pages = {1-520}, + year = {1938}, + key = {Hulstaert (1938)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hulstaert1971, + author = {Hulstaert, G.}, + title = {Sur quelques croyances magiques des Mongo}, + journal = {Cahiers des Religion Africaines}, + volume = {5}, + number = {9}, + pages = {145-167}, + year = {1971}, + key = {Hulstaert (1971)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hultkrantz1957, + author = {Hultkrantz, A.}, + title = {The Indians of Yellowstone Park}, + journal = {Annals of Wyoming}, + volume = {29}, + pages = {125-149}, + year = {1957}, + key = {Hultkrantz (1957)}, + lgcode = {Tukudika [nort2955]} +} +@article{hultkrantz1958, + author = {Hultkrantz, A.}, + title = {Tribal Divisions Within the Eastern Shoshoni of Wyoming}, + journal = {Proc. Intern. Congr. Americ.}, + volume = {32}, + pages = {148-154}, + year = {1958}, + key = {Hultkrantz (1958)}, + lgcode = {Wind River Eastern Shoshone [nort2955]} +} +@book{humphreys1926, + author = {Humphreys, C. B.}, + title = {The Southern New Hebrides}, + address = {Cambridge}, + year = {1926}, + key = {Humphreys (1926)}, + lgcode = {Eromangans [siee1239], Tannese [sout2869]} +} +@book{hunt1940, + author = {Hunt, George T.}, + title = {The Wars of the Iroquois: A Study in Intertribal Trade Relations}, + publisher = {University of Wisconsin}, + address = {Madison}, + year = {1940}, + key = {Hunt (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{hunter1936, + author = {Hunter, M.}, + title = {Reaction to Conquest}, + address = {London}, + year = {1936}, + key = {Hunter (1936)}, + lgcode = {Pondo [mpon1252]} +} +@book{huntetal1949, + author = {Hunt, E. E. Jr. and D. M. Schneider and N. R. Kidder and W. D. Stevens}, + title = {The Micronesians of Yap and Their Depopulation}, + address = {Washington}, + year = {1949}, + key = {Hunt et al. (1949)}, + lgcode = {Yapese [yape1248]} +} +@article{huntingford1929, + author = {Huntingford, G. W. B.}, + title = {Modern Hunters: Some Accounts of the KameliloKapchepkendi Dorobo (Okiek) of Kenya Colony}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {59}, + pages = {333-378}, + year = {1929}, + key = {Huntingford (1929)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1942, + author = {Huntingford, G. W. B.}, + title = {The Social Organization of the Dorobo}, + journal = {African Studies}, + volume = {1}, + pages = {183-200}, + year = {1942}, + key = {Huntingford (1942)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1950, + author = {Huntingford, G. W. B.}, + title = {Nandi Work and Culture}, + journal = {Colonial Research Studies}, + publisher = {London}, + volume = {4}, + pages = {1-126}, + year = {1950}, + glottolog_ref = {eballiso2009:5312}, + key = {Huntingford (1950)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1951, + author = {Huntingford, G. W. B.}, + title = {The Social Institutions of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {1-48}, + year = {1951}, + key = {Huntingford (1951)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1953a, + author = {Huntingford, G. W. B.}, + title = {The Northern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953a)}, + lgcode = {Bari [ligo1238], Kakwa [kakw1240], Kuku [kuku1285], Mondari [mand1425], Pojulu [poju1239]} +} +@book{huntingford1953b, + author = {Huntingford, G. W. B.}, + title = {The Southern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953b)}, + lgcode = {Dorobo [okie1245], Goroa [goro1270], Hill Suk [west2492], Iraqw [iraq1241], Keyu [keiy1238], Kipsigis [kips1239], Maasi [masa1300], Nandi [nand1266], Plains Suk [east2420], Sandawe [sand1273], Tatoga [dato1239]} +} +@book{huntingford1953c, + author = {Huntingford, G. W. B.}, + title = {The Nandi of Kenya}, + address = {London}, + year = {1953}, + key = {Huntingford (1953c)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1954, + author = {Huntingford, G. W. B.}, + title = {The Political Organization of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {123-148}, + year = {1954}, + key = {Huntingford (1954)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1955a, + author = {Huntingford, G. W. B.}, + title = {The Economic Life of the Dorobo}, + journal = {Anthropos}, + volume = {50}, + pages = {602-634}, + year = {1955}, + glottolog_ref = {eballiso2009:42664}, + key = {Huntingford (1955a)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1955b, + author = {Huntingford, G. W. B.}, + title = {The Galla of Ethiopia: the kingdoms of Kafa and Janjero}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, North-Eastern Africa}, + volume = {2}, + year = {1955}, + glottolog_ref = {eballiso2009:42663}, + key = {Huntingford (1955b)}, + lgcode = {Arusi [bora1271], Gibe [west2721], Kafa [kafa1242], Macha [west2721], Yem [toba1264]} +} +@article{hurault1959, + author = {Hurault, J.}, + title = {Etude demographique comparee des Indiens Oayana et des noirs refugies Boni de Haut-Mnaroni}, + journal = {Population}, + volume = {14}, + pages = {509-534}, + year = {1959}, + key = {Hurault (1959)}, + lgcode = {Saramaccan [sara1340]} +} +@article{hurel1911, + author = {Hurel, E.}, + title = {Religion et vie domestique des Bakerewe}, + journal = {Anthropos}, + volume = {6}, + pages = {62-94, 276-301}, + year = {1911}, + glottolog_ref = {eballiso2009:14829}, + key = {Hurel (1911)}, + lgcode = {Kerewe [kere1283]} +} +@article{hurtadoandhill1986, + author = {Hurtado, A. M., and K. R. Hill}, + title = {The Cuiva: Hunter-Gatherers of Western Venezuela}, + journal = {Anthroquest}, + volume = {36}, + number = {1}, + pages = {14-22}, + year = {1986}, + key = {Hurtado and Hill (1986)}, + lgcode = {Guahibo [guah1255]} +} +@article{hurtadoandhill1990, + author = {Hurtado, A. M., and K. R. Hill}, + title = {Seasonality in a foraging society: variation in diet, work effort, fertility and sexual division of labor among the Hiwi of Venezuela}, + journal = {Journal of Anthropological Research}, + address = {Albuquerque}, + volume = {46}, + pages = {293-346}, + year = {1990}, + glottolog_ref = {fabreall2009ann:Guahib0_cuiba18}, + key = {Hurtado and Hill (1990)}, + lgcode = {Guahibo [guah1255]} +} +@book{hutereau1909, + author = {Hutereau, A.}, + title = {Notes sur la vie familiale et juridique de quelques populations du Congo Belge}, + publisher = {Tervuren}, + series = {Annales du Musée du Congo, ethnographie et anthropologie, série 4: documents ethnographiques congolais}, + volume = {1}, + pages = {ii,61-84}, + year = {1909}, + glottolog_ref = {eballiso2009:38907}, + key = {Hutereau (1909)}, + lgcode = {Baboa [bwaa1238], Mangbetu [nucl1420]} +} +@article{hutereau1910a, + author = {Hutereau, A.}, + title = {Documents ethnographiques congolaises: Les MAfoto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {34}, + pages = {138-152, 173-197}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Mafoto}, + key = {Hutereau (1910a)}, + lgcode = {Poto [luse1252]} +} +@article{hutereau1910b, + author = {Hutereau, A.}, + title = {Les Manyanga}, + journal = {Bull Soc. Roy. Belge Geog.}, + volume = {24}, + pages = {15-39}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Manyanga}, + key = {Hutereau (1910b)}, + lgcode = {Sundi [koon1244]} +} +@article{hutter1899, + author = {Hutter, H.}, + title = {Politische und soziale Verhaltnisse bei den Graslandstammen Nordkameruns}, + journal = {Globus}, + volume = {76}, + pages = {284-289, 303-309}, + year = {1899}, + key = {Hutter (1899)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{hutter1907, + author = {Hutter, F.}, + title = {Bamum}, + journal = {Globus}, + volume = {96}, + pages = {1-6, 26-32, 44-47}, + year = {1907}, + key = {Hutter (1907)}, + lgcode = {Bamum [bamu1253]} +} +@book{hutton1921a, + author = {Hutton, J. H.}, + title = {The Angami Nagas}, + address = {London}, + year = {1921}, + key = {Hutton (1921a)}, + lgcode = {Angami [anga1288]} +} +@book{hutton1921b, + author = {Hutton, J. H.}, + title = {The Sema Nagas}, + publisher = {London: MacMillan}, + address = {London}, + pages = {586}, + year = {1921}, + glottolog_ref = {hh:ew:Hutton:Sema}, + key = {Hutton (1921b)}, + lgcode = {Sema [sumi1235]} +} +@book{huxley1964, + author = {Huxley, M. and C. Capa.}, + title = {Farewell to Eden}, + address = {New York}, + year = {1964}, + key = {Huxley (1964)}, + lgcode = {Amahuaca [amah1246]} +} +@book{hyde1974, + author = {Hyde, G.F.}, + title = {The Pawnee Indians}, + year = {1974}, + key = {Hyde (1974)}, + lgcode = {Pawnee [pawn1254]} +} +@book{ichikawa1978, + author = {Ichikawa, M.}, + title = {The residential groups of the Mbuti pygmies}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + volume = {1}, + number = {1}, + pages = {131-188}, + year = {1978}, + glottolog_ref = {hh:e:Ichikawa:Mbuti:Residential}, + key = {Ichikawa (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{ihle1929, + author = {Ihle, A.}, + title = {Das alte Königreich Kongo}, + publisher = {Verlag der Werkgemeinschaft}, + address = {Leipzig}, + series = {Studien zur Völkerkunde}, + volume = {1}, + year = {1929}, + glottolog_ref = {eballiso2009:18273}, + key = {Ihle (1929)}, + lgcode = {Bakongo [sans1272]} +} +@book{iliff1954, + author = {Iliff, F. G.}, + title = {People of the Blue Water}, + address = {New York}, + year = {1954}, + key = {Iliff (1954)}, + lgcode = {Havasupai [hava1249]} +} +@misc{informantfrommoloporivernd, + author = {Informant from Molopo River}, + howpublished = {pers. comm.}, + key = {Informant from Molopo River (n.d.)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{ingrams1930, + author = {Ingrams, W. H.}, + title = {Zanzibar}, + address = {London}, + year = {1930}, + key = {Ingrams (1930)}, + lgcode = {Hadimu [pemb1239]} +} +@book{insor1963, + author = {Insor, D.}, + title = {Thailand, a Political, Social, and Economic Analysis}, + address = {New York}, + year = {1963}, + key = {Insor (1963)}, + lgcode = {Thai [thai1261]} +} +@book{iochelson1908, + author = {Iochel'son, V. I.}, + title = {Drevnie i sovremennye podzemnye zhilishcha plemen Severo-Vostochnoj Azii i Severo-Zapadnoj Ameriki (Ancient and Modem Subterranean Dwellings of the North-East Asian and North-Western American Tribes)}, + address = {St. Petersburg}, + year = {1908}, + key = {Iochel'son (1908)}, + lgcode = {Oroch [oroc1248]} +} +@book{irimoto1981, + author = {Irimoto, T.}, + title = {Chipewyan Ecology: Group Structure and Caribou Hunting System}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + number = {8}, + year = {1981}, + key = {Irimoto (1981)}, + lgcode = {Dene [chip1261]} +} +@book{irle1906, + author = {Irle, J.}, + title = {Die Herero}, + address = {Gutersloh}, + year = {1906}, + key = {Irle (1906)}, + lgcode = {Herero [here1253]} +} +@phdthesis{irvine1973, + author = {Irvine, J. T.}, + title = {Caste and Communication in a Wolof Village}, + school = {University of Pennsylvania}, + year = {1973}, + key = {Irvine (1973)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ishakovetal1998, + author = {Ishakov, D. M. and Ju. G. Muhametshin and S. V. Suslova and R. K. Urazmanova and N. A. Halikov}, + editor = {V. A. Tishkov}, + title = {Tatary}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {515-20}, + year = {1998}, + key = {Ishakov et al. (1998)}, + lgcode = {Kazan tatar [midd1325], Lithuanian Tatar [west2405]} +} +@book{islavin1847, + author = {Islavin, V.}, + title = {Samoiedy v domaschnem i obshchestvennom bytu}, + address = {St. Petersburg}, + year = {1847}, + key = {Islavin (1847)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@book{ivanova1999, + editor = {Ivanova, M. G.}, + title = {Finno-ugry Povolzh'ja i Priural'jav srednie veka (Finno-Ugric Peoples of the Volga and Ural Region in the Middle Ages)}, + address = {Izhevsk}, + year = {1999}, + key = {Ivanova (1999)}, + lgcode = {Udmurt [sout2681]} +} +@incollection{ivanovetal1964, + author = {Ivanov, S. V. and M. G. Levin and A. V. Smolyak}, + editor = {M. G. Levin and L. P. Potapuv}, + title = {The Nevkhi}, + booktitle = {The People of Siberia}, + address = {Chicago}, + pages = {767-785}, + year = {1964}, + key = {Ivanov et al. (1964)}, + lgcode = {Nivkh [gily1242]} +} +@book{ivashchenko1989, + author = {Ivashchenko, L. Ya. (ed. )}, + title = {Istorija i kul'tura udegeitsev (History and Culture of the Udihe)}, + address = {Leningrad}, + year = {1989}, + key = {Ivashchenko (1989)}, + lgcode = {Udihe [udih1248]} +} +@book{ivashchenko1994, + editor = {Ivashchenko, L. Ya.}, + title = {Istorija i kul'tura ul'chei v 17-20 vv. (The History and Culture of the Ulch in the Seventeenth-Twentieth Centuries)}, + address = {Sankt-Peterburg}, + year = {1994}, + key = {Ivashchenko (1994)}, + lgcode = {Ulch [ulch1241]} +} +@book{ivens1927, + author = {Ivens, W. G.}, + title = {Melanesians of the South-East Solomon Islands}, + address = {London}, + year = {1927}, + key = {Ivens (1927)}, + lgcode = {Ulawans [saaa1240]} +} +@book{ivens1930, + author = {Ivens, W. G.}, + title = {The Island Builders of the Pacific}, + address = {London}, + year = {1930}, + key = {Ivens (1930)}, + lgcode = {Kwaio [kwai1243]} +} +@phdthesis{ives1985, + author = {Ives, J.W.}, + title = {Northern Athapaskan Social and Economic Variability}, + school = {University of Michigan, Ann Arbor}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Ives (1985)}, + lgcode = {Beaver [beav1236], DeneTha [sout2959]} +} +@book{izardheritierandizard1959, + author = {Izard-Heritier, F., and M. Izard.}, + title = {Les Mossi du Yatnga}, + address = {Bordeaux}, + year = {1959}, + key = {Izard-Heritier and Izard (1959)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{izikowitz1951, + author = {Izikowitz, K. G.}, + title = {Lamet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {17}, + pages = {1-375}, + year = {1951}, + key = {Izikowitz (1951)}, + lgcode = {Lamet [lame1256]}, + note = {Only after several months of living among the Lamet, did I begin to get some idea of the contours of their social life. Unfortunately, by that time I had only a short while left at my disposal.} +} +@book{jackson1895a, + author = {Jackson, F. G.}, + title = {The Great Frozen Land}, + address = {London}, + year = {1895}, + key = {Jackson (1895a)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1895b, + author = {Jackson, F. G.}, + title = {Notes on the Samoyeds of the Great Tundra}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {24}, + pages = {388-410}, + year = {1895}, + key = {Jackson (1895b)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1923, + author = {Jackson, H. C.}, + title = {Nuer of the Upper Nile Province}, + journal = {Sudan Notes and Records}, + volume = {6}, + pages = {59-107, 123-89}, + year = {1923}, + glottolog_ref = {eballiso2009:35580}, + key = {Jackson (1923)}, + lgcode = {Nuer [nuer1246]} +} +@article{jackson192627, + author = {Jackson, H. M. G.}, + title = {Notes on Matabele Customary Law}, + journal = {S. Rhod. Nat. Aff. Dep. Ann.}, + volume = {4; 5}, + pages = {30-34; 7-14}, + year = {1926-27}, + key = {Jackson (1926-27)}, + lgcode = {Ndebele [nort2795]} +} +@article{jacobs1932, + author = {Jacobs, Melville}, + title = {Northern Sahaptin Kinship Terms}, + journal = {American Anthropologist}, + volume = {34}, + pages = {688-693}, + year = {1932}, + key = {Jacobs (1932)}, + lgcode = {Klikitat [nucl1237]} +} +@article{jacobs1940, + author = {Jacobs, Melville}, + title = {Coos Narrative and Ethnologic Texts}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {8}, + pages = {1-260}, + year = {1940}, + key = {Jacobs (1940)}, + lgcode = {Coos [coos1249]} +} +@book{jacquemond1959, + author = {Jacquemond, M. S.}, + title = {Les pêcheurs du boucle du Niger}, + address = {Paris}, + year = {1959}, + key = {Jacquemond (1959)}, + lgcode = {Songhai [koyr1242]} +} +@book{jagafova1998, + author = {Jagafova, E.}, + title = {Samarskie chuvashi (istoriko-etnograficheskie ocherki). Konets XVII-nachalo XX vv. (The Chuvasho f Samara[ Historical-Ethnographic Essays]. From the Late Seventeenth to the Early Twentieth Century)}, + address = {Samara}, + year = {1998}, + key = {JagAfova (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{jahn1914, + author = {Jahn, A.}, + title = {Paraujanos und Goajiros und die Pfahlbauten am See von Maracaibo}, + journal = {Zeitschrift für Ethnologie}, + address = {Braunschweig}, + volume = {46}, + pages = {267-283}, + year = {1914}, + glottolog_ref = {fabreall2009ann:Arawak_wayu068}, + key = {Jahn (1914)}, + lgcode = {Paraujano [para1316]} +} +@book{james1903, + author = {James, G. W.}, + title = {The Indians of the Painted Desert Region}, + address = {Boston}, + year = {1903}, + key = {James (1903)}, + lgcode = {Havasupai [hava1249]} +} +@book{james1960, + author = {James, Harry C.}, + title = {The Cahuilla Indians}, + publisher = {Westernlore Press}, + address = {Los Angeles}, + year = {1960}, + key = {James (1960)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264]} +} +@incollection{jamison1978, + author = {Jamison, P. L.}, + editor = {P. L. Jamison, S. L. Zegura, and F. A. Milan}, + title = {Anthropometric Variation}, + booktitle = {Eskimos of Northwestern Alaska: A Biological Perspective}, + publisher = {Dowden, Hutchison and Ross}, + address = {Stroudsburg, Penn.}, + pages = {40-78}, + year = {1978}, + key = {Jamison (1978)}, + lgcode = {Nunamiut [nort2944]} +} +@book{janes1983, + author = {Janes, R.R.}, + title = {Archaeological Ethnography among Mackenzie Basin Deng, Canada}, + publisher = {University of Calgary}, + address = {Calgary}, + series = {Arctic Institute of North America Technical Paper}, + number = {28}, + year = {1983}, + key = {Janes (1983)}, + lgcode = {DeneTha [sout2959]} +} +@phdthesis{janetski1983, + author = {Janetski, J. C.}, + title = {The Western Ute of Utah Valley: An Ethnohistoric Model of Lakeside Adaptation}, + school = {Department of Anthropology, University of Utah, Salt Lake City}, + year = {1983}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Janetski (1983)}, + lgcode = {Timponogas [utee1244]} +} +@book{janguzin1987, + author = {Janguzin, R. Z.}, + title = {Sotsial'najas trukturab ashkirskogoo bshchestvav XVIII-XIX vv. (Social Structure of the Bashkir Society in the Eighteenth and Nineteenth Centuries)}, + address = {Ufa}, + year = {1987}, + key = {Janguzin (1987)}, + lgcode = {Bashkir [bash1264]} +} +@phdthesis{janlekha1955, + author = {Janlekha, K. O.}, + title = {A Study of the Economy of a Rice Growing Village in Central Thailand}, + school = {Cornell University}, + year = {1955}, + key = {Janlekha (1955)}, + lgcode = {Thai [thai1261]} +} +@book{jaspan1953, + author = {Jaspan, M. A.}, + title = {The Ila-Tonga Peoples of Northwestern Rhodesia}, + address = {London}, + year = {1953}, + key = {Jaspan (1953)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{jaspertandjaspert1930, + author = {Jaspert, F., and W. Jaspert.}, + title = {Die Völkerstämme Mittel-Angolas}, + publisher = {Baer}, + address = {Frankfurt am Main}, + series = {Veröffentlichungen aus dem Städtischen Völkermuseum Frankfurt am Main}, + volume = {5}, + pages = {155}, + year = {1930}, + glottolog_ref = {hh:hew:JaspertJaspert:Mittel-Angolas}, + key = {Jaspert and Jaspert (1930)}, + lgcode = {Chokwe [chok1245]} +} +@book{jay1963, + author = {Jay, R. R.}, + title = {Religion and Politics in Central Java}, + address = {New Haven}, + year = {1963}, + key = {Jay (1963)}, + lgcode = {Javanese [java1254]} +} +@book{jay1969, + author = {Jay, R. R.}, + title = {Javanese Villagers}, + address = {Cambridge, Mass.}, + year = {1969}, + key = {Jay (1969)}, + lgcode = {Javanese [java1254]} +} +@article{jazykov1840, + author = {Jazykov, D. I.}, + title = {O finskih zhiteljah S. Peterburgskoj Gubemii (About the Finnish Residents of the St. Petersburg Gubemia)}, + journal = {Russkij istoricheskij sborik}, + volume = {1}, + pages = {300-325}, + year = {1840}, + key = {Jazykov (1840)}, + lgcode = {Votes [voti1245]}, + note = {translation of Sjogren 1833} +} +@book{jean1909, + author = {Jean, C.}, + title = {Les Touareg du sud-est}, + address = {Paris}, + year = {1909}, + key = {Jean (1909)}, + lgcode = {Asben [taya1257]} +} +@article{jeffreys1951, + author = {Jeffreys, M. D. W.}, + title = {Some Notes on the Fon of Bikom}, + journal = {Afr. Aff.}, + volume = {50}, + pages = {241-249}, + year = {1951}, + glottolog_ref = {eballiso2009:21264}, + key = {Jeffreys (1951)}, + lgcode = {Kom [komc1235]} +} +@book{jenks1905, + author = {Jenks, A. E.}, + title = {The Bontoc Igorot}, + publisher = {Bureau of Printing}, + address = {Manila}, + series = {Ethnol. Surv. Publ.}, + volume = {1}, + pages = {308}, + year = {1905}, + glottolog_ref = {hh:e:Jenks:Bontoc-Igorot}, + key = {Jenks (1905)}, + lgcode = {Bontok [cent2292]} +} +@article{jenness1917, + author = {Jenness, D.}, + title = {The Copper Eskimos}, + journal = {Geographical Review}, + volume = {4}, + pages = {81-91}, + year = {1917}, + key = {Jenness (1917)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1922, + author = {Jenness, D.}, + title = {The Life of the Copper Eskimo}, + publisher = {Voliza}, + address = {Ottawa}, + series = {Report of the Canadian Arctic Expedition 1913-1918}, + volume = {12}, + pages = {5-277}, + year = {192}, + key = {Jenness (1922)}, + lgcode = {Copper Inuit [copp1244], Inupiat [nort2944]} +} +@book{jenness1928, + author = {Jenness, D.}, + title = {People of the Twilight}, + address = {New York}, + year = {1928}, + key = {Jenness (1928)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1932, + author = {Jenness, D.}, + title = {The Indians of Canada}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {65}, + year = {1932}, + key = {Jenness (1932)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1935, + author = {Jenness, D.}, + title = {The Ojibwa Indians of Parry Island: Their Social and Religious Life}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {78}, + pages = {1-115}, + year = {1935}, + key = {Jenness (1935)}, + lgcode = {Eastern Ojibwa [east2542]} +} +@book{jenness1937, + author = {Jenness, D.}, + title = {The Sekani Indians of British Columbia}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {84}, + pages = {1-82}, + year = {1937}, + key = {Jenness (1937)}, + lgcode = {Dakelh [carr1249], Sekani [seka1250]} +} +@book{jenness1938, + author = {Jenness, D.}, + title = {The Sarcee Indians of Alberta}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {90}, + pages = {1-98}, + year = {1938}, + key = {Jenness (1938)}, + lgcode = {Sarcee [sars1236]} +} +@incollection{jenness1943, + author = {Jenness, D.}, + title = {The Carrier Indians of the Bulkley River: Their Social and Religious Life}, + booktitle = {Smithsonian Institution Anthropological Papers, No. 19-26}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {133}, + pages = {469-586}, + year = {1943}, + key = {Jenness (1943)}, + lgcode = {Alkatcho [sout2958], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@book{jenness1955, + author = {Jenness, Diamond}, + title = {The Faith of a Coast Salish Indian}, + series = {Anthropology in British Columbia}, + volume = {3}, + pages = {1-92}, + year = {1955}, + key = {Jenness (1955)}, + lgcode = {Musqueam [musq1240]} +} +@book{jensen1936, + author = {Jensen, A. E.}, + title = {Im Lande des Gada}, + publisher = {Stuttgart: Strecker & Schröder}, + address = {Stuttgart}, + year = {1936}, + glottolog_ref = {eballiso2009:11941}, + key = {Jensen (1936)}, + lgcode = {Darasa [gede1246], Konso [kons1243], Sidama [sida1246]} +} +@book{jensen1959, + editor = {Jensen, A. E.}, + title = {Altvölker Süd-Aethiopiens}, + address = {Stuttgart}, + year = {1959}, + key = {Jensen (1959)}, + lgcode = {Arbore [arbo1245], Bako [aari1239], Banna [hame1242], Basketo [bask1236], Bodi [meen1242], Dime [dime1235], Hamar [hame1242], Male [male1284], Shangama [aari1239], Tsamai [tsam1247], Ubamer [aari1239]} +} +@book{jochelson190508, + author = {Jochelson, W.}, + title = {The Koryak}, + series = {Mem. Amer. Mus. Nat. Hist.}, + volume = {10}, + year = {1905-08}, + key = {Jochelson (1905-08)}, + lgcode = {Koryak [kory1246]} +} +@book{jochelson191926, + author = {Jochelson, W.}, + title = {The Yukaghir and Yukaghirized Tungus}, + series = {Memoirs of the American Museum of Natural History}, + volume = {13}, + pages = {1-469}, + year = {1919-26}, + url = {http://hdl.handle.net/2246/26}, + key = {Jochelson (1919-26)}, + lgcode = {Yukaghir [nort2745]} +} +@book{jochelson1925, + author = {Jochelson, W.}, + title = {Archeaological Investigations in the Aleutian Islands}, + address = {Washington}, + series = {Carnegie Institution of Washington Publication}, + number = {367}, + year = {1925}, + glottolog_ref = {anla:AL909J1925b}, + key = {Jochelson (1925)}, + lgcode = {Aleut [east2533], Tlingit [tlin1245]} +} +@article{jochelson1933, + author = {Jochelson, W.}, + title = {The Yakut}, + journal = {Anth. Pap. Amer. Mus. Nat. Hist.}, + volume = {33}, + pages = {35-225}, + year = {1933}, + key = {Jochelson (1933)}, + lgcode = {Yakut [yaku1245]} +} +@incollection{joffe1940, + author = {Joffe, N.}, + editor = {R. Linton}, + title = {The Fox of Iowa}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {259-332}, + year = {1940}, + key = {Joffe (1940)}, + lgcode = {Fox [mesk1242]} +} +@book{johnson1922, + author = {Johnson, W. P.}, + title = {Nyasa: The Great Water}, + address = {London}, + year = {1922}, + key = {Johnson (1922)}, + lgcode = {Nyasa [mwer1247]} +} +@book{johnson1930, + author = {Johnson, E.}, + title = {Pioneers of Freedom}, + address = {Boston}, + year = {1930}, + key = {Johnson (1930)}, + lgcode = {Icelanders [icel1247]} +} +@article{johnson1938, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {143}, + pages = {iv, 231-251}, + year = {1938}, + key = {Johnson (1938)}, + lgcode = {Ngäbe [ngab1239]} +} +@article{johnson1943, + author = {Johnson, F.}, + title = {Notes on Micmac Shamanism}, + journal = {Primitive Man}, + volume = {16}, + pages = {53-80}, + year = {1943}, + key = {Johnson (1943)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{johnson1948, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes: The Talamancan Division}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 231-251}, + year = {1948}, + key = {Johnson (1948)}, + lgcode = {Bribri [brib1243]} +} +@article{johnson1950, + author = {Johnson, J. B.}, + title = {The Opata}, + journal = {Univ. New Mex. Publ. Anth.}, + volume = {6}, + pages = {1-50}, + year = {1950}, + key = {Johnson (1950)}, + lgcode = {Opata [opat1246]} +} +@book{johnson1967, + author = {Johnson, H. A.}, + title = {The Fulani Empire of Sokoto}, + address = {London}, + year = {1967}, + key = {Johnson (1967)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{johnson1978, + author = {Johnson, P. J.}, + editor = {Robert F. Heizer}, + title = {Patwin}, + booktitle = {California}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {8}, + pages = {350-360}, + year = {1978}, + glottolog_ref = {hh:e:Johnson:Patwin}, + key = {Johnson (1978)}, + lgcode = {Patwin [patw1250]} +} +@book{johnston19551956, + author = {Johnston, B. J.}, + title = {The Gabrielino Indians of Southern California}, + series = {M 29 and 30}, + year = {1955-1956}, + key = {Johnston (1955-1956)}, + lgcode = {Tongva [tong1329]} +} +@book{johnston1964, + author = {Johnston, Bernice Eastman}, + title = {California's Gabrielino Indians}, + series = {Frederick Webb Hodge Anniversary Publication Fund}, + volume = {8}, + pages = {1-198}, + year = {1964}, + key = {Johnston (1964)}, + lgcode = {Tongva [tong1329]} +} +@article{johnstone1902, + author = {Johnstone, H. B.}, + title = {Notes on the Customs of the Tribes occupying Mombasa Sub-District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {32}, + pages = {263-272}, + year = {1902}, + key = {Johnstone (1902)}, + lgcode = {Giriama [giry1241]} +} +@article{jones1913, + author = {Jones, W.}, + title = {Kickapoo Ethnological Notes}, + journal = {American Anthropologist}, + volume = {15}, + pages = {332-335}, + year = {1913}, + key = {Jones (1913)}, + lgcode = {Kickapoo [kick1244]} +} +@book{jones1914, + author = {Jones, Livingston F.}, + title = {A Study of the Thlingets of Alaska}, + address = {New York}, + year = {1914}, + key = {Jones (1914)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{jones1971, + author = {Jones, R.}, + editor = {D. J. Mulvaney and J. Golson}, + title = {The Demography of Hunters and Farmers in Tasmania}, + booktitle = {Aboriginal Man and Environment in Australia}, + publisher = {Australian National University Press}, + address = {Canberra}, + pages = {271-287}, + year = {1971}, + key = {Jones (1971)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@misc{jones1972, + author = {Jones, R.}, + title = {A Hunting Landscape}, + year = {1972}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Jones (1972)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + note = {Prepared for the Australian Association of Social Anthropologists Annual Conference, Symposium on Space and Territory, Monash University} +} +@incollection{jones1983, + author = {Jones, K. T.}, + editor = {G. M. LeMoine and A. S. MacEachern}, + title = {Forager Archaeology: The Ache of Eastern Paraguay}, + booktitle = {Carnivores, Human Scavengers, and Predators: A Question of Bone Technology}, + publisher = {University of Calgary}, + address = {Calgary}, + pages = {171-191}, + year = {1983}, + key = {Jones (1983)}, + lgcode = {Aché [ache1246]} +} +@phdthesis{jorgensen1964, + author = {Jorgensen, Joseph G.}, + title = {The Ethnohistory and Acculturation of the Northern Ute}, + school = {Indiana University}, + address = {Bloomington}, + year = {1964}, + key = {Jorgensen (1964)}, + lgcode = {Uintah Ute [utee1244], Uncompahgre Ute [utee1244]} +} +@book{josephandmurray1951, + author = {Joseph, A., and V. F. Murray}, + title = {Chamorros and Carolinians of Saipan: personality tests with an analysis of the Bender Gestalt test by Lauretta Bender}, + publisher = {Harvard University Press}, + address = {Cambridge}, + year = {1951}, + key = {Joseph and Murray (1951)}, + lgcode = {Carolinians [caro1242], Chamorro [cham1312]} +} +@book{josephetal1949, + author = {Joseph. A., R. B. Spicer, and J. Chesky.}, + title = {The Desert People}, + address = {Chicago}, + year = {1949}, + key = {Joseph et al. (1949)}, + lgcode = {Tohono O'odham [toho1246]} +} +@book{joset1936, + author = {Joset, P. E.}, + title = {Les Babira de la plaine}, + address = {Anvers}, + year = {1936}, + key = {Joset (1936)}, + lgcode = {Plains Bira [bera1259]} +} +@article{josselindejong1912, + author = {Josselin de Jong, J. P. B. de.}, + title = {Social Organization of the Southern Piegans}, + journal = {Int. Arch. Ethnog.}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {Josselin de Jong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@book{josselindejong1952, + author = {Josselin de Jong, P. E. de}, + title = {Minangkabau and Negri Sembilan}, + address = {The Hague}, + year = {1952}, + key = {Josselin de Jong (1952)}, + lgcode = {Minangkabau [mina1268]} +} +@article{joubert1939, + author = {Joubert}, + title = {Les coutumes et le droit chez les Kel Tadele}, + journal = {Bull Inst. Franc. Afr. Noire}, + volume = {1}, + pages = {245-281}, + year = {1939}, + key = {Joubert (1939)}, + lgcode = {Asben [taya1257]} +} +@book{junod1927, + author = {Junod, Henri A.}, + title = {The Life of a South African Tribe. 2v}, + address = {London}, + year = {1927}, + url = {https://archive.org/details/lifeofsouthafric02junouoft}, + key = {Junod (1927)}, + lgcode = {Tsonga [tson1249]}, + note = {2nd ed.} +} +@incollection{junod1936, + author = {Junod, H. P.}, + editor = {A. M. Duggan-Cronin}, + title = {The Vachopi of Portuguese East Africa}, + booktitle = {The Bantu Tribes of South Africa}, + address = {Cambridge}, + volume = {4}, + number = {ii}, + pages = {39-59}, + year = {1936}, + key = {Junod (1936)}, + lgcode = {Chopi [copi1238]} +} +@book{jurchenkov1995, + author = {Jurchenkov, V.}, + title = {Vzgljad so storony. Mordovskij narod i kraj v sochinenijah zapadnoevropejskih avtorov VI-XVIII stoletij (Look from the Outside: The Mordva People and Land in the Works of West European Authors of the Sixth to Eighteenth Centuries)}, + address = {Saransk}, + year = {1995}, + key = {Jurchenkov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@article{justinard1908, + author = {Justinard.}, + title = {Les Ait Ba Amran}, + journal = {Villes et Tribus du Maroc}, + volume = {8}, + pages = {1-144}, + year = {1908}, + key = {Justinard (1908)}, + lgcode = {Tekna [hass1238]} +} +@article{kaberry1935, + author = {Kaberry, P. M.}, + title = {The Forest River and Lyne River Tribes of NorthWest Australia: A Report on Field Work}, + journal = {Oceania}, + volume = {5}, + pages = {408-435}, + year = {1935}, + key = {Kaberry (1935)}, + lgcode = {Yiiji [wuna1249]} +} +@book{kaberry1939, + author = {Kaberry, P. M.}, + title = {Aboriginal Woman: Sacred and Profane}, + publisher = {George Routledge and Sons}, + address = {London}, + year = {1939}, + key = {Kaberry (1939)}, + lgcode = {Djaru [jaru1254], Kija [kitj1240], Yiiji [wuna1249]} +} +@article{kaberry1941, + author = {Kaberry, P. M.}, + title = {The Abelam Tribe}, + journal = {Oceania}, + volume = {11}, + pages = {233-257}, + year = {1941}, + key = {Kaberry (1941)}, + lgcode = {Abelam [ambu1247]} +} +@book{kaberry1952, + author = {Kaberry, P. M.}, + title = {Women of the Grassfields}, + address = {London}, + year = {1952}, + key = {Kaberry (1952)}, + lgcode = {Bali Nyonga [mung1266], Fungom [mmen1238], Fut [bafu1246], Kom [komc1235], Ndob [band1349], Nsaw [lamn1239], Nsungli [limb1268], Tigon [tigo1236], Widikum [meta1238]} +} +@book{kagwa1934, + author = {Kagwa, A.}, + title = {The Customs of the Baganda}, + publisher = {New York}, + address = {New York}, + series = {Columbia Univ. contributions to anthropology}, + volume = {22}, + year = {1934}, + glottolog_ref = {eballiso2009:5239}, + key = {Kagwa (1934)}, + lgcode = {Ganda [gand1255]} +} +@incollection{kahin1963, + author = {Kahin, G. McT.}, + editor = {G. McT. Kahin}, + title = {Indonesia}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {535-688}, + year = {1963}, + key = {Kahin (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{kaindl1894, + author = {Kaindl, R. F.}, + title = {Die Huzulen}, + address = {Wien}, + year = {1894}, + key = {Kaindl (1894)}, + lgcode = {Hutsuls [sout2604]} +} +@article{kamaraanddrummond1930, + author = {Kamara, K., and D. B. Drummond.}, + title = {Marriage Customs Amongst the Kurankos}, + journal = {Sierra Leone Stud.}, + volume = {16}, + pages = {57-66}, + year = {1930}, + key = {Kamara and Drummond (1930)}, + lgcode = {Koranko [kura1250]} +} +@book{kane1859, + author = {Kane, P.}, + title = {Wanderings of an Artist among the Indians of North America}, + publisher = {Longman, Brown, Green, Longmans and Roberts}, + address = {London}, + year = {1859}, + key = {Kane (1859)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Kwakwaka'wakw [kwak1269], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@article{kane1939, + author = {Kane, A. S.}, + title = {Coutume civile et penale toucouleur}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {55-115}, + year = {1939}, + key = {Kane (1939)}, + lgcode = {Tukulor [pula1263]} +} +@phdthesis{kane1970, + author = {Kane, E.}, + title = {An Analysis of the Cultural Factors Inimical to the Development of the Nationalistic-Revivalistic Industrial Process of Rural Irish Gaeltachts}, + school = {University of Pittsburgh}, + year = {1970}, + key = {Kane (1970)}, + lgcode = {Irish [iris1253]} +} +@misc{kane1972, + author = {Kane, E.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Kane (1972)}, + lgcode = {Irish [iris1253]} +} +@book{kaneandsegawa1956, + author = {Kane, T., and K. Segawa}, + title = {An Illustrated Ethnography of Formosa, V. 1: The Yumi}, + address = {Tokyo}, + year = {1956}, + key = {Kane and Segawa (1956)}, + lgcode = {Tao [yami1254]} +} +@book{kang1931, + author = {Kang, Y.}, + title = {The Grass Roof}, + address = {New York}, + year = {1931}, + key = {Kang (1931)}, + lgcode = {Koreans [kore1280]} +} +@book{kanga1959, + author = {Kanga, V. J-C.}, + title = {Le droit coutumier bamileke au contact des droits europeens}, + address = {Yaounde}, + year = {1959}, + key = {Kanga (1959)} +} +@article{kannenberg1900, + author = {Kannenberg.}, + title = {Reise durch die hamitischen Sprachgebiete um Kondo}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + publisher = {Berlin: Ernst Siegfried Mittler und Sohn}, + address = {Berlin}, + volume = {13}, + pages = {144-172}, + year = {1900}, + glottolog_ref = {hh:hv:Kannenberg:Kondoa}, + key = {Kannenberg (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{kantemir1973, + author = {Kantemir, D. K.}, + title = {Opisanie Moldavii (Description of Moldova)}, + address = {Kishinev}, + year = {1973}, + key = {Kantemir (1973)}, + lgcode = {Moldovans [mold1248]} +} +@article{kapstein1922, + author = {Kapstein, Gregorious}, + title = {Familie leven en seden bij de inboorlingen van den Evenaar}, + journal = {Congo}, + publisher = {Goemaere, Imprimeur du Roi}, + address = {Brussels}, + volume = {3, Part 1}, + pages = {531-549}, + year = {1922}, + key = {Kapstein (1922)}, + lgcode = {Bakongo [sans1272]} +} +@inbook{kardiner1939, + author = {Kardiner, A.}, + title = {The Analysis of Tanala Culture}, + booktitle = {The Individual and His Society}, + address = {New York}, + pages = {291-351}, + year = {1939}, + key = {Kardiner (1939)}, + lgcode = {Tanala [tana1285]} +} +@book{karlov1982, + author = {Karlov, V. V.}, + title = {Evenki v 18-nachale 20 v. (Evenki in the Eighteenth-Beginning of the Twentieth Centuries)}, + address = {Moscow}, + year = {1982}, + key = {Karlov (1982)}, + lgcode = {Evenk [even1259]} +} +@book{karlov1990, + author = {Karlov, V. V.}, + title = {Vvedenie v etnografiju narodov SSSR (Introduction to the Ethnography of the Peoples of the USSR)}, + address = {Moscow}, + volume = {1}, + year = {1990}, + key = {Karlov (1990)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Kazan tatar [midd1325], Latvians [latv1249], Moldovans [mold1248], Udmurt [sout2681]} +} +@article{karst190707, + author = {Karst, J.}, + title = {Grundriss der Geschichite des armenischen Rechtes}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {19; 20}, + pages = {313-422; 14-112}, + year = {1907-07}, + key = {Karst (1907-07)}, + lgcode = {Armenians [nucl1235]} +} +@book{karsten1932, + author = {Karsten, Rafael}, + title = {Indian Tribes of the Argentine and Bolivian Chaco}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {4}, + number = {i}, + pages = {1-236}, + year = {1932}, + key = {Karsten (1932)}, + lgcode = {Choroti [iyow1239], Toba [toba1269], Wichí [wich1264]} +} +@book{karsten1935, + author = {Karsten, Rafael}, + title = {The Headhunters of Western Amazonas. The Life and Culture of the Jibaro Indians of Eastern Ecuador and Peru}, + publisher = {Helsingfors: Societas Scientiarum Fennica}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {7}, + pages = {1-588}, + year = {1935}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1937.39.1.02a00240/pdf}, + glottolog_ref = {fabreall2009ann:Jivaro17}, + key = {Karsten (1935)}, + lgcode = {Shuar [shua1257]} +} +@book{karsten1955, + author = {Karsten, R.}, + title = {The Religion of the Samek}, + address = {Leiden}, + year = {1955}, + key = {Karsten (1955)}, + lgcode = {Sami [nort2671]} +} +@article{karve194243, + author = {Karve, I.}, + title = {Kinship Terminology and Kinship Usages in Gujarat and Kathiawab}, + journal = {Bull. Deccan Coll. Res. Inst.}, + address = {Poona}, + volume = {4}, + pages = {208-226}, + year = {1942-43}, + key = {Karve (1942-43)}, + lgcode = {Gujarati [guja1252]} +} +@book{karve1953, + author = {Karve, I.}, + title = {Kinship Organisation in India}, + address = {Poona}, + series = {Deccan College Monogr. Ser.}, + volume = {11}, + pages = {1-304}, + year = {1953}, + key = {Karve (1953)}, + lgcode = {Bengali [beng1280], Bihari [mait1250], Indo-Iranian [sans1269], Telugu [telu1262]} +} +@phdthesis{kasdan1961, + author = {Kasdan, L.}, + title = {Isfiya: Fission and Faction in a Druze Community}, + school = {University of Chicago}, + year = {1961}, + key = {Kasdan (1961)}, + lgcode = {Druze [sunn1238]} +} +@misc{kasdan1965, + author = {Kasdan, L.}, + year = {1965}, + howpublished = {Personal communication}, + key = {Kasdan (1965)}, + lgcode = {Druze [sunn1238]} +} +@article{kaufmann1910, + author = {Kaufmann, H.}, + title = {The Auen, a Contribution to the Study of the Bushmen}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {23}, + pages = {135-160}, + year = {1910}, + key = {Kaufmann (1910)}, + lgcode = {!Kung [juho1239]} +} +@article{kaut1957, + author = {Kaut, Charles R.}, + title = {The Western Apache Clan System}, + series = {Univ. N. Mex. Publ. Anth.}, + number = {9}, + pages = {99}, + year = {1957}, + key = {Kaut (1957)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{kaut1966, + author = {Kaut, Charles R.}, + title = {Western Apache Clan and Phratry Organization}, + journal = {American Anthropologist}, + volume = {58}, + pages = {140-147}, + year = {1966}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1956.58.1.02a00090/pdf}, + key = {Kaut (1966)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{kawaguchi1909, + author = {Kawaguchi, E.}, + title = {Three Years in Tibet}, + address = {Benares and London}, + year = {1909}, + key = {Kawaguchi (1909)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{kazantsev1866, + author = {Kazantsev, N.}, + title = {Opisanie bashkirtsev (A Description of the Bashkir)}, + address = {St. Petersburg}, + year = {1866}, + key = {Kazantsev (1866)}, + lgcode = {Bashkir [bash1264]} +} +@article{keane1883, + author = {Keane, A. H.}, + title = {On the Botocudos}, + journal = {Journal of the (Royal) Anthropological Institute}, + volume = {13}, + pages = {199-213}, + year = {1883}, + key = {Keane (1883)}, + lgcode = {Aimoré [kren1239]} +} +@book{keane1900, + author = {Keane, A. H.}, + title = {The Boer States, Land and People}, + publisher = {London: Methuen and Co}, + address = {London}, + year = {1900}, + glottolog_ref = {guldemann:2421}, + key = {Keane (1900)}, + lgcode = {Boers [afri1274]} +} +@book{keate1788, + author = {Keate, G.}, + title = {An Account of the Pelew Islands}, + address = {London}, + year = {1788}, + key = {Keate (1788)}, + lgcode = {Palauans [pala1344]} +} +@article{kedit1982, + author = {Kedit, P.M.}, + title = {An Ecological Survey of the Penan}, + journal = {Sarawak Museum Journal}, + volume = {30}, + number = {51}, + pages = {226-279}, + year = {1982}, + key = {Kedit (1982)}, + lgcode = {Punan [west2563]} +} +@book{kees1923, + author = {Kees, H.}, + title = {Aegypten}, + address = {Munchen}, + year = {1923}, + key = {Kees (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{keesing1934, + author = {Keesing, F. M.}, + title = {Modern Samoa:Its Government and Changing Life}, + address = {London}, + year = {1934}, + key = {Keesing (1934)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{keesing1939, + author = {Keesing, F. M.}, + title = {The Menomini Indians of Wisconsin}, + journal = {Mem. Amer. Phil Soc.}, + volume = {10}, + pages = {1-261}, + year = {1939}, + key = {Keesing (1939)}, + lgcode = {Menominee [meno1252]} +} +@article{keesing1949, + author = {Keesing, F. M.}, + title = {Some Notes on Bontok Social Organization}, + journal = {American Anthropologist}, + volume = {51}, + pages = {578-601}, + year = {1949}, + key = {Keesing (1949)}, + lgcode = {Bontok [cent2292]} +} +@article{keesing1966, + author = {Keesing, R. M.}, + title = {Kwaio Kindreds}, + journal = {Southw. Journ. Anth.}, + volume = {22}, + pages = {346-359}, + year = {1966}, + key = {Keesing (1966)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1967, + author = {Keesing, R. M.}, + title = {Statistical Models and Decision Models of Social Structure: A Kwaio Case}, + journal = {Ethnology}, + volume = {6}, + pages = {1-16}, + year = {1967}, + key = {Keesing (1967)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1968, + author = {Keesing, R. M.}, + title = {Step Kin, In-laws, and Ethnoscience}, + journal = {Ethnology}, + volume = {7}, + pages = {59-70}, + year = {1968}, + key = {Keesing (1968)}, + lgcode = {Kwaio [kwai1243]} +} +@book{kefeli1992, + author = {Kefeli, V. I.}, + title = {Karaimy (The Karaim)}, + address = {Pushchino}, + year = {1992}, + key = {Kefeli (1992)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{kehoe1993, + author = {Kehoe, A. B.}, + title = {How the Ancient Peians Lived}, + journal = {Research in Economic Anthropology}, + volume = {14}, + pages = {87-105}, + year = {1993}, + key = {Kehoe (1993)}, + lgcode = {Piegan [pieg1239]} +} +@incollection{keith1960, + author = {Keith, G.}, + editor = {L. R. Mashn}, + title = {Letters to Mr. Roderic McKenzie, 1807-1817}, + booktitle = {Les Bourgeois de la Compagnie du Nord Ouest}, + publisher = {Antiquarian Press}, + address = {New York}, + volume = {2}, + pages = {65-132}, + year = {1960}, + key = {Keith (1960)}, + lgcode = {Beaver [beav1236], Tlicho [dogr1252]} +} +@article{kelly1932, + author = {Kelly, I.T.}, + title = {Ethnography of the Surprise Valley Paiute}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {3}, + pages = {67-210}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-004.pdf}, + key = {Kelly (1932)}, + lgcode = {Kidutokado [nort1551]} +} +@article{kelly1934, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Bands}, + journal = {American Anthropologist}, + volume = {36}, + pages = {548-560}, + year = {1934}, + key = {Kelly (1934)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1938, + author = {Kelly, I. T.}, + title = {Band Organization of the Southern Paiute}, + journal = {American Anthropologist}, + volume = {40}, + pages = {633-634}, + year = {1938}, + key = {Kelly (1938)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@article{kelly1939, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Shamanism}, + journal = {Anthropological Records}, + volume = {2}, + pages = {151-167}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar002-005.pdf}, + key = {Kelly (1939)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1942, + author = {Kelly, W.H.}, + title = {Cocopa Gentes}, + journal = {American Anthropologist}, + volume = {44}, + pages = {675-691}, + year = {1942}, + key = {Kelly (1942)}, + lgcode = {Cocopa [coco1261]} +} +@book{kelly1964, + author = {Kelly, I. T.}, + title = {Southern Paiute Ethnography}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 21. University of Utah Anthropological Papers}, + number = {69}, + year = {1964}, + key = {Kelly (1964)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Panguitch [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@book{kelly1995, + author = {Kelly, R.L.}, + title = {The Foraging Spectrum: Diversity in Hunter-Gatherer Lifeways}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + year = {1995}, + key = {Kelly (1995)}, + lgcode = {Crow [crow1244], Sanpoil [sanp1257], Squamish [squa1248], Twana [twan1247]} +} +@incollection{kellyandfowler1986, + author = {Kelly, I.T., and C. S. Fowler}, + editor = {W. L. d'Azevedo}, + title = {Southern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {368-397}, + year = {1986}, + key = {Kelly and Fowler (1986)}, + lgcode = {Antarianunts [utee1244], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kellyandpalerm1952, + author = {Kelly, I., and A. Palerm.}, + title = {The Tajin Totonac}, + journal = {Publ. Inst. Soc. Anth., Smiths, Inst.}, + volume = {13}, + pages = {1-369}, + year = {1952}, + key = {Kelly and Palerm (1952)}, + lgcode = {Totonac [papa1238]} +} +@misc{kellyandpoyer1993, + author = {Kelly, R.L., and L. A. Poyer}, + title = {Ethnoarchaeology among the Mikea of Southwestern Madagascar: Report of Activities, July-August, 1993}, + year = {1993}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Kelly and Poyer (1993)}, + lgcode = {Mikea [masi1268]} +} +@book{kennedy1931, + author = {Kennedy, D. G.}, + title = {Field Notes on the Culture of Vaitupu}, + series = {Mem. Polyn. Soc.}, + volume = {9}, + pages = {1-326}, + year = {1931}, + key = {Kennedy (1931)}, + lgcode = {Ellice [tuva1244]}, + note = {Ellice Islanders. Addenda to Table 2} +} +@incollection{kennedy1957, + author = {Kennedy, M. J.}, + editor = {S. Maron}, + title = {Panjabi Urban Society}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {81-103}, + year = {1957}, + key = {Kennedy (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{kennedy1977, + author = {Kennedy, J. G.}, + title = {Struggle for Change in a Nubain Community}, + address = {Palo Alto}, + year = {1977}, + key = {Kennedy (1977)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{kennedyandbouchard1990, + author = {Kennedy, D. I. D., and R. T. Bouchard}, + editor = {W. Suttles}, + title = {Northcoast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {441-452}, + year = {1990}, + key = {Kennedy and Bouchard (1990)}, + lgcode = {Comox [isla1276]} +} +@book{kennett1925, + author = {Kennett, A.}, + title = {Bedouin Justice}, + address = {Cambridge}, + year = {1925}, + key = {Kennett (1925)}, + lgcode = {Saadi [said1239]} +} +@book{kentandvierich1989, + editor = {Kent, S.}, + title = {Farmers as Hunters: The Implications of Sedentism}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1989}, + key = {Kent and Vierich (1989)}, + lgcode = {Kua [kuaa1238]} +} +@book{kenyatta1939, + author = {Kenyatta, J.}, + title = {Facing Mount Kenya. The traditional life of the Gikuyu}, + address = {London}, + year = {1939}, + key = {Kenyatta (1939)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{keonigswald1908, + author = {Keonigswald, G. von.}, + title = {Die Cayuas}, + journal = {Globus}, + volume = {93}, + pages = {376-381}, + year = {1908}, + key = {Keonigswald (1908)}, + lgcode = {Cayua [mbya1239]} +} +@article{keppen1851, + author = {Keppen, P.}, + title = {Vod' i votskaja pjatina (The Votes and Votes' Region)}, + journal = {Zhural ministerstva narodnogo prosveshchenija}, + volume = {70}, + pages = {41-67, 100-46}, + year = {1851}, + key = {Keppen (1851)}, + lgcode = {Votes [voti1245]} +} +@article{keppen1853, + author = {Keppen, P.}, + title = {Selenija, obitaemye izhorami, v Sankt Peterburgskoj Gubemii (Settlements Inhabited by the Ingrians in the St. Petersburg Gubemia)}, + journal = {Uchjonye zapiski imperatorskoj Akademii nauk po I i III otdelenijam}, + volume = {2}, + number = {3}, + pages = {412-422}, + year = {1853}, + key = {Keppen (1853)}, + lgcode = {Ingrians [ingr1248]} +} +@article{keurandkeur1955, + author = {Keur, J. Y. and D. L. Keur}, + title = {The Deeply Rooted}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {25}, + pages = {1-208}, + year = {1955}, + key = {Keur and Keur (1955)}, + lgcode = {Dutch [dutc1256]} +} +@article{kimmenade1936, + author = {Kimmenade, M. van de.}, + title = {Les Sandawe}, + journal = {Anthropos}, + volume = {31}, + pages = {395-416}, + year = {1936}, + key = {Kimmenade (1936)}, + lgcode = {Sandawe [sand1273]} +} +@article{kinietz1940a, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes, 1615-1760}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {1-427}, + year = {1940}, + key = {Kinietz (1940a)}, + lgcode = {Huron [wyan1247]} +} +@article{kinietz1940b, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {161-225}, + year = {1940}, + key = {Kinietz (1940b)}, + lgcode = {Myaamia [miam1252]} +} +@article{kinietz1940c, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {226-307}, + year = {1940}, + key = {Kinietz (1940c)}, + lgcode = {Ottawa [otta1242]} +} +@article{kinietz1940d, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {308-316}, + year = {1940}, + key = {Kinietz (1940d)}, + lgcode = {Potawatomi [pota1247]} +} +@book{kinietz1947, + author = {Kinietz, W. V.}, + title = {Chippewa Village: The Story of Kitikitegon}, + publisher = {Cranbrook Institute of Science}, + address = {Bloomfield Hills, Mich.}, + series = {Cranbrook Institute of Science Bulletin}, + number = {25}, + year = {1947}, + key = {Kinietz (1947)}, + lgcode = {Katikitegon [uppe1274], Minnesota Ojibwa [redl1238]} +} +@article{kinkov1927, + author = {Kinkov, A.}, + title = {K istorii sem'i i braka u bashkir, tatar, mordvy, chuvash (History of Family and Marriage among the Bashkir, Tatar, Mordva, Chuvash)}, + journal = {Bashkirskij kraevedcheskij sborik}, + volume = {2}, + pages = {54-61}, + year = {1927}, + key = {Kinkov (1927)}, + lgcode = {Bashkir [bash1264]} +} +@article{kirchhoff1931, + author = {Kirchhoff, Paul.}, + title = {Die VerwandtschAftsorganisation der Urwaldstamme Sudamerikas}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {101-117}, + year = {1931}, + glottolog_ref = {fabreall2009ann:5236}, + key = {Kirchhoff (1931)}, + lgcode = {Lokono [araw1276], Macushi [macu1259]} +} +@incollection{kirchhoff1945, + author = {Kirchhoff, P.}, + editor = {J. H. Steward}, + title = {Food Gathering Tribes of the Vectezuelan Llanos}, + booktitle = {The Circum-Caribbean Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians, Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {445-468}, + year = {1945}, + key = {Kirchhoff (1945)}, + lgcode = {Guahibo [guah1255]} +} +@article{kirchhoff1948a, + author = {Kirchhoff, Paul.}, + title = {The Caribbean lowland tribes: The Mosquito, Sumo, Paya, and Jicaque}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {219-229}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Misumalpa43}, + key = {Kirchhoff (1948a)}, + lgcode = {Miskito [misk1235], Tolupan [toll1241]} +} +@article{kirchhoff1948b, + author = {Kirchhoff, Paul.}, + title = {The Warrau}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iii, 869-881}, + year = {1948}, + key = {Kirchhoff (1948b)}, + lgcode = {Warao [wara1303]} +} +@article{kissenberth1912, + author = {Kissenberth, W.}, + title = {Bei den Canella-Indianern in Zentral Maranhas}, + journal = {Baessler-Archiv}, + volume = {2}, + pages = {45-54}, + year = {1912}, + key = {Kissenberth (1912)}, + lgcode = {Canela [cane1242]} +} +@book{kisteandrynkiewich1976, + author = {Kiste, R.C. and Rynkiewich, M.A.}, + title = {Incest and Exogamy: A comparative study of two Marshall Island populations}, + year = {1976}, + key = {Kiste and Rynkiewich (1976)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241]} +} +@incollection{kiuru1993, + author = {Kiuru, E. S.}, + editor = {E. S. Kiuru and N. A. Krinichnaja}, + title = {Motivy svatovstva i dobyvanija zheny v svadebnoj poezii i epicheskih runah izhorov (Motifs of Match-Making and Wife-Getting in Wedding Poetry and Epic Runas of the Ingrians)}, + booktitle = {Fol'kloristika Karelii (Folklore Studies of Karelia)}, + address = {Petrozavodsk}, + pages = {22-38}, + year = {1993}, + key = {Kiuru (1993)}, + lgcode = {Ingrians [ingr1248]} +} +@book{kiuru1993b, + author = {Kiuru, E. S.}, + title = {Tema dobyvanija zheny v epicheskih runah. K semantike poeticheskih obrazov (Wife-Getting Motif in the Epic Runas: Towards the Semantics of Poetic Images)}, + address = {Petrozavodsk}, + year = {1993}, + key = {Kiuru (1993b)}, + lgcode = {Karelians [livv1243]} +} +@book{klementev1983, + author = {Klement'ev, V. I.}, + title = {Karely. Etnograficheskij ocherk (The Karelians: Ethnographic Essay)}, + address = {Petrozavodsk}, + year = {1983}, + key = {Klement'ev (1983)}, + lgcode = {Karelians [livv1243]} +} +@incollection{klementev1998, + author = {Klement'ev, V. I.}, + editor = {V. A. Tishkov}, + title = {Karely}, + booktitle = {Narody i religii mira. E ntsiklopedija (Peoples and Religions ofthe World. Encyclopedia. )}, + address = {Moscow}, + pages = {225-7}, + year = {1998}, + key = {Klement'ev (1998)}, + lgcode = {Karelians [livv1243]} +} +@article{klidschian1911, + author = {Klidschian, A.}, + title = {Das armenische Eherecht und die Grundzuge der armenische Familienorganisation}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {25}, + pages = {252-377}, + year = {1911}, + key = {Klidschian (1911)}, + lgcode = {Armenians [nucl1235]} +} +@article{klima1964, + author = {Klima, G.}, + title = {Jural Relations Between the Sexes Among the Barabaig}, + journal = {Africa}, + volume = {34}, + pages = {9-20}, + year = {1964}, + key = {Klima (1964)}, + lgcode = {Tatoga [dato1239]} +} +@article{klineberg1934, + author = {Klineberg, O.}, + title = {Notes on the Huichol}, + journal = {American Anthropologist}, + volume = {36}, + pages = {446-460}, + year = {1934}, + key = {Klineberg (1934)}, + lgcode = {Huichol [huic1243]} +} +@incollection{kloos1977, + author = {Kloos, P.}, + editor = {E. Basso}, + title = {The Akuriyo way of death}, + booktitle = {Carib-Speaking Indians: Culture, Society, and Language}, + publisher = {University of Arizona Press}, + address = {Tucson}, + pages = {114-122}, + year = {1977}, + glottolog_ref = {fabreall2009ann:Caribe_akuriyo20}, + key = {Kloos (1977)}, + lgcode = {Akurio [akur1238]} +} +@misc{kloos1982, + author = {Kloos, P.}, + year = {1982}, + howpublished = {pers. comm.}, + key = {Kloos (1982)}, + lgcode = {Akurio [akur1238]} +} +@book{klose1899, + author = {Klose, H.}, + title = {Togo unter deutscher Flagge}, + address = {Berlin}, + year = {1899}, + key = {Klose (1899)}, + lgcode = {Basari [ntch1242], Ewe [aguu1242]} +} +@article{klose1903, + author = {Klose, H.}, + title = {Das Bassarivolk}, + journal = {Globus}, + volume = {83}, + pages = {309-314, 341-345}, + year = {1903}, + glottolog_ref = {hh:e:Klose:Bassarivolk}, + key = {Klose (1903)}, + lgcode = {Basari [ntch1242]} +} +@book{kluckhohn1946, + author = {Kluckhohn, Clyde, and Dorothea Vighton}, + title = {The Navajo}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1946}, + key = {Kluckhohn (1946)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{kluckhohn1947, + author = {Kluckhohn, Clyde}, + title = {Some aspects of Navaho infancy and early childhood}, + journal = {Psychoanalysis and the Social Sciences}, + publisher = {International Universities Press}, + address = {New York}, + volume = {1}, + pages = {37-86}, + year = {1947}, + key = {Kluckhohn (1947)}, + lgcode = {Navajo [nava1243]} +} +@incollection{kluckhohn1962, + author = {Kluckhohn, R.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Konso Economy}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {409-428}, + year = {1962}, + key = {Kluckhohn (1962)}, + lgcode = {Konso [kons1243]} +} +@book{kluckhohnandleighton1946, + author = {Kluckhohn, C., and D. C. Leighton.}, + title = {The Navaho}, + address = {Cambridge}, + year = {1946}, + key = {Kluckhohn and Leighton (1946)}, + lgcode = {Navajo [nava1243]} +} +@book{klunzinger1876, + author = {Klunzinger, C. B.}, + title = {Upper Egypt}, + address = {New York}, + year = {1876}, + key = {Klunzinger (1876)}, + lgcode = {Ababda [abab1239]} +} +@phdthesis{knack1975, + author = {Knack, M. C.}, + title = {Contemporary Southern Paiute Household Structure and Bilateral Kinship Clusters}, + school = {Department of Anthropology, University of Michigan, Ann Arbor}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor}, + key = {Knack (1975)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{knechtandjordan1985, + author = {Knecht, R. A., and R. H. Jordan}, + title = {Nunakakhnak, an Historic Period Koniag Village in Karluk, Kodiak Island, Alaska}, + journal = {Arctic Anthropology}, + volume = {22}, + pages = {17-35}, + year = {1985}, + key = {Knecht and Jordan (1985)}, + lgcode = {Koniag [koni1262]} +} +@article{kniffen1926, + author = {Kniffen, Fred B.}, + title = {Achomawi Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {23}, + number = {5}, + pages = {297-332}, + year = {1926}, + key = {Kniffen (1926)}, + lgcode = {Achumawi [achu1247], Achumawi (East) [achu1247], Achumawi (West) [achu1247]} +} +@incollection{kniffen1935, + author = {Kniffen, Fred B.}, + editor = {A. L. Kroeber}, + title = {Geography}, + booktitle = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {27-47}, + year = {1935}, + key = {Kniffen (1935)}, + lgcode = {Hualapai [wala1270]} +} +@article{kniffen1939, + author = {Kniffen, Fred B.}, + title = {Pomo Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + volume = {36}, + pages = {353-400}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-007.pdf}, + key = {Kniffen (1939)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@misc{kniffenetal1935, + author = {Kniffen, F. and G. MacGregor and R. McKennan and S. Mekeel and M. Mook}, + editor = {A. L. Kroeber}, + title = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {1-295}, + year = {1935}, + key = {Kniffen et al. (1935)}, + lgcode = {Hualapai [wala1270]} +} +@book{knudson1965, + author = {Knudson, K. E.}, + title = {Titiana: A Gilbertese Community in the Solomon Islands}, + address = {Eugene}, + year = {1965}, + key = {Knudson (1965)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{knutsson1963, + author = {Knutsson, K. E.}, + title = {Social Structure of the Mecca Galla}, + journal = {Ethnology}, + volume = {2}, + pages = {506-511}, + year = {1963}, + key = {Knutsson (1963)}, + lgcode = {Macha [west2721]} +} +@book{knutsson1967, + author = {Knutsson, K. E.}, + title = {Authority and change: a study of the kallu institution among the Macha Galla of Ethiopia}, + publisher = {Etnografiska muséet}, + address = {Göteborg}, + pages = {1-239}, + year = {1967}, + glottolog_ref = {eballiso2009:35639}, + key = {Knutsson (1967)}, + lgcode = {Macha [west2721]} +} +@article{kobben1956, + author = {Kobben, A. J.}, + title = {Le planteur noir}, + journal = {Et. Eburneennes}, + volume = {5}, + pages = {7-190}, + year = {1956}, + key = {Kobben (1956)}, + lgcode = {Anyi [anyi1245], Bete [dalo1238]} +} +@misc{kobben1967a, + author = {Kobben, A. J. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Kobben (1967a)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{kobben1967b, + author = {Kobben, A. J. G.}, + title = {Unity and Disunity: Cottica Djuka Society as a Kinship System}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {123}, + pages = {10-52}, + year = {1967}, + key = {Kobben (1967b)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{koch1913, + author = {Koch, C. W. H.}, + title = {Die Stamme des Bezirks Molundu}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {257-312}, + year = {1913}, + key = {Koch (1913)}, + lgcode = {Dzem [njye1238], Sanga [bomw1238]} +} +@book{kochar1970, + author = {Kochar, Vijay}, + title = {Social Organization among the Santal}, + publisher = {Editions Indiane same i}, + address = {Calcutta}, + year = {1970}, + key = {Kochar (1970)}, + lgcode = {Santal [sant1410]} +} +@book{kochgrunberg1923a, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco 3}, + address = {Stuttgart}, + year = {1923}, + key = {Koch-Grunberg (1923a)}, + lgcode = {Taulípang [taul1252]} +} +@book{kochgrunberg1923b, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco}, + address = {Stuttgart}, + volume = {3}, + pages = {250-355}, + year = {1923}, + key = {Koch-Grunberg (1923b)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{kochkurkina1986, + author = {Kochkurkina, S. I.}, + title = {Korela i Rus' (Karelia and Russia)}, + address = {Leningrad}, + year = {1986}, + key = {Kochkurkina (1986)}, + lgcode = {Karelians [livv1243]} +} +@phdthesis{koenig1935, + author = {Koenig, S.}, + title = {The Ukrainians of Eastern Galicia}, + school = {Yale University}, + year = {1935}, + howpublished = {Unpublished}, + key = {Koenig (1935)}, + lgcode = {Hutsuls [sout2604]} +} +@incollection{koentjaraningrat1960, + author = {Koentjaraningrat, R. M.}, + editor = {G. P. Murdock}, + title = {The Javanese of South Central Java}, + booktitle = {Social Structure in Southeast Asia}, + address = {Chicago}, + pages = {88-115}, + year = {1960}, + key = {Koentjaraningrat (1960)}, + lgcode = {Javanese [java1254]} +} +@book{koentjaraningrat1961, + author = {Koentjaraningrat, R. M.}, + title = {Some Social Anthropological Observations on Gotong Rojong Practices in Two Villages of Central Java}, + address = {Ithaca}, + year = {1961}, + key = {Koentjaraningrat (1961)}, + lgcode = {Javanese [java1254]} +} +@article{koentjaraningrat1966, + author = {Koentjaraningrat.}, + title = {Bride-Price and Adoption in the Kinship Relations of the Bgu}, + journal = {Ethnology}, + volume = {5}, + pages = {233-243}, + year = {1966}, + key = {Koentjaraningrat (1966)}, + lgcode = {Bgu [bong1287]} +} +@incollection{koentjaraningrat1967, + author = {Koentjaraningrat, R. M.}, + editor = {Koentjaraningrat}, + title = {Tjelapar: A Village in South Central Java}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {244-280}, + year = {1967}, + key = {Koentjaraningrat (1967)}, + lgcode = {Javanese [java1254]} +} +@article{kohler1906, + author = {Kohler, J.}, + title = {Das Recht der Armenier}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {7; 19}, + pages = {385-436; 103-130}, + year = {1906}, + key = {Kohler (1906)}, + lgcode = {Armenians [nucl1235]} +} +@article{kohler1970, + author = {Kohler, C.}, + title = {A new contribution to Nama Studies}, + journal = {African Studies}, + volume = {29}, + pages = {279-285}, + year = {1970}, + key = {Kohler (1970)}, + lgcode = {Nama [nama1265]} +} +@book{kohllarsen1958, + author = {Kohl-Larsen, L.}, + title = {Wildbeuter in OstAfrika}, + address = {Berlin}, + year = {1958}, + key = {Kohl-Larsen (1958)}, + lgcode = {Hadza [hadz1240]} +} +@book{komissarov1911, + author = {Komissarov, G. I.}, + title = {Chuvashi Kazanskogo Zavolzh'ja (The Chuvash of the Kazan' Trans-Volga Region)}, + address = {Kazan'}, + year = {1911}, + key = {Komissarov (1911)}, + lgcode = {Chuvash [chuv1255]} +} +@article{konkova1995, + author = {Kon'kova, O.}, + title = {Izhora}, + journal = {Zametki o narode, kotoryj zhil rjadom s nami, no ostalsja nam neznakom (The Izhora: Notes on an Ethnic Group Which Lived Near Us but Remained Unknown to Us). Rossijskaja provintsija}, + volume = {6}, + pages = {152-7}, + year = {1995}, + key = {Kon'kova (1995)}, + lgcode = {Ingrians [ingr1248]} +} +@article{konkova1996, + author = {Kon'kova, 0.}, + title = {Vod': <