diff --git a/CHANGELOG.md b/CHANGELOG.md index 19261c8..cf55d07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,13 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --> ------ +## [0.1.0](https://github.com/asfadmin/Discovery-SearchAPI-v3/compare/v0.0.0...v0.0.1) + +### Added +- Legacy API V2 Pytest suite Added, all tests passing + +------ + ## [0.0.1](https://github.com/asfadmin/Discovery-SearchAPI-v3/compare/v0.0.0...v0.0.1) ### Added diff --git a/Dockerfile b/Dockerfile index 9bf8100..f754a6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,23 @@ -FROM public.ecr.aws/lambda/python:3.10 +FROM public.ecr.aws/docker/library/python:3.12 +COPY --from=public.ecr.aws/awsguru/aws-lambda-adapter:0.8.3 /lambda-adapter /opt/extensions/lambda-adapter +COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv -# Add function code -ADD src/SearchAPI ${LAMBDA_TASK_ROOT} +ARG HOST=0.0.0.0 +ENV HOST=${HOST} +ARG PORT=8080 +ENV PORT=${PORT} + +RUN apt update +RUN apt clean +RUN rm -rf /var/lib/apt/lists/* # Install the function's dependencies using file requirements.txt -# from your project folder. COPY requirements.txt . -RUN pip3 install -r requirements.txt --target "${LAMBDA_TASK_ROOT}" -U --no-cache-dir +RUN uv pip install --system --no-cache-dir --upgrade -r ./requirements.txt + +COPY ./src/SearchAPI ./SearchAPI + +LABEL maintainer="Alaska Satellite Facility Discovery Team " # Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) -CMD [ "main.handler" ] +CMD ["uvicorn", "--host=$HOST", "--port=$PORT", "SearchAPI.application:app"] diff --git a/README.md b/README.md index 5a55105..c308a28 100644 --- a/README.md +++ b/README.md @@ -1,122 +1,9 @@ # SearchAPI-v3 -This project contains source code and supporting files for a serverless application that you can deploy with the SAM CLI. It includes the following files and folders. - -- SearchAPI - Code for the application's Lambda function. -- events - Invocation events that you can use to invoke the function. -- tests - Unit tests for the application code. -- template.yaml - A template that defines the application's AWS resources. - -The application uses several AWS resources, including Lambda functions and an API Gateway API. These resources are defined in the `template.yaml` file in this project. You can update the template to add AWS resources through the same deployment process that updates your application code. - -## Default Parameters - -I added the parameters for deploying to `samconfig.toml` to have sensible default params specific to this project. Thus SAM may not behave the same as on other projects! - -## Quick start: Develop the app locally - -To develop against anything inside the container itself (FastAPI), run these commands to build/start the server: - -```bash -sam build --template-file template-docker.yaml -sam local start-api --env-vars local-env-vars.conf -``` - -If you haven't done so, you'll have to pull the `asf_search` repo to the root of this project (and switch to the `cs.searchapi-v3-edits` branch if it's not merged yet). - -Once that branch is merged, we can remove the local install from the dockerfile and delete the local repo. This helps with developing against asf_search until then. - -## Deploy the sample application - -To use the SAM CLI, you need the following tools. - -- SAM CLI - [Install the SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install.html) -- [Python 3 installed](https://www.python.org/downloads/) -- Docker - [Install Docker community edition](https://hub.docker.com/search/?type=edition&offering=community) - -To build and deploy your application for the first time, run the following in your shell: - -### For Python-based Lambda - -```bash -export AWS_PROFILE= -sam validate --template-file template-python.yaml -sam build --template-file template-python.yaml -sam package -sam deploy / - --stack-name SearchAPI-v3-SAM-python -``` - -### For Docker-based Lambda - -```bash -export AWS_PROFILE= -sam validate --template-file template-docker.yaml -sam build --template-file template-docker.yaml -sam package --image-repository "$(aws sts get-caller-identity --query Account --output text).dkr.ecr.us-east-1.amazonaws.com/searchapi-v3" -sam deploy \ - --stack-name SearchAPI-v3-SAM-docker \ - --image-repository "$(aws sts get-caller-identity --query Account --output text).dkr.ecr.us-east-1.amazonaws.com/searchapi-v3" -``` - -## Use the SAM CLI to build and test locally - -Build your application with the `sam build ...` command above. - -The SAM CLI installs dependencies defined in `SearchAPI/requirements.txt`, creates a deployment package, and saves it in the `.aws-sam/build` folder. - -Test a single function by invoking it directly with a test event. An event is a JSON document that represents the input that the function receives from the event source. Test events are included in the `events` folder in this project. - -Run functions locally and invoke them with the `sam local invoke` command. - -```bash -# THIS WON'T WORK until we add API Gateway events to events/* -# for now, use `sam local start-api` in the next part instead. -sam local invoke SearchApiFunction --event events/event.json -``` - -The SAM CLI can also emulate your application's API. Use the `sam local start-api` to run the API locally on port 3000. - -```bash -sam local start-api --env-vars local-env-vars.conf -curl http://localhost:3000/ -``` - -## Fetch, tail, and filter Lambda function logs - -To simplify troubleshooting, SAM CLI has a command called `sam logs`. `sam logs` lets you fetch logs generated by your deployed Lambda function from the command line. In addition to printing the logs on the terminal, this command has several nifty features to help you quickly find the bug. - -`NOTE`: This command works for all AWS Lambda functions; not just the ones you deploy using SAM. - -```bash -sam logs -n SearchApiFunction --stack-name SearchAPI-v3-SAM --tail -``` - -You can find more information and examples about filtering Lambda function logs in the [SAM CLI Documentation](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-logging.html). - -## Tests - -Tests are defined in the `tests` folder in this project. Use PIP to install the test dependencies and run tests. - -```bash -pip install -r tests/requirements.txt --user -# unit test -python -m pytest tests/unit -v -# integration test, requiring deploying the stack first. -# Create the env variable AWS_SAM_STACK_NAME with the name of the stack we are testing -AWS_SAM_STACK_NAME= python -m pytest tests/integration -v -``` - -## Cleanup - -To delete the sample application that you created, use the AWS CLI. Assuming you used your project name for the stack name, you can run the following: - -```bash -sam delete --stack-name SearchAPI-v3-SAM -``` - -## Resources - -See the [AWS SAM developer guide](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html) for an introduction to SAM specification, the SAM CLI, and serverless application concepts. - -Next, you can use AWS Serverless Application Repository to deploy ready to use Apps that go beyond hello world samples and learn how authors developed their applications: [AWS Serverless Application Repository main page](https://aws.amazon.com/serverless/serverlessrepo/) +- Login to aws console using Kion +- Find the region that has the VPC and note account number, vpc_id, subnet_ids and security_group. Subnet_ids should be a comma separated list +- Get temp cli credentials from Kion and add them to your shell +- Run CDK bootstrap in region with the VPC using cdk-bootstrap-example.sh and filling in the account number, vpc_id, subnet_ids and security_group +- If not already created, make an GitHubActionsOidcProvider using the cdk/oidc/oidc-provider.yml template +- Create OIDC role using cloudformation template cdk/oidc/github-actions-oidc.yml. For 'ActionsRoleName' parameter put 'SearchAPIActionsOIDCRole' +- Create a github environment with params using the same values from the CDK bootstrap. AWS_ACCOUNT_ID, SECURITY_GROUP, SUBNET_IDS, VPC_ID diff --git a/cdk/cdk/cdk_stack.py b/cdk/cdk/cdk_stack.py index d8b50e4..86e5c0a 100644 --- a/cdk/cdk/cdk_stack.py +++ b/cdk/cdk/cdk_stack.py @@ -1,5 +1,6 @@ from aws_cdk import ( Stack, + Duration, aws_lambda as lambda_, aws_apigateway as apigateway, aws_ec2 as ec2 @@ -33,6 +34,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None: search_api_lambda = lambda_.DockerImageFunction( self, "SearchAPIFunction", + timeout=Duration.seconds(30), code=lambda_.DockerImageCode.from_image_asset( directory='..' ), @@ -43,7 +45,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None: ) api = apigateway.LambdaRestApi( - self, + self, "search-api-gateway", handler=search_api_lambda, endpoint_configuration=apigateway.EndpointConfiguration( diff --git a/cdk/oidc/oidc-provider.yml b/cdk/oidc/oidc-provider.yml new file mode 100644 index 0000000..8811b63 --- /dev/null +++ b/cdk/oidc/oidc-provider.yml @@ -0,0 +1,12 @@ +AWSTemplateFormatVersion: 2010-09-09 +Description: Create GitHub OIDC provider + +Resources: + GitHubActionsOidcProvider: + Type: AWS::IAM::OIDCProvider + Properties: + ClientIdList: + - sts.amazonaws.com + ThumbprintList: + - 6938fd4d98bab03faadb97b34396831e3780aea1 + Url: https://token.actions.githubusercontent.com diff --git a/cdk/tests/unit/test_cdk_stack.py b/cdk/tests/unit/test_cdk_stack.py index b266920..3cc0f91 100644 --- a/cdk/tests/unit/test_cdk_stack.py +++ b/cdk/tests/unit/test_cdk_stack.py @@ -1,13 +1,13 @@ import aws_cdk as core import aws_cdk.assertions as assertions -from cdk.cdk_stack import CdkStack +from cdk.cdk_stack import SearchAPIStack # example tests. To run these tests, uncomment this file along with the example # resource in cdk/cdk_stack.py def test_sqs_queue_created(): app = core.App() - stack = CdkStack(app, "cdk") + stack = SearchAPIStack(app, "cdk") template = assertions.Template.from_stack(stack) # template.has_resource_properties("AWS::SQS::Queue", { diff --git a/conftest.py b/conftest.py new file mode 100644 index 0000000..6a93b1f --- /dev/null +++ b/conftest.py @@ -0,0 +1,68 @@ +import argparse +import requests +import warnings +import datetime +import time + +from SearchAPI.application.asf_env import load_config_file + +def api_type(user_input: str) -> str: + # If it's a url with a trailing '/', remove it: + if user_input.endswith('/'): + user_input = user_input[:-1] + # Grab list of maturities, for available API's: + maturities = load_config_file() + api_info = None # Will be: ("api url: str", "is_flex_maturity: bool") + assert user_input.lower() != "default", "This is used when the URL isn't on this list. Don't call directly! Just make `url ` to use." + for nickname, info in maturities.items(): + if nickname.lower() == "default": + continue + # If the url in maturities ends with '/', remove it. (Lets it match user input always): + if info["this_api"].endswith('/'): + info["this_api"] = info["this_api"][:-1] + # If you gave it the nickname, or the url of a known api: + if user_input.lower() in [ nickname.lower(), info["this_api"].lower(), ]: + api_info = { + "this_api": info["this_api"], + "flexible_maturity": info["flexible_maturity"], + } + break + # If you don't hit an option in maturities.yml, assume what was passed IS the url: + if api_info is None: + warnings.warn(f"API url not found in 'maturities.yml'. Using it directly. ({user_input}).") + + api_info = maturities["default"] + api_info["this_api"] = user_input + + # Assume it's a url now, and try to connect: + # Try for a bit. It's possible lambda isn't up yet or something + endTime = datetime.datetime.now() + datetime.timedelta(minutes=2) + while datetime.datetime.now() < endTime: + try: + r = requests.get(api_info["this_api"], timeout=30) + except (requests.exceptions.Timeout, requests.exceptions.ConnectionError): + # If it throws instantly, don't bombard the API: + time.sleep(2.0) + # Jump back up to the top and try again: + continue + if r.status_code == 200: + # It connected!! You're good: + return api_info + raise argparse.ArgumentTypeError(f"ERROR: Could not connect to url '{user_input}'.") + +def string_to_bool(user_input: str) -> bool: + user_input = str(user_input).upper() + if 'TRUE'.startswith(user_input): + return True + elif 'FALSE'.startswith(user_input): + return False + else: + raise argparse.ArgumentTypeError(f"ERROR: Could not convert '{user_input}' to bool (true/false/t/f).") + +def pytest_addoption(parser): + parser.addoption("--api", action="store", type=api_type, default="local", + help = "Which API to hit when running tests (LOCAL/DEV/TEST/PROD, or url)." + ) + parser.addoption("--flex", action="store", type=string_to_bool, + help = "'flexible_maturity': wether to attach 'maturity' to the URL strings." + ) diff --git a/events/event.json b/events/event.json deleted file mode 100644 index a6197de..0000000 --- a/events/event.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": "{\"message\": \"hello world\"}", - "resource": "/hello", - "path": "/hello", - "httpMethod": "GET", - "isBase64Encoded": false, - "queryStringParameters": { - "foo": "bar" - }, - "pathParameters": { - "proxy": "/path/to/resource" - }, - "stageVariables": { - "baz": "qux" - }, - "headers": { - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "Accept-Encoding": "gzip, deflate, sdch", - "Accept-Language": "en-US,en;q=0.8", - "Cache-Control": "max-age=0", - "CloudFront-Forwarded-Proto": "https", - "CloudFront-Is-Desktop-Viewer": "true", - "CloudFront-Is-Mobile-Viewer": "false", - "CloudFront-Is-SmartTV-Viewer": "false", - "CloudFront-Is-Tablet-Viewer": "false", - "CloudFront-Viewer-Country": "US", - "Host": "1234567890.execute-api.us-east-1.amazonaws.com", - "Upgrade-Insecure-Requests": "1", - "User-Agent": "Custom User Agent String", - "Via": "1.1 08f323deadbeefa7af34d5feb414ce27.cloudfront.net (CloudFront)", - "X-Amz-Cf-Id": "cDehVQoZnx43VYQb9j2-nvCh-9z396Uhbp027Y2JvkCPNLmGJHqlaA==", - "X-Forwarded-For": "127.0.0.1, 127.0.0.2", - "X-Forwarded-Port": "443", - "X-Forwarded-Proto": "https" - }, - "requestContext": { - "accountId": "123456789012", - "resourceId": "123456", - "stage": "prod", - "requestId": "c6af9ac6-7b61-11e6-9a41-93e8deadbeef", - "requestTime": "09/Apr/2015:12:34:56 +0000", - "requestTimeEpoch": 1428582896000, - "identity": { - "cognitoIdentityPoolId": null, - "accountId": null, - "cognitoIdentityId": null, - "caller": null, - "accessKey": null, - "sourceIp": "127.0.0.1", - "cognitoAuthenticationType": null, - "cognitoAuthenticationProvider": null, - "userArn": null, - "userAgent": "Custom User Agent String", - "user": null - }, - "path": "/prod/hello", - "resourcePath": "/hello", - "httpMethod": "POST", - "apiId": "1234567890", - "protocol": "HTTP/1.1" - } -} diff --git a/requirements.txt b/requirements.txt index e59c64b..6c603c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,33 +2,27 @@ anyio==3.6.2 certifi>=2023.7.22 click==8.1.3 dnspython==2.3.0 -email-validator==1.3.1 -fastapi>=0.109.1 +email-validator>=2.0 +fastapi>=0.115.12 h11==0.14.0 httpcore==0.16.3 -httptools==0.5.0 httpx==0.23.3 idna==3.4 itsdangerous==2.1.2 jinja2>=3.1.3 -MarkupSafe==2.1.2 orjson>=3.9.15 -pydantic==2.4.2 +pydantic==2.8.2 python-dotenv==1.0.0 python-multipart>=0.0.7 -PyYAML==6.0 +PyYAML==6.0.2 rfc3986==1.5.0 sniffio==1.3.0 -starlette>=0.36.2 typing_extensions==4.10.0 ujson==5.7.0 uvicorn==0.21.1 -uvloop==0.17.0 watchfiles==0.19.0 -websockets==10.4 -mangum -asf_search==8.0.0 +asf_search==8.1.0 python-json-logger==2.0.7 pyshp diff --git a/src/SearchAPI/__init__.py b/src/SearchAPI/__init__.py index 8b13789..826bbe8 100644 --- a/src/SearchAPI/__init__.py +++ b/src/SearchAPI/__init__.py @@ -1 +1,2 @@ - +from .application import application +from .application import log_router \ No newline at end of file diff --git a/src/SearchAPI/application/__init__.py b/src/SearchAPI/application/__init__.py index e69de29..8c06435 100644 --- a/src/SearchAPI/application/__init__.py +++ b/src/SearchAPI/application/__init__.py @@ -0,0 +1,5 @@ +from .models import * +from .output import * +from .logger import * +from .log_router import * +from .application import * \ No newline at end of file diff --git a/src/SearchAPI/application/application.py b/src/SearchAPI/application/application.py index 014c32d..cbbd571 100644 --- a/src/SearchAPI/application/application.py +++ b/src/SearchAPI/application/application.py @@ -1,6 +1,7 @@ import json import logging import os +from typing import Optional import dateparser import asf_search as asf @@ -8,7 +9,7 @@ from fastapi.responses import Response, JSONResponse from fastapi.middleware.cors import CORSMiddleware -from application.log_router import LoggingRoute +from .log_router import LoggingRoute from .asf_env import load_config_maturity from .asf_opts import process_baseline_request, process_search_request @@ -149,10 +150,10 @@ async def query_mission_list(platform: str | None = None): @router.api_route("/services/utils/wkt", methods=["GET", "POST"]) -async def query_wkt_validation(body: WKTModel, wkt: str=''): - if len(wkt) == 0: +async def wkt_validation(body: WKTModel = WKTModel(), wkt: Optional[str] = None): + if body.wkt is not None: wkt = body.wkt - + return Response( content=json.dumps(validate_wkt(wkt)), status_code=200, @@ -160,7 +161,6 @@ async def query_wkt_validation(body: WKTModel, wkt: str=''): headers=constants.DEFAULT_HEADERS ) - @router.post('/services/utils/files_to_wkt') async def file_to_wkt(files: list[UploadFile]): for file in files: @@ -179,7 +179,7 @@ async def file_to_wkt(files: list[UploadFile]): def validate_wkt(wkt: str): try: wrapped, unwrapped, reports = asf.validate_wkt(wkt) - repairs = [{'type': report.report_type, 'report': report.report} for report in reports] + repairs = [{'type': report.report_type, 'report': report.report} for report in reports if report.report_type != "'type': 'WRAP'"] except Exception as exc: raise HTTPException(detail=f"Failed to validate wkt: {exc}", status_code=400) from exc diff --git a/src/SearchAPI/application/asf_opts.py b/src/SearchAPI/application/asf_opts.py index 4baf037..0ae0cdb 100644 --- a/src/SearchAPI/application/asf_opts.py +++ b/src/SearchAPI/application/asf_opts.py @@ -4,12 +4,12 @@ from fastapi import HTTPException, Request from pydantic import ValidationError -from application.models import BaselineSearchOptsModel, SearchOptsModel +from .models import BaselineSearchOptsModel, SearchOptsModel import asf_search as asf from asf_search.ASFSearchOptions import validator_map -from application.asf_env import load_config_maturity +from .asf_env import load_config_maturity from .logger import api_logger @@ -66,9 +66,10 @@ def string_to_num_or_range_list(v: Union[str, list]): asf.validators.parse_string_list: string_to_list, asf.validators.parse_int_list: string_to_list, asf.validators.parse_float_list: string_to_list, - # asf.validators.parse_circle: string_to_list, - # asf.validators.parse_linestring: string_to_list, - # asf.validators.parse_point: string_to_list, + asf.validators.parse_circle: string_to_list, + asf.validators.parse_linestring: string_to_list, + asf.validators.parse_point: string_to_list, + asf.validators.parse_bbox: string_to_list, # Number or Range-list: asf.validators.parse_int_or_range_list: string_to_num_or_range_list, @@ -132,10 +133,11 @@ async def get_body(request: Request): """ if (content_type := request.headers.get('content-type')) is not None: try: + api_logger.debug(f"Request received, content-type header: {content_type})") if content_type == 'application/json': data = await request.json() return data - elif content_type in ['application/x-www-form-urlencoded', 'multipart/form-data']: + elif content_type == 'application/x-www-form-urlencoded' or content_type.startswith('multipart/form-data'): data = await request.form() return dict(data) except Exception as exc: diff --git a/src/SearchAPI/application/models.py b/src/SearchAPI/application/models.py index c21e2d2..ab0638d 100644 --- a/src/SearchAPI/application/models.py +++ b/src/SearchAPI/application/models.py @@ -35,4 +35,4 @@ class BaselineSearchOptsModel(SearchOptsModel): class WKTModel(BaseModel): - wkt: str = Field(default='') + wkt: Optional[str] = None diff --git a/src/SearchAPI/main.py b/src/SearchAPI/main.py deleted file mode 100644 index 72c8adb..0000000 --- a/src/SearchAPI/main.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -Actually runs the API. -Make changes to the API itself in SearchAPI/application.py -""" - -import os -import uvicorn -from mangum import Mangum - -from application import application - -handler = Mangum(application.app) - - -# Beanstalk handle: -def run_server() -> None: - """ - To run this API from EC2, or another 'server'-like environment - """ - if not os.environ.get("OPEN_TO_IP") or not os.environ.get("OPEN_TO_PORT"): - open_to_ip = '0.0.0.0' - open_to_port = 8080 - else: - open_to_ip = os.environ["OPEN_TO_IP"] - open_to_port = int(os.environ["OPEN_TO_PORT"]) - - uvicorn.run(application.app, host=open_to_ip, port=open_to_port) - - -if __name__ == "__main__": - run_server() diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index e69de29..d3ebb16 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -0,0 +1,2 @@ +from .test_as_output import * +from .test_health import * \ No newline at end of file diff --git a/tests/yml_tests/README.md b/tests/yml_tests/README.md new file mode 100644 index 0000000..a099644 --- /dev/null +++ b/tests/yml_tests/README.md @@ -0,0 +1,74 @@ +## Writting tests for SearchAPI: +(Docs for the manager that runs these tests: https://github.com/asfadmin/Discovery-PytestAutomation) + +### Yml Keys for RepairWKT: + + ---- Input options: + + * "test wkt": (Required) The wkt you want to test. + * print: (Default True, unless an assert key is used). Prints info on test as it's running. + * "check repair": (Default false, unless 'repaired wkt' is used) If you have a wkt that needs repairing, but don't care what is repaired, this will override the check. + + ---- Assert Pass/Fail options: + + * "repaired wkt": How you expect the wkt to look after it's repaired. + * "errors": You expect the test to error out with this mesasge, instead of returning a wkt. + * repair: (Default emtpy list) The repair(s) you expect to happen to the wkt. (Verifies the message is in the repair output) + +### Yml Keys for FilesToWKT: + + ---- Input options: + + * "file wkt": (Required) The path to which file to load. Starts after 'yml_tests/Resources/' + * "print": (Default True, unless assert statement is used). Prints info on test as it's running. + * "check errors": (Default False, unless assert statement is used). If you need to check errors returned by API. + + ---- Assert Pass/Fail options: + + * "parsed wkt": The wkt you expect to come from the file. + * "errors": (Default emtpy list) The error you expect the file to throw. + (Note: If you have a zip, with one good and bad file, the api should return BOTH "parsed wkt" and "errors"). + +### Yml Keys for URLs (SearchAPI end-to-end tests): +##### (Note: This suite doesn't have any required keys. Any test that doesn't match any of the other test-types, will assume to be for this one.) + + ---- Input options: + + * "print": (Default True, unless assert statement is used). Prints info on test as it's running. + * "skip_file_check": (Default False) Overrides checking contents of file. + + ---- Assert Pass/Fail options: + + * "expected file": The type of file you expect the API to return. ("error json" for bad request). + * "expected code": Http return code expected from request. + + ---- Other Keys: + + * If key is not in the above list, it will be added to url sent to API as "https://url.com/?key1=val1,key2=val2..." etc. + * The test suite automatically checks if the file contains the expected key, if it's a key/file pair it knows how to check for. + * Current known files: json, jsonlite, download, csv, count + * Current known keys: Platform, absoluteOrbit, asfframe, granule_list, groupid, flightdirection, offnadirangle, polarization, relativeorbit, collectionname, beammode, processinglevel, flightline, lookdirection, start, end, season + +### Yml Keys for DateParser: + + ---- Input options: + + * "date": (Required) Takes anything supported by python's datetime library, including statements like "a day ago". + + ---- Assert Pass/Fail options: + + * "expected date": Right now the value isn't checked. If key is used, test makes sure API returns a valid date. (Problem is what 'today' returns always changes). + * "expected code": Asserts code returned by API is equal to this. + * "expected file": one of "json", or "error json". Verifys value is within error msg returned by api. + * "expected error": Asserts the containing message is in the error returned by the API. + +### Yml Keys for MissionList: + ---- Input options: + + * "platform": Which platform to filter my. (Optional) + + ---- Assert Pass/Fail options: + + * "misson_list_size_min": (Currently required, will change) Asserts the list returned by api is at least this size. + NOTE: exact size of list returned changes depending if test/prod cmr is used. + diff --git a/tests/yml_tests/Resources/geojsons_valid/AoI.geojson b/tests/yml_tests/Resources/geojsons_valid/AoI.geojson new file mode 100644 index 0000000..5fd228e --- /dev/null +++ b/tests/yml_tests/Resources/geojsons_valid/AoI.geojson @@ -0,0 +1,603 @@ +{ + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + -119.144699, + 47.37257 + ], + [ + -122.463478, + 47.763542 + ], + [ + -122.089539, + 49.378365 + ], + [ + -118.661148, + 48.98605 + ], + [ + -119.144699, + 47.37257 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "4577693667", + "faradayRotation": null, + "fileID": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C-SLC", + "fileName": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C.zip", + "flightDirection": "DESCENDING", + "frameNumber": "431", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "ca255e65fb4917df91e1493965c642ab", + "offNadirAngle": null, + "orbit": "8191", + "pathNumber": "115", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-08T14:12:14.448936", + "processingLevel": "SLC", + "sceneName": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-08T14:12:14.448936", + "stopTime": "2017-11-08T14:12:41.411668", + "url": "https://testdatapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C.zip" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -119.144699, + 47.37257 + ], + [ + -122.463478, + 47.763542 + ], + [ + -122.089539, + 49.378365 + ], + [ + -118.661148, + 48.98605 + ], + [ + -119.144699, + 47.37257 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "67825", + "faradayRotation": null, + "fileID": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C-METADATA_SLC", + "fileName": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C.iso.xml", + "flightDirection": "DESCENDING", + "frameNumber": "431", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "5e4a58c34129454e00061dc35dd44ccc", + "offNadirAngle": null, + "orbit": "8191", + "pathNumber": "115", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-08T14:12:14.448936", + "processingLevel": "METADATA_SLC", + "sceneName": "S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-08T14:12:14.448936", + "stopTime": "2017-11-08T14:12:41.411668", + "url": "https://testdatapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20171108T141214_20171108T141241_008191_00E799_A58C.iso.xml" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -119.129456, + 47.417049 + ], + [ + -122.473457, + 47.810402 + ], + [ + -122.135193, + 49.308262 + ], + [ + -118.692009, + 48.914318 + ], + [ + -119.129456, + 47.417049 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [ + "https://testdatapool.asf.alaska.edu/BROWSE/SB/S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365.jpg" + ], + "bytes": "1008230288", + "faradayRotation": null, + "fileID": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365-GRD_HD", + "fileName": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365.zip", + "flightDirection": "DESCENDING", + "frameNumber": "431", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "98f87c437f2cb247ac7d929c82b52b21", + "offNadirAngle": null, + "orbit": "8191", + "pathNumber": "115", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-08T14:12:15.669717", + "processingLevel": "GRD_HD", + "sceneName": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-08T14:12:15.669717", + "stopTime": "2017-11-08T14:12:40.667001", + "url": "https://testdatapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365.zip" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -119.129456, + 47.417049 + ], + [ + -122.473457, + 47.810402 + ], + [ + -122.135193, + 49.308262 + ], + [ + -118.692009, + 48.914318 + ], + [ + -119.129456, + 47.417049 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "58779", + "faradayRotation": null, + "fileID": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365-METADATA_GRD_HD", + "fileName": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365.iso.xml", + "flightDirection": "DESCENDING", + "frameNumber": "431", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "8b297bd3fe8bdaeed227a2ae18a1a86b", + "offNadirAngle": null, + "orbit": "8191", + "pathNumber": "115", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-08T14:12:15.669717", + "processingLevel": "METADATA_GRD_HD", + "sceneName": "S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-08T14:12:15.669717", + "stopTime": "2017-11-08T14:12:40.667001", + "url": "https://testdatapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20171108T141215_20171108T141240_008191_00E799_3365.iso.xml" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -117.0186, + 47.164 + ], + [ + -117.5324, + 45.3406 + ], + [ + -120.6651, + 45.6209 + ], + [ + -120.2588, + 47.4483 + ], + [ + -117.0186, + 47.164 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "1450347974", + "faradayRotation": null, + "fileID": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3-RAW", + "fileName": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3.zip", + "flightDirection": "DESCENDING", + "frameNumber": "436", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "518401dddc682c4f03126464b060b70b", + "offNadirAngle": null, + "orbit": "8118", + "pathNumber": "42", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-03T14:04:28.867317Z", + "processingLevel": "RAW", + "sceneName": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-03T14:04:28.867317Z", + "stopTime": "2017-11-03T14:04:59.202629Z", + "url": "https://testdatapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3.zip" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -117.0186, + 47.164 + ], + [ + -117.5324, + 45.3406 + ], + [ + -120.6651, + 45.6209 + ], + [ + -120.2588, + 47.4483 + ], + [ + -117.0186, + 47.164 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "41316", + "faradayRotation": null, + "fileID": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3-METADATA_RAW", + "fileName": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3.iso.xml", + "flightDirection": "DESCENDING", + "frameNumber": "436", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "c27de8afdfd881a16716f4782fb6865c", + "offNadirAngle": null, + "orbit": "8118", + "pathNumber": "42", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-11-03T14:04:28.867317Z", + "processingLevel": "METADATA_RAW", + "sceneName": "S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-11-03T14:04:28.867317Z", + "stopTime": "2017-11-03T14:04:59.202629Z", + "url": "https://testdatapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20171103T140428_20171103T140459_008118_00E57F_DBF3.iso.xml" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -123.241974, + 48.667233 + ], + [ + -122.896431, + 47.16993 + ], + [ + -126.256256, + 46.769268 + ], + [ + -126.699242, + 48.265793 + ], + [ + -123.241974, + 48.667233 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "43843", + "faradayRotation": null, + "fileID": "S1B_IW_OCN__2SDV_20171010T020935_20171010T021000_007761_00DB48_7DD5-METADATA_OCN", + "fileName": "S1B_IW_OCN__2SDV_20171010T020935_20171010T021000_007761_00DB48_7DD5.iso.xml", + "flightDirection": "ASCENDING", + "frameNumber": "152", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "7ef2eacab454b594fb33f07f2adb873a", + "offNadirAngle": null, + "orbit": "7761", + "pathNumber": "35", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-10-10T02:09:35.000000", + "processingLevel": "METADATA_OCN", + "sceneName": "S1B_IW_OCN__2SDV_20171010T020935_20171010T021000_007761_00DB48_7DD5", + "sensor": "C-SAR", + "startTime": "2017-10-10T02:09:35.000000", + "stopTime": "2017-10-10T02:10:00.000000", + "url": "https://testdatapool.asf.alaska.edu/METADATA_OCN/SB/S1B_IW_OCN__2SDV_20171010T020935_20171010T021000_007761_00DB48_7DD5.iso.xml" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -121.225395, + 47.279278 + ], + [ + -124.579872, + 47.674587 + ], + [ + -124.248192, + 49.173061 + ], + [ + -120.794876, + 48.777409 + ], + [ + -121.225395, + 47.279278 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [ + "https://testdatapool.asf.alaska.edu/BROWSE/SB/S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687.jpg" + ], + "bytes": "1018772062", + "faradayRotation": null, + "fileID": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687-GRD_HD", + "fileName": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687.zip", + "flightDirection": "DESCENDING", + "frameNumber": "432", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "307bdbdbd307d07164b5bddea5832a1c", + "offNadirAngle": null, + "orbit": "7739", + "pathNumber": "13", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-10-08T14:20:31.802338", + "processingLevel": "GRD_HD", + "sceneName": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-10-08T14:20:31.802338", + "stopTime": "2017-10-08T14:20:56.800084", + "url": "https://testdatapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687.zip" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -121.225395, + 47.279278 + ], + [ + -124.579872, + 47.674587 + ], + [ + -124.248192, + 49.173061 + ], + [ + -120.794876, + 48.777409 + ], + [ + -121.225395, + 47.279278 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "58779", + "faradayRotation": null, + "fileID": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687-METADATA_GRD_HD", + "fileName": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687.iso.xml", + "flightDirection": "DESCENDING", + "frameNumber": "432", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "cad6efffc391b7ec2f683de844eed79d", + "offNadirAngle": null, + "orbit": "7739", + "pathNumber": "13", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-10-08T14:20:31.802338", + "processingLevel": "METADATA_GRD_HD", + "sceneName": "S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-10-08T14:20:31.802338", + "stopTime": "2017-10-08T14:20:56.800084", + "url": "https://testdatapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20171008T142031_20171008T142056_007739_00DAAC_1687.iso.xml" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -117.4789, + 49.4141 + ], + [ + -117.0321, + 47.4633 + ], + [ + -120.2731, + 47.179 + ], + [ + -120.847, + 49.1246 + ], + [ + -117.4789, + 49.4141 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "1593435565", + "faradayRotation": null, + "fileID": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025-RAW", + "fileName": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025.zip", + "flightDirection": "ASCENDING", + "frameNumber": "154", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "57b216a380ddebd32fec5ea9472cac84", + "offNadirAngle": null, + "orbit": "7717", + "pathNumber": "166", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-10-07T01:45:03.891899Z", + "processingLevel": "RAW", + "sceneName": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-10-07T01:45:03.891899Z", + "stopTime": "2017-10-07T01:45:36.291329Z", + "url": "https://testdatapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025.zip" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -117.4789, + 49.4141 + ], + [ + -117.0321, + 47.4633 + ], + [ + -120.2731, + 47.179 + ], + [ + -120.847, + 49.1246 + ], + [ + -117.4789, + 49.4141 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "beamModeType": "IW", + "browse": [], + "bytes": "41315", + "faradayRotation": null, + "fileID": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025-METADATA_RAW", + "fileName": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025.iso.xml", + "flightDirection": "ASCENDING", + "frameNumber": "154", + "granuleType": "SENTINEL_1B_FRAME", + "md5sum": "f82b58e2d4fb22044d1032a5cb7452ac", + "offNadirAngle": null, + "orbit": "7717", + "pathNumber": "166", + "platform": "Sentinel-1B", + "polarization": "VV+VH", + "processingDate": "2017-10-07T01:45:03.891899Z", + "processingLevel": "METADATA_RAW", + "sceneName": "S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025", + "sensor": "SENTINEL-1 C-SAR", + "startTime": "2017-10-07T01:45:03.891899Z", + "stopTime": "2017-10-07T01:45:36.291329Z", + "url": "https://testdatapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20171007T014503_20171007T014536_007717_00DA0F_8025.iso.xml" + }, + "type": "Feature" + } + ], + "type": "FeatureCollection" +} \ No newline at end of file diff --git a/tests/yml_tests/Resources/geojsons_valid/Basic_FC_GC_1.geojson b/tests/yml_tests/Resources/geojsons_valid/Basic_FC_GC_1.geojson new file mode 100644 index 0000000..2da7d37 --- /dev/null +++ b/tests/yml_tests/Resources/geojsons_valid/Basic_FC_GC_1.geojson @@ -0,0 +1,35 @@ +{ + "type": "FeatureCollection", + "features": [{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 59.94140624999999, + 50.65294336725709 + ], + [ + 42.987654321, + -42.123456789 + ], + [ + -22.2222222222222, + 222.222 + ], + [ + 59.94140624999999, + 50.65294336725709 + ] + ] + ] + } + ] + } + }] +} diff --git a/tests/yml_tests/Resources/geojsons_valid/ManyCoords_ShovelCreek.geojson b/tests/yml_tests/Resources/geojsons_valid/ManyCoords_ShovelCreek.geojson new file mode 100644 index 0000000..8f33710 --- /dev/null +++ b/tests/yml_tests/Resources/geojsons_valid/ManyCoords_ShovelCreek.geojson @@ -0,0 +1,23 @@ +{ + "type":"FeatureCollection", + "crs":{"type":"name","properties":{"name":"EPSG:4269"}}, + "features": + [ + { + "type":"Feature", + "id":0, + "geometry": + { + "type":"Polygon", + "coordinates": + [[ + [-148.39592999932896,65.020069999764985],[-148.39801061951104,65.020496514218109],[-148.39804732962764,65.020747941191132],[-148.39824285978384,65.021041612956253],[-148.39926984330364,65.021203747776553],[-148.40074604051819,65.021238586371339],[-148.401412730549,65.021083234344246],[-148.4027226255657,65.020778021746196],[-148.40351999863486,65.020770001312599],[-148.40860000036173,65.020560000586386],[-148.41203999891175,65.020999999426238],[-148.41507000059659,65.02205999978662],[-148.42072999990125,65.023480000269274],[-148.42475000126777,65.023480000269274],[-148.42837000118865,65.022750000675956],[-148.43606000052856,65.020729999989328],[-148.44539999846484,65.018389999193857],[-148.45059939516386,65.016483586392042],[-148.45090545773925,65.016443105728683],[-148.45240666838643,65.015829450880574],[-148.45243999954829,65.015829999633297],[-148.45541999925163,65.014819999944848],[-148.45743999862862,65.01414000102335],[-148.45955999934927,65.013479999489334],[-148.46202000149518,65.012140001653165],[-148.4626900010681,65.011019999962741],[-148.46302000052546,65.010479999779193],[-148.46485000049267,65.008989999927508],[-148.46648000039195,65.007340000021486],[-148.46779003554357,65.004728120409254],[-148.46789538427953,65.0045180620574],[-148.46894000122819,65.001429999977006],[-148.4691890681716,65.000877747808374],[-148.46968333590559,64.999781755031904],[-148.470480000442,64.998779998421298],[-148.47250000112865,64.997739999377472],[-148.4759300016398,64.996300000197607],[-148.47711145446758,64.995700640423479],[-148.47885376663081,64.99430364564563],[-148.48262196907734,64.993915677469772],[-148.48742812747884,64.993207165671038],[-148.49130119146324,64.992921860093077],[-148.49431745861389,64.992622991548046],[-148.49814703623682,64.99216857452501],[-148.50159473042171,64.99144294923741],[-148.5039482954939,64.990973367517995],[-148.50483323849659,64.99045220828117],[-148.50533595623671,64.989218143294806],[-148.50428424479284,64.988371293422802],[-148.50105206243552,64.988000074646834],[-148.49735912947955,64.988180013153453],[-148.49033370635928,64.988975275030725],[-148.48534589116105,64.989293403617694],[-148.47953493901872,64.989660134146391],[-148.4775199989061,64.988500001475188],[-148.47456000051926,64.987000000965281],[-148.47169999954704,64.983319999714297],[-148.46814999899513,64.978820000803978],[-148.46667226029621,64.975664330816301],[-148.46656000041915,64.974160000529537],[-148.46619999898709,64.972779998750752],[-148.46507000056747,64.971430000256362],[-148.46400934144194,64.970802650164273],[-148.46281423135065,64.970095732236814],[-148.46200999952728,64.96962000160562],[-148.46185674559527,64.969616207484762],[-148.46147825944738,64.969426649434581],[-148.4598182575734,64.968935768513347],[-148.45367000062126,64.967610001577157],[-148.44877999961383,64.966229999798372],[-148.44233999873433,64.964489999206933],[-148.44020999997477,64.963390001452353],[-148.43976999982522,64.962240000406553],[-148.43978495366434,64.961337794612348],[-148.43965824941068,64.961229471610466],[-148.43790609636926,64.957775185844525],[-148.43514943640528,64.952367941520663],[-148.4341252896358,64.95051261379939],[-148.43364619183691,64.950003968482122],[-148.43266773036882,64.949674170714331],[-148.43122615041443,64.949694322643097],[-148.42740773381945,64.95021227580196],[-148.42498694850306,64.950283660804303],[-148.42399559462012,64.950312883523907],[-148.42335344653989,64.95033180959939],[-148.41938757000349,64.950550010184315],[-148.41019956740405,64.951052701730987],[-148.40719797775168,64.950962322550254],[-148.39979009493752,64.951233856923238],[-148.39446548570166,64.953002404443396],[-148.38608460144351,64.954156024113956],[-148.38066718620402,64.954553844955115],[-148.37955567642928,64.955007177569428],[-148.37881237056467,64.955412191131245],[-148.37744868337464,64.956079475753313],[-148.37665772508075,64.956759447171692],[-148.37660527139255,64.95727565060821],[-148.3770170284574,64.957944997964319],[-148.37705097647498,64.958000181009709],[-148.37716321015859,64.958061871817165],[-148.37720454341869,64.958070532680551],[-148.37745085350176,64.958280056686021],[-148.37749873774303,64.958320788806475],[-148.37775941493203,64.95856235525622],[-148.37817113401638,64.958781039110249],[-148.37847355439291,64.95901422234715],[-148.37888879256693,64.959365928314412],[-148.37926631348631,64.959652589403277],[-148.37970803978408,64.95992131452897],[-148.37979194394461,64.960023991533319],[-148.37992532359834,64.960236628630014],[-148.37993736996484,64.960255833665713],[-148.37992538646262,64.960274010608543],[-148.37982227857609,64.96043041037359],[-148.37980230476273,64.960460705714922],[-148.37974081302551,64.960553980581267],[-148.37976889240119,64.960855476329073],[-148.38003837058852,64.961318910446437],[-148.38012487182937,64.961479929425934],[-148.38040826528567,64.961918385471733],[-148.38049585617392,64.962232287745962],[-148.38049937526358,64.962511406431645],[-148.38046425508927,64.962668565806666],[-148.38047347649243,64.962851876719583],[-148.38044061812229,64.962977941853183],[-148.38039552479282,64.963451770840095],[-148.3803961940354,64.963499631507261],[-148.380437265361,64.963869358566342],[-148.38046090363767,64.963976477979372],[-148.38035160362014,64.964265906405956],[-148.38031916434517,64.964420383571962],[-148.38026233635125,64.964841490387869],[-148.38034925537758,64.964905109033054],[-148.38091972770823,64.965088505074675],[-148.38115710320639,64.965171402097155],[-148.38131560630526,64.965425206125587],[-148.38162724415594,64.965986542181724],[-148.38167937959372,64.966580651479376],[-148.38205807397955,64.967168641987712],[-148.38230383269055,64.967571560073679],[-148.38232378031046,64.967618666369617],[-148.38238647825594,64.96775411792504],[-148.38240913689765,64.96780183714759],[-148.38196000047361,64.968100001088885],[-148.38055000064915,64.969620000295947],[-148.37774000034878,64.970009999773652],[-148.37462999994642,64.969869998416414],[-148.37169999960526,64.969409999569734],[-148.36937006888067,64.968704743616513],[-148.37045565107147,64.968248460310349],[-148.37169866242976,64.967199651100429],[-148.37289130378863,64.965886574889566],[-148.37220377163166,64.964680814542533],[-148.37005301980369,64.964078504076554],[-148.36748361548584,64.96350482435821],[-148.36596552316178,64.962837754522411],[-148.36467220335865,64.96195656111172],[-148.36311168812711,64.961172452404355],[-148.3612595533871,64.960853721368096],[-148.35960984160897,64.960514275243952],[-148.35797133931666,64.960119224359858],[-148.35602166934606,64.959628939339552],[-148.35426736713228,64.95948162084278],[-148.3520203714107,64.959484456283462],[-148.35019491207757,64.959362516617887],[-148.34838780649306,64.958821290580943],[-148.34693111815821,64.958180732442997],[-148.34584004189182,64.957693356205027],[-148.34482178864803,64.956844667552957],[-148.34419711159723,64.956010211110538],[-148.34385160561899,64.955101866881932],[-148.34110433731558,64.954638510035295],[-148.33821253225949,64.953581964590683],[-148.33513371384666,64.952798538222567],[-148.3308052859461,64.951661780583834],[-148.33025232524474,64.950801861491186],[-148.32995399890405,64.949335278581543],[-148.32367803317953,64.947707705505195],[-148.32135892034876,64.947091545253841],[-148.31848730258258,64.94659524097932],[-148.31384677844602,64.946555292042945],[-148.30831895913522,64.946495849942949],[-148.30757574625733,64.946487842606075],[-148.30537404424507,64.946464102175014],[-148.29929304944662,64.947320376449454],[-148.29308748777981,64.948396460896163],[-148.28975457459131,64.949129535600207],[-148.28733236566106,64.949404564179076],[-148.28656621780058,64.949653514561646],[-148.28504279772935,64.949647163960321],[-148.28429814552152,64.949644054798114],[-148.28072962358291,64.949629103578275],[-148.27495968645027,64.949861417192722],[-148.26861228071718,64.950650661125508],[-148.26180367909683,64.951825256508698],[-148.26103364412876,64.952146837392036],[-148.25961149840273,64.952493264069972],[-148.25835344807658,64.952650947313941],[-148.25788903432431,64.952762078253386],[-148.25711203844759,64.952990715617489],[-148.2565297921623,64.953260907576293],[-148.251326658968,64.954786983663098],[-148.24843211538698,64.955456837862414],[-148.24438296333278,64.95607704893041],[-148.24115353521645,64.956837903095163],[-148.2380841556124,64.957456508504833],[-148.23666407262036,64.957790573185207],[-148.23161720822387,64.957841557420977],[-148.22498598862964,64.957842593371822],[-148.21831338207878,64.957791264692219],[-148.21508624065041,64.957599697604621],[-148.21117930853848,64.957125106388389],[-148.20701099463381,64.956570018779075],[-148.20383087699199,64.956617125074956],[-148.20148634080113,64.956388760122763],[-148.19935779839724,64.956191942558632],[-148.19601495789217,64.955950014639313],[-148.1936230456129,64.955413363288017],[-148.19087101665042,64.955004707527337],[-148.18892806137006,64.954809921265053],[-148.18691743138925,64.95422134140415],[-148.18535855455784,64.953691961353854],[-148.183965305443,64.953168727595994],[-148.18125614336694,64.953091466093781],[-148.17832990964351,64.953524614037462],[-148.17486498671857,64.954409041029237],[-148.17217255570708,64.955322203542494],[-148.16692499711624,64.95675283856491],[-148.16327110418402,64.958007122273273],[-148.15788133350895,64.959314329842243],[-148.15259019949895,64.959611503671283],[-148.14880888461261,64.959870734981962],[-148.14630688258339,64.960130640773968],[-148.14438471573263,64.960510934269735],[-148.14434372429704,64.961540649766107],[-148.14501328643939,64.962081351934103],[-148.14692378803835,64.961674092284113],[-148.1506507528309,64.960892821636776],[-148.15469713230868,64.961080991434244],[-148.15821841829384,64.961286265552872],[-148.1620292361697,64.962607157888442],[-148.16726353301809,64.96335495461966],[-148.17278927649821,64.963119039406195],[-148.18097282063295,64.961803355637642],[-148.18444469660852,64.960569881313518],[-148.18488769197882,64.960450069865544],[-148.18733647154215,64.962555665499792],[-148.18867123985655,64.964925470509399],[-148.18956120938176,64.966505340079266],[-148.19009858760126,64.968108934364182],[-148.1906662965232,64.969566340399467],[-148.19160336972499,64.97007991794294],[-148.19591021029584,64.97027664121066],[-148.1978054136118,64.969941852281465],[-148.19928108040901,64.969112714418543],[-148.2007944264804,64.968100823563134],[-148.20173712341534,64.967325561692633],[-148.20403864210746,64.96586411138901],[-148.20667319476783,64.964893738457533],[-148.2099223255953,64.964314360354706],[-148.21281870271767,64.963758692560589],[-148.2163599284647,64.963447792055433],[-148.21861456350524,64.96305242161128],[-148.22078286887199,64.962653830682825],[-148.2243163452876,64.962379299779457],[-148.22763963107448,64.962281063874116],[-148.22913984637066,64.962594226183455],[-148.22959343306141,64.963347493416165],[-148.22975064875234,64.964273955652345],[-148.23065068834845,64.964970042589243],[-148.2327925802428,64.965122704549344],[-148.23522170555287,64.965186249852877],[-148.23666963872793,64.967852535874783],[-148.23679908150652,64.968090870053118],[-148.24020361936741,64.974358025611593],[-148.23868258682887,64.975607294584506],[-148.23950895735405,64.975555460371368],[-148.23961858347997,64.97550091775571],[-148.24176148251237,64.975481886906493],[-148.24320229237941,64.975226921198725],[-148.24431496645289,64.974959868524593],[-148.24496535892072,64.974367806244857],[-148.24548448816535,64.973770913893475],[-148.24631165759067,64.972961356942221],[-148.24672229619532,64.972248474766786],[-148.24677041093892,64.971726865002722],[-148.24844623758418,64.971175622591488],[-148.24964821952639,64.970166159868654],[-148.25050663642483,64.969214308323842],[-148.25139356489083,64.96812301596151],[-148.25192268955502,64.96715905911492],[-148.25240179914096,64.966439116495792],[-148.25230762583936,64.96613705235012],[-148.25200084818286,64.965152998581004],[-148.25224701944066,64.964361258412737],[-148.25184613134681,64.963889945306391],[-148.25183150099673,64.963151858486185],[-148.25172745145576,64.962445604562618],[-148.25114062262685,64.962072816799207],[-148.25117972944389,64.961477193520352],[-148.25132966597579,64.96074515869617],[-148.25065346379449,64.960404202519726],[-148.24907942881507,64.95999510147044],[-148.24829997337363,64.959739875137871],[-148.24799192140588,64.95963900417172],[-148.24754462114251,64.958990361426231],[-148.24747295587031,64.958531148382917],[-148.24969417462026,64.958612861461575],[-148.25096762407418,64.958870421630365],[-148.25164712924916,64.958921987360668],[-148.25235501764382,64.958767064906056],[-148.25480858275003,64.9577460325375],[-148.25693873343155,64.956627294680914],[-148.25848372773581,64.955776287908805],[-148.26048172592661,64.954793198058496],[-148.26229526200248,64.954070495959684],[-148.26422077899517,64.953544710960045],[-148.26631597975978,64.953499836345884],[-148.26745656164184,64.953022024645236],[-148.26806313640111,64.952194539588902],[-148.26912408103522,64.951775893647323],[-148.27123889676295,64.951539673280195],[-148.27279451774885,64.951304791398286],[-148.27442888147644,64.951482677648244],[-148.27561237739312,64.951833995952484],[-148.27634015840144,64.952476591940638],[-148.27597347109193,64.953303089504061],[-148.27440049825677,64.953889427205809],[-148.27213447037627,64.954310369003053],[-148.2708771888278,64.95432028977126],[-148.2703607365535,64.953937392646765],[-148.26930019660816,64.953954511374377],[-148.2676469644307,64.954285862413599],[-148.26601639744328,64.954506040603803],[-148.26581145467176,64.954862495443081],[-148.26620238139756,64.955212810538285],[-148.26552135962194,64.955635798043716],[-148.26448890952963,64.955924533653615],[-148.26370957195871,64.95614247623314],[-148.2639175309057,64.956747154586765],[-148.26571384478987,64.957691062968706],[-148.26728798978178,64.958099996379929],[-148.26938739721405,64.957966242159841],[-148.27069657060125,64.958049343491211],[-148.27110480726679,64.958485745970791],[-148.2712022128398,64.95922683979876],[-148.27151397249003,64.959729946511629],[-148.27179017191597,64.960407350972105],[-148.27226341940838,64.961337816876778],[-148.27363467650474,64.962336291448423],[-148.27569578387815,64.962798081926906],[-148.27782803265484,64.962911245477926],[-148.27939141737855,64.962968449347784],[-148.2814739732564,64.963325582597349],[-148.28304448914616,64.963347888937221],[-148.28476828254205,64.963024583215372],[-148.28668498936869,64.962567831046442],[-148.28889529330911,64.96229737715322],[-148.28969540752254,64.961624208173134],[-148.28995360419208,64.96152670699405],[-148.28996352365061,64.961528640070469],[-148.29243903624644,64.961583901696201],[-148.29366893385529,64.961242477966778],[-148.29657272241357,64.960821634395018],[-148.29724075092957,64.960389451679816],[-148.29776545544951,64.959846681539204],[-148.29868296345572,64.959002165503307],[-148.2989537146446,64.958485253533979],[-148.30001885153999,64.958137781737548],[-148.3017138255953,64.957953736098375],[-148.30292222493213,64.957716824224235],[-148.30429514662208,64.957485897552885],[-148.30499833853159,64.956879379109523],[-148.30564751955248,64.956130416769895],[-148.30604280486793,64.955407325698332],[-148.30542523017039,64.954366396787123],[-148.30417977758279,64.95396983847013],[-148.30176594662672,64.954022343235522],[-148.30097331850055,64.953807833307337],[-148.30125619987496,64.953722889266942],[-148.30031980901245,64.953128816640117],[-148.29828912270892,64.952718801439516],[-148.29809106095604,64.952067653290726],[-148.29928830319395,64.952027331097725],[-148.30124773808174,64.952462734297285],[-148.30332146938716,64.952986265350773],[-148.304439814342,64.953334977406996],[-148.30539170386734,64.953201677643222],[-148.30772272161997,64.952782644038678],[-148.30869976733223,64.952518899596953],[-148.30931578875834,64.952752161414196],[-148.31233105924832,64.953002373011259],[-148.3141195596271,64.953172791509417],[-148.31654740931626,64.953050373813426],[-148.31771779017382,64.953408980444351],[-148.31898695830873,64.953279520640024],[-148.31970815428434,64.95323709249385],[-148.32019159364717,64.953516150934604],[-148.32134446680445,64.954038014775165],[-148.32121970479491,64.954940943508518],[-148.32135367642056,64.955507692440619],[-148.32197420966799,64.956127234266035],[-148.32381704049544,64.956439977480215],[-148.32666352041008,64.956297474648693],[-148.32760520627798,64.956281930147327],[-148.3290006163522,64.956999476066073],[-148.33148029763518,64.958461190923515],[-148.33261991035968,64.959034421424178],[-148.3327216915481,64.960493890193447],[-148.33428909958533,64.96189448918966],[-148.33644095546711,64.962364381301427],[-148.34025203920646,64.963454218617755],[-148.34493309246426,64.964491426749817],[-148.34838067794635,64.965091979635474],[-148.35024566712067,64.965019388424935],[-148.35134165596813,64.964499072617116],[-148.35246105520923,64.964847449397155],[-148.35306380310584,64.965793059043506],[-148.35379724058913,64.965894683071213],[-148.35331262645019,64.966711889818782],[-148.3539871247477,64.967204372469325],[-148.35335999991926,64.967270000151927],[-148.34988000004594,64.967710001611181],[-148.3464500008445,64.968239998517163],[-148.34479000158987,64.968530000580245],[-148.34000000061644,64.969500001564825],[-148.33660000077035,64.970060000445528],[-148.33482999951383,64.97023999919702],[-148.33116000023077,64.970430001226134],[-148.32752999965166,64.970579999312577],[-148.32408000044339,64.970959999441789],[-148.32093000002746,64.971530000290386],[-148.32089009169093,64.971525277611818],[-148.31973331832933,64.971870382830275],[-148.31944000148545,64.971850000399172],[-148.31650000048606,64.972530000630286],[-148.31421000036244,64.973400000271226],[-148.31313901316059,64.974289782513324],[-148.31366030336463,64.975035783683666],[-148.31381000022648,64.975250000245239],[-148.31571999891122,64.976070000523976],[-148.31739274258771,64.976282154351566],[-148.31811541587376,64.977109499273013],[-148.318506832417,64.97752678315527],[-148.3187389443419,64.978260736649474],[-148.31917752480661,64.978387224807193],[-148.31870368272294,64.978512447821402],[-148.31748088222869,64.979014665266732],[-148.3183191301726,64.97940472760871],[-148.31791338450392,64.980066083343957],[-148.31786437394442,64.980398695597728],[-148.31771759765198,64.98046658639413],[-148.31650371733625,64.981028037701492],[-148.31583057978833,64.981339367779185],[-148.31364037669948,64.98169043855529],[-148.31242289740408,64.981592458036118],[-148.31064422873581,64.981773632873399],[-148.3085689899975,64.982189841514696],[-148.30750632838291,64.98248161818384],[-148.30743530092113,64.982364317377801],[-148.30751132740235,64.981520619887135],[-148.30768997064297,64.980640348485849],[-148.30537618817874,64.980314309477762],[-148.30523774926061,64.980379907037843],[-148.30415418527497,64.980238077377976],[-148.30333264875054,64.981015928470754],[-148.30357888156294,64.982254096660597],[-148.30360904200799,64.982922477478496],[-148.30299904507481,64.983883635555173],[-148.30328332255996,64.984526149034025],[-148.30323558107298,64.985578020257947],[-148.3029986141926,64.986349929367179],[-148.3001099994984,64.986119999356447],[-148.29887727430693,64.986527722630399],[-148.298759997075,64.986490000137053],[-148.29850740449353,64.986650052578341],[-148.2976941778403,64.987165320908844],[-148.29613999880371,64.98814999939168],[-148.29416000075,64.990190001394808],[-148.29197999869928,64.992369999516541],[-148.29105000034764,64.993760000643874],[-148.2943157993754,64.99484862651326],[-148.29460530507268,64.995039863563363],[-148.29468999896565,64.995030000420741],[-148.29696999843102,64.995639999973264],[-148.3006600003402,64.996540001588869],[-148.30066886551251,64.996560690483363],[-148.30319043011795,64.996960884450857],[-148.30321059121445,64.997181974173031],[-148.30388999947368,64.997209999852146],[-148.30631999964487,64.997550001277375],[-148.30736142361229,64.997769080652517],[-148.30777000079263,64.997939999445464],[-148.30856000040635,64.998099999499857],[-148.30940999611141,64.998200003462841],[-148.31212999834571,64.99851999964261],[-148.31393000026725,64.998659999690176],[-148.31570000021409,64.998790000389249],[-148.31663999922398,64.998899999771766],[-148.31801416248331,64.999148037312693],[-148.31942000147865,64.999519999982567],[-148.3211799994576,65.000099998870041],[-148.32290000004227,65.00068999972541],[-148.32410448869743,65.001184021240988],[-148.32531000020668,65.001750000085735],[-148.32597999977961,65.002179999577095],[-148.32736999959727,65.003809999476346],[-148.3293199996053,65.006250000305783],[-148.33126000026476,65.008060000266198],[-148.3343199999953,65.009239999357646],[-148.33501043962494,65.009390971840389],[-148.335234252156,65.010184662110873],[-148.33514658923573,65.01100225914081],[-148.3339866936152,65.011748244595083],[-148.33465843243303,65.012265004642416],[-148.33687341059414,65.012443592876764],[-148.3390489073719,65.012817707338286],[-148.34176582008908,65.012817379920193],[-148.34404009759584,65.012702533440233],[-148.34521389145959,65.01304038438343],[-148.34708128781176,65.013403259236668],[-148.34866019477244,65.013657212567693],[-148.35061788910565,65.013957639622845],[-148.35199850904979,65.014040253756093],[-148.35387919595718,65.01433786239636],[-148.35451369817011,65.014656200530908],[-148.35569426565937,65.014961381696764],[-148.35727017477998,65.014460044351324],[-148.35906410244107,65.014032204509704],[-148.36110229447698,65.013547479048611],[-148.36198773515517,65.013776328579638],[-148.36348156186949,65.014453850910684],[-148.36479332447897,65.014107087646948],[-148.36626731620524,65.013339365560284],[-148.36684813625729,65.013020328060691],[-148.37080818868066,65.013045892865421],[-148.37112904007648,65.013481309161705],[-148.37210977644548,65.014008986637918],[-148.37381837240315,65.014004701389922],[-148.37520705207106,65.013660620335202],[-148.37636306844203,65.013702123852681],[-148.37667645339567,65.014074495140278],[-148.37689172817252,65.01493578153088],[-148.37831684554519,65.015183902890897],[-148.37971860622076,65.014774592293975],[-148.38143514272201,65.014343731038252],[-148.38248145307705,65.014545399628844],[-148.38301961055157,65.014958641862165],[-148.38452317337033,65.014815573252179],[-148.38491481517724,65.014826346617156],[-148.38542078221451,65.015777277462291],[-148.38775841643198,65.017011727492275],[-148.39079541569632,65.018090664405463],[-148.39214365922973,65.01856960242435],[-148.39592999932896,65.020069999764985]],[[-148.33930999841738,64.973620000345989],[-148.34101005531116,64.973648214617924],[-148.34352999854221,64.973689999714964],[-148.34669999896497,64.974000000475144],[-148.34879999967882,64.974329999932536],[-148.35202000077342,64.974979999498601],[-148.35566999873998,64.976439999994909],[-148.35936999868807,64.977869999826225],[-148.36086000115907,64.978699999453511],[-148.36300000057685,64.979950000533279],[-148.36385000021096,64.980239999977016],[-148.36483707408459,64.98029837862299],[-148.36570999953358,64.980349999359532],[-148.36741999946003,64.980110000587672],[-148.37099000001874,64.979699999793411],[-148.3729100006714,64.979579999752673],[-148.37580999903787,64.979599999759444],[-148.37784999973132,64.979590000410894],[-148.37969999970537,64.979379999684681],[-148.3821400005348,64.978659999439913],[-148.38385999850016,64.978169999928184],[-148.38675999948595,64.978109999907758],[-148.38817999996866,64.978499999385519],[-148.38942000039017,64.979090000240944],[-148.39036999874861,64.979890000512853],[-148.39163999852548,64.981680000466497],[-148.39248999946926,64.983539999789116],[-148.39228000005272,64.985289999729162],[-148.38944999843585,64.986080000652521],[-148.38767999848901,64.98582999991271],[-148.38570999978387,64.985480000448604],[-148.38146999965221,64.985260000373785],[-148.37931999957621,64.98564000050294],[-148.37745999894392,64.986080000652521],[-148.37363000091617,64.986819999594388],[-148.37181000029747,64.986859999607987],[-148.37026000042542,64.986570000164249],[-148.3690800000243,64.986040000638923],[-148.36819999972516,64.98538000041458],[-148.36604999964914,64.984010000603689],[-148.36492000122954,64.983679999836681],[-148.36372999886049,64.983459999761919],[-148.36234999839138,64.983470000420141],[-148.3596500014026,64.983859999897902],[-148.35954386817286,64.983877562604391],[-148.35825999896556,64.984090000630886],[-148.35679000043038,64.984249999375606],[-148.35195999944335,64.984189999355237],[-148.34725999915534,64.983779999870706],[-148.34290999964114,64.983079999632764],[-148.33610999994895,64.982319999374397],[-148.32976999910343,64.981809999855841],[-148.3265900006418,64.981709999821874],[-148.32501999945327,64.981729999828644],[-148.32219000045575,64.98208000060248],[-148.32111000008862,64.983079999632764],[-148.32165999962075,64.984050000617287],[-148.32359000093166,64.984689999525187],[-148.32483999939208,64.984889999593179],[-148.32566690426356,64.985024766189952],[-148.32615000049222,64.98508999966117],[-148.32634923440187,64.985135965232416],[-148.33391000051077,64.986879999614814],[-148.33617626544196,64.988638780908104],[-148.33649999942668,64.98888999964322],[-148.33628000066156,64.989420000478219],[-148.33575881392161,64.989602601548768],[-148.33433523672366,64.99010134312357],[-148.33333999966214,64.990450000173553],[-148.33190000048234,64.990479999528873],[-148.32590000106208,64.990170000078365],[-148.32231000049654,64.990130000064767],[-148.32025999914487,64.990250000105561],[-148.31676000057445,64.990179999426914],[-148.31335999941865,64.98960000053944],[-148.31105000059793,64.988729999588827],[-148.31050384626388,64.988467237401437],[-148.31049501907211,64.98840085534755],[-148.31247770195418,64.98754583573924],[-148.31579979986822,64.986658836550987],[-148.31873825152522,64.985314468338061],[-148.31934325336798,64.984207826615545],[-148.31961878879002,64.982847380864655],[-148.31999749758225,64.981718017636126],[-148.32027700262125,64.981647926590085],[-148.32176391033647,64.981687507508525],[-148.32209443235308,64.981397419007067],[-148.32163670316859,64.980805414352972],[-148.32185061981522,64.980252169452683],[-148.32349931659726,64.979995527364281],[-148.3252183231406,64.979727034050541],[-148.32678895297187,64.979191193386441],[-148.32701148857237,64.979246123665064],[-148.32839919646341,64.978973981604156],[-148.33125285600198,64.978513110515621],[-148.33266222849338,64.978604474570034],[-148.33570509639961,64.97837250539942],[-148.33773189690521,64.977755454570854],[-148.33956139788728,64.976095626883307],[-148.33982644152397,64.974781931197413],[-148.33877291356453,64.97370030159783],[-148.33930999841738,64.973620000345989] + ]] + }, + "properties": + { + "FID":0,"FireName":"Shovel Creek","FireYear":"2019","CalcAcres":12854.5,"PerimDate":1562544000000,"PerimTime":"2019/07/08 23:00","AgencyAcre":0,"Method":" ","Source":"Mixed Methods","SrcMethod":" ","SrcClass":" ","EditDate":1562630400000,"Comments":"Perimeter submitted by IMT.","FIREID":51181,"Final":" ","Latest":"No","RECORDNUMB":"319","FALSEALARM":"N","COMPLEX":" ","AFSNUMBER":"MBS4","DOFNUMBER":"911319","USFSNUMBER":"PNMBS4","ADDITIONAL":" ","PRESCRIBED":"N","ESTIMATEDT":19669324,"ESTIMATE_1":21298,"STRUCTURES":92,"STRUCTUR_1":1,"MGMTORGID":"DOF","MGMTOFFICE":"FAS","MGMTOPTION":"Full","LATITUDE":65,"LONGITUDE":-148.40000000000001,"MAPNAME":" ","NEARESTWEA":" ","ORIGINOWNE":"State","ORIGINADMI":"AKAKS-Alaska-Other","DISCOVERYD":1561075200000,"DISCOVERYS":0.10000000000000001,"IADATETIME":null,"IASIZE":0,"CONTROLDAT":null,"OUTDATE":null,"INITIALBEH":"Rank 1 - Smoldering","PRIMARYFUE":"Dead White Spruce","GENERALCAU":"Lightning","SPECIFICCA":" ","ORIGINSLOP":"Unknown","ORIGINASPE":"Unknown","ORIGINELEV":"Unknown","AREA":0.0098841950000000001,"LEN":1.274108843 + } + } + ] +} \ No newline at end of file diff --git a/tests/yml_tests/Resources/geojsons_valid/Multi-FC_Multi-GC_1.geojson b/tests/yml_tests/Resources/geojsons_valid/Multi-FC_Multi-GC_1.geojson new file mode 100644 index 0000000..5b0fc07 --- /dev/null +++ b/tests/yml_tests/Resources/geojsons_valid/Multi-FC_Multi-GC_1.geojson @@ -0,0 +1,68 @@ +{ + "type": "FeatureCollection", + "features": + [ + { + "type": "Feature", + "geometry": { + "type": "GeometryCollection", + "geometries": + [ + { + "type": "Point", + "coordinates": [102.0, -90.0] + }, + { + "type": "Polygon", + "coordinates": + [[ + [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] + ]] + } + ] + }, + "properties": { + "prop0": "value0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] + ] + }, + "properties": { + "prop0": "value0", + "prop1": 0.0 + } + }, + { + "type": "Feature", + "geometry": { + "type": "GeometryCollection", + "geometries": + [ + { + "coordinates": + [[ + [0, 0], [0, 10], [0.5, 15], [10, 15], [15, 8], [15, 0] + ]] + }, + { + "type": "Polygon", + "coordinates": + [[ + [30, 10], [40, 40], [20, 40], [10, 20], [30, 10] + ]] + } + ] + }, + "properties": { + "prop0": "value0", + "prop1": { "this": "that" } + } + } + ] +} \ No newline at end of file diff --git a/tests/yml_tests/Resources/geojsons_valid/SmallestJson_1.geojson b/tests/yml_tests/Resources/geojsons_valid/SmallestJson_1.geojson new file mode 100644 index 0000000..47419de --- /dev/null +++ b/tests/yml_tests/Resources/geojsons_valid/SmallestJson_1.geojson @@ -0,0 +1,4 @@ +{ + "type": "Point", + "coordinates": [125.6, 10.1] +} \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/BillionLaughs.kml b/tests/yml_tests/Resources/kmls_invalid/BillionLaughs.kml new file mode 100644 index 0000000..1975b35 --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/BillionLaughs.kml @@ -0,0 +1,7 @@ + + + + +]> +&d; \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/Blowup.kml b/tests/yml_tests/Resources/kmls_invalid/Blowup.kml new file mode 100644 index 0000000..3940ec3 --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/Blowup.kml @@ -0,0 +1,4 @@ + +]> +&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a; \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/LocalEntityExpansion.kml b/tests/yml_tests/Resources/kmls_invalid/LocalEntityExpansion.kml new file mode 100644 index 0000000..1b1d323 --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/LocalEntityExpansion.kml @@ -0,0 +1,4 @@ + +]> + \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/RemoteEntityExpansion.kml b/tests/yml_tests/Resources/kmls_invalid/RemoteEntityExpansion.kml new file mode 100644 index 0000000..145053c --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/RemoteEntityExpansion.kml @@ -0,0 +1,4 @@ + +]> + \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/RetrieveDTD.kml b/tests/yml_tests/Resources/kmls_invalid/RetrieveDTD.kml new file mode 100644 index 0000000..eac9064 --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/RetrieveDTD.kml @@ -0,0 +1,7 @@ + + + + + text + \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/XSLTransformation.kml b/tests/yml_tests/Resources/kmls_invalid/XSLTransformation.kml new file mode 100644 index 0000000..c6f02b1 --- /dev/null +++ b/tests/yml_tests/Resources/kmls_invalid/XSLTransformation.kml @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_invalid/emptyfile.kml b/tests/yml_tests/Resources/kmls_invalid/emptyfile.kml new file mode 100644 index 0000000..e69de29 diff --git a/tests/yml_tests/Resources/kmls_valid/3D_coords.kml b/tests/yml_tests/Resources/kmls_valid/3D_coords.kml new file mode 100644 index 0000000..5fdb06d --- /dev/null +++ b/tests/yml_tests/Resources/kmls_valid/3D_coords.kml @@ -0,0 +1,43 @@ + + + + + Portland + + -122.681944,45.52,0 + + + + Rio de Janeiro + + -43.196389,-22.908333,0 + + + + Istanbul + + 28.976018,41.01224,0 + + + + Reykjavik + + -21.933333,64.133333,0 + + + + Simple Polygon + + + + -122.681944,45.52,0 + -43.196389,-22.908333,0 + 28.976018,41.01224,0 + -21.933333,64.133333,0 + -122.681944,45.52,0 + + + + + + \ No newline at end of file diff --git a/tests/yml_tests/Resources/kmls_valid/Iceland1.kml b/tests/yml_tests/Resources/kmls_valid/Iceland1.kml new file mode 100644 index 0000000..cd20d7e --- /dev/null +++ b/tests/yml_tests/Resources/kmls_valid/Iceland1.kml @@ -0,0 +1,107 @@ + + + + Untitled layer + + + + + normal + #poly-000000-1200-77-nodesc-normal + + + highlight + #poly-000000-1200-77-nodesc-highlight + + + + Iceland + #poly-000000-1200-77-nodesc + + + + 1 + + -20.3807584,63.5965732,0 + -19.062399,63.3807976,0 + -17.9198209,63.4201507,0 + -14.843649,64.310496,0 + -13.437399,65.0620383,0 + -13.569235,65.5030382,0 + -14.4041959,65.8109752,0 + -14.7997037,65.8109752,0 + -14.5799772,66.0261483,0 + -15.1073209,66.0974717,0 + -14.4920865,66.3455331,0 + -14.7118131,66.503718,0 + -15.4149381,66.2395195,0 + -16.0741178,66.5911667,0 + -16.5135709,66.5737016,0 + -16.5575162,66.1685952,0 + -16.9969693,66.1508331,0 + -17.2166959,66.274907,0 + -17.4803678,66.0439979,0 + -18.2274381,66.2572195,0 + -18.1834928,65.8829005,0 + -18.7987272,66.2925822,0 + -19.4139615,66.0796596,0 + -19.4579068,65.846963,0 + -20.1610318,66.2040823,0 + -20.468649,66.1330584,0 + -20.3807584,65.5939879,0 + -20.7762662,65.7388482,0 + -21.0399381,65.3934788,0 + -21.2596647,65.6665193,0 + -21.1278287,65.9008504,0 + -22.6219693,66.5212323,0 + -24.4237272,65.5758233,0 + -23.984274,65.3385269,0 + -23.0614225,65.5030382,0 + -21.9627897,65.4483158,0 + -22.6219693,65.3201841,0 + -22.4022428,65.1729804,0 + -21.6551725,65.1545222,0 + -21.8309537,65.0249546,0 + -23.9403287,64.9320195,0 + -23.6766568,64.6324496,0 + -23.4569303,64.7639208,0 + -22.3582975,64.7826503,0 + -21.8309537,64.1959586,0 + -22.3582975,64.0617305,0 + -22.9295865,64.2150811,0 + -22.70986,63.7719082,0 + -21.1278287,63.8881966,0 + -20.3807584,63.5965732,0 + + + + + + + diff --git a/tests/yml_tests/Resources/kmls_valid/Polygon_point_line.kml b/tests/yml_tests/Resources/kmls_valid/Polygon_point_line.kml new file mode 100644 index 0000000..faf98ba --- /dev/null +++ b/tests/yml_tests/Resources/kmls_valid/Polygon_point_line.kml @@ -0,0 +1,171 @@ + + + + Untitled map + + + + + + normal + #icon-1899-0288D1-nodesc-normal + + + highlight + #icon-1899-0288D1-nodesc-highlight + + + + + + + normal + #line-000000-1200-nodesc-normal + + + highlight + #line-000000-1200-nodesc-highlight + + + + + + + normal + #poly-000000-1200-77-nodesc-normal + + + highlight + #poly-000000-1200-77-nodesc-highlight + + + + MultiPoint + + Canada + #icon-1899-0288D1-nodesc + + + -79.9165174,47.2629855,0 + + + + + NC + #poly-000000-1200-77-nodesc + + + + 1 + + -81.608412,36.5963103,0 + -82.1577284,36.1362865,0 + -82.7729628,36.0119699,0 + -83.1025526,35.7449162,0 + -83.9594862,35.5485053,0 + -84.0473768,35.2798953,0 + -84.3110487,35.3157617,0 + -84.289076,34.9563835,0 + -83.0366346,34.9743901,0 + -82.4433729,35.1542378,0 + -81.0590956,35.1183,0 + -80.773451,34.8121887,0 + -79.6967909,34.8302269,0 + -78.4663221,33.7957745,0 + -76.4887831,34.6858109,0 + -75.7417128,35.5663808,0 + -75.851576,36.5610205,0 + -81.608412,36.5963103,0 + + + + + + + Ohio + #line-000000-1200-nodesc + + 1 + + -83.4541151,40.1269874,0 + -83.1025526,39.468607,0 + -81.608412,39.6887673,0 + -82.1357557,40.3282965,0 + + + + + + diff --git a/tests/yml_tests/Resources/kmls_valid/asf-datapool-results-2019-10-01_10-29-15.kml b/tests/yml_tests/Resources/kmls_valid/asf-datapool-results-2019-10-01_10-29-15.kml new file mode 100644 index 0000000..1b0e87a --- /dev/null +++ b/tests/yml_tests/Resources/kmls_valid/asf-datapool-results-2019-10-01_10-29-15.kml @@ -0,0 +1,5224 @@ + + + + ASF Datapool Search Results + Search Performed: + + + S1B_EW_GRDM_1SDV_20191001T100340_20191001T100456_018280_0226D5_F971 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-10-01T10:04:56.000000

https://datapool.asf.alaska.edu/GRD_MD/SB/S1B_EW_GRDM_1SDV_20191001T100340_20191001T100456_018280_0226D5_F971.zip

Metadata

  • Processing type: L1 Detected Mid-Res Dual-Pol (GRD-MD)
  • Frame: 605
  • Path: 54
  • Orbit: 18280
  • Start time: 2019-10-01T10:03:40.000000
  • End time: 2019-10-01T10:04:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -68.074432,-7.635221,2000 + -67.078987,-3.082546,2000 + -63.431179,-3.881408,2000 + -64.402336,-8.455880,2000 + -68.074432,-7.635221,2000 + + + + +
+ + S1B_EW_GRDM_1SDV_20191001T100340_20191001T100456_018280_0226D5_F971 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-10-01T10:04:56.000000

https://datapool.asf.alaska.edu/METADATA_GRD_MD/SB/S1B_EW_GRDM_1SDV_20191001T100340_20191001T100456_018280_0226D5_F971.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-MD)
  • Frame: 605
  • Path: 54
  • Orbit: 18280
  • Start time: 2019-10-01T10:03:40.000000
  • End time: 2019-10-01T10:04:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -68.074432,-7.635221,2000 + -67.078987,-3.082546,2000 + -63.431179,-3.881408,2000 + -64.402336,-8.455880,2000 + -68.074432,-7.635221,2000 + + + + +
+ + S1B_EW_RAW__0SDV_20191001T100340_20191001T100456_018280_0226D5_89AD + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-10-01T10:04:56.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_EW_RAW__0SDV_20191001T100340_20191001T100456_018280_0226D5_89AD.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 605
  • Path: 54
  • Orbit: 18280
  • Start time: 2019-10-01T10:03:40.000000
  • End time: 2019-10-01T10:04:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.357200,-8.580100,2000 + -67.994700,-8.017200,2000 + -66.970300,-3.492600,2000 + -63.364500,-4.031200,2000 + -64.357200,-8.580100,2000 + + + + +
+ + S1B_EW_RAW__0SDV_20191001T100340_20191001T100456_018280_0226D5_89AD + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-10-01T10:04:56.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_EW_RAW__0SDV_20191001T100340_20191001T100456_018280_0226D5_89AD.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 605
  • Path: 54
  • Orbit: 18280
  • Start time: 2019-10-01T10:03:40.000000
  • End time: 2019-10-01T10:04:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.357200,-8.580100,2000 + -67.994700,-8.017200,2000 + -66.970300,-3.492600,2000 + -63.364500,-4.031200,2000 + -64.357200,-8.580100,2000 + + + + +
+ + S1A_WV_OCN__2SSV_20190930T221535_20190930T222904_029256_035300_AB5A + <![CDATA[

Sentinel-1A (Wave Mode. Low data rate and 5 m x 20 m spatial resolution. Sampled images of 20 km x 20 km at 100 km intervals along the orbit. The Wave mode at VV polarization is the default mode for acquiring data over open ocean.), acquired 2019-09-30T22:29:04.000000

https://datapool.asf.alaska.edu/OCN/SA/S1A_WV_OCN__2SSV_20190930T221535_20190930T222904_029256_035300_AB5A.zip

Metadata

  • Processing type: L2 Ocean (OCN)
  • Frame: 987
  • Path: 134
  • Orbit: 29256
  • Start time: 2019-09-30T22:15:35.000000
  • End time: 2019-09-30T22:29:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -46.642569,-56.578380,2000 + -47.761382,-54.895349,2000 + -48.781962,-53.200531,2000 + -49.730520,-51.497731,2000 + -50.615770,-49.788764,2000 + -51.460283,-48.077002,2000 + -52.241010,-46.356382,2000 + -52.978505,-44.631022,2000 + -53.677622,-42.900615,2000 + -54.342011,-41.166929,2000 + -54.988742,-39.432062,2000 + -55.594579,-37.690780,2000 + -56.175548,-35.946634,2000 + -56.732381,-34.199841,2000 + -57.281491,-32.452953,2000 + -57.801248,-30.701282,2000 + -58.304364,-28.947411,2000 + -58.792302,-27.191685,2000 + -59.266080,-25.433502,2000 + -59.736360,-23.675630,2000 + -60.185314,-21.914155,2000 + -60.619437,-20.150295,2000 + -61.047788,-18.385658,2000 + -61.480495,-16.622576,2000 + -61.896030,-14.856138,2000 + -62.303230,-13.088580,2000 + -62.702006,-11.319346,2000 + -61.251516,-10.066390,2000 + -60.842590,-11.831128,2000 + -60.422767,-13.594349,2000 + -60.000266,-15.357256,2000 + -59.564157,-17.118505,2000 + -59.124942,-18.879377,2000 + -58.667445,-20.636851,2000 + -58.201988,-22.393520,2000 + -57.723160,-24.148612,2000 + -57.229749,-25.901477,2000 + -56.721787,-27.652747,2000 + -56.190869,-29.398927,2000 + -55.646070,-31.144330,2000 + -55.082039,-32.887384,2000 + -54.497325,-34.627433,2000 + -53.880483,-36.362411,2000 + -53.242048,-38.096160,2000 + -52.573723,-39.825774,2000 + -51.872445,-41.550649,2000 + -51.134484,-43.270502,2000 + -50.348222,-44.983695,2000 + -49.523345,-46.692522,2000 + -48.647246,-48.394488,2000 + -47.712776,-50.090332,2000 + -46.705403,-51.776321,2000 + -45.631342,-53.455005,2000 + -44.472928,-55.123376,2000 + -43.218048,-56.780065,2000 + -45.443956,-58.254030,2000 + -46.642569,-56.578380,2000 + + + + +
+ + S1A_WV_OCN__2SSV_20190930T221535_20190930T222904_029256_035300_AB5A + <![CDATA[

Sentinel-1A (Wave Mode. Low data rate and 5 m x 20 m spatial resolution. Sampled images of 20 km x 20 km at 100 km intervals along the orbit. The Wave mode at VV polarization is the default mode for acquiring data over open ocean.), acquired 2019-09-30T22:29:04.000000

https://datapool.asf.alaska.edu/METADATA_OCN/SA/S1A_WV_OCN__2SSV_20190930T221535_20190930T222904_029256_035300_AB5A.iso.xml

Metadata

  • Processing type: XML Metadata (OCN)
  • Frame: 987
  • Path: 134
  • Orbit: 29256
  • Start time: 2019-09-30T22:15:35.000000
  • End time: 2019-09-30T22:29:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -46.642569,-56.578380,2000 + -47.761382,-54.895349,2000 + -48.781962,-53.200531,2000 + -49.730520,-51.497731,2000 + -50.615770,-49.788764,2000 + -51.460283,-48.077002,2000 + -52.241010,-46.356382,2000 + -52.978505,-44.631022,2000 + -53.677622,-42.900615,2000 + -54.342011,-41.166929,2000 + -54.988742,-39.432062,2000 + -55.594579,-37.690780,2000 + -56.175548,-35.946634,2000 + -56.732381,-34.199841,2000 + -57.281491,-32.452953,2000 + -57.801248,-30.701282,2000 + -58.304364,-28.947411,2000 + -58.792302,-27.191685,2000 + -59.266080,-25.433502,2000 + -59.736360,-23.675630,2000 + -60.185314,-21.914155,2000 + -60.619437,-20.150295,2000 + -61.047788,-18.385658,2000 + -61.480495,-16.622576,2000 + -61.896030,-14.856138,2000 + -62.303230,-13.088580,2000 + -62.702006,-11.319346,2000 + -61.251516,-10.066390,2000 + -60.842590,-11.831128,2000 + -60.422767,-13.594349,2000 + -60.000266,-15.357256,2000 + -59.564157,-17.118505,2000 + -59.124942,-18.879377,2000 + -58.667445,-20.636851,2000 + -58.201988,-22.393520,2000 + -57.723160,-24.148612,2000 + -57.229749,-25.901477,2000 + -56.721787,-27.652747,2000 + -56.190869,-29.398927,2000 + -55.646070,-31.144330,2000 + -55.082039,-32.887384,2000 + -54.497325,-34.627433,2000 + -53.880483,-36.362411,2000 + -53.242048,-38.096160,2000 + -52.573723,-39.825774,2000 + -51.872445,-41.550649,2000 + -51.134484,-43.270502,2000 + -50.348222,-44.983695,2000 + -49.523345,-46.692522,2000 + -48.647246,-48.394488,2000 + -47.712776,-50.090332,2000 + -46.705403,-51.776321,2000 + -45.631342,-53.455005,2000 + -44.472928,-55.123376,2000 + -43.218048,-56.780065,2000 + -45.443956,-58.254030,2000 + -46.642569,-56.578380,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190929T223522_20190929T223553_018258_022621_BB2D + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190929T223522_20190929T223553_018258_022621_BB2D.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1134
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:22.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.942500,-14.451900,2000 + -63.201300,-14.824400,2000 + -63.644900,-12.956000,2000 + -61.404200,-12.592100,2000 + -60.942500,-14.451900,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190929T223522_20190929T223553_018258_022621_BB2D + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190929T223522_20190929T223553_018258_022621_BB2D.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1134
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:22.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.942500,-14.451900,2000 + -63.201300,-14.824400,2000 + -63.644900,-12.956000,2000 + -61.404200,-12.592100,2000 + -60.942500,-14.451900,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190929T223526_20190929T223553_018258_022621_2525 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190929T223526_20190929T223553_018258_022621_2525.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1135
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:26.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.318542,-12.191003,2000 + -60.919712,-13.852766,2000 + -63.220245,-14.383909,2000 + -63.605038,-12.715724,2000 + -61.318542,-12.191003,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190929T223526_20190929T223553_018258_022621_2525 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190929T223526_20190929T223553_018258_022621_2525.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1135
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:26.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.318542,-12.191003,2000 + -60.919712,-13.852766,2000 + -63.220245,-14.383909,2000 + -63.605038,-12.715724,2000 + -61.318542,-12.191003,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190929T223524_20190929T223553_018258_022621_1D8C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190929T223524_20190929T223553_018258_022621_1D8C.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1134
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:24.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.338463,-12.194787,2000 + -60.918777,-13.928713,2000 + -63.203949,-14.456351,2000 + -63.605854,-12.715029,2000 + -61.338463,-12.194787,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190929T223524_20190929T223553_018258_022621_1D8C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T22:35:53.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190929T223524_20190929T223553_018258_022621_1D8C.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1134
  • Path: 32
  • Orbit: 18258
  • Start time: 2019-09-29T22:35:24.000000
  • End time: 2019-09-29T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.338463,-12.194787,2000 + -60.918777,-13.928713,2000 + -63.203949,-14.456351,2000 + -63.605854,-12.715029,2000 + -61.338463,-12.194787,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093414_20190929T093446_029234_035231_8A5F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:46.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190929T093414_20190929T093446_029234_035231_8A5F.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:14.000000
  • End time: 2019-09-29T09:34:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.132900,-15.833600,2000 + -61.402400,-15.456300,2000 + -60.914200,-13.516100,2000 + -58.665100,-13.884100,2000 + -59.132900,-15.833600,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093414_20190929T093446_029234_035231_8A5F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:46.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190929T093414_20190929T093446_029234_035231_8A5F.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:14.000000
  • End time: 2019-09-29T09:34:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.132900,-15.833600,2000 + -61.402400,-15.456300,2000 + -60.914200,-13.516100,2000 + -58.665100,-13.884100,2000 + -59.132900,-15.833600,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093416_20190929T093443_029234_035231_C77A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:43.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190929T093416_20190929T093443_029234_035231_C77A.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:16.000000
  • End time: 2019-09-29T09:34:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.412338,-14.919966,2000 + -61.013508,-13.294852,2000 + -58.703419,-13.826817,2000 + -59.083881,-15.459133,2000 + -61.412338,-14.919966,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093416_20190929T093443_029234_035231_C77A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:43.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190929T093416_20190929T093443_029234_035231_C77A.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:16.000000
  • End time: 2019-09-29T09:34:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.412338,-14.919966,2000 + -61.013508,-13.294852,2000 + -58.703419,-13.826817,2000 + -59.083881,-15.459133,2000 + -61.412338,-14.919966,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093417_20190929T093442_029234_035231_8B7A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:42.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093417_20190929T093442_029234_035231_8B7A.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:17.000000
  • End time: 2019-09-29T09:34:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.413391,-14.860434,2000 + -61.048836,-13.358706,2000 + -58.720894,-13.895017,2000 + -59.071293,-15.402749,2000 + -61.413391,-14.860434,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093417_20190929T093442_029234_035231_8B7A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:42.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093417_20190929T093442_029234_035231_8B7A.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 639
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:34:17.000000
  • End time: 2019-09-29T09:34:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.413391,-14.860434,2000 + -61.048836,-13.358706,2000 + -58.720894,-13.895017,2000 + -59.071293,-15.402749,2000 + -61.413391,-14.860434,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093349_20190929T093421_029234_035231_1F9A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:21.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190929T093349_20190929T093421_029234_035231_1F9A.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:49.000000
  • End time: 2019-09-29T09:34:21.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.771100,-14.329500,2000 + -61.024600,-13.959400,2000 + -60.546000,-12.017400,2000 + -58.310600,-12.378700,2000 + -58.771100,-14.329500,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093349_20190929T093421_029234_035231_1F9A + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:21.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190929T093349_20190929T093421_029234_035231_1F9A.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:49.000000
  • End time: 2019-09-29T09:34:21.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.771100,-14.329500,2000 + -61.024600,-13.959400,2000 + -60.546000,-12.017400,2000 + -58.310600,-12.378700,2000 + -58.771100,-14.329500,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093351_20190929T093418_029234_035231_993C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:18.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190929T093351_20190929T093418_029234_035231_993C.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:51.000000
  • End time: 2019-09-29T09:34:18.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.046715,-13.429295,2000 + -60.655418,-11.803146,2000 + -58.360661,-12.328665,2000 + -58.735584,-13.961761,2000 + -61.046715,-13.429295,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093351_20190929T093418_029234_035231_993C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:18.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190929T093351_20190929T093418_029234_035231_993C.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:51.000000
  • End time: 2019-09-29T09:34:18.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.046715,-13.429295,2000 + -60.655418,-11.803146,2000 + -58.360661,-12.328665,2000 + -58.735584,-13.961761,2000 + -61.046715,-13.429295,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093352_20190929T093417_029234_035231_80BE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:17.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093352_20190929T093417_029234_035231_80BE.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:52.000000
  • End time: 2019-09-29T09:34:17.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.047646,-13.358891,2000 + -60.686409,-11.856988,2000 + -58.372009,-12.387192,2000 + -58.720871,-13.894928,2000 + -61.047646,-13.358891,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093352_20190929T093417_029234_035231_80BE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:34:17.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093352_20190929T093417_029234_035231_80BE.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 634
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:52.000000
  • End time: 2019-09-29T09:34:17.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.047646,-13.358891,2000 + -60.686409,-11.856988,2000 + -58.372009,-12.387192,2000 + -58.720871,-13.894928,2000 + -61.047646,-13.358891,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093324_20190929T093356_029234_035231_15EF + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:56.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190929T093324_20190929T093356_029234_035231_15EF.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:24.000000
  • End time: 2019-09-29T09:33:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.415000,-12.824400,2000 + -60.654300,-12.461100,2000 + -60.184700,-10.517500,2000 + -57.961400,-10.872300,2000 + -58.415000,-12.824400,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093324_20190929T093356_029234_035231_15EF + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:56.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190929T093324_20190929T093356_029234_035231_15EF.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:24.000000
  • End time: 2019-09-29T09:33:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.415000,-12.824400,2000 + -60.654300,-12.461100,2000 + -60.184700,-10.517500,2000 + -57.961400,-10.872300,2000 + -58.415000,-12.824400,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093327_20190929T093354_029234_035231_6669 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:54.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190929T093327_20190929T093354_029234_035231_6669.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:27.000000
  • End time: 2019-09-29T09:33:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.685883,-11.938179,2000 + -60.301697,-10.311321,2000 + -58.018845,-10.830960,2000 + -58.388599,-12.464528,2000 + -60.685883,-11.938179,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190929T093327_20190929T093354_029234_035231_6669 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:54.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190929T093327_20190929T093354_029234_035231_6669.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:27.000000
  • End time: 2019-09-29T09:33:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.685883,-11.938179,2000 + -60.301697,-10.311321,2000 + -58.018845,-10.830960,2000 + -58.388599,-12.464528,2000 + -60.685883,-11.938179,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093327_20190929T093352_029234_035231_991C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:52.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093327_20190929T093352_029234_035231_991C.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:27.000000
  • End time: 2019-09-29T09:33:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.685226,-11.857170,2000 + -60.331242,-10.354311,2000 + -58.028744,-10.878596,2000 + -58.371990,-12.387102,2000 + -60.685226,-11.857170,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190929T093327_20190929T093352_029234_035231_991C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:52.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190929T093327_20190929T093352_029234_035231_991C.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 629
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:33:27.000000
  • End time: 2019-09-29T09:33:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.685226,-11.857170,2000 + -60.331242,-10.354311,2000 + -58.028744,-10.878596,2000 + -58.371990,-12.387102,2000 + -60.685226,-11.857170,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093259_20190929T093331_029234_035231_A306 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:31.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190929T093259_20190929T093331_029234_035231_A306.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 624
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:32:59.000000
  • End time: 2019-09-29T09:33:31.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.064200,-11.318200,2000 + -60.291000,-10.961600,2000 + -59.829800,-9.016500,2000 + -57.616900,-9.365100,2000 + -58.064200,-11.318200,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190929T093259_20190929T093331_029234_035231_A306 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-29T09:33:31.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190929T093259_20190929T093331_029234_035231_A306.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 624
  • Path: 112
  • Orbit: 29234
  • Start time: 2019-09-29T09:32:59.000000
  • End time: 2019-09-29T09:33:31.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.064200,-11.318200,2000 + -60.291000,-10.961600,2000 + -59.829800,-9.016500,2000 + -57.616900,-9.365100,2000 + -58.064200,-11.318200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094126_20190928T094158_018236_02256E_61FE + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:58.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190928T094126_20190928T094158_018236_02256E_61FE.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:26.000000
  • End time: 2019-09-28T09:41:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.905300,-14.651200,2000 + -63.162000,-14.279600,2000 + -62.681400,-12.338000,2000 + -60.443300,-12.700600,2000 + -60.905300,-14.651200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094126_20190928T094158_018236_02256E_61FE + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:58.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190928T094126_20190928T094158_018236_02256E_61FE.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:26.000000
  • End time: 2019-09-28T09:41:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.905300,-14.651200,2000 + -63.162000,-14.279600,2000 + -62.681400,-12.338000,2000 + -60.443300,-12.700600,2000 + -60.905300,-14.651200,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094129_20190928T094156_018236_02256E_B947 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:56.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190928T094129_20190928T094156_018236_02256E_B947.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:29.000000
  • End time: 2019-09-28T09:41:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.268002,-13.730800,2000 + -62.876007,-12.111093,2000 + -60.515995,-12.652742,2000 + -60.890900,-14.279663,2000 + -63.268002,-13.730800,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094129_20190928T094156_018236_02256E_B947 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:56.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190928T094129_20190928T094156_018236_02256E_B947.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:29.000000
  • End time: 2019-09-28T09:41:56.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.268002,-13.730800,2000 + -62.876007,-12.111093,2000 + -60.515995,-12.652742,2000 + -60.890900,-14.279663,2000 + -63.268002,-13.730800,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094130_20190928T094155_018236_02256E_0C7B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:55.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094130_20190928T094155_018236_02256E_0C7B.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:30.000000
  • End time: 2019-09-28T09:41:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.362293,-13.638176,2000 + -63.002510,-12.136214,2000 + -60.532032,-12.703918,2000 + -60.878185,-14.212244,2000 + -63.362293,-13.638176,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094130_20190928T094155_018236_02256E_0C7B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:55.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094130_20190928T094155_018236_02256E_0C7B.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 635
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:30.000000
  • End time: 2019-09-28T09:41:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.362293,-13.638176,2000 + -63.002510,-12.136214,2000 + -60.532032,-12.703918,2000 + -60.878185,-14.212244,2000 + -63.362293,-13.638176,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094101_20190928T094133_018236_02256E_B0C6 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:33.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190928T094101_20190928T094133_018236_02256E_B0C6.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:01.000000
  • End time: 2019-09-28T09:41:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.548000,-13.146300,2000 + -62.790100,-12.781600,2000 + -62.318700,-10.838300,2000 + -60.093000,-11.194500,2000 + -60.548000,-13.146300,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094101_20190928T094133_018236_02256E_B0C6 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:33.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190928T094101_20190928T094133_018236_02256E_B0C6.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:01.000000
  • End time: 2019-09-28T09:41:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.548000,-13.146300,2000 + -62.790100,-12.781600,2000 + -62.318700,-10.838300,2000 + -60.093000,-11.194500,2000 + -60.548000,-13.146300,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094104_20190928T094131_018236_02256E_34F0 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:31.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190928T094104_20190928T094131_018236_02256E_34F0.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:04.000000
  • End time: 2019-09-28T09:41:31.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.908295,-12.239688,2000 + -62.523422,-10.618765,2000 + -60.178299,-11.153781,2000 + -60.548092,-12.781671,2000 + -62.908295,-12.239688,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094104_20190928T094131_018236_02256E_34F0 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:31.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190928T094104_20190928T094131_018236_02256E_34F0.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:04.000000
  • End time: 2019-09-28T09:41:31.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.908295,-12.239688,2000 + -62.523422,-10.618765,2000 + -60.178299,-11.153781,2000 + -60.548092,-12.781671,2000 + -62.908295,-12.239688,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094105_20190928T094130_018236_02256E_B08B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:30.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094105_20190928T094130_018236_02256E_B08B.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:05.000000
  • End time: 2019-09-28T09:41:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.001324,-12.136397,2000 + -62.644371,-10.634364,2000 + -60.186790,-11.195615,2000 + -60.532013,-12.703829,2000 + -63.001324,-12.136397,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094105_20190928T094130_018236_02256E_B08B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:30.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094105_20190928T094130_018236_02256E_B08B.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 630
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:41:05.000000
  • End time: 2019-09-28T09:41:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.001324,-12.136397,2000 + -62.644371,-10.634364,2000 + -60.186790,-11.195615,2000 + -60.532013,-12.703829,2000 + -63.001324,-12.136397,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094036_20190928T094108_018236_02256E_09C4 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:08.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190928T094036_20190928T094108_018236_02256E_09C4.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:36.000000
  • End time: 2019-09-28T09:41:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.196100,-11.640400,2000 + -62.425300,-11.282300,2000 + -61.962400,-9.337500,2000 + -59.747500,-9.687400,2000 + -60.196100,-11.640400,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094036_20190928T094108_018236_02256E_09C4 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:08.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190928T094036_20190928T094108_018236_02256E_09C4.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:36.000000
  • End time: 2019-09-28T09:41:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.196100,-11.640400,2000 + -62.425300,-11.282300,2000 + -61.962400,-9.337500,2000 + -59.747500,-9.687400,2000 + -60.196100,-11.640400,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094038_20190928T094106_018236_02256E_497E + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:06.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190928T094038_20190928T094106_018236_02256E_497E.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:38.000000
  • End time: 2019-09-28T09:41:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.552330,-10.748102,2000 + -62.161110,-9.069659,2000 + -59.827293,-9.598494,2000 + -60.204960,-11.283903,2000 + -62.552330,-10.748102,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094038_20190928T094106_018236_02256E_497E + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:06.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190928T094038_20190928T094106_018236_02256E_497E.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:38.000000
  • End time: 2019-09-28T09:41:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.552330,-10.748102,2000 + -62.161110,-9.069659,2000 + -59.827293,-9.598494,2000 + -60.204960,-11.283903,2000 + -62.552330,-10.748102,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094040_20190928T094105_018236_02256E_F67A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:05.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094040_20190928T094105_018236_02256E_F67A.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:40.000000
  • End time: 2019-09-28T09:41:05.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.643372,-10.634502,2000 + -62.294060,-9.131420,2000 + -59.847507,-9.686445,2000 + -60.186771,-11.195525,2000 + -62.643372,-10.634502,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094040_20190928T094105_018236_02256E_F67A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:41:05.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094040_20190928T094105_018236_02256E_F67A.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 625
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:40.000000
  • End time: 2019-09-28T09:41:05.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.643372,-10.634502,2000 + -62.294060,-9.131420,2000 + -59.847507,-9.686445,2000 + -60.186771,-11.195525,2000 + -62.643372,-10.634502,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094011_20190928T094043_018236_02256E_613F + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:43.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190928T094011_20190928T094043_018236_02256E_613F.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.849300,-10.133600,2000 + -62.067200,-9.781800,2000 + -61.612300,-7.835600,2000 + -59.406500,-8.179500,2000 + -59.849300,-10.133600,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190928T094011_20190928T094043_018236_02256E_613F + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:43.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190928T094011_20190928T094043_018236_02256E_613F.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.849300,-10.133600,2000 + -62.067200,-9.781800,2000 + -61.612300,-7.835600,2000 + -59.406500,-8.179500,2000 + -59.849300,-10.133600,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094011_20190928T094040_018236_02256E_284D + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:40.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094011_20190928T094040_018236_02256E_284D.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:40.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.293064,-9.131556,2000 + -61.894424,-7.384912,2000 + -59.458382,-7.932955,2000 + -59.847488,-9.686356,2000 + -62.293064,-9.131556,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190928T094011_20190928T094040_018236_02256E_284D + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:40.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190928T094011_20190928T094040_018236_02256E_284D.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:40.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.293064,-9.131556,2000 + -61.894424,-7.384912,2000 + -59.458382,-7.932955,2000 + -59.847488,-9.686356,2000 + -62.293064,-9.131556,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094011_20190928T094040_018236_02256E_04D7 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:40.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190928T094011_20190928T094040_018236_02256E_04D7.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:40.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.192486,-9.206050,2000 + -61.781509,-7.410099,2000 + -59.458809,-7.932316,2000 + -59.857563,-9.735460,2000 + -62.192486,-9.206050,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190928T094011_20190928T094040_018236_02256E_04D7 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-28T09:40:40.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190928T094011_20190928T094040_018236_02256E_04D7.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 620
  • Path: 10
  • Orbit: 18236
  • Start time: 2019-09-28T09:40:11.000000
  • End time: 2019-09-28T09:40:40.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.192486,-9.206050,2000 + -61.781509,-7.410099,2000 + -59.458809,-7.932316,2000 + -59.857563,-9.735460,2000 + -62.192486,-9.206050,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T095011_20190927T095037_029205_035121_C1D9 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T095011_20190927T095037_029205_035121_C1D9.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 633
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:11.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.033409,-12.916741,2000 + -64.656487,-11.316236,2000 + -62.366024,-11.839787,2000 + -62.730343,-13.446354,2000 + -65.033409,-12.916741,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T095007_20190927T095037_029205_035121_14BB + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190927T095007_20190927T095037_029205_035121_14BB.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 632
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:07.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.721000,-13.638100,2000 + -64.967600,-13.271200,2000 + -64.528300,-11.473400,2000 + -62.297600,-11.832200,2000 + -62.721000,-13.638100,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T095011_20190927T095037_029205_035121_C1D9 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T095011_20190927T095037_029205_035121_C1D9.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 633
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:11.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.033409,-12.916741,2000 + -64.656487,-11.316236,2000 + -62.366024,-11.839787,2000 + -62.730343,-13.446354,2000 + -65.033409,-12.916741,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T095007_20190927T095037_029205_035121_14BB + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190927T095007_20190927T095037_029205_035121_14BB.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 632
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:07.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.721000,-13.638100,2000 + -64.967600,-13.271200,2000 + -64.528300,-11.473400,2000 + -62.297600,-11.832200,2000 + -62.721000,-13.638100,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T095009_20190927T095037_029205_035121_7113 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190927T095009_20190927T095037_029205_035121_7113.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 632
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:09.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.026123,-12.919312,2000 + -64.625252,-11.241514,2000 + -62.344784,-11.762549,2000 + -62.729561,-13.447391,2000 + -65.026123,-12.919312,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T095009_20190927T095037_029205_035121_7113 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:37.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190927T095009_20190927T095037_029205_035121_7113.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 632
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:50:09.000000
  • End time: 2019-09-27T09:50:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.026123,-12.919312,2000 + -64.625252,-11.241514,2000 + -62.344784,-11.762549,2000 + -62.729561,-13.447391,2000 + -65.026123,-12.919312,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094942_20190927T095014_029205_035121_3E3D + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:14.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190927T094942_20190927T095014_029205_035121_3E3D.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 627
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:42.000000
  • End time: 2019-09-27T09:50:14.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.401400,-12.278000,2000 + -64.635800,-11.917200,2000 + -64.169300,-9.973000,2000 + -61.950100,-10.325500,2000 + -62.401400,-12.278000,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094942_20190927T095014_029205_035121_3E3D + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:14.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190927T094942_20190927T095014_029205_035121_3E3D.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 627
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:42.000000
  • End time: 2019-09-27T09:50:14.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.401400,-12.278000,2000 + -64.635800,-11.917200,2000 + -64.169300,-9.973000,2000 + -61.950100,-10.325500,2000 + -62.401400,-12.278000,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094946_20190927T095011_029205_035121_6522 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:11.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094946_20190927T095011_029205_035121_6522.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 628
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:46.000000
  • End time: 2019-09-27T09:50:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.655396,-11.316395,2000 + -64.303154,-9.813269,2000 + -62.023808,-10.331038,2000 + -62.366001,-11.839697,2000 + -64.655396,-11.316395,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094946_20190927T095011_029205_035121_6522 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:11.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094946_20190927T095011_029205_035121_6522.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 628
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:46.000000
  • End time: 2019-09-27T09:50:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.655396,-11.316395,2000 + -64.303154,-9.813269,2000 + -62.023808,-10.331038,2000 + -62.366001,-11.839697,2000 + -64.655396,-11.316395,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094945_20190927T095011_029205_035121_AFA3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:11.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190927T094945_20190927T095011_029205_035121_AFA3.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 627
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:45.000000
  • End time: 2019-09-27T09:50:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.657303,-11.368976,2000 + -64.277336,-9.748677,2000 + -62.010662,-10.263388,2000 + -62.377056,-11.890246,2000 + -64.657303,-11.368976,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094945_20190927T095011_029205_035121_AFA3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:50:11.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190927T094945_20190927T095011_029205_035121_AFA3.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 627
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:45.000000
  • End time: 2019-09-27T09:50:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.657303,-11.368976,2000 + -64.277336,-9.748677,2000 + -62.010662,-10.263388,2000 + -62.377056,-11.890246,2000 + -64.657303,-11.368976,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094917_20190927T094949_029205_035121_54A2 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:49.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190927T094917_20190927T094949_029205_035121_54A2.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 622
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:17.000000
  • End time: 2019-09-27T09:49:49.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.052400,-10.771600,2000 + -64.274900,-10.417200,2000 + -63.816600,-8.471600,2000 + -61.607300,-8.818000,2000 + -62.052400,-10.771600,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094917_20190927T094949_029205_035121_54A2 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:49.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190927T094917_20190927T094949_029205_035121_54A2.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 622
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:17.000000
  • End time: 2019-09-27T09:49:49.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.052400,-10.771600,2000 + -64.274900,-10.417200,2000 + -63.816600,-8.471600,2000 + -61.607300,-8.818000,2000 + -62.052400,-10.771600,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094920_20190927T094947_029205_035121_847F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:47.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190927T094920_20190927T094947_029205_035121_847F.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 622
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:20.000000
  • End time: 2019-09-27T09:49:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.304329,-9.877401,2000 + -63.930653,-8.255889,2000 + -61.672592,-8.765211,2000 + -62.034550,-10.393072,2000 + -64.304329,-9.877401,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094920_20190927T094947_029205_035121_847F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:47.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190927T094920_20190927T094947_029205_035121_847F.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 622
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:20.000000
  • End time: 2019-09-27T09:49:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.304329,-9.877401,2000 + -63.930653,-8.255889,2000 + -61.672592,-8.765211,2000 + -62.034550,-10.393072,2000 + -64.304329,-9.877401,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094921_20190927T094946_029205_035121_3C48 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:46.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094921_20190927T094946_029205_035121_3C48.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 623
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:21.000000
  • End time: 2019-09-27T09:49:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.302246,-9.813384,2000 + -63.956326,-8.309488,2000 + -61.686333,-8.821680,2000 + -62.023785,-10.330948,2000 + -64.302246,-9.813384,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094921_20190927T094946_029205_035121_3C48 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:46.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094921_20190927T094946_029205_035121_3C48.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 623
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:49:21.000000
  • End time: 2019-09-27T09:49:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.302246,-9.813384,2000 + -63.956326,-8.309488,2000 + -61.686333,-8.821680,2000 + -62.023785,-10.330948,2000 + -64.302246,-9.813384,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094852_20190927T094924_029205_035121_2A9E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:24.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190927T094852_20190927T094924_029205_035121_2A9E.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 617
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:52.000000
  • End time: 2019-09-27T09:49:24.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.708300,-9.264300,2000 + -63.920400,-8.916100,2000 + -63.469800,-6.969000,2000 + -61.268700,-7.309600,2000 + -61.708300,-9.264300,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190927T094852_20190927T094924_029205_035121_2A9E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:24.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190927T094852_20190927T094924_029205_035121_2A9E.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 617
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:52.000000
  • End time: 2019-09-27T09:49:24.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.708300,-9.264300,2000 + -63.920400,-8.916100,2000 + -63.469800,-6.969000,2000 + -61.268700,-7.309600,2000 + -61.708300,-9.264300,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094855_20190927T094922_029205_035121_0B3E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:22.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190927T094855_20190927T094922_029205_035121_0B3E.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 617
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:55.000000
  • End time: 2019-09-27T09:49:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.959568,-8.384112,2000 + -63.591866,-6.761967,2000 + -61.342541,-7.265699,2000 + -61.700378,-8.893989,2000 + -63.959568,-8.384112,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190927T094855_20190927T094922_029205_035121_0B3E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:22.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190927T094855_20190927T094922_029205_035121_0B3E.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 617
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:55.000000
  • End time: 2019-09-27T09:49:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.959568,-8.384112,2000 + -63.591866,-6.761967,2000 + -61.342541,-7.265699,2000 + -61.700378,-8.893989,2000 + -63.959568,-8.384112,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094856_20190927T094921_029205_035121_297E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:21.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094856_20190927T094921_029205_035121_297E.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 618
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:56.000000
  • End time: 2019-09-27T09:49:21.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.955418,-8.309601,2000 + -63.615971,-6.804696,2000 + -61.353779,-7.311464,2000 + -61.686310,-8.821590,2000 + -63.955418,-8.309601,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190927T094856_20190927T094921_029205_035121_297E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-27T09:49:21.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190927T094856_20190927T094921_029205_035121_297E.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 618
  • Path: 83
  • Orbit: 29205
  • Start time: 2019-09-27T09:48:56.000000
  • End time: 2019-09-27T09:49:21.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.955418,-8.309601,2000 + -63.615971,-6.804696,2000 + -61.353779,-7.311464,2000 + -61.686310,-8.821590,2000 + -63.955418,-8.309601,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190926T095738_20190926T095810_018207_022487_3948 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:10.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190926T095738_20190926T095810_018207_022487_3948.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:38.000000
  • End time: 2019-09-26T09:58:10.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.798400,-13.721100,2000 + -67.045800,-13.353800,2000 + -66.570900,-11.411100,2000 + -64.340800,-11.769700,2000 + -64.798400,-13.721100,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190926T095738_20190926T095810_018207_022487_3948 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:10.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190926T095738_20190926T095810_018207_022487_3948.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:38.000000
  • End time: 2019-09-26T09:58:10.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.798400,-13.721100,2000 + -67.045800,-13.353800,2000 + -66.570900,-11.411100,2000 + -64.340800,-11.769700,2000 + -64.798400,-13.721100,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190926T095740_20190926T095808_018207_022487_921B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:08.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190926T095740_20190926T095808_018207_022487_921B.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:40.000000
  • End time: 2019-09-26T09:58:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -67.149506,-12.827886,2000 + -66.748619,-11.150955,2000 + -64.414291,-11.684631,2000 + -64.798912,-13.368809,2000 + -67.149506,-12.827886,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190926T095740_20190926T095808_018207_022487_921B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:08.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190926T095740_20190926T095808_018207_022487_921B.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:40.000000
  • End time: 2019-09-26T09:58:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -67.149506,-12.827886,2000 + -66.748619,-11.150955,2000 + -64.414291,-11.684631,2000 + -64.798912,-13.368809,2000 + -67.149506,-12.827886,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190926T095742_20190926T095807_018207_022487_017C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:07.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190926T095742_20190926T095807_018207_022487_017C.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:42.000000
  • End time: 2019-09-26T09:58:07.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -67.221764,-12.718539,2000 + -66.864868,-11.216242,2000 + -64.434868,-11.772427,2000 + -64.779427,-13.280874,2000 + -67.221764,-12.718539,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190926T095742_20190926T095807_018207_022487_017C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:58:07.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190926T095742_20190926T095807_018207_022487_017C.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 632
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:42.000000
  • End time: 2019-09-26T09:58:07.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -67.221764,-12.718539,2000 + -66.864868,-11.216242,2000 + -64.434868,-11.772427,2000 + -64.779427,-13.280874,2000 + -67.221764,-12.718539,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190926T095713_20190926T095745_018207_022487_64A5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:45.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190926T095713_20190926T095745_018207_022487_64A5.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:45.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.444500,-12.215500,2000 + -66.678300,-11.855000,2000 + -66.212200,-9.910700,2000 + -63.993500,-10.263000,2000 + -64.444500,-12.215500,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190926T095713_20190926T095745_018207_022487_64A5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:45.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190926T095713_20190926T095745_018207_022487_64A5.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:45.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.444500,-12.215500,2000 + -66.678300,-11.855000,2000 + -66.212200,-9.910700,2000 + -63.993500,-10.263000,2000 + -64.444500,-12.215500,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190926T095713_20190926T095742_018207_022487_BEE5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:42.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190926T095713_20190926T095742_018207_022487_BEE5.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.863777,-11.216402,2000 + -66.456398,-9.470914,2000 + -64.039581,-10.019936,2000 + -64.434845,-11.772337,2000 + -66.863777,-11.216402,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190926T095713_20190926T095742_018207_022487_BEE5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:42.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190926T095713_20190926T095742_018207_022487_BEE5.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.863777,-11.216402,2000 + -66.456398,-9.470914,2000 + -64.039581,-10.019936,2000 + -64.434845,-11.772337,2000 + -66.863777,-11.216402,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190926T095713_20190926T095742_018207_022487_09DF + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:42.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190926T095713_20190926T095742_018207_022487_09DF.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.780411,-11.287069,2000 + -66.359848,-9.492709,2000 + -64.039062,-10.019558,2000 + -64.444542,-11.821390,2000 + -66.780411,-11.287069,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190926T095713_20190926T095742_018207_022487_09DF + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-26T09:57:42.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190926T095713_20190926T095742_018207_022487_09DF.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 627
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:57:13.000000
  • End time: 2019-09-26T09:57:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.780411,-11.287069,2000 + -66.359848,-9.492709,2000 + -64.039062,-10.019558,2000 + -64.444542,-11.821390,2000 + -66.780411,-11.287069,2000 + + + + +
+ + S1B_EW_RAW__0SDH_20190926T095602_20190926T095706_018207_022486_34E1 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-26T09:57:06.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_EW_RAW__0SDH_20190926T095602_20190926T095706_018207_022486_34E1.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 612
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:56:02.000000
  • End time: 2019-09-26T09:57:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.618600,-10.010000,2000 + -66.271200,-9.438600,2000 + -65.385300,-5.601600,2000 + -61.767400,-6.151200,2000 + -62.618600,-10.010000,2000 + + + + +
+ + S1B_EW_GRDM_1SDH_20190926T095606_20190926T095706_018207_022486_A127 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-26T09:57:06.000000

https://datapool.asf.alaska.edu/GRD_MD/SB/S1B_EW_GRDM_1SDH_20190926T095606_20190926T095706_018207_022486_A127.zip

Metadata

  • Processing type: L1 Detected Mid-Res Dual-Pol (GRD-MD)
  • Frame: 613
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:56:06.000000
  • End time: 2019-09-26T09:57:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.347145,-9.058659,2000 + -65.540649,-5.449640,2000 + -61.871738,-6.262136,2000 + -62.651279,-9.889119,2000 + -66.347145,-9.058659,2000 + + + + +
+ + S1B_EW_RAW__0SDH_20190926T095602_20190926T095706_018207_022486_34E1 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-26T09:57:06.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_EW_RAW__0SDH_20190926T095602_20190926T095706_018207_022486_34E1.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 612
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:56:02.000000
  • End time: 2019-09-26T09:57:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.618600,-10.010000,2000 + -66.271200,-9.438600,2000 + -65.385300,-5.601600,2000 + -61.767400,-6.151200,2000 + -62.618600,-10.010000,2000 + + + + +
+ + S1B_EW_GRDM_1SDH_20190926T095606_20190926T095706_018207_022486_A127 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-26T09:57:06.000000

https://datapool.asf.alaska.edu/METADATA_GRD_MD/SB/S1B_EW_GRDM_1SDH_20190926T095606_20190926T095706_018207_022486_A127.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-MD)
  • Frame: 613
  • Path: 156
  • Orbit: 18207
  • Start time: 2019-09-26T09:56:06.000000
  • End time: 2019-09-26T09:57:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.347145,-9.058659,2000 + -65.540649,-5.449640,2000 + -61.871738,-6.262136,2000 + -62.651279,-9.889119,2000 + -66.347145,-9.058659,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190924T222707_20190924T222732_018185_0223EF_AA91 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190924T222707_20190924T222732_018185_0223EF_AA91.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1134
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:07.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.159904,-12.629485,2000 + -58.795288,-14.135661,2000 + -61.092628,-14.666640,2000 + -61.444134,-13.154595,2000 + -59.159904,-12.629485,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190924T222703_20190924T222732_018185_0223EF_957C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190924T222703_20190924T222732_018185_0223EF_957C.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1133
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:03.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.814000,-14.733300,2000 + -61.075800,-15.107200,2000 + -61.484000,-13.394500,2000 + -59.239300,-13.028600,2000 + -58.814000,-14.733300,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190924T222707_20190924T222732_018185_0223EF_AA91 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190924T222707_20190924T222732_018185_0223EF_AA91.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1134
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:07.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.159904,-12.629485,2000 + -58.795288,-14.135661,2000 + -61.092628,-14.666640,2000 + -61.444134,-13.154595,2000 + -59.159904,-12.629485,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190924T222703_20190924T222732_018185_0223EF_957C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190924T222703_20190924T222732_018185_0223EF_957C.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1133
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:03.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.814000,-14.733300,2000 + -61.075800,-15.107200,2000 + -61.484000,-13.394500,2000 + -59.239300,-13.028600,2000 + -58.814000,-14.733300,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190924T222706_20190924T222732_018185_0223EF_C427 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190924T222706_20190924T222732_018185_0223EF_C427.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1133
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:06.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.177483,-12.632756,2000 + -58.796139,-14.200882,2000 + -61.079918,-14.728744,2000 + -61.444759,-13.153882,2000 + -59.177483,-12.632756,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190924T222706_20190924T222732_018185_0223EF_C427 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-24T22:27:32.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190924T222706_20190924T222732_018185_0223EF_C427.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1133
  • Path: 134
  • Orbit: 18185
  • Start time: 2019-09-24T22:27:06.000000
  • End time: 2019-09-24T22:27:32.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.177483,-12.632756,2000 + -58.796139,-14.200882,2000 + -61.079918,-14.728744,2000 + -61.444759,-13.153882,2000 + -59.177483,-12.632756,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093321_20190923T093354_018163_022342_4E87 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:54.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190923T093321_20190923T093354_018163_022342_4E87.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:21.000000
  • End time: 2019-09-23T09:33:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.982100,-15.208800,2000 + -61.244800,-14.834400,2000 + -60.760600,-12.893400,2000 + -58.517400,-13.258700,2000 + -58.982100,-15.208800,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093321_20190923T093354_018163_022342_4E87 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:54.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190923T093321_20190923T093354_018163_022342_4E87.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:21.000000
  • End time: 2019-09-23T09:33:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.982100,-15.208800,2000 + -61.244800,-14.834400,2000 + -60.760600,-12.893400,2000 + -58.517400,-13.258700,2000 + -58.982100,-15.208800,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093324_20190923T093351_018163_022342_6C72 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:51.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190923T093324_20190923T093351_018163_022342_6C72.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:24.000000
  • End time: 2019-09-23T09:33:51.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.355667,-14.284719,2000 + -60.960644,-12.664946,2000 + -58.588284,-13.210697,2000 + -58.965412,-14.837811,2000 + -61.355667,-14.284719,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093324_20190923T093351_018163_022342_6C72 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:51.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190923T093324_20190923T093351_018163_022342_6C72.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:24.000000
  • End time: 2019-09-23T09:33:51.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.355667,-14.284719,2000 + -60.960644,-12.664946,2000 + -58.588284,-13.210697,2000 + -58.965412,-14.837811,2000 + -61.355667,-14.284719,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093325_20190923T093350_018163_022342_ADC2 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:50.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093325_20190923T093350_018163_022342_ADC2.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:25.000000
  • End time: 2019-09-23T09:33:50.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.456421,-14.190288,2000 + -61.091171,-12.689397,2000 + -58.602901,-13.262556,2000 + -58.953873,-14.769938,2000 + -61.456421,-14.190288,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093325_20190923T093350_018163_022342_ADC2 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:50.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093325_20190923T093350_018163_022342_ADC2.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 637
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:25.000000
  • End time: 2019-09-23T09:33:50.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.456421,-14.190288,2000 + -61.091171,-12.689397,2000 + -58.602901,-13.262556,2000 + -58.953873,-14.769938,2000 + -61.456421,-14.190288,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093256_20190923T093329_018163_022342_4403 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:29.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190923T093256_20190923T093329_018163_022342_4403.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:56.000000
  • End time: 2019-09-23T09:33:29.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.622700,-13.704200,2000 + -60.870100,-13.336900,2000 + -60.395300,-11.394300,2000 + -58.165100,-11.752900,2000 + -58.622700,-13.704200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093256_20190923T093329_018163_022342_4403 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:29.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190923T093256_20190923T093329_018163_022342_4403.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:56.000000
  • End time: 2019-09-23T09:33:29.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.622700,-13.704200,2000 + -60.870100,-13.336900,2000 + -60.395300,-11.394300,2000 + -58.165100,-11.752900,2000 + -58.622700,-13.704200,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093259_20190923T093326_018163_022342_18CF + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:26.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190923T093259_20190923T093326_018163_022342_18CF.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:59.000000
  • End time: 2019-09-23T09:33:26.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.993248,-12.793747,2000 + -60.605690,-11.173341,2000 + -58.248959,-11.712350,2000 + -58.620659,-13.339836,2000 + -60.993248,-12.793747,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093259_20190923T093326_018163_022342_18CF + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:26.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190923T093259_20190923T093326_018163_022342_18CF.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:59.000000
  • End time: 2019-09-23T09:33:26.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.993248,-12.793747,2000 + -60.605690,-11.173341,2000 + -58.248959,-11.712350,2000 + -58.620659,-13.339836,2000 + -60.993248,-12.793747,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093300_20190923T093325_018163_022342_A102 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:25.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093300_20190923T093325_018163_022342_A102.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:00.000000
  • End time: 2019-09-23T09:33:25.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.090076,-12.689561,2000 + -60.730976,-11.187821,2000 + -58.256241,-11.754437,2000 + -58.602882,-13.262466,2000 + -61.090076,-12.689561,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093300_20190923T093325_018163_022342_A102 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:25.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093300_20190923T093325_018163_022342_A102.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 632
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:33:00.000000
  • End time: 2019-09-23T09:33:25.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.090076,-12.689561,2000 + -60.730976,-11.187821,2000 + -58.256241,-11.754437,2000 + -58.602882,-13.262466,2000 + -61.090076,-12.689561,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093231_20190923T093304_018163_022342_6FE2 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:04.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190923T093231_20190923T093304_018163_022342_6FE2.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:31.000000
  • End time: 2019-09-23T09:33:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.268800,-12.198700,2000 + -60.502700,-11.838100,2000 + -60.036700,-9.893900,2000 + -57.817800,-10.246200,2000 + -58.268800,-12.198700,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190923T093231_20190923T093304_018163_022342_6FE2 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:04.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190923T093231_20190923T093304_018163_022342_6FE2.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:31.000000
  • End time: 2019-09-23T09:33:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.268800,-12.198700,2000 + -60.502700,-11.838100,2000 + -60.036700,-9.893900,2000 + -57.817800,-10.246200,2000 + -58.268800,-12.198700,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093233_20190923T093301_018163_022342_AD75 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:01.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190923T093233_20190923T093301_018163_022342_AD75.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:33.000000
  • End time: 2019-09-23T09:33:01.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.634274,-11.302905,2000 + -60.240410,-9.624710,2000 + -57.895271,-10.157527,2000 + -58.274792,-11.842802,2000 + -60.634274,-11.302905,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190923T093233_20190923T093301_018163_022342_AD75 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:01.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190923T093233_20190923T093301_018163_022342_AD75.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:33.000000
  • End time: 2019-09-23T09:33:01.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.634274,-11.302905,2000 + -60.240410,-9.624710,2000 + -57.895271,-10.157527,2000 + -58.274792,-11.842802,2000 + -60.634274,-11.302905,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093235_20190923T093300_018163_022342_8B54 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:00.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093235_20190923T093300_018163_022342_8B54.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:35.000000
  • End time: 2019-09-23T09:33:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.729977,-11.187961,2000 + -60.379215,-9.685020,2000 + -57.916229,-10.245307,2000 + -58.256222,-11.754348,2000 + -60.729977,-11.187961,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190923T093235_20190923T093300_018163_022342_8B54 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-23T09:33:00.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190923T093235_20190923T093300_018163_022342_8B54.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 627
  • Path: 112
  • Orbit: 18163
  • Start time: 2019-09-23T09:32:35.000000
  • End time: 2019-09-23T09:33:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.729977,-11.187961,2000 + -60.379215,-9.685020,2000 + -57.916229,-10.245307,2000 + -58.256222,-11.754348,2000 + -60.729977,-11.187961,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224432_20190922T224500_018156_02230D_5E3C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190922T224432_20190922T224500_018156_02230D_5E3C.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1145
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:32.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.830300,-11.069200,2000 + -66.058100,-11.426400,2000 + -66.442100,-9.753500,2000 + -64.226500,-9.403300,2000 + -63.830300,-11.069200,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224435_20190922T224500_018156_02230D_3F50 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224435_20190922T224500_018156_02230D_3F50.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1146
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:35.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.114426,-8.993835,2000 + -63.775478,-10.459590,2000 + -66.065277,-10.981482,2000 + -66.395195,-9.510369,2000 + -64.114426,-8.993835,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224432_20190922T224500_018156_02230D_5E3C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190922T224432_20190922T224500_018156_02230D_5E3C.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1145
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:32.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.830300,-11.069200,2000 + -66.058100,-11.426400,2000 + -66.442100,-9.753500,2000 + -64.226500,-9.403300,2000 + -63.830300,-11.069200,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224435_20190922T224500_018156_02230D_3F50 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224435_20190922T224500_018156_02230D_3F50.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1146
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:35.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.114426,-8.993835,2000 + -63.775478,-10.459590,2000 + -66.065277,-10.981482,2000 + -66.395195,-9.510369,2000 + -64.114426,-8.993835,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224435_20190922T224500_018156_02230D_A4FC + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190922T224435_20190922T224500_018156_02230D_A4FC.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1146
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:35.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.140808,-8.999037,2000 + -63.789204,-10.512123,2000 + -66.055588,-11.028677,2000 + -66.395538,-9.509582,2000 + -64.140808,-8.999037,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224435_20190922T224500_018156_02230D_A4FC + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:45:00.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190922T224435_20190922T224500_018156_02230D_A4FC.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1146
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:35.000000
  • End time: 2019-09-22T22:45:00.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.140808,-8.999037,2000 + -63.789204,-10.512123,2000 + -66.055588,-11.028677,2000 + -66.395538,-9.509582,2000 + -64.140808,-8.999037,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224407_20190922T224439_018156_02230D_5549 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:39.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190922T224407_20190922T224439_018156_02230D_5549.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1140
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:07.000000
  • End time: 2019-09-22T22:44:39.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.466500,-12.568600,2000 + -65.707000,-12.932400,2000 + -66.161100,-10.980500,2000 + -63.936700,-10.625200,2000 + -63.466500,-12.568600,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224407_20190922T224439_018156_02230D_5549 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:39.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190922T224407_20190922T224439_018156_02230D_5549.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1140
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:07.000000
  • End time: 2019-09-22T22:44:39.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.466500,-12.568600,2000 + -65.707000,-12.932400,2000 + -66.161100,-10.980500,2000 + -63.936700,-10.625200,2000 + -63.466500,-12.568600,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224410_20190922T224437_018156_02230D_BA6E + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:37.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190922T224410_20190922T224437_018156_02230D_BA6E.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1141
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:10.000000
  • End time: 2019-09-22T22:44:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.816082,-10.383746,2000 + -63.433182,-12.003284,2000 + -65.710503,-12.525480,2000 + -66.079132,-10.899299,2000 + -63.816082,-10.383746,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224410_20190922T224437_018156_02230D_BA6E + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:37.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190922T224410_20190922T224437_018156_02230D_BA6E.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1141
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:10.000000
  • End time: 2019-09-22T22:44:37.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.816082,-10.383746,2000 + -63.433182,-12.003284,2000 + -65.710503,-12.525480,2000 + -66.079132,-10.899299,2000 + -63.816082,-10.383746,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224410_20190922T224435_018156_02230D_A5D8 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:35.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224410_20190922T224435_018156_02230D_A5D8.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1141
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:10.000000
  • End time: 2019-09-22T22:44:35.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.774387,-10.459432,2000 + -63.421486,-11.962528,2000 + -65.723183,-12.490314,2000 + -66.065254,-10.981571,2000 + -63.774387,-10.459432,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224410_20190922T224435_018156_02230D_A5D8 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:35.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224410_20190922T224435_018156_02230D_A5D8.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1141
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:44:10.000000
  • End time: 2019-09-22T22:44:35.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.774387,-10.459432,2000 + -63.421486,-11.962528,2000 + -65.723183,-12.490314,2000 + -66.065254,-10.981571,2000 + -63.774387,-10.459432,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224342_20190922T224414_018156_02230D_FEC5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:14.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190922T224342_20190922T224414_018156_02230D_FEC5.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1135
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:42.000000
  • End time: 2019-09-22T22:44:14.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.095600,-14.066700,2000 + -65.350500,-14.437500,2000 + -65.811400,-12.486800,2000 + -63.574900,-12.124900,2000 + -63.095600,-14.066700,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190922T224342_20190922T224414_018156_02230D_FEC5 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:14.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190922T224342_20190922T224414_018156_02230D_FEC5.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1135
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:42.000000
  • End time: 2019-09-22T22:44:14.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.095600,-14.066700,2000 + -65.350500,-14.437500,2000 + -65.811400,-12.486800,2000 + -63.574900,-12.124900,2000 + -63.095600,-14.066700,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224344_20190922T224412_018156_02230D_975A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:12.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190922T224344_20190922T224412_018156_02230D_975A.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1136
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:44.000000
  • End time: 2019-09-22T22:44:12.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.466297,-11.876321,2000 + -63.062279,-13.552811,2000 + -65.357246,-14.082038,2000 + -65.744431,-12.398414,2000 + -63.466297,-11.876321,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190922T224344_20190922T224412_018156_02230D_975A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:12.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190922T224344_20190922T224412_018156_02230D_975A.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1136
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:44.000000
  • End time: 2019-09-22T22:44:12.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.466297,-11.876321,2000 + -63.062279,-13.552811,2000 + -65.357246,-14.082038,2000 + -65.744431,-12.398414,2000 + -63.466297,-11.876321,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224345_20190922T224410_018156_02230D_06BE + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:10.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224345_20190922T224410_018156_02230D_06BE.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1136
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:45.000000
  • End time: 2019-09-22T22:44:10.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.420391,-11.962367,2000 + -63.060608,-13.464513,2000 + -65.375854,-13.998376,2000 + -65.723167,-12.490404,2000 + -63.420391,-11.962367,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190922T224345_20190922T224410_018156_02230D_06BE + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T22:44:10.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190922T224345_20190922T224410_018156_02230D_06BE.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1136
  • Path: 105
  • Orbit: 18156
  • Start time: 2019-09-22T22:43:45.000000
  • End time: 2019-09-22T22:44:10.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.420391,-11.962367,2000 + -63.060608,-13.464513,2000 + -65.375854,-13.998376,2000 + -65.723167,-12.490404,2000 + -63.420391,-11.962367,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094212_20190922T094236_029132_034E9B_EF97 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094212_20190922T094236_029132_034E9B_EF97.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 636
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:12.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.170563,-13.700309,2000 + -62.825935,-12.255433,2000 + -60.527916,-12.782717,2000 + -60.860229,-14.233177,2000 + -63.170563,-13.700309,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094209_20190922T094236_029132_034E9B_200E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190922T094209_20190922T094236_029132_034E9B_200E.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:09.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.851100,-14.424400,2000 + -63.105600,-14.053700,2000 + -62.699500,-12.411600,2000 + -60.460700,-12.774700,2000 + -60.851100,-14.424400,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094209_20190922T094236_029132_034E9B_200E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190922T094209_20190922T094236_029132_034E9B_200E.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:09.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.851100,-14.424400,2000 + -63.105600,-14.053700,2000 + -62.699500,-12.411600,2000 + -60.460700,-12.774700,2000 + -60.851100,-14.424400,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094212_20190922T094236_029132_034E9B_EF97 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094212_20190922T094236_029132_034E9B_EF97.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 636
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:12.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.170563,-13.700309,2000 + -62.825935,-12.255433,2000 + -60.527916,-12.782717,2000 + -60.860229,-14.233177,2000 + -63.170563,-13.700309,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094211_20190922T094236_029132_034E9B_A4C5 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190922T094211_20190922T094236_029132_034E9B_A4C5.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:11.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.163033,-13.702930,2000 + -62.797825,-12.191573,2000 + -60.510036,-12.716309,2000 + -60.859688,-14.234143,2000 + -63.163033,-13.702930,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094211_20190922T094236_029132_034E9B_A4C5 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:36.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190922T094211_20190922T094236_029132_034E9B_A4C5.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:42:11.000000
  • End time: 2019-09-22T09:42:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.163033,-13.702930,2000 + -62.797825,-12.191573,2000 + -60.510036,-12.716309,2000 + -60.859688,-14.234143,2000 + -63.163033,-13.702930,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094144_20190922T094216_029132_034E9B_E3BA + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:16.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190922T094144_20190922T094216_029132_034E9B_E3BA.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:44.000000
  • End time: 2019-09-22T09:42:16.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.565500,-13.220300,2000 + -62.808300,-12.855200,2000 + -62.336400,-10.912000,2000 + -60.110100,-11.268500,2000 + -60.565500,-13.220300,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094144_20190922T094216_029132_034E9B_E3BA + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:16.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190922T094144_20190922T094216_029132_034E9B_E3BA.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:44.000000
  • End time: 2019-09-22T09:42:16.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.565500,-13.220300,2000 + -62.808300,-12.855200,2000 + -62.336400,-10.912000,2000 + -60.110100,-11.268500,2000 + -60.565500,-13.220300,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094146_20190922T094213_029132_034E9B_ADE3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:13.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190922T094146_20190922T094213_029132_034E9B_ADE3.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:46.000000
  • End time: 2019-09-22T09:42:13.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.829166,-12.319366,2000 + -62.444798,-10.699409,2000 + -60.171082,-11.217864,2000 + -60.540665,-12.844528,2000 + -62.829166,-12.319366,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094146_20190922T094213_029132_034E9B_ADE3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:13.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190922T094146_20190922T094213_029132_034E9B_ADE3.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:46.000000
  • End time: 2019-09-22T09:42:13.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.829166,-12.319366,2000 + -62.444798,-10.699409,2000 + -60.171082,-11.217864,2000 + -60.540665,-12.844528,2000 + -62.829166,-12.319366,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094147_20190922T094212_029132_034E9B_6812 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:12.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094147_20190922T094212_029132_034E9B_6812.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 631
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:47.000000
  • End time: 2019-09-22T09:42:12.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.824841,-12.255595,2000 + -62.468563,-10.753007,2000 + -60.182671,-11.274396,2000 + -60.527897,-12.782627,2000 + -62.824841,-12.255595,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094147_20190922T094212_029132_034E9B_6812 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:42:12.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094147_20190922T094212_029132_034E9B_6812.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 631
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:47.000000
  • End time: 2019-09-22T09:42:12.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.824841,-12.255595,2000 + -62.468563,-10.753007,2000 + -60.182671,-11.274396,2000 + -60.527897,-12.782627,2000 + -62.824841,-12.255595,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094119_20190922T094151_029132_034E9B_FBE1 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:51.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190922T094119_20190922T094151_029132_034E9B_FBE1.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:19.000000
  • End time: 2019-09-22T09:41:51.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.213300,-11.714400,2000 + -62.443100,-11.356000,2000 + -61.979800,-9.411300,2000 + -59.764300,-9.761500,2000 + -60.213300,-11.714400,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094119_20190922T094151_029132_034E9B_FBE1 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:51.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190922T094119_20190922T094151_029132_034E9B_FBE1.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:19.000000
  • End time: 2019-09-22T09:41:51.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.213300,-11.714400,2000 + -62.443100,-11.356000,2000 + -61.979800,-9.411300,2000 + -59.764300,-9.761500,2000 + -60.213300,-11.714400,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094122_20190922T094148_029132_034E9B_E7AE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:48.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190922T094122_20190922T094148_029132_034E9B_E7AE.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:22.000000
  • End time: 2019-09-22T09:41:48.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.473289,-10.827689,2000 + -62.095528,-9.206594,2000 + -59.832413,-9.719340,2000 + -60.197277,-11.346919,2000 + -62.473289,-10.827689,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094122_20190922T094148_029132_034E9B_E7AE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:48.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190922T094122_20190922T094148_029132_034E9B_E7AE.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:22.000000
  • End time: 2019-09-22T09:41:48.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.473289,-10.827689,2000 + -62.095528,-9.206594,2000 + -59.832413,-9.719340,2000 + -60.197277,-11.346919,2000 + -62.473289,-10.827689,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094122_20190922T094147_029132_034E9B_BC46 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:47.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094122_20190922T094147_029132_034E9B_BC46.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 626
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:22.000000
  • End time: 2019-09-22T09:41:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.467564,-10.753145,2000 + -62.118660,-9.249556,2000 + -59.843224,-9.765244,2000 + -60.182652,-11.274306,2000 + -62.467564,-10.753145,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094122_20190922T094147_029132_034E9B_BC46 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:47.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094122_20190922T094147_029132_034E9B_BC46.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 626
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:41:22.000000
  • End time: 2019-09-22T09:41:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.467564,-10.753145,2000 + -62.118660,-9.249556,2000 + -59.843224,-9.765244,2000 + -60.182652,-11.274306,2000 + -62.467564,-10.753145,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094054_20190922T094126_029132_034E9B_0476 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:26.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190922T094054_20190922T094126_029132_034E9B_0476.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 620
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:54.000000
  • End time: 2019-09-22T09:41:26.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.866200,-10.207600,2000 + -62.084700,-9.855500,2000 + -61.629300,-7.909400,2000 + -59.423100,-8.253700,2000 + -59.866200,-10.207600,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190922T094054_20190922T094126_029132_034E9B_0476 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:26.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190922T094054_20190922T094126_029132_034E9B_0476.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 620
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:54.000000
  • End time: 2019-09-22T09:41:26.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.866200,-10.207600,2000 + -62.084700,-9.855500,2000 + -61.629300,-7.909400,2000 + -59.423100,-8.253700,2000 + -59.866200,-10.207600,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094057_20190922T094124_029132_034E9B_9A6E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:24.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190922T094057_20190922T094124_029132_034E9B_9A6E.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 621
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:57.000000
  • End time: 2019-09-22T09:41:24.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.124889,-9.334876,2000 + -61.753345,-7.712975,2000 + -59.500118,-8.219995,2000 + -59.860638,-9.848168,2000 + -62.124889,-9.334876,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190922T094057_20190922T094124_029132_034E9B_9A6E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:24.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190922T094057_20190922T094124_029132_034E9B_9A6E.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 621
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:57.000000
  • End time: 2019-09-22T09:41:24.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.124889,-9.334876,2000 + -61.753345,-7.712975,2000 + -59.500118,-8.219995,2000 + -59.860638,-9.848168,2000 + -62.124889,-9.334876,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094057_20190922T094122_029132_034E9B_5EFE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:22.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094057_20190922T094122_029132_034E9B_5EFE.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 621
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:57.000000
  • End time: 2019-09-22T09:41:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.117664,-9.249690,2000 + -61.774284,-7.745323,2000 + -59.507706,-8.255470,2000 + -59.843204,-9.765155,2000 + -62.117664,-9.249690,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190922T094057_20190922T094122_029132_034E9B_5EFE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-22T09:41:22.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190922T094057_20190922T094122_029132_034E9B_5EFE.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 621
  • Path: 10
  • Orbit: 29132
  • Start time: 2019-09-22T09:40:57.000000
  • End time: 2019-09-22T09:41:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.117664,-9.249690,2000 + -61.774284,-7.745323,2000 + -59.507706,-8.255470,2000 + -59.843204,-9.765155,2000 + -62.117664,-9.249690,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094929_20190921T095001_018134_02226A_2977 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:50:01.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190921T094929_20190921T095001_018134_02226A_2977.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:29.000000
  • End time: 2019-09-21T09:50:01.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.814100,-14.030800,2000 + -65.064500,-13.662000,2000 + -64.587800,-11.719700,2000 + -62.355000,-12.079700,2000 + -62.814100,-14.030800,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094929_20190921T095001_018134_02226A_2977 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:50:01.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190921T094929_20190921T095001_018134_02226A_2977.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:29.000000
  • End time: 2019-09-21T09:50:01.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.814100,-14.030800,2000 + -65.064500,-13.662000,2000 + -64.587800,-11.719700,2000 + -62.355000,-12.079700,2000 + -62.814100,-14.030800,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094932_20190921T094959_018134_02226A_2236 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:59.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190921T094932_20190921T094959_018134_02226A_2236.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:32.000000
  • End time: 2019-09-21T09:49:59.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.165855,-13.114161,2000 + -64.776894,-11.493897,2000 + -62.426304,-12.032061,2000 + -62.799019,-13.659419,2000 + -65.165855,-13.114161,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094932_20190921T094959_018134_02226A_2236 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:59.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190921T094932_20190921T094959_018134_02226A_2236.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:32.000000
  • End time: 2019-09-21T09:49:59.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.165855,-13.114161,2000 + -64.776894,-11.493897,2000 + -62.426304,-12.032061,2000 + -62.799019,-13.659419,2000 + -65.165855,-13.114161,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094933_20190921T094958_018134_02226A_FB70 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:58.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094933_20190921T094958_018134_02226A_FB70.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:33.000000
  • End time: 2019-09-21T09:49:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.250198,-13.023959,2000 + -64.892731,-11.521712,2000 + -62.440567,-12.083746,2000 + -62.785198,-13.592236,2000 + -65.250198,-13.023959,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094933_20190921T094958_018134_02226A_FB70 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:58.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094933_20190921T094958_018134_02226A_FB70.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 633
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:33.000000
  • End time: 2019-09-21T09:49:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -65.250198,-13.023959,2000 + -64.892731,-11.521712,2000 + -62.440567,-12.083746,2000 + -62.785198,-13.592236,2000 + -65.250198,-13.023959,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094904_20190921T094936_018134_02226A_AB44 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:36.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190921T094904_20190921T094936_018134_02226A_AB44.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:04.000000
  • End time: 2019-09-21T09:49:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.459100,-12.525400,2000 + -64.695600,-12.163500,2000 + -64.227700,-10.219500,2000 + -62.006700,-10.573100,2000 + -62.459100,-12.525400,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094904_20190921T094936_018134_02226A_AB44 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:36.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190921T094904_20190921T094936_018134_02226A_AB44.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:04.000000
  • End time: 2019-09-21T09:49:36.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.459100,-12.525400,2000 + -64.695600,-12.163500,2000 + -64.227700,-10.219500,2000 + -62.006700,-10.573100,2000 + -62.459100,-12.525400,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094907_20190921T094934_018134_02226A_5F20 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:34.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190921T094907_20190921T094934_018134_02226A_5F20.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:07.000000
  • End time: 2019-09-21T09:49:34.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.810585,-11.622140,2000 + -64.428642,-10.001195,2000 + -62.093452,-10.532560,2000 + -62.461151,-12.160354,2000 + -64.810585,-11.622140,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094907_20190921T094934_018134_02226A_5F20 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:34.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190921T094907_20190921T094934_018134_02226A_5F20.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:07.000000
  • End time: 2019-09-21T09:49:34.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.810585,-11.622140,2000 + -64.428642,-10.001195,2000 + -62.093452,-10.532560,2000 + -62.461151,-12.160354,2000 + -64.810585,-11.622140,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094908_20190921T094933_018134_02226A_9C1A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:33.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094908_20190921T094933_018134_02226A_9C1A.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:08.000000
  • End time: 2019-09-21T09:49:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.890572,-11.522123,2000 + -64.538620,-10.019156,2000 + -62.099606,-10.574642,2000 + -62.440544,-12.083656,2000 + -64.890572,-11.522123,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094908_20190921T094933_018134_02226A_9C1A + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:33.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094908_20190921T094933_018134_02226A_9C1A.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 628
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:49:08.000000
  • End time: 2019-09-21T09:49:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.890572,-11.522123,2000 + -64.538620,-10.019156,2000 + -62.099606,-10.574642,2000 + -62.440544,-12.083656,2000 + -64.890572,-11.522123,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094839_20190921T094911_018134_02226A_EB5C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:11.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190921T094839_20190921T094911_018134_02226A_EB5C.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:39.000000
  • End time: 2019-09-21T09:49:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.109300,-11.019100,2000 + -64.333600,-10.663700,2000 + -63.874000,-8.718300,2000 + -61.663100,-9.065700,2000 + -62.109300,-11.019100,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094839_20190921T094911_018134_02226A_EB5C + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:11.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190921T094839_20190921T094911_018134_02226A_EB5C.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:39.000000
  • End time: 2019-09-21T09:49:11.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.109300,-11.019100,2000 + -64.333600,-10.663700,2000 + -63.874000,-8.718300,2000 + -61.663100,-9.065700,2000 + -62.109300,-11.019100,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094841_20190921T094909_018134_02226A_9CE1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:09.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190921T094841_20190921T094909_018134_02226A_9CE1.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:41.000000
  • End time: 2019-09-21T09:49:09.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.455345,-10.130767,2000 + -64.066872,-8.451947,2000 + -61.740726,-8.977551,2000 + -62.116470,-10.663226,2000 + -64.455345,-10.130767,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094841_20190921T094909_018134_02226A_9CE1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:09.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190921T094841_20190921T094909_018134_02226A_9CE1.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:41.000000
  • End time: 2019-09-21T09:49:09.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.455345,-10.130767,2000 + -64.066872,-8.451947,2000 + -61.740726,-8.977551,2000 + -62.116470,-10.663226,2000 + -64.455345,-10.130767,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094843_20190921T094908_018134_02226A_C614 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:08.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094843_20190921T094908_018134_02226A_C614.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:43.000000
  • End time: 2019-09-21T09:49:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.537712,-10.019274,2000 + -64.189995,-8.516047,2000 + -61.761131,-9.065445,2000 + -62.099586,-10.574553,2000 + -64.537712,-10.019274,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094843_20190921T094908_018134_02226A_C614 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:49:08.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094843_20190921T094908_018134_02226A_C614.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 623
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:43.000000
  • End time: 2019-09-21T09:49:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.537712,-10.019274,2000 + -64.189995,-8.516047,2000 + -61.761131,-9.065445,2000 + -62.099586,-10.574553,2000 + -64.537712,-10.019274,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094814_20190921T094846_018134_02226A_CD58 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:46.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190921T094814_20190921T094846_018134_02226A_CD58.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.764400,-9.512000,2000 + -63.978100,-9.162700,2000 + -63.526200,-7.215900,2000 + -61.323900,-7.557500,2000 + -61.764400,-9.512000,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190921T094814_20190921T094846_018134_02226A_CD58 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:46.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190921T094814_20190921T094846_018134_02226A_CD58.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:46.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.764400,-9.512000,2000 + -63.978100,-9.162700,2000 + -63.526200,-7.215900,2000 + -61.323900,-7.557500,2000 + -61.764400,-9.512000,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094814_20190921T094843_018134_02226A_39A4 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:43.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094814_20190921T094843_018134_02226A_39A4.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.188995,-8.516182,2000 + -63.793694,-6.769110,2000 + -61.374516,-7.311652,2000 + -61.761112,-9.065355,2000 + -64.188995,-8.516182,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190921T094814_20190921T094843_018134_02226A_39A4 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:43.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190921T094814_20190921T094843_018134_02226A_39A4.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.188995,-8.516182,2000 + -63.793694,-6.769110,2000 + -61.374516,-7.311652,2000 + -61.761112,-9.065355,2000 + -64.188995,-8.516182,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094814_20190921T094843_018134_02226A_8BC7 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:43.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190921T094814_20190921T094843_018134_02226A_8BC7.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.097618,-8.588073,2000 + -63.689487,-6.792251,2000 + -61.373390,-7.311395,2000 + -61.770180,-9.114297,2000 + -64.097618,-8.588073,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190921T094814_20190921T094843_018134_02226A_8BC7 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-21T09:48:43.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190921T094814_20190921T094843_018134_02226A_8BC7.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 618
  • Path: 83
  • Orbit: 18134
  • Start time: 2019-09-21T09:48:14.000000
  • End time: 2019-09-21T09:48:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.097618,-8.588073,2000 + -63.689487,-6.792251,2000 + -61.373390,-7.311395,2000 + -61.770180,-9.114297,2000 + -64.097618,-8.588073,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095739_20190920T095804_029103_034DAC_C3EE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190920T095739_20190920T095804_029103_034DAC_C3EE.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:39.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.128800,-10.856900,2000 + -66.351800,-10.502200,2000 + -65.999500,-9.012000,2000 + -63.786900,-9.360600,2000 + -64.128800,-10.856900,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095739_20190920T095804_029103_034DAC_C3EE + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190920T095739_20190920T095804_029103_034DAC_C3EE.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:39.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.128800,-10.856900,2000 + -66.351800,-10.502200,2000 + -65.999500,-9.012000,2000 + -63.786900,-9.360600,2000 + -64.128800,-10.856900,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190920T095743_20190920T095804_029103_034DAC_A15C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190920T095743_20190920T095804_029103_034DAC_A15C.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:43.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.426430,-10.143384,2000 + -66.125992,-8.853986,2000 + -63.862938,-9.365870,2000 + -64.155869,-10.659880,2000 + -66.426430,-10.143384,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190920T095743_20190920T095804_029103_034DAC_A15C + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190920T095743_20190920T095804_029103_034DAC_A15C.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:43.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.426430,-10.143384,2000 + -66.125992,-8.853986,2000 + -63.862938,-9.365870,2000 + -64.155869,-10.659880,2000 + -66.426430,-10.143384,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190920T095742_20190920T095804_029103_034DAC_EF76 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190920T095742_20190920T095804_029103_034DAC_EF76.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:42.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.419136,-10.145971,2000 + -66.107216,-8.798656,2000 + -63.850323,-9.308997,2000 + -64.152100,-10.661623,2000 + -66.419136,-10.145971,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190920T095742_20190920T095804_029103_034DAC_EF76 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:58:04.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190920T095742_20190920T095804_029103_034DAC_EF76.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 624
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:42.000000
  • End time: 2019-09-20T09:58:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.419136,-10.145971,2000 + -66.107216,-8.798656,2000 + -63.850323,-9.308997,2000 + -64.152100,-10.661623,2000 + -66.419136,-10.145971,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095714_20190920T095747_029103_034DAC_980E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:47.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190920T095714_20190920T095747_029103_034DAC_980E.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:14.000000
  • End time: 2019-09-20T09:57:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.888400,-9.806800,2000 + -66.103900,-9.456400,2000 + -65.650600,-7.509900,2000 + -63.446800,-7.852600,2000 + -63.888400,-9.806800,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095714_20190920T095747_029103_034DAC_980E + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:47.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190920T095714_20190920T095747_029103_034DAC_980E.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:14.000000
  • End time: 2019-09-20T09:57:47.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.888400,-9.806800,2000 + -66.103900,-9.456400,2000 + -65.650600,-7.509900,2000 + -63.446800,-7.852600,2000 + -63.888400,-9.806800,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190920T095717_20190920T095744_029103_034DAC_5940 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:44.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190920T095717_20190920T095744_029103_034DAC_5940.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:17.000000
  • End time: 2019-09-20T09:57:44.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.135826,-8.926709,2000 + -65.766022,-7.304819,2000 + -63.518143,-7.809583,2000 + -63.877438,-9.437675,2000 + -66.135826,-8.926709,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190920T095717_20190920T095744_029103_034DAC_5940 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:44.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190920T095717_20190920T095744_029103_034DAC_5940.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:17.000000
  • End time: 2019-09-20T09:57:44.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.135826,-8.926709,2000 + -65.766022,-7.304819,2000 + -63.518143,-7.809583,2000 + -63.877438,-9.437675,2000 + -66.135826,-8.926709,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190920T095718_20190920T095743_029103_034DAC_4913 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:43.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190920T095718_20190920T095743_029103_034DAC_4913.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:18.000000
  • End time: 2019-09-20T09:57:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.125969,-8.853896,2000 + -65.784714,-7.349211,2000 + -63.529125,-7.855846,2000 + -63.862915,-9.365781,2000 + -66.125969,-8.853896,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190920T095718_20190920T095743_029103_034DAC_4913 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:43.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190920T095718_20190920T095743_029103_034DAC_4913.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 619
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:57:18.000000
  • End time: 2019-09-20T09:57:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -66.125969,-8.853896,2000 + -65.784714,-7.349211,2000 + -63.529125,-7.855846,2000 + -63.862915,-9.365781,2000 + -66.125969,-8.853896,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095649_20190920T095722_029103_034DAC_0757 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:22.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190920T095649_20190920T095722_029103_034DAC_0757.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 614
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:56:49.000000
  • End time: 2019-09-20T09:57:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.547000,-8.299000,2000 + -65.753300,-7.954500,2000 + -65.307400,-6.006700,2000 + -63.110800,-6.343700,2000 + -63.547000,-8.299000,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190920T095649_20190920T095722_029103_034DAC_0757 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-20T09:57:22.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190920T095649_20190920T095722_029103_034DAC_0757.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 614
  • Path: 156
  • Orbit: 29103
  • Start time: 2019-09-20T09:56:49.000000
  • End time: 2019-09-20T09:57:22.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.547000,-8.299000,2000 + -65.753300,-7.954500,2000 + -65.307400,-6.006700,2000 + -63.110800,-6.343700,2000 + -63.547000,-8.299000,2000 + + + + +
+ + S1B_EW_RAW__0SDH_20190919T100341_20190919T100455_018105_02216F_3900 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-19T10:04:55.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_EW_RAW__0SDH_20190919T100341_20190919T100455_018105_02216F_3900.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 606
  • Path: 54
  • Orbit: 18105
  • Start time: 2019-09-19T10:03:41.000000
  • End time: 2019-09-19T10:04:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.356500,-8.580400,2000 + -67.994100,-8.017400,2000 + -66.989700,-3.583300,2000 + -63.383400,-4.122500,2000 + -64.356500,-8.580400,2000 + + + + +
+ + S1B_EW_RAW__0SDH_20190919T100341_20190919T100455_018105_02216F_3900 + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-19T10:04:55.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_EW_RAW__0SDH_20190919T100341_20190919T100455_018105_02216F_3900.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 606
  • Path: 54
  • Orbit: 18105
  • Start time: 2019-09-19T10:03:41.000000
  • End time: 2019-09-19T10:04:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -64.356500,-8.580400,2000 + -67.994100,-8.017400,2000 + -66.989700,-3.583300,2000 + -63.383400,-4.122500,2000 + -64.356500,-8.580400,2000 + + + + +
+ + S1B_EW_GRDM_1SDH_20190919T100345_20190919T100455_018105_02216F_E23C + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-19T10:04:55.000000

https://datapool.asf.alaska.edu/GRD_MD/SB/S1B_EW_GRDM_1SDH_20190919T100345_20190919T100455_018105_02216F_E23C.zip

Metadata

  • Processing type: L1 Detected Mid-Res Dual-Pol (GRD-MD)
  • Frame: 606
  • Path: 54
  • Orbit: 18105
  • Start time: 2019-09-19T10:03:45.000000
  • End time: 2019-09-19T10:04:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -68.074402,-7.635747,2000 + -67.153496,-3.429488,2000 + -63.482113,-4.234862,2000 + -64.379570,-8.461402,2000 + -68.074402,-7.635747,2000 + + + + +
+ + S1B_EW_GRDM_1SDH_20190919T100345_20190919T100455_018105_02216F_E23C + <![CDATA[

Sentinel-1B (Extended Wide. 400 km swath and 25 m x 100 m spatial resolution (3-looks)), acquired 2019-09-19T10:04:55.000000

https://datapool.asf.alaska.edu/METADATA_GRD_MD/SB/S1B_EW_GRDM_1SDH_20190919T100345_20190919T100455_018105_02216F_E23C.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-MD)
  • Frame: 606
  • Path: 54
  • Orbit: 18105
  • Start time: 2019-09-19T10:03:45.000000
  • End time: 2019-09-19T10:04:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -68.074402,-7.635747,2000 + -67.153496,-3.429488,2000 + -63.482113,-4.234862,2000 + -64.379570,-8.461402,2000 + -68.074402,-7.635747,2000 + + + + +
+ + S1A_WV_OCN__2SSV_20190918T221534_20190918T222903_029081_034CF9_EBC8 + <![CDATA[

Sentinel-1A (Wave Mode. Low data rate and 5 m x 20 m spatial resolution. Sampled images of 20 km x 20 km at 100 km intervals along the orbit. The Wave mode at VV polarization is the default mode for acquiring data over open ocean.), acquired 2019-09-18T22:29:03.000000

https://datapool.asf.alaska.edu/OCN/SA/S1A_WV_OCN__2SSV_20190918T221534_20190918T222903_029081_034CF9_EBC8.zip

Metadata

  • Processing type: L2 Ocean (OCN)
  • Frame: 987
  • Path: 134
  • Orbit: 29081
  • Start time: 2019-09-18T22:15:34.000000
  • End time: 2019-09-18T22:29:03.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -46.640734,-56.577453,2000 + -47.759353,-54.894787,2000 + -48.779867,-53.200161,2000 + -49.728199,-51.497890,2000 + -50.613604,-49.788743,2000 + -51.458371,-48.076555,2000 + -52.239031,-46.356180,2000 + -52.976448,-44.631120,2000 + -53.675560,-42.900848,2000 + -54.340083,-41.166925,2000 + -54.986889,-39.431965,2000 + -55.592681,-37.690925,2000 + -56.173586,-35.947098,2000 + -56.730479,-34.200244,2000 + -57.279610,-32.453421,2000 + -57.799432,-30.701648,2000 + -58.302603,-28.947697,2000 + -58.790651,-27.191689,2000 + -59.264398,-25.433730,2000 + -59.734723,-23.675794,2000 + -60.183709,-21.914308,2000 + -60.617577,-20.149891,2000 + -61.045984,-18.385168,2000 + -61.479031,-16.622454,2000 + -61.894518,-14.856332,2000 + -62.301722,-13.088870,2000 + -62.700511,-11.319679,2000 + -61.250037,-10.066653,2000 + -60.841071,-11.831442,2000 + -60.421245,-13.594529,2000 + -59.998728,-15.357143,2000 + -59.562730,-17.118071,2000 + -59.123497,-18.878900,2000 + -58.665899,-20.636658,2000 + -58.200295,-22.393773,2000 + -57.721454,-24.148783,2000 + -57.228067,-25.901556,2000 + -56.720046,-27.652810,2000 + -56.189023,-29.399197,2000 + -55.644108,-31.144841,2000 + -55.080054,-32.887828,2000 + -54.495298,-34.627867,2000 + -53.878263,-36.363245,2000 + -53.240114,-38.096065,2000 + -52.571800,-39.825540,2000 + -51.870476,-41.550419,2000 + -51.132574,-43.270028,2000 + -50.346210,-44.983346,2000 + -49.521149,-46.692441,2000 + -48.644621,-48.395111,2000 + -47.710216,-50.090670,2000 + -46.703160,-51.775991,2000 + -45.629105,-53.454570,2000 + -44.470526,-55.123076,2000 + -43.215818,-56.779451,2000 + -45.441732,-58.253590,2000 + -46.640734,-56.577453,2000 + + + + +
+ + S1A_WV_OCN__2SSV_20190918T221534_20190918T222903_029081_034CF9_EBC8 + <![CDATA[

Sentinel-1A (Wave Mode. Low data rate and 5 m x 20 m spatial resolution. Sampled images of 20 km x 20 km at 100 km intervals along the orbit. The Wave mode at VV polarization is the default mode for acquiring data over open ocean.), acquired 2019-09-18T22:29:03.000000

https://datapool.asf.alaska.edu/METADATA_OCN/SA/S1A_WV_OCN__2SSV_20190918T221534_20190918T222903_029081_034CF9_EBC8.iso.xml

Metadata

  • Processing type: XML Metadata (OCN)
  • Frame: 987
  • Path: 134
  • Orbit: 29081
  • Start time: 2019-09-18T22:15:34.000000
  • End time: 2019-09-18T22:29:03.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -46.640734,-56.577453,2000 + -47.759353,-54.894787,2000 + -48.779867,-53.200161,2000 + -49.728199,-51.497890,2000 + -50.613604,-49.788743,2000 + -51.458371,-48.076555,2000 + -52.239031,-46.356180,2000 + -52.976448,-44.631120,2000 + -53.675560,-42.900848,2000 + -54.340083,-41.166925,2000 + -54.986889,-39.431965,2000 + -55.592681,-37.690925,2000 + -56.173586,-35.947098,2000 + -56.730479,-34.200244,2000 + -57.279610,-32.453421,2000 + -57.799432,-30.701648,2000 + -58.302603,-28.947697,2000 + -58.790651,-27.191689,2000 + -59.264398,-25.433730,2000 + -59.734723,-23.675794,2000 + -60.183709,-21.914308,2000 + -60.617577,-20.149891,2000 + -61.045984,-18.385168,2000 + -61.479031,-16.622454,2000 + -61.894518,-14.856332,2000 + -62.301722,-13.088870,2000 + -62.700511,-11.319679,2000 + -61.250037,-10.066653,2000 + -60.841071,-11.831442,2000 + -60.421245,-13.594529,2000 + -59.998728,-15.357143,2000 + -59.562730,-17.118071,2000 + -59.123497,-18.878900,2000 + -58.665899,-20.636658,2000 + -58.200295,-22.393773,2000 + -57.721454,-24.148783,2000 + -57.228067,-25.901556,2000 + -56.720046,-27.652810,2000 + -56.189023,-29.399197,2000 + -55.644108,-31.144841,2000 + -55.080054,-32.887828,2000 + -54.495298,-34.627867,2000 + -53.878263,-36.363245,2000 + -53.240114,-38.096065,2000 + -52.571800,-39.825540,2000 + -51.870476,-41.550419,2000 + -51.132574,-43.270028,2000 + -50.346210,-44.983346,2000 + -49.521149,-46.692441,2000 + -48.644621,-48.395111,2000 + -47.710216,-50.090670,2000 + -46.703160,-51.775991,2000 + -45.629105,-53.454570,2000 + -44.470526,-55.123076,2000 + -43.215818,-56.779451,2000 + -45.441732,-58.253590,2000 + -46.640734,-56.577453,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190917T223525_20190917T223553_018083_0220BD_E303 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:53.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190917T223525_20190917T223553_018083_0220BD_E303.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 1135
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:25.000000
  • End time: 2019-09-17T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.317661,-12.190859,2000 + -60.918720,-13.852788,2000 + -63.219334,-14.383993,2000 + -63.604229,-12.715639,2000 + -61.317661,-12.190859,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190917T223525_20190917T223553_018083_0220BD_E303 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:53.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190917T223525_20190917T223553_018083_0220BD_E303.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 1135
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:25.000000
  • End time: 2019-09-17T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.317661,-12.190859,2000 + -60.918720,-13.852788,2000 + -63.219334,-14.383993,2000 + -63.604229,-12.715639,2000 + -61.317661,-12.190859,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190917T223524_20190917T223553_018083_0220BD_BF86 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:53.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190917T223524_20190917T223553_018083_0220BD_BF86.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 1134
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:24.000000
  • End time: 2019-09-17T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.337540,-12.194642,2000 + -60.917801,-13.928680,2000 + -63.203053,-14.456381,2000 + -63.605003,-12.714944,2000 + -61.337540,-12.194642,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190917T223524_20190917T223553_018083_0220BD_BF86 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:53.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190917T223524_20190917T223553_018083_0220BD_BF86.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 1134
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:24.000000
  • End time: 2019-09-17T22:35:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.337540,-12.194642,2000 + -60.917801,-13.928680,2000 + -63.203053,-14.456381,2000 + -63.605003,-12.714944,2000 + -61.337540,-12.194642,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190917T223521_20190917T223552_018083_0220BD_7573 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:52.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190917T223521_20190917T223552_018083_0220BD_7573.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 1134
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:21.000000
  • End time: 2019-09-17T22:35:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.941300,-14.451600,2000 + -63.200200,-14.824200,2000 + -63.643700,-12.955800,2000 + -61.403000,-12.591900,2000 + -60.941300,-14.451600,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190917T223521_20190917T223552_018083_0220BD_7573 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T22:35:52.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190917T223521_20190917T223552_018083_0220BD_7573.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 1134
  • Path: 32
  • Orbit: 18083
  • Start time: 2019-09-17T22:35:21.000000
  • End time: 2019-09-17T22:35:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: ASCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.941300,-14.451600,2000 + -63.200200,-14.824200,2000 + -63.643700,-12.955800,2000 + -61.403000,-12.591900,2000 + -60.941300,-14.451600,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093413_20190917T093445_029059_034C31_B4EF + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:45.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190917T093413_20190917T093445_029059_034C31_B4EF.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:13.000000
  • End time: 2019-09-17T09:34:45.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.132100,-15.833600,2000 + -61.401600,-15.456200,2000 + -60.913300,-13.516000,2000 + -58.664200,-13.884100,2000 + -59.132100,-15.833600,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093413_20190917T093445_029059_034C31_B4EF + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:45.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190917T093413_20190917T093445_029059_034C31_B4EF.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:13.000000
  • End time: 2019-09-17T09:34:45.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -59.132100,-15.833600,2000 + -61.401600,-15.456200,2000 + -60.913300,-13.516000,2000 + -58.664200,-13.884100,2000 + -59.132100,-15.833600,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093416_20190917T093443_029059_034C31_83CC + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:43.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190917T093416_20190917T093443_029059_034C31_83CC.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:16.000000
  • End time: 2019-09-17T09:34:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.411423,-14.919677,2000 + -61.012600,-13.294689,2000 + -58.702534,-13.826688,2000 + -59.082985,-15.458879,2000 + -61.411423,-14.919677,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093416_20190917T093443_029059_034C31_83CC + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:43.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190917T093416_20190917T093443_029059_034C31_83CC.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:16.000000
  • End time: 2019-09-17T09:34:43.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.411423,-14.919677,2000 + -61.012600,-13.294689,2000 + -58.702534,-13.826688,2000 + -59.082985,-15.458879,2000 + -61.411423,-14.919677,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093417_20190917T093442_029059_034C31_C446 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:42.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093417_20190917T093442_029059_034C31_C446.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:17.000000
  • End time: 2019-09-17T09:34:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.412537,-14.860354,2000 + -61.047962,-13.358631,2000 + -58.720028,-13.894979,2000 + -59.070450,-15.402708,2000 + -61.412537,-14.860354,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093417_20190917T093442_029059_034C31_C446 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:42.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093417_20190917T093442_029059_034C31_C446.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 639
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:34:17.000000
  • End time: 2019-09-17T09:34:42.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.412537,-14.860354,2000 + -61.047962,-13.358631,2000 + -58.720028,-13.894979,2000 + -59.070450,-15.402708,2000 + -61.412537,-14.860354,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093348_20190917T093420_029059_034C31_0B18 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:20.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190917T093348_20190917T093420_029059_034C31_0B18.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:48.000000
  • End time: 2019-09-17T09:34:20.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.770200,-14.329500,2000 + -61.023700,-13.959300,2000 + -60.545100,-12.017400,2000 + -58.309700,-12.378700,2000 + -58.770200,-14.329500,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093348_20190917T093420_029059_034C31_0B18 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:20.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190917T093348_20190917T093420_029059_034C31_0B18.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:48.000000
  • End time: 2019-09-17T09:34:20.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.770200,-14.329500,2000 + -61.023700,-13.959300,2000 + -60.545100,-12.017400,2000 + -58.309700,-12.378700,2000 + -58.770200,-14.329500,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093351_20190917T093418_029059_034C31_38ED + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:18.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190917T093351_20190917T093418_029059_034C31_38ED.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:51.000000
  • End time: 2019-09-17T09:34:18.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.045780,-13.429008,2000 + -60.654495,-11.802986,2000 + -58.359760,-12.328537,2000 + -58.734673,-13.961508,2000 + -61.045780,-13.429008,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093351_20190917T093418_029059_034C31_38ED + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:18.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190917T093351_20190917T093418_029059_034C31_38ED.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:51.000000
  • End time: 2019-09-17T09:34:18.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.045780,-13.429008,2000 + -60.654495,-11.802986,2000 + -58.359760,-12.328537,2000 + -58.734673,-13.961508,2000 + -61.045780,-13.429008,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093352_20190917T093417_029059_034C31_82A3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:17.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093352_20190917T093417_029059_034C31_82A3.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:52.000000
  • End time: 2019-09-17T09:34:17.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.046776,-13.358816,2000 + -60.685543,-11.857005,2000 + -58.371155,-12.387247,2000 + -58.720005,-13.894891,2000 + -61.046776,-13.358816,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093352_20190917T093417_029059_034C31_82A3 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:34:17.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093352_20190917T093417_029059_034C31_82A3.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 634
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:52.000000
  • End time: 2019-09-17T09:34:17.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -61.046776,-13.358816,2000 + -60.685543,-11.857005,2000 + -58.371155,-12.387247,2000 + -58.720005,-13.894891,2000 + -61.046776,-13.358816,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093323_20190917T093355_029059_034C31_7021 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:55.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190917T093323_20190917T093355_029059_034C31_7021.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:23.000000
  • End time: 2019-09-17T09:33:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.414100,-12.824300,2000 + -60.653400,-12.461100,2000 + -60.183700,-10.517500,2000 + -57.960400,-10.872300,2000 + -58.414100,-12.824300,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093323_20190917T093355_029059_034C31_7021 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:55.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190917T093323_20190917T093355_029059_034C31_7021.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:23.000000
  • End time: 2019-09-17T09:33:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.414100,-12.824300,2000 + -60.653400,-12.461100,2000 + -60.183700,-10.517500,2000 + -57.960400,-10.872300,2000 + -58.414100,-12.824300,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093326_20190917T093353_029059_034C31_807F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:53.000000

https://datapool.asf.alaska.edu/SLC/SA/S1A_IW_SLC__1SDV_20190917T093326_20190917T093353_029059_034C31_807F.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:26.000000
  • End time: 2019-09-17T09:33:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.684959,-11.938018,2000 + -60.300694,-10.310915,2000 + -58.017872,-10.830585,2000 + -58.387699,-12.464400,2000 + -60.684959,-11.938018,2000 + + + + +
+ + S1A_IW_SLC__1SDV_20190917T093326_20190917T093353_029059_034C31_807F + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:53.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SA/S1A_IW_SLC__1SDV_20190917T093326_20190917T093353_029059_034C31_807F.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:26.000000
  • End time: 2019-09-17T09:33:53.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.684959,-11.938018,2000 + -60.300694,-10.310915,2000 + -58.017872,-10.830585,2000 + -58.387699,-12.464400,2000 + -60.684959,-11.938018,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093327_20190917T093352_029059_034C31_0525 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:52.000000

https://datapool.asf.alaska.edu/GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093327_20190917T093352_029059_034C31_0525.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:27.000000
  • End time: 2019-09-17T09:33:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.684361,-11.857187,2000 + -60.330334,-10.354244,2000 + -58.027843,-10.878566,2000 + -58.371132,-12.387157,2000 + -60.684361,-11.857187,2000 + + + + +
+ + S1A_IW_GRDH_1SDV_20190917T093327_20190917T093352_029059_034C31_0525 + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:52.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SA/S1A_IW_GRDH_1SDV_20190917T093327_20190917T093352_029059_034C31_0525.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 629
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:33:27.000000
  • End time: 2019-09-17T09:33:52.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.684361,-11.857187,2000 + -60.330334,-10.354244,2000 + -58.027843,-10.878566,2000 + -58.371132,-12.387157,2000 + -60.684361,-11.857187,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093258_20190917T093330_029059_034C31_822B + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:30.000000

https://datapool.asf.alaska.edu/RAW/SA/S1A_IW_RAW__0SDV_20190917T093258_20190917T093330_029059_034C31_822B.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 624
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:32:58.000000
  • End time: 2019-09-17T09:33:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.063300,-11.318200,2000 + -60.290000,-10.961500,2000 + -59.828800,-9.016400,2000 + -57.615900,-9.365100,2000 + -58.063300,-11.318200,2000 + + + + +
+ + S1A_IW_RAW__0SDV_20190917T093258_20190917T093330_029059_034C31_822B + <![CDATA[

Sentinel-1A (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-17T09:33:30.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SA/S1A_IW_RAW__0SDV_20190917T093258_20190917T093330_029059_034C31_822B.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 624
  • Path: 112
  • Orbit: 29059
  • Start time: 2019-09-17T09:32:58.000000
  • End time: 2019-09-17T09:33:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -58.063300,-11.318200,2000 + -60.290000,-10.961500,2000 + -59.828800,-9.016400,2000 + -57.615900,-9.365100,2000 + -58.063300,-11.318200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094125_20190916T094158_018061_02200A_6848 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:58.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190916T094125_20190916T094158_018061_02200A_6848.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:25.000000
  • End time: 2019-09-16T09:41:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.904400,-14.651200,2000 + -63.161100,-14.279500,2000 + -62.680500,-12.337900,2000 + -60.442400,-12.700600,2000 + -60.904400,-14.651200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094125_20190916T094158_018061_02200A_6848 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:58.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190916T094125_20190916T094158_018061_02200A_6848.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:25.000000
  • End time: 2019-09-16T09:41:58.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.904400,-14.651200,2000 + -63.161100,-14.279500,2000 + -62.680500,-12.337900,2000 + -60.442400,-12.700600,2000 + -60.904400,-14.651200,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094128_20190916T094155_018061_02200A_57FB + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:55.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190916T094128_20190916T094155_018061_02200A_57FB.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:28.000000
  • End time: 2019-09-16T09:41:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.267117,-13.730605,2000 + -62.875107,-12.110899,2000 + -60.515114,-12.652575,2000 + -60.890030,-14.279496,2000 + -63.267117,-13.730605,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094128_20190916T094155_018061_02200A_57FB + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:55.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190916T094128_20190916T094155_018061_02200A_57FB.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:28.000000
  • End time: 2019-09-16T09:41:55.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.267117,-13.730605,2000 + -62.875107,-12.110899,2000 + -60.515114,-12.652575,2000 + -60.890030,-14.279496,2000 + -63.267117,-13.730605,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094129_20190916T094154_018061_02200A_1A35 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:54.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094129_20190916T094154_018061_02200A_1A35.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:29.000000
  • End time: 2019-09-16T09:41:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.361538,-13.638089,2000 + -63.001743,-12.136126,2000 + -60.531185,-12.703883,2000 + -60.877350,-14.212212,2000 + -63.361538,-13.638089,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094129_20190916T094154_018061_02200A_1A35 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:54.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094129_20190916T094154_018061_02200A_1A35.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 635
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:29.000000
  • End time: 2019-09-16T09:41:54.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.361538,-13.638089,2000 + -63.001743,-12.136126,2000 + -60.531185,-12.703883,2000 + -60.877350,-14.212212,2000 + -63.361538,-13.638089,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094100_20190916T094133_018061_02200A_F7E9 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:33.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190916T094100_20190916T094133_018061_02200A_F7E9.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:00.000000
  • End time: 2019-09-16T09:41:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.547100,-13.146200,2000 + -62.789200,-12.781500,2000 + -62.317700,-10.838200,2000 + -60.092100,-11.194400,2000 + -60.547100,-13.146200,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094100_20190916T094133_018061_02200A_F7E9 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:33.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190916T094100_20190916T094133_018061_02200A_F7E9.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:00.000000
  • End time: 2019-09-16T09:41:33.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.547100,-13.146200,2000 + -62.789200,-12.781500,2000 + -62.317700,-10.838200,2000 + -60.092100,-11.194400,2000 + -60.547100,-13.146200,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094103_20190916T094130_018061_02200A_A113 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:30.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190916T094103_20190916T094130_018061_02200A_A113.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:03.000000
  • End time: 2019-09-16T09:41:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.907394,-12.239494,2000 + -62.522537,-10.618695,2000 + -60.177437,-11.153738,2000 + -60.547211,-12.781504,2000 + -62.907394,-12.239494,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094103_20190916T094130_018061_02200A_A113 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:30.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190916T094103_20190916T094130_018061_02200A_A113.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:03.000000
  • End time: 2019-09-16T09:41:30.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.907394,-12.239494,2000 + -62.522537,-10.618695,2000 + -60.177437,-11.153738,2000 + -60.547211,-12.781504,2000 + -62.907394,-12.239494,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094104_20190916T094129_018061_02200A_D2E1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:29.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094104_20190916T094129_018061_02200A_D2E1.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:04.000000
  • End time: 2019-09-16T09:41:29.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.000557,-12.136310,2000 + -62.643593,-10.634274,2000 + -60.185928,-11.195577,2000 + -60.531166,-12.703794,2000 + -63.000557,-12.136310,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094104_20190916T094129_018061_02200A_D2E1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:29.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094104_20190916T094129_018061_02200A_D2E1.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 630
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:41:04.000000
  • End time: 2019-09-16T09:41:29.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -63.000557,-12.136310,2000 + -62.643593,-10.634274,2000 + -60.185928,-11.195577,2000 + -60.531166,-12.703794,2000 + -63.000557,-12.136310,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094035_20190916T094108_018061_02200A_EC2B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:08.000000

https://datapool.asf.alaska.edu/RAW/SB/S1B_IW_RAW__0SDV_20190916T094035_20190916T094108_018061_02200A_EC2B.zip

Metadata

  • Processing type: L0 Raw Data (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:35.000000
  • End time: 2019-09-16T09:41:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.195200,-11.640300,2000 + -62.424400,-11.282200,2000 + -61.961500,-9.337500,2000 + -59.746600,-9.687400,2000 + -60.195200,-11.640300,2000 + + + + +
+ + S1B_IW_RAW__0SDV_20190916T094035_20190916T094108_018061_02200A_EC2B + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:08.000000

https://datapool.asf.alaska.edu/METADATA_RAW/SB/S1B_IW_RAW__0SDV_20190916T094035_20190916T094108_018061_02200A_EC2B.iso.xml

Metadata

  • Processing type: XML Metadata (RAW)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:35.000000
  • End time: 2019-09-16T09:41:08.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -60.195200,-11.640300,2000 + -62.424400,-11.282200,2000 + -61.961500,-9.337500,2000 + -59.746600,-9.687400,2000 + -60.195200,-11.640300,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094038_20190916T094106_018061_02200A_06DA + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:06.000000

https://datapool.asf.alaska.edu/SLC/SB/S1B_IW_SLC__1SDV_20190916T094038_20190916T094106_018061_02200A_06DA.zip

Metadata

  • Processing type: L1 Single Look Complex (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:38.000000
  • End time: 2019-09-16T09:41:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.551445,-10.748033,2000 + -62.160206,-9.069591,2000 + -59.826420,-9.598450,2000 + -60.204098,-11.283860,2000 + -62.551445,-10.748033,2000 + + + + +
+ + S1B_IW_SLC__1SDV_20190916T094038_20190916T094106_018061_02200A_06DA + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:06.000000

https://datapool.asf.alaska.edu/METADATA_SLC/SB/S1B_IW_SLC__1SDV_20190916T094038_20190916T094106_018061_02200A_06DA.iso.xml

Metadata

  • Processing type: XML Metadata (SLC)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:38.000000
  • End time: 2019-09-16T09:41:06.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.551445,-10.748033,2000 + -62.160206,-9.069591,2000 + -59.826420,-9.598450,2000 + -60.204098,-11.283860,2000 + -62.551445,-10.748033,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094039_20190916T094104_018061_02200A_A5D1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:04.000000

https://datapool.asf.alaska.edu/GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094039_20190916T094104_018061_02200A_A5D1.zip

Metadata

  • Processing type: L1 Detected High-Res Dual-Pol (GRD-HD)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:39.000000
  • End time: 2019-09-16T09:41:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.642593,-10.634412,2000 + -62.293266,-9.131327,2000 + -59.846638,-9.686403,2000 + -60.185909,-11.195487,2000 + -62.642593,-10.634412,2000 + + + + +
+ + S1B_IW_GRDH_1SDV_20190916T094039_20190916T094104_018061_02200A_A5D1 + <![CDATA[

Sentinel-1B (Interferometric Wide. 250 km swath, 5 m x 20 m spatial resolution and burst synchronization for interferometry. IW is considered to be the standard mode over land masses.), acquired 2019-09-16T09:41:04.000000

https://datapool.asf.alaska.edu/METADATA_GRD_HD/SB/S1B_IW_GRDH_1SDV_20190916T094039_20190916T094104_018061_02200A_A5D1.iso.xml

Metadata

  • Processing type: XML Metadata (GRD-HD)
  • Frame: 625
  • Path: 10
  • Orbit: 18061
  • Start time: 2019-09-16T09:40:39.000000
  • End time: 2019-09-16T09:41:04.000000
  • Faraday Rotation: NA
  • Ascending/Descending: DESCENDING
  • Off Nadir Angle: NA
+ #yellowLineGreenPoly + + 1 + relativeToGround + + + + -62.642593,-10.634412,2000 + -62.293266,-9.131327,2000 + -59.846638,-9.686403,2000 + -60.185909,-11.195487,2000 + -62.642593,-10.634412,2000 + + + + +
+
+
\ No newline at end of file diff --git a/tests/yml_tests/Resources/shps_valid/NED1_F.shp b/tests/yml_tests/Resources/shps_valid/NED1_F.shp new file mode 100644 index 0000000..412385e Binary files /dev/null and b/tests/yml_tests/Resources/shps_valid/NED1_F.shp differ diff --git a/tests/yml_tests/Resources/shps_valid/NED2_M.shp b/tests/yml_tests/Resources/shps_valid/NED2_M.shp new file mode 100644 index 0000000..7eb6739 Binary files /dev/null and b/tests/yml_tests/Resources/shps_valid/NED2_M.shp differ diff --git a/tests/yml_tests/Resources/shps_valid/PIGSearch.shp b/tests/yml_tests/Resources/shps_valid/PIGSearch.shp new file mode 100644 index 0000000..292e574 Binary files /dev/null and b/tests/yml_tests/Resources/shps_valid/PIGSearch.shp differ diff --git a/tests/yml_tests/Resources/shps_valid/ShorelineMask26.shp b/tests/yml_tests/Resources/shps_valid/ShorelineMask26.shp new file mode 100644 index 0000000..1541e55 Binary files /dev/null and b/tests/yml_tests/Resources/shps_valid/ShorelineMask26.shp differ diff --git a/tests/yml_tests/Resources/zips_invalid/DoubleCompressed.zip b/tests/yml_tests/Resources/zips_invalid/DoubleCompressed.zip new file mode 100644 index 0000000..efe5512 Binary files /dev/null and b/tests/yml_tests/Resources/zips_invalid/DoubleCompressed.zip differ diff --git a/tests/yml_tests/Resources/zips_valid/MultiShp_SingleGeo_WithDir.zip b/tests/yml_tests/Resources/zips_valid/MultiShp_SingleGeo_WithDir.zip new file mode 100644 index 0000000..c7b55f7 Binary files /dev/null and b/tests/yml_tests/Resources/zips_valid/MultiShp_SingleGeo_WithDir.zip differ diff --git a/tests/yml_tests/Resources/zips_valid/NED1_F.zip b/tests/yml_tests/Resources/zips_valid/NED1_F.zip new file mode 100644 index 0000000..2aeac91 Binary files /dev/null and b/tests/yml_tests/Resources/zips_valid/NED1_F.zip differ diff --git a/tests/yml_tests/Resources/zips_valid/OneBad_TwoGood.zip b/tests/yml_tests/Resources/zips_valid/OneBad_TwoGood.zip new file mode 100644 index 0000000..928e0bd Binary files /dev/null and b/tests/yml_tests/Resources/zips_valid/OneBad_TwoGood.zip differ diff --git a/tests/yml_tests/TestingReadMe.md b/tests/yml_tests/TestingReadMe.md new file mode 100644 index 0000000..a46710b --- /dev/null +++ b/tests/yml_tests/TestingReadMe.md @@ -0,0 +1,98 @@ +#PyTest ReadMe: A 'quick' guide + +(follow readme in root of project on setting up environment first) + +## How to Run Tests: +(paths here assume you're in root of project, but should work from anywhere) +```bash +pytest test_mainManager.py +``` + + + Most common **pytest args**: + (-v | -vv | -vvv): Print more information, with -vvv being the most + -s: If python has print statements, this lets you see them. + -x: Quit as soon as the first test fails + -rs: (by itself) Print *why* each test was skipped to screen. + -n INT: (by itself) Number of tests to run at once. (Default = 1, USE THIS!!) + + + All **Custom args**: + --api [DEV|TEST|PROD]: Run against that api. If value doesn't match + these three options, it assumes the value IS the url to use. + --only-run : Only run tests that contain this string. + --dont-run : Dont run tests that contain this string. + --only-run-file : Only run yamls that contain this in their name. + --dont-run-file : Dont run yamls that contain this in their name. + +## Writting Tests Notes: +The suite will automatically figure out which test is which, based on the +parameters, **except** for URL tests. Since there's no 'required' params for +those, you need to have 'url tests' at the top of the yaml list, instead of +'tests'. + +For yaml tests, they need to be in the following format: + +```yaml +api: DEV +tests: (<- or 'url tests' if testing urls) +- title of test 1: + param1: asdf + param2: + - asdf1 + - asdf2 +- title of test 2: + param3: null +``` + +#### All Yaml Tests: + + Custom Global Tags at top of Yaml: + (These get overridden if the custom arguments are used in command) + 'api: [DEV|TEST|PROD]' => set default api for all tests in file. + (More coming soon...) + + + Custom Tags available inside *each* test: + 'print: [True|False]' => print information on that specific test. + (Defaults to True *IF* you don't assert anything). + +#### APIUtils/FilesToWKT Test Params: + + 'test wkt': (Required) The string WKT, *or* path to file to file to + test. Can be a list of wkt's/files + + 'parsed wkt': If 'test wkt' is a file, verify it's output is equal to this. + + 'repaired wkt': Sets both 'repair wkt wrapped' and 'repair wkt unwrapped' + if they aren't declared. + + 'repaired wkt wrapped/unwrapped': verify APIUtils/repairWKT's output + is equal to this. (For positive test cases). + + 'repair': Checks repairs of wkt AND num of repairs against this. Can + be list of repairs. defaults to empty list if 'test wkt' + is used. Use 'check repair: False' to override this. + + 'repaired error msg': Asserts repairing WKT returns an error + containing this msg. + + 'parsed error msg': Asserts parsing file returns an error containing + this msg. + +#### URLs Test Params: + + 'expected file': Expected type of file returned by API. (json, csv, etc.) + + 'expected code': Http code returned by API. (200, 400, 404, etc.) + Note: All unknown keywords are assumed to be apart of the url. + Keywords get joined as key=value, and added to the end of the api query. + +#### CMR Input Test Params: + + 'parser': (Required) Which parser to use. All **single** param parsers + in CMR/Input.py are added. + + 'input': (Required) Input to send through the parser + + 'expected': What you expect to return. (very literal, you + can have lists in lists). + + 'expected error': Asserts the error message thrown contains this msg. + +#### BulkDownload Test Params: + + 'account': (Required) Which account inside creds_earthdata.yml to use. + To add a new account, just add it to the list in that yml. + + 'python_version': Which python version(s) to run the test under. (Default, both 2 and 3). + + 'args': Args to pass onto the bulk_download script itself. Default = "" + ( See: https://bulk-download.asf.alaska.edu/help) + + 'expected_outcome': How you expect the test to finish running. Possible outcomes: + ['success', 'bad_creds', 'bad_study_area', 'bad_download_perms'] + + 'timeout': How long to wait until the test auto-fails, in seconds. Default = 10. + Can also pass null/None to have it never fail. Also includes time to download the data. + + 'products': What to add to self.files inside the bulk_download script. Can + be a list, or single product. + \ No newline at end of file diff --git a/tests/yml_tests/helpers.py b/tests/yml_tests/helpers.py new file mode 100644 index 0000000..d753722 --- /dev/null +++ b/tests/yml_tests/helpers.py @@ -0,0 +1,24 @@ +import requests # for make_request +import json # files stuff + + +# Incase I need to change endpoint interaction, I can do it all here: +def make_request(full_url, files=None, data=None): + if data is None: + data = {} + try: + r = requests.post(full_url, files=files, json=data) + except (requests.ConnectionError, requests.Timeout, requests.TooManyRedirects) as e: + assert False, "Cannot connect to API: {0}. Error: '{1}'.".format(full_url, str(e)) + return r + +# Server returns 'json' as string. (Unless it's a server-error page). +# Last two params are just for helpfull error messages: +def request_to_json(request_str, url, test_title): + try: + request_json = json.loads(request_str) + except (json.JSONDecodeError, json.decoder.JSONDecodeError) as e: + assert False, "API did not return a json. (Error page?). URL: '{0}'. Title: '{1}'. Error: '{2}'. \nContent:\n{3}\n".format(url, test_title, str(e), str(request_str)) + return request_json + + diff --git a/tests/yml_tests/pytest-config.yml b/tests/yml_tests/pytest-config.yml new file mode 100644 index 0000000..81bb446 --- /dev/null +++ b/tests/yml_tests/pytest-config.yml @@ -0,0 +1,40 @@ + + +test_types: +## WKTUtils sanity tests: +- FilesToWKT WKTUtils Endpoint: + required_keys: "file wkt" + method: test_FilesToWKTEndpoint + variables: + endpoint: "/services/utils/files_to_wkt" +- RepairWKT WKTUtils Endpoint: + required_keys: "test wkt" + method: test_RepairWKTEndpoint + variables: + endpoint: "/services/utils/wkt" + +## Main SearchAPI tests: +- Mission List SearchAPI Endpoint: + required_keys: misson_list_size_min + method: test_MissionListEndpoint + variables: + endpoint: "/services/utils/mission_list" + +- Date Parser SearchAPI Endpoint: + required_keys: date + method: test_DateParserEndpoint + variables: + endpoint: "/services/utils/date" + +- Baseline SearchAPI Endpoint: + required_keys: reference + method: test_BaselineEndpoint + variables: + endpoint: "/services/search/baseline" + maturity: prod + +- Get Data from SearchAPI: + method: test_URLManagerSearch + variables: + endpoint: "/services/search/param" + maturity: prod diff --git a/tests/yml_tests/pytest-managers.py b/tests/yml_tests/pytest-managers.py new file mode 100644 index 0000000..d716bfd --- /dev/null +++ b/tests/yml_tests/pytest-managers.py @@ -0,0 +1,29 @@ +from test_url_manager import test_URL_Manager +from test_missionList_manager import test_mission_list +from test_dateParser_manager import test_date_parser +from test_baseline_manager import test_baseline +from test_WKTUtils import test_filesToWKT, test_repairWKT + +########################## +## SearchAPI Main tests ## +########################## +def test_URLManagerSearch(**args): + test_URL_Manager(**args) + +def test_MissionListEndpoint(**args): + test_mission_list(**args) + +def test_DateParserEndpoint(**args): + test_date_parser(**args) + +def test_BaselineEndpoint(**args): + test_baseline(**args) + +########################### +## WKTUtils Single tests ## +########################### +def test_FilesToWKTEndpoint(**args): + test_filesToWKT(**args) + +def test_RepairWKTEndpoint(**args): + test_repairWKT(**args) diff --git a/tests/yml_tests/test_Baseline.yml b/tests/yml_tests/test_Baseline.yml new file mode 100644 index 0000000..3bdabda --- /dev/null +++ b/tests/yml_tests/test_Baseline.yml @@ -0,0 +1,152 @@ + +tests: +# - available params: +# reference: mandatory +# output: +# processingLevel: +# maturity: only on dev/test/local - CMR maturity + +- baseline Sentinel: + reference: S1B_IW_SLC__1SDV_20190610T143518_20190610T143545_016635_01F4F7_6EA1 + # use_maturity: True + output: csv + + expected file: csv + expected code: 200 + +- baseline E1: + reference: E1_23942_STD_F155 + output: csv + # use_maturity: True + + expected file: csv + expected code: 200 + +- baseline J1: + reference: J1_36421_STD_F275 + # use_maturity: True + output: csv + + expected file: csv + expected code: 200 + +- baseline R1: + reference: R1_65207_ST1_F162 + # use_maturity: True + output: csv + + expected file: csv + expected code: 200 + +- baseline ALOS: + reference: ALPSRP279071320 + output: csv + + expected file: csv + expected code: 200 + +- baseline count: + reference: E1_23942_STD_F155 + output: count + # use_maturity: True + + expected file: count + expected code: 200 + +- baseline download: + reference: R1_59719_ST5_F155 + output: download + # use_maturity: True + + expected file: x-python + expected code: 200 + +- baseline jsonlite: + reference: ALPSRP064351410 + output: jsonlite + # use_maturity: True + + expected file: jsonlite + expected code: 200 + +- baseline kml: + reference: ALPSRP171711410 + output: kml + # use_maturity: True + + expected file: kml + expected code: 200 + +- baseline metalink: + reference: J1_23900_STD_F275 + output: metalink + # use_maturity: True + + expected file: metalink + expected code: 200 + +- baseline geojson: + reference: S1B_IW_SLC__1SDV_20180112T141823_20180112T141850_009139_0105AA_E6F5 + output: geojson + # use_maturity: True + + expected file: geojson + expected code: 200 + +- baseline json: + reference: S1A_IW_SLC__1SSV_20160528T141908_20160528T141938_011460_011746_335C + output: json + # use_maturity: True + + expected file: jsonlite # dropping json output + expected code: 200 + +- no output specified: + reference: J1_08743_STD_F275 + # use_maturity: True + + expected file: metalink + expected code: 200 + +- baseline don't allow master keyword: + reference: "" + master: S1B_IW_SLC__1SDV_20190610T143518_20190610T143545_016635_01F4F7_6EA1 + output: csv + + expected file: error json + expected code: 400 + +- invalid reference: + reference: ALPSinvalid + + expected file: error json + expected code: 400 + +- blank reference: + reference: "" + output: count + + expected file: error json + expected code: 400 + +- default processingLevel does not exist: + reference: ALPSRS279162350 + # use_maturity: True + + expected file: error json + expected code: 400 + +- Sentinel RAW without baseline: + reference: S1B_EW_RAW__0SDH_20200408T180120_20200408T180228_021056_027F1A_8312 + # use_maturity: True + + expected file: error json + expected code: 400 + +- Sentinel GRD without baseline: + reference: S1A_IW_GRDH_1SDV_20200408T164643_20200408T164708_032038_03B3AF_87FC + # use_maturity: True + + expected file: error json + expected code: 400 + diff --git a/tests/yml_tests/test_DateParser.yaml b/tests/yml_tests/test_DateParser.yaml new file mode 100644 index 0000000..7bba878 --- /dev/null +++ b/tests/yml_tests/test_DateParser.yaml @@ -0,0 +1,520 @@ + +tests: +- blank date: + date: "" + expected file: error json + expected code: 400 + expected error: could not parse date + +- today: + date: today + expected file: json + expected code: 200 + expected date: parsed + +- last day: + date: last+day + expected file: error json + expected code: 400 + expected error: could not parse date + +- last 10 days: + date: last+10+days + expected file: error json + expected code: 400 + expected error: could not parse date + +- last week: + date: last+week + expected file: json + expected code: 200 + expected date: parsed + +- last month: + date: last+month + expected file: json + expected code: 200 + expected date: parsed + +- last year: + date: last+year + expected file: json + expected code: 200 + expected date: parsed + +- next day: + date: next+day + expected file: error json + expected code: 400 + expected error: could not parse date + +- next 10 days: + date: next+10+days + expected file: error json + expected code: 400 + expected error: could not parse date + +- next hour: + date: next+hour + expected file: error json + expected code: 400 + expected error: could not parse date + +- next week: + date: next+week + expected file: json + expected code: 200 + expected date: parsed + +- next month: + date: next+month + expected file: json + expected code: 200 + expected date: parsed + +- next year: + date: next+year + expected file: json + expected code: 200 + expected date: parsed + +- yesterday morning: + date: yesterday+morning + expected file: error json + expected code: 400 + expected error: could not parse date + +- yesterday evening: + date: yesterday+evening + expected file: error json + expected code: 400 + expected error: could not parse date + +- 7daysago no spaces: + date: 7daysago + expected file: error json + expected code: 400 + expected error: could not parse date + +- ayearago no spaces: + date: ayearago + expected file: error json + expected code: 400 + expected error: could not parse date + +- beginning of last week: + date: beginning+of+last+week + expected file: error json + expected code: 400 + expected error: could not parse date + +- beginning of the year: + date: beginning+of+the+year + expected file: error json + expected code: 400 + expected error: could not parse date + +- le 01-02-2020: + date: le+01-02-2020 + expected file: json + expected code: 200 + expected date: parsed + +- 01-02-2020: + date: 01-02-2020 + expected file: json + expected code: 200 + expected date: parsed + +- now in Italian: + date: adesso + expected file: error json + expected code: 400 + expected error: could not parse date + +- tomorrow in Italian: + date: domani + expected file: json + expected code: 200 + expected date: parsed + +- yesterday in French: + date: hier + expected file: json + expected code: 200 + expected date: parsed + +- a month ago in German: + date: vor+einem+monat + expected file: json + expected code: 200 + expected date: parsed + +- now in German: + date: jetzt + expected file: json + expected code: 200 + expected date: parsed + +- a year ago in Spanish: + date: Hace+un+ano + expected file: json + expected code: 200 + expected date: parsed + +- yesterday in Spanish: + date: ayer + expected file: json + expected code: 200 + expected date: parsed + +- now in Chinese: + date: 现在 + expected file: json + expected code: 200 + expected date: parsed + +- tomorrow in Chinese: + date: 明天 + expected file: json + expected code: 200 + expected date: parsed + +- 1 month ago in Chinese: + date: 1个月前 + expected file: json + expected code: 200 + expected date: parsed + +- 10 min ago: + date: 10+min+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 months 1 week and 1 day ago: + date: 3+months,+1+week+and+1+day+ago + expected file: json + expected code: 200 + expected date: parsed + +- in 2 days: + date: in+2+days + expected file: json + expected code: 200 + expected date: parsed + +- tomorrow: + date: tomorrow + expected file: json + expected code: 200 + expected date: parsed + +- March: + date: March + expected file: json + expected code: 200 + expected date: parsed + +- March 2016: + date: March+2016 + expected file: json + expected code: 200 + expected date: parsed + +- last February: + date: last+February + expected file: error json + expected code: 400 + expected error: could not parse date + +- February: + date: February + expected file: json + expected code: 200 + expected date: parsed + +- Feb: + date: Feb + expected file: json + expected code: 200 + expected date: parsed + +- Nov: + date: Nov + expected file: json + expected code: 200 + expected date: parsed + +- 3 day ago: + date: 3+day+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 days ago: + date: 3+days+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 week ago: + date: 3+week+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 weeks ago: + date: 3+weeks+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 month ago: + date: 3+month+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 months ago: + date: 3+months+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 year ago: + date: 3+year+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 years ago: + date: 3+years+ago + expected file: json + expected code: 200 + expected date: parsed + +- 1pm yesterday: + date: 1pm+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 1am yesterday: + date: 1am+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 10am yesterday: + date: 10am+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 10 am yesterday: + date: 10+am+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 10:00 yesterday: + date: 10:00+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 20:00 yesterday: + date: 20:00+yesterday + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly - ensure it does not crash API or fail - yesterday, current time +- 13 yesterday: + date: 13+yesterday + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly - ensure it does not crash API or fail - yesterday, current time +- 1300 yesterday: + date: 1300+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- one oclock yesterday: + date: one+oclock+yesterday + expected file: error json + expected code: 400 + expected error: could not parse date + +- 1oclock yesterday: + date: 1oclock+yesterday + expected file: error json + expected code: 400 + expected error: could not parse date + +- midnight yesterday: + date: midnight+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- noon yesterday: + date: noon+yesterday + expected file: json + expected code: 200 + expected date: parsed + +- 1 hour ago: + date: 1+hour+ago + expected file: json + expected code: 200 + expected date: parsed + +- 3 hours ago: + date: 3+hours+ago + expected file: json + expected code: 200 + expected date: parsed + +- August 14, 2015 EST: + date: August+14,+2015+EST + expected file: json + expected code: 200 + expected date: parsed + +- July 4, 2013 PST: + date: July+4,+2013+PST + expected file: json + expected code: 200 + expected date: parsed + +- yesterday -0200: + date: yesterday+-0200 + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: doesn't subtract the 5 hours +- 21 July 2013 10:15 pm -0500: + date: 21+July+2013+10:15+pm+-0500 + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: yesterday correct, but subtracts 0200 hours from now +- yesterday 20:00 -0200: + date: yesterday+20:00+-0200 + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: yesterday correct, but subtracts 0200 hours from now +- yesterday 8pm -0200: + date: yesterday+8pm+-0200 + expected file: json + expected code: 200 + expected date: parsed + +- Thur: + date: Thur + expected file: error json + expected code: 400 + expected error: could not parse date + +- Thurs: + date: Thurs + expected file: error json + expected code: 400 + expected error: could not parse date + +- last Sunday: + date: last+Sunday + expected file: error json + expected code: 400 + expected error: could not parse date + +- Tuesday: + date: Tuesday + expected file: json + expected code: 200 + expected date: parsed + +- Thursday: + date: Thursday + expected file: json + expected code: 200 + expected date: parsed + +- Sat: + date: Sat + expected file: json + expected code: 200 + expected date: parsed + +- Fri: + date: Fri + expected file: json + expected code: 200 + expected date: parsed + +- Sunday: + date: Sunday + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: subtracts X from “today”, not year listed +- 123rd day of 1990: + date: 123rd+day+of+1990 + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: subtracts X from “today”, not year listed +- 2nd day of 2002: + date: 2nd+day+of+2002 + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: subtracts X from "current date" but lists correct month +- 1st day of 2 months ago: + date: 1st+day+of+2+months+ago + expected file: json + expected code: 200 + expected date: parsed + +# parses incorrectly: ensure it does not crash API or fail: subtracts X from "current date" but lists correct month +- 5th day of 5 months ago: + date: 5th+day+of+5+months+ago + expected file: json + expected code: 200 + expected date: parsed + +- Special Characters 1: + date: $@ + expected file: error json + expected code: 400 + expected error: could not parse date + +- Special Characters 2: + date: _+ + expected file: error json + expected code: 400 + expected error: could not parse date + +- Special Characters 3: + date: $!) + expected file: error json + expected code: 400 + expected error: could not parse date + +- Special Characters 4: + date: ~~~ + expected file: error json + expected code: 400 + expected error: could not parse date \ No newline at end of file diff --git a/tests/yml_tests/test_MissionList.yml b/tests/yml_tests/test_MissionList.yml new file mode 100644 index 0000000..e86be96 --- /dev/null +++ b/tests/yml_tests/test_MissionList.yml @@ -0,0 +1,8 @@ + + + +tests: +- min size check of mission list: # More-so to check the endpoint returns a list of missions + misson_list_size_min: 934 # test is 934, prod is 947 rn. + # platform: AIRSAR + diff --git a/tests/yml_tests/test_URLs.yml b/tests/yml_tests/test_URLs.yml new file mode 100644 index 0000000..c6589c2 --- /dev/null +++ b/tests/yml_tests/test_URLs.yml @@ -0,0 +1,2573 @@ + + +tests: +- absoluteOrbit single: + absoluteOrbit: 5542 + maxresults: 10 + output: CSV + + expected file: csv + expected code: 200 + +- absoluteOrbit list: + absoluteOrbit: 5542,5543,5545 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- absoluteOrbit list range: + absoluteOrbit: 5000,5100-5200 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- absoluteOrbit zero range: + absoluteOrbit: 19364-19364 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- absoluteOrbit list E1: + absoluteOrbit: 32448,32449,32450 + platform: E1 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- absoluteOrbit zero range list: + absoluteOrbit: 19364-19364,19189 + beamMode: EW,IW + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- asfframe list range: + asfframe: 300-345,2120 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- asfframe ALOS zero range: + asfframe: 2100-2100 + platform: ALOS + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- asfframe ALOS zero range list: + asfframe: 2100-2100,2120 + platform: ALOS + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + + +- circle: + circle: -150.2,65.0,100 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- beamMode list 100: + beamMode: FBD,FBS,Standard + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamMode standard 10: + beamMode: Standard + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- beamMode list R1 100: + beamMode: Standard,STD,Fine,High,Low,Wide,Narrow,ScanSAR+Wide,ScanSAR+Narrow + platform: RADARSAT-1 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamMode list S1A 100: + beamMode: EW,IW,S1,S2,S3,S4,S5,S6,WV + platform: Sentinel-1A + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamMode list S1B 100: + beamMode: EW,IW,S1,S2,S3,S4,S5,S6,WV + platform: Sentinel-1B + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamMode POL RPI 100: + beamMode: POL,RPI + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath OBS 100: + beamSwath: OBS + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath Airsar list 100: + beamSwath: 3FP,ATI,XTI + platform: AIRSAR + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath list 100: + beamSwath: FN1,FN2,FN3,FN4,FN5,STD + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath STD ERS1 100: + beamSwath: STD + platform: ERS-1 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath STD ERS2 100: + beamSwath: STD + platform: ERS-2 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath STD JERS 100: + beamSwath: STD + platform: JERS-1 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath STD SS 100: + beamSwath: STD + platform: SEASAT + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath R1 list 100: + beamSwath: SNA,SNB,ST1,ST2,ST3,ST4,ST5,ST6,ST7 + platform: RADARSAT-1 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath R1 SW 100: + beamSwath: SWA,SWB + platform: RADARSAT-1 + maxresults: 1 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath R1 list FN 100: + beamSwath: FN1,FN2 + platform: RADARSAT-1 + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath SA list 100: + beamSwath: EW,IW,S1,S2,S3,S4,S5,S6,WV + platform: Sentinel-1A + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath SB list 100: + beamSwath: EW,IW,S1,S2,S3,S4,S5,S6,WV + platform: SB + maxresults: 100 + output: csv + + expected file: csv + expected code: 200 + +- beamSwath UA list 100: + beamSwath: POL,RPI + platform: UAVSAR + maxresults: 1 + output: csv + + expected file: csv + expected code: 200 + +- collectionName ABoVE 100: + collectionName: ABoVE + maxresults: 100 + output: json + + expected file: jsonlite + expected code: 200 + +- collectionName Big Island 100: + collectionName: Big+Island,+HI + maxresults: 100 + output: json + + expected file: jsonlite + expected code: 200 + +- collectionName Cascade 100: + collectionName: Cascade%20Volcanoes,%20CA/OR/WA + maxresults: 100 + output: json + + expected file: jsonlite + expected code: 200 + +- end csv: + end: "2010-01-01T00:00:00Z" + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- end count: + end: "2005-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- end now count: + end: now + output: count + + expected file: count + expected code: 200 + +- end future count: + end: "2025-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- flightDirection A: + flightDirection: A + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection Asc: + flightDirection: ASC + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection Ascending: + flightDirection: ASCENDING + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection D: + flightDirection: D + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection Desc: + flightDirection: DESC + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection Descending: + flightDirection: DESCENDING + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection asCEndInG: + flightDirection: asCEndInG + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightDirection dEsCeNding: + flightDirection: dEsCeNding + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- flightLine: + flightLine: 16203 + maxresults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- flightLine Bonanza Creek: + flightLine: bonanzacreek359-1.04061 + maxresults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- frame list range: + frame: 6714,1100-1105 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- frame zero range: + frame: 582-582 + platform: SA,SB + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- frame zero range list: + frame: 582-582,590 + platform: SB + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- granule_list single csv: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: csv + + expected file: csv + expected code: 200 + +- granule_list single count: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: count + + expected file: count + expected code: 200 + +- granule_list single metalink: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: metalink + + expected file: metalink + expected code: 200 + +- granule_list single kml: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: kml + + expected file: kml + expected code: 200 + +- granule_list single json: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: json + + expected file: jsonlite + expected code: 200 + +- granule_list single geojson: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: geojson + +- granule_list single download: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + output: download + + expected file: x-python + expected code: 200 + +#In CMR reporting script, we report groupid as null on most datasets. Some datasets updated to expect blank file & moved to partial pass yaml +- groupid Sentinel: + groupid: S1B_S1DV_0492_0497_017567_041 + output: json + + expected file: jsonlite + expected code: 200 + +- groupid S1 Insar: + groupid: S1-GUNW-D-R-087-tops-20190816_20190804-161614-19149N_17138N-PP-fee7-v2_0_2 + output: json + + expected file: jsonlite + expected code: 200 + +- groupid SMAP: + groupid: SP_24535_A_006 + output: json + + expected file: jsonlite + expected code: 200 + +- groupid UAVSAR: + groupid: UA_ChiVol_00700_15030_010_150330_L090_CX_01 + output: json + + expected file: jsonlite + expected code: 200 + +- groupid ALOS PALSAR: + groupid: ALPSRP279071100 + output: json + + expected file: jsonlite + expected code: 200 + +- groupid AIRSAR: + groupid: ts1899 + output: json + + expected file: jsonlite + expected code: 200 + +- instrument alos palsar: + instrument: pAlsAr + maxResults: 20 + output: json + + expected file: jsonlite + expected code: 200 + +- instrument alos avnir: + instrument: aVnIr-2 + maxResults: 20 + output: json + + expected file: jsonlite + expected code: 200 + +- instrument alos avnir jsonlite: + instrument: aVnIr-2 + maxResults: 20 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- instrument with platform alos avnir: + platform: ALOS + instrument: Avnir-2 + maxResults: 15 + output: csv + + expected file: csv + expected code: 200 + +- intersectsWith point: + intersectsWith: point%28-119.543+37.925%29 + maxResults: 100 + output: CSV + + expected file: csv + expected code: 200 + +- intersectsWith linestring: + intersectsWith: linestring(-119.543 37.925, -118.443 37.7421) + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- intersectsWith point 100: + intersectsWith: point(-119.543 37.925) + maxResults: 100 + output: CSV + + expected file: csv + expected code: 200 + +- intersectsWith polygon 100: + intersectsWith: polygon((-119.543 37.925, -118.443 37.7421, -118.682 36.8525, -119.77 37.0352, -119.543 37.925)) + maxResults: 100 + output: CSV + + expected file: csv + expected code: 200 + +- intersectsWith POINT uppercase: + intersectsWith: POINT(-119.543 37.925) + maxResults: 100 + output: CSV + + expected file: csv + expected code: 200 + +- intersectsWith POLYGON uppercase: + intersectsWith: POLYGON((-119.543 37.925, -118.443 37.7421, -118.682 36.8525, -119.77 37.0352, -119.543 37.925)) + maxResults: 100 + output: CSV + + expected file: csv + expected code: 200 + +- intersectsWith LINESTRING uppercase: + intersectsWith: LINESTRING(-119.543 37.925, -118.443 37.7421) + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- jsonlite Avnir: + platform: Alos + instrument: Avnir-2 + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Palsar: + platform: Alos + instrument: Palsar + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Sir-C: + platform: Sir-c + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite SMAP: + platform: SMAP + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite UAVSAR: + platform: UA + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Radarsat: + platform: Radarsat-1 + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Ers: + platform: E1,E2 + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Jers: + platform: J1 + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Airsar: + platform: Airsar + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- jsonlite Seasat: + platform: SS + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- linestring: + linestring: -150.2,65.0,-150.1,65.5 + maxResults: 10 + output: CSV + + expected file: csv + expected code: 200 + +- linestring uppercase: + LINESTRING: -150.2,65.0,-150.1,65.5 + maxResults: 10 + output: CSV + + expected file: csv + expected code: 200 + +- lookDirection LEFT: + lookDirection: LEFT + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- lookDirection L: + lookDirection: L + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- lookDirection RIGHT: + lookDirection: RIGHT + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- lookDirection R: + lookDirection: R + maxResults: 10 + output: JSON + + expected file: jsonlite + expected code: 200 + +- maxBaselinePerp: + maxBaselinePerp: 150 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- minBaselinePerp: + minBaselinePerp: 150 + platform: E1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- min and max BaselinePerp: + minBaselinePerp: 100 + maxBaselinePerp: 150 + platform: E1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- maxDoppler: + maxDoppler: 2000 + platform: SP + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- minDoppler: + minDoppler: -20000 + platform: SP + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- min and max Doppler R1: + minDoppler: -20000 + maxDoppler: 2000 + platform: SP + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- min and max Doppler negative: + minDoppler: -20000 + maxDoppler: -1 + maxResults: 1000 + output: csv + + expected file: csv + expected code: 200 + +- maxInsarStackSize: + maxInsarStackSize: 50 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- minInsarStackSize: + minInsarStackSize: 50 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- max and min InsarStackSize: + minInsarStackSize: 70 + maxInsarStackSize: 120 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- maxResults 1 csv: + platform: SENTINEL-1 + maxResults: 1 + output: csv + + expected file: csv + expected code: 200 + +- maxResults 2 csv: + platform: SENTINEL-1 + maxResults: 2 + output: csv + + expected file: csv + expected code: 200 + +- maxResults 1 json: + platform: SENTINEL-1 + maxResults: 1 + output: json + + expected file: jsonlite + expected code: 200 + +- maxResults 2 json: + platform: SENTINEL-1 + maxResults: 2 + output: json + + expected file: jsonlite + expected code: 200 + +- maxResults 1 geojson: + platform: SENTINEL-1 + maxResults: 1 + output: geojson + + expected file: geojson + expected code: 200 + +- maxResults 2 geojson: + platform: SENTINEL-1 + maxResults: 2 + output: geojson + + expected file: geojson + expected code: 200 + +- maxResults 1 jsonlite: + platform: SENTINEL-1 + maxResults: 1 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- maxResults 2 jsonlite: + platform: SENTINEL-1 + maxResults: 2 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- offNadirAngle single: + offNadirAngle: 21.5 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- offNadirAngle list: + offNadirAngle: 21.5,23.1,27.1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- offNadirAngle range: + offNadirAngle: 20-30 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- offNadirAngle zero range: + offNadirAngle: 21.5-21.5 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- offNadirAngle zero range list: + offNadirAngle: 34.3-34.3,20-25 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- output csv: + platform: SB + maxResults: 200 + output: csv + + expected file: csv + expected code: 200 + +- output count: + platform: SB + output: count + + expected file: count + expected code: 200 + +- output download Sentinel: + platform: SB + maxResults: 200 + output: download + + expected file: x-python + expected code: 200 + +- output download Avnir: + platform: Alos + instrument: Avnir-2 + maxResults: 2 + output: download + + expected file: x-python + expected code: 200 + +- output geojson Sentinel: + platform: SB + maxResults: 200 + output: geojson + + expected file: geojson + expected code: 200 + +- output geojson Avnir: + platform: Alos + instrument: Avnir-2 + maxResults: 2 + output: geojson + + expected file: geojson + expected code: 200 + +- output json: + platform: SB + maxResults: 100 + output: json + + expected file: jsonlite + expected code: 200 + +- output jsonlite: + platform: SB + maxResults: 200 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- output kml Sentinel: + platform: SB + maxResults: 200 + output: kml + + expected file: kml + expected code: 200 + +- output kml Avnir: + platform: Alos + instrument: Avnir-2 + maxResults: 2 + output: kml + + expected file: kml + expected code: 200 + +- output metalink Sentinel: + platform: SB + maxResults: 200 + output: metalink + + expected file: metalink + expected code: 200 + +- output metalink Avnir: + platform: Alos + instrument: Avnir-2 + maxResults: 2 + output: metalink + + expected file: metalink + expected code: 200 + +- platform SA: + platform: SA + start: "2015-01-01T00:00:00Z" + end: "2016-01-02T00:00:00Z" + output: csv + maxResults: 200 + + expected file: csv + expected code: 200 + +- platform SB: + platform: SB + start: "2016-01-01T00:00:00Z" + end: "2017-01-02T00:00:00Z" + maxResults: 200 + output: csv + + expected file: csv + expected code: 200 + +- platform J1: + platform: J1 + # polygon: -141.7461,64.8261,-140.3172,63.5722,-137.8891,64.7214,-141.7461,64.8261 + intersectsWith: POLYGON((-141.7461 64.8261, -140.3172 63.5722, -137.8891 64.7214, -141.7461 64.8261)) + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- platform A3: + platform: A3 + processingLevel: L1.0 + # polygon: -148.52,64.63,-150.41,64.64,-149.58,63.86,-148.52,64.63 + intersectsWith: POLYGON((-148.52 64.63, -150.41 64.64, -149.58 63.86, -148.52 64.63)) + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- platform ALOS PALSAR: + platform: alos + instrument: palsar + maxResults: 25 + output: csv + + expected file: csv + expected code: 200 + +- platform ALOS AVNIR: + platform: alos + instrument: avnir-2 + maxResults: 25 + output: csv + + expected file: csv + expected code: 200 + +- platform Sentinel-1A: + platform: Sentinel-1A + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform R1: + platform: R1 + maxResults: 10 + output: jSoN + + expected file: jsonlite + expected code: 200 + +- platform R1 2: + platform: RADARSAT-1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform R1 Level: + platform: RADARSAT-1 + processingLevel: L0,L1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform SP: + platform: SP + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform UA: + platform: UA + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform E1 E2: + platform: E1,E2 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform Sir-C: + platform: SIR-C + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform Sirc Sts-59: + platform: STS-59 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform Sirc STS: + platform: STS-68,STS-59 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- platform count S1: + platform: S1 + start: "2016-01-01T00:00:00Z" + end: "2018-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SENTINEL-1-1: + platform: SENTINEL-1 + start: "2016-01-01T00:00:00Z" + end: "2018-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Sentinel-1: + platform: Sentinel-1 + start: "2016-01-01T00:00:00Z" + end: "2018-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count s1: + platform: s1 + start: "2016-01-01T00:00:00Z" + end: "2018-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Sentinel-1A: + platform: Sentinel-1A + start: "2016-01-01T00:00:00Z" + end: "2018-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count sa: + platform: sa + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SA: + platform: SA + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count sentinel-1a: + platform: sentinel-1a + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SENTINEL-1A: + platform: SENTINEL-1A + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count sb: + platform: sb + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SB: + platform: SB + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Sentinel-1B: + platform: Sentinel-1B + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SENTINEL-1B: + platform: SENTINEL-1B + start: "1978-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Sirc STS-59: + platform: STS-59 + output: count + + expected file: count + expected code: 200 + +- platform count Sirc STS-68: + platform: STS-68 + output: count + + expected file: count + expected code: 200 + +- platform count Sirc STS-59-68: + platform: STS-59,STS-68 + output: count + + expected file: count + expected code: 200 + +- platform count Sirc sts-59: + platform: sts-59 + output: count + + expected file: count + expected code: 200 + +- platform count Sirc StS-68: + platform: StS-68 + output: count + + expected file: count + expected code: 200 + +- platform count Sirc Sts-59 StS-68: + platform: Sts-59,StS-68 + output: count + + expected file: count + expected code: 200 + +- platform count sir-c: + platform: sir-c + output: count + + expected file: count + expected code: 200 + +- platform count SIR-C: + platform: SIR-C + output: count + + expected file: count + expected code: 200 + +- platform count SMAP: + platform: SMAP + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Smap: + platform: Smap + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count smap: + platform: smap + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SMAP SP: + platform: SP + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SMAP Sp: + platform: Sp + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SMAP sp: + platform: sp + start: "2015-01-01T00:00:00Z" + end: "2019-01-02T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count UAVSAR: + platform: UAVSAR + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count UAvSAR: + platform: UAvSAR + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count UA: + platform: UA + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ua: + platform: ua + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Ua: + platform: Ua + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count UAVSAR G-III: + platform: G-III + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count UAVSAR g-iii: + platform: g-iii + start: "2008-04-28T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ALOS: + platform: ALOS + start: "2006-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Alos: + platform: Alos + start: "2006-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count alos: + platform: alos + start: "2006-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ALOS A3: + platform: A3 + start: "2006-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ALOS a3: + platform: a3 + start: "2006-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count alos palsar: + platform: a3 + instrument: Palsar + output: count + + expected file: count + expected code: 200 + +- platform count alos avnir: + platform: a3 + instrument: Avnir-2 + output: count + + expected file: count + expected code: 200 + +- platform count radarsat-1: + platform: radarsat-1 + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count r1: + platform: r1 + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count R1: + platform: R1 + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ERS: + platform: ERS + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count erS: + platform: erS + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count E1: + platform: E1 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ERS-1: + platform: ERS-1 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Ers-1: + platform: Ers-1 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count E2: + platform: E2 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ERS-2: + platform: ERS-2 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count e2: + platform: e2 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count ers-2: + platform: ers-2 + start: "1990-01-01T00:00:00Z" + end: "2012-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count JERS-1: + platform: JERS-1 + start: "1990-01-01T00:00:00Z" + end: "2000-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Jers-1: + platform: Jers-1 + start: "1990-01-01T00:00:00Z" + end: "2000-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count J1: + platform: J1 + start: "1990-01-01T00:00:00Z" + end: "2000-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count j1: + platform: j1 + start: "1990-01-01T00:00:00Z" + end: "2000-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AIRSAR: + platform: AIRSAR + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count Airsar: + platform: Airsar + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AirSar: + platform: AirSar + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AIRSAR as: + platform: as + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AIRSAR AS: + platform: AS + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AIRSAR DC-8: + platform: DC-8 + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count AIRSAR dc-8: + platform: dc-8 + start: "1990-01-01T00:00:00Z" + end: "2019-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- platform count SEASAT: + platform: SEASAT + output: count + + expected file: count + expected code: 200 + +- platform count SEASAT-1: + platform: SEASAT%201 + output: count + + expected file: count + expected code: 200 + +- platform count SEASAT SS: + platform: SS + output: count + + expected file: count + expected code: 200 + +- platform count SEASAT ss: + platform: ss + output: count + + expected file: count + expected code: 200 + +- platform count SeaSat: + platform: SeaSat + output: count + + expected file: count + expected code: 200 + +- platform count SeaSAT-1: + platform: SeaSAT%201 + output: count + + expected file: count + expected code: 200 + +- point: + point: -150.2,65.0 + maxResults: 10 + output: CSV + + expected file: csv + expected code: 200 + +- point uppercase: + POINT: -150.2,65.0 + maxResults: 10 + output: CSV + + expected file: csv + expected code: 200 + +- polarization HH: + polarization: HH + platform: SB + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization VV: + polarization: VV + platform: SA + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization HH HV: + polarization: HH%2bHV + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Dual VV: + polarization: Dual+VV + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization QUADRATURE: + polarization: QUADRATURE + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization VV VH: + polarization: VV%2bVH + maxResults: 10 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- polarization Dual HV: + polarization: Dual+HV + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Dual VH: + polarization: Dual+VH + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization hH: + polarization: hH + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Vv: + polarization: Vv + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Hh hV: + polarization: Hh%2bhV + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Dual vv: + polarization: Dual+vv + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization quadrature: + polarization: quadrature + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization vv VH: + polarization: vv%2bVH + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization Dual hv: + polarization: Dual+hv + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization dual VH: + polarization: dual+VH + maxResults: 10 + output: json + + expected file: jsonlite + expected code: 200 + +- polarization dual vh: + polarization: dual+vh + maxResults: 10 + output: jsonlite + + expected file: jsonlite + expected code: 200 + +- polygon lowercase: + # polygon: -148.52,64.63,-150.41,64.64,-149.58,63.86,-148.52,64.63 + intersectsWith: polygon(( -148.52 64.63, -150.41 64.64, -149.58 63.86, -148.52 64.63 )) + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + + +- polygon multi: + # polygon: 12.13,41.74,13.4,41.74,13.4,42.75,12.13,42.75,12.13,41.74 + intersectsWith: POLYGON((12.13 41.74, 13.4 41.74, 13.4 42.75, 12.13 42.75, 12.13 41.74)) + platform: Sentinel-1A,Sentinel-1B + processingLevel: SLC + start: 2015-05-01T00:00:00UTC + output: csv + maxResults: 100 + + expected file: csv + expected code: 200 + +# - polygon closure 1: +# # polygon: 12.13,41.74,13.4,41.74,13.4,42.75,12.13,42.75 +# intersectsWith: POLYGON((12.13 41.74, 13.4 41.74, 13.4 42.75, 12.13 42.75)) +# platform: Sentinel-1A,Sentinel-1B +# processingLevel: SLC +# start: 2015-05-01T00:00:00UTC +# output: csv +# maxResults: 100 + +# expected file: csv +# expected code: 200 + +- polygon closure 2: + # polygon: 12.13,41.74,13.4,41.74,13.4,42.75,12.13,42.75,12.13,41.74 + intersectsWith: POLYGON((12.13 41.74, 13.4 41.74, 13.4 42.75, 12.13 42.75, 12.13 41.74)) + platform: Sentinel-1A,Sentinel-1B + processingLevel: SLC + start: 2015-05-01T00:00:00UTC + output: csv + maxResults: 100 + + expected file: csv + expected code: 200 + +- polygon closure 3: + # polygon: 12.13,41.74,12.13,42.75,13.4,42.75,13.4,41.74,12.13,41.74 + intersectsWith: POLYGON(( 12.13 41.74, 12.13 42.75, 13.4 42.75, 13.4 41.74, 12.13 41.74 )) + platform: Sentinel-1A,Sentinel-1B + processingLevel: SLC + start: 2015-05-01T00:00:00UTC + output: csv + maxResults: 100 + + expected file: csv + expected code: 200 + +# - polygon closure 4: +# # polygon: -155.08,65.82,-153.5,61.91,-149.50,63.07,-149.94,64.55 +# intersectsWith: POLYGON(( -155.08 65.82, -153.5 61.91, -149.50 63.07, -149.94 64.55 )) +# maxResults: 100 +# output: Csv + +# expected file: csv +# expected code: 200 + +- processingLevel L1.1: + processingLevel: L1.1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel L1 L1.1 Metadata: + processingLevel: L1.1,L1.0,METADATA + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel list: + processingLevel: 3FP,ATI,LTIF,PTIF,CTIF,PSTOKES,BROWSE,DEM,CSTOKES,JPG,LSTOKES,THUMBNAIL + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel RTC: + processingLevel: RTC_LOW_RES,RTC_HI_RES + platform: ALOS + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel ERS: + processingLevel: L0,L1,BROWSE,THUMBNAIL + platform: ERS-1,ERS-2 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel Jers-1: + processingLevel: L0,L1,BROWSE,THUMBNAIL + platform: Jers-1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel RadarSat: + processingLevel: L0,L1,BROWSE,THUMBNAIL + platform: RadarSat-1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel SEASAT: + processingLevel: L1,BROWSE,THUMBNAIL + platform: SEASAT + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel S1: + processingLevel: METADATA_GRD,GRD_HS,GRD_HD,GRD_MS,GRD_MD,GRD_FS,GRD_FD,SLC,RAW,OCN,METADATA_RAW,METADATA,METADATA_SLC, THUMBNAIL + platform: Sentinel-1A,Sentinel-1B + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel SMAP: + processingLevel: L1A_Radar_RO_QA,L1B_S0_LoRes_HDF5,L1B_S0_LoRes_QA,L1B_S0_LoRes_ISO_XML,L1A_Radar_QA,L1A_Radar_RO_ISO_XML, L1C_S0_HiRes_ISO_XML,L1C_S0_HiRes_QA,L1C_S0_HiRes_HDF5,L1A_Radar_HDF5 + platform: SMAP + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- processingLevel UAVSAR: + processingLevel: KMZ,PROJECTED,PAULI,PROJECTED_ML5X5,STOKES,AMPLITUDE,BROWSE,COMPLEX,DEM_TIFF,PROJECTED_ML3X3,METADATA,AMPLITUDE_GRD,INTERFEROMETRY,INTERFEROMETRY_GRD,THUMBNAIL + platform: UAVSAR + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- processingDate Z: + processingDate: "2018-01-01T00:00:00Z" + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingDate yearago: + processingDate: 1+year+ago + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingDate a+monthago: + processingDate: a+month+ago + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingDate 2monthago: + processingDate: 2+month+ago + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingDate yesterday: + processingDate: yesterday + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- processingDate 1weekago: + processingDate: 1+week+ago + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- product_list S1: + product_list: S1B_IW_GRDH_1SDV_20190410T153301_20190410T153328_015746_01D8D2_0E9B-GRD_HD,S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB-GRD_HD,S1B_IW_SLC__1SDV_20180517T005744_20180517T005757_010954_0140DF_9891-SLC,S1B_WV_OCN__2SSV_20180513T055028_20180513T062610_010898_013F0C_059A-METADATA_OCN + output: json + + expected file: jsonlite + expected code: 200 + +- product_list mix: + product_list: + - S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB-GRD_HD,S1B_EW_SLC__1SDH_20190813T071957_20190813T072100_017564_02108E_9322-SLC + - ts1902-PSTOKES,ts1902-PTIF,ts1888-LTIF + output: json + + expected file: jsonlite + expected code: 200 + +- product_list multi: + product_list: + - S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB-GRD_HD + - ALPSRP279070820-RTC_HI_RES + - J1_36272_STD_F249-L1 + - E1_08261_STD_F273-L0 + - ts1899 + output: json + + expected file: jsonlite + expected code: 200 + +- product_list multi list: + product_list: + - S1A_S4_SLC__1SDV_20190809T062903_20190809T062922_028488_03385D_2C10-SLC + - ts726-CSTOKES,ts726-DEM,ts726-LSTOKES,ts726-LTIF,ts726-CTIF,ts1721-LTIF,ts1733-PTIF + output: json + + expected file: jsonlite + expected code: 200 + +- relativeOrbit single: + relativeOrbit: 20 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit range: + relativeOrbit: 20-22 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit list: + relativeOrbit: 20,21,22 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit list range: + relativeOrbit: 20,23-24 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit list S1: + relativeOrbit: 20,23,25 + platform: S1 + dataset: SENTINEL-1 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit zero range: + relativeOrbit: 16-16 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit zero range list: + relativeOrbit: 16-16,17 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- relativeOrbit zero range list reverse: + relativeOrbit: 17,16-16 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- season 32-90 S1: + season: 32,90 + dataset: SENTINEL-1 + platform: SA,SB + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-100 S1: + season: 1,100 + platform: sa,sb + dataset: SENTINEL-1 + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-175 AIRSAR: + season: 1,175 + platform: AS + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 32-90 S1 Start End: + season: 32,90 + platform: SA,SB + dataset: SENTINEL-1 + start: "2017-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-100 S1 Start End: + season: 1,100 + platform: sa,sb + dataset: SENTINEL-1 + start: "2015-01-01T00:00:00Z" + end: "2018-01-01T01:00:00Z" + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-100 S1 1year: + season: 1,100 + platform: SA,Sb + dataset: SENTINEL-1 + start: 1+year+ago + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-100 S1 2years: + season: 1,100 + platform: sa,sb + dataset: SENTINEL-1 + start: 2+year+ago + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 32-90 S1 2years: + season: 32,90 + platform: SA,SB + dataset: SENTINEL-1 + start: 2+year+ago + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-175 SMAP July 2015-now: + season: 1,175 + platform: SP + start: 2015-July-15 + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 32-90 S1 July 2018-now: + season: 32,90 + platform: SA,SB + dataset: 'SENTINEL-1' + start: 2018-July-15 + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-175 SMAP 3year: + season: 1,175 + platform: SP + start: 3+year+ago + end: now + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 340-10 wrap: + season: 340,10 + platform: AS + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- season 1-175 UAVSAR Start End: + season: 1,175 + platform: Ua + start: "2005-01-01T00:00:00Z" + end: "2014-01-01T01:00:00Z" + maxResults: 100 + output: csv + + expected file: csv + expected code: 200 + +- start Zdate: + start: "2005-01-01T00:00:00Z" + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- start UTC date end: + start: 2008-01-01T00:00:00UTC + end: 2008-05-01T01:00:00UTC + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- start june302018: + start: June+30,+2018 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- start end 6monthago: + start: 6+month+ago + end: now + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- start Zdate count: + start: "2005-01-01T00:00:00Z" + output: count + + expected file: count + expected code: 200 + +- start Zdate end count: + start: "2005-01-01T00:00:00Z" + end: "2006-01-01T01:00:00Z" + output: count + + expected file: count + expected code: 200 + +- start 7monthagoplus1day count: + start: 7+months+and+a+day+ago + output: count + + expected file: count + expected code: 200 + +- start june302018 count: + start: June+30,+2018 + output: count + + expected file: count + expected code: 200 + +- start backwards reversed: + start: now + end: 1+year+ago + output: csv + maxResults: 10 + + expected file: csv + expected code: 200 + +- start tomorrow reversed: + start: tomorrow + end: 1+year+ago + output: csv + maxResults: 10 + + expected file: csv + expected code: 200 + +- start 3 days ago count: + start: 3 days ago + output: count + + expected file: count + expected code: 200 + +- start 1weekago count: + start: 1+week+ago + output: count + + expected file: count + expected code: 200 + +- start 3daysago count: + start: 3+days+ago + output: count + + expected file: count + expected code: 200 + +- realworld 1: + intersectsWith: point(-168.0380672+53.9279675) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: IW + output: count + + expected file: count + expected code: 200 + +- realworld 1 modified: + intersectsWith: point(-162.4535+61.4945) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: IW + output: count + + expected file: count + expected code: 200 + +- realworld 2: + intersectsWith: linestring(-102+37.59,-94+37,-94+39,-102+39) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: IW + output: count + + expected file: count + expected code: 200 + +- realworld 2 modified: + intersectsWith: linestring(-94.1995+42.3741,-88.2384+42.2475,-88.166+40.56,-93.9793+41.1938) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: S4 + output: count + + expected file: count + expected code: 200 + +- realworld 3: + intersectsWith: polygon((-102+37.59,-94+37,-94+39,-102+39,-102+37.59)) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: IW + output: count + + expected file: count + expected code: 200 + +- realworld 3 modified: + intersectsWith: polygon((-91.1083+41.7191,-83.9568+41.4233,-83.9916+43.9781,-91.7194+42.8556,-91.1083+41.7191)) + platform: Sentinel-1A,Sentinel-1B + processingLevel: GRD_HS,GRD_HD + beamMode: EW,S1,S4 + output: count + + expected file: count + expected code: 200 + +- realworld 4: + output: count + frame: 580%2C581%2C582%2C583%2C585 + processingLevel: L0%2CL1.0%2CSLC + platform: SENTINEL-1A%2CSENTINEL-1B + relativeOrbit: 1-1000 + + expected file: count + expected code: 200 + +- realworld 5: + output: count + asfframe: 580%2C581%2C582%2C583%2C585 + processingLevel: L0%2CL1.0%2CSLC + platform: SENTINEL-1A%2CSENTINEL-1B + relativeOrbit: 100-1000 + + expected file: count + expected code: 200 + +- realworld 6: + platform: SA,SB + relativeOrbit: 100-500 + asfframe: 550-600 + start: 2015-06-01 + end: 2019-05-30 + output: csv + maxResults: 500 + + expected file: csv + expected code: 200 + +- realworld 7: + platform: SA,SB + relativeOrbit: 100-200 + frame: 580-585 + start: 2015-06-01 + end: 2019-05-30 + output: csv + maxResults: 500 + + expected file: csv + expected code: 200 + +- realworld 8: + output: csv + platform: Sentinel-1A + start: 2017-05-30 + end: 2018-05-31%22 + maxResults: 100 + skip_file_check: True + + expected file: csv + expected code: 200 diff --git a/tests/yml_tests/test_URLs_expected_400.yml b/tests/yml_tests/test_URLs_expected_400.yml new file mode 100644 index 0000000..0dd84de --- /dev/null +++ b/tests/yml_tests/test_URLs_expected_400.yml @@ -0,0 +1,926 @@ + + +tests: +# - invalid query: # this just gets the first results from the default CMR provider (ASF) +# output: csv +# maxresults: 10 + +# expected file: error json +# expected code: 400 + +# - missing query invalid: +# expected file: error json +# expected code: 400 + +- invalid keyword: + keyword: invalid + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- blank keyword invalid: + platform: null + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- blank output invalid: + platform: SA + output: null + maxresults: 10 + + expected file: error json + expected code: 400 + +- absoluteOrbit TEST invalid: + absoluteOrbit: TEST + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- absoluteOrbit specchar invalid: + absoluteOrbit: ~ + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- asfframe TEST invalid: + asfframe: TEST + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- asfframe specchar invalid: + asfframe: ~ + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- bbox test invalid: + bbox: test + output: csv + + expected file: error json + expected code: 400 + +- bbox specchar invalid: + bbox: $ + output: csv + + expected file: error json + expected code: 400 + +- bbox incomplete: + bbox: -150.2,65.0,-150.1,65.5,0 + output: csv + + expected file: error json + expected code: 400 + +- bbox incomplete json invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: json + + expected file: error json + expected code: 400 + +- bbox incomplete kml invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: kml + + expected file: error json + expected code: 400 + +- bbox incomplete geojson invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: geojson + + expected file: error json + expected code: 400 + +- bbox incomplete download invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: download + + expected file: error json + expected code: 400 + +- bbox incomplete metalink invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: metalink + + expected file: error json + expected code: 400 + +- bbox incomplete count invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: count + + expected file: error json + expected code: 400 + +- bbox incomplete asf_search invalid: + bbox: -150.2,65.0,-150.1,65.5,0 + output: asf_search + + expected file: error json + expected code: 400 + +- beamMode empty string invalid: + beamMode: "" + output: csv + + expected file: error json + expected code: 400 + +- beamSwath empty string invalid: + beamSwath: "" + output: csv + + expected file: error json + expected code: 400 + +- end specchar invalid: + end: ~ + output: count + + expected file: error json + expected code: 400 + +- end alpha invalid: + end: abc + output: count + + expected file: error json + expected code: 400 + +- flightDirection Test invalid: + flightDirection: Test + platform: E1 + maxResults: 100 + output: csv + + expected file: error json + expected code: 400 + +- flightDirection specchar invalid: + flightDirection: ~ + platform: E1 + maxResults: 100 + output: csv + + expected file: error json + expected code: 400 + +- frame TEST invalid: + platform: ALOS + frame: TEST + maxResults: 100 + output: CSV + + expected file: error json + expected code: 400 + +- frame specchar invalid: + platform: ALOS + frame: ~ + maxResults: 100 + output: CSV + + expected file: error json + expected code: 400 + +- granule_list with platform invalid: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + platform: S1 + output: csv + + expected file: error json + expected code: 400 + +- granule_list with date invalid: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + start: "2019-01-01T00:00:00Z" + output: csv + + expected file: error json + expected code: 400 + +- granule_list with other keywords invalid: + intersectsWith: polygon((-91.1083+41.7191,-83.9568+41.4233,-83.9916+43.9781,-91.7194+42.8556,-91.1083+41.7191)) + platform: Sentinel-1A,Sentinel-1B + granule_list: S1A_IW_GRDH_1SDV_20220201T000545_20220201T000612_041712_04F694_C8B2 + output: json + + expected file: error json + expected code: 400 + +- granule_list with product_list invalid: + granule_list: S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB + product_list: S1B_IW_GRDH_1SDV_20190410T153301_20190410T153328_015746_01D8D2_0E9B-GRD_HD + output: csv + + expected file: error json + expected code: 400 + +- instrument empty string invalid: + instrument: "" + output: csv + + expected file: error json + expected code: 400 + +- instrument and platform empty string invalid: + platform: A3 + instrument: "" + output: csv + + expected file: error json + expected code: 400 + +- intersectsWith linestring invalid: + intersectsWith: linestring(TEST) + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- intersectsWith linestring2 invalid: + intersectsWith: linestring(%) + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- intersectsWith point invalid: + intersectsWith: point(TEST,37.925) + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- intersectsWith polygon invalid: + intersectsWith: polygon((TEST 37.925, -118.443 37.7421, -118.682 36.8525, -119.77 37.0352, -119.543 37.925)) + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- intersectsWith polygon specchar invalid: + intersectsWith: polygon($ $, -118.443 37.7421, -118.682 36.8525, -119.77 37.0352, -119.543 37.925) + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- linestring value specchar invalid: + linestring: -150.2,65.0,# + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- linestring TEST FAIL invalid: + linestring: TEST,FAIL + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- linestring TEST invalid: + linestring: (TEST) + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- linestring specchar invalid: + linestring: (%) + output: csv + maxresults: 10 + + expected file: error json + expected code: 400 + +- lookDirection TESt invalid: + lookDirection: TESt + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- lookDirection 1 invalid: + lookDirection: 1 + output: csv + maxresults: 1000 + + expected file: error json + expected code: 400 + +- maxBaselinePerp specchar invalid: + maxBaselinePerp: $~ + platform: R1 + output: csv + maxresults: 100 + + expected file: error json + expected code: 400 + +- maxBaselinePerp test invalid: + maxBaselinePerp: test + platform: R1 + output: csv + maxresults: 100 + + expected file: error json + expected code: 400 + +- minBaselinePerp specchar invalid: + minBaselinePerp: $~ + platform: R1 + output: csv + maxresults: 100 + + expected file: error json + expected code: 400 + +- minBaselinePerp test invalid: + minBaselinePerp: test + platform: R1 + output: csv + maxresults: 100 + + expected file: error json + expected code: 400 + +- maxDoppler test invalid: + maxDoppler: test + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- maxDoppler specchar invalid: + maxDoppler: $! + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- maxFaradayRotation specchar invalid: + maxFaradayRotation: $! + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- minFaradayRotation specchar invalid: + minFaradayRotation: $! + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- min and max FaradayRotation specchar invalid: + minFaradayRotation: $! + maxFaradayRotation: $! + output: csv + + expected file: error json + expected code: 400 + +- maxFaradayRotation empty invalid: + maxFaradayRotation: null + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- minFaradayRotation empty invalid: + minFaradayRotation: null + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- maxFaradayRotation test invalid: + maxFaradayRotation: test + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- minFaradayRotation test invalid: + minFaradayRotation: test + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- maxInsarStackSize test invalid: + maxInsarStackSize: test + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- minInsarStackSize test invalid: + minInsarStackSize: test + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- maxInsarStackSize specchar invalid: + maxInsarStackSize: ~!+ + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- minInsarStackSize specchar invalid: + minInsarStackSize: ~!+ + platform: Sentinel + output: csv + + expected file: error json + expected code: 400 + +- min and max InsarStackSize specchar invalid: + minInsarStackSize: ~!+ + maxInsarStackSize: ~!+ + output: csv + + expected file: error json + expected code: 400 + +- maxResults 0 csv invalid: + platform: SENTINEL-1 + maxResults: 0 + output: csv + + expected file: error json + expected code: 400 + +- maxResults a csv invalid: + platform: SENTINEL-1 + maxResults: a + output: csv + + expected file: error json + expected code: 400 + +- maxResults specchar csv invalid: + platform: SENTINEL-1 + maxResults: +_ + output: csv + + expected file: error json + expected code: 400 + +- maxResults 0 json invalid: + platform: SENTINEL-1 + maxResults: 0 + output: json + + expected file: error json + expected code: 400 + +- maxResults a json invalid: + platform: SENTINEL-1 + maxResults: a + output: json + + expected file: error json + expected code: 400 + +- maxResults specchar json invalid: + platform: SENTINEL-1 + maxResults: +_ + output: json + + expected file: error json + expected code: 400 + +- maxResults 0 jsonlite invalid: + platform: SENTINEL-1 + maxResults: 0 + output: jsonlite + + expected file: error json + expected code: 400 + +- maxResults a jsonlite invalid: + platform: SENTINEL-1 + maxResults: a + output: jsonlite + + expected file: error json + expected code: 400 + +- maxResults specchar jsonlite invalid: + platform: SENTINEL-1 + maxResults: +_ + output: jsonlite + + expected file: error json + expected code: 400 + +- maxResults 0 geojson invalid: + platform: SENTINEL-1 + maxResults: 0 + output: geojson + + expected file: error json + expected code: 400 + +- maxResults a geojson invalid: + platform: SENTINEL-1 + maxResults: a + output: geojson + + expected file: error json + expected code: 400 + +- maxResults specchar geojson invalid: + platform: SENTINEL-1 + maxResults: +_ + output: geojson + + expected file: error json + expected code: 400 + +- maxResults 0 asf_search invalid: + platform: SENTINEL-1 + maxResults: 0 + output: asf_search + + expected file: error json + expected code: 400 + +- maxResults a asf_search invalid: + platform: SENTINEL-1 + maxResults: a + output: asf_search + + expected file: error json + expected code: 400 + +- maxResults specchar asf_search invalid: + platform: SENTINEL-1 + maxResults: +_ + output: asf_search + + expected file: error json + expected code: 400 + +- offNadirAngle test invalid: + offNadirAngle: test + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- offNadirAngle specchar invalid: + offNadirAngle: () + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- pagesize invalid param: + pagesize: 1 + platform: UA + output: csv + + expected file: error json + expected code: 400 + +- platform_list Test invalid param: + platform_list: Test,TEST + start: "2016-01-01T00:00:00Z" + end: "2016-01-02T00:00:00Z" + output: csv + + expected file: error json + expected code: 400 + +- platform_list specchar invalid param: + platform_list: ~,# + start: "2016-01-01T00:00:00Z" + end: "2016-01-02T00:00:00Z" + output: csv + + expected file: error json + expected code: 400 + +- platform_list invalid param: + platform_list: SA,SB,R1 + output: csv + + expected file: error json + expected code: 400 + +- point invalid: + point: -150.2 + maxResults: 10 + output: csv + + expected file: error json + expected code: 400 + +- point specchar invalid: + point: -# + maxResults: 10 + output: csv + + expected file: error json + expected code: 400 + +- polygon 3 points invalid: + # polygon: -155.08,65.82,-153.5 + intersectsWith: POLYGON((-155.08 65.82, -153.5)) + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- polygon 2 points invalid: + # polygon: -155.08,65.82 + intersectsWith: POLYGON((-155.08 65.82)) + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- polygon 2 points count invalid: + # polygon: -155.08,65.82 + intersectsWith: POLYGON((-155.08 65.82)) + maxResults: 1000 + output: count + + expected file: error json + expected code: 400 + + +- intersectsWith test invalid: + intersectsWith: test + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- pointing angle: + pointingAngle: 0.0 + output: csv + maxResults: 1 + + expected file: error json + expected code: 400 + +- product_list specchar invalid: + product_list: ~,# + output: csv + + expected file: error json + expected code: 400 + +- product_list with platform invalid: + product_list: S1B_IW_GRDH_1SDV_20190410T153301_20190410T153328_015746_01D8D2_0E9B-GRD_HD,S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB-GRD_HD,S1B_IW_SLC__1SDV_20180517T005744_20180517T005757_010954_0140DF_9891-SLC,S1B_WV_OCN__2SSV_20180513T055028_20180513T062610_010898_013F0C_059A-METADATA_OCN + platform: SB + output: json + + expected file: error json + expected code: 400 + +- product_list with processingLevel invalid: + product_list: S1B_IW_GRDH_1SDV_20190410T153301_20190410T153328_015746_01D8D2_0E9B-GRD_HD,S1B_S6_GRDH_1SDV_20190911T214309_20190911T214338_017995_021E10_5CCB-GRD_HD,S1B_IW_SLC__1SDV_20180517T005744_20180517T005757_010954_0140DF_9891-SLC,S1B_WV_OCN__2SSV_20180513T055028_20180513T062610_010898_013F0C_059A-METADATA_OCN + processingLevel: GRD_HS,GRD_HD + output: json + + expected file: error json + expected code: 400 + +- product_list with other keywords invalid: + output: count + frame: 580%2C581%2C582%2C583%2C585 + processingLevel: SLC,GRD_HD + platform: SENTINEL-1A%2CSENTINEL-1B + product_list: S1A_IW_SLC__1SDV_20220202T093807_20220202T093837_041732_04F745_3C87-SLC + + expected file: error json + expected code: 400 + +- processingDate specchar invalid: + processingDate: ~ + maxResults: 1200 + output: csv + + expected file: error json + expected code: 400 + +- relativeOrbit TEST invalid: + relativeOrbit: TEST + output: csv + + expected file: error json + expected code: 400 + +- relativeOrbit specchar invalid: + relativeOrbit: +$ + output: csv + + expected file: error json + expected code: 400 + +- relativeOrbit UA Test invalid: + relativeOrbit: Test + platform: UAVSAR + output: csv + + expected file: error json + expected code: 400 + +- relativeOrbit UA Test count invalid: + relativeOrbit: Test + platform: UAVSAR + output: count + + expected file: error json + expected code: 400 + +- season negnum invalid: + season: -100,-3 + platform: SA,SB + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season specchar invalid: + season: -,- + platform: SA,SB + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season month list invalid: + season: December,May + platform: UA + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season french month list invalid: + season: février,juillet + platform: S1 + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season month list 2 invalid: + season: March,April + platform: S1 + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season negnum start end invalid: + season: -100,-3 + platform: SA,SB + start: "2005-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season specchar start end invalid: + season: -,- + platform: SA,SB + start: "2005-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season month list start end invalid: + season: December,May + platform: UA + start: "2005-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season french month list start end invalid: + season: février,juillet + platform: S1 + start: "2005-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season month list 2 start end invalid: + season: March,April + platform: S1 + start: "2005-01-01T00:00:00Z" + end: "2019-01-01T01:00:00Z" + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season french start end backwards invalid: + season: février,juillet + platform: S1 + start: now + end: 1+week+ago + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- season start end recent invalid: + season: March,August + platform: S1 + start: 1+week+ago + end: now + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 + +- start end nowtest blank: + start: 4+months+ago + end: nowtest + output: csv + + expected file: error json + expected code: 400 + +- realworld 9 invalid: + # polygon: 4794886.03996192,2658783.7409794466,4911667.405803877,2658783.7409794466,4911667.405803877,2775921.3473827764,4794886.03996192,2775921.3473827764,4794886.03996192,2658783.7409794466 + intersectsWith: POLYGON((4794886.03996192 2658783.7409794466, 4911667.405803877 2658783.7409794466, 4911667.405803877 2775921.3473827764, 4794886.03996192 2775921.3473827764, 4794886.03996192 2658783.7409794466)) + maxResults: 1000 + output: csv + + expected file: error json + expected code: 400 diff --git a/tests/yml_tests/test_URLs_partial_pass.yml b/tests/yml_tests/test_URLs_partial_pass.yml new file mode 100644 index 0000000..a1def94 --- /dev/null +++ b/tests/yml_tests/test_URLs_partial_pass.yml @@ -0,0 +1,402 @@ + +tests: +- beamMode test blank: + beamMode: TEST + output: csv + + expected file: blank csv + expected code: 200 + +- beamMode test count blank: + beamMode: TEST + output: csv,count + + expected file: error json + expected code: 400 + +- beamMode specchar blank: + beamMode: $~ + output: csv + + expected file: blank csv + expected code: 200 + +- beamSwath test blank: + beamSwath: TEST + output: csv + + expected file: blank csv + expected code: 200 + +- beamSwath test count blank: + beamSwath: TEST + output: csv,count + + expected file: error json + expected code: 400 + +- beamSwath specchar blank: + beamSwath: ~! + output: csv + + expected file: blank csv + expected code: 200 + +- beamSwath 1 not recorded in CMR blank: + beamSwath: 1 + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- beamSwath ALOS list not recorded in CMR blank: + beamSwath: 1,2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20 + platform: ALOS + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName Haiti partial name blank: + collectionName: Haiti + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName earthquake wrong name blank: + collectionName: earthquake + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName AIRSAR wrong name blank: + collectionName: AIRSAR + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName Denali wrong name blank: + collectionName: Denali + maxResults: 100 + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName ALOS Test blank: + collectionName: Test + platform: ALOS + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName UAVSAR Test blank: + collectionName: Test + platform: UAVSAR + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName S1A ABoVE blank: + collectionName: ABoVE + platform: SENTINEL-1A + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName S1A Alaska blank: + collectionName: Alaska + platform: SENTINEL-1A + output: csv + + expected file: blank csv + expected code: 200 + +- collectionName specchar blank: + collectionName: ~+ + output: count + + expected file: blank count + expected code: 200 + +- flightLine UAVSAR Test blank: + flightLine: Test + platform: UAVSAR + output: csv + + expected file: blank csv + expected code: 200 + +- flightLine AIRSAR Test blank: + flightLine: Test + platform: AIRSAR + output: csv + + expected file: blank csv + expected code: 200 + +- flightLine AIRSAR specchar blank: + flightLine: ~& + platform: AIRSAR + output: csv + + expected file: blank csv + expected code: 200 + +- granule_list TEST blank: + granule_list: TEST + output: csv + + expected file: blank csv + expected code: 200 + +- granule_list specchar blank: + granule_list: ~& + output: csv + + expected file: blank csv + expected code: 200 + +- groupid number blank: + groupid: 12345 + output: json + + expected file: blank jsonlite + expected code: 200 + +- groupid hash blank: + groupid: sdfkhgsdfkhgsdf + output: json + + expected file: blank jsonlite + expected code: 200 + +- groupid TEST blank: + groupid: TEST + output: csv + + expected file: blank csv + expected code: 200 + +- groupid specchar blank: + groupid: ~+ + output: csv + + expected file: blank csv + expected code: 200 + +- groupid Radarsat blank not in CMR: + groupid: R1_57704_ST7_F173 + output: json + + expected file: blank jsonlite + expected code: 200 + +- groupid ERS blank not in CMR: + groupid: E2_84699_STD_F309 + output: json + + expected file: blank jsonlite + expected code: 200 + +- groupid JERS blank not in CMR: + groupid: J1_36439_STD_F268 + output: json + + expected file: blank jsonlite + expected code: 200 + +- groupid Seasat blank not in CMR: + groupid: SS_01502_STD + output: json + + expected file: blank jsonlite + expected code: 200 + +- instrument test: + instrument: test + output: json + + expected file: blank jsonlite + expected code: 200 + +- instrument notvalid: + platform: ALOS + instrument: notvalid + output: jsonlite + + expected file: blank jsonlite + expected code: 200 + +- instrument with invalid dataset: + platform: S1 + instrument: SA + output: json + maxResults: 100 + + expected file: blank jsonlite + expected code: 200 + +- output test: + platform: S1 + relativeOrbit: 85-90 + output: TEST + maxResults: 100 + + expected file: error json + expected code: 400 + +- output csc: + platform: S1 + relativeOrbit: 85-90 + maxResults: 1 + output: CSC + + expected file: error json + expected code: 400 + +- platform count RADARSAT-1 blank: + platform: RADARSAT-1 + start: "2017-01-01T00:00:00Z" + end: "2018-01-01T00:00:00Z" + output: count + + expected file: blank count + expected code: 200 + +- platform count Radarsat-1 blank: + platform: Radarsat-1 + start: "2016-01-01T00:00:00Z" + end: "2018-01-01T00:00:00Z" + output: count + + expected file: blank count + expected code: 200 + +- platform specchar count blank: + platform: +_ + output: count + + expected file: blank count + expected code: 200 + +- platform TEST count blank: + platform: TEST + output: count + + expected file: blank count + expected code: 200 + +- platform specchar blank: + platform: ~! + output: csv + + expected file: blank csv + expected code: 200 + +- platform wrong name blank: + platform: S2 + start: "2016-01-01T00:00:00Z" + end: "2016-01-02T00:00:00Z" + output: csv + + expected file: blank csv + expected code: 200 + +- platform partial name blank: + platform: SENTI + start: 3+year+ago + end: now + maxResults: 2000 + output: csv + + expected file: blank csv + expected code: 200 + +- platform TEST blank: + platform: TEST + start: "2011-01-01T00:00:00Z" + end: "2016-01-02T00:00:00Z" + output: csv + + expected file: blank csv + expected code: 200 + +- polarization number blank: + polarization: 12 + platform: AIRSAR + output: csv + + expected file: blank csv + expected code: 200 + +- polarization specchar blank: + polarization: +& + platform: AIRSAR + output: csv + + expected file: blank csv + expected code: 200 + +- polarization specchar 2 blank: + polarization: +! + platform: E1 + maxResults: 1000 + output: csv + + expected file: blank csv + expected code: 200 + +- processingLevel specchar blank: + processingLevel: $$$ + maxResults: 1000 + output: csv + + expected file: blank csv + expected code: 200 + +- processingLevel LSTOKETS count blank: + processingLevel: LSTOKETS + output: count + + expected file: blank count + expected code: 200 + +- product_list number blank: + product_list: 1,2,3,4,5 + output: csv + + expected file: blank csv + expected code: 200 + +- product_list alpha blank: + product_list: a,b,c,d + output: csv + + expected file: blank csv + expected code: 200 + +- product_list TEST blank: + product_list: TEST,INVALID + output: csv + + expected file: blank csv + expected code: 200 + +- relativeOrbit blank: + relativeOrbit: 6710 + output: csv + + expected file: blank csv + expected code: 200 diff --git a/tests/yml_tests/test_WKTUtils.py b/tests/yml_tests/test_WKTUtils.py new file mode 100644 index 0000000..8c0482e --- /dev/null +++ b/tests/yml_tests/test_WKTUtils.py @@ -0,0 +1,164 @@ +import os # Generic imports +import shapely.wkt, geomet.wkt # For comparing wkt's + +from helpers import make_request, request_to_json + +class test_filesToWKT(): + def __init__(self, **args): + self.error_msg = "Reason: {0}" + + test_info = args["test_info"] + test_api = args["config"].getoption("--api")["this_api"] + + # Join the url 'start' to the endpoint, even if they both/neither have '/' between them: + url_parts = [ test_api, args["test_type_vars"]["endpoint"] ] + full_url = '/'.join(s.strip('/') for s in url_parts) + test_info = self.applyDefaultValues(test_info) + # Make a request, and turn it into json. Helpers should handle if something goes wrong: + response_server = make_request(full_url, files=test_info["file wkt"] ).content.decode("utf-8") + response_json = request_to_json(response_server, full_url, test_info["title"]) # The last two params are just for helpfull error messages + + if test_info["print"] == True: + print() + print("Title: " + str(test_info["title"])) + print(" -- API returned:\n{0}".format(response_json)) + print() + + # Make sure the response matches what is expected from the test: + self.runAssertTests(test_info, response_json) + + def applyDefaultValues(self, test_info): + # Figure out what test is 'expected' to do: + pass_assertions = ["parsed wkt"] + fail_assertions = ["errors"] + # True if at least one of the above is in the test, False otherwise: + pass_assertions_used = 0 != len([k for k,_ in test_info.items() if k in pass_assertions]) + fail_assertions_used = 0 != len([k for k,_ in test_info.items() if k in fail_assertions]) + assertions_used = (pass_assertions_used or fail_assertions_used) + + # Default Print the result to screen if tester isn't asserting anything. Else just run the test: + if "print" not in test_info: + test_info["print"] = not assertions_used + + if not isinstance(test_info["file wkt"], type([])): + test_info["file wkt"] = [ test_info["file wkt"] ] + + # If you should check errors. (Will check if you assert something will happen. Checks empty case by default then.) + if "check errors" not in test_info: + test_info["check errors"] = assertions_used + # Setup errors: + if "errors" not in test_info: + test_info["errors"] = [] + if not isinstance(test_info["errors"], type([])): + test_info["errors"] = [ test_info["errors"] ] + + # Load the files: + resources_dir = os.path.join(os.path.realpath(os.path.dirname(__file__)), "Resources") + files_that_exist = [] + for file in test_info["file wkt"]: + file_path = os.path.join(resources_dir, file) + if os.path.isfile(file_path): + # Save it in the format the api is expecting: + files_that_exist.append(('files', open(file_path, 'rb'))) + else: + assert False, self.error_msg.format("File in 'file wkt' not found: {0}.".format(file_path)) + # Override with the new files: + test_info["file wkt"] = files_that_exist + return test_info + + def runAssertTests(self, test_info, response_json): + if "parsed wkt" in test_info: + if "parsed wkt" in response_json: + lhs = geomet.wkt.loads(response_json["parsed wkt"]) + rhs = geomet.wkt.loads(test_info["parsed wkt"]) + assert lhs == rhs, self.error_msg.format("Parsed wkt returned from API did not match 'parsed wkt'.") + else: + # Here, I want content to be last. sometimes it explodes in length... + assert False, self.error_msg.format("API did not return a WKT.") + "\n - Content: "+str(response_json) + if test_info["check errors"] == True: + # Give errors a value to stop key-errors, and force the len() test to always happen: + if "errors" not in response_json: + response_json["errors"] = [] + for error in test_info["errors"]: + assert str(error) in str(response_json["errors"]), self.error_msg.format("Response did not contain expected error.\nExpected: '{0}'\nNot found in:\n{1}\n".format(error, response_json["errors"])) + assert len(test_info["errors"]) == len(response_json["errors"]), self.error_msg.format("Number of errors declared did not line up with number of expected errors.\nWarnings in response:\n{0}\n".format(response_json["errors"])) + + + +class test_repairWKT(): + def __init__(self, **args): + self.error_msg = "Reason: {0}" + + test_info = args["test_info"] + test_api = args["config"].getoption("--api")["this_api"] + + # Join the url 'start' to the endpoint, even if they both/neither have '/' between them: + url_parts = [ test_api, args["test_type_vars"]["endpoint"] ] + full_url = '/'.join(s.strip('/') for s in url_parts) + test_info = self.applyDefaultValues(test_info) + # Make a request, and turn it into json. Helpers should handle if something goes wrong: + response_server = make_request(full_url, data={"wkt": test_info["test wkt"]} ).content.decode("utf-8") + response_json = request_to_json(response_server, full_url, test_info["title"]) # The last two params are just for helpfull error messages + # Make sure the response matches what is expected from the test: + self.runAssertTests(test_info, response_json) + if test_info["print"] == True: + print(test_info["title"]) + print(" -- Returned: {0}".format(response_json)) + + def applyDefaultValues(self, test_info): + # Copy 'repaired wkt' to the wrapped/unwrapped versions if used: + if "repaired wkt" in test_info: + for i in ["repaired wkt wrapped", "repaired wkt unwrapped"]: + if i not in test_info: + test_info[i] = test_info["repaired wkt"] + del test_info["repaired wkt"] + + # Figure out what test is 'expected' to do: + pass_assertions = ["repaired wkt wrapped", "repaired wkt unwrapped", "repair"] + fail_assertions = ["repaired error msg"] + # True if at least one of the above is used, False otherwise: + pass_assertions_used = 0 != len([k for k,_ in test_info.items() if k in pass_assertions]) + fail_assertions_used = 0 != len([k for k,_ in test_info.items() if k in fail_assertions]) + + # Default Print the result to screen if tester isn't asserting anything: + if "print" not in test_info: + test_info["print"] = False if (pass_assertions_used or fail_assertions_used) else True + # If they expect something to pass, check if it needed repairing too: + if "check repair" not in test_info: + test_info["check repair"] = pass_assertions_used + + # Add the repair if needed. Make sure it's a list: + if "repair" not in test_info: + test_info["repair"] = [] + elif not isinstance(test_info["repair"], type([])): + test_info["repair"] = [test_info["repair"]] + + # If they passed more than one wkt, combine them: + if isinstance(test_info["test wkt"], type([])): + test_info["test wkt"] = "GEOMETRYCOLLECTION({0})".format(",".join(test_info['test wkt'])) + return test_info + + def runAssertTests(self, test_info, response_json): + if "repaired wkt wrapped" in test_info: + if "wkt" in response_json: + assert shapely.wkt.loads(response_json["wkt"]["wrapped"]) == shapely.wkt.loads(test_info["repaired wkt wrapped"]), self.error_msg.format("WKT wrapped failed to match the result.\nExpected: {0}\nActual: {1}\n".format(test_info["repaired wkt wrapped"], response_json["wkt"]["wrapped"])) + else: + assert False, "WKT not found in response from API. Test: '{0}'. Response: {1}.".format(test_info["title"], response_json) + if "repaired wkt unwrapped" in test_info: + if "wkt" in response_json: + assert shapely.wkt.loads(response_json["wkt"]["unwrapped"]) == shapely.wkt.loads(test_info["repaired wkt unwrapped"]), self.error_msg.format("WKT unwrapped failed to match the result.\nExpected: {0}\nActual: {1}\n".format(test_info["repaired wkt wrapped"], response_json["wkt"]["wrapped"])) + else: + assert False, self.error_msg.format("WKT not found in response from API. Response: {0}.".format(response_json)) + + if test_info["check repair"]: + if "repairs" in response_json: + for repair in test_info["repair"]: + assert repair in str(response_json["repairs"]), self.error_msg.format("Expected repair was not found in results. Repairs done: {0}".format(response_json["repairs"])) + assert len(response_json["repairs"]) == len(test_info["repair"]), self.error_msg.format("Number of repairs doesn't equal number of repaired repairs. Repairs done: {0}.".format(response_json["repairs"])) + else: + assert False, "Unexpected WKT returned: {0}. Test: '{1}'".format(response_json, test_info["title"]) + if "repaired error msg" in test_info: + if "errors" in response_json: + assert test_info["repaired error msg"] in response_json["errors"]["report"], self.error_msg.format("Got different error message than expected. Error returned: {0}".format(response_json["errors"]["report"])) + else: + assert False, self.error_msg.format("Unexpected WKT returned. Response: {0}.".format(response_json)) diff --git a/tests/yml_tests/test_WKTUtils.yml b/tests/yml_tests/test_WKTUtils.yml new file mode 100644 index 0000000..7cf4f64 --- /dev/null +++ b/tests/yml_tests/test_WKTUtils.yml @@ -0,0 +1,43 @@ +tests: +# REPAIR: +- REPAIR Merge individual shapes together and reverse polygon order: + test wkt: GEOMETRYCOLLECTION(POLYGON((46 -19,30 26,-3 41,22 39,49 16,46 -19)), POLYGON((27 24,12 4,18 31,27 24))) + repaired wkt: POLYGON ((19.28457446808511 13.71276595744681, 46 -19, 49 16, 22 39, -3 41, 15.25490196078431 18.64705882352941, 12 4, 19.28457446808511 13.71276595744681)) + repair: + - '2 non-overlapping shapes merged by their convex-hulls' + # - 'Reversed polygon winding order' + +# FILE geojson: +- FILE geojson smallest possible json: + file wkt: geojsons_valid/SmallestJson_1.geojson + parsed wkt: POINT (125.6000000000000000 10.1000000000000000) + +# FILE kml: +- File kml contains polygon point and line: + file wkt: kmls_valid/Polygon_point_line.kml + parsed wkt: GEOMETRYCOLLECTION (POINT (-79.9165174000000000 47.2629855000000000 0),POLYGON ((-81.6084120000000000 36.5963103000000000 0, -82.1577284000000000 36.1362865000000000 0, -82.7729628000000000 36.0119699000000000 0, -83.1025526000000000 35.7449162000000000 0, -83.9594862000000000 35.5485053000000000 0, -84.0473768000000000 35.2798953000000000 0, -84.3110487000000000 35.3157617000000000 0, -84.2890760000000000 34.9563835000000000 0, -83.0366346000000000 34.9743901000000000 0, -82.4433729000000000 35.1542378000000000 0, -81.0590956000000000 35.1183000000000000 0, -80.7734510000000000 34.8121887000000000 0, -79.6967909000000000 34.8302269000000000 0, -78.4663221000000000 33.7957745000000000 0, -76.4887831000000000 34.6858109000000000 0, -75.7417128000000000 35.5663808000000000 0, -75.8515760000000000 36.5610205000000000 0, -81.6084120000000000 36.5963103000000000 0)),LINESTRING (-83.4541151000000000 40.1269874000000000 0, -83.1025526000000000 39.4686070000000000 0, -81.6084120000000000 39.6887673000000000 0, -82.1357557000000000 40.3282965000000000 0)) + +# FILE shp: +- FILE shp PIGSearch basic parse: + file wkt: shps_valid/PIGSearch.shp + parsed wkt: POLYGON ((-93.6067102426235351 -72.8856944984146651, -91.4791994871652463 -73.5721003007378158, -89.2218586527320241 -74.1924679647387819, -86.4975143158965381 -74.5960435731589087, -84.4313971583564467 -75.0575977697939436, -81.6386574529761475 -76.2201567673170501, -82.0018884023531740 -76.6401805661863875, -92.4340109688424576 -78.6083249220045843, -123.2909691548899644 -78.2682105590983639, -124.1334246461890132 -76.5657530199191427, -128.1971845542145445 -75.7472954076749687, -127.5868724202778850 -75.0106040061619836, -113.2443898966042894 -72.8635003500529734, -111.4937053504309290 -73.0439060161920821, -104.9365281958784522 -74.4348495242865340, -101.0943540065516970 -73.8382213941080323, -98.3381504804748374 -73.5636053020733982, -93.6067102426235351 -72.8856944984146651)) +- FILE shp NED_1 basic parse: + file wkt: shps_valid/NED1_F.shp + parsed wkt: POLYGON ((-131.2234653980834200 69.6952689664282700, -130.2118853679330000 69.6952689664282700, -130.2118853679330000 69.3600135158229100, -131.2234653980834200 69.3600135158229100, -131.2234653980834200 69.6952689664282700)) +- FILE shp NED_1 basic parse: + file wkt: shps_valid/NED2_M.shp + parsed wkt: POLYGON ((-160.7402179207039700 63.6652645365122960, -159.9663817358727400 63.6725416743241200, -159.9548013353537500 63.3277304461380840, -160.7193731531169000 63.3205616700762400, -160.7402179207039700 63.6652645365122960)) +- FILE shp ShorelineMask26 basic parse: + file wkt: shps_valid/ShorelineMask26.shp + parsed wkt: "GEOMETRYCOLLECTION (POLYGON ((-151.8815509813926500 60.4082954273920900, -151.8838804251414800 60.4080664312209000, -151.8862278184590200 60.4078878708286300, -151.8885887034059000 60.4077600852597800, -151.8909585968617400 60.4076833164319850, -151.8933333610457300 60.4076577109346400, -151.8950826386528000 60.4076577109346400, -151.8974574028368400 60.4076833164319850, -151.8998272962926700 60.4077600852597800, -151.9021881812395500 60.4078878708286300, -151.9045468151833500 60.4080764514671400, -151.9048323787113000 60.4077787309037700, -151.9058843633726500 60.4067255177685100, -151.9061251559511400 60.4065087811553700, -151.9065289866234000 60.4060557296882050, -151.9073501980531700 60.4052106826269440, -151.9081038766925400 60.4040871712859940, -151.9086185335184800 60.4034339559123600, -151.9090367191692200 60.4027262775956600, -151.9098015467040000 60.4016140653369000, -151.9099304492308000 60.4013538303150900, -151.9105967002774700 60.4002262747228540, -151.9113616788983400 60.3991141667854100, -151.9118136493803800 60.3985404254003700, -151.9122946796557000 60.3977262727493700, -151.9130595998206600 60.3966141639126000, -151.9139217735709600 60.3955196170367700, -151.9148795533486700 60.3944447131530640, -151.9159311072347700 60.3933914982191000, -151.9170744270431300 60.3923619732265140, -151.9179343488910700 60.3916617916584100, -151.9175434702549000 60.3914398209910250, -151.9160588757165200 60.3905231789016200, -151.9146565682460000 60.3895753465250800, -151.9133392134339100 60.3885981296999700, -151.9121093158922000 60.3875933927209300, -151.9109692102608200 60.3865630493452840, -151.9099210621073000 60.3855090636923800, -151.9096667068530200 60.3852223436363150, -151.9093056758162600 60.3848960534102160, -151.9082575807227300 60.3838420668579400, -151.9073034261122000 60.3827664471139100, -151.9064450205212600 60.3816712428336500, -151.9056839899241700 60.3805585413436460, -151.9050217732362300 60.3794304605473800, -151.9044596232130000 60.3782891516231100, -151.9039985983566000 60.3771367873329150, -151.9036395665127700 60.3759755629219500, -151.9033832012737000 60.3748076880244200, -151.9032299792801000 60.3736353875631300, -151.9031801802211000 60.3724608936553860, -151.9031857785008400 60.3690998951440750, -151.9032394815168300 60.3679254426051560, -151.9033965669979400 60.3667532680489100, -151.9036567264767300 60.3655856017941200, -151.9040194527355300 60.3644246660655300, -151.9044840443031600 60.3632726695980750, -151.9050496072535500 60.3621318049388800, -151.9057150552056000 60.3610042430514100, -151.9064791120213700 60.3598921270200900, -151.9073403145038700 60.3587975738490200, -151.9082970141958200 60.3577226636700740, -151.9093473827754800 60.3566694415415550, -151.9104894147546600 60.3556399111530500, -151.9117209301767600 60.3546360276306500, -151.9130395791132500 60.3536597011343500, -151.9144428470597200 60.3527127869655800, -151.9159280603316800 60.3517970855671140, -151.9174052516510200 60.3509615101656300, -151.9189506664400800 60.3501568183825160, -151.9231167101680200 60.3480750218448600, -151.9249183202242600 60.3472151467616400, -151.9267977854893800 60.3463972457363400, -151.9286472547669600 60.3456624105918400, -151.9305595605752300 60.3449682266024200, -151.9325310651565000 60.3443160130735800, -151.9345603233002500 60.3437133512902050, -151.9347151200067600 60.3436643337420800, -151.9355610960677000 60.3433572215585600, -151.9375325035222000 60.3427050080297250, -151.9386752990258000 60.3423735089303360, -151.9395543278699000 60.3420821456745100, -151.9405906850120700 60.3416902157309200, -151.9425619926418300 60.3410380022020800, -151.9445887452743600 60.3404289983996000, -151.9466634911272000 60.3398560709010200, -151.9468048501637000 60.3397862268529400, -151.9486539444239700 60.3390513899098000, -151.9505658635237600 60.3383572050210550, -151.9525369688060400 60.3377049914922200, -151.9545635145945000 60.3370959867904160, -151.9566416472941600 60.3365313492424200, -151.9578122453388300 60.3362539524579800, -151.9587662587558200 60.3360078835570450, -151.9598922872992000 60.3356973467551800, -151.9620180031283200 60.3351781474535760, -151.9641873153922500 60.3347053738539800, -151.9663961024981000 60.3342799225804360, -151.9686401673098400 60.3339026030227500, -151.9691903293701800 60.3338231713023560, -151.9703531545743800 60.3335391411185360, -151.9725223580203700 60.3330663675188800, -151.9747310345096000 60.3326409162453400, -151.9769753349437200 60.3322648800202600, -151.9772313458499000 60.3322137670517700, -151.9789824373895300 60.3317797929031500, -151.9793559051508700 60.3316834485323740, -151.9795666396886400 60.3316318877015200, -151.9810627185695800 60.3312253302848400, -151.9831881430183700 60.3307061309832300, -151.9853571585060200 60.3302333564842600, -151.9875656434396700 60.3298079061100340, -151.9898094015826000 60.3294305856530850, -151.9920080362418600 60.3291271489987900, -151.9920863689907000 60.3291151871162600, -151.9937966681816600 60.3288404469291200, -151.9947317418763600 60.3285863210019800, -151.9968569954539500 60.3280671208010500, -151.9990258355738300 60.3275943463020800, -151.9996799053033700 60.3274724917621400, -152.0002179355092800 60.3273443959271840, -152.0006768073887100 60.3271973163031700, -152.0028019701347800 60.3266781170015600, -152.0049752151340400 60.3262202856377000, -152.0052718529136700 60.3261473236401600, -152.0056286976062800 60.3260399490844200, -152.0077061279354200 60.3254753097377800, -152.0098311791655600 60.3249561104361760, -152.0119998133406800 60.3244833359372600, -152.0142079097671800 60.3240578837644000, -152.0164511570952000 60.3236800345060260, -152.0167032721382700 60.3236376854308700, -152.0172194272347500 60.3235012735650000, -152.0180750260416000 60.3232349393410350, -152.0201522783049800 60.3226702999944000, -152.0222771469727300 60.3221511006927900, -152.0244455949881800 60.3216783252945560, -152.0250798949212000 60.3215560993345400, -152.0253854710626000 60.3214549372955840, -152.0274110087110600 60.3208459307951440, -152.0279955869267800 60.3207031391386300, -152.0285439980070800 60.3205379390747100, -152.0299697094345000 60.3200659325967760, -152.0319951616473600 60.3194569260963360, -152.0340721737917700 60.3188922867497000, -152.0357762388822800 60.3184661169178200, -152.0361928597126800 60.3183586029671800, -152.0378509406683300 60.3178922838019400, -152.0399754990700000 60.3173730827016360, -152.0421436305241000 60.3169003073034000, -152.0443512143370400 60.3164748551305400, -152.0465940578694400 60.3160975346735300, -152.0488679001334400 60.3157690617928200, -152.0511684216852800 60.3154900606178300, -152.0529060215956000 60.3153273453807500, -152.0534893290692700 60.3152496214729000, -152.0551496259544400 60.3149585298123700, -152.0574233890781000 60.3146300569316600, -152.0597238305903000 60.3143510557566740, -152.0620465815844400 60.3141220559881500, -152.0637129821683700 60.3139896227229400, -152.0653868651117200 60.3138829325513400, -152.0670666170307200 60.3138020861973700, -152.0687506164477700 60.3137471637007250, -152.0720818824728700 60.3136642309195850, -152.0748059999968700 60.3136303264784600, -152.0771735750004400 60.3136559328750650, -152.0795366542931200 60.3137327035015000, -152.0818907511572000 60.3138604917683100, -152.0842313941634800 60.3140390548585400, -152.0858747235396300 60.3141956583030500, -152.0875075578275000 60.3143772952760200, -152.0893671534713300 60.3145991193539400, -152.0908514970989000 60.3147871891774800, -152.0923245677246000 60.3149959479047200, -152.0937851944311500 60.3152252300603800, -152.0952322179924500 60.3154748512834000, -152.0974397343562100 60.3159003034563200, -152.0996077992605000 60.3163730788545540, -152.1004059304892700 60.3165681328131300, -152.1009902191232800 60.3166525359857800, -152.1032331004272200 60.3170298573421060, -152.1054407220116800 60.3174553095149700, -152.1076088903379900 60.3179280849132600, -152.1097334847125000 60.3184472851141900, -152.1118104680786000 60.3190119244608240, -152.1138358933118000 60.3196209309612640, -152.1158059086157600 60.3202731471880600, -152.1177167692135000 60.3209673338753900, -152.1195648418439500 60.3217021735165400, -152.1212175448537800 60.3224178701885900, -152.1228106632814600 60.3231660800506100, -152.1266716021127000 60.3250539782585500, -152.1284417053204300 60.3259609436427100, -152.1301242505337000 60.3269080268839840, -152.1316083315592200 60.3278237318797900, -152.1330105302117800 60.3287706505451500, -152.1343281737062200 60.3297469806386740, -152.1355587493367800 60.3307508677584100, -152.1366999107722200 60.3317804035428400, -152.1377494780559500 60.3328336301679540, -152.1387054474983800 60.3339085439441760, -152.1395659925764800 60.3350031016119000, -152.1403294657322400 60.3361152221398240, -152.1409944046680200 60.3372427894232700, -152.1415595350444800 60.3383836585790600, -152.1420237713799000 60.3395356586438000, -152.1423646180326700 60.3406167021991000, -152.1426165927815000 60.3417037163534900, -152.1428122789634800 60.3427316378548540, -152.1429913744523500 60.3439838844487900, -152.1430525112643600 60.3452389063505200, -152.1430027517755500 60.3464134047548550, -152.1428496547877000 60.3475857097128000, -152.1425935008893200 60.3487535891069340, -152.1422347667211000 60.3499148189138200, -152.1417741240765300 60.3510671877006100, -152.1412124408014700 60.3522085011214800, -152.1405507744986200 60.3533365855150800, -152.1397903752256000 60.3544492915016800, -152.1389326836963700 60.3555445002785400, -152.1379793222878600 60.3566201245191700, -152.1369320995367200 60.3576741146687250, -152.1357930011460600 60.3587044616416500, -152.1351496765163300 60.3592428003150300, -152.1345450632041000 60.3597355676423600, -152.1345768812180700 60.3612949030373900, -152.1345796403381000 60.3615448992777600, -152.1345298574669300 60.3627193949841400, -152.1343766849360300 60.3638916972440700, -152.1341204051325600 60.3650595730409240, -152.1337614928985400 60.3662208001498500, -152.1333006209269000 60.3673731662386800, -152.1327386579626800 60.3685144769615900, -152.1320766625079300 60.3696425586572300, -152.1313158855196800 60.3707552628451400, -152.1304577659131500 60.3718504689240400, -152.1295039296626000 60.3729260904667600, -152.1284561844053700 60.3739800779183040, -152.1273165176431500 60.3750104230925900, -152.1260870931448000 60.3760151627695900, -152.1247702464496900 60.3769923804940160, -152.1233684794717000 60.3779402146692500, -152.1218844560028200 60.3788568576579200, -152.1210986221037000 60.3793107616823500, -152.1182940800077600 60.3808946179922800, -152.1168997162488700 60.3816524029360800, -152.1154480333000500 60.3823833503114400, -152.1139411346756000 60.3830863989182400, -152.1123812057280400 60.3837605271267000, -152.1105311096229700 60.3844963038614000, -152.1086178559292800 60.3851914069579150, -152.1066450895991700 60.3858445117148800, -152.1046165688995000 60.3864543707726400, -152.1025361618143800 60.3870198204084550, -152.1004078334547000 60.3875397841337640, -152.0982356433602300 60.3880132681978240, -152.0960237329089200 60.3884393696812400, -152.0937264830907000 60.3888250466386600, -152.0913967299751000 60.3891596142248660, -152.0892841649322200 60.3894378347882800, -152.0870294314630700 60.3897093922747100, -152.0847533184109000 60.3899330770499300, -152.0824080097218300 60.3901118838564340, -152.0800491572427700 60.3902398645781200, -152.0776812593826000 60.3903167754988300, -152.0753088316372400 60.3903424700290000, -152.0737033007666800 60.3903452552294200, -152.0745703011784300 60.3914481586056700, -152.0753350990355600 60.3925602683417540, -152.0760011927008600 60.3936878257326300, -152.0765673060363000 60.3948286840965240, -152.0770323499629600 60.3959806742687400, -152.0773398641434000 60.3969399397265100, -152.0775772734723700 60.3979040687178800, -152.0777442613885200 60.3988718066885900, -152.0778406057593200 60.3998418945878400, -152.0778981326926400 60.4007578711788800, -152.0779243686147000 60.4015718808377100, -152.0778745281869000 60.4027463693495300, -152.0777211712950000 60.4039186644149000, -152.0774645785274400 60.4050865339164600, -152.0771052292229200 60.4062477538308260, -152.0766437951750000 60.4074001136244200, -152.0760811451287000 60.4085414180520400, -152.0754183393848400 60.4096694934524400, -152.0746566306989000 60.4107821904457900, -152.0737974606842300 60.4118773902294500, -152.0728424553150300 60.4129530063762000, -152.0717934258259200 60.4140069884318200, -152.0706523624165500 60.4150373273108700, -152.0694214297551500 60.4160420615919500, -152.0681029678776500 60.4170192739204000, -152.0666994804966000 60.4179671035989800, -152.0652136359005300 60.4188837420910550, -152.0636482615580000 60.4197674429132100, -152.0620063351242400 60.4206165207359050, -152.0611627116897800 60.4210162783786000, -152.0603723506034700 60.4214624374415600, -152.0596320080107400 60.4218450198318350, -152.0584781076785000 60.4227139546853200, -152.0572572420280700 60.4235604019910400, -152.0559711296638700 60.4243829057465400, -152.0552483328442600 60.4248271348644150, -152.0545547828769000 60.4252447242646440, -152.0529891027648500 60.4261284241874800, -152.0513468561724400 60.4269775011108550, -152.0496311664451500 60.4277903362550400, -152.0478453017192600 60.4285653791889700, -152.0459926632308000 60.4293011523263900, -152.0440767781208000 60.4299962518256300, -152.0421012985360700 60.4306493520859900, -152.0400699890387300 60.4312592075464200, -152.0379867203108700 60.4318246553835900, -152.0358554646579400 60.4323446155116240, -152.0336802861163000 60.4328180968777250, -152.0314653332585000 60.4332441956631800, -152.0307786774939400 60.4333652596990300, -152.0291665725792400 60.4336434757658500, -152.0277202360999800 60.4338770171107200, -152.0269864162900400 60.4347029607730500, -152.0263986949438000 60.4352930617254740, -152.0262097105097000 60.4356144515457460, -152.0254473965800600 60.4367271449418100, -152.0245875439799500 60.4378223402288800, -152.0236317786836000 60.4388979518790300, -152.0225819155229500 60.4399519303373700, -152.0219531662056300 60.4405207389410200, -152.0208903492102200 60.4415909267798950, -152.0197483199290000 60.4426212629609840, -152.0185163467519700 60.4436259927454100, -152.0181598563922300 60.4438899905306900, -152.0179184981401500 60.4446647097086600, -152.0174565227003400 60.4458170632069600, -152.0168932107530400 60.4469583613393400, -152.0162296252969400 60.4480864304444500, -152.0160773296050500 60.4483086394322400, -152.0157399723218200 60.4491500586283340, -152.0153124804865600 60.4500160913695500, -152.0153712394911000 60.4504534199894000, -152.0154250845999400 60.4516278581392040, -152.0154241834792700 60.4518065705168500, -152.0153751659311500 60.4559735918078900, -152.0153138582479400 60.4571032500150500, -152.0151566180834400 60.4582306428299600, -152.0149753929999600 60.4590354569208440, -152.0153298895627400 60.4593898014982200, -152.0162895848963800 60.4604646927913900, -152.0171534853450300 60.4615592288753900, -152.0179199370554000 60.4626713260209400, -152.0181165369485800 60.4630034069817300, -152.0186882278793800 60.4635938622669760, -152.0193399485797300 60.4641976059348300, -152.0203937966363700 60.4652508091775760, -152.0213536655392000 60.4663256995714300, -152.0222177215705700 60.4674202338567850, -152.0229843117765300 60.4685323301030200, -152.0236519675642300 60.4696598731047200, -152.0242194082990200 60.4708007179788200, -152.0245551692856000 60.4716304954510500, -152.0252786909588000 60.4721642475820400, -152.0265146625216300 60.4731681113193500, -152.0276608286842800 60.4741976219227700, -152.0287150013961700 60.4752508233668800, -152.0296751661759600 60.4763257119620900, -152.0305394893059700 60.4774202444487500, -152.0313063151343200 60.4785323388964000, -152.0319741777660700 60.4796598800994600, -152.0325417938686600 60.4808007231748660, -152.0330080743631200 60.4819526980586500, -152.0333721208267000 60.4831136122035100, -152.0336332290902000 60.4842812577738900, -152.0337908919361000 60.4854534116456650, -152.0338447981988600 60.4866278426009100, -152.0338380514848500 60.4870741455554250, -152.0337582501431000 60.4895741781059000, -152.0336817816888400 60.4906366758419840, -152.0335203452876800 60.4916968551258400, -152.0332741864545200 60.4927530639028500, -152.0329436793073200 60.4938036537157000, -152.0324810086915800 60.4949559982208000, -152.0319168486835800 60.4960972882593100, -152.0312522631813600 60.4972253501698560, -152.0304885085378100 60.4983380336733500, -152.0296270281647800 60.4994332199671600, -152.0286694552311500 60.5005088226241100, -152.0276176036694600 60.5015627920892600, -152.0264734690753000 60.5025931192770940, -152.0252392242108000 60.5035978418669600, -152.0239172118098500 60.5045750434035800, -152.0225099454775700 60.5055228613910000, -152.0210200997977400 60.5064394899905000, -152.0195848132884700 60.5072505507723700, -152.0180848583295300 60.5080326560822640, -152.0173078719607000 60.5084218808651700, -152.0154540337766200 60.5093076042625740, -152.0135172745026000 60.5101491088943250, -152.0116599829218600 60.5108848748371300, -152.0104483596040800 60.5113233563878340, -152.0104185182999600 60.5120243014803800, -152.0102646541904200 60.5131965776599800, -152.0100072070669300 60.5143644282758260, -152.0096466562681300 60.5155256293044200, -152.0091836771849200 60.5166779711115050, -152.0086191412603400 60.5178192575527300, -152.0079541132916700 60.5189473149666800, -152.0071898478332000 60.5200599957722150, -152.0063277927933700 60.5211551784687460, -152.0053695795424500 60.5222307784277400, -152.0043170256102200 60.5232847442955500, -152.0031721265923500 60.5243150687854300, -152.0019370561501800 60.5253197877780200, -152.0006141606150000 60.5262969866166700, -151.9992059526925300 60.5272448019061360, -151.9977151105638600 60.5281614278076740, -151.9959583703824500 60.5291448139820400, -151.9941065295926400 60.5300848986991600, -151.9933015113556400 60.5304741279786640, -151.9917680395633400 60.5311874369506900, -151.9901797846693000 60.5318710377182500, -151.9883212502254800 60.5326068018624700, -151.9863992677120200 60.5333018923685100, -151.9844175000675400 60.5339549845349440, -151.9823797235453600 60.5345648319015500, -151.9802898232167400 60.5351302725441100, -151.9791320791820800 60.5354046269220600, -151.9781533416034200 60.5356559928298450, -151.9770404719402000 60.5359632695892740, -151.9749023760438000 60.5364832234220700, -151.9727202151657700 60.5369566984928700, -151.9704981522678800 60.5373827927817300, -151.9682404240563000 60.5377606915027400, -151.9659504893236000 60.5380852523325640, -151.9653847743878000 60.5381735225900600, -151.9631288322297800 60.5385666891014600, -151.9608396889005000 60.5388956727971400, -151.9593280166746000 60.5390780553080400, -151.9575828282848700 60.5394566887752000, -151.9553605936164600 60.5398827830640600, -151.9531026909364200 60.5402606817850700, -151.9511789295639200 60.5405371405766460, -151.9508150512735700 60.5405981316984600, -151.9503880585620300 60.5406887788640800, -151.9481301001240000 60.5410666784844700, -151.9458407796282400 60.5413956621800900, -151.9435244659812800 60.5416751022242500, -151.9411855775523500 60.5419044662181700, -151.9388285767773500 60.5420833152928140, -151.9364579620652800 60.5422113095044100, -151.9340782561066000 60.5422882033379900, -151.9316939995783900 60.5423138511034150, -151.9293097430501700 60.5422882033379900, -151.9269300370915000 60.5422113095044100, -151.9245594223794200 60.5420833152928140, -151.9222024216044500 60.5419044662181700, -151.9198635331755000 60.5416751022242500, -151.9175472195285300 60.5413956621800900, -151.9152578990327800 60.5410666784844700, -151.9129999405947400 60.5406887788640800, -151.9115601008179800 60.5404127094790300, -151.9103143221482200 60.5402336823386240, -151.9080564221661000 60.5398557827182340, -151.9058341892963700 60.5394296893287560, -151.9036518620437700 60.5389562133586300, -151.9015136033700600 60.5384362595258400, -151.8994234899021200 60.5378708197825400, -151.8973855056365500 60.5372609724159900, -151.8954035356446200 60.5366078802495050, -151.8934813579782600 60.5359127897435200, -151.8916226328781800 60.5351770264986160, -151.8911881524112700 60.5349890349160660, -151.8906097192631000 60.5348159810727100, -151.8886278994579600 60.5341628889062800, -151.8867058656831300 60.5334677975009200, -151.8848472817766200 60.5327320342560140, -151.8836165154897600 60.5322070055489100, -151.8831018856434700 60.5319738877847700, -151.8819913695060700 60.5316078969868840, -151.8800694868173200 60.5309128064809000, -151.8782110495003000 60.5301770432359940, -151.8778413229187000 60.5300163029101000, -151.8770188065726400 60.5297914103453540, -151.8760698563387700 60.5295310763980900, -151.8759561577504400 60.5295082237256000, -151.8756897551780300 60.5294476786675100, -151.8752368134281600 60.5293997250173560, -151.8729796670779400 60.5290218253969700, -151.8707581761488800 60.5285957311081700, -151.8685765782464600 60.5281222551380440, -151.8664390336344600 60.5276023004058740, -151.8652985952539300 60.5272913876874550, -151.8643504454167000 60.5270289852994700, -151.8641152798962300 60.5269759028157100, -151.8631638178558800 60.5267594602809140, -151.8627770248398000 60.5266652032365760, -151.8619387451769300 60.5264832604941000, -151.8598013084835800 60.5259633066613100, -151.8586607666810000 60.5256523723591600, -151.8577095339677800 60.5254079941836400, -151.8565239559158000 60.5251303087168250, -151.8544346995017500 60.5245648680742650, -151.8523975516057000 60.5239550189090800, -151.8517883922205000 60.5237542083900700, -151.8508164175436000 60.5235677492522650, -151.8486351577862800 60.5230942732821400, -151.8473973471098500 60.5227775050778400, -151.8464987292329300 60.5225706996781100, -151.8463565239344000 60.5225360416050650, -151.8452197305061300 60.5222892766289000, -151.8430825699046500 60.5217693218967300, -151.8419147219868000 60.5214548037961900, -151.8409902719834300 60.5212172730587700, -151.8397772178443000 60.5209363239522400, -151.8386903250983800 60.5206318539769100, -151.8376874326288800 60.5203741667344840, -151.8365558660603400 60.5201023277603000, -151.8344669325029000 60.5195368862183600, -151.8324301002688800 60.5189270370531740, -151.8304492499329000 60.5182739439873700, -151.8285281577482500 60.5175788516826860, -151.8266704830563200 60.5168430875385200, -151.8265078136846300 60.5167527686254500, -151.8244137387030400 60.5162038988908650, -151.8223771151117500 60.5155940497256800, -151.8203964680225500 60.5149409557605500, -151.8184769388596200 60.5142413020944900, -151.8183727110317700 60.5142051187712600, -151.8173506477142000 60.5138990551972700, -151.8153701049463700 60.5132459612322000, -151.8143599306662300 60.5128753650061500, -151.8142000995549000 60.5128225631108300, -151.8123251291014000 60.5122610614988600, -151.8103446852590000 60.5116079675337350, -151.8084239878767200 60.5109128752290500, -151.8065666944973200 60.5101771092862460, -151.8045952690564000 60.5093197954722650, -151.8027099051380000 60.5084166674952800, -151.7969600338784300 60.5055259973269700, -151.7954961453308200 60.5047605654477800, -151.7940940851738700 60.5039674974021300, -151.7926043528086000 60.5030508688026300, -151.7911971934956600 60.5021030499158900, -151.7898752827181000 60.5011258483792740, -151.7886411304837700 60.5001211257894060, -151.7874970840232000 60.4990907977021950, -151.7864453125011400 60.4980368282371050, -151.7854878115132600 60.4969612255801500, -151.7846263967907400 60.4958660383870200, -151.7838626997038000 60.4947533539841500, -151.7831981645636000 60.4936252920736000, -151.7826340477231000 60.4924840020351000, -151.7821714121809000 60.4913316566306800, -151.7818111275814500 60.4901704511054850, -151.7815538702149000 60.4890025959930400, -151.7814001185206200 60.4878303162161600, -151.7813501539863800 60.4866558420935100, -151.7813557064007000 60.4833498443198900, -151.7814096072675300 60.4821754124653800, -151.7815672539256000 60.4810032576942260, -151.7818283361088000 60.4798356121238500, -151.7821923457001700 60.4786746970796700, -151.7826585785305400 60.4775227221959400, -151.7832261370765300 60.4763818782211600, -151.7838939313598000 60.4752543361187800, -151.7846606807458000 60.4741422407718700, -151.7855249157422300 60.4730477082851500, -151.7864849842945600 60.4719728187906200, -151.7875390499871500 60.4709196164471900, -151.7886851001372300 60.4698901049444540, -151.7899209475936300 60.4688862412071440, -151.7912442343339300 60.4679099335966160, -151.7926524368604400 60.4669630383136200, -151.7941691497864000 60.4660319351257840, -151.7950006044942800 60.4655447660781500, -151.7965593553299500 60.4646705414124300, -151.7981931375032600 60.4638304010522350, -151.7998988915206000 60.4630259152138500, -151.8016734274866600 60.4622585857652000, -151.8035294860968600 60.4615237650098150, -151.8054486042696300 60.4608295963088800, -151.8074271316567700 60.4601773962699000, -151.8084502417852000 60.4598636219086500, -151.8103672069810000 60.4591625904812400, -151.8123456327447200 60.4585103904422000, -151.8143797040600600 60.4579013992302500, -151.8164655529428700 60.4573367733734700, -151.8180136234299500 60.4569600788446450, -151.8187585840414000 60.4566905826043800, -151.8207368596183400 60.4560383825653400, -151.8227707753509600 60.4554293913533900, -151.8248564659531000 60.4548647654966100, -151.8269941985234000 60.4543612108012700, -151.8276162604820200 60.4542095851043100, -151.8282731109153200 60.4540317621561500, -151.8304065564174200 60.4535125745457550, -151.8321301511855000 60.4531383081864500, -151.8328278695105400 60.4529293821852900, -151.8349134000333400 60.4523647563285100, -151.8352873974953600 60.4522737368435500, -151.8351518930454000 60.4518364882633800, -151.8348949360524200 60.4506686268557000, -151.8347413624239000 60.4494963407835800, -151.8346914536476500 60.4483218603656400, -151.8346963801338000 60.4480576134681660, -151.8344017973050800 60.4474560614481200, -151.8339397984828700 60.4463037079498200, -151.8335996011406600 60.4452157045411700, -151.8333497299060800 60.4441217386274160, -151.8331905930713800 60.4430236403288200, -151.8331224478426700 60.4419232451617200, -151.8330198172107500 60.4369232025438240, -151.8330170338090300 60.4366278642845600, -151.8330708528375500 60.4354534243361200, -151.8332282701685000 60.4342812614710850, -151.8334889737371300 60.4331136078068300, -151.8338524572250800 60.4319526837693960, -151.8343180173626000 60.4308006998924160, -151.8348847584248300 60.4296598478237600, -151.8355515904335000 60.4285322976275000, -151.8363172354520100 60.4274201941866500, -151.8371802275854000 60.4263256527067400, -151.8381389147790500 60.4252507551183300, -151.8391914651140000 60.4241975446810200, -151.8403358686054200 60.4231680250843500, -151.8415699399007800 60.4221641532531100, -151.8428913254742600 60.4211878384480200, -151.8442975045262000 60.4202409350711500, -151.8457857988754800 60.4193252444645200, -151.8473533711611200 60.4184425059169700, -151.8489972374325400 60.4175943984627700, -151.8507142680490000 60.4167825318883700, -151.8525011930755700 60.4160084503298000, -151.8526310749641000 60.4159547841860000, -151.8535748918677400 60.4155660297485040, -151.8553993779788700 60.4148466674398040, -151.8572844379264400 60.4141665965112800, -151.8592266102198500 60.4135270652219560, -151.8601925855193700 60.4132272312517700, -151.8621059759100300 60.4125234416035800, -151.8640815688093300 60.4118712370680000, -151.8661127263212300 60.4112622404600760, -151.8681955885555500 60.4106976101066950, -151.8703261957972800 60.4101784179996460, -151.8725005001979000 60.4097056506952900, -151.8747143693726000 60.4092802057169800, -151.8769635971922300 60.4089028915552700, -151.8792439118770000 60.4085744240704800, -151.8815509813926500 60.4082954273920900)),POLYGON ((-161.7430050852164800 63.5786274845708000, -161.7448329995432600 63.5786151692547040, -161.7474676974762200 63.5786407603628700, -161.7500973933799700 63.5787174851238900, -161.7527170978157800 63.5788451969483500, -161.7553218357341000 63.5790236539185700, -161.7578305206619700 63.5792450265367960, -161.7603159707054500 63.5795134714695700, -161.7628977777102400 63.5798181941543700, -161.7655056434706500 63.5801540522677440, -161.7680770749970000 63.5805417293174200, -161.7705337269499000 63.5809669305794500, -161.7729464901883300 63.5814394280872100, -161.7753107817671300 63.5819583243172700, -161.7776221086733400 63.5825226345120300, -161.7798760795174400 63.5831312875789100, -161.7820684099291400 63.5837831269897700, -161.7841949324501300 63.5844769152774900, -161.7862516037285000 63.5852113340358760, -161.7882345108140000 63.5859849893158750, -161.7901398819499500 63.5867964116251300, -161.7919640910699300 63.5876440577271200, -161.7937036640928000 63.5885263196340100, -161.7953552879161800 63.5894415192108200, -161.7969158167115300 63.5903879180680200, -161.7983822746222400 63.5913637175615900, -161.7997518647567300 63.5923670632893700, -161.8010219736851000 63.5933960477894400, -161.8021901759358300 63.5944487159355300, -161.8027881729358000 63.5950524937776440, -161.8036924691321300 63.5957850518387300, -161.8048607694089500 63.5968377190855000, -161.8059249227969200 63.5979120680875100, -161.8068828932309200 63.5990060564843700, -161.8077328460939600 63.6001176032448260, -161.8084731536131000 63.6012445940628500, -161.8091023939602700 63.6023848867531600, -161.8096193566479700 63.6035363103525240, -161.8100230443280000 63.6046966759109300, -161.8103126754895400 63.6058637746934900, -161.8104876844590500 63.6070353862741060, -161.8105477240981700 63.6082092794347300, -161.8105037553440000 63.6092611786605200, -161.8104331252884800 63.6098438269311260, -161.8105376732749800 63.6104865193374300, -161.8106801627592700 63.6114900404330700, -161.8107238113548000 63.6124872770662360, -161.8106687458659000 63.6136612178909200, -161.8104986552886800 63.6148329733630900, -161.8102138507885600 63.6160003104660060, -161.8098148593682300 63.6171610069749250, -161.8093024265657000 63.6183128541549650, -161.8086775164542000 63.6194536558616050, -161.8079413035483000 63.6205812402321300, -161.8070951799985300 63.6216934587861260, -161.8061407430008700 63.6227881936202950, -161.8050797992932800 63.6238633565087640, -161.8039143597598600 63.6249169005945400, -161.8026466322362500 63.6259468167922360, -161.8016844952432200 63.6266635494832800, -161.8006023626089000 63.6274419342979060, -161.7994278453187700 63.6282537936776860, -161.7981885498616600 63.6290463823846700, -161.7968860680376000 63.6298186796883560, -161.7955220734848800 63.6305696900392400, -161.7943707533076000 63.6311630366448640, -161.7931810248843800 63.6317412116876000, -161.7919538972545300 63.6323037250369340, -161.7906904109336800 63.6328500973541500, -161.7893013064101200 63.6334334974579860, -161.7880075471106000 63.6339612457150000, -161.7866798617861500 63.6344720705296800, -161.7850940611420000 63.6350444845153900, -161.7834656641091000 63.6355927579994600, -161.7817965277875000 63.6361162668523000, -161.7800885551426700 63.6366144130248000, -161.7785037941147800 63.6370597671945600, -161.7764576152267500 63.6376099004766050, -161.7741429203594500 63.6381751423689900, -161.7717748893996000 63.6386949154380660, -161.7693580378431500 63.6391682277316000, -161.7668969765142300 63.6395941754308900, -161.7643964007732500 63.6399719446495740, -161.7618610824230000 63.6403008168292700, -161.7592958589167200 63.6405801624446200, -161.7567056261637000 63.6408094481975600, -161.7544152939306300 63.6409691057397140, -161.7521128703127000 63.6410896193904700, -161.7498017412573300 63.6411708128827600, -161.7474853044032600 63.6412125666067250, -161.7416748134418500 63.6412676186057500, -161.7403889996526000 63.6412736953248550, -161.7377485010924300 63.6412480565526300, -161.7351130432323300 63.6411711879000560, -161.7324876568798400 63.6410432377553000, -161.7298773539566800 63.6408644480359300, -161.7272871158077000 63.6406351622829900, -161.7247218869055400 63.6403558166676360, -161.7221865631593400 63.6400269444879400, -161.7196859829217600 63.6396491743699360, -161.7172249170962200 63.6392232275699700, -161.7148080610431600 63.6387499152764350, -161.7124400255867000 63.6382301422073600, -161.7101253253234700 63.6376649003149740, -161.7078683768241000 63.6370552678863500, -161.7056734797472800 63.6364024077449800, -161.7035448204371000 63.6357075663511860, -161.7014864539366700 63.6349720684062850, -161.6997114683095700 63.6342822596186600, -161.6979983254623200 63.6335622156237800, -161.6946922476490700 63.6321172452147700, -161.6926584982910200 63.6311842669404100, -161.6907285145093200 63.6302086913780700, -161.6890775588822200 63.6292924135141200, -161.6875181416489000 63.6283449615507950, -161.6860532278741400 63.6273681413267100, -161.6846856000603600 63.6263638162371900, -161.6834178545503300 63.6253339000394900, -161.6822523970304800 63.6242803559537150, -161.6811914380344000 63.6232051930652460, -161.6802369875469200 63.6221104582311340, -161.6800817717563300 63.6219179331661200, -161.6796387450320400 63.6213617582386060, -161.6788454395653500 63.6202956335367300, -161.6781528509732800 63.6192157096373300, -161.6775621762534000 63.6181238670229160, -161.6770744325390000 63.6170220086588100, -161.6766859622873000 63.6158969396920500, -161.6764047784577400 63.6147655673771060, -161.6762313720801400 63.6136299151884800, -161.6761660408300800 63.6124920164934340, -161.6761199532732000 63.6078249946278300, -161.6761193965928400 63.6076812802669450, -161.6761794353326400 63.6065073862069400, -161.6763544407048400 63.6053357746263260, -161.6766440664704600 63.6041686758437660, -161.6770477469559400 63.6030083102853600, -161.6775646997510600 63.6018568866860500, -161.6781939284070400 63.6007165939956850, -161.6789342215370800 63.5995896022784000, -161.6797841591116200 63.5984780555178900, -161.6807421115591700 63.5973840680204000, -161.6818062451620500 63.5963097190183900, -161.6829745238551700 63.5952570508722500, -161.6842447164205000 63.5942280663722400, -161.6851218746747300 63.5935742817278000, -161.6860401805099000 63.5929318060580600, -161.6869988991798300 63.5923011528759600, -161.6879972599655600 63.5916828267011740, -161.6908595879995700 63.5899617905042760, -161.6919860401236200 63.5893057071926900, -161.6931571103123700 63.5886653197487700, -161.6948966923284600 63.5877830578418750, -161.6967209095423000 63.5869354117398900, -161.6986262896715000 63.5861239903299500, -161.7006092075488700 63.5853503350499500, -161.7026658887197600 63.5846159153922500, -161.7047924211333000 63.5839221280038500, -161.7069847623368700 63.5832702885929850, -161.7092387448721500 63.5826616355261100, -161.7115500825702300 63.5820973244320300, -161.7139143858402000 63.5815784282019650, -161.7163271607698200 63.5811059306942100, -161.7187838244139500 63.5806807294321740, -161.7205884552929500 63.5804204008808260, -161.7215088772328800 63.5802817865752560, -161.7230858564271000 63.5800535242507860, -161.7233120503108500 63.5800231973127550, -161.7251520641164300 63.5797835819468000, -161.7256163696996800 63.5797266512640250, -161.7270082378398700 63.5795704696015500, -161.7281764095136500 63.5794481285283840, -161.7288785282215000 63.5793820607335650, -161.7307610925503500 63.5792176538716940, -161.7323567839384000 63.5791057575247600, -161.7333659159042700 63.5790403246513200, -161.7339584486234700 63.5790080524797100, -161.7359851526926200 63.5789037850816500, -161.7375380291567000 63.5788119822872200, -161.7393559331298000 63.5787259360531600, -161.7411788400314000 63.5786644179286200, -161.7430050852164800 63.5786274845708000)),POLYGON ((-161.3009760777837300 64.0861788102039900, -161.3040559994847700 64.0861450739360500, -161.3060245237127800 64.0861588506505200, -161.3139608645022600 64.0862697433540200, -161.3161511705400500 64.0863173894360300, -161.3183362146445700 64.0863991441052600, -161.3205132242059000 64.0865149039397000, -161.3226794401040500 64.0866645205512100, -161.3253112422200000 64.0868933629383800, -161.3279177769837800 64.0871721725577600, -161.3304940954261300 64.0875004215072900, -161.3330335002957800 64.0878943776234600, -161.3342512686810700 64.0880331762900800, -161.3368276671630800 64.0883614243402900, -161.3393689570117100 64.0887384875911700, -161.3418703124649200 64.0891636501823400, -161.3443269833036000 64.0896361045226400, -161.3467343029457000 64.0901549548873400, -161.3490876983386000 64.0907192147200200, -161.3513826962544000 64.0913278129282800, -161.3536149367798800 64.0919795947825200, -161.3557801751149700 64.0926733219163200, -161.3578742941633000 64.0934076768228900, -161.3592541896291300 64.0939331902645800, -161.3598926201483000 64.0941829877547200, -161.3605995007663000 64.0944725199908600, -161.3618332195274300 64.0949930026250200, -161.3619089145647400 64.0950263728688600, -161.3631777266707300 64.0956023301834500, -161.3636913834505400 64.0958389813839600, -161.3652073121676800 64.0965426226440000, -161.3663674232179800 64.0970975241314700, -161.3674916836942300 64.0976663786005400, -161.3691734599871700 64.0985815008356800, -161.3707624838015700 64.0995278205525100, -161.3722557244221000 64.1005035400064000, -161.3736503336959000 64.1015068029966000, -161.3749479519863700 64.1025393101410800, -161.3761410807462400 64.1035956574137300, -161.3770313879881300 64.1044293172592500, -161.3781108325488600 64.1055001346235800, -161.3790828719769200 64.1065904546857700, -161.3794481451158000 64.1070595518568800, -161.3799726827930400 64.1075795542531000, -161.3809481981008400 64.1086734554156700, -161.3818137254230600 64.1097849158412600, -161.3825676064098800 64.1109118203243000, -161.3832083940521000 64.1120520257804300, -161.3837348544799000 64.1132033630448200, -161.3839928708742700 64.1138911897267000, -161.3843279483761000 64.1148630501896800, -161.3846267939913200 64.1158544079546000, -161.3847584295578500 64.1164484884070600, -161.3853004752367000 64.1176203634890400, -161.3856879958043500 64.1187035159545600, -161.3859742823872000 64.1197926668980900, -161.3865915284762300 64.1226534085280400, -161.3867940908745600 64.1239023150398600, -161.3868635131405800 64.1251539869670000, -161.3868699073203500 64.1280429852955600, -161.3868138822548400 64.1292168433826600, -161.3866407052043400 64.1303885152178700, -161.3863506909316000 64.1315557713817800, -161.3859443781305200 64.1327163896497200, -161.3854225258289000 64.1338681576893900, -161.3847861133884000 64.1350088838529500, -161.3840363387060400 64.1361363935797600, -161.3831746164153700 64.1372485410873300, -161.3822025760880000 64.1383432048750700, -161.3818975134594500 64.1386467359581600, -161.3816838813060600 64.1391181506821800, -161.3810473483564200 64.1402588759464200, -161.3808806167470500 64.1405095601681400, -161.3807402550587000 64.1409103799101700, -161.3802182498723000 64.1420621470505200, -161.3795816503728400 64.1432028714154400, -161.3788316553565800 64.1443303802429300, -161.3785012624233000 64.1447562847747600, -161.3778644183082300 64.1458968670468200, -161.3771143513462200 64.1470243758743100, -161.3762522936084500 64.1481365206839200, -161.3752798728678200 64.1492311835723400, -161.3749299970217200 64.1495791663455200, -161.3745622876194500 64.1500535173560100, -161.3735898012283200 64.1511481802443800, -161.3725087846526700 64.1522232738850600, -161.3713212874474200 64.1532767505216800, -161.3700295597164000 64.1543066019681900, -161.3686809022018500 64.1552800344461000, -161.3672391010037000 64.1562277031460400, -161.3657067272836200 64.1571479119466500, -161.3640865149806400 64.1580390132899100, -161.3625039599897400 64.1588725256465900, -161.3622906713773700 64.1589842412298000, -161.3605183225625000 64.1598675454509400, -161.3586592638139300 64.1607162464576400, -161.3567170339639200 64.1615287245710400, -161.3546953292260500 64.1623034311584800, -161.3525980013966100 64.1630388868352400, -161.3504290461635300 64.1637336895581700, -161.3481925950122200 64.1643865137267000, -161.3458929125278600 64.1649961137797000, -161.3435343829054300 64.1655613250951500, -161.3411215027551300 64.1660810702852000, -161.3386588748072000 64.1665543573977300, -161.3364857674042000 64.1669023626539600, -161.3361484730735400 64.1669661066005700, -161.3340205602006600 64.1673603540971300, -161.3315128087690800 64.1677862793134200, -161.3289647919915200 64.1681640296463300, -161.3263813698043500 64.1684928838395800, -161.3237674731903200 64.1687722150657000, -161.3211280915881200 64.1690014900268000, -161.3185502838685000 64.1691755295271400, -161.3159578900445600 64.1693018195234100, -161.3133555587120300 64.1693801324871600, -161.3107479564529900 64.1694103281241700, -161.2985691700311600 64.1694383554957400, -161.2982499997376600 64.1694387161239200, -161.2955593972483500 64.1694130791503300, -161.2928739316865600 64.1693362140950400, -161.2901987291879800 64.1692082702455200, -161.2875388970024600 64.1690294895194000, -161.2856630254282500 64.1688719246996000, -161.2837992596281000 64.1686890673466300, -161.2819493946488200 64.1684810955262000, -161.2801152075507500 64.1682482079884800, -161.2782526486408000 64.1679979779244100, -161.2752933593010600 64.1675642807670100, -161.2727856285539000 64.1671383555507200, -161.2703252048443000 64.1666517908475400, -161.2695091789054500 64.1664946792860700, -161.2670455491127700 64.1660260704468300, -161.2646326734591000 64.1655063252567900, -161.2622741483332600 64.1649411139413200, -161.2599744703455000 64.1643315138883300, -161.2577380236908200 64.1636786906191200, -161.2555690720550000 64.1629838869968700, -161.2534717487222000 64.1622484313201100, -161.2514553832593000 64.1614758606225500, -161.2495180547144300 64.1606657171491900, -161.2479900552967800 64.1599982628096100, -161.2461262463291700 64.1591476408510200, -161.2443495555875000 64.1582622439074700, -161.2426673323315000 64.1573460209022000, -161.2410783867581200 64.1563986255961300, -161.2395857396901000 64.1554218656266400, -161.2381922266898800 64.1544176025903400, -161.2369004935629000 64.1533877511438400, -161.2357129918610500 64.1523342745072100, -161.2346319707888000 64.1512591799672100, -161.2336594799010400 64.1501645179781700, -161.2330184908106800 64.1493533645662000, -161.2324370979936500 64.1485336981716600, -161.2319158869086400 64.1477063542648700, -161.2314553845583300 64.1468721746112500, -161.2310131528347200 64.1460109928131000, -161.2304463173436500 64.1447713744993800, -161.2300398300740800 64.1436107589294100, -161.2297496916948800 64.1424435045641400, -161.2295764409000000 64.1412718345275700, -161.2295203924521200 64.1400979791384900, -161.2295816380821000 64.1389241723127800, -161.2297600464889300 64.1377526497650500, -161.2300552633397000 64.1365856409146300, -161.2304667121690000 64.1354253652884300, -161.2309935961774800 64.1342740316213200, -161.2316348982319300 64.1331338297624700, -161.2323893835631700 64.1320069297760300, -161.2332556051620100 64.1308954729477700, -161.2342319010813300 64.1298015753824300, -161.2353164034292400 64.1287273154133600, -161.2365070356711400 64.1276747363001000, -161.2378015243208700 64.1266458390343200, -161.2384585591151700 64.1261705931983700, -161.2379580711080700 64.1255244114225300, -161.2372085815108000 64.1243968989977600, -161.2365724100886300 64.1232561719348300, -161.2360425834984000 64.1220839425199600, -161.2357031721636200 64.1212303447047100, -161.2353041969311000 64.1200797853538800, -161.2350194364977700 64.1189227634748100, -161.2348494079737700 64.1177614410377100, -161.2347944162293000 64.1165979926033200, -161.2348239823408800 64.1157896963374600, -161.2349090734949200 64.1149821537034700, -161.2350496087524000 64.1141760913536100, -161.2352454568123500 64.1133722386379600, -161.2356939406228400 64.1117614242504000, -161.2359186946919700 64.1110364240917600, -161.2361884346485000 64.1103143620182400, -161.2367886538732500 64.1090199381197300, -161.2375333455874000 64.1077399447427200, -161.2379787060524200 64.1070461249787500, -161.2386567975731300 64.1060622729555700, -161.2394202419505700 64.1050904529620900, -161.2403624733494500 64.1040315381250100, -161.2414060088801800 64.1029909532699100, -161.2425489788522600 64.1019705501008700, -161.2437893391066800 64.1009721479463200, -161.2446231671254400 64.1003334530265100, -161.2447961625128700 64.1002018012721900, -161.2461907070354800 64.0991985373826800, -161.2476838775089000 64.0982228188281000, -161.2492728257802500 64.0972764991112200, -161.2509545229328600 64.0963613759767600, -161.2527257655816000 64.0954791896129400, -161.2545831794701300 64.0946316154567600, -161.2565232275648800 64.0938202641938800, -161.2585422181488200 64.0930466763630900, -161.2606363102175000 64.0923123214565200, -161.2628015197742900 64.0916185943227100, -161.2650337315214700 64.0909668124684800, -161.2673286997596400 64.0903582142602200, -161.2697396805418000 64.0897808620971400, -161.2722071099701000 64.0892511704052500, -161.2744005996079600 64.0888065581762000, -161.2768003874279000 64.0883469776309800, -161.2792426511274200 64.0879324845965400, -161.2817838672316700 64.0875554213456600, -161.2843601910699400 64.0872271732954500, -161.2869667312296300 64.0869483627767500, -161.2895985378422000 64.0867195203896400, -161.2918581906030000 64.0865642272573300, -161.2941294563093200 64.0864457730540400, -161.2979038632726400 64.0862799326728200, -161.3009760777837300 64.0861788102039900)),POLYGON ((-150.1300279614212600 70.5035206906274500, -150.1325559997595500 70.5034996869610500, -150.1360676733844000 70.5035252456936000, -150.1395726893281300 70.5036018742271700, -150.1430644016008000 70.5037294259722700, -150.1465361893936000 70.5039076599106200, -150.1499814678704200 70.5041362378971100, -150.1533937052552700 70.5044147264584900, -150.1567664291273700 70.5047425976927700, -150.1600932417097200 70.5051192301684200, -150.1633678306608300 70.5055439089243200, -150.1665839825647000 70.5060158281680200, -150.1697355937226300 70.5065340939733000, -150.1728166800457000 70.5070977233812600, -150.1758213914440300 70.5077056461986400, -150.1787440208198600 70.5083567094945900, -150.1815790148596000 70.5090496784999300, -150.1843209848255500 70.5097832375064400, -150.1870688975115800 70.5105878672363200, -150.1897048589920300 70.5114332587379500, -150.1935099013608400 70.5127100685149300, -150.1958400708625400 70.5135253282313700, -150.1980660637977700 70.5143724374381100, -150.2002686824537000 70.5152866189823200, -150.2023499438947700 70.5162319773239700, -150.2043058785134500 70.5172067174161200, -150.2061327523246300 70.5182089884540900, -150.2078270759587600 70.5192368847744400, -150.2086465840725700 70.5198077024635400, -150.2093889636297500 70.5202829267157700, -150.2103327526543800 70.5208478853217000, -150.2118914108599000 70.5218994553956100, -150.2133112856872700 70.5229727009294700, -150.2145896557879600 70.5240655822608500, -150.2157240687107800 70.5251760210566100, -150.2167123444990600 70.5263019066077800, -150.2169371174539700 70.5266169535096300, -150.2178234451958200 70.5274910648607800, -150.2209726866401500 70.5277477925266700, -150.2243492919862100 70.5280756628616200, -150.2276799338818000 70.5284522926392600, -150.2309582918916200 70.5288769695965200, -150.2341781463043700 70.5293488879409000, -150.2373333862267700 70.5298671519475400, -150.2404180203753000 70.5304307786575500, -150.2434261923648600 70.5310386987769700, -150.2463521870038000 70.5316897593749600, -150.2491904464819000 70.5323827256822800, -150.2519355748668500 70.5331162819908900, -150.2541674394757000 70.5337633478002900, -150.2563267935466600 70.5344372502789300, -150.2584107331687700 70.5351370838094500, -150.2604164542559300 70.5358619103989200, -150.2615277150320000 70.5362785438197800, -150.2629954904495000 70.5368444682976000, -150.2652005552613700 70.5377586462445800, -150.2672841288594200 70.5387040009889000, -150.2692422362402000 70.5396787383831500, -150.2710711407205500 70.5406810049244700, -150.2727673475350200 70.5417088985468600, -150.2743276155270000 70.5427604659228100, -150.2757489571486400 70.5438337078593900, -150.2770286483534200 70.5449265855934900, -150.2781642348915000 70.5460370216912300, -150.2791535332089600 70.5471629045444500, -150.2799946376423700 70.5483020937666700, -150.2806859240161500 70.5494524228910800, -150.2811969457824000 70.5505395242796600, -150.2815741124553000 70.5516326808036000, -150.2818167711270700 70.5527300641412000, -150.2819244946197000 70.5538298351788200, -150.2819559277238600 70.5546908218240100, -150.2819618263771400 70.5549821410130600, -150.2818896782660000 70.5561550638051900, -150.2816640032911000 70.5573258219291700, -150.2812852025500400 70.5584921859656900, -150.2807539721180800 70.5596519345891700, -150.2800712976522300 70.5608028581654000, -150.2792384525925000 70.5619427650466400, -150.2782570008598700 70.5630694833700400, -150.2771287860646000 70.5641808655545300, -150.2758559360026000 70.5652747936968000, -150.2744408527631200 70.5663491813696700, -150.2728862127285000 70.5674019817161600, -150.2725117476190300 70.5676298609294000, -150.2720028842256900 70.5680161782041200, -150.2704481164873600 70.5690689785506000, -150.2687567228444400 70.5700981824852000, -150.2669319093800800 70.5711018285865600, -150.2649771375848000 70.5720780012987900, -150.2628961162627400 70.5730248381258300, -150.2606928006322300 70.5739405341283800, -150.2592381598132000 70.5745027614933000, -150.2577373846725400 70.5750514054980200, -150.2564875428657800 70.5754958081850500, -150.2548144639163500 70.5760731495562400, -150.2530902917835000 70.5766336106526600, -150.2513165607106800 70.5771766914512000, -150.2494948499073600 70.5777019054186800, -150.2467472366956000 70.5784369797828500, -150.2439056892961000 70.5791314272735800, -150.2409756243255900 70.5797839240888700, -150.2379626301712000 70.5803932237683400, -150.2348724535009000 70.5809581607905400, -150.2317109911692800 70.5814776577677200, -150.2298469618677600 70.5817434712842600, -150.2284850114740800 70.5819551869823300, -150.2266843061357800 70.5822556558739000, -150.2234574684873400 70.5827287190551800, -150.2201715372865700 70.5831544464206200, -150.2168327889020500 70.5835320231843800, -150.2134475977284200 70.5838607280902000, -150.2100224325891700 70.5841399334112800, -150.2065638351528500 70.5843691049502700, -150.2031776727114000 70.5845434322336600, -150.1997722962544500 70.5846697977730200, -150.1963538499501900 70.5847479740398300, -150.1929285013492300 70.5847778198405500, -150.1924350919059300 70.5847786103446400, -150.1900511528384000 70.5849729313557600, -150.1865924133092000 70.5852021028948100, -150.1834443751577600 70.5853657615207300, -150.1802793524101700 70.5854879676956000, -150.1771022814451200 70.5855685307631100, -150.1739181184264000 70.5856073257175500, -150.1689114684894500 70.5856353620823700, -150.1675559995097400 70.5856391482281500, -150.1640300644359000 70.5856135211471400, -150.1605108679821400 70.5855366911654300, -150.1570051352787500 70.5854088030738500, -150.1535195662749200 70.5852301023873600, -150.1500608222491200 70.5850009308483100, -150.1466355105203500 70.5847217255272900, -150.1432501754552000 70.5843930206214600, -150.1399112840784700 70.5840154438577100, -150.1366241621753000 70.5836005443297300, -150.1358622106724600 70.5835320231843800, -150.1325234622879300 70.5831544464206200, -150.1292375310871700 70.5827287190551800, -150.1260106934387300 70.5822556558739000, -150.1228491096986200 70.5817361588966600, -150.1197588143178000 70.5811712209751400, -150.1167457032515800 70.5805619221949900, -150.1138155258658000 70.5799094253797500, -150.1127975796445600 70.5796606585126400, -150.1120950904160600 70.5795322254319300, -150.1090822239654300 70.5789229266517900, -150.1061522840006700 70.5782704298365500, -150.1033108571103300 70.5775759814464400, -150.1005633617097300 70.5768409079815900, -150.0975786134622200 70.5759632470063100, -150.0947277167107400 70.5750376557632500, -150.0909778864203000 70.5737584717761000, -150.0888799470518800 70.5730149905494400, -150.0868683866666800 70.5722455387007100, -150.0846652544978800 70.5713298426981600, -150.0825844085436000 70.5703830049717500, -150.0806297995256000 70.5694068322595700, -150.0788051389459700 70.5684031861581500, -150.0771138864966500 70.5673739822235600, -150.0755484456042600 70.5663120816373000, -150.0746475911134000 70.5657629852735800, -150.0730930769839000 70.5647101849271500, -150.0716824813614000 70.5636261879982400, -150.0716207258158200 70.5635864766346700, -150.0701368426411500 70.5629110228255200, -150.0681829539801000 70.5619348492139700, -150.0663589651940700 70.5609312031126000, -150.0646683359749000 70.5599019982786300, -150.0631142706070600 70.5588491970328800, -150.0616997107730000 70.5577748084606900, -150.0604273301571300 70.5566808803184200, -150.0592995317479700 70.5555694972345600, -150.0583184415428000 70.5544427780118300, -150.0574859040512000 70.5533028702313300, -150.0568034804962000 70.5521519457557200, -150.0562724443178000 70.5509921962329300, -150.0558937820723600 70.5498258321964600, -150.0558163009814600 70.5494415132153000, -150.0549773594175600 70.5483028779755200, -150.0542951022371500 70.5471519526005900, -150.0537641964604600 70.5459922030777900, -150.0533856268451700 70.5448258372426300, -150.0531600876679000 70.5436550782193300, -150.0530942932669800 70.5425848256292600, -150.0529804813641000 70.5424869074448700, -150.0518534698617300 70.5413755225623600, -150.0508730640406400 70.5402488024403200, -150.0500411057124400 70.5391088928611800, -150.0493591569994600 70.5379579665869300, -150.0488284895431300 70.5367982161648100, -150.0484500890003700 70.5356318494303900, -150.0482246496478400 70.5344610886084000, -150.0481525743817600 70.5332881631183000, -150.0481756608780300 70.5326794003341300, -150.0483513767146300 70.5302344755406800, -150.0484828054371000 70.5292144006241400, -150.0487302152272000 70.5281967250988400, -150.0490932310677300 70.5271829148596800, -150.0495713142647000 70.5261744331036800, -150.0502618011411800 70.5250241003819800, -150.0511019352061000 70.5238849075624900, -150.0520900922839000 70.5227590211120000, -150.0532243694091000 70.5216485814169700, -150.0545025866250300 70.5205557000855400, -150.0559222914805300 70.5194824545516800, -150.0574807635264000 70.5184308844777700, -150.0591750197113500 70.5174029872581000, -150.0608430022027700 70.5164840599914600, -150.0626194825031000 70.5155880897186200, -150.0645016160567000 70.5147165054623900, -150.0661221629074800 70.5140317103951600, -150.0664893686894000 70.5138778660707400, -150.0675728628972600 70.5134319165497900, -150.0683267375888500 70.5131224355520200, -150.0706463715328000 70.5122411673960400, -150.0730787390925000 70.5113944844679300, -150.0756192078601100 70.5105839956549400, -150.0782629439796400 70.5098112378983600, -150.0810049175428800 70.5090776788918000, -150.0838399151799000 70.5083847098865100, -150.0867625490523700 70.5077336465905700, -150.0897672640479600 70.5071257237731900, -150.0928483548676400 70.5065620952645400, -150.0959999705222000 70.5060438285598800, -150.0992161269227000 70.5055719093162500, -150.1024907203704000 70.5051472305602800, -150.1058175374493500 70.5047705980846900, -150.1091902658180900 70.5044427268504100, -150.1126025076995300 70.5041642382890400, -150.1160477915723000 70.5039356603025500, -150.1188580821347500 70.5037895681341000, -150.1195196450155700 70.5037589408225400, -150.1216821566062300 70.5036753983010300, -150.1230113608855600 70.5036319691401400, -150.1245165705832400 70.5035938270934800, -150.1265163507489700 70.5035549961662000, -150.1273578301996800 70.5035447924582900, -150.1298825203620000 70.5035216223250800, -150.1300279614212600 70.5035206906274500)),MULTIPOLYGON (((-150.0812843953585200 60.9414846726795640, -150.0810952985091800 60.9414843327358000, -150.0803582465358000 60.9417724179627950, -150.0784116621684300 60.9424674733952540, -150.0764045255483800 60.9431205331861200, -150.0743406605929800 60.9437303508750600, -150.0722240018362000 60.9442957636386500, -150.0710918785873000 60.9445654109650260, -150.0700615181245300 60.9448266757105440, -150.0689746703447400 60.9451287606838150, -150.0668091963872800 60.9456486893356000, -150.0645990917746200 60.9461221419233540, -150.0623485716292600 60.9465482155278000, -150.0600590272023000 60.9469140129713800, -150.0584493990205300 60.9472876830801600, -150.0562391810933000 60.9477611356679200, -150.0539885449353800 60.9481872092723600, -150.0517017848095000 60.9485650900069800, -150.0493832615282800 60.9488940575147900, -150.0470373979575200 60.9491734849684100, -150.0446686718217000 60.9494028372711800, -150.0424684444631000 60.9495695472968460, -150.0402561940680600 60.9496930502941150, -150.0396346609108500 60.9497154676947160, -150.0393551156460300 60.9497403123655800, -150.0370097215214000 60.9500344815061800, -150.0346409315337400 60.9502638338089500, -150.0324110850035300 60.9504308909728800, -150.0322545283238000 60.9504478368982060, -150.0311060347157000 60.9506160505903300, -150.0287600452398600 60.9508954771446300, -150.0263911905010200 60.9511248303467140, -150.0241259655408600 60.9512957878703800, -150.0218481105018800 60.9514209537140900, -150.0159516038834000 60.9516648885238500, -150.0156083254638300 60.9517121883668550, -150.0152551688909000 60.9518104986556200, -150.0143465361636900 60.9520576566355900, -150.0134849739523600 60.9522779149938300, -150.0122306840987700 60.9526287333294500, -150.0111828704930600 60.9528746322585000, -150.0100670582481000 60.9531574924243960, -150.0090643303545300 60.9534347300288460, -150.0068982916228300 60.9539546586806300, -150.0046876114440700 60.9544281103690650, -150.0024365049407300 60.9548541830741300, -150.0001492663755000 60.9552320638087500, -149.9999999996002800 60.9552532383463000, -149.9999999996002800 59.9999999998001950, -151.7783878654076400 59.9999999998001950, -151.7783784396132800 60.0000626573657900, -151.7781361523615300 60.0011167365482300, -151.7778515744905400 60.0020347132314700, -151.7778227179440500 60.0021667148220700, -151.7778126356445800 60.0023359843182800, -151.7775591293503200 60.0035039230676260, -151.7772041129794000 60.0046652122298400, -151.7770081749872600 60.0051932977325460, -151.7753755547380200 60.0093609485489900, -151.7749362350192000 60.0103778254763260, -151.7746361312524400 60.0109621779622000, -151.7745927281718300 60.0119966123538100, -151.7744411546355500 60.0131689766669750, -151.7741875656036500 60.0143369136177400, -151.7738324350188200 60.0154982000819360, -151.7733764274801200 60.0166506255259800, -151.7728204009407300 60.0177919938055300, -151.7721654049095000 60.0189201321584300, -151.7714126768535200 60.0200328912050050, -151.7705636403996400 60.0211281503439400, -151.7696199044350200 60.0222038240473240, -151.7685832568118000 60.0232578627602040, -151.7684753651459500 60.0233180507874500, -151.7679138662319000 60.0244589837951140, -151.7672587388996400 60.0255871212486900, -151.7665058597576000 60.0266998784966300, -151.7659815208304800 60.0273761416956400, -151.7655686142001600 60.0280871169269400, -151.7648156784008000 60.0291998741749350, -151.7642918152150700 60.0298754718755840, -151.7638784912993000 60.0305871135045660, -151.7636730555670400 60.0308907021442340, -151.7633722296446600 60.0316506058908300, -151.7628159530937400 60.0327919714723600, -151.7621606611855300 60.0339201071273000, -151.7614075922865300 60.0350328643752400, -151.7605581718221400 60.0361281217154800, -151.7596140086795300 60.0372037927209000, -151.7585768925095500 60.0382578296352000, -151.7574487910288500 60.0392882215742250, -151.7572739664203700 60.0394366960467200, -151.7563139248477200 60.0405377863897900, -151.7552767034570700 60.0415918215053900, -151.7546247219533200 60.0421804844418700, -151.7542770791238800 60.0425190854874700, -151.7539528843181200 60.0430870927951300, -151.7531996076757300 60.0441998473451100, -151.7523499524883000 60.0452951037860900, -151.7514055285422800 60.0463707738921360, -151.7503681254885600 60.0474248090077940, -151.7492397110438000 60.0484552000475000, -151.7480224282924200 60.0494599828919600, -151.7467185893913500 60.0504372437838500, -151.7453306719729000 60.0513851193278500, -151.7450878226448800 60.0515366245156800, -151.7446088230387300 60.0519319763796500, -151.7433048870109000 60.0529092372715350, -151.7419168652711000 60.0538571119162160, -151.7404473973295000 60.0547737944750700, -151.7397528706984000 60.0551799184185600, -151.7389760012414400 60.0556251556764660, -151.7375769331289300 60.0563963234316100, -151.7361192193264700 60.0571398568189900, -151.7346050370927600 60.0578546415785000, -151.7330366527193000 60.0585396057182950, -151.7312047795769000 60.0592754130299200, -151.7293103720760000 60.0599705449047860, -151.7282983164141400 60.0603089427036140, -151.7275903431198000 60.0609551703448700, -151.7263726017141600 60.0619599513906900, -151.7250682699846300 60.0629372104839400, -151.7236798273621000 60.0638850842293000, -151.7234463022050500 60.0640307177434900, -151.7229599992045600 60.0644319448784360, -151.7216555703482800 60.0654092039716260, -151.7210446752715100 60.0658262241009900, -151.7208958347749200 60.0659440748592000, -151.7196854741053200 60.0669599382505900, -151.7183809463235800 60.0679371973438400, -151.7169922941590000 60.0688850701898800, -151.7167567671111000 60.0690319294799900, -151.7162718742475800 60.0694319326376560, -151.7149672484397300 60.0704091908315260, -151.7135784928531500 60.0713570636776240, -151.7121082469979600 60.0722737444378400, -151.7107131718753400 60.0730731140330360, -151.7092561145779800 60.0738443897068900, -151.7059816785116200 60.0755102363083900, -151.7050030425563400 60.0762431747827460, -151.7045478309176200 60.0765538168052440, -151.7037076195110000 60.0773881007803000, -151.7031193010149000 60.0780377071744740, -151.7020809051096500 60.0790917377935300, -151.7009514114784300 60.0801221243366400, -151.6997329632056600 60.0811269035837650, -151.6984278760456000 60.0821041599790500, -151.6970386294292000 60.0830520310264550, -151.6966943320777300 60.0832666200585100, -151.6962913656539600 60.0835988970715100, -151.6949861804678200 60.0845761534667400, -151.6944499884761500 60.0849379435313150, -151.6942207171124000 60.0851611354780740, -151.6936735147209000 60.0857307219952760, -151.6925437944605000 60.0867611076390600, -151.6913251024714700 60.0877658859869260, -151.6900197527094000 60.0887431414828400, -151.6886302273031200 60.0896910116309200, -151.6871591666621800 60.0906076905924900, -151.6863963626020000 60.0910439166435140, -151.6863260652956500 60.0910925348926500, -151.6850242120977000 60.0920761324076100, -151.6844936219830500 60.0924380393840900, -151.6837123782236500 60.0932307063320650, -151.6833947835423800 60.0935203087153100, -151.6830867243728000 60.0938706737925940, -151.6820478320417700 60.0949247026130140, -151.6815944613153000 60.0953380939778900, -151.6813952327038000 60.0955646700735400, -151.6803562864134600 60.0966186979945860, -151.6797951544228000 60.0971303214072350, -151.6797270388717000 60.0971996978078660, -151.6786916610912500 60.0982576944371100, -151.6775615127535800 60.0992880782822600, -151.6774230153598400 60.0994022220349960, -151.6773712917516800 60.0994555976977300, -151.6764305963948800 60.1005376601849000, -151.6753914945218200 60.1015916872066800, -151.6748102968577000 60.1021215245887700, -151.6747340109658000 60.1021992107250750, -151.6736989092772200 60.1032576839949700, -151.6731393609926800 60.1037677596744400, -151.6730697948351300 60.1038385992719700, -151.6720342857536500 60.1048966804374900, -151.6709039098875000 60.1059270633833200, -151.6696845110313300 60.1069318381339000, -151.6683784040400800 60.1079090918311750, -151.6669880719419400 60.1088569592813000, -151.6655161578443700 60.1097736355449100, -151.6640531533303400 60.1106094276830160, -151.6626977500011400 60.1113221484984000, -151.6625316677022700 60.1114268997316700, -151.6616899859041000 60.1120760807465900, -151.6602994784381600 60.1130239481967100, -151.6588273781809200 60.1139406226616900, -151.6574082956563000 60.1147522167414650, -151.6559252398579000 60.1155348157792000, -151.6452314256897000 60.1209549038458100, -151.6434029951521000 60.1218386676204660, -151.6414929763197700 60.1226783924938700, -151.6396575427613700 60.1234141935102600, -151.6377594525366700 60.1241093199892000, -151.6358023227190000 60.1247624454305800, -151.6337898818975000 60.1253723233740500, -151.6319056906950500 60.1258804915914900, -151.6317353743880000 60.1259562342928600, -151.6316652479528000 60.1259846672586500, -151.6314363228280000 60.1261062187270450, -151.6305408804572300 60.1265949004343840, -151.6293702104668200 60.1271586611433700, -151.6285371495697800 60.1275478922215140, -151.6274616665226600 60.1280369588386100, -151.6266860093518300 60.1283710165092800, -151.6264094084674000 60.1285987842065900, -151.6251024444222500 60.1295760343065800, -151.6237112004115500 60.1305238999580640, -151.6222383195428000 60.1314405726244000, -151.6206040706213400 60.1323691882874400, -151.6188860435560500 60.1332594019998500, -151.6113029690567400 60.1370115651316700, -151.6096874062487800 60.1377784305302040, -151.6080096427308000 60.1385113402262160, -151.6061733278367900 60.1392471394439700, -151.6042743256995500 60.1399422641242700, -151.6032903046038300 60.1402704896913750, -151.6027023710175900 60.1405634789214800, -151.6017571367824000 60.1412700034080100, -151.6003653990439000 60.1422178663614800, -151.5988919956690500 60.1431345390278100, -151.5979775829990200 60.1436645113082000, -151.5970358561198500 60.1441824605521450, -151.5960674499528000 60.1446880360240900, -151.5950730165065000 60.1451808968809600, -151.5942669865321800 60.1455701234625050, -151.5928733044594000 60.1462197019777140, -151.5914344215612700 60.1468443126149740, -151.5904276323293500 60.1472231736106550, -151.5903154014346000 60.1472909150437540, -151.5897408947264800 60.1477657355003400, -151.5884331707542000 60.1487429838017000, -151.5870411173536600 60.1496908458559000, -151.5855673803303000 60.1506075167235960, -151.5842524671775800 60.1513609129758040, -151.5834475667517700 60.1518051546842100, -151.5821802466210500 60.1524808746926850, -151.5808670637639500 60.1531344812713660, -151.5795095659137000 60.1537652010032960, -151.5785041193696000 60.1542011311773300, -151.5779923709511400 60.1544976430518550, -151.5770519013241500 60.1550147945971500, -151.5760848261537600 60.1555196128398960, -151.5750917965491500 60.1560117587357600, -151.5742857674741500 60.1564009862165700, -151.5737678712902000 60.1566423516632650, -151.5735534648205200 60.1567505437026850, -151.5724551147117400 60.1573227499450240, -151.5720178985071700 60.1575344008919600, -151.5710064139148300 60.1584549379450660, -151.5697850725230500 60.1594597064004100, -151.5684768853999200 60.1604369520038060, -151.5670843382715700 60.1613848131586340, -151.5656100778428000 60.1623014831270100, -151.5640538082366200 60.1631869016542300, -151.5624212941074000 60.1640375577871400, -151.5611422153409400 60.1646753848612000, -151.5601226071725600 60.1654369397630260, -151.5587298487035400 60.1663848000185340, -151.5572553652429000 60.1673014690875900, -151.5566096232355000 60.1676685903332200, -151.5564851309840000 60.1677543568781060, -151.5551830538548200 60.1687429303420340, -151.5543364185908200 60.1693005585739800, -151.5537997931259300 60.1697025105624450, -151.5531060704887200 60.1702926789640200, -151.5517974534896600 60.1712699236680900, -151.5504044486064000 60.1722177839236600, -151.5489297034430400 60.1731344520933360, -151.5472135217865700 60.1741062442078500, -151.5462345998468800 60.1746095309051700, -151.5451640217022200 60.1754089121915850, -151.5446682146663300 60.1757419194540800, -151.5444349359235300 60.1759693615968000, -151.5438614607378000 60.1765635193909800, -151.5434232058162500 60.1769621357939850, -151.5432104478039000 60.1772034994419900, -151.5421689294525200 60.1782575156718700, -151.5410360390819200 60.1792878878258100, -151.5408070689910000 60.1794671847628140, -151.5398544126509800 60.1805374931108760, -151.5388127890789200 60.1815915084414400, -151.5376797835951000 60.1826218805953800, -151.5364575464785400 60.1836266454533900, -151.5351483997788000 60.1846038883588200, -151.5337548301213000 60.1855517468156900, -151.5322794887074200 60.1864684131867900, -151.5312222277236000 60.1870779278041800, -151.5301287951077700 60.1876714138047650, -151.5290001666243700 60.1882483378905100, -151.5278373531113200 60.1888081829513340, -151.5271633804856000 60.1891057326435000, -151.5270124238842300 60.1892063568878940, -151.5260234628125300 60.1901218622342100, -151.5257739854810000 60.1903068123095860, -151.5248155536948200 60.1913704692718200, -151.5237735874810600 60.1924244837030100, -151.5226402096779200 60.1934548540583000, -151.5214175705644000 60.1944596180169900, -151.5201079930893700 60.1954368591237900, -151.5187139647776200 60.1963847166813900, -151.5172381368305000 60.1973013812537940, -151.5157179696085700 60.1981662403797500, -151.5148333352901500 60.1986316422365350, -151.5135016452846600 60.1996308483850300, -151.5127400966781000 60.2001327033616460, -151.5115098232197400 60.2011266008120200, -151.5101999795453800 60.2021038419188100, -151.5088056697458400 60.2030516976777800, -151.5073295423245000 60.2039683622501800, -151.5061883044466500 60.2046129495280400, -151.5051214360054200 60.2054088333510400, -151.5048928580189600 60.2055642056236600, -151.5044630243490600 60.2059548243557300, -151.5032399202860600 60.2069595865157800, -151.5019298454859600 60.2079368267232550, -151.5005352874735000 60.2088846815828450, -151.5002479945492800 60.2090630567147400, -151.4997993542567700 60.2094315809027900, -151.4984891805312400 60.2104088202109440, -151.4970945181974300 60.2113566750705300, -151.4956180184567500 60.2122733387436700, -151.4941536577650500 60.2131073709085200, -151.4926215358551600 60.2139107155071540, -151.4898385496093500 60.2153006249239400, -151.4885240879163000 60.2162698045079300, -151.4871291773696000 60.2172176584682000, -151.4856524150269000 60.2181343212419600, -151.4848153143752300 60.2186042143130750, -151.4835015505560700 60.2195757959862600, -151.4821064997151700 60.2205236499465300, -151.4806295880849800 60.2214403127202900, -151.4799893139556600 60.2218069609225500, -151.4798653810824500 60.2218925440057550, -151.4785610133800400 60.2228807874184300, -151.4779026179114700 60.2233280823251700, -151.4777881692885400 60.2234182735345500, -151.4765701976564600 60.2244315423818100, -151.4752594267811000 60.2254087798913250, -151.4738641277273000 60.2263566329523300, -151.4723869543944000 60.2272732948267700, -151.4715129626530700 60.2277710956595900, -151.4701799659326600 60.2287697712080200, -151.4687845247859700 60.2297176242689700, -151.4675358601917600 60.2304924046008500, -151.4674220860604000 60.2305784202579300, -151.4672659097938700 60.2307506179467400, -151.4666803027537300 60.2313983861266700, -151.4658389914762300 60.2322332663522400, -151.4650738320916600 60.2333385088651300, -151.4642192989814200 60.2344337356284400, -151.4632694494255200 60.2355093778555800, -151.4626329344623300 60.2361523859239000, -151.4625774633792000 60.2363319481609100, -151.4621184071387500 60.2374843358334700, -151.4615586601040600 60.2386256681401160, -151.4609339037766000 60.2396477629339400, -151.4608863377342800 60.2397486156061750, -151.4604567324922000 60.2407893326616200, -151.4598969288002000 60.2419306640689460, -151.4592374802255000 60.2430587655496200, -151.4591285174670600 60.2432187522436500, -151.4587681042645800 60.2441233281291500, -151.4582082448146000 60.2452646586371540, -151.4575487287907800 60.2463927601178300, -151.4567908026534000 60.2475054831915600, -151.4561969515280600 60.2482662736696300, -151.4558306666519000 60.2488927557960800, -151.4550638084479600 60.2500011243524800, -151.4549102626984300 60.2502916512388000, -151.4542506459505000 60.2514197518201500, -151.4534926046999000 60.2525324739945060, -151.4527881522514000 60.2534348177626950, -151.4526516531512400 60.2536359322525100, -151.4525045852184000 60.2539197483977200, -151.4517464855118800 60.2550324696728100, -151.4515664367416400 60.2552672286997200, -151.4509282400462000 60.2563390928748960, -151.4508903857826600 60.2564168986210100, -151.4504566490550700 60.2574843093534600, -151.4499710268413800 60.2584738963532800, -151.4499472064983600 60.2588592711385300, -151.4497888997379000 60.2599565582486300, -151.4495405060894500 60.2610497165712200, -151.4492024311472600 60.2621369186838900, -151.4487430160773000 60.2632893027591760, -151.4482295598462800 60.2643354229414850, -151.4481988623875600 60.2644329840949800, -151.4481262960916600 60.2650389409943700, -151.4478792505269700 60.2661188433100400, -151.4475446631556400 60.2671929126228750, -151.4470851779386000 60.2683452948995200, -151.4465249056998200 60.2694866227095100, -151.4458649040420500 60.2706147196936400, -151.4451064203250000 60.2717274391700360, -151.4442508880680000 60.2728226605374300, -151.4437946107326800 60.2733238365258900, -151.4434030324240000 60.2740997679899800, -151.4434057744569000 60.2745858344687200, -151.4448471098062300 60.2743076957436300, -151.4470870665148800 60.2739303716893460, -151.4493579814856300 60.2736018961106800, -151.4516555424692700 60.2733228931370500, -151.4539753841566200 60.2730938915698860, -151.4563131025676000 60.2729153266810160, -151.4586642568499400 60.2727875375148900, -151.4610243836683300 60.2727107668884500, -151.4633889999024000 60.2726851604917900, -151.4657536161364500 60.2727107668884500, -151.4681137429548400 60.2727875375148900, -151.4704648972371800 60.2729153266810160, -151.4728026156481600 60.2730938915698860, -151.4751224573355200 60.2733228931370500, -151.4774200183191500 60.2736018961106800, -151.4796909332899000 60.2739303716893460, -151.4819308899985500 60.2743076957436300, -151.4841356328531400 60.2747331515137700, -151.4863009728116200 60.2752059305093440, -151.4884227963749200 60.2757251343075500, -151.4904970700836800 60.2762897790501000, -151.4925198531087200 60.2768987900472000, -151.4944872981502600 60.2775510107705940, -151.4963956658273000 60.2782452028538960, -151.4982413255766900 60.2789800478909700, -151.4999819912758600 60.2797365405090200, -151.5016561808880000 60.2805291903699200, -151.5025006802621600 60.2809629019164400, -151.5041278704048600 60.2817511073278100, -151.5042037021391000 60.2817886828015050, -151.5058228838190000 60.2826267547210360, -151.5074021409960000 60.2835189244588600, -151.5088842534055400 60.2844346366492200, -151.5102845922601000 60.2853815616098250, -151.5116004874725000 60.2863578997972800, -151.5128294299342100 60.2873617941115750, -151.5139690769113400 60.2883913370906160, -151.5150172502458800 60.2894445709102900, -151.5159719507449000 60.2905194927804500, -151.5168313518853400 60.2916140585419950, -151.5175938097065000 60.2927261862645300, -151.5182578646087300 60.2938537616418560, -151.5188222431519600 60.2949946388915240, -151.5192858607538500 60.2961466470501900, -151.5195847144629800 60.2970936142789360, -151.5196449681407400 60.2973083013370700, -151.5198176433695200 60.2980441832924600, -151.5199032939018800 60.2984759972695200, -151.5199837004873600 60.2989977821220000, -151.5200604908989000 60.2996478408751950, -151.5200831286334400 60.2999535456197000, -151.5201316461585200 60.3008181115666300, -151.5201752003252000 60.3016829257264800, -151.5201255037889300 60.3028574322247550, -151.5199726073499300 60.3040297443772600, -151.5197167906973200 60.3051976309659500, -151.5193585304717800 60.3063588679674500, -151.5188984984669000 60.3075112439487950, -151.5183375589311700 60.3086525645642840, -151.5176767703666200 60.3097806561524400, -151.5169173810322700 60.3108933693336000, -151.5160608280447400 60.3119885844057000, -151.5151087328816900 60.3130642149416200, -151.5140629022811000 60.3141182113864150, -151.5129253174494000 60.3151485646545800, -151.5116981403568600 60.3161533124254560, -151.5103837002475300 60.3171305382438160, -151.5089844954380900 60.3180783796136100, -151.5075031870224200 60.3189950306961600, -151.5059425907779200 60.3198787423101500, -151.5043056762659100 60.3207278309247400, -151.5025955596373400 60.3215406768608200, -151.5008154964379800 60.3223157305865240, -151.5005800062622500 60.3224132710556660, -151.4996348205904700 60.3228025156236640, -151.4978410103543000 60.3235100131766440, -151.4959885121600700 60.3241793102270660, -151.4940806310163000 60.3248092124752000, -151.4931129065353700 60.3250894214397100, -151.4912001474688000 60.3257746149066100, -151.4892309649370600 60.3264277232608500, -151.4872061305584600 60.3270375868152100, -151.4851295033239000 60.3276030418469400, -151.4830050438476700 60.3281230082702700, -151.4808368008776300 60.3285964959316060, -151.4786289103958600 60.3290226001129800, -151.4763855830282200 60.3294005096258840, -151.4741110986482500 60.3297295014153860, -151.4718097955855600 60.3300089486541000, -151.4694860643303700 60.3302383180439960, -151.4673743275631400 60.3304018984289300, -151.4652512260632000 60.3305241180936500, -151.4631200576445200 60.3306047854825350, -151.4609841309129000 60.3306437773884450, -151.4576754099921300 60.3306718011627400, -151.4567499995128500 60.3306757132136200, -151.4543811933373800 60.3306500654482000, -151.4520169080538200 60.3305731689166600, -151.4496616546616000 60.3304451720071600, -151.4473199270729500 60.3302663184359200, -151.4449961940191000 60.3300369490460200, -151.4426948891578000 60.3297575018073100, -151.4418688168923700 60.3296380151823000, -151.4418270146050000 60.3304412149901200, -151.4416709453578000 60.3315763788468760, -151.4414182727350600 60.3327072592326800, -151.4410694374046000 60.3338318362702900, -151.4406090204899000 60.3349842077550400, -151.4402210070937800 60.3357730193094400, -151.4402191140208600 60.3450138276260760, -151.4401677096720400 60.3461820784402200, -151.4400140640977400 60.3473481241167100, -151.4397584569871600 60.3485097667124250, -151.4394013577864000 60.3496648190761700, -151.4389407187391600 60.3508171878629600, -151.4385469029172000 60.3516174082168960, -151.4385420807524000 60.3558323642722600, -151.4384898391347500 60.3569974683585400, -151.4383358725024800 60.3581603619112460, -151.4380804587461600 60.3593188649737160, -151.4377240646138600 60.3604708056831800, -151.4372632744805000 60.3616231735706500, -151.4367413178575000 60.3626834194043340, -151.4367158211781800 60.3627663683732300, -151.4366814409956700 60.3631416968319200, -151.4364251665881500 60.3643095735280300, -151.4360662624480400 60.3654708006370100, -151.4356054012682200 60.3666231667258440, -151.4350434508945000 60.3677644783480800, -151.4343814707282500 60.3688925600436600, -151.4336207108271000 60.3700052633323000, -151.4329708382335600 60.3708347053574240, -151.4328258297482300 60.3713037944345960, -151.4323648876294300 60.3724561596241100, -151.4318028365316600 60.3735974694477000, -151.4311407385542000 60.3747255502440200, -151.4303798437547600 60.3758382535326060, -151.4298107320796000 60.3765644893597400, -151.4294227114889000 60.3772255468215900, -151.4286617582335200 60.3783382492109100, -151.4278034398768000 60.3794334534911200, -151.4268493823930400 60.3805090741345200, -151.4262319051782400 60.3811102916067200, -151.4258042667535000 60.3815656084661300, -151.4252679020919700 60.3821760700696500, -151.4242198600584600 60.3832300566218700, -151.4230798713389600 60.3842604008968350, -151.4218500988030000 60.3852651387751960, -151.4205328788892200 60.3862423556003000, -151.4191307144109000 60.3871901879768400, -151.4176462709586000 60.3881068309655100, -151.4160678267687700 60.3889983981575800, -151.4144115354639600 60.3898546957376540, -151.4118285323608600 60.3911324381115800, -151.4101300322751300 60.3919370129827940, -151.4083627943075000 60.3927044980142100, -151.4065121918841000 60.3934402738495900, -151.4045984129863300 60.3941353769461700, -151.4026251052643800 60.3947884799044900, -151.4005960287836700 60.3953983380629300, -151.3985150515283600 60.3959637876986900, -151.3963861395087000 60.3964837505247400, -151.3957209892322500 60.3966286969568400, -151.3950986943492300 60.3967977847900100, -151.3929672750196900 60.3973087184226640, -151.3918493142943800 60.3976027823425740, -151.3897202961547000 60.3981227442693000, -151.3875474009917400 60.3985962283333040, -151.3853347719821200 60.3990223289174000, -151.3830866314428600 60.3994002348330240, -151.3825771322288500 60.3994654140976200, -151.3803632639534300 60.3998833254551640, -151.3781150631596000 60.4002612313707900, -151.3758327996439400 60.4005754868692860, -151.3753072817056600 60.4006578072121000, -151.3730594532311500 60.4010392285775900, -151.3725501761496700 60.4011043898557900, -151.3703361999556300 60.4015223191997300, -151.3680878858472200 60.4019002251153550, -151.3675820010085100 60.4019771108550600, -151.3673224009080500 60.4020604330426100, -151.3652421898751500 60.4026307632991600, -151.3631128425835800 60.4031507252258300, -151.3609396119735000 60.4036242083905700, -151.3596136515487600 60.4038576508099800, -151.3541626771658000 60.4066402836222700, -151.3531713077096600 60.4071344206170700, -151.3521544127959000 60.4076157062998500, -151.3511126723119600 60.4080838187132940, -151.3500169041567700 60.4085503186423700, -151.3497755252202800 60.4094729816928300, -151.3494452662859800 60.4105257496636900, -151.3489837719834600 60.4116781085579100, -151.3486861638353700 60.4122817101328450, -151.3486667951364700 60.4143055813375440, -151.3486073373587100 60.4154425285499300, -151.3484508337389500 60.4165772193632600, -151.3481975513758800 60.4177076294036500, -151.3478479336352000 60.4188317396930760, -151.3473863224208200 60.4199840976880300, -151.3469756029416800 60.4208168959830200, -151.3469586938885800 60.4226087771733660, -151.3468993332376200 60.4237461749460750, -151.3467428242219300 60.4248813163197300, -151.3464894348395300 60.4260121742225350, -151.3461396093554500 60.4271367305756800, -151.3456778812292000 60.4282890858726800, -151.3453861015872800 60.4288805654857700, -151.3453872392296700 60.4290677638662700, -151.3453374896334000 60.4302743518799160, -151.3451840059370900 60.4314466424486340, -151.3449271991309000 60.4326145065542700, -151.3445675476541800 60.4337757219720400, -151.3441057250991000 60.4349280772689800, -151.3435426011101300 60.4360693772000560, -151.3434114125066400 60.4362924684227200, -151.3433547345333400 60.4366768368665800, -151.3431063480794600 60.4377571951384900, -151.3427698811251000 60.4388317168103400, -151.3423079875235800 60.4399840703086400, -151.3420319963795000 60.4405433425013140, -151.3420205345200300 60.4425588113401200, -151.3419642657382600 60.4437087339709400, -151.3418086371588300 60.4448564190885240, -151.3415539221757300 60.4459997730711500, -151.3412005749465500 60.4471367067936300, -151.3407385644331700 60.4482890593926100, -151.3403570522361300 60.4490619637387000, -151.3403620551647000 60.4641457321398550, -151.3403109368002500 60.4653157276387700, -151.3401568928263100 60.4664835206979800, -151.3399002029320000 60.4676469052805000, -151.3395413419593500 60.4688036825439800, -151.3390790247771300 60.4699560315456800, -151.3385714815886000 60.4709835762311060, -151.3384689435868600 60.4716777809049400, -151.3382203448929600 60.4727576454490100, -151.3379693953712600 60.4735581553846400, -151.3379942984980500 60.4736196959922300, -151.3383582514321400 60.4747806119357300, -151.3386192922465000 60.4759482584054800, -151.3387769146228800 60.4771204131765800, -151.3388307840134500 60.4783263590742900, -151.3387590558857000 60.5017459057490300, -151.3387049247924000 60.5029045643942140, -151.3385497332835400 60.5040609999152800, -151.3382937592495500 60.5052130701271300, -151.3379374667406700 60.5063586400392500, -151.3374746180591300 60.5075109827457140, -151.3371589758060600 60.5081492765679060, -151.3371607141955600 60.5091828323219260, -151.3371107163864300 60.5103573019479800, -151.3369568603707800 60.5115295781275800, -151.3366994258378000 60.5126974287434200, -151.3363388939248000 60.5138586306713360, -151.3358759382239500 60.5150109724784800, -151.3354871442163000 60.5157970123223100, -151.3354824569498000 60.5191686264310000, -151.3354297476846900 60.5203328662688000, -151.3352749473809000 60.5214948928750700, -151.3350183357275700 60.5226525325883800, -151.3346603821708800 60.5238036198412600, -151.3341972861758000 60.5249559598497060, -151.3339175241743800 60.5255213914990700, -151.3339368029410800 60.5263802917171460, -151.3339401277346800 60.5266558242069550, -151.3338901047445000 60.5278302911351000, -151.3337361668905600 60.5290025637173700, -151.3334785956606400 60.5301704116352540, -151.3331178703933800 60.5313316108652100, -151.3326546673789600 60.5324839499743900, -151.3320898571611500 60.5336252337176000, -151.3314245054365600 60.5347532884335900, -151.3306598694573800 60.5358659665411700, -151.3303103749238400 60.5363097585885160, -151.3306309463610500 60.5364621792862200, -151.3319520666345300 60.5371202150259360, -151.3330973235826000 60.5374968403069700, -151.3340846811630600 60.5378712442625900, -151.3342364363624300 60.5379178579228800, -151.3353191895289500 60.5381710575483100, -151.3374102391911400 60.5387356744118960, -151.3394493817835000 60.5393446566306500, -151.3414327412280000 60.5399968476764340, -151.3433565457679300 60.5406910073841100, -151.3452171378606000 60.5414258173476600, -151.3463651278483400 60.5419133038559500, -151.3474852712282700 60.5424162730925560, -151.3485767073491400 60.5429343383490850, -151.3496385971435200 60.5434671021251350, -151.3504446433056200 60.5438828650022740, -151.3516254279711000 60.5445116170175800, -151.3527650587604000 60.5451585407341200, -151.3542591339518400 60.5460742115556600, -151.3556707772845000 60.5470210942481800, -151.3569919056518800 60.5480082665682740, -151.3630517174627500 60.5510251556864300, -151.3646289862387000 60.5518399882249100, -151.3661357886357200 60.5526865578384560, -151.3676302109654400 60.5536022277606800, -151.3690421825506600 60.5545491095538200, -151.3703690108211500 60.5555254027751740, -151.3716081668833600 60.5565292512239900, -151.3727572864196000 60.5575587483376100, -151.3738141759834000 60.5586119344932300, -151.3747740277991000 60.5596902522034400, -151.3749460006574000 60.5598352570914900, -151.3760952380048000 60.5608647524064740, -151.3771522354872400 60.5619179385620900, -151.3774429530298300 60.5622425173783100, -151.3777647331558900 60.5625307554900000, -151.3788217854969700 60.5635839416456200, -151.3797845735991500 60.5646588149523950, -151.3799062968381000 60.5648289433011660, -151.3810477280701700 60.5658647608501040, -151.3821048892292300 60.5669179461064000, -151.3830677771561600 60.5679928185138000, -151.3839345527374000 60.5690873348127100, -151.3847035558244200 60.5701994130724900, -151.3853733142270500 60.5713269371884700, -151.3859425437133800 60.5724677640761200, -151.3863346157499000 60.5734336386515800, -151.3863908152838700 60.5735373322821150, -151.3864249517501000 60.5736107313502400, -151.3870727550036000 60.5746599398044050, -151.3872137776936600 60.5749399563139800, -151.3879910023828200 60.5760604180538850, -151.3883524111348300 60.5766687311770500, -151.3889477866110300 60.5774203431743700, -151.3897169884482400 60.5785324196355100, -151.3902116605396800 60.5793649733149100, -151.3906738041527000 60.5799483455397760, -151.3914430662444800 60.5810604211016000, -151.3921130503769300 60.5821879443182100, -151.3926824714188800 60.5833287685079000, -151.3931502366940300 60.5844807245059100, -151.3935154441823800 60.5856416206643200, -151.3936148408522000 60.5860846878580900, -151.3937588124192400 60.5863269472308700, -151.3938475997868800 60.5865048079505750, -151.3939215438441300 60.5866207683338300, -151.3947038191259000 60.5877264263335750, -151.3953739417539700 60.5888539486508650, -151.3959434815064400 60.5899947719412350, -151.3963380599534800 60.5909662915611900, -151.3963916505542000 60.5910651189601000, -151.3964257357590700 60.5911379874282260, -151.3970733915237800 60.5921879504136300, -151.3976429897321600 60.5933287728046800, -151.3981108997981600 60.5944807270040000, -151.3984762215004000 60.5956416213637700, -151.3987382470724000 60.5968092462497900, -151.3988964674979300 60.5979813794371600, -151.3989505698129000 60.5991557915066300, -151.3989520051309000 60.6000031543221700, -151.3993503400461400 60.6008007765346400, -151.3997448789230000 60.6017718716746000, -151.3997981637542000 60.6018701028230600, -151.3998328083374000 60.6019439542501460, -151.4004800612058300 60.6029929567595800, -151.4010498509698300 60.6041337782513100, -151.4015179184171700 60.6052857306519850, -151.4018833624272000 60.6064466223138000, -151.4021454770321200 60.6076142454011800, -151.4023037514169500 60.6087863767899100, -151.4023578789129700 60.6099785477717900, -151.4023536934681400 60.6142319579385600, -151.4027348189567000 60.6149947826831400, -151.4032030446847400 60.6161467332851800, -151.4035686128012200 60.6173076231483500, -151.4036722560697400 60.6177691597189900, -151.4038387061913000 60.6180489666865000, -151.4044087630539400 60.6191897845809500, -151.4048199861534000 60.6202233376369600, -151.4048784726633400 60.6203408871223250, -151.4050756418273800 60.6206690587301300, -151.4055210256747700 60.6211120189046260, -151.4064855323814000 60.6221868814195100, -151.4073537648643300 60.6232813878258400, -151.4081240611764700 60.6243934561931040, -151.4086268199717400 60.6252384097248860, -151.4090797940971800 60.6258093910905700, -151.4098501515632000 60.6269214594578300, -151.4105095048097700 60.6280581647525300, -151.4106555448175000 60.6282874864783700, -151.4114381519491000 60.6293934610394560, -151.4121091424229600 60.6305209752628700, -151.4126794196194800 60.6316617904593040, -151.4131478881644700 60.6328137383633800, -151.4135079011686900 60.6339533943337300, -151.4137682432098300 60.6350995766841800, -151.4138246729702600 60.6354756785597700, -151.4144096594781700 60.6366337931150950, -151.4148782008682600 60.6377857392205300, -151.4152440153989700 60.6389466254864260, -151.4155063962032000 60.6401142422785140, -151.4155225543224000 60.6402806519305950, -151.4156892211805700 60.6403822834157040, -151.4170195810887700 60.6413585622478900, -151.4182620358642500 60.6423623963075900, -151.4194142148940600 60.6433918781327200, -151.4204739193358800 60.6444450498991600, -151.4212981731721200 60.6453629447441360, -151.4217109404075400 60.6456964025669550, -151.4219997954541600 60.6459544702227050, -151.4223913395886100 60.6462162952458900, -151.4237219396158000 60.6471925731787600, -151.4248989390348000 60.6481433499357100, -151.4249667308299400 60.6481932488194400, -151.4257558184762000 60.6487162990180200, -151.4270865219254200 60.6496925769509400, -151.4277387633332200 60.6502331360504200, -151.4291482599841700 60.6511883050962400, -151.4304790650567700 60.6521645821298400, -151.4317219371177000 60.6531684152901700, -151.4328745019566600 60.6541978953166560, -151.4339345625300000 60.6552510643851400, -151.4343728588203500 60.6557389888632800, -151.4345346918225300 60.6559003101512500, -151.4356041727943000 60.6569450669613300, -151.4361522987895200 60.6575546778062200, -151.4369728806938700 60.6583688250613000, -151.4374927436951500 60.6587163204019360, -151.4388238599331700 60.6596925965361600, -151.4400670224751000 60.6606964278979000, -151.4412198571107000 60.6617259061256960, -151.4422801649975800 60.6627790751942400, -151.4432459199632000 60.6638539305145600, -151.4441152774980400 60.6649484297262800, -151.4448865720576000 60.6660604899996660, -151.4451569019694300 60.6665142258509040, -151.4455635466203500 60.6669180799055400, -151.4458773560551200 60.6672672938506140, -151.4461726178719800 60.6675309148199060, -151.4472331164151600 60.6685840820897500, -151.4481990458492600 60.6696589374100800, -151.4490685598661000 60.6707534348232100, -151.4498399938206300 60.6718654950966000, -151.4502179168233600 60.6724997041980600, -151.4507945135559300 60.6732254373041540, -151.4515660068657000 60.6743374966781600, -151.4521442124854000 60.6753077347642000, -151.4522475095149300 60.6754573954424900, -151.4525206021440300 60.6757814400614850, -151.4532921575070400 60.6768934985361740, -151.4535627374303600 60.6773474996874140, -151.4539692588741700 60.6777510947372900, -151.4549354644001400 60.6788259473596550, -151.4558052257305600 60.6799204438734140, -151.4565768800189600 60.6810325023481600, -151.4572483633212700 60.6821604716284900, -151.4574762713128300 60.6824484462388800, -151.4582479867551700 60.6835605038142500, -151.4589201085761000 60.6846880081450900, -151.4594913480472400 60.6858288143483800, -151.4598933261161000 60.6868155882688140, -151.4599378245709100 60.6868974085886100, -151.4599736508632800 60.6869730739482500, -151.4606056872026700 60.6880320634290340, -151.4607525455934600 60.6882589713744700, -151.4615354198237500 60.6893655089111800, -151.4622076630531600 60.6904930123427000, -151.4627790068456600 60.6916338176466200, -151.4632196800441800 60.6927088366435300, -151.4632564137524800 60.6927809469831900, -151.4633817729504400 60.6929887848046400, -151.4642449098746500 60.6940874577700240, -151.4650169050061400 60.6951995126474340, -151.4656892705433800 60.6963270151796340, -151.4662607177578800 60.6974678195842300, -151.4667301476781300 60.6986197548978340, -151.4670966582841300 60.6997806294725140, -151.4672367753568700 60.7004029711203000, -151.4673071796825600 60.7005210179306700, -151.4678787015408300 60.7016618214359500, -151.4683481935143000 60.7028137558502300, -151.4687147517843500 60.7039746304249100, -151.4689776676851800 60.7051422355257840, -151.4691364286032600 60.7063143498274400, -151.4691907305677300 60.7075035476506740, -151.4691840324171300 60.7199903581685600, -151.4691317485313400 60.7211573652202800, -151.4689762422597400 60.7223221635370600, -151.4687177959894800 60.7234825659676860, -151.4683568845625500 60.7246363898575500, -151.4678909152335000 60.7257886965911100, -151.4673227298600600 60.7269299488581300, -151.4666533986354000 60.7280579729971350, -151.4658841860063500 60.7291706214271000, -151.4650165470759500 60.7302657726473300, -151.4640521249056000 60.7313413411300200, -151.4629927487163500 60.7323952773202200, -151.4618404257949700 60.7334255730318100, -151.4605973459907000 60.7344302641454300, -151.4592658682252000 60.7354074360044400, -151.4578485240900800 60.7363552261128350, -151.4563480079541800 60.7372718268334200, -151.4550609557984400 60.7379970698089550, -151.4537218149098000 60.7386993557906860, -151.4512499122536200 60.7399500798324000, -151.4492263252347000 60.7409224043455540, -151.4471029422469700 60.7418423460474600, -151.4452322876399300 60.7425780904065960, -151.4432977712751000 60.7432731629261900, -151.4413030785741800 60.7439262389048600, -151.4406509909504500 60.7441201201475000, -151.4402620530512700 60.7442730849350000, -151.4383274350630600 60.7449681574545400, -151.4371127324666000 60.7453658376633140, -151.4346425673006000 60.7466190096596400, -151.4336315503557300 60.7471185695663960, -151.4325941931674600 60.7476050290488840, -151.4315312026028800 60.7480780544586900, -151.4304433062136000 60.7485373238384900, -151.4285722630994300 60.7492730672982500, -151.4266373438383000 60.7499681398178400, -151.4246422356506200 60.7506212139978740, -151.4226615238102300 60.7512100046380400, -151.4225914369452300 60.7512329877122850, -151.4215559521454400 60.7516071335624000, -151.4195607423343700 60.7522602086417600, -151.4186113946001600 60.7525423997120100, -151.4185195180613000 60.7525740603446700, -151.4165855880544000 60.7532731285521100, -151.4145902748213000 60.7539262027321460, -151.4125385686999400 60.7545360348102000, -151.4104343808419600 60.7551014601643260, -151.4094809888565300 60.7553317360708400, -151.4092599094172400 60.7553912514051700, -151.4071570615491300 60.7559624567020900, -151.4050043462735300 60.7564823970450300, -151.4028072629448000 60.7569558604246800, -151.4005700042023000 60.7573819430223240, -151.3982957509481000 60.7577553469317900, -151.3966445525040600 60.7581493902822000, -151.3956401203952000 60.7583658301190300, -151.3953795984896500 60.7584288609032800, -151.3932281359696800 60.7589553878809200, -151.3910308844677000 60.7594288503611900, -151.3887934521560500 60.7598549329588300, -151.3871623535597500 60.7601135851738800, -151.3865227593178700 60.7602437989122560, -151.3850073423149600 60.7606213819712500, -151.3828099765991000 60.7610948444515800, -151.3805724291742400 60.7615209270492200, -151.3782989673234500 60.7618988167770340, -151.3759939275776700 60.7622277914794600, -151.3736617085210000 60.7625072243290000, -151.3719056374352000 60.7626782546977300, -151.3715763066012400 60.7627216245034000, -151.3713091036322000 60.7627524631557200, -151.3692722974785200 60.7630617876714040, -151.3669400172679500 60.7633412205209400, -151.3645850066926600 60.7635705782196850, -151.3624419060690800 60.7637253452485300, -151.3609946792610000 60.7639227842091700, -151.3586623369972000 60.7642022179580300, -151.3563072634694000 60.7644315756567700, -151.3539355129135500 60.7646103195106660, -151.3515500674816000 60.7647382759507200, -151.3491554741458000 60.7648152021599200, -151.3467562969655000 60.7648409497500700, -151.3438697250077800 60.7648409497500700, -151.3437963825969600 60.7648479320864700, -151.3415226851237800 60.7652328032513100, -151.3392174061583300 60.7655617779537350, -151.3368849451840400 60.7658412108032700, -151.3345297511470700 60.7660705685020160, -151.3322901856435300 60.7662315336584100, -151.3310265527332000 60.7664372958445800, -151.3305193755686800 60.7665489071064260, -151.3282455584857200 60.7669267968342400, -151.3263408492507600 60.7671985935403400, -151.3259419135884200 60.7672649922856200, -151.3255198482623600 60.7673549038058240, -151.3238315150124000 60.7676465980121600, -151.3216798132727400 60.7681773527027100, -151.3206616718986200 60.7683966784640000, -151.3204156110915600 60.7684561919996900, -151.3197655667274800 60.7686044488363000, -151.3192159973203800 60.7687739053914700, -151.3192173813770300 60.7715997128565300, -151.3191669968594000 60.7727741366171600, -151.3190119060745600 60.7739463669313400, -151.3187523914097000 60.7751141725810300, -151.3183889375993700 60.7762753304422200, -151.3179222236316800 60.7774276281825200, -151.3173531281443000 60.7785688723556060, -151.3166827240284500 60.7796968884007360, -151.3159122784288700 60.7808095287368250, -151.3150432473479400 60.7819046727624940, -151.3140772783437000 60.7829802331513100, -151.3130162006371200 60.7840341621468950, -151.3118620278103000 60.7850644506639240, -151.3106169515110700 60.7860691354822500, -151.3092833351577700 60.7870463001467000, -151.3078637130399000 60.7879940839598600, -151.3063607849222500 60.7889106783851500, -151.3053978942973600 60.7894572800295240, -151.3045920181071200 60.7899025262806300, -151.3032162055634200 60.7906349143698300, -151.3017859435664100 60.7913419568658900, -151.3003031818463500 60.7920226887961200, -151.2987699438777700 60.7926761784629000, -151.2968963278032700 60.7934119183254300, -151.2949587483475400 60.7941069872477440, -151.2929608972276000 60.7947600587297640, -151.2909065803743500 60.7953698872106000, -151.2887997152346300 60.7959353089673900, -151.2875774907086000 60.7962161267728900, -151.2866439683444400 60.7964539452934200, -151.2854673763183400 60.7967683060125500, -151.2845355536728400 60.7969930798668100, -151.2842955228201000 60.7970576125188700, -151.2821900588241000 60.7976293025503200, -151.2800345475562800 60.7981492401953600, -151.2793332760098500 60.7983001644211100, -151.2788269460067200 60.7984225135882100, -151.2766741327050400 60.7989552377940200, -151.2756716242460300 60.7991709878508600, -151.2754119252201400 60.7992337398452500, -151.2732577179692700 60.7997602353466400, -151.2710576713744000 60.8002336960283300, -151.2688173945071200 60.8006597759279540, -151.2669714487733200 60.8009662298077300, -151.2665433355065000 60.8010477776329000, -151.2661142743542400 60.8011506924505600, -151.2638739327357800 60.8015767723502450, -151.2615976326246000 60.8019546602794200, -151.2592897150482800 60.8022836340825300, -151.2569545839868400 60.8025630651334300, -151.2549031908295700 60.8027611255255900, -151.2545974546088000 60.8027977639057440, -151.2525950727044200 60.8030886298364500, -151.2507423155054200 60.8033103334051900, -151.2494208813685600 60.8035946819490500, -151.2471803688789000 60.8040207627480500, -151.2448994813259700 60.8043782189796500, -151.2444777091789000 60.8044575184997600, -151.2422368756312800 60.8048817592858200, -151.2399603407970700 60.8052596472149960, -151.2395351521255400 60.8053048084701700, -151.2372923652504300 60.8057157563770800, -151.2350157710609400 60.8060936434069960, -151.2327075558090100 60.8064226163107260, -151.2303721225753700 60.8067020482609450, -151.2280139284000600 60.8069314050603700, -151.2256388647418000 60.8071101588068360, -151.2232500864223300 60.8072381188441700, -151.2208521485078200 60.8073150405567160, -151.2184496195542600 60.8073407773550200, -151.2169131314358300 60.8073407773550200, -151.2152894333606200 60.8075350453061700, -151.2129311771320800 60.8077644021055300, -151.2105546592701000 60.8079432457842000, -151.2081644132570400 60.8080712363985200, -151.2057650004544000 60.8081481275341400, -151.2033610002099500 60.8081737744002450, -151.2032613724143700 60.8081737303334650, -151.1868240676765500 60.8081574696915400, -151.1852897325351000 60.8083410420055660, -151.1829314178506300 60.8085703979056100, -151.1805918693192700 60.8087468520856200, -151.1782389478691200 60.8088740243168200, -151.1758770044202000 60.8089516789768800, -151.1735104069796600 60.8089796721741900, -151.1637976542383200 60.8089917608611500, -151.1620400534057200 60.8092020385432760, -151.1596816748693800 60.8094313953427000, -151.1573064169575400 60.8096101499884900, -151.1549174443845200 60.8097381100258200, -151.1525193095184800 60.8098150308390500, -151.1501165854120600 60.8098407676373540, -151.1485531796854800 60.8098407676373540, -151.1469293628997500 60.8100350346891800, -151.1445709232095000 60.8102643914885450, -151.1421942200871600 60.8104432351672100, -151.1398037870151300 60.8105712248821500, -151.1374041871535000 60.8106481169170900, -151.1349999998501000 60.8106737637832000, -151.1348626095217800 60.8106736801462940, -151.1251836263232600 60.8106611076240700, -151.1236796630859700 60.8108410322878400, -151.1213211640404700 60.8110703881879400, -151.1189452649120000 60.8112491770079940, -151.1165556448271200 60.8113771478371600, -151.1159048234488000 60.8113963051953900, -151.1135689738290500 60.8116740284337400, -151.1112104127303400 60.8119033852331100, -151.1088335881995000 60.8120822289117800, -151.1064430328196700 60.8122102186267200, -151.1040433106502400 60.8122871106616600, -151.1016390001397300 60.8123127575278200, -151.1015015954222600 60.8123126738908600, -151.0922504502980200 60.8123006571496500, -151.0902912934084300 60.8125350249714500, -151.0879333042785500 60.8127673333457900, -151.0878432155919000 60.8127802278253300, -151.0856027759473400 60.8132157281233960, -151.0833256484599000 60.8135936151532500, -151.0816830025685000 60.8138276745076500, -151.0810198038208500 60.8139378954176100, -151.0805202645985000 60.8140487242692400, -151.0782422620707200 60.8144232262509400, -151.0778258885539000 60.8145025266703100, -151.0776165074958000 60.8145637911860600, -151.0774597070997600 60.8147301675632550, -151.0763975807837000 60.8157840920622450, -151.0752422676165200 60.8168143760826200, -151.0739959592461000 60.8178190555050800, -151.0726610235873300 60.8187962165721960, -151.0712399976277700 60.8197439967880800, -151.0697355820314600 60.8206605876160900, -151.0683249567313500 60.8214507931196500, -151.0668523366660000 60.8222135684015400, -151.0493807387300600 60.8309136593379660, -151.0474745087415400 60.8318178080454600, -151.0454811542318500 60.8326760472618300, -151.0436052008193400 60.8334117835270260, -151.0416652030866400 60.8341068488520600, -151.0396648572473500 60.8347599167368000, -151.0390584318011500 60.8349397100996040, -151.0386349761232300 60.8351057780092800, -151.0366948767671100 60.8358008424349900, -151.0346944257071600 60.8364539103197300, -151.0326374360688000 60.8370637361026100, -151.0305278288961700 60.8376291560607600, -151.0283636148889000 60.8381362387964400, -151.0282406667733000 60.8381774313434100, -151.0264321031590000 60.8389530264610700, -151.0259392791743700 60.8391526975390200, -151.0249637251957300 60.8395369274872450, -151.0246842761583800 60.8397159420371740, -151.0231789243678400 60.8406325301671700, -151.0220177467216200 60.8412870639468800, -151.0208139987670000 60.8419230294243200, -151.0183141406850200 60.8432017673477500, -151.0172500565448400 60.8437312315111850, -151.0161564575544400 60.8442461851134340, -151.0150341737880500 60.8447462369493340, -151.0138840578029800 60.8452310057064100, -151.0120073687450300 60.8459667410722900, -151.0100666101858700 60.8466618045986800, -151.0080604871017700 60.8473032847188600, -151.0071637667943800 60.8476759988483300, -151.0052869347442200 60.8484117333148900, -151.0033460277969000 60.8491067968412800, -151.0013447457634000 60.8497598638267050, -151.0005222069342800 60.8500036160741050, -151.0002583188663000 60.8500942749308800, -150.9983207034376800 60.8508007913235360, -150.9971707322434600 60.8511760343465650, -150.9967083655985500 60.8513811751012100, -150.9956133843501800 60.8518419841203100, -150.9937363076844300 60.8525777185868700, -150.9917951489269400 60.8532727821132650, -150.9897936060900200 60.8539258490986900, -150.9877354940977300 60.8545356730829200, -150.9866142463503700 60.8548360268612200, -150.9845705477925200 60.8558611577663000, -150.9825872243209200 60.8568069747621500, -150.9805088811799000 60.8577029657193400, -150.9786314609731000 60.8584386992865800, -150.9766899469834400 60.8591337628129740, -150.9751645807807600 60.8596313702915400, -150.9739006232151700 60.8601759574545440, -150.9720230582175300 60.8609116910217840, -150.9700813940410700 60.8616067536488000, -150.9687770901905400 60.8620322130162800, -150.9683044946566800 60.8622418314953960, -150.9672084270272600 60.8627029489819600, -150.9653307136415000 60.8634386816498800, -150.9633888965802800 60.8641337442769550, -150.9625059394974800 60.8644217386723800, -150.9623156960125200 60.8644996379479700, -150.9612291845791700 60.8650272252263000, -150.9601094791691000 60.8655256762689900, -150.9589620944251000 60.8660089386616500, -150.9570841876851000 60.8667446713295700, -150.9551421691757300 60.8674397339565900, -150.9533097672319300 60.8680373469460400, -150.9531429699720500 60.8681002985899800, -150.9522148687211700 60.8685089298433000, -150.9503368144923700 60.8692446625112200, -150.9483946448969200 60.8699397242389200, -150.9463920597457300 60.8705927894257600, -150.9456931120474500 60.8707997809851800, -150.9453339812782000 60.8709230807356200, -150.9433963226821000 60.8716337187211700, -150.9413936314109300 60.8722867839080100, -150.9403163119482000 60.8725911405687160, -150.9393392552024400 60.8729103504323900, -150.9383699461161000 60.8732727133651100, -150.9367920523113500 60.8737872280981400, -150.9365146753120000 60.8740619610906600, -150.9353572604291900 60.8750922370171600, -150.9341086848678800 60.8760969101443300, -150.9327713201403000 60.8770740631175600, -150.9313477077305000 60.8780218361388850, -150.9298405536985700 60.8789384197722800, -150.9287910394748700 60.8795311422484800, -150.9277065713012000 60.8801087309332160, -150.9236228650031800 60.8822209443411600, -150.9225044096507400 60.8827827787023350, -150.9213528727368600 60.8833285187961340, -150.9201692300259200 60.8838577005724900, -150.9189544806647200 60.8843698779675700, -150.9170754947382700 60.8851056088368500, -150.9160919197063000 60.8854455651607500, -150.9146641713144300 60.8863828134161600, -150.9131566233794200 60.8872993970496200, -150.9125194213342000 60.8876633131114900, -150.9118255458122600 60.8880525271025000, -150.9103738601655000 60.8888352565419400, -150.9088602858734600 60.8895896537395600, -150.9072871467843700 60.8903145585700800, -150.9056568584772200 60.8910088558740800, -150.9037851102945600 60.8917424598466800, -150.9030332114135400 60.8922437968138300, -150.9015253873867000 60.8931603795479100, -150.9003594595214000 60.8938164574635700, -150.8991506906518200 60.8944538771447700, -150.8979003344328500 60.8950719730931400, -150.8966096903848800 60.8956701031927400, -150.8958046145912700 60.8960313266844100, -150.8939133430263300 60.8968418370811800, -150.8920336250517400 60.8975775670511440, -150.8900897332545700 60.8982726269802000, -150.8880853728416600 60.8989256903683440, -150.8876399170485200 60.8990574941081500, -150.8870904105939400 60.8992725615794940, -150.8851464162740700 60.8999676215086100, -150.8831419488418200 60.9006206839974300, -150.8810808304159500 60.9012305052836500, -150.8789669874364800 60.9017959198458800, -150.8777111192727000 60.9020978645248760, -150.8766768971211000 60.9024676126902000, -150.8746722732068000 60.9031206751790800, -150.8726109929029600 60.9037304964653000, -150.8704969853475600 60.9042959110275300, -150.8683317497104500 60.9048063824086500, -150.8672904642834600 60.9050436064773100, -150.8671848955664500 60.9050749307634760, -150.8670956846181000 60.9051021964093000, -150.8651522065091000 60.9058006009170750, -150.8631462093300700 60.9064509564465200, -150.8622294674159700 60.9068418045057460, -150.8603491603854300 60.9075775335763900, -150.8584046606465300 60.9082725926061240, -150.8577256751997300 60.9084937502864250, -150.8361741975811300 60.9192237315900200, -150.8342410050183300 60.9201397504491500, -150.8324054158772200 60.9209283452669900, -150.8322261279334400 60.9210215168295700, -150.8319055493016400 60.9212372785776200, -150.8311557422436800 60.9216815148900540, -150.8308134809573500 60.9218822975300900, -150.8292235173514000 60.9227659407956140, -150.8275557956634100 60.9236149646589500, -150.8258134887015000 60.9244277485418000, -150.8252675750385400 60.9246610335798660, -150.8250245863155800 60.9247802108380940, -150.8241972244223300 60.9252374333609050, -150.8229415001500800 60.9258853157547800, -150.8216423835891000 60.9265126144656500, -150.8203012938696000 60.9271186433107900, -150.8189196995844300 60.9277027358925800, -150.8170381640799700 60.9284384631645800, -150.8150923935990600 60.9291335203956800, -150.8133464992415000 60.9297018181844100, -150.8131859945379700 60.9297992741172700, -150.8118775025447000 60.9305318924329500, -150.8105155323658800 60.9312410672215500, -150.8030988099620800 60.9349652434513000, -150.8024731408227700 60.9352636906668300, -150.8011332283158000 60.9362409083912550, -150.7997069781944500 60.9371886733187000, -150.7981970317676000 60.9381052506568600, -150.7970397131122400 60.9387557482792200, -150.7958402171522600 60.9393879132216500, -150.7917014570565800 60.9415001374214850, -150.7906308114627600 60.9420315746974700, -150.7895303488464800 60.9425484069834600, -150.7884009100739000 60.9430502376783900, -150.7872433584941800 60.9435366836710840, -150.7853608885941000 60.9442724100437660, -150.7834141522413000 60.9449674654762250, -150.7814068582398800 60.9456205243677700, -150.7793428314065200 60.9462303420567100, -150.7772260071744500 60.9467957548203000, -150.7764437426845300 60.9469852905388050, -150.7763720469323800 60.9470062816146800, -150.7760935979411600 60.9470889490957600, -150.7751666145476000 60.9474394562659540, -150.7731591640641400 60.9480925160568200, -150.7710949780507700 60.9487023328464400, -150.7689779892427900 60.9492677447107100, -150.7668122337975000 60.9497876733624900, -150.7663856313917600 60.9498790489789700, -150.7656947676993300 60.9501756624769100, -150.7638119065941900 60.9509113879502700, -150.7618647646471300 60.9516064424834100, -150.7609003343828800 60.9519201475968100, -150.7598201209018200 60.9524624253007200, -150.7577953305900000 60.9534278951812800, -150.7556714188009200 60.9543416486482100, -150.7537883112815000 60.9550773732222500, -150.7519702553230000 60.9557262646554250, -150.7511887507602000 60.9562958556692800, -150.7497616049141000 60.9572436187980300, -150.7482467976515500 60.9581553191127340, -150.7476183190301800 60.9586517035133400, -150.7462774955100000 60.9596288474933800, -150.7453853545504500 60.9602212525088600, -150.7453200349915800 60.9602815691391700, -150.7443564815663400 60.9613688611840400, -150.7432894800254500 60.9624227649986800, -150.7421288617575200 60.9634530283346400, -150.7408768301016000 60.9644576888712800, -150.7403328472830400 60.9648540515733000, -150.7396286115711300 60.9658651980205400, -150.7387545505820000 60.9669603141672400, -150.7377829868953000 60.9680358475763460, -150.7367157623225500 60.9690897504916600, -150.7355549021369800 60.9701200138276250, -150.7343026078790200 60.9711246734649400, -150.7329612600540800 60.9721018147470200, -150.7315334073408300 60.9730495760771300, -150.7300217620946200 60.9739661489186900, -150.7288988416082000 60.9745972175875860, -150.7277361800806300 60.9752110651385800, -150.7265348935704600 60.9758071007171900, -150.7252961350086000 60.9763847514551600, -150.7244350629278000 60.9767739906272400, -150.7223364976312300 60.9776755717702500, -150.7204520114511300 60.9784112954449700, -150.7185031886711800 60.9791063481794700, -150.7164937434914400 60.9797594043730560, -150.7144275043258400 60.9803692193640360, -150.7123084111042600 60.9809346294296700, -150.7113285448764000 60.9811696294748900, -150.7111219652065000 60.9812248487478400, -150.7090041022575000 60.9817956259674360, -150.7068361353793200 60.9823155519212600, -150.7060689084533500 60.9824797186641400, -150.7056133002136000 60.9825891769490340, -150.7034477282300300 60.9831205494738240, -150.7012350227780400 60.9835939993636200, -150.6989818541292400 60.9840200711694250, -150.6972857291530400 60.9842836085018100, -150.6966937998789400 60.9844032875817000, -150.6951149536921300 60.9847875436103100, -150.6929021331269200 60.9852609935001060, -150.6906488466669000 60.9856870653058540, -150.6890251512896800 60.9859559670942400, -150.6868392006685400 60.9864815371932400, -150.6846262622921400 60.9869549870830400, -150.6823728562223200 60.9873810579894700, -150.6800832803191000 60.9877589378247650, -150.6794991562610200 60.9878417150231940, -150.6794050413096000 60.9878621925861900, -150.6772864400171600 60.9884346020753000, -150.6751180207800200 60.9889545271298060, -150.6729049106331000 60.9894279779189200, -150.6706513291954600 60.9898540488253500, -150.6683615752265000 60.9902319277613300, -150.6679356617014000 60.9902764720815750, -150.6656798256634000 60.9906870449711960, -150.6633900114398400 60.9910649239071740, -150.6610683926921300 60.9913938905156700, -150.6601473367301800 60.9914834584948800, -150.6598859604686700 60.9915356452538600, -150.6590121207127600 60.9917675894028000, -150.6577718890614000 60.9920640293315160, -150.6568463661668300 60.9922983602811540, -150.6556518128808200 60.9926285859405650, -150.6534831076592700 60.9931485118943900, -150.6512697052327000 60.9936219617841860, -150.6490158270188000 60.9940480326906140, -150.6467239695355400 60.9944229744407950, -150.6452410027700400 60.9949392932138600, -150.6432305575441700 60.9955923485081260, -150.6423841839828700 60.9958420164959400, -150.6421344053784700 60.9959274368018200, -150.6401876951060200 60.9966332867967900, -150.6381771428608300 60.9972863429903800, -150.6361097669521600 60.9978961561827200, -150.6339895055112400 60.9984615653490300, -150.6330016748873700 60.9986983442532300, -150.6318571679739000 60.9991062785320000, -150.6298464592466600 60.9997593338262600, -150.6287536102908600 61.0000793521804200, -150.6268028332841000 61.0007722735216500, -150.6261046032448000 61.0009990384749000, -150.6259859511906700 61.0010490920420240, -150.6201286505168000 61.0040342422864800, -150.6190713310770400 61.0045564192433860, -150.6179851200172400 61.0050644327774300, -150.6168708195326600 61.0055579078712100, -150.6157292534023000 61.0060364785007300, -150.6138430881879300 61.0067721994774960, -150.6118925288171200 61.0074672495140360, -150.6098812921878500 61.0081203039089800, -150.6078132112107000 61.0087301171012650, -150.6056922285135000 61.0092955244689400, -150.6035223874481800 61.0098154495234440, -150.6013078248961700 61.0102888985139200, -150.5990527649731000 61.0107149685210300, -150.5968351564173000 61.0110807003140960, -150.5967621323664800 61.0110954473970540, -150.5951626152624700 61.0114814436137750, -150.5929479375972200 61.0119548926042500, -150.5906927598629500 61.0123809626114200, -150.5883953562606600 61.0127329509649600, -150.5879807786899700 61.0128148207474500, -150.5868028232916300 61.0131204373583400, -150.5845880305131700 61.0135938863488150, -150.5823327367663500 61.0140199563559800, -150.5806462723076000 61.0142980618061900, -150.5801752397954400 61.0143538665377600, -150.5800370562651000 61.0143831448663150, -150.5794024379721000 61.0145636774718100, -150.5784740228578500 61.0147985740949800, -150.5772723676256200 61.0151083608622000, -150.5771607752495500 61.0151448940217200, -150.5752068946824200 61.0158282213953400, -150.5731951292518000 61.0164812748909640, -150.5711265050841200 61.0170910871839850, -150.5690049648072500 61.0176564945516600, -150.5668345526724500 61.0181764187067900, -150.5657154534054300 61.0184156068947900, -150.5656442091129200 61.0184327039062300, -150.5649357061179200 61.0185854051923700, -150.5646271837974600 61.0186759786136000, -150.5644119310657300 61.0187459018019900, -150.5640872065593000 61.0188844135848850, -150.5637513835195000 61.0191286910363150, -150.5623214209967400 61.0200764460711900, -150.5608075427338700 61.0209930135168300, -150.5597265711243200 61.0216003328890800, -150.5586087381027500 61.0221917387577800, -150.5543310327509200 61.0243880108980650, -150.5532201802671000 61.0249421200828100, -150.5520769611828000 61.0254805181114650, -150.5509023170882300 61.0260027589202400, -150.5496972174526000 61.0265084126331800, -150.5485878443535000 61.0269488043438740, -150.5449199557913000 61.0283667384342700, -150.5432835341078000 61.0289755084130550, -150.5416015608633000 61.0295543417595350, -150.5398763590067400 61.0301024380771100, -150.5381103144394200 61.0306190383379900, -150.5359878712432400 61.0311844448063400, -150.5338165355046800 61.0317043680622100, -150.5316004477024600 61.0321778161533640, -150.5293438346502000 61.0326038852611500, -150.5270510005032300 61.0329817623984900, -150.5261244793612100 61.0331128736602300, -150.5252533537592400 61.0333172706755800, -150.5231962022429000 61.0339240261729400, -150.5210735378135000 61.0344894326412400, -150.5189019763451000 61.0350093549977800, -150.5166856574171300 61.0354828030889400, -150.5144288096418300 61.0359088712974100, -150.5133725262210800 61.0360829368780740, -150.5120202525326000 61.0363718000186300, -150.5097633409054400 61.0367978691264200, -150.5074702045862400 61.0371757462637560, -150.5051452160788300 61.0375047101742900, -150.5038773365698000 61.0376518041874760, -150.5016604231899500 61.0381217934860300, -150.4994033883556600 61.0385478616945000, -150.4971101243327500 61.0389257388318360, -150.4947850081216000 61.0392547036416900, -150.4933484220919700 61.0394253347114950, -150.4924342468429800 61.0395469536290400, -150.4923081331138200 61.0395705644300500, -150.4917878051630600 61.0396697965239240, -150.4907223135839000 61.0398904361947500, -150.4892595213098300 61.0404111364648540, -150.4872462000520600 61.0410641881617800, -150.4851759750911500 61.0416739986561650, -150.4829476448179300 61.0422639449251960, -150.4828113120923400 61.0423040663796400, -150.4821915568948000 61.0425091828525400, -150.4816559170868700 61.0426669554157100, -150.4811247172319000 61.0428768598792400, -150.4798097078517000 61.0433655397878850, -150.4784651746280700 61.0438349616142660, -150.4770906229338700 61.0442803598508000, -150.4762443069292000 61.0446050717666800, -150.4742914246095300 61.0453001191052600, -150.4722777930856500 61.0459531708022500, -150.4706811547114900 61.0464234074143500, -150.4699381429309000 61.0467157716155950, -150.4682127387269000 61.0473677387302000, -150.4675753199450400 61.0475737257468700, -150.4658212984141700 61.0483723552001150, -150.4640006524081500 61.0491473378793900, -150.4621119268239200 61.0498830543595000, -150.4601587198490000 61.0505781016980800, -150.4588991293912800 61.0509865377985100, -150.4585465807600700 61.0511503457119600, -150.4567257755740600 61.0519253283912350, -150.4548368854139000 61.0526610448714000, -150.4528835075677800 61.0533560913106040, -150.4508708158354600 61.0540113877154340, -150.4455870946686700 61.0567514816955850, -150.4444515063319200 61.0573200618713940, -150.4432818903469200 61.0578722078361700, -150.4420792584509700 61.0584074438485200, -150.4408446502603700 61.0589253058582240, -150.4389553437141000 61.0596610214390700, -150.4370015350927500 61.0603560669789540, -150.4349869484888400 61.0610091177766200, -150.4329154231082600 61.0616189264723060, -150.4307909060754300 61.0621843311420200, -150.4286174497355000 61.0627042525992500, -150.4263991972651000 61.0631776979924440, -150.4241403808738400 61.0636037653015900, -150.4218453065156500 61.0639816415395560, -150.4195183538889000 61.0643106054501460, -150.4171639620471700 61.0645900284071700, -150.4147866231041300 61.0648193780119200, -150.4134364358428000 61.0649201668322800, -150.4133509822620000 61.0649288165117240, -150.4113733029355400 61.0651469344834940, -150.4102049702831300 61.0652636143244100, -150.4088734934169600 61.0654850966599300, -150.4068878676809200 61.0657756927940340, -150.4048812077015500 61.0660301415778100, -150.4028563166656600 61.0662480886783800, -150.4014391883678200 61.0663872030070800, -150.4000651384953000 61.0665133706955300, -150.3976692609276100 61.0666922098776600, -150.3952595436929600 61.0668201959953200, -150.3928405841256200 61.0668970853323000, -150.3904170002443300 61.0669227312990900, -150.3898973072149400 61.0669215531871700, -150.3776639364414800 61.0668655056386460, -150.3753733110294500 61.0668319870066500, -150.3730874969903700 61.0667526883859200, -150.3708103910866500 61.0666277455740700, -150.3685458783895400 61.0664573717103850, -150.3661684162394000 61.0662280221055800, -150.3638139029892000 61.0659485982492900, -150.3617667735177600 61.0656405067040850, -150.3614879054424600 61.0656084917385440, -150.3611568425142500 61.0655653062939340, -150.3593917332418600 61.0653950250604100, -150.3570372811455800 61.0651156021033900, -150.3547102700629000 61.0647866390921760, -150.3524151372487600 61.0644087628541600, -150.3501562633008700 61.0639826955450100, -150.3488028330842500 61.0636938369011100, -150.3479268043785000 61.0635285082341300, -150.3456568399911400 61.0631216990072400, -150.3434385920173800 61.0626482527147200, -150.3412651392747300 61.0621283312575540, -150.3391406267385000 61.0615629265878400, -150.3375030916943000 61.0610858830071400, -150.3359041807333400 61.0605661153339840, -150.3355670491799600 61.0604688680438700, -150.3350715757925700 61.0603503373982300, -150.3329471828661800 61.0597849327285200, -150.3308757761960800 61.0591751240327800, -150.3288613056047300 61.0585220732351700, -150.3269076102979500 61.0578270276952250, -150.3250184125696500 61.0570913112151200, -150.3231973115067000 61.0563163294351060, -150.3220811161505700 61.0557919320521000, -150.3219757632708400 61.0557488428348700, -150.3206886094917000 61.0552909440219200, -150.3193272175770000 61.0547906071008700, -150.3171609441222400 61.0539523220421100, -150.3153400220243700 61.0531773393627760, -150.3135906580823800 61.0523645680704000, -150.3119161815864700 61.0515155585961800, -150.3103197788347000 61.0506319288205100, -150.3092366200739300 61.0499852092500500, -150.3081952950767900 61.0493225438004300, -150.3071967993927600 61.0486445682922750, -150.3062420899005000 61.0479519329354050, -150.3050208726151600 61.0470355129785960, -150.3035526871068000 61.0458698342255300, -150.3023890633046000 61.0448395816814000, -150.3013147664632600 61.0437919254570700, -150.3002306571191000 61.0430134938777100, -150.2995417827270600 61.0424620907529600, -150.2993029066038300 61.0423269523270160, -150.2977880121070500 61.0414103875793900, -150.2963570900076600 61.0404626352424800, -150.2950128589562600 61.0394855020543300, -150.2937578757253600 61.0384808514102100, -150.2929932982021300 61.0378104383011650, -150.2911443091625200 61.0367989689972900, -150.2896296781670700 61.0358824033502860, -150.2881990042805900 61.0349346501140500, -150.2868550079522300 61.0339575169259100, -150.2856002414579600 61.0329528653824700, -150.2847150090903800 61.0321786884957200, -150.2838827692743600 61.0313908068403100, -150.2833588827062400 61.0308518539299600, -150.2825484019871300 61.0302028716652700, -150.2817910118456800 61.0295442306817800, -150.2810719795881500 61.0288755532642400, -150.2803507862597600 61.0281812892351900, -150.2796328277927400 61.0274638568715800, -150.2789590152463300 61.0267364195501600, -150.2783299385757800 61.0259996148903950, -150.2777461463675200 61.0252540913033400, -150.2769697994167000 61.0241414887387900, -150.2762942637692200 61.0230135113645250, -150.2757208155631500 61.0218723067616200, -150.2755175777739700 61.0213403478788340, -150.2754564769348300 61.0211770300959400, -150.2754003214676300 61.0211027263098340, -150.2753632550101800 61.0210397944509850, -150.2751028437212400 61.0207652098466160, -150.2742273078439400 61.0196701017937900, -150.2734510966907400 61.0185574983299260, -150.2727756788544600 61.0174295200563400, -150.2722023313724500 61.0162883145541200, -150.2717321334312000 61.0151360554846200, -150.2715781272287600 61.0146476939359560, -150.2711984361588700 61.0140135253039940, -150.2706805210891300 61.0129825443090100, -150.2702831007844400 61.0125432245902200, -150.2694077897376700 61.0114481156380750, -150.2686317782339500 61.0103355112748900, -150.2679565348661600 61.0092075312026600, -150.2673833348730000 61.0080663248011200, -150.2669132583401700 61.0069140648323000, -150.2665471902006400 61.0057529456419700, -150.2664644678608900 61.0054214195629360, -150.2663227832698000 61.0052932391917000, -150.2654476718725200 61.0041981293402400, -150.2646718366359300 61.0030855231784100, -150.2639867681748000 61.0019655155961100, -150.2637567674608200 61.0016981336619900, -150.2631191292444000 61.0007836400529900, -150.2624046007916500 61.0002635998852700, -150.2611511625960400 60.9992589438452340, -150.2599892403111700 60.9982286850058700, -150.2589210408733000 60.9971747865872100, -150.2583566362497400 60.9965582356741150, -150.2572846731491200 60.9955077906520840, -150.2567670386678700 60.9949265911893100, -150.2563029102510700 60.9944417486877900, -150.2557126141458000 60.9938582469606000, -150.2555314151426600 60.9936787135018800, -150.2550239681815500 60.9932286963473300, -150.2539598138942600 60.9921689505366660, -150.2538763631036400 60.9920971135910000, -150.2525290311898000 60.9911246227032400, -150.2512759518237000 60.9901199657638800, -150.2510943148507200 60.9899588648098100, -150.2505138276510000 60.9895737688144100, -150.2491717441806100 60.9885966293310300, -150.2479187646392500 60.9875919723916700, -150.2467572677337000 60.9865617117536660, -150.2456894586016200 60.9855078115363100, -150.2447173634155600 60.9844322799258400, -150.2438428239871000 60.9833371664771000, -150.2430674959681500 60.9822245576173150, -150.2427246905919600 60.9816514016909000, -150.2420968675763500 60.9808651702914500, -150.2413215998119500 60.9797525614316100, -150.2410752952886200 60.9793407195986100, -150.2403195410139700 60.9788825590828800, -150.2388914265980300 60.9779347986520860, -150.2375498332581600 60.9769576582693840, -150.2373958693238800 60.9768307963042840, -150.2366196069093000 60.9764125117280860, -150.2351700535551000 60.9756051444618950, -150.2336583309671600 60.9746885716203340, -150.2322304045095200 60.9737408102902240, -150.2308889874368000 60.9727636690081450, -150.2296366293269600 60.9717590093708300, -150.2284757088868300 60.9707287469341850, -150.2277060843682600 60.9699687685438800, -150.2271533016835000 60.9696018208674100, -150.2258120590792300 60.9686246795853300, -150.2251327804534400 60.9680955256880000, -150.2236136807267400 60.9671885908808200, -150.2221860897162500 60.9662408295507100, -150.2208464937706400 60.9652606944255800, -150.2178312998745500 60.9637400127913900, -150.2165033087806600 60.9630332499845600, -150.2161728879683800 60.9628629390734300, -150.2155011204803000 60.9625454828877760, -150.2134455166972200 60.9615256660766800, -150.2123391401391600 60.9612302882472360, -150.2102741420380000 60.9606204714576700, -150.2082659028491200 60.9599674134653900, -150.2063182509864700 60.9592723589322500, -150.2044348961535100 60.9585366343582700, -150.2022991654740700 60.9576176549308600, -150.2002592323776500 60.9566601530436860, -150.2000472531781600 60.9566064248467100, -150.1986527212460500 60.9560931619699300, -150.1983502981277400 60.9560650608539160, -150.1960629993079400 60.9556871801193000, -150.1938118343486500 60.9552611065149100, -150.1916010966132800 60.9547876548264750, -150.1894350012243000 60.9542677270740100, -150.1883250210828200 60.9539766650910900, -150.1867396143417000 60.9535971296039100, -150.1866258213245500 60.9535741078588560, -150.1844534675534500 60.9532151893295700, -150.1822024770626500 60.9527891166245000, -150.1799919110978000 60.9523156640367460, -150.1789441532500300 60.9520641515393900, -150.1771645657920500 60.9519308270461100, -150.1747956516979300 60.9517014747433450, -150.1724420665481100 60.9514205616096660, -150.1719232494583600 60.9514035851074140, -150.1695231423791000 60.9512756160768840, -150.1671368174101500 60.9510968308541100, -150.1647679653692600 60.9508674776520250, -150.1624219776920800 60.9505880510977250, -150.1618543660861000 60.9505075186071400, -150.1611631975235000 60.9504706742822600, -150.1587760604667800 60.9502918333015500, -150.1564072677811600 60.9500624809987800, -150.1540613394592200 60.9497830535451600, -150.1517427514268000 60.9494540860372900, -150.1494559265497300 60.9490762053026740, -150.1472052283385800 60.9486501316982900, -150.1467962103767800 60.9485479498280800, -150.1446859152227700 60.9483404870239300, -150.1423401137052500 60.9480610604696300, -150.1400216506786200 60.9477320929617600, -150.1377350173571300 60.9473478450270800, -150.1376682930572600 60.9473415758531000, -150.1352586279832600 60.9472646757242840, -150.1328579525324500 60.9471366878079300, -150.1304710654872600 60.9469578468272200, -150.1281025201152000 60.9467284936251300, -150.1257568373081600 60.9464490670708300, -150.1237189339816000 60.9461410789476760, -150.1234395775744000 60.9461088859164300, -150.1231076827733000 60.9460654288765200, -150.1213528329668300 60.9458954974792850, -150.1190072113137100 60.9456160709249840, -150.1166889263528500 60.9452871025177960, -150.1160823866927700 60.9451868631832700, -150.1147981467170800 60.9450625004341200, -150.1124525862178400 60.9447830729805000, -150.1101343615115400 60.9444541054726300, -150.1090252896853500 60.9442708101498200, -150.1080204807605600 60.9441735044037500, -150.1056749859118300 60.9438940769501300, -150.1050972722213100 60.9438120938531260, -150.1044147146673000 60.9437757009878850, -150.1020280794323000 60.9435968600071200, -150.0996597840717500 60.9433675068050300, -150.0973143476789700 60.9430880802507300, -150.0960997898733600 60.9429113068114250, -150.0959675661502200 60.9428969545309100, -150.0938333382379400 60.9427358643687300, -150.0914651067292600 60.9425065111665840, -150.0891197341883600 60.9422270837130200, -150.0885536037657700 60.9421467409793540, -150.0878590924231400 60.9421097077968200, -150.0854725812945700 60.9419308668161100, -150.0831044100404500 60.9417015145133400, -150.0812843953585200 60.9414846726795640)), ((-156.3258250321994500 71.3855804101078800, -156.3227837471721700 71.3852968484708300, -156.3211258631680200 71.3853784709397100, -156.3174752631728400 71.3855063554340200, -156.3138106409483000 71.3855831845164000, -156.3101389995151700 71.3856088097987800, -156.3064673580820700 71.3855831845164000, -156.3028027358575400 71.3855063554340200, -156.2991521358623600 71.3853784709397100, -156.2955225368356000 71.3851997756492000, -156.2919208752481700 71.3849706095060700, -156.2883540345110600 71.3846914122789300, -156.2848288305860400 71.3843627163663000, -156.2813527350406600 71.3839757272980400, -156.2807986735199400 71.3839153351247000, -156.2772738509074800 71.3835847182601800, -156.2737971573129400 71.3832071522883200, -156.2703754752479600 71.3827814384127400, -156.2697731039455700 71.3826825408666000, -156.2688990672381200 71.3825735853028000, -156.2662985219592000 71.3822911550128700, -156.2628770017721800 71.3818654411372800, -156.2595170239914400 71.3813923914457900, -156.2562250043804000 71.3808729106563600, -156.2530072265022600 71.3803079916205500, -156.2521192565983800 71.3801355484168900, -156.2496039904317800 71.3797813962944500, -156.2463122451139800 71.3792619155050300, -156.2430947361331400 71.3786969964692700, -156.2399576031608300 71.3780877183735400, -156.2369068320846000 71.3774352449406700, -156.2339482406188000 71.3767408226309000, -156.2310874702105500 71.3760057779443300, -156.2290028093321400 71.3754267926124700, -156.2269788643830600 71.3748262289473700, -156.2256177539561600 71.3744088113176600, -156.2239877579286500 71.3738950987798300, -156.2224021857122700 71.3733673882944100, -156.2208622109222600 71.3728260710663600, -156.2193689747983300 71.3722715499920900, -156.2170750057069300 71.3713558989556400, -156.2149083842145400 71.3704091088933400, -156.2128732265181600 71.3694329874424500, -156.2117754681633000 71.3688530937952800, -156.2098159569408400 71.3689006931125500, -156.2064946437128000 71.3689392146730500, -156.2036405067040000 71.3689492214294900, -156.2013484747522800 71.3689625322950900, -156.1999720003075300 71.3689698581724800, -156.1963035199914300 71.3689442328901000, -156.1926420516893200 71.3688674038077100, -156.1889945939253400 71.3687395193134100, -156.1853681191433600 71.3685608240229000, -156.1817695584183500 71.3683316578797600, -156.1782057879667000 71.3680524597532400, -156.1746836174549500 71.3677237638406700, -156.1712097765099500 71.3673461978688100, -156.1677904731518000 71.3669250714349300, -156.1673270255218000 71.3668674437775500, -156.1638500153658800 71.3665131999242700, -156.1604312866745000 71.3660874851493600, -156.1570740509266700 71.3656144354578700, -156.1537847166913000 71.3650949546685000, -156.1520468748633400 71.3647854610802000, -156.1505681789782600 71.3645388031233100, -156.1487583895879800 71.3642619576232800, -156.1455433753264700 71.3636970376882100, -156.1424086750203000 71.3630877595924700, -156.1393602691610700 71.3624352852602900, -156.1388565112190000 71.3623181134901800, -156.1354382663628800 71.3618934967875000, -156.1327352883028800 71.3615125520626600, -156.1307693217467800 71.3613584784110900, -156.1272483698163900 71.3610297824985200, -156.1237765649365000 71.3606415766474800, -156.1232694804021700 71.3605862350667600, -156.1197493873243300 71.3602517852917200, -156.1162768881678200 71.3598742193198000, -156.1128593330917000 71.3594485045449000, -156.1095032493754200 71.3589754548534100, -156.1062150437892000 71.3584559740639900, -156.1043954895601800 71.3581361589566500, -156.1033280410562200 71.3580524878320800, -156.0998076916716000 71.3577237919195100, -156.0963356466727000 71.3573462250483300, -156.0929185376603500 71.3569205102733700, -156.0895628919139000 71.3564474605818800, -156.0862751162036000 71.3559279797925100, -156.0830614868980600 71.3553630607567000, -156.0799281364742800 71.3547537817617000, -156.0768810427259200 71.3541013074294600, -156.0739260179713300 71.3534068851196800, -156.0710686946645000 71.3526718386344800, -156.0695601691664400 71.3522551566501900, -156.0688626846651300 71.3522502805261000, -156.0652043756813600 71.3521734523429800, -156.0615600655445700 71.3520455678487300, -156.0579367204033000 71.3518668716588400, -156.0543412632386800 71.3516377055157700, -156.0507805675691200 71.3513585073892500, -156.0472614358665500 71.3510298114766800, -156.0437905914626000 71.3506522446054400, -156.0421192221243700 71.3504439481297400, -156.0397624875487300 71.3502238129786400, -156.0362917879356200 71.3498462470067200, -156.0328760036246400 71.3494205322318200, -156.0295216573985300 71.3489474825403200, -156.0262351560276000 71.3484280008516400, -156.0244693012172400 71.3481301642757400, -156.0211807691771400 71.3476230032990200, -156.0179685176329700 71.3470580833638900, -156.0148365116956200 71.3464488043688900, -156.0117907246621800 71.3457963300366500, -156.0088171298066600 71.3450975199346500, -156.0055850041446000 71.3445300908910600, -156.0024534064994800 71.3439208118960000, -155.9994080169663800 71.3432683375637600, -155.9964546442663800 71.3425739143547200, -155.9935989190548500 71.3418388678695100, -155.9924926800930800 71.3415322629036800, -155.9920903611812000 71.3414755030920600, -155.9888051269550100 71.3409560223026300, -155.9882873683673400 71.3408649353685300, -155.9863334338408800 71.3406522726842800, -155.9829192719068400 71.3402265579093800, -155.9795665183801000 71.3397535073185600, -155.9762815764335600 71.3392340265291400, -155.9730707161406000 71.3386691065940700, -155.9699400663809300 71.3380598275990100, -155.9668955977536000 71.3374073532667700, -155.9639431189797300 71.3367129291584100, -155.9610882571173500 71.3359778826732000, -155.9592982483155000 71.3354702576463000, -155.9569286777162600 71.3349623601248500, -155.9539765703624000 71.3342679369158100, -155.9511220691281600 71.3335328904306000, -155.9480043219418800 71.3326502732915600, -155.9450272431127500 71.3317192105731700, -155.9426040747182500 71.3309227251037300, -155.9418841026691800 71.3307683717629900, -155.9389326347332800 71.3300739476546300, -155.9360787504339500 71.3293389011694200, -155.9343863153761200 71.3288706556563200, -155.9327335044476400 71.3283881163185900, -155.9311214921631000 71.3278916275966100, -155.9295514233594700 71.3273815429239400, -155.9283845161325000 71.3269921697528800, -155.9278856415091000 71.3268199306953100, -155.9268664560221000 71.3266013819482500, -155.9239156221082400 71.3259069578398900, -155.9210623511465600 71.3251719113546900, -155.9188488821701500 71.3245541913229300, -155.9167043363360000 71.3239120169261000, -155.9146313396645700 71.3232461777689700, -155.9126324291432600 71.3225574913352000, -155.9114656846935500 71.3221411070265400, -155.9105199180597500 71.3217795139135000, -155.9095608207752300 71.3214519511466800, -155.9074865353752800 71.3208152743055200, -155.8961262012631400 71.3170616587685800, -155.8940362262907800 71.3163451661965300, -155.8920293270917300 71.3156046905041300, -155.8897420525536600 71.3146890358703400, -155.8875817532952500 71.3137422431100800, -155.8855525320237000 71.3127661189612900, -155.8836582414346600 71.3117625241212600, -155.8830978441901300 71.3114340458445800, -155.8825348029387800 71.3111872493921000, -155.8805058487659000 71.3102111243440000, -155.8786118072890500 71.3092075304032800, -155.8768562695012200 71.3081783804279900, -155.8752425628939300 71.3071256394367800, -155.8749835158765200 71.3069361675701400, -155.8731879357745800 71.3060721340218000, -155.8712942971940300 71.3050685391817800, -155.8695391335241700 71.3040393892064800, -155.8679257704579000 71.3029866473160000, -155.8664534174912000 71.3019195711313500, -155.8661396656130500 71.3017625468041300, -155.8643848005181000 71.3007333968288300, -155.8627717108457500 71.2996806549383600, -155.8613034506936700 71.2986063284194000, -155.8599827944703700 71.2975124659276400, -155.8588122350965400 71.2964011520915600, -155.8580700470949700 71.2955799613462200, -155.8579271196408300 71.2954866638784800, -155.8575909917308600 71.2952406660239700, -155.8569632442582800 71.2948724089345700, -155.8553506402198500 71.2938196670440300, -155.8538828216348700 71.2927453396257500, -155.8525625629119000 71.2916514762346800, -155.8513923551730300 71.2905401623986600, -155.8503744035558600 71.2894135160210000, -155.8495106218177000 71.2882736846828500, -155.8488026278389800 71.2871228393476000, -155.8482517418243800 71.2859631734617700, -155.8478589872024700 71.2847968948608500, -155.8476250807328500 71.2836262248704300, -155.8475942456778700 71.2831416980309900, -155.8470631726273000 71.2824406935832300, -155.8463553890899000 71.2812898482479800, -155.8458144279934200 71.2801541627844100, -155.8454250827013800 71.2790120912350700, -155.8451880375978400 71.2778657191277000, -155.8451170226324500 71.2768986106824000, -155.8445053550380800 71.2765394484368400, -155.8428942681559300 71.2754867047476600, -155.8414278300303000 71.2744123764300600, -155.8401088114724500 71.2733185112403500, -155.8389397036044000 71.2722071965049500, -155.8379227070672400 71.2710805483287100, -155.8370597347189600 71.2699407142926000, -155.8363524026412400 71.2687898671587200, -155.8358020319382000 71.2676301994741800, -155.8354096415417000 71.2664639181753600, -155.8351759509094000 71.2652932472855700, -155.8351013764273600 71.2641204126270000, -155.8351860305108700 71.2629476499141700, -155.8354297243023200 71.2617771894657600, -155.8358319640738600 71.2606112589025400, -155.8363919575227800 71.2594520768519100, -155.8371086110735200 71.2583018493509100, -155.8379805325755000 71.2571627626514300, -155.8390060375985200 71.2560369841195900, -155.8391059396873300 71.2559427504576200, -155.8396783653642500 71.2550238501706300, -155.8405501393774000 71.2538847634710900, -155.8415754708313000 71.2527589840399300, -155.8427523848146700 71.2516486531628700, -155.8440786177340000 71.2505558815487300, -155.8455516227092000 71.2494827457321700, -155.8471685785670200 71.2484312844762300, -155.8489263889416600 71.2474034969738500, -155.8508216912680000 71.2464013356531600, -155.8528508666741200 71.2454267034796700, -155.8550100399813200 71.2444814512580300, -155.8572950931939500 71.2435673740351400, -155.8589355753165000 71.2429631168544100, -155.8597023570780800 71.2426881743198200, -155.8606300806137000 71.2423704321497600, -155.8622229454325600 71.2418330206774000, -155.8693797241948900 71.2393973705922600, -155.8710540136318000 71.2388452237281600, -155.8727767414534400 71.2383087484500400, -155.8745464894289200 71.2377883872243300, -155.8763618006565500 71.2372845654304000, -155.8792060370289500 71.2365510963561000, -155.8821467517711600 71.2358582136856700, -155.8851783546972700 71.2352072322280500, -155.8882950874482800 71.2345993867523400, -155.8897002745480000 71.2343516028442400, -155.8889626362166600 71.2342343195582500, -155.8857690815778200 71.2336693978244900, -155.8826553013010700 71.2330601161315300, -155.8796272372072000 71.2324076382020000, -155.8766894299732000 71.2317195219384300, -155.8751310757385200 71.2314211205883200, -155.8721032670521000 71.2307686426588000, -155.8691669410015000 71.2300742158524300, -155.8663276958664300 71.2293391657699400, -155.8635909428677000 71.2285648971523500, -155.8609618953751400 71.2277528866864000, -155.8584455590153000 71.2269046857027200, -155.8560467217787700 71.2260219129809700, -155.8550206600753800 71.2256193791311000, -155.8539101790115400 71.2251749953298400, -155.8519295768884400 71.2243500912837200, -155.8500499407521400 71.2235010530312100, -155.8482740926752000 71.2226291594082600, -155.8466046964495600 71.2217357252236000, -155.8448570187364000 71.2207065698523800, -155.8432505336851600 71.2196538216666100, -155.8417882819036600 71.2185794888524100, -155.8404730270085600 71.2174856191660400, -155.8393988956425000 71.2164616609769000, -155.8387616908992800 71.2165416241966800, -155.8353147225963400 71.2169191919671800, -155.8318198006432500 71.2172478896784500, -155.8282836016069000 71.2175270887042300, -155.8247128829931400 71.2177562557466800, -155.8211144670589800 71.2179349519365100, -155.8174952318194600 71.2180628373301400, -155.8138620948597600 71.2181396664125300, -155.8102219998454000 71.2181652925942200, -155.8088080083828400 71.2181614273080800, -155.7935369921384600 71.2180773119184800, -155.7902569739801500 71.2180382831402900, -155.7869842799005700 71.2179576706100800, -155.7837239937672700 71.2178355984341900, -155.7804811796626700 71.2176722563696100, -155.7769104754380600 71.2174430893271600, -155.7766046591776500 71.2174189434295500, -155.7755895754985000 71.2174990892116300, -155.7720188622806500 71.2177282562540800, -155.7684204517424300 71.2179069533432900, -155.7648012218988400 71.2180348378375400, -155.7611680894357600 71.2181116669199200, -155.7575279998173000 71.2181372931016800, -155.7538879101988700 71.2181116669199200, -155.7502547777357600 71.2180348378375400, -155.7482736773882800 71.2179523016574800, -155.7493576914043000 71.2183834060693900, -155.7511490572831300 71.2191441659705300, -155.7528555820194600 71.2199249240960000, -155.7544751081397000 71.2207246974868400, -155.7560055869882000 71.2215424816003000, -155.7577610591255600 71.2225702726999500, -155.7593758638050500 71.2236217375531700, -155.7608469082581700 71.2246948769670800, -155.7621713749090000 71.2257876530777600, -155.7633467204747400 71.2268979875521500, -155.7643706840598000 71.2280237705805900, -155.7652412943502300 71.2291628608774100, -155.7659568678151600 71.2303130937743300, -155.7665160150020500 71.2314722794222300, -155.7669176450332600 71.2326382135827300, -155.7671609665053700 71.2338086776284200, -155.7672454856905800 71.2349814448378400, -155.7671710137312600 71.2361542821944300, -155.7669376648413200 71.2373249575807700, -155.7665458527089000 71.2384912415776000, -155.7659962976909500 71.2396509128594200, -155.7652900160214000 71.2408017626912600, -155.7644283270056500 71.2419415994253300, -155.7634128449268200 71.2430682502995900, -155.7622454790456000 71.2441795686322600, -155.7609284273050600 71.2452734356206200, -155.7594641772299700 71.2463477666361800, -155.7578554960343000 71.2474005130233100, -155.7561054270238000 71.2484296665958800, -155.7542172886968800 71.2494332650331900, -155.7521946594559400 71.2504093936786400, -155.7500413785067800 71.2513561900361800, -155.7477615377647200 71.2522718473679200, -155.7451948150886000 71.2532123583637300, -155.7440010154345000 71.2536297472151400, -155.7421590662878500 71.2542533775913400, -155.7402559164773400 71.2548577229056300, -155.7382935121358400 71.2554421617264200, -155.7362738623488400 71.2560060951052500, -155.7334307294446000 71.2567411442884100, -155.7304903816257700 71.2574355701954700, -155.7274584243667700 71.2580880463263500, -155.7243406412076000 71.2586973280193100, -155.7211429784656500 71.2592622488537600, -155.7178715407390000 71.2597817314418200, -155.7145325711212300 71.2602547829319500, -155.7111324458057000 71.2606804995055000, -155.7076776578975600 71.2610580663767300, -155.7041748066220000 71.2613867640879400, -155.7006305847336600 71.2616659622144700, -155.6970517641276000 71.2618951292568600, -155.6934460304099400 71.2620737894738500, -155.6898194387160900 71.2622016622769400, -155.6861789156244200 71.2622785030505400, -155.6825314173909800 71.2623041652051400, -155.6812313547432000 71.2622913525639200, -155.6775812907439400 71.2623041652051400, -155.6739333635338800 71.2622785210369900, -155.6702924114656000 71.2622016865586300, -155.6666653925937600 71.2620738074603000, -155.6630592352954400 71.2618951292568600, -155.6594804146893700 71.2616659622144700, -155.6559361928010200 71.2613867640879400, -155.6524333415254700 71.2610580663767300, -155.6489785536173300 71.2606804995055000, -155.6455784283018000 71.2602547829319500, -155.6422394586840300 71.2597817314418200, -155.6389680209573800 71.2592622488537600, -155.6357703582154400 71.2586973280193100, -155.6326525750562600 71.2580880463263500, -155.6296206177972600 71.2574355701954700, -155.6266802699784400 71.2567411442884100, -155.6255731757614200 71.2564549215574600, -155.6227684394119000 71.2563957272810200, -155.6191420743472200 71.2562678427867700, -155.6155365699567000 71.2560891456975600, -155.6119588177452000 71.2558599795544900, -155.6084156534596200 71.2555807805286500, -155.6049138471962600 71.2552520837167500, -155.6014600899112000 71.2548745159462000, -155.5980609790309200 71.2544488002719700, -155.5947230058620000 71.2539757487818400, -155.5914525430004300 71.2534562652944600, -155.5891903019908000 71.2530564833700700, -155.5884455257403800 71.2529977873180700, -155.5849441844265500 71.2526690905061700, -155.5814908857957200 71.2522915227356200, -155.5780922254757900 71.2518658070613900, -155.5751757708451000 71.2514524372802000, -155.5726390000897700 71.2514701970919800, -155.5712332005517500 71.2514663893624600, -155.5662543351694000 71.2514393521444200, -155.5629624675438300 71.2514005248144100, -155.5596779347888200 71.2513199554516600, -155.5564058594428300 71.2511977708604700, -155.5531513415611500 71.2510341598986100, -155.5495745174500000 71.2508049937555400, -155.5460323361233700 71.2505228458526900, -155.5459511624161700 71.2505181792706100, -155.5454043925986000 71.2505066247809400, -155.5417812605966800 71.2503787699643000, -155.5381789640879000 71.2502001628073500, -155.5346022937608300 71.2499709957649000, -155.5314034592022400 71.2497347096891600, -155.5277657869614800 71.2496736016554500, -155.5241432718944500 71.2495457531340400, -155.5205415842267000 71.2493671657621200, -155.5169650676836900 71.2491379987197300, -155.5134231264760800 71.2488587996938900, -155.5099225298009000 71.2485301028820000, -155.5064699650168300 71.2481525351114400, -155.5042328258841700 71.2478722515032800, -155.5023676049809500 71.2476971049375200, -155.4989151885850400 71.2473195371669600, -155.4983670176237400 71.2472352095373400, -155.4973719465580500 71.2471261811284100, -155.4948686458713000 71.2468911073388000, -155.4914163724676000 71.2465135395682400, -155.4880190548355000 71.2460842580820800, -155.4874820471587200 71.2460210141585400, -155.4840286361126400 71.2456525421311500, -155.4806311350188300 71.2452268255576100, -155.4772947428580800 71.2447537740674800, -155.4740258286290700 71.2442342914794200, -155.4722414253015200 71.2439198048551800, -155.4708285229179700 71.2436826482356800, -155.4689724795962300 71.2434012935349300, -155.4674078552882600 71.2431196384606000, -155.4657759374095500 71.2428457085626400, -155.4641400769030000 71.2425952959362100, -155.4609451507980400 71.2420303742024400, -155.4578300341287300 71.2414210925094800, -155.4548006714138400 71.2407686154792800, -155.4526411149954300 71.2402531942295800, -155.4516170291025800 71.2400953029559200, -155.4484225130884700 71.2395303812221500, -155.4453077966175000 71.2389210995292000, -155.4422788224097000 71.2382686224989900, -155.4393397525275300 71.2375824415764800, -155.4376176389428700 71.2372541035940700, -155.4345889237398000 71.2366016265638700, -155.4316546067746600 71.2358924346881400, -155.4311663180711000 71.2357815725615600, -155.4301774784078700 71.2355881086043600, -155.4271490213102400 71.2349356315742200, -155.4242120675328600 71.2342412047678400, -155.4213722153554300 71.2335061546853600, -155.4195282472308000 71.2329754683432300, -155.4170991684918000 71.2324356376946000, -155.4141625906310400 71.2317412108882300, -155.4113231035783300 71.2310061617050700, -155.4096450145058000 71.2305395727431700, -155.4080060711232500 71.2300587897813700, -155.4064074281602600 71.2295641509648500, -155.4048502142659300 71.2290560079284800, -155.4027782707006000 71.2283613679828100, -155.4019004082771900 71.2283050587315100, -155.3983622541147200 71.2280258597057200, -155.3948653995185500 71.2276971619945100, -155.3914165255522000 71.2273195942239600, -155.3880222197496200 71.2268938776504100, -155.3846889653234500 71.2264208261602800, -155.3814231249772000 71.2259013426729000, -155.3782309346099200 71.2253364200398100, -155.3751184862291300 71.2247271383468000, -155.3720917153603400 71.2240746613166500, -155.3691563974497600 71.2233802336109500, -155.3663181262804800 71.2226451835284700, -155.3634228425901000 71.2218236312556300, -155.3606487623305000 71.2209598135446000, -155.3595377866395200 71.2205974623030900, -155.3571822796384700 71.2197969352803900, -155.3549308664662800 71.2189659293342200, -155.3526549143927600 71.2180502702038900, -155.3505053062748400 71.2171034720476500, -155.3484861250346000 71.2161273407042500, -155.3466012044819700 71.2151237404683000, -155.3448541176234000 71.2140945841977700, -155.3432481757626800 71.2130418351126800, -155.3417864177090000 71.2119675022984200, -155.3408080461543600 71.2111535358071100, -155.3404839763544000 71.2111084482963300, -155.3400824812215100 71.2110743091321300, -155.3395992566004000 71.2110323404701800, -155.3369165708430400 71.2108601077078400, -155.3333815804955000 71.2105809086820600, -155.3298878528421200 71.2102522109708000, -155.3264420626510400 71.2098746432003000, -155.3256801705034300 71.2097914433205100, -155.3251109994730300 71.2098043171155800, -155.3214724647824000 71.2097786909338900, -155.3178408845491600 71.2097018618515000, -155.3142232006401600 71.2095739764578800, -155.3106263270433400 71.2093952802680400, -155.3070571390756800 71.2091661132255900, -155.3035224553969700 71.2088869141998100, -155.3000290308151000 71.2085582164885400, -155.2965835400982500 71.2081806487180400, -155.2931925635859000 71.2077549312451200, -155.2898625781954000 71.2072818788556700, -155.2865999412342700 71.2067623953682900, -155.2848093190947600 71.2064465606603100, -155.2834087239334300 71.2062110165252300, -155.2827850342019400 71.2061163583832700, -155.2806008435540500 71.2060062903580600, -155.2770322743199600 71.2057771233156700, -155.2734982048782200 71.2054979233905100, -155.2700053873387300 71.2051692265786200, -155.2665604946710700 71.2047916579087400, -155.2631701072146500 71.2043659413352000, -155.2601672843926200 71.2039413327264000, -155.2565295581925400 71.2039177084355400, -155.2528990688369400 71.2038408793531500, -155.2492824713090000 71.2037129939595800, -155.2456866786972400 71.2035342968703700, -155.2421185618221400 71.2033051298279200, -155.2385849393434400 71.2030259308021400, -155.2350925642704000 71.2026972330908700, -155.2316481077739400 71.2023196653203700, -155.2311722917678200 71.2022552217012000, -155.2275383310291400 71.2022763386821700, -155.2161651303164800 71.2022635260409500, -155.2125228337617400 71.2022763386821700, -155.2088869979366000 71.2022506585411200, -155.2052581156694700 71.2021738105729600, -155.2016431198340700 71.2020459440651000, -155.1980489145257400 71.2018673018345700, -155.1944811025208300 71.2016381347921200, -155.1909477822143500 71.2013589357663400, -155.1899588094514700 71.2012658469413400, -155.1892261335791800 71.2012399284799900, -155.1856325128301800 71.2010613042358500, -155.1820648483140700 71.2008321371934600, -155.1785316736977600 71.2005529381676200, -155.1750397410911500 71.2002242404564100, -155.1715957207658800 71.1998466726858500, -155.1693363512915500 71.1995629006074200, -155.1675128112672000 71.1993912425118700, -155.1640689375314300 71.1990136738420500, -155.1606795537184000 71.1985879572684400, -155.1573511313496000 71.1981149048789900, -155.1540900259339300 71.1975954213916700, -155.1509024625785600 71.1970304978592600, -155.1505971463412000 71.1969595989064000, -155.1472710891894000 71.1964759093357900, -155.1440102571676000 71.1959564258484100, -155.1408238944071600 71.1953856459308600, -155.1404960240722300 71.1953274049358200, -155.1390399551298000 71.1950954275120000, -155.1358544098531000 71.1945203929019000, -155.1352883729600200 71.1944198406032500, -155.1341246520310300 71.1942344309742900, -155.1309376372621200 71.1936695083412000, -155.1278302331786800 71.1930602257488700, -155.1248083699103000 71.1924077469200300, -155.1231907611446800 71.1920244369782200, -155.1215465243526000 71.1917624374865500, -155.1183599124799500 71.1911975139541400, -155.1152529022995700 71.1905882313618600, -155.1122314212430800 71.1899357534323400, -155.1093012303674600 71.1892413248273200, -155.1064679180599300 71.1885062738455200, -155.1046732732529300 71.1880052111716300, -155.1029236709906000 71.1874878428897100, -155.1012205295038000 71.1869545907818000, -155.0995652310505500 71.1864058883211300, -155.0982593731715200 71.1859604676015500, -155.0965530229036600 71.1853604498249400, -155.0961225812920600 71.1851995557149700, -155.0947717222371700 71.1849077670798400, -155.0918422849934200 71.1842133384748200, -155.0890097011367700 71.1834782874930200, -155.0859245714618000 71.1825982675960000, -155.0829782044805300 71.1816700719163600, -155.0792833821223600 71.1804469004042000, -155.0771283708775700 71.1797058590382200, -155.0750618250431500 71.1789390296126000, -155.0727905287598700 71.1780233677842500, -155.0706453156287800 71.1770765669300500, -155.0686302631761000 71.1761004337880600, -155.0667491935204200 71.1750968308541000, -155.0650056760710500 71.1740676718856100, -155.0634030140378500 71.1730149201025600, -155.0619442399347000 71.1719405827917000, -155.0606321119823600 71.1708467095081100, -155.0594691060144000 71.1697353839808200, -155.0584574136786700 71.1686087268113300, -155.0581984224192200 71.1682648503426100, -155.0559376374120000 71.1678635791409400, -155.0528343324384700 71.1672542965486000, -155.0498164549654000 71.1666018168204500, -155.0468897579559400 71.1659073882154300, -155.0440598235020000 71.1651723363343100, -155.0423381191088800 71.1646870028030200, -155.0421933399506400 71.1646461537970400, -155.0417067545630500 71.1646920408051100, -155.0381800586627600 71.1649712398308900, -155.0346189358152200 71.1652004068733400, -155.0310301911903500 71.1653791039625500, -155.0274206830180800 71.1655069893561200, -155.0237973108971500 71.1655838184385000, -155.0201669996073000 71.1656094446202000, -155.0165366883174700 71.1655838184385000, -155.0129133161965500 71.1655069893561200, -155.0093038080243000 71.1653791039625500, -155.0057150633994400 71.1652004068733400, -155.0021539405519000 71.1649712398308900, -154.9986272446516000 71.1646920408051100, -154.9951417143186300 71.1643633421945200, -154.9917040081334400 71.1639857735247000, -154.9883206938449000 71.1635600560517800, -154.9849982303840000 71.1630870036623300, -154.9817429642663500 71.1625675192756300, -154.9785611071093900 71.1620025948439500, -154.9754587320348400 71.1613933122516200, -154.9724417574811000 71.1607408325234600, -154.9695159373106300 71.1600464039184400, -154.9666868500180800 71.1593113511380000, -154.9638423546409200 71.1585021411609700, -154.9611150688053600 71.1576518699379200, -154.9584351385707600 71.1567710838185100, -154.9575417592447800 71.1564762680653800, -154.9572833462494000 71.1563936095774900, -154.9567046585930800 71.1562044893457800, -154.9554159318997200 71.1558005786338300, -154.9549288887572000 71.1556439095388700, -154.9546603565901500 71.1555537174301700, -154.9522996551049800 71.1552917988775000, -154.9489178426842700 71.1548660814045800, -154.9455968559101400 71.1543930281158000, -154.9423430350030300 71.1538735437291000, -154.9391625906809800 71.1533086192973800, -154.9385281045883300 71.1531646216500300, -154.9377802373680300 71.1530408596480000, -154.9361704877777600 71.1528106143184700, -154.9352114858213800 71.1526675816436400, -154.9324264014572300 71.1522282070661700, -154.9319577980139400 71.1521493662003200, -154.9287772484712200 71.1515866253225800, -154.9256765236526000 71.1509773409316000, -154.9226611543887500 71.1503248621027600, -154.9197368900454000 71.1496304325984300, -154.9186242398167800 71.1493349522463000, -154.9182283042927700 71.1492382634351700, -154.9159298017189300 71.1487485547020800, -154.9154329910396700 71.1486335017347600, -154.9145244302582000 71.1485040443262200, -154.9112715878135000 71.1479845599395700, -154.9080920994708000 71.1474196355078400, -154.9049920347545700 71.1468103520161900, -154.9019773058079700 71.1461578722880300, -154.8990536637955000 71.1454634427837000, -154.8978319896545800 71.1451589916941900, -154.8948142983411700 71.1445188767448300, -154.8918909009443000 71.1438244472404900, -154.8890641545870300 71.1430893944600500, -154.8873858532744800 71.1426205823740400, -154.8857468919055000 71.1421374431885200, -154.8803261329446500 71.1405109509196900, -154.8791298556582800 71.1402653469682500, -154.8762786198623800 71.1395857346939800, -154.8735196733941800 71.1388674057062600, -154.8716247649709000 71.1383360979326100, -154.8697803678696500 71.1377865195323100, -154.8679881611247000 71.1372191732263000, -154.8667380576152400 71.1367725707975800, -154.8663519417886500 71.1366525571698400, -154.8662542349449600 71.1366206024588900, -154.8648038569124300 71.1361412233388300, -154.8639707168750600 71.1359079436966800, -154.8616778908219700 71.1351383182788500, -154.8604796269332000 71.1349196706064000, -154.8573815389268600 71.1343103862154200, -154.8543687327308000 71.1336579064872600, -154.8514469541136000 71.1329634769829200, -154.8486217743753500 71.1322284233031600, -154.8466891070166600 71.1316860035063300, -154.8448090652861000 71.1311245666455000, -154.8429834343379800 71.1305446451193600, -154.8412139435686200 71.1299467911115900, -154.8385093925943700 71.1290042692317000, -154.8379353517350700 71.1288799190730900, -154.8350142853809400 71.1281854895687500, -154.8321897936240500 71.1274504358889900, -154.8297590772196200 71.1267567735063700, -154.8294812145863700 71.1266872433216700, -154.8267481047412000 71.1261019276618600, -154.8238274520752200 71.1254074972582700, -154.8210033596173200 71.1246724435784500, -154.8185295351099200 71.1239716765516600, -154.8161434808369300 71.1232397345261800, -154.8116153502681700 71.1217943270465900, -154.8089929190879300 71.1209182066099900, -154.8064934180367800 71.1200160076327300, -154.8047034209261000 71.1196025128457400, -154.8018801648377000 71.1188674591659800, -154.8010669169046600 71.1186552785183600, -154.7991120317948000 71.1182824303899100, -154.7961016861438800 71.1176299506617500, -154.7931822952267300 71.1169355202581000, -154.7903594222495000 71.1162004656790100, -154.7879144974560600 71.1154967587684700, -154.7851133503008300 71.1147564701350300, -154.7823925764562000 71.1139821961215300, -154.7797790620540500 71.1131690138389600, -154.7782842107477000 71.1129286583309900, -154.7751104034223600 71.1123637338992600, -154.7720158758319800 71.1117544486089600, -154.7690065320258000 71.1111019679814800, -154.7660881114771300 71.1104075375778300, -154.7632661773921500 71.1096724838980700, -154.7605461077166600 71.1088982098845600, -154.7579330834450000 71.1080861940226900, -154.7554320814254000 71.1072379876430900, -154.7530462187080000 71.1063545746039800, -154.7488791335651400 71.1047415254011500, -154.7466184250003000 71.1038264598233200, -154.7444877035446500 71.1028580968237500, -154.7444045711140500 71.1028355948868700, -154.7440459475624000 71.1027609574522900, -154.7429156607291200 71.1025224896212600, -154.7409547132893700 71.1021434757408900, -154.7379468416733600 71.1014909942140900, -154.7350298492481200 71.1007965638104300, -154.7322092956224500 71.1000615092313000, -154.7294857006045600 71.0992857900072900, -154.7268694990281400 71.0984721940365600, -154.7236195074342800 71.0974161759158400, -154.7228177906085300 71.0971440419640400, -154.7203196907011300 71.0966020070770200, -154.7174034231294400 71.0959075766733700, -154.7145835709749800 71.0951725220942900, -154.7118655085863300 71.0943982471814000, -154.7092544124611500 71.0935862313195900, -154.7067552540517000 71.0927380240406100, -154.7043727898723400 71.0918552450236200, -154.7021115516068000 71.0909395786986800, -154.6999758371151800 71.0899927733478900, -154.6979697032391800 71.0890166339106000, -154.6969431927740900 71.0884665240109300, -154.6955229096545300 71.0880150607465000, -154.6926892861815800 71.0870686519967300, -154.6900027872987700 71.0860771017768800, -154.6897155510318400 71.0859816828085000, -154.6891142912914700 71.0858301893118200, -154.6865193011248000 71.0850815225942400, -154.6840234657103400 71.0842982175887500, -154.6816311656457400 71.0834816538553000, -154.6804470121198800 71.0830419123544200, -154.6797237134785500 71.0828220020338200, -154.6776254530522000 71.0821364119659000, -154.6756046134621000 71.0814267848183500, -154.6743985218742500 71.0809828201011000, -154.6742779767472000 71.0809437544507400, -154.6716839722375000 71.0802042850997400, -154.6690747601920000 71.0793922683385500, -154.6665774049232600 71.0785440601603100, -154.6641966593483300 71.0776612802439400, -154.6627462381483400 71.0770830188662900, -154.6598307098193700 71.0758870068799000, -154.6579891446832600 71.0751022935360800, -154.6562376502473300 71.0742961682336200, -154.6545785773394400 71.0734697182529700, -154.6530141517816600 71.0726240596527000, -154.6512797021964600 71.0715948925902700, -154.6511062373629400 71.0714803513371900, -154.6502365174013400 71.0712323084243300, -154.6476284942595800 71.0704202907638800, -154.6451322775325500 71.0695720825855800, -154.6427306263173300 71.0686807690023600, -154.6418479597155300 71.0683379429417500, -154.6396023822441000 71.0674261535941700, -154.6374810326235300 71.0664835489766300, -154.6354879002463700 71.0655119124448300, -154.6336267316882800 71.0645130777164100, -154.6318929952655000 71.0634839106539900, -154.6305137194325700 71.0625727787108300, -154.6293552028802800 71.0622962749531600, -154.6276500433148200 71.0618665959667000, -154.6259800247583200 71.0614226114644200, -154.6232666208578300 71.0606483365515400, -154.6206599997591400 71.0598363188910900, -154.6181651239213000 71.0589881098134700, -154.6157867417646800 71.0581053289977800, -154.6155304160958000 71.0580053963320200, -154.6116989264642400 71.0565040905913700, -154.6095168941892800 71.0556110799873900, -154.6074535544379700 71.0546887955515600, -154.6060083556011000 71.0539815183324800, -154.6053626028018500 71.0538116319013400, -154.6026502466115700 71.0530373560891900, -154.6009823810320300 71.0525175794227800, -154.5985442146437700 71.0519356946766200, -154.5957306577436400 71.0512006391982100, -154.5933725373127200 71.0505313214633800, -154.5910941921432300 71.0498334628441000, -154.5856769639207200 71.0481097853384000, -154.5828299279587800 71.0471578484559800, -154.5801312036920800 71.0461613582601200, -154.5778752057761000 71.0452456892372200, -154.5757444384550500 71.0442988811884700, -154.5737429513760600 71.0433227399525400, -154.5718745414769000 71.0423191271260600, -154.5716181798351000 71.0421698117874600, -154.5700266064427000 71.0415236992593600, -154.5678962420179200 71.0405768903112900, -154.5661589128035600 71.0397294204764200, -154.5641061256971200 71.0390418177257700, -154.5620356498253600 71.0383222036068700, -154.5600478126564000 71.0375783806378000, -154.5577927950014600 71.0366627116149000, -154.5556629557807500 71.0357159026668200, -154.5552646775228000 71.0355215744611400, -154.5547607073407300 71.0353643819607300, -154.5522689260700400 71.0345161719838000, -154.5498934936897500 71.0336333902687900, -154.5479799000523300 71.0328615678071700, -154.5461552466672700 71.0320673045625300, -154.5452948841515600 71.0316779952433400, -154.5429504154293000 71.0305585821129200, -154.5416877447935600 71.0298850438597400, -154.5413726646167400 71.0297704981100500, -154.5396030425463600 71.0291054008935700, -154.5373489934612500 71.0281897318706700, -154.5352200679517400 71.0272429220232800, -154.5332203084704200 71.0262667789887100, -154.5313535119550000 71.0252631652629100, -154.5296232190363000 71.0242339955025300, -154.5280327077432500 71.0231812320282600, -154.5270800496045600 71.0224742659746700, -154.5266307537062900 71.0222070000530700, -154.5250152466562700 71.0211335260914300, -154.5244410196373200 71.0207900039556000, -154.5230514924324000 71.0198701117163300, -154.5225790983466800 71.0196599401541600, -154.5205801068864000 71.0186837971195900, -154.5187140271306000 71.0176801824944700, -154.5175163585930400 71.0169790854165000, -154.5163835581546400 71.0162666631760000, -154.5153166285595300 71.0155435506943600, -154.5143122270276300 71.0148196665944000, -154.5139460986335000 71.0146616880865000, -154.5118504381471800 71.0136444604235600, -154.5098994578936200 71.0125971945049600, -154.5081702738390300 71.0115680238452600, -154.5065807805785300 71.0105152594717300, -154.5062141611546000 71.0102430176012300, -154.5055925659441400 71.0098730266189500, -154.5040032093805800 71.0088202622453700, -154.5025565410515000 71.0077459114447200, -154.5012552948959000 71.0066520237719500, -154.5001019287609800 71.0055406838555400, -154.4990929604717300 71.0044207338298700, -154.4987930113883300 71.0041800284855600, -154.4976397891449300 71.0030686885691600, -154.4972163982181700 71.0025931810305300, -154.4961637246761400 71.0017080331992400, -154.4950106454249000 71.0005966932828300, -154.4940075820842000 70.9994700181268900, -154.4931564187337200 70.9983301571111300, -154.4924587507707000 70.9971792811989000, -154.4919158822121700 70.9960195829374400, -154.4915288176008200 70.9948532701623700, -154.4912982674010800 70.9936825659976900, -154.4912246426031600 70.9925096980641700, -154.4912275878828300 70.9923161909395000, -154.4913595804802400 70.9872882459558200, -154.4914612443409000 70.9861639737884000, -154.4917070191635800 70.9850420722339100, -154.4920964489919000 70.9839245027137000, -154.4926288287574000 70.9828132194545600, -154.4933353667337600 70.9816629523833700, -154.4941949998993000 70.9805238261137700, -154.4952060690048700 70.9793980071124200, -154.4963666234209000 70.9782876357658100, -154.4976744346274000 70.9771948227829000, -154.4991269899186000 70.9761216455975200, -154.5007215076914000 70.9750701438720700, -154.5024549347474200 70.9740423159001900, -154.5043239561856000 70.9730401132106900, -154.5063250016974300 70.9720654405676900, -154.5084542518622200 70.9711201487759200, -154.5107076453415400 70.9702060328821700, -154.5130881930656400 70.9693222322353000, -154.5155847461391000 70.9684732290563100, -154.5193347365088500 70.9672524011774000, -154.5201719163008500 70.9669914278122200, -154.5202557600952000 70.9668980080367100, -154.5214155779665000 70.9657876348915100, -154.5217040355128000 70.9655470059896000, -154.5227105792298200 70.9644260073544000, -154.5238702523102700 70.9633156333098900, -154.5250921314966500 70.9622938460842100, -154.5252423380634400 70.9619802300036900, -154.5259481269045000 70.9608299593352300, -154.5268068499561300 70.9596908303676000, -154.5277526741465700 70.9586432433910100, -154.5278128468853500 70.9585625535190700, -154.5284616744666800 70.9574959602704200, -154.5290319903340600 70.9567392868886500, -154.5290254072966700 70.9557858589303100, -154.5284169376915000 70.9549692268483900, -154.5277207877841000 70.9538183464396200, -154.5271790964381200 70.9526586427821800, -154.5267928681962800 70.9514923255104600, -154.5265628108250300 70.9503216159498600, -154.5264893353145500 70.9491487426204200, -154.5265343517788800 70.9383147538229100, -154.5266175210817000 70.9371419488419400, -154.5268571130653000 70.9359714452260700, -154.5272526429950500 70.9348054705960700, -154.5278033311587600 70.9336462435793500, -154.5285081028666200 70.9324959693136000, -154.5293655902497700 70.9313568358493300, -154.5303741385556300 70.9302310096534300, -154.5315318016512800 70.9291206311123100, -154.5318966035454000 70.9288225382296100, -154.5319741880583000 70.9287500456781000, -154.5320750254420500 70.9286463412557300, -154.5319226425159200 70.9281818872843200, -154.5316912703358400 70.9270230397814900, -154.5316641144073300 70.9266194141546900, -154.5310353273184800 70.9257742735639500, -154.5303401945443200 70.9246233904571600, -154.5297992928031000 70.9234636832025000, -154.5296409635596000 70.9229848715546600, -154.5294549720693000 70.9227751505528100, -154.5286070813516800 70.9216352814431200, -154.5279657873911400 70.9205697826694200, -154.5279066012086600 70.9204892654672700, -154.5269683160349200 70.9194421560307500, -154.5261205674102300 70.9183022869210600, -154.5254256945401300 70.9171514020156300, -154.5248849942470600 70.9159916947609800, -154.5244994701744000 70.9148253729926500, -154.5242698282899000 70.9136546589354000, -154.5241964786845000 70.9124817811093600, -154.5242136152661000 70.9083427853913100, -154.5242966514692600 70.9071699759136900, -154.5245358729321500 70.9059994678012800, -154.5249307976182000 70.9048334895739500, -154.5254806458151200 70.9036742580606200, -154.5261843455310800 70.9025239801976000, -154.5270405306959000 70.9013848422367200, -154.5280475483556300 70.9002590115442200, -154.5292034568740000 70.8991486285064500, -154.5301246953983400 70.8983757367508900, -154.5290222587702000 70.8978822283821700, -154.5270355079822800 70.8969060772537300, -154.5251808505158000 70.8959024545346800, -154.5234618054179500 70.8948732748817700, -154.5218816291338400 70.8938205015150000, -154.5204433128086200 70.8927461417211500, -154.5191495759921200 70.8916522432564900, -154.5180028603437000 70.8905408925481900, -154.5170053269342500 70.8894142074997300, -154.5161588526489000 70.8882743347927500, -154.5154650220930500 70.8871234462900500, -154.5149251311898000 70.8859637354381100, -154.5145401808846000 70.8847974109717700, -154.5143108780445700 70.8836266924179800, -154.5142376309618700 70.8824538109946600, -154.5143205520518000 70.8812809988190800, -154.5145594551547000 70.8801104871093300, -154.5149538582339500 70.8789445052847200, -154.5155029833759400 70.8777852701741200, -154.5162057594881700 70.8766349878145000, -154.5170608240977000 70.8754958471556600, -154.5180665233513400 70.8743700119665600, -154.5192209201093500 70.8732596253315100, -154.5205217966435800 70.8721667970601200, -154.5218363959329000 70.8711857041569700, -154.5217609652963000 70.8700098234946300, -154.5217627693363000 70.8698641459136500, -154.5217977556618800 70.8681691603785000, -154.5218944642580800 70.8670328822617500, -154.5220406490567000 70.8663508022477800, -154.5210124730471600 70.8657343385689300, -154.5194346053227400 70.8646815625041900, -154.5183886569109600 70.8638991397335800, -154.5167904051530500 70.8634359016455700, -154.5139025948288600 70.8625118833168100, -154.5101807631316700 70.8612607060168200, -154.5080479732353400 70.8605158029619700, -154.5060031640147700 70.8597448213664600, -154.5037682794824700 70.8588291424510400, -154.5016574492318600 70.8578823227110800, -154.4996746842392700 70.8569061688846200, -154.4978237472681000 70.8559025434676600, -154.4961726810243800 70.8549120742329100, -154.4937959823986400 70.8547209359225000, -154.4920914289762400 70.8545576442199400, -154.4910884240914600 70.8545174553163400, -154.4882179455017600 70.8543683108489400, -154.4847124798970000 70.8541391411085300, -154.4830744879972000 70.8539970005612100, -154.4796911916951000 70.8543642351214100, -154.4762599876083000 70.8546929373292800, -154.4727882627681000 70.8549721390530200, -154.4701376081640700 70.8551454186262500, -154.4696635116617000 70.8551873450200000, -154.4692841713274200 70.8552166809051300, -154.4662328759464500 70.8555269344205400, -154.4627610054160400 70.8558061370436600, -154.4608963169114600 70.8559280302544600, -154.4597202896596000 70.8560592305490800, -154.4570891278609400 70.8563112682504700, -154.4562904039789300 70.8564005385540600, -154.4557168397603300 70.8564866549352200, -154.4523322862060000 70.8568642272023800, -154.4489006504446400 70.8571929285109300, -154.4454284894332000 70.8574721311339900, -154.4419224365711600 70.8577013008744000, -154.4385276298462200 70.8578739707072600, -154.4351137044339000 70.8579997310028500, -154.4338745537676200 70.8580275443357600, -154.4304022335762000 70.8583061291246300, -154.4268960332253200 70.8585352988649800, -154.4233634854364800 70.8587139608806600, -154.4198105041514300 70.8588418354824000, -154.4162541809856500 70.8589168011694700, -154.4127920249319700 70.8591941269074800, -154.4092856680990700 70.8594232957485700, -154.4057521157675000 70.8596019946364200, -154.4021981218458300 70.8597298809293100, -154.3986304771148000 70.8598067109110200, -154.3950560002342000 70.8598323370927100, -154.3932258924609500 70.8598256218550100, -154.3857428036874000 70.8597705482722500, -154.3831789435533600 70.8597355970202300, -154.3811304713941000 70.8597797105652500, -154.3775559999094500 70.8598053367469400, -154.3772193440974300 70.8598051101178000, -154.3752250677826200 70.8598023105282700, -154.3727647420991500 70.8600001245062000, -154.3692582440726800 70.8602292942466100, -154.3664487727926000 70.8603755860644900, -154.3636254843286200 70.8604897531996000, -154.3607917961044800 70.8605716580556200, -154.3579511336378700 70.8606212017071500, -154.3555589127136300 70.8606492389712300, -154.3526390001896700 70.8606663350833500, -154.3490643740216200 70.8606407089016600, -154.3454965800031300 70.8605638789199500, -154.3419424358946800 70.8604359917276800, -154.3384087360742900 70.8602572937391500, -154.3349022326519000 70.8600281239988000, -154.3314296255767300 70.8597489213756800, -154.3279975491475400 70.8594202200671400, -154.3246125612207000 70.8590426469007200, -154.3212811270223600 70.8586169249312000, -154.3180096065580600 70.8581438662465100, -154.3148042483174000 70.8576243755645100, -154.3116711685895300 70.8570594448375500, -154.3086163478661200 70.8564501541513300, -154.3056456128547300 70.8557976654299800, -154.3027646283848600 70.8551032269324400, -154.2999788884149300 70.8543681642594300, -154.2972897122504000 70.8536033304294000, -154.2955956458223700 70.8532416725652200, -154.2927150318732000 70.8525472340676300, -154.2899296489341300 70.8518121704953500, -154.2872587137186400 70.8510420765306900, -154.2846922923154000 70.8502346292248100, -154.2842579602366600 70.8500918942256100, -154.2820695041043000 70.8498476743307600, -154.2787396077466700 70.8494219514619200, -154.2754695981434200 70.8489488936765500, -154.2748503357743500 70.8488484834708200, -154.2718657179285000 70.8487410270768100, -154.2683340937434000 70.8485623281889600, -154.2648296488691800 70.8483331584485500, -154.2613590814564200 70.8480539558254300, -154.2579290213072600 70.8477252545169400, -154.2545460208821200 70.8473476813504700, -154.2512165418099200 70.8469219584816300, -154.2479469431968400 70.8464488997969400, -154.2447434654385500 70.8459294091150000, -154.2416122257236000 70.8453644783880300, -154.2385591973490500 70.8447551868025000, -154.2355902061230800 70.8441026980810900, -154.2327109123786800 70.8434082586842400, -154.2299268073762200 70.8426731951119000, -154.2279803264309000 70.8421184474085000, -154.2260880853967800 70.8415438345803600, -154.2242519593604000 70.8409499294957100, -154.2224737685495500 70.8403373212104800, -154.2212239627156700 70.8398929149261100, -154.2185968082960400 70.8389118741836800, -154.2163642575044400 70.8379961934696200, -154.2142556305928500 70.8370493728303400, -154.2125850958255000 70.8362260758727900, -154.2106367811625000 70.8357977206883300, -154.2077586871136800 70.8351032812914800, -154.2049757413373600 70.8343682177191500, -154.2030161518738700 70.8338093718051000, -154.2011115829331800 70.8332303756813500, -154.1992639491719000 70.8326318148064600, -154.1974751085893700 70.8320142926255600, -154.1962253081514000 70.8315688862951400, -154.1936499402925000 70.8306058949461300, -154.1928913684418800 70.8302946368880300, -154.1924318130777000 70.8301732284118100, -154.1904913216171700 70.8296198845500800, -154.1886047616004300 70.8290467726904500, -154.1867739946241300 70.8284544612045000, -154.1850008238289100 70.8278435346514400, -154.1837510170957400 70.8273991292664400, -154.1811081263389300 70.8264119056849500, -154.1788769730938000 70.8254962240715100, -154.1767696663869700 70.8245494025329700, -154.1747902100001700 70.8235732469078700, -154.1729423604015800 70.8225696187929500, -154.1714538313292200 70.8216751611798300, -154.1706496368712200 70.8214068358568600, -154.1683813892896600 70.8206186142576800, -154.1662118998592600 70.8198009218751300, -154.1639814849575300 70.8188852402617000, -154.1618748761246000 70.8179384178237700, -154.1598960735449300 70.8169622621986700, -154.1580488354853500 70.8159586340837600, -154.1563366639058800 70.8149294481355600, -154.1547628035605200 70.8138766684735400, -154.1533302330038300 70.8128023014850800, -154.1520416618931500 70.8117083958258600, -154.1508995228946300 70.8105970379230000, -154.1502817632927200 70.8098964984247300, -154.1488580645480200 70.8090404607487500, -154.1480356489260300 70.8084901718839900, -154.1479171353674600 70.8085293706340000, -154.1452989903560800 70.8093573845357000, -154.1425714005496600 70.8101462824250200, -154.1397918299289800 70.8108813468966800, -154.1369172270483700 70.8115757871929100, -154.1359258674847600 70.8117880164039100, -154.1331046753404600 70.8126704635710700, -154.1320643180138500 70.8130217189772100, -154.1302883566223400 70.8136074096543100, -154.1283078390355000 70.8145774256077500, -154.1262015845354700 70.8155242480456800, -154.1239715446510300 70.8164399296590500, -154.1218279332125300 70.8172483842056400, -154.1195877975388000 70.8180280559501000, -154.1152006887607500 70.8194775661368100, -154.1132165208257400 70.8204384126027000, -154.1111096475921400 70.8213852341413000, -154.1088789539006000 70.8223009157547400, -154.1078777125863400 70.8226778917713200, -154.1077597539094800 70.8227318699798600, -154.1057835341827300 70.8237164036891600, -154.1036763156094500 70.8246632261270300, -154.1014452549945000 70.8255789068411400, -154.1007623646913500 70.8258381355216200, -154.1003294409509000 70.8260732407874800, -154.0983497363512200 70.8270493964125800, -154.0962421661430000 70.8279962179511800, -154.0940107332087300 70.8289118995645600, -154.0919496246754000 70.8296899516300300, -154.0897990533836000 70.8304414251317100, -154.0785495274387200 70.8342229817053000, -154.0756884683481200 70.8351385949702600, -154.0726945856865500 70.8360072132623500, -154.0699114105831000 70.8367422768346800, -154.0676115230533300 70.8372971585370700, -154.0669299628474700 70.8380689881933000, -154.0657862545320000 70.8391803433982000, -154.0644959135555300 70.8402742463594600, -154.0634282483149800 70.8410738488790900, -154.0628056152869000 70.8419142887135000, -154.0618104497924000 70.8430409791579300, -154.0606664581904700 70.8441523343627800, -154.0603579250781400 70.8444179212501100, -154.0593483623370300 70.8455689734294100, -154.0582042259442500 70.8466803286343000, -154.0569134002332000 70.8477742306962500, -154.0554783223666700 70.8488485949867500, -154.0546215841188000 70.8494206771226200, -154.0543924863241600 70.8496799669569600, -154.0532481152083300 70.8507913221618500, -154.0529411900838300 70.8510555726566000, -154.0519304051640300 70.8522079621278000, -154.0507858883580400 70.8533193164333900, -154.0494946336703800 70.8544132184952700, -154.0480590791631500 70.8554875818864500, -154.0464779621881600 70.8565350456559000, -154.0455655046443000 70.8572095785592600, -154.0445692635606500 70.8578745336828300, -154.0443974121108400 70.8580689509213900, -154.0432525598577300 70.8591803052269700, -154.0419609265554800 70.8602742063895900, -154.0405249502662200 70.8613485688814000, -154.0389473460431600 70.8624013449461900, -154.0372310996355000 70.8634305272970600, -154.0359885558271700 70.8641040115909400, -154.0359343374996400 70.8641440575023000, -154.0358033836192200 70.8642561588946500, -154.0363583912267400 70.8649959924711100, -154.0370607536508200 70.8661462757301000, -154.0376095550369000 70.8673055126393500, -154.0380037233931000 70.8684714962626000, -154.0382424835037800 70.8696420088716600, -154.0383253524330500 70.8708148228458300, -154.0382521458198500 70.8719877060678400, -154.0380229733815000 70.8731584255209600, -154.0376382461081400 70.8743247517859300, -154.0370986681689700 70.8754844644365700, -154.0364052405094200 70.8766353538385400, -154.0355592581532000 70.8777752274448300, -154.0345623066051200 70.8789019133926700, -154.0334162600523200 70.8800132658995500, -154.0321232777670300 70.8811071643642100, -154.0306858014085700 70.8821815259567000, -154.0291065478289000 70.8832343002228500, -154.0273885063744500 70.8842634807750800, -154.0255349334903500 70.8852671043933900, -154.0235493437272000 70.8862432555218900, -154.0214355061436600 70.8871900734631600, -154.0191974371120000 70.8881057514793200, -154.0170985858310400 70.8888952393239200, -154.0149073507935800 70.8896573320203000, -154.0139561045905300 70.8899633335410600, -154.0132169931696600 70.8905155091834400, -154.0116370794876000 70.8915682825502800, -154.0099183194748200 70.8925974622031800, -154.0080639704758300 70.8936010849221800, -154.0060775488397800 70.8945772360506800, -154.0039628263233500 70.8955240539919500, -154.0017238183994800 70.8964397311087900, -154.0000846348979500 70.8970613110307100, -153.9983881465956600 70.8976661896430200, -153.9966359345007400 70.8982538012719500, -153.9948296353793500 70.8988235946332600, -153.9934684619999000 70.8992400059215700, -153.9918796971902600 70.8997134162412400, -153.9902535826367000 70.9001730417525100, -153.9874614215073600 70.9009081035262000, -153.9845737964435300 70.9016025411244200, -153.9831399002861500 70.9019167552540900, -153.9809040867541800 70.9026278132230300, -153.9779573717353000 70.9034790332308400, -153.9751647465557800 70.9042140941052100, -153.9722766403546400 70.9049085317034300, -153.9692985605800900 70.9055610177268200, -153.9662361855514800 70.9061703084130400, -153.9630953572649000 70.9067352373413700, -153.9615774185630000 70.9069806416433700, -153.9611808643054200 70.9070521224575100, -153.9580410576486700 70.9076242342710500, -153.9548276270933000 70.9081437240536700, -153.9531280721028300 70.9083888603576600, -153.9529030302506000 70.9084253170747700, -153.9515508392997600 70.9086336414294500, -153.9512395119938600 70.9086827866813100, -153.9496925242905300 70.9089625666691700, -153.9481001900717000 70.9092632298142600, -153.9448864942163200 70.9097827195968800, -153.9416064643668000 70.9102557773823000, -153.9382663634019000 70.9106814984524500, -153.9348725693136000 70.9110590707196000, -153.9320833615578600 70.9113255083655600, -153.9314328684321000 70.9113980099102700, -153.9306005431805000 70.9115144972962500, -153.9272066060999600 70.9118920686640900, -153.9254165109631700 70.9120630603620200, -153.9231847218973700 70.9123474943414700, -153.9197906427239700 70.9127250657092500, -153.9163493491431300 70.9130537670178000, -153.9128674142997000 70.9133329687415400, -153.9093514913782000 70.9135621375826300, -153.9058108038255200 70.9137407285518300, -153.9022496414078000 70.9138685779725500, -153.8986748012010800 70.9139454439271600, -153.8976640972203000 70.9139527059526800, -153.8953411366841000 70.9141389672395800, -153.8918250716697000 70.9143681360806700, -153.8882892917174000 70.9145465085146000, -153.8847330863628100 70.9146742850902600, -153.8811632212056700 70.9147512220913000, -153.8775864906240300 70.9147771747269100, -153.8505925525042500 70.9147771747269100, -153.8478139090846000 70.9149999637773500, -153.8455425525467300 70.9151479993807400, -153.8448487210915800 70.9152091730649700, -153.8414080291571800 70.9155537599980900, -153.8379256554446200 70.9158329617218900, -153.8352735943009000 70.9160058024259000, -153.8347940802825600 70.9160480786559300, -153.8344108189041300 70.9160776267810900, -153.8313529233986700 70.9163877570893500, -153.8278704039959200 70.9166669588131500, -153.8258756681275700 70.9167969549155800, -153.8247688688881600 70.9169200541172700, -153.8213264628459500 70.9172457426969300, -153.8207188502946700 70.9173090261906500, -153.8180612286427600 70.9176061190272500, -153.8173238043500500 70.9176938811677400, -153.8171041278531800 70.9177299862499200, -153.8162425431588000 70.9178900808626000, -153.8148473412318000 70.9181282770983900, -153.8130897736740800 70.9184572050360200, -153.8098745885414000 70.9189766939193200, -153.8065930388376300 70.9194497517047500, -153.8032513892402000 70.9198754727748900, -153.7998560222376000 70.9202530441427300, -153.7964134219418500 70.9205817454512700, -153.7929301650950200 70.9208609471750200, -153.7894129084789000 70.9210901160161000, -153.7858683709285400 70.9212688149039500, -153.7823033270368900 70.9213967002975200, -153.7787245900677500 70.9214735302792300, -153.7751390002646300 70.9214991564609800, -153.7749626602985000 70.9214990944077500, -153.7398040615082000 70.9214710562442900, -153.7362746289709300 70.9214430747381900, -153.7350586574310700 70.9214162884310300, -153.7336965847295900 70.9214455298873600, -153.7301110003223800 70.9214711560690600, -153.7298572341240400 70.9214710283653200, -153.7047953050592600 70.9214439920466500, -153.7012818669645600 70.9214153549347700, -153.6977754058103000 70.9213375536851900, -153.6942823571450300 70.9212107294916300, -153.6908091313363200 70.9210351161777300, -153.6872918846127600 70.9208059473366500, -153.6842893900433000 70.9205652806632500, -153.6838083228957400 70.9205405034415400, -153.6826354414724300 70.9205274156078100, -153.6792129976816700 70.9204016912850600, -153.6758097121484600 70.9202291185790200, -153.6722926066184700 70.9199999497379300, -153.6690714706718000 70.9197417471839300, -153.6688097877414800 70.9197340579804600, -153.6686220947338500 70.9197514086006900, -153.6650397667718000 70.9197771606874900, -153.6476552331024800 70.9197771606874900, -153.6440729051404300 70.9197514086006900, -153.6404974345089700 70.9196745372501600, -153.6369356443644600 70.9195466932253600, -153.6333943317829700 70.9193681211419300, -153.6298773791377000 70.9191389514015200, -153.6279453287139000 70.9189822202533300, -153.6275579853127300 70.9189703042362100, -153.6264633143304600 70.9189812660726500, -153.6250560003341300 70.9189991634806900, -153.6243543564683600 70.9189981823203100, -153.6144239147318400 70.9189701450562200, -153.6110181398752300 70.9189373018151000, -153.6076194750587000 70.9188582469106400, -153.6042337847613300 70.9187331152411400, -153.6008669109791400 70.9185621235432100, -153.5973501022254200 70.9183329547021800, -153.5938672896436700 70.9180537529783800, -153.5904251282170800 70.9177250516698300, -153.5870301937884000 70.9173474803020600, -153.5866426048722800 70.9172980958305200, -153.5840440273099700 70.9172793971265500, -153.5804694470073500 70.9172025194807200, -153.5769085435943900 70.9170746817512200, -153.5733681096505200 70.9168961285535600, -153.5698515958744000 70.9166669588131500, -153.5663690764716600 70.9163877570893500, -153.5629272037274400 70.9160590566801800, -153.5595325543838500 70.9156814844130300, -153.5561916116535300 70.9152557633428800, -153.5529107553270800 70.9147827055574600, -153.5496962491825200 70.9142632166741600, -153.5479209802690000 70.9139500178790700, -153.5478316748918500 70.9139403591602800, -153.5475423557950600 70.9139441776816900, -153.5439615521838400 70.9139184058098500, -153.5403876059032500 70.9138415272647100, -153.5368273338144000 70.9137136904345200, -153.5343508203340500 70.9135754376563900, -153.5308763768432800 70.9137378902914900, -153.5273814162193600 70.9138647630484200, -153.5238730359118600 70.9139425229291200, -153.5203576858585000 70.9139710278407200, -153.5101265000379300 70.9139814770635400, -153.5078131613482800 70.9141669658328600, -153.5042970909379700 70.9143961355732700, -153.5009251009126400 70.9145673817793000, -153.5000723097892300 70.9145988760373600, -153.4987961358329800 70.9147207620536000, -153.4953139087099000 70.9149999637773500, -153.4924562292715400 70.9151862124737700, -153.4923495633816200 70.9151956175837200, -153.4917987142392500 70.9152398588324800, -153.4889080000041600 70.9155267596522700, -153.4854256307882000 70.9158059613760700, -153.4819092698968500 70.9160351302171500, -153.4783698297038400 70.9162136483412300, -153.4748099290349600 70.9163414734802600, -153.4712363550737000 70.9164183637165600, -153.4676559210838600 70.9164441706619800, -153.4606222694022000 70.9164441706619800, -153.4586399423794200 70.9166030988540100, -153.4566169866845700 70.9168947588860900, -153.4532757678623800 70.9173204799562300, -153.4498808370309700 70.9176980522233900, -153.4489528221150200 70.9177711437233700, -153.4456099881104200 70.9181814773933200, -153.4422149106895600 70.9185590496604700, -153.4387726044721000 70.9188877500696400, -153.4373475981131200 70.9189892979178500, -153.4340650384707200 70.9194497517047500, -153.4307233888732800 70.9198754727748900, -153.4273280218707000 70.9202530441427300, -153.4239072634094600 70.9205800061624200, -153.4231135316641100 70.9206814703736100, -153.4197180261659500 70.9210590426407600, -153.4167318686807600 70.9213441502124000, -153.4162761983878000 70.9213949124453000, -153.4156146732785300 70.9214864679262300, -153.4137999529054600 70.9216882515116800, -153.4136065761825000 70.9217527742711700, -153.4107756668635100 70.9226526449036800, -153.4078156904417400 70.9235069792637200, -153.4050202467869300 70.9242420401381000, -153.4021292258830400 70.9249364768369900, -153.3991481387755600 70.9255889628603900, -153.3976970439833600 70.9258773808365400, -153.3975797364156800 70.9259044378395600, -153.3946891885552000 70.9266024727260200, -153.3917078514361700 70.9272549587494200, -153.3886421273322800 70.9278642476369900, -153.3854978645347800 70.9284291765653200, -153.3822810624210700 70.9289486663479400, -153.3789978624613500 70.9294217232339900, -153.3756545320310000 70.9298474443041900, -153.3722574572158500 70.9302250156719700, -153.3693151030095700 70.9305058118937400, -153.3688141275699000 70.9305615950416400, -153.3681556754440300 70.9306534410035300, -153.3647558523007000 70.9310137930521600, -153.3640326076187300 70.9311121510050400, -153.3636220077494300 70.9312042190994700, -153.3623143979910400 70.9314272221886300, -153.3604762511780300 70.9317631675361900, -153.3572589085717400 70.9322826564194900, -153.3539751564283000 70.9327557133056000, -153.3521184673933200 70.9329920938101300, -153.3518019905693800 70.9330467788858000, -153.3487371720828000 70.9336702311962900, -153.3455919883795400 70.9342351601246200, -153.3436572570767300 70.9345392667738100, -153.3423748337315500 70.9347579369293200, -153.3405106389547800 70.9350961575617000, -153.3394408144420000 70.9352688678640100, -153.3372390735244000 70.9357974470945600, -153.3342557812792400 70.9364479366230400, -153.3328792492779000 70.9368399439083500, -153.3300819251407000 70.9375750038833500, -153.3271889599025400 70.9382694396829300, -153.3242058682062300 70.9389219257063800, -153.3211383391629900 70.9395312145939600, -153.3179922255607400 70.9400961435222800, -153.3169317521985700 70.9402673015947600, -153.3147229821798600 70.9407974330551400, -153.3117395100703000 70.9414499190785400, -153.3086715898219800 70.9420592079661100, -153.3055250742227700 70.9426241368944400, -153.3023047485652600 70.9431368367956500, -153.3006376186311600 70.9434291335477400, -153.2974183811533400 70.9439486224310400, -153.2957049190467600 70.9441953181594700, -153.2956389456807600 70.9442059868168800, -153.2941339698068400 70.9444298352687500, -153.2937043798532000 70.9444995489151300, -153.2924203772985500 70.9447301314904200, -153.2905577626306000 70.9450681290909400, -153.2886790195211000 70.9453676923651500, -153.2873397518280600 70.9455959304079300, -153.2855314157422000 70.9459291265280300, -153.2823117717708200 70.9464486154113300, -153.2790256714975200 70.9469216722973800, -153.2756793876935700 70.9473473933675800, -153.2722793100421000 70.9477249647354100, -153.2703514162848000 70.9479087852623100, -153.2682085728673000 70.9481813904588400, -153.2648083531229600 70.9485589618266800, -153.2641117805342200 70.9486210024573400, -153.2607647970577000 70.9490423887952500, -153.2573644298245500 70.9494199601630800, -153.2539167591510800 70.9497486605723100, -153.2504283716719700 70.9500278613967300, -153.2469059340615700 70.9502570302378200, -153.2433561750474000 70.9504357291256700, -153.2397858800143200 70.9505636154185600, -153.2362018712193500 70.9506404445009500, -153.2326109996978400 70.9506660706826400, -153.2324279076218000 70.9506660041328100, -153.1707048959141800 70.9506107012229600, -153.1679290970501500 70.9508328598486700, -153.1644065155482200 70.9510620286897000, -153.1609758015919500 70.9512355654690000, -153.1575256892591300 70.9513616441246300, -153.1540623380064700 70.9514400389267000, -153.1505919315723600 70.9514706095810100, -153.1355996008409000 70.9514986477444700, -153.1351389995651600 70.9514990686271900, -153.1315479769575300 70.9514734424454900, -153.1279638170764800 70.9513966133630400, -153.1243933718566000 70.9512687270701600, -153.1208434635549600 70.9510900290816300, -153.1173208775564400 70.9508608602405400, -153.1138323434878400 70.9505816585168000, -153.1103845280235300 70.9502529581075700, -153.1069840177981400 70.9498753867397300, -153.1036381063135300 70.9494337548639500, -153.1032062860412300 70.9493918725369200, -153.0996834023671000 70.9491668639596500, -153.0961951668734300 70.9488876631352200, -153.0927476463867500 70.9485589618266800, -153.0893474266424000 70.9481813904588400, -153.0860010016449000 70.9477556702880200, -153.0827147628759800 70.9472826134019700, -153.0794949840063000 70.9467631245186100, -153.0763478110026500 70.9461981955902800, -153.0732792495377000 70.9455889067027100, -153.0702951541979600 70.9449364215786300, -153.0686167512620300 70.9445122797179700, -153.0684664610583000 70.9444817045670700, -153.0678638190599700 70.9444199751018200, -153.0644643097800500 70.9440424037339900, -153.0611185844550700 70.9436166826638400, -153.0578323088139700 70.9431526522731100, -153.0561454720358700 70.9430266797375600, -153.0526989713804000 70.9426979793283300, -153.0492997570781000 70.9423204079605000, -153.0459543222341700 70.9418946868903500, -153.0426690556324000 70.9414216300043000, -153.0394514639139000 70.9408935642866300, -153.0378410254429300 70.9406235590300900, -153.0346187212769300 70.9401241439141500, -153.0327828848222400 70.9397884701618300, -153.0314716768763500 70.9395649481638800, -153.0295653722441000 70.9392631455777400, -153.0285133318247700 70.9390724731162000, -153.0262059214660700 70.9388876921133800, -153.0227601402682200 70.9385589917041600, -153.0193616364303500 70.9381814194370000, -153.0160169003596300 70.9377556983668600, -153.0127323199406000 70.9372826414807500, -153.0095141652465000 70.9367631525974500, -153.0063685804456000 70.9361982236691200, -153.0033015667139000 70.9355889347815500, -153.0003189768392800 70.9349364487581500, -152.9974264981343600 70.9342420129585800, -152.9946296443425800 70.9335069529835800, -152.9922743648700000 70.9328343212469600, -152.9899991709249600 70.9321328761313900, -152.9878073531268000 70.9314036347699900, -152.9857020797871300 70.9306476547655000, -152.9850073418153300 70.9303884278837100, -152.9829418787646800 70.9299364636968900, -152.9800501294099000 70.9292420269980000, -152.9772539806866400 70.9285069661236200, -152.9742459939574200 70.9276383064627100, -152.9732848444200000 70.9273321394667300, -152.9674651255151000 70.9273321394667300, -152.9657887253693500 70.9273201218262000, -152.9641536823465300 70.9280509747727000, -152.9619110069873500 70.9289666500909000, -152.9596827162843000 70.9298011921713400, -152.9573509882574700 70.9306049855317200, -152.9549197817225000 70.9313766605045500, -152.9523932227690000 70.9321149040796400, -152.9510038421535700 70.9325043042302900, -152.9503961306768600 70.9326729549929400, -152.9475993946962800 70.9334080149680000, -152.9447070373998400 70.9341024516668900, -152.9417245725309700 70.9347549376902900, -152.9386576883016500 70.9353642265778600, -152.9355122357010800 70.9359291555061900, -152.9322942168046200 70.9364486443894900, -152.9290097739818500 70.9369217012755400, -152.9256651791047000 70.9373474223457400, -152.9222668182590300 70.9377249937135700, -152.9215672095590400 70.9377905461968200, -152.9197690924696000 70.9380876399326900, -152.9164843780515600 70.9385606968187400, -152.9131395061832300 70.9389864178889400, -152.9097408647490700 70.9393639892567800, -152.9062949441563100 70.9396926896659500, -152.9028083274423300 70.9399718913897500, -152.8992876776841600 70.9402010602307800, -152.8960203264768400 70.9403675094530400, -152.8927351030425500 70.9404908622635200, -152.8917255915627600 70.9405153687893000, -152.8913236386749500 70.9405441704771500, -152.8878371020006200 70.9408328888268300, -152.8843162984583700 70.9410620576678600, -152.8807681879015000 70.9412407565557100, -152.8771995494196300 70.9413686419493400, -152.8736172052697700 70.9414454719310500, -152.8700280001920400 70.9414710981127400, -152.8664387951142800 70.9414454719310500, -152.8628564509644100 70.9413686419493400, -152.8592878124825300 70.9412407565557100, -152.8557397019256700 70.9410620576678600, -152.8522188983834300 70.9408328888268300, -152.8487321305833300 70.9405536871030300, -152.8452860607031000 70.9402249866938600, -152.8418872708808200 70.9398474153260300, -152.8385422533223200 70.9394216942558300, -152.8352573968114000 70.9389486373697800, -152.8320403419881800 70.9384196345585600, -152.8312197070238200 70.9382820256950000, -152.8302588092966000 70.9381436398171600, -152.8270405143082700 70.9376241500345400, -152.8251757349721600 70.9372858988252200, -152.8238934905921000 70.9370672871256700, -152.8219581657367300 70.9367631525974500, -152.8188125809358300 70.9361982236691200, -152.8157455672041500 70.9355889347815500, -152.8127629773295000 70.9349364487581500, -152.8098704986245800 70.9342420129585800, -152.8070736448328300 70.9335069529835800, -152.8053902002974700 70.9330314949076000, -152.8037467881837000 70.9325413122318200, -152.8027721802918700 70.9322450045033900, -152.7995518024736700 70.9317351671443200, -152.7979369780091000 70.9314462986078500, -152.7964053651154800 70.9311804527157500, -152.7947193467204600 70.9309291686462900, -152.7915746873219400 70.9303642397179600, -152.7885085765095700 70.9297549508303900, -152.7855268634739300 70.9291024648069900, -152.7826352355276600 70.9284080281081000, -152.7798392037162500 70.9276729681330400, -152.7770198021221400 70.9268612958122200, -152.7743169373767400 70.9260083239250900, -152.7672073721225000 70.9236585932695200, -152.7654297388913000 70.9232694809018700, -152.7625389599050400 70.9225750442029700, -152.7597437509732900 70.9218399833286000, -152.7568098737766300 70.9209934766676600, -152.7540027002643800 70.9201022251376100, -152.7377262401738300 70.9146800893147400, -152.7354966490510700 70.9139070176947800, -152.7333623545889600 70.9131056893761000, -152.7311214697799600 70.9121900131586400, -152.7290049738004700 70.9112431970160000, -152.7270168866200000 70.9102670467868300, -152.7259334472707300 70.9096811519636400, -152.7229075064762200 70.9093920756838000, -152.7223292918633000 70.9093277417819100, -152.7217094764111800 70.9093681501200900, -152.7184430272238800 70.9095347837033500, -152.7151575474828000 70.9096461944163800, -152.7139568068611200 70.9097487764848900, -152.7104754520804300 70.9100279782086900, -152.7069601146175700 70.9102571470497800, -152.7034187993381000 70.9104357901796300, -152.6998570019990200 70.9105636575868000, -152.6962815232736500 70.9106405055549700, -152.6926991926136200 70.9106661874946000, -152.6850228071568000 70.9106661874946000, -152.6822209909060000 70.9106449095350000, -152.6789408279568000 70.9111167748193300, -152.6756005822010700 70.9115424958895300, -152.6722066406239300 70.9119200681566900, -152.6687654855387000 70.9122487694651800, -152.6652836918888500 70.9125279711889800, -152.6617679119595400 70.9127571400300700, -152.6582248636864800 70.9129358389178600, -152.6546613171660200 70.9130637252108000, -152.6510840829640200 70.9131405542932000, -152.6474999995253400 70.9131661804748900, -152.6470358396322500 70.9131657514983000, -152.6331035829639400 70.9131394040603000, -152.6303404393597700 70.9133609682341400, -152.6268245110423200 70.9135901370752300, -152.6232817289685800 70.9137688179766300, -152.6197184522447400 70.9138966979742800, -152.6161414896380000 70.9139735342512800, -152.6125576750966000 70.9139991784194300, -152.6100813243935800 70.9139991784194300, -152.6064975098521800 70.9139735342512800, -152.6029205472454200 70.9138966979742800, -152.5993572705215800 70.9137688179766300, -152.5958144884478400 70.9135901370752300, -152.5922985601304200 70.9133609682341400, -152.5888166207904000 70.9130817665103500, -152.5853753218136100 70.9127530652018500, -152.5819812372442600 70.9123754938340200, -152.5786408511943000 70.9119497718645600, -152.5753605416556400 70.9114767149784500, -152.5721465715070300 70.9109572251958300, -152.5690050759234900 70.9103922962675000, -152.5659420497857500 70.9097830055812900, -152.5629633359891400 70.9091305195578900, -152.5600746164503500 70.9084360828590000, -152.5595367031562800 70.9082945259716600, -152.5583628801427700 70.9080610116064300, -152.5560780409688000 70.9075604741366300, -152.5547208371968400 70.9074719853439300, -152.5512399311778600 70.9071927836201300, -152.5477996529316200 70.9068640823115900, -152.5444065756029500 70.9064865109438100, -152.5410671806058600 70.9060607889742900, -152.5377878432343600 70.9055877311889200, -152.5357099092848600 70.9052544981966000, -152.5321950268789500 70.9050279931474300, -152.5287145480379300 70.9047487914236300, -152.5266325824277000 70.9045445320045900, -152.5263955292302600 70.9045271930755800, -152.5232661178370400 70.9043681641595100, -152.5197518235877700 70.9041389953184200, -152.5162715012287700 70.9038597935946800, -152.5128318012466000 70.9035310922861300, -152.5094392931888000 70.9031535200189800, -152.5061004584693500 70.9027277989488300, -152.5028216723822500 70.9022547411634000, -152.4996091942089200 70.9017352513807900, -152.4976840658669000 70.9013888981791600, -152.4953056927035400 70.9013350188960800, -152.4918604097301000 70.9012088790865400, -152.4884345116433600 70.9010351741340500, -152.4849208073493400 70.9008060052929600, -152.4814410695497000 70.9005268026698400, -152.4780019469322700 70.9001981022606700, -152.4746100081453300 70.8998205299935200, -152.4712717337035300 70.8993948080240000, -152.4679934980015000 70.8989217511379500, -152.4663485552416000 70.8986557019991300, -152.4657133928587600 70.8985729095122100, -152.4653386813350600 70.8985484164762700, -152.4648721706141400 70.8985072509089500, -152.4622010204607000 70.8983330126584400, -152.4587217161342500 70.8980538100353800, -152.4552830215941400 70.8977251096261500, -152.4518915054885600 70.8973475373590000, -152.4485532751135400 70.8969256950648500, -152.4478680915391600 70.8968641112897400, -152.4444767229224000 70.8964865399219100, -152.4411390087582300 70.8960608179524500, -152.4378613225419800 70.8955877601670700, -152.4346499235551000 70.8950682703844000, -152.4315109406773300 70.8945033405567500, -152.4284503633935200 70.8938940498705400, -152.4260290529983600 70.8933632376233600, -152.4243973950237300 70.8931815493890600, -152.4210602366405900 70.8927558274195300, -152.4177830954134800 70.8922827696341600, -152.4145722306239200 70.8917632798515500, -152.4114355158363600 70.8911875527634300, -152.4108398552750700 70.8910800954701000, -152.4097408729429000 70.8909022824144600, -152.4093819049509200 70.8908094076281300, -152.4089886323195000 70.8907363691881200, -152.4063407386341600 70.8905538328931500, -152.4029033427150600 70.8902251315846000, -152.3995131063447600 70.8898475593174500, -152.3961759965250000 70.8894271766229700, -152.3954604122682000 70.8893641341475100, -152.3920703233867000 70.8889865618803600, -152.3912858645509800 70.8888730449551200, -152.3904477053972600 70.8887795208582400, -152.3878504462410600 70.8885311362030300, -152.3844605003518000 70.8881535639358700, -152.3811241855327000 70.8877278419664100, -152.3778478734805300 70.8872547841809800, -152.3746378207788000 70.8867352943983600, -152.3715001536091600 70.8861703645707200, -152.3684408596579000 70.8855610738845000, -152.3654657755250800 70.8849085869617900, -152.3625805741341700 70.8842141484642500, -152.3597907575374000 70.8834790866905600, -152.3568213948914300 70.8826200920436800, -152.3539822450845200 70.8817150871815900, -152.3441795556419400 70.8784335464710600, -152.3419185799784500 70.8781815924066300, -152.3399314038112200 70.8779249330892200, -152.3396942876612200 70.8779048818049100, -152.3393770347223300 70.8779079412985300, -152.3358402295429200 70.8777292424106800, -152.3323306441439000 70.8775000726702700, -152.3288549856690000 70.8772208709464700, -152.3258391676434400 70.8769129889433300, -152.3254206555388000 70.8768805135249500, -152.3249125385827700 70.8768356274623000, -152.3223313880830600 70.8766670756251100, -152.3188558752983700 70.8763878730019900, -152.3154209282332000 70.8760591716935000, -152.3120331074419200 70.8756815994263400, -152.3086988853452500 70.8752558774568200, -152.3054246282439700 70.8747828196714500, -152.3029496031416600 70.8743729878231600, -152.3022155432127200 70.8742727062205000, -152.2995634991561400 70.8739866048979400, -152.2962295612452000 70.8735608829284700, -152.2929555829337900 70.8730878242437300, -152.2897478163086500 70.8725683335617900, -152.2887763938154800 70.8723933066058900, -152.2878180348744000 70.8722548271985600, -152.2846104022482300 70.8717353365166200, -152.2829594106482600 70.8714434300703100, -152.2797528239336500 70.8709162717685800, -152.2790032354109500 70.8707946096835700, -152.2779598419731000 70.8706438311479600, -152.2747524692510000 70.8701243404660200, -152.2728204952696000 70.8697653481923500, -152.2716174020214600 70.8695595320468200, -152.2696151613106000 70.8692353435363300, -152.2679916116235600 70.8689443022378200, -152.2674711568683700 70.8688533493027000, -152.2644638806035900 70.8687408773896500, -152.2609307941208000 70.8685622693333200, -152.2574228266021200 70.8683330995929200, -152.2539487698198300 70.8680538969698000, -152.2505152616699600 70.8677251956613100, -152.2471288600088400 70.8673476233941500, -152.2463370375242300 70.8672335866607500, -152.2455328061940300 70.8671437497843000, -152.2429052929449000 70.8668921986161400, -152.2395190342760000 70.8665146263489900, -152.2361863482213700 70.8660889034801500, -152.2329136001824800 70.8656158456947800, -152.2297092581757000 70.8650809909950100, -152.2279447640396000 70.8647945308429700, -152.2247355710897000 70.8642903565148000, -152.2216014418530400 70.8637254266871500, -152.2185455986004600 70.8631161351016200, -152.2155738680395400 70.8624636472795800, -152.2126919203957700 70.8617692087820000, -152.2099052478288900 70.8610341461090300, -152.2073183191850500 70.8602896801247100, -152.2048291171700000 70.8595102053317900, -152.2024420322739500 70.8586970985923000, -152.2001623525105200 70.8578480576417700, -152.2000779439419200 70.8578195752132800, -152.1994413858112700 70.8576353508908000, -152.1966512544518000 70.8567470761167300, -152.1730130142392000 70.8488506229579100, -152.1707855500130800 70.8480759307596500, -152.1686534804737200 70.8472728532596500, -152.1664199934879000 70.8463571734448600, -152.1643104843413400 70.8454103528055700, -152.1623289577152000 70.8444341980798500, -152.1604749909280700 70.8434398977331600, -152.1592079972512300 70.8428823594334200, -152.1572267224352700 70.8419062047076400, -152.1553771758159700 70.8409025783913100, -152.1536628656487000 70.8398733942418000, -152.1520870402846400 70.8388206163784300, -152.1516699392163000 70.8385081990941800, -152.1511689367969800 70.8382073974534600, -152.1495932427339400 70.8371546195900800, -152.1488066920751400 70.8365501726523800, -152.1481538130480000 70.8360880245427300, -152.1472350224782700 70.8354847755020400, -152.1462639830963000 70.8349014050758100, -152.1446885498366700 70.8338486272124300, -152.1442673298733400 70.8335330461132500, -152.1437700551439000 70.8332344082414200, -152.1421947531853000 70.8321816303779900, -152.1407608714170600 70.8311072642888500, -152.1394711221945000 70.8300133613276400, -152.1383279381837800 70.8289020043241000, -152.1380871617930700 70.8286292138672000, -152.1371348858662600 70.8279751045674900, -152.1368979432854200 70.8278157096273700, -152.1362082945771000 70.8274014207390200, -152.1346334521720400 70.8263486419763200, -152.1331999885886000 70.8252742758871800, -152.1319106152826400 70.8241803720266000, -152.1307677640210700 70.8230690150230700, -152.1297735895794600 70.8219423227800500, -152.1296683697994000 70.8218001543537000, -152.1287067508158700 70.8214399174183300, -152.1264761524524500 70.8205242367042200, -152.1243693709497000 70.8195774142662900, -152.1223904064920300 70.8186012577419300, -152.1205430164470200 70.8175976305262800, -152.1188307045733300 70.8165684445781400, -152.1172567147255800 70.8155156649160600, -152.1158240281563400 70.8144412979276000, -152.1145353518250000 70.8133473931677000, -152.1133931183976500 70.8122360352648500, -152.1123967855831700 70.8111125176286600, -152.1120450841133000 70.8108193970975300, -152.1109029954768300 70.8097080391947300, -152.1099094838356000 70.8085813451530200, -152.1090664170814600 70.8074414643521700, -152.1083753762226000 70.8062905677555800, -152.1078376508868400 70.8051308479103300, -152.1074542384223500 70.8039645135515300, -152.1072258420989000 70.8027937851051700, -152.1071528702087500 70.8016208937892800, -152.1072034750603000 70.8007102061112000, -152.1072897668092600 70.7999042444853300, -152.1074413835130200 70.7989600912353000, -152.1076937422723500 70.7980182762225400, -152.1080465175327300 70.7970799622705200, -152.1084992596331000 70.7961463104039700, -152.1091991408276600 70.7949960163531400, -152.1100506881887000 70.7938568631038300, -152.1101653814271800 70.7937279380939200, -152.1103959172377500 70.7930743827765800, -152.1109049281199000 70.7920073119879000, -152.1116046636243000 70.7908570170377500, -152.1124560329195700 70.7897178637884400, -152.1134573920449800 70.7885920160088000, -152.1146068119548000 70.7874816167832300, -152.1159020812160300 70.7863887750220300, -152.1173407159013000 70.7853155699576200, -152.1189199586891000 70.7842640394538900, -152.1206367860588000 70.7832361818044000, -152.1224879163842200 70.7822339512359200, -152.1244698126317300 70.7812592507139000, -152.1265786922528200 70.7803139301437900, -152.1288105325800000 70.7793997872704500, -152.1307567904934500 70.7786646994164200, -152.1327825538717200 70.7779533311813200, -152.1390888995330500 70.7758173316046300, -152.1420676573964400 70.7748583943994200, -152.1451907195760200 70.7739507293427400, -152.1479689097373600 70.7732172027118000, -152.1508413479498000 70.7725242651827700, -152.1538025735299000 70.7718732315644300, -152.1568469603189400 70.7712653366260200, -152.1599687265754400 70.7707017332983800, -152.1617639829214600 70.7704209901366400, -152.1631615716491700 70.7701814323273200, -152.1648872978105000 70.7698677308112000, -152.1680803821039000 70.7693494892875500, -152.1713388525060000 70.7688775916275900, -152.1746565261777000 70.7684529326567700, -152.1780271069653700 70.7680763190669500, -152.1814442006892700 70.7677484631211100, -152.1849013250361000 70.7674699880495800, -152.1883919239481000 70.7672414208549300, -152.1919093784150600 70.7670631959098300, -152.1954470181653400 70.7669356495606500, -152.1989981360551000 70.7668590255236700, -152.2004586224674400 70.7668485340327000, -152.2024020115435700 70.7666919854468100, -152.2058924755572800 70.7664634182522100, -152.2094097924279500 70.7662851933070600, -152.2129472954812900 70.7661576478572000, -152.2164982748754500 70.7660810229209000, -152.2200610497776000 70.7660554659870000, -152.2262856956283200 70.7660554659870000, -152.2265216021901600 70.7659126428542300, -152.2267174934175700 70.7657813382382400, -152.2274148933826000 70.7652605606264200, -152.2289925488670000 70.7642090274247300, -152.2307076513370000 70.7631811670772800, -152.2325607367885400 70.7621849008126000, -152.2335645267814600 70.7610650164374400, -152.2347123584885400 70.7599546127152600, -152.2360058398975600 70.7588617673567300, -152.2374424897790600 70.7577885577957800, -152.2390268784876400 70.7567468263050600, -152.2392265873371000 70.7566129010646100, -152.2399217470909300 70.7560935569721300, -152.2414986777217800 70.7550420219718000, -152.2432129923856500 70.7540141607249800, -152.2450614148524000 70.7530119256599000, -152.2466359451926800 70.7522364312663400, -152.2472722533118200 70.7516206124013800, -152.2485651951276000 70.7505277661435300, -152.2500012442620000 70.7494545547839400, -152.2515852201817400 70.7484131470491800, -152.2517915102699500 70.7482747512788100, -152.2524794925345200 70.7477605540063900, -152.2540557648616200 70.7467090181067400, -152.2546472336828500 70.7463542391568600, -152.2549585358077600 70.7461215530672700, -152.2558089212447000 70.7455542121572300, -152.2560709027499400 70.7452590177895200, -152.2572178243431000 70.7441486113693800, -152.2585102823236400 70.7430557633129000, -152.2599457945627500 70.7419825519532400, -152.2615216109335600 70.7409310142549500, -152.2625912160117700 70.7402888479520000, -152.2641667203178600 70.7392370134774600, -152.2658796806027500 70.7382091495326800, -152.2677266416711500 70.7372069126689700, -152.2697040754826800 70.7362322049523300, -152.2718082075827000 70.7352868780870400, -152.2740350251962000 70.7343727289183400, -152.2761231052970500 70.7335844173870200, -152.2776892476606200 70.7330240210417900, -152.2796620382724200 70.7320372003565600, -152.2803066282482700 70.7317475440140100, -152.2815296603655000 70.7309310090588500, -152.2825998706874500 70.7302885522749400, -152.2841747634545300 70.7292370082813600, -152.2858845050658400 70.7282063519416500, -152.2861218064761600 70.7280007597273100, -152.2875562377301400 70.7269275447704300, -152.2891308678952000 70.7258760061728300, -152.2897347707430500 70.7255133905305800, -152.2900352693122000 70.7252885447306300, -152.2916097699748800 70.7242370052336500, -152.2933214451285600 70.7232091385909000, -152.2951670221403300 70.7222068990292300, -152.2971429738691100 70.7212321895140100, -152.2982717930088000 70.7207309262912500, -152.2984081167411700 70.7206633701184700, -152.3001194843267000 70.7197338974015100, -152.3020951923392400 70.7187591869869700, -152.3026039487132300 70.7185304174448700, -152.3024608548845200 70.7177938825816500, -152.3023881689787800 70.7166209795746000, -152.3023912059893200 70.7164219101430800, -152.3024573430319300 70.7139219369478800, -152.3025580428193800 70.7127990317499700, -152.3028005351165700 70.7116784962656200, -152.3031843720610800 70.7105622865203700, -152.3037088602756600 70.7094523504456400, -152.3044056963657600 70.7083020438043400, -152.3052535421172400 70.7071628779644900, -152.3062507616632800 70.7060370184936500, -152.3073954322533700 70.7049266066775900, -152.3086853550450700 70.7038337532251800, -152.3101180542048200 70.7027605346709700, -152.3116907832030600 70.7017089915767700, -152.3134005329082500 70.7006811222360600, -152.3152440342847200 70.6996788790770600, -152.3172177655873700 70.6987041659645600, -152.3193179586568200 70.6977588346026100, -152.3215406088120300 70.6968446791386800, -152.3239840173485000 70.6959265585638800, -152.3265508965066300 70.6950461159855200, -152.3283540875710600 70.6944549124643200, -152.3298172485671400 70.6937321615101300, -152.3305483209482200 70.6934030114399000, -152.3308707234051300 70.6932091167074100, -152.3327135376996000 70.6922068726491400, -152.3346865333568000 70.6912321586372600, -152.3359581729313000 70.6906713288188400, -152.3362139536110400 70.6905443841161000, -152.3377211777901000 70.6897152802360400, -152.3376174661731000 70.6886089360536400, -152.3375200516090600 70.6852478907775900, -152.3375163877710500 70.6849540121180000, -152.3375984401159000 70.6837811738621400, -152.3378349420289300 70.6826106360720700, -152.3382254150708000 70.6814446263684900, -152.3387690903212200 70.6802853642781800, -152.3394649065801300 70.6791350531402700, -152.3403115157638000 70.6779958828038300, -152.3413072811061000 70.6768700197357000, -152.3424502843531000 70.6757596034229900, -152.3437383293603800 70.6746667454739800, -152.3451689429923000 70.6735935224231800, -152.3467393850146000 70.6725419757316300, -152.3484505169777500 70.6715198782398500, -152.3485803071354500 70.6714413305530200, -152.3493842533805500 70.6709029747925100, -152.3510913779646800 70.6698751000558900, -152.3529320500740300 70.6688728524002800, -152.3549027524600200 70.6678981347911300, -152.3569997241579000 70.6669527989325800, -152.3592189649832300 70.6660386389720500, -152.3606359916576600 70.6654951705657500, -152.3620962433469000 70.6649644230697000, -152.3635986777367500 70.6644467741993500, -152.3651422219359700 70.6639425917772400, -152.3663641307999800 70.6635539659428100, -152.3683779493828200 70.6629347845127400, -152.3704537420465200 70.6623385223049900, -152.3732165052375000 70.6616049821842600, -152.3760729957721200 70.6609120320646900, -152.3790177826445200 70.6602609849565500, -152.3820197996740000 70.6596581927714200, -152.3815212973699400 70.6588457875031400, -152.3809874750918700 70.6576860505708200, -152.3806068343379000 70.6565196991248900, -152.3803800729819500 70.6553489526920700, -152.3803075966182500 70.6541760424904000, -152.3803444031716500 70.6469541797916300, -152.3785358611410500 70.6459590133978300, -152.3768381137879000 70.6449298148591000, -152.3752775076508200 70.6438770208079000, -152.3738653948720400 70.6427901910145700, -152.3736573645956600 70.6426317250741200, -152.3729507879484700 70.6421550241350900, -152.3715303978095800 70.6410806427575200, -152.3702527768441500 70.6399867218098000, -152.3691203361345900 70.6388753468198700, -152.3690774177885600 70.6388262600239600, -152.3678311283039000 70.6389872836363100, -152.3644831303921300 70.6393648595007400, -152.3610885610882000 70.6396935644065100, -152.3576539063027200 70.6399727688282700, -152.3541857256906600 70.6402019403673200, -152.3510319300794700 70.6403654694908600, -152.3478611282884000 70.6404876217064300, -152.3446782575955000 70.6405682063576700, -152.3414882759631400 70.6406070975396000, -152.3365096435052200 70.6406351348036900, -152.3351390002646300 70.6406389848013400, -152.3316034406462300 70.6406133586196500, -152.3280746385337000 70.6405365277386200, -152.3245593370437500 70.6404086405463500, -152.3210642550113200 70.6402299407592400, -152.3175960699026600 70.6400007692202000, -152.3141614097212700 70.6397215647984400, -152.3107668368200200 70.6393928598926100, -152.3074188335123200 70.6390152840281800, -152.3041237966758400 70.6385895584614300, -152.3008880170683000 70.6381164952800900, -152.2977176730321700 70.6375970001015500, -152.2946188143068000 70.6370320639786100, -152.2915973566326800 70.6364227660978400, -152.2886590619661100 70.6357702719805000, -152.2865428942391500 70.6352411846330000, -152.2862717630314000 70.6351884726699400, -152.2833107290069000 70.6347555048627100, -152.2801409128728000 70.6342360096841700, -152.2770425712576200 70.6336710726619100, -152.2740216172038300 70.6330617756804600, -152.2710838126678000 70.6324092806638100, -152.2682347604258300 70.6317148340724000, -152.2654798914837800 70.6309797624061800, -152.2629465237630200 70.6302425854270300, -152.2614698045878000 70.6297651182656500, -152.2612548666187700 70.6297073835889400, -152.2585354336633000 70.6291032900848000, -152.2556868481695000 70.6284088434933900, -152.2529324315864300 70.6276737718271800, -152.2505730161317700 70.6269891089602900, -152.2482953085816000 70.6262746326682400, -152.2471012670098400 70.6258852639937800, -152.2443631992022400 70.6249478673502700, -152.2417656891352000 70.6239674093685000, -152.2395569164185400 70.6230517169632300, -152.2374707428804500 70.6221048828341500, -152.2358184724445200 70.6212818125056900, -152.2343380057943000 70.6207943826547100, -152.2317459240351200 70.6199003018575100, -152.2292810684665200 70.6189674216092800, -152.2273096430255600 70.6181460357110500, -152.2266844909964300 70.6180781701714900, -152.2232929820854400 70.6177539232050400, -152.2199485706699700 70.6173763464412900, -152.2166570672698000 70.6169506199751700, -152.2134247581460300 70.6164775567938800, -152.2102578135472300 70.6159580607159700, -152.2083166511924600 70.6156087055773600, -152.2072896200199000 70.6154270362288200, -152.2071610016788600 70.6154106613730000, -152.2070733384637700 70.6153977857792400, -152.2035816972375000 70.6152300145535600, -152.2001178099889000 70.6150008430145700, -152.1966874062987400 70.6147216376934900, -152.1932970386274000 70.6143929327876700, -152.1899531838923000 70.6140153569232300, -152.1879620039432800 70.6137577731028000, -152.1867929545312000 70.6139495643209900, -152.1835610501023600 70.6144226275023400, -152.1802699594910000 70.6148483539684000, -152.1769259671596300 70.6152259307321500, -152.1747610004198000 70.6154358208065700, -152.1728551040797600 70.6156823519590400, -152.1695109732527800 70.6160599278234700, -152.1661203249930000 70.6163886327293000, -152.1626896380163600 70.6166678371510000, -152.1592254647833300 70.6168970086900500, -152.1558189614758600 70.6170719924785400, -152.1523930714830300 70.6171985936402400, -152.1489540307039200 70.6172765819487700, -152.1455080975206600 70.6173058144118500, -152.1254253683860000 70.6173328507305200, -152.1251109995729400 70.6173330539772900, -152.1215795255746200 70.6173074277956000, -152.1180548000889000 70.6172305969145700, -152.1145435599373200 70.6171027097223600, -152.1110525158608800 70.6169240090358700, -152.1075883381312800 70.6166948374968200, -152.1041576457587000 70.6164156330750600, -152.1007669939016300 70.6160869281692400, -152.0974228585780300 70.6157093523048000, -152.0953507810137000 70.6154413255567900, -152.0931290328785200 70.6152259307321500, -152.0897850405471600 70.6148483539684000, -152.0877464636283800 70.6145846493621400, -152.0857690388100700 70.6143929327876700, -152.0824251840749600 70.6140153569232300, -152.0816862732029000 70.6139040757125800, -152.0807196809684900 70.6137947289436200, -152.0782980432201000 70.6135599348431800, -152.0749543269806000 70.6131823589787500, -152.0716635079645000 70.6127566325126300, -152.0684318697349800 70.6122835693313400, -152.0652655834399000 70.6117640732534300, -152.0621706916241000 70.6111991362312200, -152.0591545336547800 70.6105751524214000, -152.0590789321469700 70.6105641977795800, -152.0587545736646000 70.6105158852999500, -152.0556910645909200 70.6102259447715700, -152.0523479005351500 70.6098483689071400, -152.0490576247095800 70.6094226424410700, -152.0458265206773700 70.6089495783604100, -152.0437470470885200 70.6086083405025400, -152.0432480735397300 70.6085599497819200, -152.0399051846765000 70.6081823739174900, -152.0391642827054600 70.6080704478928900, -152.0381754996995200 70.6079670186630300, -152.0368813599867500 70.6079367366911000, -152.0333919014151000 70.6077580360046100, -152.0318429325053000 70.6076555177879800, -152.0309678606782000 70.6077836468978100, -152.0276778519512700 70.6082093733639300, -152.0258324862802000 70.6084244947946300, -152.0183801570186000 70.6092595458914000, -152.0154821160068000 70.6095641633555100, -152.0125516103685000 70.6098323609747400, -152.0095927886762300 70.6100637583358500, -152.0066098390727800 70.6102580289849000, -152.0031203652126500 70.6104367107856200, -151.9996107069685300 70.6105645925819700, -151.9960875687862400 70.6106414288589100, -151.9935583739198000 70.6106506253261700, -151.9925576164408200 70.6106578936469300, -151.9900271580269000 70.6106670739263800, -151.9864970608906300 70.6106414387514300, -151.9829737113676600 70.6105646051724400, -151.9794638426821500 70.6104367206782000, -151.9759741601793000 70.6102580289849000, -151.9725111263873300 70.6100288574458500, -151.9690815671605700 70.6097496521247800, -151.9656920349594000 70.6094209481183300, -151.9646234380212200 70.6093002564017500, -151.9626228736466700 70.6091678600087700, -151.9591934610094000 70.6088886546877500, -151.9558040735991000 70.6085599497819200, -151.9524611847358500 70.6081823739174900, -151.9517202827648000 70.6080704478928900, -151.9507318064276800 70.6079585920154500, -151.9483330789084300 70.6077259526906000, -151.9449903285408000 70.6073483768261700, -151.9440280503542000 70.6072227478316000, -151.9439599698767000 70.6072150433396400, -151.9406390829273000 70.6068929547461200, -151.9372964710552800 70.6065153779823600, -151.9340065063951200 70.6060920437129200, -151.9333621214647000 70.6060319582083500, -151.9300195815384300 70.6056417459698800, -151.9298323723660600 70.6056301447154600, -151.9238081026617800 70.6056634178325500, -151.9224719996830000 70.6056670888651200, -151.9189425662464100 70.6056414617841000, -151.9154198786244800 70.6055646318024000, -151.9119106673434000 70.6054367437108100, -151.9084216413456500 70.6052580430243200, -151.9049594655069000 70.6050288714852700, -151.9015307552401500 70.6047496670635200, -151.9008528957445200 70.6046839140314500, -151.9001448154308500 70.6046674591360100, -151.8967740997448700 70.6045417033370200, -151.8934222599293000 70.6043690460946300, -151.8899602360760000 70.6041398745556400, -151.8865316319292400 70.6038626567362800, -151.8855594989716700 70.6038417762770200, -151.8852938374406300 70.6038338550484400, -151.8820505844668700 70.6037142991756400, -151.8819183877233700 70.6037084409918000, -151.8785618390576000 70.6035360481501500, -151.8750999590958200 70.6033068766111000, -151.8716715420080200 70.6030276712900800, -151.8685079986451900 70.6027238901954200, -151.8682827805258700 70.6027043560212600, -151.8650456582305000 70.6025008799117600, -151.8616173778396800 70.6022216745906800, -151.8582291091860000 70.6018929696848500, -151.8548873246902500 70.6015153929211000, -151.8515984068409600 70.6010896664549800, -151.8483686356040300 70.6006166032736900, -151.8452041785300000 70.6000971071957800, -151.8421110736671000 70.5995321701735700, -151.8390952250645700 70.5989228713934800, -151.8361623847862000 70.5982703754775100, -151.8333164666815700 70.5975842377224600, -151.8315148701151400 70.5972288760118500, -151.8285822762510000 70.5965763800959400, -151.8257382755009800 70.5958819326051500, -151.8229882916763000 70.5951468591403000, -151.8206520184758400 70.5944680391687000, -151.8183959351242700 70.5937598941038700, -151.8121737039532500 70.5917299704618100, -151.8094232030183800 70.5907875214270500, -151.8068146169010200 70.5898014948431900, -151.8046095736728500 70.5888857997399000, -151.8025269227792400 70.5879389638121800, -151.8005706185391800 70.5869627919993300, -151.7987443760520700 70.5859591476965400, -151.7970516586071300 70.5849299446612700, -151.7954956731867400 70.5838771461134800, -151.7940793668692500 70.5828027593399300, -151.7928054169364000 70.5817088329963000, -151.7916788820747000 70.5806070564705100, -151.7884549600283600 70.5810897244113000, -151.7851692959262400 70.5815154508774200, -151.7818308173383200 70.5818930276411700, -151.7784459013572300 70.5822217325470000, -151.7750210132091700 70.5825009378680200, -151.7728562937829000 70.5826443878282800, -151.7718868524962000 70.5827540250782600, -151.7685017926236000 70.5830827299840800, -151.7650767587853700 70.5833619353051000, -151.7616182944487000 70.5835911077434700, -151.7581330087313300 70.5837698084299600, -151.7546275602137000 70.5838976956222300, -151.7525481288930000 70.5839430969963900, -151.7501334321121600 70.5841399334112800, -151.7466748346758400 70.5843691049502700, -151.7431910769066400 70.5845477327916900, -151.7396871716256300 70.5846755957022100, -151.7361698097888600 70.5847524508649800, -151.7326457066340300 70.5847781498917500, -151.7225492923159600 70.5847781498917500, -151.7190251891611300 70.5847524508649800, -151.7155078273243300 70.5846755957022100, -151.7120039220433500 70.5845477327916900, -151.7085201642741200 70.5843691049502700, -151.7050615668378000 70.5841399334112800, -151.7016364016985500 70.5838607280902000, -151.6982512105249200 70.5835320231843800, -151.6949124621404000 70.5831544464206200, -151.6916265309396300 70.5827287190551800, -151.6883996932912000 70.5822556558739000, -151.6870850751161000 70.5820333650478300, -151.6858641483117700 70.5819210280331000, -151.6825256652272500 70.5815434512693400, -151.6792399966285200 70.5811177248032200, -151.6760134161861800 70.5806446607225600, -151.6728520842562500 70.5801251637453800, -151.6697620352896600 70.5795602258238000, -151.6667491643424300 70.5789509270437000, -151.6638192198810800 70.5782984302284100, -151.6609777893934300 70.5776039818383700, -151.6582302903955500 70.5768689083734600, -151.6555775268813300 70.5760932592965600, -151.6530293383332500 70.5752797406675500, -151.6466953556061400 70.5731667610372700, -151.6457874693162200 70.5728503543604100, -151.6434442434570500 70.5727301392845400, -151.6399876371197300 70.5725009677455000, -151.6365644423950700 70.5722217624244800, -151.6331811991530000 70.5718930575186500, -151.6298443717203400 70.5715154807549000, -151.6265603317938500 70.5710897533894600, -151.6233353512454300 70.5706166893087900, -151.6201755859345000 70.5700971923316200, -151.6170870676140500 70.5695322544100900, -151.6140756904407300 70.5689229547306200, -151.6111471974851400 70.5682704579153300, -151.6083071753358500 70.5675760086259600, -151.6055610361129000 70.5668409351611100, -151.6037719590086700 70.5663251263035800, -151.6020291349366000 70.5657920666506000, -151.6003340594692500 70.5652422175543300, -151.5986881913069600 70.5646760502595500, -151.5950776174380500 70.5633968896547700, -151.5935190068966300 70.5628285442020300, -151.5920099687850000 70.5622455631822700, -151.5898079247958500 70.5613298671796700, -151.5877281049680500 70.5603830294533000, -151.5857744600233000 70.5594068558417600, -151.5839506987657000 70.5584032088410700, -151.5822602808872300 70.5573740040071600, -151.5807064088736500 70.5563212027613500, -151.5792920244073800 70.5552468141891600, -151.5780198029715000 70.5541528851475700, -151.5768921448565700 70.5530415020637000, -151.5759111760599000 70.5519147828410400, -151.5750787419903200 70.5507748750604800, -151.5743964029716000 70.5496239496856100, -151.5740293239940700 70.5488603146518500, -151.5737283227039000 70.5480934762330200, -151.5734936383207000 70.5473240702497200, -151.5733254579035400 70.5465527325226300, -151.5731895406647400 70.5457746723632800, -151.5730857247263800 70.5449757497311200, -151.5730532349188300 70.5441761526074000, -151.5731346802212700 70.5430032954657800, -151.5733695004021000 70.5418327387899400, -151.5737572233171600 70.5406667102005800, -151.5742970827441500 70.5395074274259200, -151.5749880273755300 70.5383570965028600, -151.5758287163221800 70.5372179063813300, -151.5768175272070800 70.5360920217294700, -151.5779525534675300 70.5349815838330900, -151.5792316151468800 70.5338887051996200, -151.5806522570959500 70.5328154614644500, -151.5822117570669100 70.5317638931891800, -151.5839071302098700 70.5307359977681500, -151.5843776582023300 70.5304908416790700, -151.5845068179352800 70.5304071975342000, -151.5858034694545300 70.5294274590101000, -151.5873627077227500 70.5283758898355000, -151.5876577896752300 70.5281969535266200, -151.5881983757544200 70.5277884580709200, -151.5897574872182400 70.5267368888963800, -151.5914524394784700 70.5257089934753500, -151.5932799904791500 70.5247067242360100, -151.5952366490520800 70.5237319850431300, -151.5973186821114500 70.5227866276008500, -151.5995221164524800 70.5218724469559100, -151.6008230244629800 70.5213556470455400, -151.6027755893219600 70.5203709820352700, -151.6048572761423500 70.5194256245929400, -151.6070603444593000 70.5185114430487400, -151.6085026348886500 70.5179598285832900, -151.6093811736022600 70.5176317568002000, -151.6099874659487600 70.5174154950291300, -151.6115163089304800 70.5168850038398900, -151.6118139323670600 70.5167844776216300, -151.6130889920633000 70.5163722976435000, -151.6143535036112800 70.5159690830068400, -151.6169203971585700 70.5151464551448700, -151.6183885475933600 70.5146952616770500, -151.6203251863582300 70.5137319744511000, -151.6224061905931800 70.5127866161095100, -151.6246085376538700 70.5118724345652500, -151.6260018438100000 70.5113338197999700, -151.6274372823047000 70.5108076948193300, -151.6289138467965600 70.5102944247479400, -151.6299628367155200 70.5099485634754600, -151.6298825263574800 70.5098893278302500, -151.6283225515445000 70.5088493005548600, -151.6269114657915000 70.5077749074860700, -151.6256422094204000 70.5066809748471400, -151.6245171782251800 70.5055695872666800, -151.6235384928071700 70.5044428635473500, -151.6227079940786400 70.5033029503709400, -151.6220272387660400 70.5021520196000900, -151.6215419861737000 70.5011044560059200, -151.6211807590847200 70.5000513157157200, -151.6209441006896600 70.4989942381935700, -151.6208323581268000 70.4979348656016200, -151.6207549615722000 70.4962678291970000, -151.6207453532154500 70.4958151995119200, -151.6208265916738500 70.4946423360750000, -151.6210608407851300 70.4934717731039200, -151.6214476275059700 70.4923057373199500, -151.6219861892112400 70.4911464482500500, -151.6226754772914000 70.4899961101324400, -151.6235141526559900 70.4888569128163500, -151.6245005983239200 70.4877310209698700, -151.6256329113297700 70.4866205758789300, -151.6269089180121300 70.4855276900509000, -151.6283261677184300 70.4844544391211200, -151.6298819453954300 70.4834028627519700, -151.6315732742871500 70.4823749610357000, -151.6333969204315000 70.4813726846017500, -151.6353493998549000 70.4803979391136300, -151.6374269857667500 70.4794525762754300, -151.6396257157541400 70.4785383893352600, -151.6421071602172500 70.4775969214608200, -151.6447170287678400 70.4766951622519900, -151.6536338131499200 70.4737539268023200, -151.6560070313993500 70.4730021169542000, -151.6584694821808300 70.4722831674342800, -151.6612063916616000 70.4715496030318000, -151.6640361534457000 70.4708566304291800, -151.6669533904865500 70.4702055626366400, -151.6686258093336000 70.4698747452233600, -151.6690149486809000 70.4697876872520000, -151.6714569326912600 70.4691896272995000, -151.6743739305124400 70.4685385595069500, -151.6773728529747400 70.4679306321929700, -151.6804480037723400 70.4673669991877300, -151.6835935436071200 70.4668487297851100, -151.6868035009807400 70.4663768069441400, -151.6900717829863700 70.4659521254902800, -151.6933921878991200 70.4655754903166700, -151.6967584168674300 70.4652476163844300, -151.7001640838054000 70.4649691260244100, -151.7036027288828000 70.4647405462392800, -151.7070678311155000 70.4645623114016100, -151.7105528200565600 70.4644347587571900, -151.7140510874876600 70.4643581302235600, -151.7175560000093500 70.4643325705917000, -151.7202202011013700 70.4643473356610500, -151.7227438651372300 70.4643752982814200, -151.7255807567465000 70.4644235010437700, -151.7284108036156700 70.4645051846666200, -151.7308202231747300 70.4646035057472200, -151.7318547726795800 70.4643725490539600, -151.7348530809049400 70.4637646217399800, -151.7379276021770800 70.4632009887346800, -151.7408683618853600 70.4627067258347800, -151.7376381922487400 70.4625012936998000, -151.7342335091691000 70.4622220865800800, -151.7331770953466300 70.4621188902746100, -151.7320114705529000 70.4620760969343700, -151.7285486786785500 70.4618974681936800, -151.7251109050442000 70.4616682957553200, -151.7230650903816000 70.4615005182344000, -151.7175411728868000 70.4615005182344000, -151.7162056346822700 70.4614906796512000, -151.7132737674703500 70.4619230700936900, -151.7100073497593700 70.4623487992577100, -151.7066884278286500 70.4627263778201600, -151.7033233418986800 70.4630550845245700, -151.6999185185247800 70.4633342907449700, -151.6964804643019700 70.4635634640826500, -151.6930157460798000 70.4637421647691400, -151.6895309855665000 70.4638700537600500, -151.6860328413425200 70.4639468846410800, -151.6825279998672600 70.4639725108227700, -151.6822151455125200 70.4639723066766800, -151.6623279011117200 70.4639452712573300, -151.6589080986298000 70.4639160315996400, -151.6554951372907300 70.4638380414924700, -151.6520952269131600 70.4637114421294100, -151.6487145539335000 70.4635364637368900, -151.6454656181437300 70.4633198961963100, -151.6447118684579300 70.4634584961127600, -151.6415686650618000 70.4639779957879600, -151.6383605890699000 70.4644510625665200, -151.6350937648653300 70.4648767917306000, -151.6317744310451300 70.4652543702930000, -151.6284089260310900 70.4655830760981400, -151.6250036799758300 70.4658622832178600, -151.6215651985750000 70.4660914556562300, -151.6181000495776000 70.4662701572420400, -151.6146148564904000 70.4663980453335600, -151.6111162778938700 70.4664748762146500, -151.6076110002474300 70.4665005032956600, -151.6072898856197000 70.4665002883576800, -151.6045715390452500 70.4664964986145600, -151.6024763695887400 70.4666682808165800, -151.5990377505917000 70.4668974541542600, -151.5955745261434200 70.4670760640091800, -151.5920912755918600 70.4672039224231500, -151.5885946467255400 70.4672807829817900, -151.5850913152120000 70.4673065008943800, -151.5724916847434300 70.4673065008943800, -151.5689883532298800 70.4672807829817900, -151.5654917243635700 70.4672039224231500, -151.5620084738120000 70.4670760640091800, -151.5585452493637300 70.4668974541542600, -151.5551066303666800 70.4666682808165800, -151.5517012494131000 70.4663890745961800, -151.5486020480460600 70.4660889348564900, -151.5483351688329500 70.4660670120829900, -151.5451633202310000 70.4658622832178600, -151.5417580741757600 70.4655830760981400, -151.5383925691617200 70.4652543702930000, -151.5350732353415000 70.4648767917306000, -151.5318064111369300 70.4644510625665200, -151.5285983351450300 70.4639779957879600, -151.5254551317489000 70.4634584961127600, -151.5231392209982200 70.4630491202207700, -151.5196516689893000 70.4629371672165200, -151.5161870874641000 70.4627584656307100, -151.5127491690389000 70.4625292931924000, -151.5093444805633000 70.4622500860726900, -151.5059795277330000 70.4619213793682200, -151.5026607371033000 70.4615438008058300, -151.4993944479953400 70.4611180716417500, -151.4961868972075000 70.4606450057624400, -151.4930442082236000 70.4601255060873100, -151.4911906749097000 70.4597980350513400, -151.4880457295267600 70.4592915089959900, -151.4849740267299300 70.4587265674771900, -151.4819790423988500 70.4581172650997600, -151.4790664908258600 70.4574647646871900, -151.4762419253245600 70.4567703118004800, -151.4735107301360700 70.4560352338390300, -151.4710162607917700 70.4553032909141700, -151.4696550388489400 70.4548868859211000, -151.4677111812260000 70.4542738936253300, -151.4666785382838700 70.4543934018340700, -151.4633148292159600 70.4547221085385300, -151.4599113997912200 70.4550013156582500, -151.4564747521081000 70.4552304880966200, -151.4530118487178000 70.4554091725953000, -151.4495289138283000 70.4555370543915800, -151.4460326033219500 70.4556138915679000, -151.4425295964637000 70.4556395357360500, -151.4401094039258200 70.4556395357360500, -151.4366063970675500 70.4556138915679000, -151.4331100865612100 70.4555370543915800, -151.4296271516717000 70.4554091725953000, -151.4261642482814000 70.4552304880966200, -151.4227276005982500 70.4550013156582500, -151.4193241711735400 70.4547221085385300, -151.4159604621056000 70.4543934018340700, -151.4126428990505200 70.4540158232716700, -151.4093778177320600 70.4535900941076000, -151.4061714531500200 70.4531170273290300, -151.4030299260902000 70.4525975276538400, -151.4011729016081000 70.4522559543488600, -151.3999574031116400 70.4520436531921000, -151.3980337568523600 70.4517211913799300, -151.3971711523268000 70.4515782387447900, -151.3961192764834000 70.4514230328467200, -151.3929780111262700 70.4509035322722600, -151.3899075727762200 70.4503385916527200, -151.3869138223150200 70.4497292883760300, -151.3840024695383000 70.4490767879634600, -151.3811790668604300 70.4483823350767600, -151.3784464336559700 70.4476627452395400, -151.3779560306462600 70.4475975425925800, -151.3748860914199700 70.4470326010737200, -151.3718928265926400 70.4464232986963500, -151.3689819459600000 70.4457707973844500, -151.3667794523098600 70.4452290502804900, -151.3635743863488300 70.4447560518503900, -151.3618618442487000 70.4444617846836500, -151.3604338899120600 70.4442382995579200, -151.3586586821524200 70.4439780537442200, -151.3555185643302500 70.4434585540690800, -151.3524492483341200 70.4428936125502200, -151.3494565914485000 70.4422843101728500, -151.3465463016704600 70.4416318088609600, -151.3437239305149500 70.4409373550749400, -151.3429470079980000 70.4407280900293800, -151.3425498772750000 70.4406828622243800, -151.3392869327457200 70.4402571330603000, -151.3360826653826600 70.4397840662816700, -151.3329431941730500 70.4392645657072200, -151.3311838000922800 70.4389406631811400, -151.3303032900647600 70.4389561540033400, -151.3279111437842300 70.4389841903681600, -151.3251110002724100 70.4390005850090700, -151.3216104548586000 70.4389749588273200, -151.3181165986021000 70.4388981279462900, -151.3146361098685600 70.4387702389554400, -151.3111756391444000 70.4385915373696300, -151.3077417973460400 70.4383623640319500, -151.3043411477257500 70.4380831578115500, -151.3009801860867000 70.4377544511070800, -151.2976653317896000 70.4373768716453700, -151.2944029160617000 70.4369511424812900, -151.2911991694061300 70.4364780757026700, -151.2880602063134500 70.4359585751282100, -151.2849920198658000 70.4353936336093500, -151.2820004637503600 70.4347843303326600, -151.2790912450648800 70.4341318290207700, -151.2762714135948300 70.4334300016933000, -151.2760363281140300 70.4333744361813400, -151.2745041063793700 70.4330623354584900, -151.2715951332088000 70.4324098341466000, -151.2708750235634600 70.4322325687780900, -151.2695250926089200 70.4329113311930500, -151.2674582652866800 70.4338581779126100, -151.2661557106175000 70.4344032408169500, -151.2659116175271000 70.4351593539211100, -151.2653835724938500 70.4363191169337600, -151.2647050007351800 70.4374700539998500, -151.2638771702951300 70.4386099743708800, -151.2629016325043000 70.4397367052847600, -151.2617802219796200 70.4408480991605200, -151.2605150539265500 70.4419420380946200, -151.2591085151458400 70.4430164374586500, -151.2575632667313500 70.4440692476976600, -151.2558822332784000 70.4450984615248200, -151.2540686010850400 70.4461021166194400, -151.2521258091587400 70.4470782974255500, -151.2500575465185200 70.4480251432458400, -151.2478677423024500 70.4489408464429500, -151.2455605576735700 70.4498236596342600, -151.2431403831221500 70.4506718983894300, -151.2406118222777400 70.4514839430295900, -151.2379796910099000 70.4522582440228000, -151.2378517210800300 70.4522941854283400, -151.2364622990958000 70.4526835783845000, -151.2360367417022400 70.4527977014528200, -151.2352973290085000 70.4531068353122700, -151.2332213780641200 70.4539044548267800, -151.2310531584764400 70.4546740883385500, -151.2273862834502000 70.4559252422561700, -151.2246275357321700 70.4568223780503900, -151.2217434279168300 70.4576742293822300, -151.2190120132937400 70.4584093073437400, -151.2161872202639800 70.4591037602303900, -151.2132744339679000 70.4597562606429600, -151.2120276102859600 70.4600098955402800, -151.2115607317423400 70.4602680837051600, -151.2096165908329800 70.4612442636119500, -151.2075468901768100 70.4621911085328600, -151.2053555634085000 70.4631068108307100, -151.2030464299487600 70.4639887175053400, -151.2029230924267400 70.4640338580761600, -151.2016976222474500 70.4644716300617200, -151.2006282977577000 70.4648474477516000, -151.1999223596291700 70.4651071854482900, -151.1980847083425800 70.4657148294758700, -151.1961895238274300 70.4663023718570100, -151.1942387657064400 70.4668692037508300, -151.1915061172135200 70.4676042817122800, -151.1886800480457400 70.4682987336996700, -151.1857659460415600 70.4689512341122400, -151.1827693672125000 70.4695605364896100, -151.1796960294481700 70.4701254771091500, -151.1765517954290000 70.4706449767842900, -151.1733426681296000 70.4711180426635900, -151.1700747737317800 70.4715437718276700, -151.1667543517319200 70.4719213503900600, -151.1633877441490500 70.4722500570945300, -151.1599813820351000 70.4725292633149300, -151.1565417719851600 70.4727584357532900, -151.1530754880433000 70.4729371373390400, -151.1495891519178000 70.4730650254306300, -151.1460894266856800 70.4731418563116600, -151.1425829997056400 70.4731674833927300, -151.1416886473132000 70.4731658169489500, -151.1401609419738700 70.4731574298715500, -151.1368402663651700 70.4735323464407200, -151.1334733925829700 70.4738610522458100, -151.1300667597731100 70.4741402584662000, -151.1266268781279000 70.4743694318039000, -151.1231623856355700 70.4745480416588600, -151.1196778598453200 70.4746758991734600, -151.1189964732086500 70.4746908719861800, -151.1183903022706000 70.4747500491755000, -151.1149835210726200 70.4750292562952200, -151.1115434892406000 70.4752584287335800, -151.1080767781208000 70.4754371303193900, -151.1045900139179700 70.4755650184109200, -151.1010898579105800 70.4756418492919500, -151.0975830001553000 70.4756674754736400, -151.0940761424000000 70.4756418492919500, -151.0905759863926200 70.4755650184109200, -151.0870892221898300 70.4754371303193900, -151.0836225110700000 70.4752584287335800, -151.0801824792380000 70.4750292562952200, -151.0767756980400000 70.4747500491755000, -151.0763194998450000 70.4747055129491300, -151.0758633016500300 70.4747500491755000, -151.0724565204520200 70.4750292562952200, -151.0690164886200400 70.4752584287335800, -151.0655497775002000 70.4754371303193900, -151.0620630132974000 70.4755650184109200, -151.0585628572900000 70.4756418492919500, -151.0550559995347200 70.4756674754736400, -151.0523111229599400 70.4756517787066600, -151.0474156696973600 70.4755957050778100, -151.0445996090846600 70.4755468395150600, -151.0424743258294300 70.4754848717295200, -151.0415051498427500 70.4756449627448700, -151.0382952329386200 70.4761180286241700, -151.0350265345469200 70.4765437577882500, -151.0323642616013700 70.4768507071944400, -151.0296714054110000 70.4771262486775100, -151.0221346217154000 70.4778491642076100, -151.0201108575300300 70.4780336996955200, -151.0182279703445300 70.4781878371989600, -151.0110880601658000 70.4805096097307500, -151.0089677051954000 70.4811744281573700, -151.0067767435518500 70.4818131635466900, -151.0040420877721000 70.4825482415082000, -151.0012139420697400 70.4832426925962600, -150.9982976978804200 70.4838951930088300, -150.9952989175110000 70.4845044944868800, -150.9922233197503700 70.4850694351064200, -150.9890767753728700 70.4855889338822400, -150.9858652882524300 70.4860619997615500, -150.9825949908661200 70.4864877280263000, -150.9792721281062000 70.4868653065887000, -150.9759030446897400 70.4871940132931600, -150.9724941779639000 70.4874732195135000, -150.9690520390203700 70.4877023919518700, -150.9655832046012000 70.4878810926383600, -150.9620943045085300 70.4880089816292600, -150.9610963232367000 70.4880308747251500, -150.9608487218909800 70.4880456604789200, -150.9574393704305600 70.4883305153410900, -150.9558420764506400 70.4885619927418400, -150.9525713770673600 70.4889877210066000, -150.9492481042166000 70.4893652995689900, -150.9462423064372600 70.4896585253207500, -150.9458793661398000 70.4896998365782700, -150.9449885058148500 70.4898217189971800, -150.9416650971664600 70.4901992966602500, -150.9382954606669500 70.4905280033647200, -150.9348860345628200 70.4908072095851100, -150.9314433308450000 70.4910363820234800, -150.9281953375447600 70.4912052234423600, -150.9249293766893600 70.4913295286348800, -150.9216509188548000 70.4914090880590200, -150.9183654588988000 70.4914437686151100, -150.9110507933594000 70.4914708049337800, -150.9101669999071000 70.4914724291093600, -150.9066574136087000 70.4914468020283500, -150.9031545353535000 70.4913699711473200, -150.8996650578960700 70.4912420830557400, -150.8961956506087500 70.4910633823692500, -150.8927529414950200 70.4908342090315600, -150.8893435108943000 70.4905550028111600, -150.8859738698981500 70.4902262970060700, -150.8841891401167000 70.4900235304616000, -150.8840670589475800 70.4906589050844400, -150.8836894848817800 70.4918252772148400, -150.8831599820475200 70.4929850330328800, -150.8824795316050700 70.4941359647030500, -150.8816494051958700 70.4952758787788400, -150.8806711595463500 70.4964026033974800, -150.8795466337701000 70.4975139918772700, -150.8782779475692000 70.4986079263147800, -150.8768674976368800 70.4996823202828900, -150.8753179486643600 70.5007351251259700, -150.8742630672867000 70.5013781026174200, -150.8727129103724800 70.5024301214530200, -150.8723418321098400 70.5026566642736700, -150.8719063767778400 70.5029883126605300, -150.8703565768944700 70.5040411175036200, -150.8694234016686300 70.5046107741679300, -150.8693263099612000 70.5046771396383200, -150.8677795371958400 70.5057351146838300, -150.8660934099828500 70.5067643240144000, -150.8642742793345000 70.5077679746124200, -150.8623255968488000 70.5087441518211900, -150.8602510614373000 70.5096909931448900, -150.8580546139292600 70.5106066927447200, -150.8558095023066700 70.5114642538722500, -150.8534574406083700 70.5122892712329300, -150.8497354821067800 70.5135404359424500, -150.8471316282220300 70.5143771921537400, -150.8444177395870000 70.5151740733248900, -150.8416785907943000 70.5159091494877000, -150.8388457973956000 70.5166036005757600, -150.8359247607191000 70.5172560991897000, -150.8329210511655600 70.5178653997684300, -150.8298403983157000 70.5184303394886500, -150.8279243666162000 70.5187361458565100, -150.8266889346466000 70.5189512205224700, -150.8248419771754800 70.5192913369257300, -150.8237641657836000 70.5194689854054100, -150.8216055977201200 70.5200481389105100, -150.8187722269566700 70.5207425890992600, -150.8158505940296500 70.5213950877131900, -150.8128462720378000 70.5220043882919200, -150.8097649905618300 70.5225693271128200, -150.8066126293693000 70.5230888258886400, -150.8033952067234000 70.5235618908686200, -150.8001188631949400 70.5239876191333800, -150.7967898562668300 70.5243651967964500, -150.7934145441458600 70.5246939026016000, -150.7899993740718400 70.5249731079226800, -150.7865508697268200 70.5252022803609900, -150.7833008367641700 70.5253709679958500, -150.7800328362463600 70.5254952120344600, -150.7767523333534700 70.5255748056328600, -150.7734648130506500 70.5256096147919600, -150.7659819068395000 70.5256376520560500, -150.7650830002802000 70.5256393265937000, -150.7615675009393800 70.5256137004120100, -150.7580587204335800 70.5255368695309800, -150.7545633632086000 70.5254089814394000, -150.7510881103280000 70.5252302807529100, -150.7488750001810700 70.5250832074241300, -150.7466618900341800 70.5252302807529100, -150.7431866371535400 70.5254089814394000, -150.7396912799286000 70.5255368695309800, -150.7361824994227700 70.5256137004120100, -150.7326670000819600 70.5256393265937000, -150.7291515007411200 70.5256137004120100, -150.7256427202353300 70.5255368695309800, -150.7221473630103800 70.5254089814394000, -150.7186721101297500 70.5252302807529100, -150.7152236012881300 70.5250011083145400, -150.7118084267174800 70.5247219020941400, -150.7084331100999200 70.5243931962890500, -150.7051040986751800 70.5240156195253000, -150.7018277506501500 70.5235898912605400, -150.7008554477207000 70.5234469314307800, -150.6991047392922700 70.5235632848177800, -150.6956301959767500 70.5237419675178200, -150.6921355555114400 70.5238698493141700, -150.6886274926646400 70.5239466864904300, -150.6851127118821000 70.5239723315579000, -150.6825262877579500 70.5239723315579000, -150.6790115069754300 70.5239466864904300, -150.6755034441286200 70.5238698493141700, -150.6720088036633200 70.5237419675178200, -150.6685342603478000 70.5235632848177800, -150.6650860356919600 70.5233341132787400, -150.6630137189079600 70.5231646783073000, -150.6625279995675000 70.5231673349046600, -150.6606590788533700 70.5231537092763000, -150.6602288063143400 70.5232096210272600, -150.6568999270899400 70.5235871986903400, -150.6535238190689700 70.5239087836635000, -150.6526447695404400 70.5240017807576600, -150.6493168894628500 70.5243931962890500, -150.6459415728453000 70.5247219020941400, -150.6425263982746400 70.5250011083145400, -150.6390778894330300 70.5252302807529100, -150.6356046906039700 70.5254088915072000, -150.6321074475006600 70.5255145564517000, -150.6318099373786800 70.5255509753972700, -150.6315353680627400 70.5256026738243800, -150.6298261588501000 70.5259303184295200, -150.6266732760508000 70.5264498163060100, -150.6234553192075800 70.5269228812860000, -150.6201784333879600 70.5273486095507600, -150.6168488742761000 70.5277261872138300, -150.6146167146896000 70.5279435308693200, -150.6125686040578000 70.5282096069878400, -150.6092389037523800 70.5285871846509200, -150.6058628883615700 70.5289158904560600, -150.6024470069238000 70.5291950957770800, -150.5989977849198200 70.5294242682154500, -150.5955218134808700 70.5296029689019400, -150.5920257332009800 70.5297308569935200, -150.5885162269423000 70.5298076878745500, -150.5850000000499400 70.5298333149555700, -150.5844831893476800 70.5298327609731900, -150.5595611822027700 70.5297776882897600, -150.5561828582522700 70.5297463289300000, -150.5528114662761300 70.5296676985055300, -150.5494529552896400 70.5295419382099500, -150.5461132527244000 70.5293692683770800, -150.5426640397136300 70.5291400959387100, -150.5392481681684000 70.5288608906176400, -150.5358721617708000 70.5285321848125500, -150.5325424704586200 70.5281546071494700, -150.5292654542373000 70.5277288788847200, -150.5260473705896500 70.5272558148040500, -150.5228943618852500 70.5267363160282300, -150.5198124472866000 70.5261713772073300, -150.5168075074604700 70.5255620766286000, -150.5138852746856300 70.5249095780146700, -150.5137467278292000 70.5248756277081300, -150.5125543742849200 70.5249731079226800, -150.5091058699399300 70.5252022803609900, -150.5056326711108500 70.5253808911152800, -150.5021393886218600 70.5255087486298700, -150.4986326900465800 70.5255856100878900, -150.4951192681397000 70.5256113262017800, -150.4861544950339000 70.5255985135606200, -150.4826348660062400 70.5256113271011000, -150.4791204071810300 70.5255856550539900, -150.4756126698887600 70.5255088088844700, -150.4721183531794400 70.5253809360813800, -150.4686441300225400 70.5252022803609900, -150.4676432178602000 70.5251357638044900, -150.4668458852294000 70.5252261942335400, -150.4634704301162200 70.5255549000386800, -150.4600551143520000 70.5258341053597000, -150.4566064643168500 70.5260632777980700, -150.4531310684440400 70.5262419784845600, -150.4496355682268500 70.5263698665761500, -150.4461266438295300 70.5264466974571700, -150.4426109996978500 70.5264723245381900, -150.4390953555661700 70.5264466974571700, -150.4355864311688400 70.5263698665761500, -150.4320909309516600 70.5262419784845600, -150.4286155350788500 70.5260632777980700, -150.4251668850437000 70.5258341053597000, -150.4217515692794800 70.5255549000386800, -150.4183761141663000 70.5252261942335400, -150.4150469660446300 70.5248486165704700, -150.4117704831212700 70.5244228883057100, -150.4085529237784000 70.5239498233257200, -150.4054004294862000 70.5234303254492300, -150.4050275247004700 70.5233478054569200, -150.4016151416254600 70.5230549070584000, -150.3982401019990800 70.5227262012532500, -150.3949113639682500 70.5223486235901800, -150.3916352857398200 70.5219228953254200, -150.3884181220986000 70.5214498303454300, -150.3852669641990200 70.5209445975152100, -150.3841029959564800 70.5210362932903600, -150.3809449267669200 70.5212008584329000, -150.3777697416802000 70.5213234432224000, -150.3745824580140000 70.5214038516065200, -150.3713881110724300 70.5214419576802800, -150.3662703382055000 70.5214689922003100, -150.3649999999500200 70.5214723385776100, -150.3614852227648000 70.5214467123959100, -150.3579771626159200 70.5213698815148900, -150.3544825248486000 70.5212419934233000, -150.3510079851303700 70.5210632927368100, -150.3475601858538700 70.5208341202984500, -150.3441457118550800 70.5205549140781000, -150.3407710886148200 70.5202262082729600, -150.3374427606748300 70.5198486306098900, -150.3341670862420200 70.5194229023451300, -150.3309503192018300 70.5189498373651400, -150.3277986019239200 70.5184303394886500, -150.3259239021663200 70.5180880943901200, -150.3247153086645400 70.5178814157947600, -150.3227721812911000 70.5175693420515600, -150.3196916588429400 70.5170044032306600, -150.3166880760938000 70.5163951026519300, -150.3137671635237500 70.5157426031386800, -150.3109344906342000 70.5150481529499300, -150.3081954578540500 70.5143130767871200, -150.3060100540207600 70.5136744160415100, -150.3055558541193500 70.5135369600627100, -150.3038945535907400 70.5130111003820200, -150.3030199134382200 70.5127240196978300, -150.3018517750393500 70.5123235147185000, -150.3005923860297600 70.5118758654788800, -150.2998842076900000 70.5116128092838000, -150.2987746844041200 70.5111932350798200, -150.2982750165787000 70.5110013503321000, -150.2971674691033900 70.5105796923989500, -150.2949710233940000 70.5096639927990600, -150.2928964906804800 70.5087171514754200, -150.2909478108927300 70.5077409742666000, -150.2891286829423300 70.5067373236686300, -150.2874425584273000 70.5057081143380600, -150.2858926308402000 70.5046553094949800, -150.2844818364675600 70.5035809164261900, -150.2832128408998600 70.5024869828880000, -150.2820880408304000 70.5013755944082200, -150.2811095568605400 70.5002488697895700, -150.2802792281038600 70.4991089566131000, -150.2795986121861600 70.4979580258422500, -150.2791603707544800 70.4970250421720300, -150.2788204971681700 70.4960874908450700, -150.2785793961222000 70.4951465301882600, -150.2784373527016400 70.4942033203270200, -150.2782768345083000 70.4925642483414700, -150.2782338577063400 70.4916492034480500, -150.2783137651681000 70.4904780631121600, -150.2769506015889600 70.4894419442903800, -150.2763379069688000 70.4889134055292700, -150.2731274073039700 70.4888429787205300, -150.2696383633197900 70.4887150906290000, -150.2661693877070400 70.4885363890431900, -150.2627271075699300 70.4883072166048200, -150.2593181005498800 70.4880280103844300, -150.2559488786378000 70.4876993036799600, -150.2526258791809500 70.4873217260168900, -150.2493554477956400 70.4868959968528100, -150.2461438293742000 70.4864229309735600, -150.2429971554943000 70.4859034321976900, -150.2399214318285800 70.4853384924775200, -150.2369225282520500 70.4847291901001000, -150.2340061644529000 70.4840766905868500, -150.2311779027379800 70.4833822385994600, -150.2284431345430000 70.4826471615373300, -150.2258379856345000 70.4818819409988500, -150.2233925023620600 70.4810993842292500, -150.2232747235496200 70.4810608536755000, -150.2196422484909400 70.4798489425746800, -150.2171590251688500 70.4789824682663400, -150.2147941058632600 70.4780797728632800, -150.2126011675098300 70.4771640714647600, -150.2105299461001000 70.4762172283424800, -150.2085843752686900 70.4752410484356900, -150.2067681494305300 70.4742373960390300, -150.2050847129890800 70.4732081840105600, -150.2035372567389700 70.4721553764695200, -150.2021287097721000 70.4710809798034500, -150.2008617349810600 70.4699870435672400, -150.1997387245624500 70.4688756523895000, -150.1987617964197500 70.4677489250729000, -150.1979327869685200 70.4666090073998200, -150.1972532511366000 70.4654580730317000, -150.1967549772603500 70.4643758081970200, -150.1966192776575000 70.4639725108227700, -150.1926907511772000 70.4639725108227700, -150.1891867235884000 70.4639468486681700, -150.1856893959488300 70.4638700060959900, -150.1822054484226800 70.4637421296955600, -150.1787415350937400 70.4635634640826500, -150.1753034808709200 70.4633342907449700, -150.1718986574970200 70.4630550845245700, -150.1685335715670500 70.4627263778201600, -150.1652146496363400 70.4623487992577100, -150.1619482319253200 70.4619230700936900, -150.1587405543331000 70.4614500033150600, -150.1585516274556000 70.4614187743570100, -150.1554461200423700 70.4614452845722800, -150.1353085484507200 70.4614723199916300, -150.1350000000499300 70.4614725178424800, -150.1314955884506000 70.4614468916607800, -150.1298768285527700 70.4614113342657300, -150.1278799594925000 70.4622458124943000, -150.1263899267537000 70.4628244228089200, -150.1248513027453800 70.4633886214877500, -150.1236014519454300 70.4638340242208900, -150.1219578194977400 70.4644027114160300, -150.1202648133704000 70.4649549545076200, -150.1185238967604000 70.4654902750562000, -150.1167365796294200 70.4660082072130600, -150.1140040462497000 70.4667432851745200, -150.1111780966918000 70.4674377371619000, -150.1082641178947000 70.4680902375744700, -150.1052646531412000 70.4686872803937400, -150.1036268114281700 70.4690767327051000, -150.1010615339626000 70.4696511054142400, -150.0997649804694400 70.4700891292100100, -150.0983875338575600 70.4709314036613800, -150.0965716020977300 70.4719350569573600, -150.0946263478276700 70.4729112359648300, -150.0928205559238800 70.4737368747570400, -150.0925608155292000 70.4738677674835100, -150.0916078444264500 70.4744070504450500, -150.0896623536346800 70.4753832303518400, -150.0875912158619000 70.4763300734741700, -150.0853983674407000 70.4772457748726400, -150.0839170401392600 70.4778206871750400, -150.0823877052283700 70.4783813775985700, -150.0811378562270600 70.4788267794323800, -150.0794884267494600 70.4793974190557200, -150.0777892629640700 70.4799515174486300, -150.0760418451550000 70.4804885889772700, -150.0742476958744500 70.4810081659941300, -150.0715131489126600 70.4817432430562600, -150.0686851147262400 70.4824376950436400, -150.0657689865494700 70.4830901945569000, -150.0652080470137300 70.4832041728343500, -150.0641700549040800 70.4835081589744200, -150.0614351706965400 70.4842432369358700, -150.0586067893718000 70.4849376880239300, -150.0556903023655200 70.4855901884365000, -150.0526912719845700 70.4861994899146100, -150.0496154179171800 70.4867644296347700, -150.0464686109376000 70.4872839293099700, -150.0432568567185300 70.4877569942899000, -150.0409921497678700 70.4880517902580000, -150.0392670189577300 70.4886273356830800, -150.0367904020553700 70.4894187390835900, -150.0342150180086400 70.4901741408240200, -150.0314792371770200 70.4909092178861600, -150.0286499286512500 70.4916036698735400, -150.0276696523325500 70.4918229128971900, -150.0271604741765300 70.4920781908558600, -150.0250876375843600 70.4930250330788800, -150.0228929896197500 70.4939407335780300, -150.0205089030634000 70.4948497422219000, -150.0180047597118600 70.4957219982716800, -150.0163156431523800 70.4962842831931800, -150.0147876113591400 70.4970501791225400, -150.0127142684487000 70.4979970213455000, -150.0105190835888000 70.4989127209453800, -150.0080925022671500 70.4998369865877000, -150.0067504763533700 70.5002994161851600, -150.0048013199249500 70.5012721687756400, -150.0027275462392400 70.5022190109986000, -150.0005319054230600 70.5031347105984900, -149.9999999996002800 70.5033374600557700, -149.9999999996002800 61.0952733911541400, -150.0015915945764000 61.0958969145110600, -150.0033520642463400 61.0965999766077060, -150.0053716312957300 61.0972486063381550, -150.0073291972846000 61.0979426967981000, -150.0092224446600500 61.0986774348158400, -150.0105774882604500 61.0992454394255450, -150.0118940642596200 61.0998342732331700, -150.0148389041920300 61.1011944402712300, -150.0155440221388700 61.1015291868225750, -150.0167790026488300 61.1019670145661300, -150.0169495995443500 61.1019950185553300, -150.0176914790784800 61.1021168002502000, -150.0199536139680800 61.1025421912691500, -150.0221753234324000 61.1030148992182940, -150.0243523869530700 61.1035340265740960, -150.0264806685479800 61.1040985858811040, -150.0285561203686200 61.1047075069459400, -150.0305747997871600 61.1053596314419000, -150.0325328675977200 61.1060537210024700, -150.0344266006071000 61.1067884581208900, -150.0362523952318300 61.1075624461500400, -150.0380067791895000 61.1083742137989800, -150.0396864114986500 61.1092222205290900, -150.0412880968681600 61.1101048529566800, -150.0424942496099000 61.1108337606695500, -150.0428109404725000 61.1110165298890140, -150.0439841897185400 61.1116598563173740, -150.0455049504930400 61.1125754390053540, -150.0469418117152100 61.1135222299669750, -150.0482920331507700 61.1144984305581700, -150.0484985228884800 61.1146627951519600, -150.0493498643047600 61.1151318644440400, -150.0510384115934000 61.1161535248653540, -150.0522608708424700 61.1169311263704460, -150.0532996138860500 61.1176138745806840, -150.0542934519811800 61.1183120983247360, -150.0552413985716700 61.1190251060238550, -150.0555093497766300 61.1192413093390300, -150.0565181579865700 61.1194422736420500, -150.0573392516051600 61.1195969876109200, -150.0596043623514200 61.1200142550538900, -150.0618272984910000 61.1204869612043350, -150.0621554485151000 61.1205753600648900, -150.0644863437697200 61.1209056064086550, -150.0667859974757600 61.1212828711076700, -150.0690495029322000 61.1217082612273540, -150.0712725577823000 61.1221809673778000, -150.0723707289259600 61.1224426691939000, -150.0732932247025200 61.1225726131356200, -150.0755929998170500 61.1229498778346300, -150.0778546769517400 61.1233890914334700, -150.0780719855336800 61.1234274762970240, -150.0803705177851300 61.1238108806676900, -150.0826342031059500 61.1242362698880000, -150.0848574369211400 61.1247089760384500, -150.0857938569009500 61.1249321140259100, -150.0865237646599700 61.1250692741277800, -150.0887470560318000 61.1255419793789100, -150.0909256699836500 61.1260611040367500, -150.0930554660369000 61.1266256615451200, -150.0945233781513700 61.1270507063250650, -150.0964605583080800 61.1274725540151850, -150.0983612286877400 61.1279347318025000, -150.1002240546963300 61.1284316674875200, -150.1017674936748600 61.1288783967206650, -150.1032803296235000 61.1293489903636700, -150.1047609833326800 61.1298429573866400, -150.1062079115658300 61.1303597824780240, -150.1080124039492600 61.1310263338982600, -150.1099818544789700 61.1317885300167060, -150.1114627375153000 61.1324105128349500, -150.1128974502571000 61.1330573187403300, -150.1142842129460500 61.1337281446382100, -150.1156213042797300 61.1344221613537100, -150.1177885984650000 61.1355875010623900, -150.1190173493711500 61.1362709129722900, -150.1205392945527700 61.1371864911636750, -150.1219772745315600 61.1381332785280200, -150.1230868580720000 61.1389348721467060, -150.1237365903713200 61.1385788017703360, -150.1241166888340800 61.1382764739801700, -150.1247837267875400 61.1377945749597400, -150.1249751420891000 61.1375847028717800, -150.1260513607816400 61.1365316165409350, -150.1267760057080800 61.1359098405667400, -150.1272185351073000 61.1354991993286500, -150.1278599621675000 61.1348656134573500, -150.1290300305114700 61.1338362161685040, -150.1302917712482000 61.1328324639471250, -150.1316427759933000 61.1318562660538900, -150.1330804708870000 61.1309094777902260, -150.1346021138964200 61.1299938986995240, -150.1356876099952000 61.1293876917886200, -150.1362833712805400 61.1290743311155300, -150.1370762846428000 61.1284434567002100, -150.1384271032282000 61.1274672579076540, -150.1398645975730800 61.1265204687446700, -150.1413860292418300 61.1256048887546500, -150.1423899604283000 61.1250429069046960, -150.1461125250729400 61.1230160472528600, -150.1474987589605200 61.1222885532741900, -150.1489392552424000 61.1215861710650200, -150.1504320668863400 61.1209098485107350, -150.1519751803103000 61.1202604966246700, -150.1538697191122000 61.1195257613048850, -150.1558286205943500 61.1188316735429600, -150.1578481597647400 61.1181795499463200, -150.1589629395879500 61.1178526230002000, -150.1593533622678400 61.1176680209624700, -150.1614791365528800 61.1167604872067600, -150.1633734658127500 61.1160257518869800, -150.1637541803111400 61.1158908400902300, -150.1652361470305300 61.1151828308230200, -150.1668837337972500 61.1144270918368900, -150.1685935887231000 61.1137044775796300, -150.1704877345213000 61.1129697413605300, -150.1724462304091800 61.1122756526992800, -150.1744653513948200 61.1116235291026440, -150.1765412573731000 61.1110146089371260, -150.1774621784367700 61.1107703737537800, -150.1784906431286400 61.1102203780680500, -150.1800232218941500 61.1094629339672800, -150.1816161595580800 61.1087352538289700, -150.1832669883807800 61.1080384618056200, -150.1849034154602000 61.1073997749796800, -150.1865884742786400 61.1067914429707460, -150.1883197600488700 61.1062143336246800, -150.1892836911893600 61.1059183379609860, -150.1905749989370200 61.1053714539295360, -150.1924686474101200 61.1046367168111150, -150.1944266270871500 61.1039426272504900, -150.1964452156741500 61.1032905027545300, -150.1978349299380400 61.1028702369719100, -150.1997894184468700 61.1021646217000100, -150.2018076868752000 61.1015119603087560, -150.2029174493807500 61.1010807066093660, -150.2048752096232000 61.1003866152501600, -150.2068935715810200 61.0997344907542000, -150.2089686987464200 61.0991255696893600, -150.2110966448942000 61.0985610094830350, -150.2132733666725000 61.0980418821272340, -150.2154947280992000 61.0975691732787700, -150.2177565077566000 61.0971437822598200, -150.2200544086839800 61.0967665148628500, -150.2223840673708000 61.0964380887468800, -150.2247410582532200 61.0961591271420700, -150.2271209054054300 61.0959301606484360, -150.2293083462032000 61.0957652411730100, -150.2315075942000800 61.0956425619547200, -150.2337151726170800 61.0955623181465060, -150.2359275929840000 61.0955246365527960, -150.2581027360524000 61.0953587763864900, -150.2589720000577200 61.0953554902637300, -150.2614894335904700 61.0953830652762800, -150.2640017194038000 61.0954657345560600, -150.2690534748379600 61.0956875478420900, -150.2713757635806000 61.0958133153322900, -150.2736851119783000 61.0959861605329600, -150.2760649627278200 61.0962151279258600, -150.2779452976373600 61.0964376741594040, -150.2809181955182700 61.0964759466077100, -150.2829740223332400 61.0965207373421900, -150.2850250287820300 61.0966022860666840, -150.2870684125771600 61.0967204821645850, -150.2891013822229800 61.0968751637578300, -150.2914813004216500 61.0971041311507860, -150.2938383614511800 61.0973830918562700, -150.2950658982725500 61.0975561403037100, -150.2959636114315000 61.0976251668680000, -150.2983435853881200 61.0978541342609560, -150.3007007021756500 61.0981330949664400, -150.3030304849688700 61.0984615210824100, -150.3053285100027000 61.0988387884793840, -150.3073362194909000 61.0992136160156200, -150.3093125237539300 61.0996257276452750, -150.3106996704534000 61.0999304925982200, -150.3131323141050000 61.1004997985269260, -150.3155050575123500 61.1011255755848900, -150.3175803150794500 61.1017344966497800, -150.3195988047410200 61.1023866211456800, -150.3215566890899000 61.1030807116056300, -150.3234502431341800 61.1038154487240500, -150.3252758668877200 61.1045894376524640, -150.3270300853701300 61.1054012062007800, -150.3287095611972600 61.1062492129308900, -150.3303110945813300 61.1071318462577440, -150.3318316377199000 61.1080474289457240, -150.3332682929973000 61.1089942208067200, -150.3346183219779600 61.1099704222971800, -150.3358791499028000 61.1109741781158960, -150.3370483719847400 61.1120035799013400, -150.3381237552071000 61.1130566698295200, -150.3391032473169800 61.1141314460094800, -150.3399849732279000 61.1152258651815700, -150.3408301659793600 61.1164347482650800, -150.3415560564668000 61.1176616456684800, -150.3423644363696200 61.1191613254349000, -150.3428813720776400 61.1202050255415660, -150.3433119350977000 61.1212578600622600, -150.3436833640959400 61.1224186590939100, -150.3439497837554800 61.1235861895510800, -150.3441106742681700 61.1247582292089650, -150.3441657199719800 61.1259325477489600, -150.3441068809278000 61.1271931598365100, -150.3439509717599000 61.1288299214637600, -150.3439411241835200 61.1289159901808700, -150.3438287790748700 61.1297734272019400, -150.3437913438953600 61.1300015555274300, -150.3436599682329000 61.1306281698542200, -150.3435285179267300 61.1311690095421900, -150.3434379382102600 61.1314804987260900, -150.3431641180296000 61.1323309201359300, -150.3426921897927000 61.1334831594203400, -150.3421167289038700 61.1346243469361100, -150.3414388190462300 61.1357523063239200, -150.3406597426529700 61.1368648918013950, -150.3397809728136300 61.1379599818677100, -150.3388041732739600 61.1390354909951840, -150.3377311948387400 61.1400893696287540, -150.3365640735731000 61.1411196095823500, -150.3353050254065700 61.1421242467366700, -150.3339564398378000 61.1431013664349600, -150.3325208817332700 61.1440491061813400, -150.3310010778374400 61.1449656592378100, -150.3299935592553000 61.1455254854128600, -150.3293923912458200 61.1458559772715940, -150.3279937467140100 61.1465769232864300, -150.3277261273588600 61.1467098979434800, -150.3265617616159800 61.1472928618761100, -150.3250705561612200 61.1479694029656600, -150.3235289050349200 61.1486190129571100, -150.3216342430258700 61.1493547204440200, -150.3196748963793300 61.1500497587894100, -150.3176545990804400 61.1507028023924600, -150.3161266958902600 61.1511513050887200, -150.3157843248866600 61.1512621914969800, -150.3155811518486500 61.1513248301768040, -150.3137667561308600 61.1519247975913900, -150.3116892763390000 61.1525345999918400, -150.3095586538088000 61.1530999983662600, -150.3073789507779200 61.1536199135282460, -150.3051543221142500 61.1540933544248450, -150.3028890117185000 61.1545194181367150, -150.3005873399337700 61.1548972898780800, -150.2982536972503000 61.1552262492920140, -150.2959207668299000 61.1554999993255700, -150.2954805639768000 61.1560571850910700, -150.2953765492882800 61.1562633142006600, -150.2946981771791000 61.1573912708905140, -150.2939185692865200 61.1585038527706500, -150.2934162565549600 61.1591036412201000, -150.2933468432821700 61.1592040352380760, -150.2930664535539600 61.1599355743672960, -150.2926055887768700 61.1609896922205960, -150.2924097371196400 61.1613630556605600, -150.2921970168788000 61.1623087917174100, -150.2918291482965300 61.1634698839280300, -150.2915390198098700 61.1642079728197250, -150.2910688596401200 61.1653191616500200, -150.2909424734163800 61.1655922371920700, -150.2909058017613000 61.1661310929756040, -150.2907420334180700 61.1672113244431440, -150.2904884255004000 61.1682875008675100, -150.2901453791059200 61.1693578775640400, -150.2896729004839400 61.1705101105532100, -150.2890967678015700 61.1716512917737400, -150.2884180665405200 61.1727792457656400, -150.2878244132660400 61.1736260375116700, -150.2875450784425800 61.1741792887432300, -150.2868663232222000 61.1753072427351300, -150.2860862737625000 61.1764198210179900, -150.2852064058509100 61.1775149056883800, -150.2842283859312400 61.1785904094199400, -150.2831540666068700 61.1796442826575900, -150.2819854866408800 61.1806745163159460, -150.2812497287919200 61.1812728181860700, -150.2804821637208500 61.1818617347313400, -150.2796833013432500 61.1824408738473300, -150.2788536749571000 61.1830098479262000, -150.2781040153879800 61.1835100967136300, -150.2769129658606500 61.1842757920941800, -150.2756662069298800 61.1850205449622400, -150.2740630196925600 61.1859041594494800, -150.2723814241633700 61.1867531554338500, -150.2706246228280500 61.1875659132363700, -150.2687959575673600 61.1883408824258500, -150.2668989132542000 61.1890765872148000, -150.2649371033646000 61.1897716219628500, -150.2630808343130300 61.1903551389785300, -150.2629107275480200 61.1904155455410400, -150.2611790658611700 61.1910765805198500, -150.2592168144044300 61.1917708553407350, -150.2589080870385500 61.1918847571758400, -150.2572659213851400 61.1925389060457400, -150.2555704996787800 61.1931503209306100, -150.2527635563929800 61.1941229916827750, -150.2504907294635600 61.1948702203844160, -150.2481442543538300 61.1955624456504100, -150.2460107279127300 61.1961278413268700, -150.2438280535218000 61.1966477546901600, -150.2416003923442000 61.1971211928888000, -150.2393319936765300 61.1975472539027100, -150.2370900071980500 61.1979155370724500, -150.2348148896953700 61.1982230998162300, -150.2337495150280800 61.1984082504404800, -150.2314446425561700 61.1987861203832040, -150.2291077542194600 61.1991150788978200, -150.2283076103079500 61.1992096363157400, -150.2272501190976800 61.1994082470930040, -150.2249451737807200 61.1997861170357300, -150.2226082116996000 61.2001150755503400, -150.2202436925923000 61.2003944940107660, -150.2178561265589600 61.2006238400182400, -150.2157083368702200 61.2007859599041800, -150.2142746007921500 61.2008658835537200, -150.2119099791622000 61.2011444908256400, -150.2095223564715500 61.2013738368331700, -150.2078862756311000 61.2015010801108000, -150.2062430721600200 61.2016048061169600, -150.2045942011614300 61.2016849222214300, -150.2040301059046200 61.2017041803037500, -150.2037997265760800 61.2017232000656600, -150.2019774357100600 61.2019419061940650, -150.1993363408993800 61.2022201375493750, -150.1971336817739800 61.2024298324708400, -150.1947274880831000 61.2026086689549500, -150.1944146247351200 61.2026201326131060, -150.1920496496715600 61.2028944833937200, -150.1896618947805800 61.2031238294012500, -150.1878111556602800 61.2032659789418300, -150.1859515528218800 61.2033780398647300, -150.1840851888803500 61.2034598862647950, -150.1822141736451800 61.2035114237132800, -150.1779325319607500 61.2035944940906800, -150.1756939997782500 61.2036161839398000, -150.1732599199093600 61.2035905379730140, -150.1708304850388300 61.2035136495353500, -150.1684103320711500 61.2033856652163300, -150.1660040799243000 61.2032068296315400, -150.1632174010621800 61.2029340373760000, -150.1621988900667000 61.2027956200219000, -150.1604640636656000 61.2025857371421000, -150.1598354915146800 61.2025055445952800, -150.1590463831840000 61.2024017412474000, -150.1582458031013000 61.2023782095867550, -150.1563846687174600 61.2022660920065960, -150.1545324115415400 61.2021238345473650, -150.1521447330929400 61.2018944885398900, -150.1497801006710800 61.2016150691801500, -150.1474430279733400 61.2012861115648550, -150.1451379729390700 61.2009082416221300, -150.1428693323537700 61.2004821806082200, -150.1406414337551200 61.2000087424095800, -150.1384585273391400 61.1994888290462900, -150.1363247733695500 61.1989234342691500, -150.1342442412786800 61.1983136345666600, -150.1322208970767000 61.1976605954601500, -150.1305461606767400 61.1970505889136100, -150.1302621691637600 61.1969544909570700, -150.1298822154918200 61.1968196304216600, -150.1285281935212800 61.1963825994774300, -150.1265659717421700 61.1956875647293800, -150.1246685308280200 61.1949518608397500, -150.1232515554149200 61.1943575087920500, -150.1218768778156200 61.1937404686477750, -150.1210988419379600 61.1933792478540700, -150.1200353558469700 61.1928720625956540, -150.1190004502106000 61.1923512957757200, -150.1179948687681400 61.1918173224115660, -150.1170193327759500 61.1912705283122600, -150.1154973012594000 61.1903539797524450, -150.1140596396406300 61.1894062463013000, -150.1127090791606500 61.1884291319988700, -150.1114481864845800 61.1874245011398440, -150.1109043952216400 61.1869451903683060, -150.1099345735217000 61.1874394487716100, -150.0999244455567000 61.1923367798185600, -150.0992043143276000 61.1928493106472050, -150.0979279200374500 61.1937117362077200, -150.0966429435170000 61.1945454077444400, -150.0952921977766700 61.1953545160981200, -150.0935369216915700 61.1963177259823400, -150.0916884605539700 61.1972394726236100, -150.0877570553438000 61.1991013912162900, -150.0877376722557400 61.1994497481074400, -150.0876729786250200 61.2005711235585750, -150.0875115125462300 61.2016902246242000, -150.0872535429166400 61.2028051078694940, -150.0868995086054000 61.2039138370540200, -150.0864265146718700 61.2050660655465300, -150.0858497533634000 61.2062072404718300, -150.0851703119603000 61.2073351890677500, -150.0843894737951400 61.2084477637533300, -150.0842435758803000 61.2086291642046400, -150.0840216438837200 61.2090682366098800, -150.0833421413267400 61.2101961852058600, -150.0825612321151500 61.2113087589920600, -150.0816803929357700 61.2124038382665960, -150.0807012938296000 61.2134793366021800, -150.0796257882994700 61.2145332044439100, -150.0784559169070200 61.2155634345049300, -150.0779181933699000 61.2160036535458400, -150.0777206752689200 61.2161618946557840, -150.0771785540470000 61.2167573303865400, -150.0761029370009000 61.2178111973289560, -150.0749329442000000 61.2188414264907100, -150.0736707978690000 61.2198460537524060, -150.0723188929025600 61.2208231635581800, -150.0708798004624000 61.2217708943113600, -150.0693562544875300 61.2226874383746350, -150.0689846932889400 61.2228919837780840, -150.0695312328800500 61.2229690997442050, -150.0717916068971000 61.2233392499065300, -150.0740624391302400 61.2237646319322800, -150.0758895710468400 61.2241518889985060, -150.0767336873098000 61.2241818031477600, -150.0783381353966000 61.2242611629224000, -150.0799371713633300 61.2243628123939060, -150.0815294624147200 61.2244866661267800, -150.0839190114532000 61.2247156272245000, -150.0857062998058500 61.2249167255265000, -150.0874976620874000 61.2250165718573400, -150.0892796669230600 61.2251536690066600, -150.0916692663235500 61.2253826301043800, -150.0940359168240800 61.2256615854138900, -150.0963751227137000 61.2259900034359800, -150.0986824422409000 61.2263672618397000, -150.1007140170382300 61.2267568229690400, -150.1015357554707000 61.2268944174434750, -150.1021412141457000 61.2269306763097350, -150.1044546760424200 61.2271515201266000, -150.1060987563524800 61.2273306569842900, -150.1082238759311000 61.2274382797528460, -150.1103364193902200 61.2275976773909750, -150.1127262040510600 61.2278266393879560, -150.1148103145443400 61.2280722721177400, -150.1275728311212300 61.2281639418125100, -150.1298023781771700 61.2282012304025300, -150.1320270670954400 61.2282813797818900, -150.1342433563458000 61.2284042622469540, -150.1364477187871700 61.2285696817454550, -150.1388375771924000 61.2287986428431740, -150.1412044839997000 61.2290775972533650, -150.1416965768355300 61.2291466786763300, -150.1421226261582500 61.2291691518349240, -150.1445309575376300 61.2293476852475500, -150.1469208752981200 61.2295766463452100, -150.1489406914597000 61.2298146887969200, -150.1533873101761900 61.2298414094535100, -150.1552532406445000 61.2297629750813140, -150.1576798219661800 61.2296865273114600, -150.1601109997228300 61.2296610288334500, -150.1625470949724400 61.2296866307334540, -150.1649785650087400 61.2297633878700900, -150.1674007936117000 61.2298911545531700, -150.1698091798497500 61.2300696879657950, -150.1721991524689000 61.2302986499627760, -150.1745661716914500 61.2305776043730250, -150.1749600927340700 61.2306329009876400, -150.2021685146652000 61.2306909810040450, -150.2023777896032800 61.2306616037500900, -150.2047448151211000 61.2303826493398450, -150.2071347940354800 61.2301536882421800, -150.2095442990301400 61.2299830769574700, -150.2111011972624200 61.2297726005251660, -150.2134681553310700 61.2294936461149200, -150.2158580667963300 61.2292646850172560, -150.2182663918804600 61.2290861516046900, -150.2206885584302000 61.2289583849215550, -150.2231199664133000 61.2288816277849700, -150.2255559996096700 61.2288560258849660, -150.2260328831110300 61.2288595107578400, -150.2279565149811400 61.2285450133417700, -150.2302959106277500 61.2282165953196800, -150.2326627526838600 61.2279376400101100, -150.2350525463379300 61.2277086789124500, -150.2374607527115400 61.2275301454998840, -150.2390376104973000 61.2274469636065500, -150.2398823203128000 61.2272192894387200, -150.2412062581622600 61.2268845311962200, -150.2450650754928200 61.2259402475444300, -150.2465832830920000 61.2255825080263800, -150.2481232156138700 61.2252470618025200, -150.2496834638207600 61.2249342155416800, -150.2512626013879000 61.2246442552282700, -150.2535697950100000 61.2242669968245000, -150.2559088731959200 61.2239385779030840, -150.2582753941940400 61.2236596234928900, -150.2606648622935400 61.2234306614959100, -150.2630727422132400 61.2232521280832900, -150.2654944600013000 61.2231243614002100, -150.2679254174240400 61.2230476042635700, -150.2703610000600600 61.2230220023635640, -150.2711263797785600 61.2230245294585400, -150.2753727491530000 61.2230525055687200, -150.2776172348474700 61.2230890162451800, -150.2798568695988300 61.2231689767669400, -150.2820880399310700 61.2232922585309900, -150.2843071458580700 61.2234586618877760, -150.2866966166555000 61.2236876238848140, -150.2890631394522800 61.2239665791943250, -150.2914022203361800 61.2242949972164200, -150.2923838249535300 61.2244607494640700, -150.2936964871031800 61.2245696663570700, -150.2960860424368800 61.2247986283540500, -150.2984526488706000 61.2250775827643000, -150.3007918115928000 61.2254060016857100, -150.3030990879525200 61.2257832591901100, -150.3038608658862400 61.2259259474245700, -150.3051222684778700 61.2256263346876600, -150.3073526186284000 61.2251536375304100, -150.3096235506863000 61.2247282555046600, -150.3119307497043200 61.2243509971008850, -150.3142698341854700 61.2240225790787900, -150.3166363614788600 61.2237436237692800, -150.3190258367729000 61.2235146626716200, -150.3215982818352000 61.2233258122365100, -150.3241861574651600 61.2231949006242100, -150.3263233486436000 61.2231109713942500, -150.3285903012014200 61.2230442533896200, -150.3308610003348600 61.2230220023635640, -150.3310755632866000 61.2230222002144160, -150.3333135567752000 61.2230262138887160, -150.3335696108488300 61.2229782485474060, -150.3358766821631300 61.2226009901436300, -150.3382156362425800 61.2222725712222200, -150.3405820322349800 61.2219936168120300, -150.3429713744293700 61.2217646548150500, -150.3453059847833500 61.2215907834879000, -150.3476537378297200 61.2214646436784200, -150.3500104418284000 61.2213864593176700, -150.3523718888515600 61.2213563706999900, -150.3736866640083200 61.2213004184795860, -150.3739999995003400 61.2212999948989140, -150.3764244818043500 61.2213253665724440, -150.3805177155201000 61.2214109964203900, -150.3835514354503600 61.2214109964203900, -150.3850011398906800 61.2212417494072840, -150.3862105113060200 61.2210449840388260, -150.3885493502722600 61.2207165660167900, -150.3894966403576300 61.2206048918023950, -150.3907651934589000 61.2203672387570900, -150.3930720732175800 61.2199899803533750, -150.3954108339428000 61.2196615614319600, -150.3977770338830000 61.2193826061224500, -150.4001661782265300 61.2191536450247300, -150.4025737307930200 61.2189751107128500, -150.4049951203285200 61.2188473440297700, -150.4072773244889200 61.2187734386433250, -150.4074251208726000 61.2187640416272500, -150.4096663654104000 61.2185426429286960, -150.4120738712121600 61.2183641086167540, -150.4144958462063000 61.2182408448391600, -150.4158835729684800 61.2180505554887900, -150.4182496515002000 61.2177716001792760, -150.4206386735359300 61.2175426390815600, -150.4230461028953000 61.2173641047696700, -150.4254673692236700 61.2172363380865900, -150.4273857742340700 61.2171763515074760, -150.4291973352887600 61.2169456601141600, -150.4310365756773800 61.2167426156792100, -150.4328889731475600 61.2165696346809200, -150.4352963287625200 61.2163911012683600, -150.4377175186485300 61.2162633336859600, -150.4401479481692500 61.2161865765493200, -150.4420485088316000 61.2161665945128000, -150.4432783209377400 61.2160215941213440, -150.4456672107731400 61.2157926321243050, -150.4480745070328600 61.2156140978124200, -150.4504956384629000 61.2154863311293400, -150.4529260068297300 61.2154095739927000, -150.4553609995105000 61.2153839720926950, -150.4569108056891000 61.2153943403765800, -150.4584594202660000 61.2154254371342860, -150.4600056516394800 61.2154772389834500, -150.4615483127044500 61.2155497063539000, -150.4651562848346500 61.2157435426304350, -150.4669150619805000 61.2158516582275100, -150.4686658477506600 61.2159866329768100, -150.4710547519752000 61.2162155949737900, -150.4734207135950300 61.2164945502833000, -150.4749472588089200 61.2167089360685850, -150.4764161044196600 61.2168196354178900, -150.4788050715967500 61.2170485974148700, -150.4811710961691300 61.2173275527244400, -150.4835096833252000 61.2176559716458540, -150.4858145279181000 61.2180465094389200, -150.4872880086346600 61.2182669746412100, -150.4895947624882800 61.2186442330449840, -150.4911117506067600 61.2189223357972300, -150.4926164449929000 61.2192307726820700, -150.4949275083977500 61.2196243987470440, -150.4965892415002600 61.2198275627918600, -150.4989280148160000 61.2201559817132200, -150.5012349071652000 61.2205332401169900, -150.5030700781215700 61.2208917629445750, -150.5035040234918700 61.2209678788646000, -150.5053743615375200 61.2212832423278400, -150.5067894465756800 61.2215466339700360, -150.5076469384554200 61.2216970473808700, -150.5090967490157300 61.2219222448158000, -150.5113674787261300 61.2223476268415540, -150.5135976301265000 61.2228203248981200, -150.5157820276184600 61.2233444506858860, -150.5168122882564600 61.2235426306879160, -150.5190425250924300 61.2240153287444850, -150.5212279442142200 61.2245344435098100, -150.5233643934519700 61.2250989911256060, -150.5252966651089800 61.2256616861379800, -150.5271802564636200 61.2262615456338600, -150.5290120927338600 61.2268975929496260, -150.5307891845731700 61.2275687902675260, -150.5327617503544700 61.2283452784119500, -150.5333147165009400 61.2285658074661100, -150.5345039979611000 61.2290602151568350, -150.5356640091866300 61.2295705372505400, -150.5367938328690500 61.2300963699515800, -150.5378925777802000 61.2306373004710740, -150.5391728427524600 61.2312855039229500, -150.5407625149780400 61.2318998173227560, -150.5429003392792000 61.2328092495473000, -150.5482328846398700 61.2351967616212960, -150.5499079879632500 61.2359786447986500, -150.5515140053670000 61.2367935232026100, -150.5518139670409000 61.2369515008111900, -150.5536576159062200 61.2377288019426940, -150.5554192501982000 61.2385405516052400, -150.5571058261729100 61.2393885385502600, -150.5577401980516800 61.2397366715102300, -150.5578250535833100 61.2397774620602600, -150.5594837271922300 61.2404909140245200, -150.5610793331446800 61.2412400348997600, -150.5626117716159300 61.2420191949299800, -150.5640786054432600 61.2428271584466900, -150.5643005518289800 61.2429664733241450, -150.5655641811420000 61.2435893158942700, -150.5667889057833400 61.2442263947323800, -150.5678903927274000 61.2448445095665200, -150.5679695303695000 61.2448841004209600, -150.5686924602888000 61.2452104464050500, -150.5699304886011300 61.2457826400568600, -150.5711315197038400 61.2463728651156900, -150.5722944231491000 61.2469805649012100, -150.5734181017639600 61.2476051692432300, -150.5747086828594000 61.2483733548464800, -150.5759399347801400 61.2491638328446600, -150.5760316206627500 61.2492274266045340, -150.5773146465536700 61.2494076147696660, -150.5796136464526000 61.2497833479232000, -150.5818863852484500 61.2502087281503100, -150.5841185106607200 61.2506814235089200, -150.5863057814866000 61.2512005364756100, -150.5875750036834400 61.2515356373598400, -150.5882014867092000 61.2514573198994300, -150.5902744357166000 61.2512382441497040, -150.5923008025399700 61.2510434069277500, -150.5935453932053000 61.2509307695394200, -150.5956886071434700 61.2507694554460600, -150.5978431831163700 61.2506482951827140, -150.6000058835646500 61.2505674704124800, -150.6021734601370400 61.2505271034431200, -150.6080854018198000 61.2504721503694900, -150.6091670002568300 61.2504671123674000, -150.6116047052928800 61.2504927142674100, -150.6140377824176800 61.2505694705047300, -150.6164616109145700 61.2506972371878100, -150.6188715898519500 61.2508757697010540, -150.6191485432706300 61.2508996206210550, -150.6242274060699000 61.2513432480924960, -150.6265490634884500 61.2515705553369100, -150.6288486749264000 61.2518450185328300, -150.6300009357945300 61.2520077769374300, -150.6304926023517000 61.2516418940581960, -150.6315762332565400 61.2508642637748150, -150.6324312861749000 61.2502681265728500, -150.6333193010448800 61.2496832848557900, -150.6342396330526000 61.2491101613049400, -150.6351550961307500 61.2485528127621700, -150.6364752469350800 61.2475784953513200, -150.6379182289430800 61.2466317259734300, -150.6394454666349500 61.2457161648691800, -150.6405887360812700 61.2450809710100540, -150.6413108386242600 61.2446921922908700, -150.6426722476261000 61.2439850841443560, -150.6440852903038800 61.2433019123534450, -150.6455481527250400 61.2426435519583950, -150.6470589589038000 61.2420108465233850, -150.6487283362437000 61.2413465218245960, -150.6496205176727300 61.2407427134055500, -150.6511474702795000 61.2398271514019800, -150.6529397085007200 61.2388483859443200, -150.6548281768788200 61.2379126098791200, -150.6624119960167700 61.2343317873821300, -150.6639904078310200 61.2336147750019100, -150.6656253132575800 61.2329278206624400, -150.6675266275517800 61.2321931006311500, -150.6681697300489600 61.2319763640180700, -150.6683642659980400 61.2318973675695000, -150.6699342358762400 61.2311737838431300, -150.6717671945004000 61.2303998129011100, -150.6736683559098500 61.2296650919704460, -150.6756341039307200 61.2289710176983700, -150.6776607009805400 61.2283189066922660, -150.6797442925650300 61.2277100000165400, -150.6818809189692000 61.2271454524007500, -150.6840665197540500 61.2266263376354200, -150.6862969409510200 61.2261536404781740, -150.6885679449546600 61.2257282584524200, -150.6907074509880400 61.2253766199351050, -150.6928774629245400 61.2250801161545160, -150.6929904951152300 61.2250607231739000, -150.6933216129020800 61.2250078340443340, -150.6952626007883700 61.2246442552282700, -150.6975697944104400 61.2242669968245000, -150.6999088725963500 61.2239385779030840, -150.7022753935945000 61.2236596234928900, -150.7046648616939700 61.2234306614959100, -150.7066706763106400 61.2232783442202600, -150.7076792470995500 61.2232197677781200, -150.7083374204355800 61.2231287464945240, -150.7096648341647300 61.2226197643906860, -150.7121081167961200 61.2217313682081100, -150.7134952913745600 61.2212428969422150, -150.7149129286886800 61.2207752153040000, -150.7163596905472500 61.2203287675586100, -150.7178342072828000 61.2199039745888200, -150.7199742610033000 61.2193529617698000, -150.7210885264143200 61.2190579454678500, -150.7232210087425400 61.2184784232407000, -150.7254060078809300 61.2179593075760500, -150.7264639181752600 61.2177350409394300, -150.7278400149047300 61.2172489807559260, -150.7298658574233600 61.2165968688504450, -150.7319486746915500 61.2159879603761400, -150.7333700873596200 61.2156057754862100, -150.7348139623944000 61.2152437192223150, -150.7362790749193400 61.2149020991525960, -150.7377641820713200 61.2145812039594260, -150.7428439351994300 61.2135260294027700, -150.7443396678413600 61.2132276082675700, -150.7457412279752600 61.2129791058011400, -150.7458540821001800 61.2129567981177700, -150.7479721851681800 61.2125145915752000, -150.7502422071121400 61.2120892086501300, -150.7513906926263300 61.2119013402746650, -150.7521677122700800 61.2117365889724850, -150.7544376775567500 61.2113112060473550, -150.7567438954144200 61.2109339467443200, -150.7590849826857800 61.2106215294600700, -150.7599397136468400 61.2104912006084900, -150.7622443379058300 61.2101009425045400, -150.7627509682825200 61.2100362425786100, -150.7630273524303300 61.2099909536196950, -150.7650217033888700 61.2096171998739460, -150.7674166348697600 61.2092264804177800, -150.7698457387898000 61.2088884342538800, -150.7715943949653200 61.2086656173244140, -150.7731852704838200 61.2084880039183200, -150.7738680798479700 61.2083798055836040, -150.7740630052035000 61.2083502493645700, -150.7763287454751800 61.2078941932624600, -150.7786347133213400 61.2075169339593700, -150.7803436284556500 61.2072768653351300, -150.7817864773640200 61.2068953837150500, -150.7839706743071400 61.2063762662517660, -150.7861996628841200 61.2059035672958800, -150.7884692081873700 61.2054781843707500, -150.7890252868874400 61.2053872017580150, -150.7897318617360000 61.2052003774954900, -150.7919159408679400 61.2046812600322000, -150.7941448098350700 61.2042085610763140, -150.7964142337298800 61.2037831781511840, -150.7978618787227000 61.2035438145954340, -150.7979920367031000 61.2035200599028700, -150.7986733738770800 61.2033755577358500, -150.8004452739302200 61.2030428283638900, -150.8009413723464100 61.2029437383628760, -150.8026739198654700 61.2025695556405400, -150.8049391978856300 61.2021368432407940, -150.8052210364216700 61.2019724480700800, -150.8069056105054800 61.2011244548297700, -150.8086651529744000 61.2003126997713600, -150.8104963165517300 61.1995387243327400, -150.8123956172639000 61.1988039998047950, -150.8143594416349000 61.1981099210360640, -150.8163840547803000 61.1974578073320000, -150.8184656076016700 61.1968488970590000, -150.8206001439814400 61.1962843467452440, -150.8222464384223500 61.1958841826090100, -150.8227796590540000 61.1957503059319400, -150.8243789378376800 61.1953113432439300, -150.8265623325855500 61.1947922248813260, -150.8281890316984300 61.1944404397745500, -150.8288294865915000 61.1942673850318200, -150.8309632540509000 61.1937003373007540, -150.8316122408122300 61.1935497224417900, -150.8317504162486700 61.1935131739938360, -150.8335520209090000 61.1929878844833300, -150.8356862955860400 61.1924233332702560, -150.8378694897851000 61.1919042149076500, -150.8385912676728300 61.1917510774503060, -150.8393865363595400 61.1914004227913300, -150.8405891340812600 61.1908997000611500, -150.8424879149852700 61.1901649737346250, -150.8444512006623500 61.1894708940665740, -150.8464752598253500 61.1888187794631300, -150.8485562433759000 61.1882098682908700, -150.8506901942970000 61.1876453170777950, -150.8528730584448600 61.1871261978158150, -150.8551006872469000 61.1866534970612860, -150.8565906471406200 61.1863740606144700, -150.8572473734675000 61.1862003115951440, -150.8591108640751000 61.1857776734009350, -150.8594336145696400 61.1856943359248900, -150.8599671931314400 61.1855672248476000, -150.8612481667694600 61.1852283090393000, -150.8634308636434000 61.1847091897773200, -150.8656583224735600 61.1842364890227940, -150.8679263092517400 61.1838111033997600, -150.8702305171246400 61.1834338422980300, -150.8725665690918700 61.1831054215779800, -150.8749300287977600 61.1828264644698300, -150.8766189870765700 61.1826741723751900, -150.8773156073294000 61.1825918223547660, -150.8789559122855000 61.1823554184678640, -150.8813193144348000 61.1820764613596600, -150.8837056358064200 61.1818474984633550, -150.8854542263314600 61.1817125434991450, -150.8862018201578500 61.1816543915369950, -150.8884474030252000 61.1813315367210750, -150.8907186849193400 61.1810664480581750, -150.8930109426008800 61.1808474946162160, -150.8954176237243000 61.1806835473079200, -150.8970677762568500 61.1804664113958000, -150.8994310372125700 61.1801874542876500, -150.9018172155920000 61.1799584904919700, -150.9042217788120000 61.1797799552807650, -150.9066401619139000 61.1796521876983660, -150.9082265920835400 61.1796020271119100, -150.9085010435882700 61.1794476764691240, -150.9093071796825700 61.1790039248912760, -150.9107465356241000 61.1782415381165400, -150.9122452576125000 61.1775063198608100, -150.9138011450068000 61.1767993475119200, -150.9144039192054800 61.1765579892598340, -150.9154087470160400 61.1761147988589200, -150.9161664690073200 61.1757566321629160, -150.9179962071592000 61.1749826540263400, -150.9198940302852300 61.1742479259011100, -150.9218563267080800 61.1735538444344200, -150.9238793651405500 61.1729017280324000, -150.9259592991823000 61.1722928150614400, -150.9271372311982300 61.1719757608727260, -150.9291588657890000 61.1713187224810900, -150.9312386955093600 61.1707098095101300, -150.9333714638219700 61.1701452564984700, -150.9355531183816800 61.1696261354378500, -150.9377795133138700 61.1691534337840040, -150.9400464173082800 61.1687280472616500, -150.9423495244110000 61.1683507852606000, -150.9446867436982400 61.1680334351949600, -150.9448893294789400 61.1679968534720600, -150.9451846146782000 61.1679459635354300, -150.9471136199975400 61.1675144274489100, -150.9493804070801000 61.1670890409265550, -150.9509959923711300 61.1668123384187650, -150.9510638183405100 61.1668000213039700, -150.9533258417142000 61.1663670382083100, -150.9546945640029000 61.1661434082917000, -150.9549417660496400 61.1660980914538200, -150.9557266889355300 61.1659314218976500, -150.9579933618041700 61.1655060353753000, -150.9602962341838300 61.1651287733742500, -150.9623542031839000 61.1648440812894000, -150.9626278830703300 61.1647888332381060, -150.9644872394944700 61.1642842362285800, -150.9666684893592800 61.1637651151679600, -150.9686525502749500 61.1633557680543160, -150.9688964778901300 61.1633008464569340, -150.9708361725513000 61.1628481115511700, -150.9730620890441300 61.1623754089980000, -150.9753285065053500 61.1619500224755940, -150.9755987482835700 61.1619146026768000, -150.9758389913763200 61.1618663846260200, -150.9777812491053300 61.1614041070139900, -150.9800070639748000 61.1609314035615060, -150.9809054471286600 61.1607627770805500, -150.9817305661127000 61.1604708040844100, -150.9836955470118500 61.1598371381734300, -150.9839058372845400 61.1595764984567150, -150.9848867404307000 61.1585017294713100, -150.9859636731849300 61.1574486467376900, -150.9871345796970600 61.1564192530461240, -150.9883972224538000 61.1554155053213400, -150.9897491948694000 61.1544393110254400, -150.9911879176882200 61.1534925263590600, -150.9927016610528000 61.1525677615929900, -150.9927764477748200 61.1524766395853000, -150.9932626581451400 61.1520491234683160, -150.9935084797325300 61.1517797207575900, -150.9940650332746400 61.1512222157327300, -150.9950390979759600 61.1501407189190900, -150.9961157456451000 61.1490876352862100, -150.9972863409918200 61.1480582397960000, -150.9985486501001000 61.1470544902725800, -150.9999002636862000 61.1460782950773000, -151.0013386060917600 61.1451315086122800, -151.0028609334852700 61.1442159322195400, -151.0032928122135000 61.1439798197129700, -151.0045025397603800 61.1430943894945360, -151.0055310907871700 61.1423727357132500, -151.0070926241252800 61.1413312173618240, -151.0087551801074400 61.1403269228492800, -151.0092843771722400 61.1400314182154150, -151.0099453932652700 61.1393067040411900, -151.0110216713130500 61.1382536186096700, -151.0121918655621300 61.1372242213208200, -151.0132572501219700 61.1363704427417900, -151.0143872383803200 61.1355363152488300, -151.0148180783915800 61.1352425966685500, -151.0150633073257300 61.1349736993767600, -151.0161394369854000 61.1339206130459160, -151.0173094702558000 61.1328912148577500, -151.0184467744990000 61.1319864285309200, -151.0187529163140000 61.1315209475337700, -151.0192662718209500 61.1308098805715760, -151.0201484339030700 61.1297154640974440, -151.0211284080495500 61.1286406906154400, -151.0222043227712400 61.1275876024859000, -151.0233741213186200 61.1265582042977400, -151.0245418873981600 61.1256257071607400, -151.0246981535969000 61.1255116110720560, -151.0252954707093800 61.1247704590894600, -151.0262752919711300 61.1236956838088200, -151.0273510376202600 61.1226425956792800, -151.0280626612627700 61.1220162826253950, -151.0282783465684000 61.1217796817869600, -151.0285979656236000 61.1214844370571800, -151.0289060904436800 61.1211651210735450, -151.0295865148057700 61.1204186801779800, -151.0306621498383200 61.1193655911491760, -151.0312791000504000 61.1188225454241660, -151.0315095558213200 61.1186022825693300, -151.0316800591873500 61.1183965698458600, -151.0317870173569500 61.1182787946307260, -151.0320846174111300 61.1179094511603000, -151.0330642264328800 61.1168346749803400, -151.0341397382583000 61.1157815859514800, -151.0353090997351400 61.1147521850653560, -151.0355792246015000 61.1145349214495500, -151.0358133190294200 61.1139679987242060, -151.0363923007640500 61.1128272698626900, -151.0370735255227400 61.1116998419742000, -151.0378556847920000 61.1105878608411800, -151.0387372820998700 61.1094934416690300, -151.0397166294188800 61.1084186636904300, -151.0407865798367500 61.1073618622601800, -151.0411669229151200 61.1068098574890000, -151.0420484141030000 61.1057154374175300, -151.0429488162348500 61.1047262686024600, -151.0430244096487500 61.1046380550022800, -151.0438297966078000 61.1036314348428960, -151.0448089622637700 61.1025566568642940, -151.0458839884552700 61.1015035642381600, -151.0470528220300800 61.1004741615533900, -151.0483132317702000 61.0994704039360400, -151.0487458029763800 61.0991575091118200, -151.0494592243637000 61.0981428490133000, -151.0503404745332400 61.0970484271432500, -151.0513194360431200 61.0959736473660100, -151.0523942392027500 61.0949205538405500, -151.0535628290613000 61.0938911502564100, -151.0539690222525500 61.0935676011639000, -151.0540963752475000 61.0934094230065060, -151.0550752243421000 61.0923346432292650, -151.0561499033953000 61.0912815488044900, -151.0573183592548500 61.0902521443210840, -151.0585759064529000 61.0892455988054050, -151.0590985960233500 61.0887801411906250, -151.0603585399146600 61.0877763817746300, -151.0617076219092000 61.0868001766868360, -151.0631432699459300 61.0858533812286200, -151.0634186963157500 61.0856909546738500, -151.0637319580633900 61.0849101983470200, -151.0643171936835000 61.0835494323604850, -151.0647622690634400 61.0826006997625650, -151.0652778045270300 61.0816603722284400, -151.0658631201868000 61.0807296782321000, -151.0665174471224600 61.0798098318583100, -151.0674160344224200 61.0787009084202200, -151.0675964887869000 61.0782729840110500, -151.0681748158150700 61.0771322488542400, -151.0688552698548000 61.0760048146705100, -151.0696365468891000 61.0748928272422500, -151.0705252146669000 61.0737910372266700, -151.0706653551220000 61.0735608125814900, -151.0714465710024000 61.0724488251532300, -151.0719638952175500 61.0718058368699400, -151.0723633938555000 61.0711438108382400, -151.0731445503806800 61.0700318225106600, -151.0740250172407300 61.0689373952446300, -151.0750026585458300 61.0678622485439750, -151.0754997588067900 61.0672433935678200, -151.0764777985115800 61.0661686092939250, -151.0775515899339000 61.0651155103725500, -151.0787190799215700 61.0640861013925500, -151.0799780408538600 61.0630823374799550, -151.0811818535596600 61.0622105670640850, -151.0816585392102000 61.0615318145416400, -151.0825387695485300 61.0604373863763500, -151.0835162687607700 61.0593623350038100, -151.0840135093159800 61.0587433838001600, -151.0849912873180200 61.0576685977276840, -151.0860647891586600 61.0566154979069300, -151.0872319661822600 61.0555860871282900, -151.0881383784833600 61.0548534355376660, -151.0890922453108400 61.0541350858655960, -151.0900926061888000 61.0534317602675860, -151.0911384511785500 61.0527441665101400, -151.0914552094903000 61.0525426770029750, -151.0916187062382800 61.0523098056530700, -151.0924986802698400 61.0512153756890800, -151.0934762253475000 61.0501405878179100, -151.0945543200258200 61.0490918955745800, -151.0946390793300200 61.0490084384887300, -151.0952010000261000 61.0483905853573100, -151.0962741880033500 61.0473374837379200, -151.0967284706423800 61.0469423872813760, -151.0968459994433000 61.0468330171301000, -151.0978044303301700 61.0458924809532850, -151.0989766327653600 61.0448690335791200, -151.0991473204924200 61.0446313679433400, -151.1001246623232800 61.0435565791728440, -151.1011976866239200 61.0425034766541900, -151.1023643438393500 61.0414740631775300, -151.1032868171328700 61.0407285692681400, -151.1042584015039800 61.0399979015819550, -151.1052780816181400 61.0392828209454600, -151.1063447926780200 61.0385840719973800, -151.1069570169527500 61.0381962717406200, -151.1085327137137400 61.0372436855477100, -151.1101307190574000 61.0363610414289600, -151.1118098351557300 61.0355186473677240, -151.1119231722166000 61.0354589108001700, -151.1122853903584400 61.0352436805514460, -151.1133129332452500 61.0346672474955200, -151.1143736611155400 61.0341051424384200, -151.1154667232107000 61.0335578141418860, -151.1165966485165000 61.0330360778527850, -151.1174573078084800 61.0326142832226400, -151.1282588652544000 61.0271617242342500, -151.1292990409179700 61.0266515649178700, -151.1303668392582000 61.0261550285317750, -151.1314614994486200 61.0256724667110000, -151.1325822462736000 61.0252042220972160, -151.1344711121520800 61.0244694750862800, -151.1364241482558000 61.0237753747338160, -151.1384376412841000 61.0231232412446600, -151.1405077619236600 61.0225143111865700, -151.1426305756405000 61.0219497437856800, -151.1448020471767000 61.0214306092352700, -151.1459360293242800 61.0211943483405400, -151.1470161771548200 61.0209500609966000, -151.1481086007313200 61.0206806070244740, -151.1503245518365800 61.0202078918807700, -151.1513065782359600 61.0200227403572600, -151.1523862755062000 61.0197646034537200, -151.1546021627595700 61.0192918883100800, -151.1568583693182600 61.0188664909958300, -151.1591474191180600 61.0184742687725360, -151.1594087576080500 61.0184028850851500, -151.1616649003148600 61.0179774868715900, -151.1639570761581000 61.0176002149780200, -151.1662809297211000 61.0172717834660700, -151.1675530648220400 61.0171322428587900, -151.1686299076441000 61.0169798158658500, -151.1698465141053000 61.0167662115914600, -151.1721703065144000 61.0164377809788900, -151.1745213627706300 61.0161588157768050, -151.1768952177400800 61.0159298447865700, -151.1792873640206000 61.0157513041793900, -151.1813548136737000 61.0156415068501000, -151.1816152897138200 61.0156162098202800, -151.1816916151758800 61.0156096888361500, -151.1839656777737800 61.0153258124363450, -151.1863394706900000 61.0150968423454300, -151.1887315540179800 61.0149183017383050, -151.1901712508025600 61.0148418404785960, -151.1908650714658500 61.0147437748054240, -151.1932160027163300 61.0144648087040200, -151.1955897308813500 61.0142358386131040, -151.1979817494581400 61.0140572980059800, -151.2003875150717200 61.0139295259269260, -151.2028024600654400 61.0138527660923300, -151.2052219996955000 61.0138271632930000, -151.2067750812050000 61.0138377087433240, -151.2221176690951300 61.0140451805406800, -151.2262315566409800 61.0140239862180350, -151.2266434227557300 61.0139657713033300, -151.2289942964496000 61.0136868061012500, -151.2313679670580000 61.0134578351110700, -151.2337599271788800 61.0132792945038900, -151.2361656343365200 61.0131515233242100, -151.2385805199750000 61.0130747625902900, -151.2410019059132000 61.0130638448206350, -151.2412876160306300 61.0130456803139500, -151.2431673951591300 61.0128314006486800, -151.2450622100529400 61.0126528321625300, -151.2474541099192000 61.0124742915553500, -151.2498310342748000 61.0123667632155960, -151.2521618944558400 61.0121037996506740, -151.2545354463537400 61.0118748286604950, -151.2564188065826200 61.0117399132664700, -151.2580335267258500 61.0115217620197540, -151.2597506553684000 61.0113282953645900, -151.2603835424664900 61.0112386896138900, -151.2620435587632000 61.0109611903067160, -151.2643669275916000 61.0106327587948300, -151.2667175548712400 61.0103537926934200, -151.2690909763674400 61.0101248226025600, -151.2696818624279700 61.0100807126548260, -151.2705852251280000 61.0093592387379400, -151.2719309742350300 61.0083830201602950, -151.2733630762449500 61.0074362121115400, -151.2748788008159700 61.0065206141350700, -151.2761140043578000 61.0058309933057800, -151.2773966525334700 61.0051621108427750, -151.2776863412516000 61.0050160672377600, -151.2782143305269000 61.0046330136027560, -151.2784211934832700 61.0044962339141000, -151.2789489588273600 61.0040300010837200, -151.2798597148539300 61.0032927998229300, -151.2808184389198000 61.0025700857409000, -151.2818241507639200 61.0018625926845740, -151.2828758251591800 61.0011710437087800, -151.2840982754150600 61.0003934413043100, -151.2857212972000700 60.9994095973750600, -151.2873252425658600 60.9985227983884800, -151.2890075962235700 60.9976709668417240, -151.2955355860984000 60.9945068533086800, -151.2972776970080700 60.9936982359848800, -151.2990904334767000 60.9929271293835900, -151.3009773820005500 60.9921923778759950, -151.3029284359985000 60.9914982739262540, -151.3049398848677600 60.9908461359405000, -151.3070052588855700 60.9902297424087600, -151.3072695327627000 60.9901487512639160, -151.3084895467551400 60.9897191226394300, -151.3096840847527000 60.9893303942823200, -151.3112473205074200 60.9888399211255300, -151.3128435263076600 60.9883751973575300, -151.3149640620418000 60.9878106254600400, -151.3171356972546000 60.9873008546507550, -151.3180786867819400 60.9870747794775500, -151.3202447542919300 60.9865414851015000, -151.3212131541637000 60.9863346797017700, -151.3222424678156000 60.9860606194021100, -151.3244114904978500 60.9855414821537350, -151.3266249936485200 60.9850687643120750, -151.3288787738363200 60.9846433634005500, -151.3311791272149000 60.9842861104157240, -151.3321218568382000 60.9841312156831350, -151.3332402042720000 60.9839213606823000, -151.3355299267646800 60.9835440860907740, -151.3378512937022200 60.9832156536795100, -151.3401998957086000 60.9829366857794640, -151.3425712730458000 60.9827077147892850, -151.3449609219089800 60.9825291723834650, -151.3473643043191700 60.9824014003044100, -151.3497768571162400 60.9823246395704900, -151.3521940000530300 60.9822990367711700, -151.3546111429898200 60.9823246395704900, -151.3570236957869000 60.9824014003044100, -151.3594270781970600 60.9825291723834650, -151.3618167270602700 60.9827077147892850, -151.3641881043974700 60.9829366857794640, -151.3649436815056800 60.9830237176705050, -151.3670846363468700 60.9830411168541100, -151.3692220847314000 60.9831013192705300, -151.3708701598300000 60.9831632375933740, -151.3728155202200600 60.9831407122741200, -151.3741390003145900 60.9831330401577250, -151.3765562062039300 60.9831586429570500, -151.3789688228528700 60.9832354036909700, -151.3813722682155900 60.9833631757700200, -151.3837619800313200 60.9835417172764660, -151.3861334185224000 60.9837706891660200, -151.3884820825820200 60.9840496561667460, -151.3885606572485000 60.9840607726865760, -151.3931029134686500 60.9841602529933200, -151.3948943458973000 60.9842135162408600, -151.3966812961049000 60.9842949102819600, -151.3984618961995000 60.9844043505803500, -151.4002342818865800 60.9845417220229250, -151.4026057950214000 60.9847706930131040, -151.4044851658577000 60.9850085322180460, -151.4049541847877500 60.9850542294691400, -151.4065404746631300 60.9851797235654660, -151.4086083766752000 60.9853764529609600, -151.4106591501996000 60.9856196125551260, -151.4122741931994400 60.9856794138739250, -151.4146778238224700 60.9858071859529200, -151.4170677182006000 60.9859857274594200, -151.4194393392540700 60.9862146993489800, -151.4217881840774000 60.9864936663497000, -151.4225180531656000 60.9865969193124300, -151.4241263953168500 60.9866228998270100, -151.4428173300557000 60.9864170683930500, -151.4440829999305000 60.9864100527817640, -151.4453864862972800 60.9864174937723650, -151.4544657880656500 60.9865209337941100, -151.4564724840179000 60.9862798696203200, -151.4581452697883300 60.9854288933288440, -151.4598928674618300 60.9846171076933960, -151.4617116015091700 60.9838431034764900, -151.4635980113391200 60.9831083501702550, -151.4655485086567200 60.9824142453211950, -151.4675593837585300 60.9817621064361200, -151.4696268127272000 60.9811531727807500, -151.4714599727994700 60.9806616132428900, -151.4733299906865000 60.9802040282933150, -151.4749960135551400 60.9798153233185760, -151.4774963707608600 60.9792684707633700, -151.4800492636625500 60.9787823413320200, -151.4823386165339000 60.9784050658411700, -151.4827496058096300 60.9783469084831040, -151.4834449058576800 60.9781804556635600, -151.4856578981934000 60.9777077369225800, -151.4879111567744300 60.9772823360110600, -151.4890564416014600 60.9770934828779900, -151.4906001548732200 60.9764771882717000, -151.4916363969021500 60.9759508528496200, -151.4927048877203500 60.9754228159102900, -151.4938028250403200 60.9749092499619700, -151.4949293778884400 60.9744105444111700, -151.4960836946068000 60.9739270751744600, -151.4979695162801400 60.9731923209689060, -151.4999194056560200 60.9724982143212060, -151.5009052604693500 60.9721783956165400, -151.5020147154067700 60.9716240786883100, -151.5040307885900000 60.9706665444255100, -151.5046212429759600 60.9704052634921800, -151.5057660628535000 60.9697931705184700, -151.5115724304232900 60.9668228923626400, -151.5126706465330800 60.9662767304867540, -151.5138002525795600 60.9657459200382160, -151.5149603393481600 60.9652308881949800, -151.5161499742419000 60.9647320477458800, -151.5180352509260600 60.9639972926410100, -151.5199845773263400 60.9633031850939900, -151.5209494392651700 60.9629900861236250, -151.5271242635738800 60.9599237387895400, -151.5290811595678200 60.9589983930614500, -151.5311293601318400 60.9581210288624200, -151.5330142456109300 60.9573862728582900, -151.5349631673162800 60.9566921644118900, -151.5357777012798700 60.9564379323647360, -151.5359224453645200 60.9563808119249900, -151.5375985649218000 60.9555970077957450, -151.5394940830854300 60.9547880190518750, -151.5413787716129800 60.9540532630476800, -151.5433274891722700 60.9533591537020240, -151.5453365305564000 60.9527070121189900, -151.5463822928085400 60.9523922269198100, -151.5483291496704800 60.9516921496730200, -151.5492685571981300 60.9513871985604400, -151.5507627825763300 60.9506528679355600, -151.5526190417353700 60.9497819509763300, -151.5545565969093800 60.9489540027250900, -151.5564409400972700 60.9482192449222600, -151.5583893015250000 60.9475251355766000, -151.5589160011725000 60.9473541348854700, -151.5602227610715400 60.9466945613050400, -151.5610287523750000 60.9463057942770660, -151.5627068936082400 60.9455294913929600, -151.5644502455823500 60.9447879904734600, -151.5663343423560000 60.9440532326706260, -151.5682824492755900 60.9433591224255900, -151.5692655593580600 60.9430398999714400, -151.5706227955055900 60.9423927289413400, -151.5708327836060500 60.9422892520473740, -151.5714806318256600 60.9419421326233500, -151.5726060299443000 60.9413788296693040, -151.5737646903881200 60.9408317280019100, -151.5749556266008500 60.9403012934699860, -151.5761778241472400 60.9397879757345300, -151.5780616259432600 60.9390532170323800, -151.5800094261940400 60.9383591067874000, -151.5820175214914000 60.9377069625063540, -151.5826365365469000 60.9375394376949660, -151.5828834193343000 60.9373358905389750, -151.5841373665462000 60.9363321050426500, -151.5854800291799600 60.9353558747738500, -151.5869088468657500 60.9344090550339400, -151.5884210964564100 60.9334934453662500, -151.5897562641402500 60.9327483795341300, -151.5911466798753500 60.9320276529538800, -151.5936447779840800 60.9307761465020100, -151.5946716454800200 60.9298628777696650, -151.5959252986136200 60.9288590913740200, -151.5972676464846800 60.9278828602059000, -151.5979619887547500 60.9274038956733100, -151.5992069139678600 60.9263870870944400, -151.6005491575175800 60.9254108550269960, -151.6019775291396200 60.9244640334883900, -151.6034893065862000 60.9235484220221200, -151.6047857278790000 60.9228239965302700, -151.6061343629105000 60.9221225334282500, -151.6236070274423500 60.9133496630565800, -151.6239992127934000 60.9131576955712700, -151.6241984818744000 60.9129980632101250, -151.6255401615492000 60.9120218293439850, -151.6269679342227600 60.9110750051074800, -151.6284790767479600 60.9101593918425100, -151.6298239768949800 60.9094085613560900, -151.6312249407783700 60.9086824622259000, -151.6370591234797300 60.9057681695654200, -151.6390494544687300 60.9048225684068700, -151.6411347763488200 60.9039268724272900, -151.6430164611407500 60.9031921092284850, -151.6449620724416700 60.9024979935875900, -151.6461353720497400 60.9021165254573600, -151.6523162676815800 60.8990597244268200, -151.6542139442181300 60.8981647083346600, -151.6561971309927800 60.8973148525984100, -151.6580784254789200 60.8965800885003400, -151.6600236347829000 60.8958859728593900, -151.6620290590937800 60.8952338240817400, -151.6640908843867800 60.8946248805338540, -151.6662090998700300 60.8940735313684060, -151.6667253583885600 60.8939354404682800, -151.6673976519800200 60.8937368782544000, -151.6695119014530600 60.8931722973636600, -151.6707014913807000 60.8928950354775800, -151.6716734120982700 60.8926486527132060, -151.6728175682761200 60.8923382939771600, -151.6742004216121400 60.8920063389214760, -151.6748014394348400 60.8910046695299340, -151.6755781748928200 60.8898926488267300, -151.6764536604080700 60.8887981900844600, -151.6774262214429400 60.8877233734349940, -151.6784939990987500 60.8866702439366350, -151.6796549537131000 60.8856408043796500, -151.6809068693565000 60.8846370107894500, -151.6822473565302400 60.8836607715274450, -151.6836738602604300 60.8827139436936000, -151.6851836609971300 60.8817983259320400, -151.6866675900372200 60.8809722869415300, -151.6882193072751800 60.8801764049172200, -151.6926333012858000 60.8780154356638800, -151.6927497958663500 60.8779449306140900, -151.6939787140463800 60.8770497589392800, -151.6944880900532800 60.8767115949642060, -151.6947246306371500 60.8765017894260700, -151.6959761874510700 60.8754979940372300, -151.6973162915136000 60.8745217538759100, -151.6987423860522300 60.8735749242434300, -151.7002517551143800 60.8726593046832250, -151.7016484894861600 60.8718797471526600, -151.7031055854543800 60.8711269255672400, -151.7074485618016700 60.8689671317278000, -151.7076519371871000 60.8688039821181500, -151.7089917597619000 60.8678277401581340, -151.7104175566249200 60.8668809096263300, -151.7119266091256700 60.8659652891668100, -151.7129120898210600 60.8654089280796000, -151.7139283210351600 60.8648658877505700, -151.7149745428408500 60.8643365719752900, -151.7160499764252400 60.8638213755560860, -151.7167405352474800 60.8635076866305000, -151.7168853791569000 60.8634353208834100, -151.7169681635498600 60.8633946076750500, -151.7175767806439000 60.8630696970089400, -151.7188377794399500 60.8624185653645800, -151.7201424376233700 60.8617882368377000, -151.7214893126816000 60.8611794057050600, -151.7228769135387000 60.8605927464581100, -151.7247560469539800 60.8598579778634400, -151.7266990223420000 60.8591638577258900, -151.7285761044036600 60.8585503932860660, -151.7286948113164700 60.8584986112219900, -151.7298658293445300 60.8578256575281100, -151.7312080926793000 60.8571258869502000, -151.7360344024656600 60.8546948018237100, -151.7373727042868600 60.8537167117568740, -151.7387978716244600 60.8527698785271100, -151.7403062577275800 60.8518542553696300, -151.7407589971299700 60.8516011294885860, -151.7410943624148600 60.8513319498097200, -151.7424334520421500 60.8503557051517400, -151.7438584691929600 60.8494088719219800, -151.7453666970154000 60.8484932487645000, -151.7457659807154200 60.8482684398366600, -151.7457041370362600 60.8478020882957900, -151.7456871020780800 60.8474059081561900, -151.7452956208961400 60.8466225375001400, -151.7448279041844000 60.8454702505516700, -151.7447583299329500 60.8452484543527100, -151.7442874449096200 60.8444577749064600, -151.7437171839008800 60.8433165415252100, -151.7432495148532000 60.8421642545767440, -151.7428853182028400 60.8410031075074500, -151.7426252756359300 60.8398353135489200, -151.7425869249466000 60.8394317562705850, -151.7425605685154000 60.8393472289914700, -151.7420316412472200 60.8382885479781500, -151.7416228256328700 60.8372315918645100, -151.7415726110871000 60.8371311600750460, -151.7415382210120600 60.8370539119085800, -151.7409683593023100 60.8360967877366100, -151.7403964849098000 60.8349575292666000, -151.7403232441223800 60.8348950488674500, -151.7392604846836000 60.8338411270664200, -151.7382929859325300 60.8327655738721660, -151.7374225788888700 60.8316704379404300, -151.7366509138086000 60.8305578056982200, -151.7364426551044000 60.8302079469392540, -151.7359608999755400 60.8297301362368300, -151.7349935244316000 60.8286545821433150, -151.7347827062568500 60.8283869807746100, -151.7336407408275000 60.8273670659373800, -151.7325770892612400 60.8263144247709400, -151.7319482005490000 60.8257560689874600, -151.7308857441817000 60.8247021462870500, -151.7299185197238700 60.8236265912942140, -151.7290483608931000 60.8225314535637800, -151.7282769152474200 60.8214188204222500, -151.7280285845515000 60.8210015251003700, -151.7275312846410300 60.8205081543279100, -151.7265641869876200 60.8194325993350700, -151.7263062263512300 60.8191079009089300, -151.7253206880992600 60.8182290861034860, -151.7242584808441800 60.8171751616044960, -151.7239097210567400 60.8167872498317500, -151.7236572318957100 60.8165620901683600, -151.7225950803986000 60.8155081656693700, -151.7223639699212500 60.8152510962611360, -151.7219647752541500 60.8148950933339700, -151.7208929173742100 60.8138558026032600, -151.7207350593754700 60.8137682302196940, -151.7194003332587300 60.8127910682532600, -151.7181542200411900 60.8117863879315340, -151.7169990876377600 60.8107561030117840, -151.7159342930331700 60.8097064269101100, -151.7157689265946500 60.8096022404511100, -151.7144343740471000 60.8086250784846240, -151.7131884227075000 60.8076203972635800, -151.7120334395915200 60.8065901114445640, -151.7113234877887000 60.8058854395614500, -151.7106907553740300 60.8054632510282400, -151.7093563736976600 60.8044860881624900, -151.7081105833367200 60.8034814069414440, -151.7076144516456000 60.8030387831133800, -151.7074173526286800 60.8029072590628060, -151.7060830779716400 60.8019300961970540, -151.7048373865361300 60.8009254140766300, -151.7036826444384600 60.7998951273583000, -151.7029750299736300 60.7991926291366000, -151.7023391778107900 60.7987682696399900, -151.7010050749242400 60.7977911058748650, -151.6997595444673800 60.7967864228551800, -151.6986049507578400 60.7957561361368450, -151.6975434863428000 60.7947022089398400, -151.6965792854056800 60.7936245135605300, -151.6959910793248000 60.7930362121515500, -151.6957649618834400 60.7927845197897900, -151.6953600268437300 60.7924231443126900, -151.6942986721459800 60.7913692162164240, -151.6933324504322200 60.7902936567269300, -151.6924631936214500 60.7891985136005800, -151.6916925465737300 60.7880858750631300, -151.6910168256659400 60.7869444114554650, -151.6908012716613100 60.7866705175304100, -151.6900306848682000 60.7855578789929600, -151.6897221697423000 60.7850388685490100, -151.6890552585932700 60.7841985222440800, -151.6882847311554000 60.7830858828073100, -151.6880439583619600 60.7826808020774400, -151.6875349735601600 60.7821752346993660, -151.6865690288375700 60.7810996734112340, -151.6857000193404000 60.7800045293855650, -151.6849295926265600 60.7788918899487950, -151.6842647741999300 60.7777594546352000, -151.6842285054411500 60.7777023054171100, -151.6840930063871200 60.7775315340530800, -151.6833226381292300 60.7764188937170500, -151.6826481807689000 60.7752800552304400, -151.6824310781317000 60.7750045389283860, -151.6816607710277400 60.7738918985923000, -151.6813444704709200 60.7733450766140800, -151.6809647191464300 60.7729819888277800, -151.6803354644101200 60.7724231878798950, -151.6792747698147500 60.7713692570856100, -151.6790534475585200 60.7711227358256600, -151.6786429996746800 60.7707561919447700, -151.6775823599379300 60.7697022611504850, -151.6766167893333400 60.7686266980637100, -151.6762358365146200 60.7681464259168800, -151.6754260680585600 60.7674232001206200, -151.6743655380391300 60.7663692684270700, -151.6741412785971000 60.7661194358633450, -151.6737346015705700 60.7657562032862300, -151.6726741264098000 60.7647022715926250, -151.6717087050926400 60.7636267076065340, -151.6708401677395300 60.7625315608829060, -151.6700701592104400 60.7614189187481800, -151.6694001355078300 60.7602908991057700, -151.6688313619777400 60.7591496522347260, -151.6687030862783800 60.7588327644206200, -151.6682334818896400 60.7584535131192100, -151.6670802641428400 60.7574232210049000, -151.6660200641746000 60.7563692884119750, -151.6658020613160400 60.7561263518497300, -151.6653877967094000 60.7557562250697740, -151.6643276507005000 60.7547022924768500, -151.6633625297569000 60.7536267275914400, -151.6624942622004000 60.7525315790691700, -151.6617244919917000 60.7514189351358000, -151.6610426871702400 60.7503004177301600, -151.6608322386168800 60.7500595837828400, -151.6600625277634200 60.7489469389501550, -151.6593927630655400 60.7478189175091100, -151.6592369519237600 60.7475257852868250, -151.6587446963106600 60.7468367957815760, -151.6577747810812600 60.7461252350916000, -151.6565312498173000 60.7451205448772950, -151.6553785087111800 60.7440902509643500, -151.6543187476120800 60.7430363165727840, -151.6533539756054600 60.7419607498887300, -151.6524860219123500 60.7408655995678260, -151.6517165304934500 60.7397529538358200, -151.6510469564518400 60.7386249314954500, -151.6504785651336500 60.7374836801278100, -151.6500124276314000 60.7363313760922100, -151.6496494216834200 60.7351702119357800, -151.6493902271772000 60.7340023990914800, -151.6492353252500300 60.7328301615827400, -151.6491850000876400 60.7316557306274940, -151.6491867906378600 60.7314598564872200, -151.6493105616331000 60.7239869048718200, -151.6493772427655200 60.7228616344569300, -151.6495398905534800 60.7217387130712040, -151.6497982118180000 60.7206201039347200, -151.6501517434082000 60.7195077603748800, -151.6506214808966000 60.7183558286586160, -151.6508745878918800 60.7178508710209140, -151.6508766293529200 60.7166557376722300, -151.6509309394113000 60.7154813471864800, -151.6510897461948000 60.7143092346834700, -151.6513527376387000 60.7131416304819140, -151.6517194011294400 60.7119807577058740, -151.6521890271018800 60.7108288250902900, -151.6527607126367600 60.7096880233836500, -151.6534333587624700 60.7085605235493500, -151.6542056740525800 60.7074484704705800, -151.6547771536427000 60.7067299481286700, -151.6551603835448200 60.7060875219216300, -151.6559326403790000 60.7049754688428600, -151.6568030797982700 60.7038809768257000, -151.6577700380567800 60.7028061278006100, -151.6588316670477600 60.7017529659266900, -151.6591276204433000 60.7014890113088650, -151.6594666576601000 60.7011121252244300, -151.6600867429088200 60.7004943062672740, -151.6610522757419000 60.6994181235476160, -151.6621137923176300 60.6983649616736900, -151.6632679408627400 60.6973354888418160, -151.6645125189375600 60.6963316637753100, -151.6658451514325600 60.6953553939363250, -151.6672632977629600 60.6944085355255540, -151.6687642554660000 60.6934928880863800, -151.6699143822429200 60.6928431099216250, -151.6711062195763300 60.6922116698327700, -151.6723385488848800 60.6915992108349660, -151.6736101138156700 60.6910063561584800, -151.6744710330117400 60.6906175945264300, -151.6763981920229000 60.6897872504812900, -151.6782673501580500 60.6890524594035100, -151.6802000112215000 60.6883583185816100, -151.6821924996840800 60.6877061455222700, -151.6842410276013000 60.6870971794912750, -151.6863417009087400 60.6865325770168600, -151.6884938091419600 60.6860256282801600, -151.6889829908723000 60.6859072451233000, -151.6897593576082400 60.6856985745296240, -151.6919081266587000 60.6851794085029600, -151.6941009642880500 60.6847066645809700, -151.6963337021386200 60.6842812411864000, -151.6986021008062800 60.6839039459104600, -151.7009018489411600 60.6835754946134200, -151.7032285803347000 60.6832965123242600, -151.7055778748190300 60.6830675278441700, -151.7078549438505500 60.6828948409242340, -151.7101447634700300 60.6827691273933850, -151.7124433083120000 60.6826906075855300, -151.7147465413197800 60.6826594199963000, -151.7229616710442600 60.6826324421335240, -151.7233330002177600 60.6826318269972940, -151.7257276340230600 60.6826574315952600, -151.7281177208561000 60.6827341968257800, -151.7304987218385000 60.6828619760993900, -151.7328661169776800 60.6830405274984060, -151.7352154096634000 60.6832695119784400, -151.7371181304973000 60.6834976546930400, -151.7390616976392200 60.6835184353275850, -151.7414518483241200 60.6835951996587800, -151.7438329131584000 60.6837229798317140, -151.7462003712501000 60.6839015312307300, -151.7485497268883400 60.6841305157107600, -151.7508765176371500 60.6844094979999800, -151.7514124317383200 60.6844860357020400, -151.7521940918838000 60.6845279818809300, -151.7545616093307800 60.6847065332799500, -151.7569110234249500 60.6849355177599800, -151.7592378726296800 60.6852145000492000, -151.7611743657044000 60.6855019053886600, -151.7615374894635400 60.6855455018235260, -151.7635223201989000 60.6857415216539400, -151.7658492278595500 60.6860205039431550, -151.7681491513622200 60.6863489543408150, -151.7704177218003800 60.6867262496167540, -151.7726506296228300 60.6871516730113300, -151.7748436336267700 60.6876244160340550, -151.7769925663538000 60.6881435820607200, -151.7790933439826200 60.6887081845351300, -151.7811419744225500 60.6893171505661260, -151.7831345627098800 60.6899693227261400, -151.7850673209001000 60.6906634644473700, -151.7869365725647400 60.6913982546258240, -151.7880998573225200 60.6918900560812600, -151.7892346686450000 60.6923976064644000, -151.7903401189013300 60.6929205109728400, -151.7914153429436800 60.6934583613143560, -151.7923323969225500 60.6939300908011300, -151.7934997340255000 60.6945496850199800, -151.7946269568685400 60.6951868915618300, -151.7961279937119000 60.6961025390010040, -151.7975462146860400 60.6970493974118300, -151.7988789173281500 60.6980256663515000, -151.8001235610534800 60.6990294914179460, -151.8011933549893200 60.6999836712095100, -151.8021447666676200 60.7001785264179150, -151.8025315803681000 60.7002129596604050, -151.8032593198617000 60.7002342672976740, -151.8056416149685200 60.7003620465712300, -151.8080102961382400 60.7005405970709260, -151.8103608658612400 60.7007695806516950, -151.8126888599029200 60.7010485629408550, -151.8149898562968000 60.7013770124392500, -151.8172594852370300 60.7017543068158700, -151.8194934353737200 60.7021797284118100, -151.8216874628061200 60.7026524705351560, -151.8232697039336500 60.7030389038224000, -151.8255384569342000 60.7034203125974160, -151.8277725221841200 60.7038457341933500, -151.8299666629311300 60.7043184763167000, -151.8315759133976400 60.7047085833345360, -151.8338454290233000 60.7050873193243800, -151.8360796102857600 60.7055127409203100, -151.8363939089517200 60.7055833008287200, -151.8382509442256800 60.7048575074680340, -151.8401845540739000 60.7041633675454500, -151.8421780209988300 60.7035111962847500, -151.8442275552574500 60.7029022320523950, -151.8463292591879400 60.7023376313766200, -151.8475044599628300 60.7020617517484900, -151.8484778115017700 60.7018135253739500, -151.8496079148733300 60.7015046289355400, -151.8517577397278700 60.7009854647074600, -151.8539516529464000 60.7005127225841100, -151.8561854879698700 60.7000873000889100, -151.8584549990989000 60.6997100057122340, -151.8607558767822600 60.6993815553145740, -151.8630837494154700 60.6991025739246800, -151.8652328889866000 60.6988986274697600, -151.8654343191385000 60.6988744473978840, -151.8675342316194600 60.6985755523199400, -151.8685357607167500 60.6984705951418850, -151.8688527294698600 60.6984175342418550, -151.8707312855203800 60.6980127125167400, -151.8729649460753700 60.6975872900214900, -151.8746667862431500 60.6973070163057860, -151.8747381708299000 60.6972924778656300, -151.8768167630831300 60.6967904493198500, -151.8790103912165500 60.6963177062971800, -151.8791104983508000 60.6962986388711560, -151.8792609873047000 60.6961883954781460, -151.8806791705072800 60.6952415370673200, -151.8821801668811700 60.6943258896281460, -151.8836798529428300 60.6934867133412000, -151.8852490880749100 60.6926787012611160, -151.8877211112402700 60.6914574174259100, -151.8895346535014400 60.6906015227421560, -151.8914261921650000 60.6897872504812900, -151.8932953503001500 60.6890524594035100, -151.8952280113636000 60.6883583185816100, -151.8963161937373300 60.6880021393872650, -151.8978963268539800 60.6872545932249640, -151.8998188741417000 60.6864262402788200, -151.9016878371239400 60.6856914492011000, -151.9036202967392600 60.6849973074798200, -151.9056125774584400 60.6843451335211600, -151.9076608913370300 60.6837361674901700, -151.9097613452099000 60.6831715650157550, -151.9119099460871200 60.6826523989890900, -151.9123681371797500 60.6825536120596200, -151.9130420774299000 60.6821707068127100, -151.9140290770802200 60.6816392785299300, -151.9150446194136400 60.6811209542686900, -151.9160879804758800 60.6806161045496400, -151.9170319367744400 60.6801713709120900, -151.9183944888145800 60.6795508072240200, -151.9197990562814000 60.6789532185162560, -151.9216675857904300 60.6782184265392200, -151.9235995975433600 60.6775242839186150, -151.9255914160110000 60.6768721090606400, -151.9276392550475500 60.6762631421303800, -151.9297392223871800 60.6756985387565900, -151.9318841252521400 60.6752069360513250, -151.9320578751707800 60.6751425922568600, -151.9333406762311800 60.6744763025394040, -151.9358407330633400 60.6732270300034900, -151.9377526602570500 60.6723168324559200, -151.9397522641556300 60.6714531973072440, -151.9416203592921300 60.6707184035315660, -151.9434326416031000 60.6700671252976350, -151.9442152379428400 60.6694933416444540, -151.9456322457315300 60.6685464787370850, -151.9471319974437000 60.6676308268012600, -151.9487116368325400 60.6667481269245740, -151.9503681547665000 60.6659000554432740, -151.9520983982224600 60.6650882239424600, -151.9538990729838000 60.6643141765580400, -151.9545310238876300 60.6640581620545700, -151.9555028106062000 60.6636704121598300, -151.9572285313715800 60.6630094203485440, -151.9590065414187200 60.6623827151902300, -151.9608340132790500 60.6617912922344000, -151.9627080412430800 60.6612360912726560, -151.9632888180245000 60.6610798682413600, -151.9636713545493500 60.6607993247291100, -151.9650879792268400 60.6598524600230460, -151.9665873262440800 60.6589368071879560, -151.9681665393542900 60.6580541055126300, -151.9698226112245000 60.6572060322326400, -151.9704956908234400 60.6569038582265400, -151.9715488275163600 60.6563872498717300, -151.9721569805602000 60.6560670291701200, -151.9738866961141000 60.6552551967699860, -151.9756868222890000 60.6544811475869200, -151.9775539335671500 60.6537463520126040, -151.9794844785258500 60.6530522057947200, -151.9814747861324500 60.6524000291381100, -151.9835210711405000 60.6517910586105100, -151.9837902760004000 60.6517186245149560, -151.9848779313714100 60.6509914408023860, -151.9863768664991700 60.6500757861686600, -151.9877560586951000 60.6493156692827700, -151.9879025150889600 60.6492301374609040, -151.9880875065331600 60.6491264429310500, -151.9891289268584600 60.6484927824160400, -151.9907076282544000 60.6476100789420200, -151.9922038807045000 60.6468435993526800, -151.9922994012963000 60.6464186265184800, -151.9926653012626000 60.6452577411519100, -151.9931339514706700 60.6441057959457900, -151.9937044499004000 60.6429649825479400, -151.9943756993790000 60.6418374710225400, -151.9951464138758600 60.6407254053532400, -151.9952631215957700 60.6405783626013900, -151.9954028231817000 60.6402989801138700, -151.9960740178016500 60.6391714676891500, -151.9968446684466700 60.6380594029191700, -151.9977132993292600 60.6369648983114760, -151.9986782476030000 60.6358900384945500, -151.9997376714563300 60.6348368649294100, -152.0008895447167000 60.6338073813056440, -152.0021316694409600 60.6328035454473000, -152.0034616759156000 60.6318272657158000, -152.0048770289516800 60.6308803965131350, -152.0063750296838500 60.6299647391814460, -152.0079528245631800 60.6290820330094700, -152.0096074089547400 60.6282339552329300, -152.0108355627110000 60.6276758071928160, -152.0113394240751200 60.6274295170586000, -152.0115628840198400 60.6273243170636500, -152.0124980755257400 60.6268449523327600, -152.0142262244606600 60.6260331163352900, -152.0160247210639900 60.6252590626556900, -152.0174068279627000 60.6247146436659250, -152.0175979383941200 60.6243934561931040, -152.0183682347062300 60.6232813878258400, -152.0192364671892000 60.6221868814195100, -152.0202009738958000 60.6211120189046260, -152.0212599112159000 60.6200588426415300, -152.0224112565742000 60.6190293572191200, -152.0233483609381000 60.6182627166510900, -152.0243367140680600 60.6175117863399460, -152.0251500834095900 60.6169157138891140, -152.0254286007493000 60.6163322148598800, -152.0259175054884500 60.6154452153244850, -152.0262431940681200 60.6149248576960500, -152.0267112030595300 60.6137727820882900, -152.0272811636947000 60.6126319632945200, -152.0279517809499000 60.6115044463731500, -152.0287217696938700 60.6103923753079240, -152.0295896550385000 60.6092978671029500, -152.0299215201620000 60.6089278815165900, -152.0304989460694900 60.6080851295251360, -152.0305668475819200 60.6079379608682400, -152.0312373668110000 60.6068104430475500, -152.0320072431397300 60.6056983710830100, -152.0328750025793000 60.6046038610794000, -152.0338389831825000 60.6035289949671800, -152.0348973440371800 60.6024758160061800, -152.0360480616686800 60.6014463278857500, -152.0364031967501000 60.6011510642702550, -152.0367933775123400 60.6005873656145000, -152.0376609984563000 60.5994928556108300, -152.0386248270740700 60.5984179885993500, -152.0396830197555300 60.5973648087389700, -152.0400355441050500 60.5970493733299800, -152.0403775131117000 60.5966679861387000, -152.0414310787812400 60.5956116442620200, -152.0419414827132000 60.5948643598024400, -152.0421511452591000 60.5945742484029200, -152.0423808788744400 60.5935755134992200, -152.0426972486790500 60.5925917271265460, -152.0431651317654000 60.5914397720279100, -152.0437346966988600 60.5902989496368600, -152.0444048490045400 60.5891714282188900, -152.0449428693179400 60.5883938411029100, -152.0450034098794300 60.5882447712792200, -152.0455729181556000 60.5871039470895300, -152.0462430048108000 60.5859764256715600, -152.0470123838144300 60.5848643501097400, -152.0480245366030700 60.5835997000661450, -152.0483590349414800 60.5832108260188400, -152.0490446151168600 60.5824469886376850, -152.0497779762725700 60.5816939736980100, -152.0505584106421000 60.5809525042547000, -152.0513851645936500 60.5802232916716400, -152.0526252298704400 60.5792194468200500, -152.0539530303080700 60.5782431571960300, -152.0553660370129600 60.5772962798994300, -152.0568615538176000 60.5763806135744860, -152.0584367343677700 60.5754978993086900, -152.0600885767264000 60.5746498143375300, -152.0618193130108600 60.5738475354354500, -152.0620060842133800 60.5737551372898200, -152.0628660564233300 60.5732717480927360, -152.0642858458151000 60.5725039653857500, -152.0657646559141000 60.5717636713563900, -152.0673002860793000 60.5710519649762800, -152.0688904565293200 60.5703699020493800, -152.0707527123677500 60.5696350956831700, -152.0726782382101000 60.5689409395727700, -152.0746633702183300 60.5682887521242600, -152.0767043366358000 60.5676797735027900, -152.0787465639027700 60.5671281518427800, -152.0798289825215000 60.5668503548600400, -152.0814425955992700 60.5664527286106140, -152.0830819391801200 60.5660814956645500, -152.0847452308077300 60.5657370589182200, -152.0851368855588000 60.5656633333961740, -152.0860616179492700 60.5649144202643600, -152.0873888320289500 60.5639381288416400, -152.0888012128057000 60.5629912488470840, -152.0902960686086400 60.5620755807235000, -152.0918705521842200 60.5611928637596860, -152.0935216642933500 60.5603447769898900, -152.0952462618055000 60.5595329310999660, -152.0970410621952500 60.5587588684271050, -152.0979249500763600 60.5584082623315100, -152.0986024021791000 60.5580821708555300, -152.1001921094782300 60.5573747182687040, -152.1009699897731800 60.5570419268435100, -152.1017102631181200 60.5567308630389800, -152.1035717347477300 60.5559960548740700, -152.1054964494015800 60.5553018969650340, -152.1074807459396500 60.5546497077178860, -152.1095208517059200 60.5540407272977750, -152.1116128888237400 60.5534761113335100, -152.1137528813903300 60.5529569327163100, -152.1145282894489700 60.5527993220311500, -152.1159348974775000 60.5524764968928900, -152.1166703567515400 60.5522899307357500, -152.1188541921672000 60.5518171751226100, -152.1210777659261200 60.5513917418354600, -152.1233368539126600 60.5510144366669500, -152.1256271636626400 60.5506859781754100, -152.1266614091966600 60.5505600865788000, -152.1289202768492700 60.5501814333265400, -152.1312105272440000 60.5498529739356300, -152.1335276493814800 60.5495739853511740, -152.1358672419796000 60.5493449945759040, -152.1377609525059100 60.5491974868745600, -152.1396639863039000 60.5490827423747100, -152.1415740087335000 60.5490009013705600, -152.1434886761614400 60.5489520654854800, -152.1484015969561000 60.5488691345030360, -152.1502780000296600 60.5488532848512500, -152.1526627412924600 60.5488788903485900, -152.1550429535694200 60.5489556564784300, -152.1562880127815400 60.5490227530976300, -152.1580057196882000 60.5485590941269700, -152.1601515416603000 60.5480617726327640, -152.1604772167501000 60.5479789468709550, -152.1617042832260700 60.5472145456148500, -152.1632780446460000 60.5463318268523950, -152.1649283986266700 60.5454837373846400, -152.1666522047354400 60.5446718896960200, -152.1684461813461600 60.5438978252245200, -152.1699239041648200 60.5433089572426300, -152.1714422457630000 60.5427457343282100, -152.1729993715237600 60.5422088363687860, -152.1735331794126600 60.5420380730986400, -152.1746759452386500 60.5414591210416700, -152.1766681396229000 60.5404998582818600, -152.1787568492491700 60.5395918119126600, -152.1806173361211400 60.5388570010497900, -152.1825410318431300 60.5381628413421140, -152.1840485698855600 60.5376670873662300, -152.1842438396814100 60.5375667167306200, -152.1859672240081500 60.5367548672433600, -152.1877607626490500 60.5359808018725400, -152.1896210417776300 60.5352459910097300, -152.1915445234609500 60.5345518304027340, -152.1935275501563000 60.5338996393569460, -152.1955663501069300 60.5332906571381950, -152.1963211816771500 60.5330976860094550, -152.1966937402239000 60.5329861916594600, -152.1980116535149800 60.5325527283258100, -152.1984735866866500 60.5322695102297500, -152.1999207424482800 60.5314546282285700, -152.2014331503196200 60.5306690605287940, -152.2021001612933700 60.5303362529157900, -152.2039589799229600 60.5294736654773260, -152.2041983470760200 60.5293505365980300, -152.2055284039127000 60.5286525107048900, -152.2069072534669400 60.5279761935465200, -152.2083340305910000 60.5273244800407600, -152.2102227975440500 60.5264919929111900, -152.2115496527942200 60.5259257725564340, -152.2126380653943700 60.5254957149553550, -152.2128138459821700 60.5251993766499940, -152.2135817788759800 60.5240872902962800, -152.2144473475670200 60.5229927668028150, -152.2154088973027500 60.5219178854021600, -152.2164645880702700 60.5208646929512500, -152.2166956185079700 60.5206574765613250, -152.2171335676600000 60.5201678829415100, -152.2181892017702300 60.5191146895913300, -152.2193369579342500 60.5180851861824750, -152.2206852287402800 60.5169962429822600, -152.2215187590834400 60.5163575291766700, -152.2224811676717300 60.5156451653921300, -152.2234889758355500 60.5149482339738800, -152.2245411637436800 60.5142674390911000, -152.2256366665988600 60.5136034660271800, -152.2272087957493000 60.5127207427681240, -152.2288574392194000 60.5118726488037740, -152.2305794574759500 60.5110607957191750, -152.2323715751880000 60.5102867267510760, -152.2339284599304400 60.5096668528430540, -152.2355303026813000 60.5090755036316640, -152.2371749531615400 60.5085134714196300, -152.2383635259559200 60.5081382895504600, -152.2390505756235400 60.5076320144060000, -152.2404605030497500 60.5066851254182440, -152.2419472451692000 60.5057626620172750, -152.2424796123442000 60.5053185147377200, -152.2437412316725000 60.5043829940799500, -152.2450808186248400 60.5034742309510400, -152.2461109074923500 60.5028335710125600, -152.2473462810060300 60.5018313026725400, -152.2486709122328000 60.5008550004579300, -152.2500805446813700 60.4999081105709140, -152.2515724929761500 60.4989924316554400, -152.2526600988844300 60.4983732915941900, -152.2537853477156000 60.4977707485213050, -152.2549471971554000 60.4971853600164300, -152.2561445707153500 60.4966176674714100, -152.2583302092717200 60.4956123657181600, -152.2586545398751000 60.4951422622057200, -152.2595193351491800 60.4940477324169600, -152.2604800260323500 60.4929728465197060, -152.2613899483873800 60.4920532456608300, -152.2615248035268400 60.4919107381900860, -152.2623450706684600 60.4909728433221400, -152.2625472778345900 60.4907709212410500, -152.2627593217852400 60.4904130612138700, -152.2626076619140500 60.4897245960133300, -152.2624539066224500 60.4885523153371300, -152.2624039411889000 60.4873778421138000, -152.2624578483510000 60.4862034111585560, -152.2626155156934500 60.4850312572867200, -152.2628766302522600 60.4838636126156640, -152.2632406848097200 60.4827026975714800, -152.2637069760960500 60.4815507235870800, -152.2642746056884800 60.4804098805116150, -152.2649424827094000 60.4792823393085540, -152.2657093274234800 60.4781702448609600, -152.2665736703385700 60.4770757123743000, -152.2668292360803500 60.4767896173470400, -152.2670460014717500 60.4764752431380000, -152.2679102985214300 60.4753807106513360, -152.2688704363215500 60.4743058211568040, -152.2699245775572000 60.4732526197126960, -152.2710707104449000 60.4722231091092800, -152.2723066460348500 60.4712192453719100, -152.2736300281033000 60.4702429386607600, -152.2750383313538700 60.4692960433777700, -152.2758530352893200 60.4687955472767300, -152.2763215335119200 60.4680043300358500, -152.2767635179219800 60.4673631296047900, -152.2768017948669000 60.4665650064699200, -152.2769744835855200 60.4653377754180500, -152.2771144001094400 60.4645906537357400, -152.2771463737061600 60.4591825482360700, -152.2771570180818800 60.4588740474993640, -152.2767175751559400 60.4579840469263000, -152.2762554279456000 60.4568316961259000, -152.2758955228600500 60.4556704843054700, -152.2756385361894600 60.4545026237971100, -152.2756274664344000 60.4544181333902200, -152.2753734160503000 60.4539863508894100, -152.2748099835938300 60.4528450545556700, -152.2743479083292800 60.4516927019566900, -152.2739880599010000 60.4505314901362000, -152.2737311136999000 60.4493636287285200, -152.2735775454673300 60.4481913408577600, -152.2735391291274700 60.4472872766865500, -152.2734304334677000 60.4470670614957700, -152.2729684400414400 60.4459147088967400, -152.2726086554650400 60.4447534952776660, -152.2725651750427600 60.4445796068634400, -152.2724908964377000 60.4444764006653940, -152.2722079796145400 60.4441161313544060, -152.2714454930150500 60.4430034388576600, -152.2707760988378700 60.4418800111536700, -152.2703996669110600 60.4414291693207700, -152.2696992164456400 60.4408712658962500, -152.2685572492176500 60.4398409297152200, -152.2675688367324000 60.4388646427891000, -152.2674930805412100 60.4388049682747240, -152.2671614420468700 60.4386563858835760, -152.2669906985618700 60.4385600523046400, -152.2661147094262600 60.4384111758351400, -152.2638994040342500 60.4379850770497460, -152.2617261707261800 60.4374996868610900, -152.2607094898510500 60.4372718750970000, -152.2603405106060600 60.4371974696875300, -152.2580876153511400 60.4368281819750450, -152.2558724187770700 60.4364020831896500, -152.2536970001164300 60.4359286018235500, -152.2515655106397800 60.4354086416955200, -152.2494820125848000 60.4348431947576600, -152.2474504791562700 60.4342333392972360, -152.2454747819356000 60.4335802390368700, -152.2435586872835500 60.4328851395376300, -152.2417058437496600 60.4321493672995300, -152.2402425415600000 60.4315194983262240, -152.2388256102137200 60.4308642558807500, -152.2382073047233200 60.4305678923943800, -152.2369338844911500 60.4301360874105740, -152.2364779668846200 60.4299971880198540, -152.2350973816388000 60.4296212138480100, -152.2330661737648800 60.4290113583875300, -152.2310907931055800 60.4283582572278400, -152.2291750051223600 60.4276631577286000, -152.2273224592640600 60.4269273845911800, -152.2255366844703700 60.4261523416573140, -152.2249707123284800 60.4258841899035100, -152.2237957741556300 60.4255652282527650, -152.2217648189911800 60.4249553727922800, -152.2197896847461300 60.4243022716326000, -152.2178741350832400 60.4236071712340400, -152.2168937400540200 60.4232114812249400, -152.2166886955268400 60.4231362934052640, -152.2161187519788000 60.4229119943930750, -152.2160165089546800 60.4228825604818100, -152.2158850181790200 60.4228413310626140, -152.2157346317478400 60.4227896371321000, -152.2149843876193500 60.4226506514065140, -152.2128537668878000 60.4221306912784260, -152.2107711177928300 60.4215652425419900, -152.2087404126399000 60.4209553861821860, -152.2067655203124700 60.4203022850225000, -152.2048502053726500 60.4196071846239400, -152.2029981172692600 60.4188714105872000, -152.2011083394782500 60.4180488654628200, -152.1992975680283000 60.4171839811558600, -152.1962976059497200 60.4156831133850600, -152.1947611987702700 60.4148821798687550, -152.1932925510104000 60.4140507566371500, -152.1918069267482300 60.4131341172457600, -152.1904036471106000 60.4121862875671800, -152.1890853803859600 60.4112090734400340, -152.1878546302869200 60.4102043391589500, -152.1867137359501200 60.4091739993806400, -152.1856648611444000 60.4081200164257000, -152.1847099978680800 60.4070444002788900, -152.1838509546578000 60.4059491995959660, -152.1830893583871500 60.4048365008039240, -152.1824266506693600 60.4037084254035800, -152.1818640833607200 60.4025671200765800, -152.1814027176612600 60.4014147593836700, -152.1810864638691800 60.4004126349352100, -152.1808467387859300 60.3994053276937850, -152.1806838751606700 60.3983942675814660, -152.1805980969246000 60.3973808899161800, -152.1805179691289400 60.3956588572705200, -152.1805035718823000 60.3950168834225000, -152.1805573198644000 60.3938424362794400, -152.1807145321499200 60.3926702653205300, -152.1809749002714000 60.3915026035623440, -152.1813379161119100 60.3903416732296700, -152.1818028790995600 60.3891896812588100, -152.1823688935096000 60.3880488219955960, -152.1830348720616500 60.3869212637054000, -152.1837995377184700 60.3858091530700000, -152.1846614254843600 60.3847146034962100, -152.1856188869021000 60.3836396987131800, -152.1866700918512300 60.3825864810813200, -152.1878130330450200 60.3815569551894100, -152.1885677261196300 60.3809306412361500, -152.1893563775947200 60.3803146703857600, -152.1901784074075600 60.3797094949972600, -152.1910332121130000 60.3791155566376600, -152.1941175099151200 60.3770325684982940, -152.1952061563390300 60.3763222416781700, -152.1963416628374500 60.3756301423172800, -152.1979071343067700 60.3747473974744900, -152.1992632813753000 60.3740467860304200, -152.1993720651686300 60.3739085908088700, -152.2003292091256700 60.3728336842272000, -152.2013800660372000 60.3717804647966400, -152.2025226268177400 60.3707509362067750, -152.2037547133093400 60.3697470562816500, -152.2050739737848300 60.3687707315840500, -152.2064778919411200 60.3678238201132440, -152.2079637931944700 60.3669081214127350, -152.2091919676351800 60.3662124571392300, -152.2095297952638200 60.3660271635228600, -152.2104666316297000 60.3655362470002500, -152.2111711821043500 60.3651795030317000, -152.2117869011445400 60.3648810297357840, -152.2128568848373200 60.3643747087259040, -152.2143929493750800 60.3634973688085700, -152.2160340466339200 60.3626492523611660, -152.2166897603241600 60.3623386840830560, -152.2172630223705600 60.3616946687740200, -152.2183135195532500 60.3606414475448200, -152.2194556909273600 60.3596119171563150, -152.2206873556369300 60.3586080345332300, -152.2220061655520700 60.3576317089362500, -152.2234096043697200 60.3566847956668650, -152.2248949984054300 60.3557690951676600, -152.2260392634012500 60.3551311179068100, -152.2261965692162600 60.3550392278781400, -152.2273390877287000 60.3544010779474400, -152.2277665534836300 60.3541665050801700, -152.2286579120330000 60.3536983827742100, -152.2294072226651700 60.3533186296510850, -152.2300259364478000 60.3530184260595800, -152.2311204509480300 60.3525060265319550, -152.2314416330249300 60.3523622752988440, -152.2329030835104800 60.3517302623417900, -152.2347528549602500 60.3509954271972900, -152.2350909173119600 60.3508727272945860, -152.2353073481555700 60.3507248256902360, -152.2362542893040000 60.3501151294097440, -152.2372359622698000 60.3495190803413400, -152.2390511044249000 60.3485017240753340, -152.2409673339752500 60.3475309823689940, -152.2448282107533000 60.3456710764590400, -152.2462893995361200 60.3449925937332500, -152.2477999817837100 60.3443412399562900, -152.2496493350487300 60.3436064039124740, -152.2515615203478500 60.3429122190237300, -152.2535329008226800 60.3422600063942100, -152.2543363110718800 60.3420287241463600, -152.2555625177959400 60.3416602826959550, -152.2563431455197000 60.3414335609101600, -152.2571266375842400 60.3412189404018600, -152.2584449438790300 60.3408667299157200, -152.2590277953964000 60.3407190216655640, -152.2605708009017200 60.3403469586452840, -152.2609672940053800 60.3402565749810300, -152.2627402444666700 60.3398733954409200, -152.2629421188836400 60.3398323746644100, -152.2649491655715000 60.3394469423225800, -152.2671935856154400 60.3390696227649500, -152.2694690259747300 60.3387411516828800, -152.2717711645076000 60.3384621514072140, -152.2740956287102600 60.3382331525380100, -152.2764380388843500 60.3380550382095200, -152.2765185084223800 60.3380497969606040, -152.2782396003772200 60.3379476501639800, -152.2787932931759000 60.3379170381408600, -152.2799854101985000 60.3378400849520060, -152.2817372157998400 60.3377697426795400, -152.2834926906351400 60.3377275078182700, -152.2846767398396500 60.3377180190713600, -152.2854521919650500 60.3374849885414600, -152.2875303498457500 60.3369203500941500, -152.2896561448152000 60.3364011516918600, -152.2918255380181400 60.3359283780922060, -152.2940306217158000 60.3354874252045760, -152.2945458864834300 60.3353451479602540, -152.2967152095392600 60.3348723734613400, -152.2989240074369700 60.3344469230870600, -152.3011680848392200 60.3340696035294300, -152.3034431762615400 60.3337411315480400, -152.3057449631595000 60.3334621312723700, -152.3080690721299400 60.3332331324031660, -152.3104110893003000 60.3330545693129900, -152.3127665675230600 60.3329267810461800, -152.3151310344696300 60.3328500113190100, -152.3174999998251000 60.3328244049224050, -152.3198689651805800 60.3328500113190100, -152.3222334321271500 60.3329267810461800, -152.3227388592109400 60.3329542013753440, -152.3240511877121200 60.3327950366616500, -152.3252248200693700 60.3325975986003300, -152.3255176690052000 60.3325553160750600, -152.3257443440262200 60.3322250994088450, -152.3266048153599000 60.3311305408418550, -152.3275607029640400 60.3300556261662560, -152.3281293946558000 60.3294849029060200, -152.3282654045247600 60.3292542169086200, -152.3290287167018800 60.3281420954813800, -152.3291344257131400 60.3280076117619050, -152.3289462407763600 60.3272225386892840, -152.3287832314609300 60.3262312195951700, -152.3286941742967000 60.3252375910420260, -152.3285865839037000 60.3231815474904900, -152.3285683321627700 60.3224609162383560, -152.3286219542397600 60.3212864556055000, -152.3287788121924000 60.3201142729553800, -152.3290385966538700 60.3189465977073950, -152.3294008022052000 60.3177856538848700, -152.3298647282745700 60.3166336493235350, -152.3304294809357800 60.3154927756710900, -152.3307968279112600 60.3148694303799860, -152.3307424863766000 60.3142182735545600, -152.3307222678183700 60.3134609202853100, -152.3307758746069000 60.3122864578538160, -152.3309326884927400 60.3111142725057300, -152.3311924010084800 60.3099465963583700, -152.3315545058357500 60.3087856507372600, -152.3320183033020200 60.3076336443772300, -152.3325829003805200 60.3064927698255250, -152.3332472124888300 60.3053651971461600, -152.3340099661869500 60.3042530712223200, -152.3348697000765800 60.3031585081586740, -152.3358247692976300 60.3020835880871600, -152.3362670711683800 60.3016393238957560, -152.3366227197627000 60.3011865053529700, -152.3375777314271300 60.3001115852815100, -152.3382093073136600 60.2994778860956440, -152.3386723628392500 60.2983286397549700, -152.3392367989390800 60.2971877634046200, -152.3399009212904500 60.2960601889266200, -152.3406634573526300 60.2949480621034600, -152.3415229466266700 60.2938534963418500, -152.3424909849709400 60.2927876540270500, -152.3426744736480000 60.2925663227776450, -152.3435266028703800 60.2914644940912000, -152.3441869471698500 60.2907432521993800, -152.3444798914338200 60.2903884687528940, -152.3447364509264300 60.2900509693768100, -152.3453141367379800 60.2893566091202600, -152.3459305932222800 60.2886705172306300, -152.3465853374433400 60.2879932270058700, -152.3470018026910000 60.2875773795924500, -152.3477854683246700 60.2868247819382100, -152.3486164005264200 60.2860847927790360, -152.3498452953241000 60.2850808975654200, -152.3511611392751200 60.2841045593779650, -152.3525614232710300 60.2831576344173640, -152.3540434781240000 60.2822419222270000, -152.3557206130158500 60.2812965063287700, -152.3574848778248200 60.2803910590002400, -152.3606802023294300 60.2788348523466200, -152.3612945912723300 60.2782787790424660, -152.3625231928910200 60.2772748829295300, -152.3638387229786400 60.2762985438427560, -152.3652452545648300 60.2753596714117600, -152.3653735716330000 60.2752682472319100, -152.3662489914977400 60.2745528779130400, -152.3675644118680700 60.2735765379269400, -152.3689642453036600 60.2726296111677000, -152.3704458235159200 60.2717138971786400, -152.3720034412058000 60.2708326973711340, -152.3756428239571200 60.2688617872417500, -152.3768642336974000 60.2682216282256040, -152.3781271471500800 60.2676016742779000, -152.3794302099362000 60.2670025872996000, -152.3807720236099800 60.2664250112053400, -152.3826169764922400 60.2656901643696300, -152.3845246130204300 60.2649959713870100, -152.3864913044301400 60.2643437488649740, -152.3885133113402000 60.2637347360692960, -152.3900285970421000 60.2633141330408650, -152.3905203661219600 60.2631487441192900, -152.3925423001869600 60.2625397313236100, -152.3946157033520000 60.2619750865810600, -152.3967366365864700 60.2614558800848400, -152.3989010682297000 60.2609831001900000, -152.4011048865812000 60.2605576435204850, -152.4033439034983200 60.2601803185668800, -152.4056138660870000 60.2598518429882100, -152.4079104629974500 60.2595728382159450, -152.4102293325176400 60.2593438357494600, -152.4119350316763400 60.2592083924533900, -152.4136485396483600 60.2591000097576740, -152.4153681198428400 60.2590187982789900, -152.4170920293736300 60.2589648389562200, -152.4230311638571000 60.2588259530553500, -152.4255830000553800 60.2587961027579700, -152.4261115657961000 60.2587973833925600, -152.4321693730181300 60.2588244817644640, -152.4341358054230400 60.2581487275817800, -152.4361574310206000 60.2575397138867300, -152.4382305185235700 60.2569750682448560, -152.4403511280021300 60.2564558617486900, -152.4414588553418600 60.2562198211878700, -152.4417711314325500 60.2561368632257200, -152.4424933850616500 60.2559353368463900, -152.4445647485642600 60.2553640632010000, -152.4459840864963700 60.2550241302594700, -152.4460711705480700 60.2549948627228100, -152.4470344352909300 60.2546339378060340, -152.4490005052690800 60.2539817134853600, -152.4495226750314000 60.2538206997655300, -152.4499968632646000 60.2535188540119860, -152.4515564972345200 60.2526360902833740, -152.4531920393811000 60.2517879576481600, -152.4549003762513500 60.2509760676914540, -152.4566782558967800 60.2502019636497700, -152.4585222959671600 60.2494671150154200, -152.4604289882072000 60.2487729193348400, -152.4623947065504400 60.2481206950141100, -152.4635471985443500 60.2477734011216060, -152.4641928964849500 60.2475364324604360, -152.4654353017977000 60.2470937735588450, -152.4667023071657200 60.2466687044971540, -152.4679929044489500 60.2462615643198100, -152.4693060666216400 60.2458726749840140, -152.4694870524854500 60.2458233624582800, -152.4703694088211400 60.2452253582637240, -152.4718416844461600 60.2443133216025900, -152.4742457692268300 60.2428884465446100, -152.4758194488085000 60.2419970628142800, -152.4774544603550300 60.2411489292797460, -152.4791622432429000 60.2403370375243400, -152.4796450892494300 60.2401267337618300, -152.4805121786940600 60.2396769252499700, -152.4806773904492000 60.2395978964258350, -152.4799680537826000 60.2387947262956200, -152.4791134073578300 60.2376995004316300, -152.4783557069502800 60.2365867755593200, -152.4776963878779600 60.2354586722799500, -152.4771366939032800 60.2343173399733000, -152.4766776817296000 60.2331649514014200, -152.4764096567802200 60.2323283291891000, -152.4761946999254300 60.2314879262268600, -152.4760020930221500 60.2306268496494700, -152.4758560539137300 60.2298791461057600, -152.4757520176414700 60.2291297077698600, -152.4756900606477600 60.2283791174024260, -152.4756702296973000 60.2276279586633900, -152.4756937793444300 60.2268556038031300, -152.4757618589226200 60.2260839018506400, -152.4758611323853200 60.2252581857167700, -152.4759072909886600 60.2248896885083700, -152.4760186216620400 60.2240943541711400, -152.4761843793056400 60.2233191466613700, -152.4762817992656000 60.2229193152742250, -152.4763925282925000 60.2225379487673540, -152.4766402051813000 60.2217576268130900, -152.4771027660797500 60.2206056051646200, -152.4776658603911000 60.2194647144251000, -152.4783284053316000 60.2183371255579800, -152.4790891301592000 60.2172249843455900, -152.4799465797708000 60.2161304050941900, -152.4808991120043800 60.2150554697341800, -152.4819449066321000 60.2140022233240300, -152.4830819662597000 60.2129726677544600, -152.4843081217224200 60.2119687599503660, -152.4856210320849400 60.2109924100717000, -152.4870181945340200 60.2100454734199400, -152.4884969470764000 60.2091297486390400, -152.4895770823164600 60.2085139999211950, -152.4900554155249800 60.2082487268972950, -152.4906923675587000 60.2079113174534100, -152.4916882147393000 60.2073996526718800, -152.4918428882386600 60.2073235493423900, -152.4930304295107000 60.2067569431784500, -152.4933935316861000 60.2065863031154440, -152.4950021346407700 60.2058390906016140, -152.4960602158063000 60.2053609255663100, -152.4971432738430000 60.2048968295251260, -152.4989847697313200 60.2041619754948560, -152.5008888314543800 60.2034677744183000, -152.5028518383416300 60.2028155438023900, -152.5048700582066000 60.2022065247114140, -152.5069396527427400 60.2016418736735660, -152.5090566910134600 60.2011226617814800, -152.5112171476532000 60.2006498764906700, -152.5134169181562200 60.2002244153245560, -152.5156518233729300 60.1998470867736700, -152.5160008709434000 60.1997964846201500, -152.5165184118951600 60.1993346440785900, -152.5177440574422600 60.1983307344758600, -152.5190564228156200 60.1973543818992900, -152.5204530052020000 60.1964074425495140, -152.5219311435074300 60.1954917168693000, -152.5234880210553000 60.1946089441474900, -152.5251206736801000 60.1937608025190800, -152.5268259915262700 60.1929489044684400, -152.5286007307391000 60.1921747914335600, -152.5304415134650400 60.1914399356045900, -152.5323448377440300 60.1907457327294540, -152.5343070847041500 60.1900935012141640, -152.5353484582647000 60.1897791333004200, -152.5352946976921000 60.1897457351776100, -152.5339009517675000 60.1887978776200040, -152.5325916377938100 60.1878206347145700, -152.5313692450945700 60.1868158707558800, -152.5302360948198800 60.1857854986019450, -152.5291943390474800 60.1847314841707000, -152.5282459535878600 60.1836558347490040, -152.5273927361858000 60.1825605998918150, -152.5266056144575000 60.1813990930937200, -152.5265330148867000 60.1812733292008500, -152.5260447072974000 60.1808718844299600, -152.5249085721728500 60.1798473740571500, -152.5246782333137800 60.1797296519019940, -152.5236467460005000 60.1791344347064400, -152.5221717319398400 60.1782177674360800, -152.5207784734477600 60.1772699080798360, -152.5194696172290200 60.1762926633757600, -152.5182476526070400 60.1752878976184300, -152.5174547464393700 60.1745780474390100, -152.5167052181712400 60.1738565996024600, -152.5162607084649000 60.1734124379337350, -152.5155921092883800 60.1727197522148460, -152.5151218295088000 60.1721946362735000, -152.5150108864432400 60.1721502277508760, -152.5130474110091800 60.1712871924500500, -152.5111702417132400 60.1703777602255060, -152.5094762814052300 60.1695162690606400, -152.5080383706742300 60.1687559849008300, -152.5066607963586300 60.1679684665715500, -152.5051862823210300 60.1670517975024950, -152.5037934959730400 60.1661039372469900, -152.5024850831200600 60.1651266916435360, -152.5012635321862400 60.1641219240875700, -152.5001311625231000 60.1630915492356700, -152.4998076817790600 60.1627640350322400, -152.4994319018607600 60.1624549281524400, -152.4982995897542300 60.1614245533005500, -152.4972586029021800 60.1603705352720200, -152.4963109180144200 60.1592948813537300, -152.4954583301378000 60.1581996428992600, -152.4947024544546800 60.1570869063357350, -152.4940447217864500 60.1559587904658900, -152.4934863740968500 60.1548174446693900, -152.4930284653913500 60.1536650426077100, -152.4926718554217500 60.1525037795258900, -152.4924172141830600 60.1513358659574900, -152.4922650156179600 60.1501635268253400, -152.4922549126340800 60.1496639885023100, -152.4922288988446000 60.1489884303718440, -152.4922163577986400 60.1484889945714940, -152.4922696830993800 60.1473145024623900, -152.4924256983872500 60.1461422874366460, -152.4926840960941400 60.1449745807123600, -152.4930443734990000 60.1438136054136400, -152.4935058336273000 60.1426615693760000, -152.4940675888481000 60.1415206642473100, -152.4947285608743600 60.1403930618903360, -152.4954874798632700 60.1392809062888300, -152.4963428943091000 60.1381863126482600, -152.4972931674457000 60.1371113637984540, -152.4983364826425400 60.1360581029991300, -152.4994708479012800 60.1350285339397600, -152.5006940976544500 60.1340246135451400, -152.5020038972620300 60.1330482501766700, -152.5031582526512200 60.1322640098762240, -152.5024167490337000 60.1313106916351800, -152.5016614884869000 60.1301979505749960, -152.5013357990078800 60.1296161485664700, -152.5006393172506600 60.1289266005821900, -152.4996925343829200 60.1278509421673000, -152.4988407576947800 60.1267556992161760, -152.4980856014693000 60.1256429572567300, -152.4974284938299000 60.1245148359909650, -152.4968706758410000 60.1233734847985500, -152.4964132015080000 60.1222210782402160, -152.4960569296835300 60.1210598097624700, -152.4958025294631300 60.1198918907981600, -152.4956504729909200 60.1187195462700860, -152.4956010399560000 60.1175450073962450, -152.4956039483635000 60.1157670090402700, -152.4956312931496400 60.1149315118798300, -152.4957105665893400 60.1140968402970100, -152.4958416859450000 60.1132637982857400, -152.4959990897861200 60.1125487302397800, -152.4959450162494600 60.1117114119521700, -152.4959170356426600 60.1108220103275800, -152.4959702970915000 60.1096475119231850, -152.4961261316156500 60.1084752906022600, -152.4963842316469400 60.1073075766833540, -152.4967440944643600 60.1061465941900200, -152.4972050257913000 60.1049945509578300, -152.4977661370975300 60.1038536395338950, -152.4984263509952600 60.1027260299823640, -152.4991422257331000 60.1016749212606700, -152.4990690398043000 60.1008602011374360, -152.4990456529345000 60.1000450151653900, -152.4990988963969300 60.0988705149623600, -152.4992546796597000 60.0976982909434100, -152.4995126942554000 60.0965305761252500, -152.4998724383623000 60.0953695918332760, -152.5003332186031200 60.0942175459030640, -152.5008941455483600 60.0930766326804900, -152.5015541436088100 60.0919490213303200, -152.5023119456397500 60.0908368567356200, -152.5025109287363400 60.0905780669243100, -152.5031690364218700 60.0894490193568340, -152.5039267808962000 60.0883368538627600, -152.5047572220681200 60.0872707570398460, -152.5056775100090400 60.0862232348145000, -152.5066920810746500 60.0852009403711800, -152.5067572297623100 60.0851304380193500, -152.5077057995829600 60.0840552904193700, -152.5087474348462000 60.0830020206267900, -152.5098799744812000 60.0819724425742300, -152.5111012547191000 60.0809685131864060, -152.5124089472151000 60.0799921408246860, -152.5138005581492000 60.0790451825891400, -152.5152734363200000 60.0781294380232100, -152.5168247731447500 60.0772466473149500, -152.5175989644206400 60.0768430207888300, -152.5175663280235800 60.0765468533546700, -152.5175306528173600 60.0755450256824600, -152.5175838549109500 60.0743705209828250, -152.5177395194632200 60.0731982933666000, -152.5177882555235600 60.0729775583676540, -152.5177697168989000 60.0727911046258200, -152.5177033586230700 60.0714330276122150, -152.5177565535221000 60.0702585220132600, -152.5179121991886000 60.0690862934977200, -152.5181699880544700 60.0679185732835800, -152.5185294191973000 60.0667575826963100, -152.5188574792892000 60.0659111003170700, -152.5192197927592000 60.0650502440735750, -152.5196482702514500 60.0641151353053150, -152.5201430871337300 60.0631882481391700, -152.5202757416321300 60.0629711131264200, -152.5203418409032000 60.0627575816971000, -152.5208021633891000 60.0616055303709700, -152.5212247188456700 60.0607452047274800, -152.5209804962528600 60.0581254301445140, -152.5209221275541200 60.0568500341018400, -152.5209908915164000 60.0555114984569500, -152.5211926391289700 60.0541763253771700, -152.5213881985065100 60.0532044037602760, -152.5216282257620000 60.0522008853626500, -152.5219433778845500 60.0512025785362200, -152.5224035384924800 60.0500505245121300, -152.5229637136044700 60.0489096031956800, -152.5230728616232300 60.0487272026982740, -152.5232706189438800 60.0478679472479940, -152.5234658095994000 60.0471180259761500, -152.5238408862478800 60.0458965775650300, -152.5243009731114000 60.0447445235410000, -152.5248610573918600 60.0436036004258540, -152.5255200643994200 60.0424759800824860, -152.5261926286868300 60.0414928151413400, -152.5262697059821200 60.0413603593931400, -152.5267551663178600 60.0403535980401560, -152.5274141076749000 60.0392259767974700, -152.5281706983190300 60.0381138032095100, -152.5287203351753000 60.0373924156275500, -152.5293110593578700 60.0366792037822850, -152.5299423843335400 60.0359747549310300, -152.5306137884955100 60.0352796473379160, -152.5311143331599000 60.0347798284263940, -152.5311879939307600 60.0347089402654300, -152.5313756365763400 60.0343265943968700, -152.5320344574242300 60.0331989722548100, -152.5326785266926200 60.0322520284084360, -152.5314744262037700 60.0313490281351960, -152.5302578080513700 60.0303442425927760, -152.5291300105415400 60.0293138488551100, -152.5280931740607000 60.0282598110414940, -152.5271492654262300 60.0271841382374300, -152.5263000742889700 60.0260888799978700, -152.5256150885654400 60.0250833731991500, -152.5250099266667400 60.0240651248057000, -152.5244855229884700 60.0230357194229800, -152.5240426878197600 60.0219967614414140, -152.5237110106545800 60.0211356291060300, -152.5235482531493300 60.0206931932363550, -152.5231930668065600 60.0195319076714800, -152.5229394391038000 60.0183639716200300, -152.5227878412858000 60.0171916091055100, -152.5227385521424400 60.0160170513459000, -152.5227916535119700 60.0148425358544300, -152.5229470338785000 60.0136702974463100, -152.5232043874724800 60.0125025664403300, -152.5235632124722500 60.0113415668598700, -152.5240228163998200 60.0101895065405400, -152.5245823143223200 60.0090485771301600, -152.5252406315498800 60.0079209504915500, -152.5259965045350200 60.0068087706083600, -152.5268484871679000 60.0057141535853600, -152.5277949489777000 60.0046391813531840, -152.5288340814276800 60.0035858980708100, -152.5299638997141800 60.0025563056290700, -152.5305720176844500 60.0020520440666600, -152.5306667369803000 60.0019731834157140, -152.5312771743021200 60.0014721890902900, -152.5317960390559300 60.0010550502504400, -152.5323557645069000 60.0006261905463100, -152.5331002161020700 60.0000783981995500, -152.5332118075788200 59.9999999998001950, -162.2507160800830000 59.9999999998001950, -162.2511235278285300 60.0005828342304400, -162.2515523884319500 60.0012517337805200, -162.2517648694531300 60.0016343692308300, -162.2518628146171700 60.0017739961730300, -162.2523747159203800 60.0022447022312800, -162.2533337520510000 60.0032029667435700, -162.2541977658142000 60.0041108827111300, -162.2548730676379300 60.0046673094488500, -162.2560029578701800 60.0056969009912700, -162.2570421568700300 60.0067501842736400, -162.2579886789343700 60.0078251565058200, -162.2586070941420600 60.0086196373864000, -162.2591188371645800 60.0090859061896800, -162.2601581431837300 60.0101391894720560, -162.2611047623748600 60.0112141608049100, -162.2619568871006400 60.0123087769285900, -162.2627128859908800 60.0134209550131460, -162.2633713129357000 60.0145485807524300, -162.2639309034884000 60.0156895092634950, -162.2643905838583300 60.0168415686835000, -162.2645408992431000 60.0173389935997100, -162.2646136813762600 60.0174464194167850, -162.2652962272390800 60.0186289020022600, -162.2655749981876000 60.0191567932514540, -162.2661012265903000 60.0202441806245000, -162.2665367844450000 60.0213415702573340, -162.2668957182627600 60.0225025689384800, -162.2669510778299600 60.0227536857340740, -162.2671003410079000 60.0230089295185400, -162.2676584710615700 60.0241438388671300, -162.2681177044684700 60.0252897990849900, -162.2684282790418000 60.0261626244056300, -162.2687915071223300 60.0273355687815500, -162.2690489767288700 60.0285032970895700, -162.2692044281418200 60.0296755327996700, -162.2692575546923600 60.0308500455931800, -162.2692279067425000 60.0317659160642200, -162.2691360140158000 60.0326807505163060, -162.2689558834072700 60.0340192825639200, -162.2703373302036000 60.0348912589245200, -162.2715293761797300 60.0356725080798100, -162.2726636937744300 60.0364749920273100, -162.2737387712272700 60.0372976432717000, -162.2747531723210300 60.0381393673379760, -162.2758842073902200 60.0391689534844800, -162.2761511981192700 60.0394392878928900, -162.2763827735461500 60.0396507391903360, -162.2775253711989000 60.0406689561074800, -162.2785656709689000 60.0417222330946200, -162.2795131966766500 60.0427971990315540, -162.2803661361882000 60.0438918088599400, -162.2811228599320300 60.0450039815485750, -162.2815510937079800 60.0457366727093240, -162.2821481302320000 60.0465028114556400, -162.2829049133310700 60.0476149841442750, -162.2835640228613300 60.0487426035883200, -162.2841241943760300 60.0498835249048300, -162.2845843531853200 60.0510355789288600, -162.2849024712720000 60.0520446020767600, -162.2849707621908800 60.0523315856342500, -162.2856022886147000 60.0531418190397500, -162.2863592245985000 60.0542539899297500, -162.2870184663291300 60.0553816084745300, -162.2875787511584000 60.0565225288916600, -162.2880390025978600 60.0576745811170550, -162.2883839870313500 60.0587818408093900, -162.2886365409435700 60.0598953166156100, -162.2887962182708200 60.0610130821880260, -162.2888627339280000 60.0621332012862600, -162.2889695904741800 60.0681558126406700, -162.2891536403282000 60.0683918343157760, -162.2899109261482800 60.0695040025077560, -162.2905704736484200 60.0706316183545800, -162.2911310183817800 60.0717725360737500, -162.2915914829605400 60.0729245847018660, -162.2919509815525300 60.0740855743898100, -162.2922088198811000 60.0752532928052600, -162.2923644943259400 60.0764255204214800, -162.2924177000168000 60.0776000251211140, -162.2924173753615700 60.0777179244427100, -162.2923892670510000 60.0816581636933600, -162.2927870524804600 60.0824675400450000, -162.2932476672460200 60.0836195877737960, -162.2933784673423600 60.0840242728020260, -162.2941099255326000 60.0838442357229500, -162.2962627037607300 60.0833714405396200, -162.2984546564572000 60.0829459703803100, -162.3006816188616000 60.0825686337354900, -162.3029393614623400 60.0822401464656650, -162.3052235962919000 60.0819611327001440, -162.3075299823228000 60.0817321230391000, -162.3098541416552800 60.0815535518549950, -162.3121916604167700 60.0814257581922700, -162.3145380977550000 60.0813489848678160, -162.3168890002271500 60.0813233775718900, -162.3190862283467200 60.0813457455097900, -162.3259136690805300 60.0814846314106600, -162.3277142098429000 60.0815362884690100, -162.3295102908672000 60.0816179882796200, -162.3312999057660000 60.0817296418096000, -162.3330810562457300 60.0818711231538600, -162.3353874530684800 60.0821001328149600, -162.3376716968912800 60.0823791456811000, -162.3399294484852400 60.0827076329509300, -162.3421564216815000 60.0830849704950650, -162.3443483833711700 60.0835104406543800, -162.3465011705925200 60.0839832358377100, -162.3486106923295700 60.0845024585216800, -162.3506729394046000 60.0850671221500100, -162.3526839925721700 60.0856761538315140, -162.3546400288142600 60.0863283979372800, -162.3565373285348700 60.0870226134029500, -162.3583722836539500 60.0877574827217100, -162.3588335666157700 60.0879528271613000, -162.3619440580718000 60.0892850063979700, -162.3635857821580800 60.0900176355055460, -162.3651663226676200 60.0907831141494740, -162.3666830445868000 60.0915801688897200, -162.3681334181227000 60.0924074723270700, -162.3691721386832000 60.0930444054749840, -162.3701715139042000 60.0936968591228150, -162.3713669907939700 60.0945024700130260, -162.3722606399165600 60.0951228664271750, -162.3731187073624400 60.0957556725862800, -162.3739405006535600 60.0964003794740050, -162.3747253551909800 60.0970564690808260, -162.3758584128354700 60.0980860444354300, -162.3769005247394000 60.0991393115300500, -162.3778497025017500 60.1002142675744700, -162.3779500497549600 60.1003574567312740, -162.3785086627445700 60.1008064747390450, -162.3796418489921200 60.1018360500937100, -162.3806840796065700 60.1028893162889500, -162.3816333643882200 60.1039642714340500, -162.3824878894045600 60.1050588704705400, -162.3832460196880200 60.1061710323672860, -162.3839063028336000 60.1072986410195000, -162.3844674725957600 60.1084395524434300, -162.3849284524860600 60.1095915947763050, -162.3852118639363500 60.1105058356758400, -162.3855783556565500 60.1111316442100500, -162.3858766068199200 60.1117501070818300, -162.3872468048961000 60.1126872087477300, -162.3885529964236000 60.1136680813169700, -162.3891067683626400 60.1140182602345600, -162.3904998568828500 60.1149652130741860, -162.3918089379321000 60.1159415791406100, -162.3930315149924000 60.1169455031325100, -162.3941652570209700 60.1179750748898400, -162.3952079984503300 60.1190283392865000, -162.3961577499801500 60.1201032908342650, -162.3965739742095000 60.1206361886092960, -162.3972907608599000 60.1212870450611400, -162.3983173711497400 60.1220525902548960, -162.3989026607292000 60.1225425759791400, -162.3995472318192700 60.1230470497815760, -162.4002074025495700 60.1235245933853550, -162.4014302619969800 60.1245285155785600, -162.4025642648289200 60.1255580864365700, -162.4036072472766300 60.1266113490345900, -162.4039186132533800 60.1269636791305400, -162.4040430551428600 60.1270482378859000, -162.4053526164300600 60.1280246021537440, -162.4065756422520500 60.1290285234476300, -162.4077098006667400 60.1300580934063200, -162.4087529252073000 60.1311113551050200, -162.4097030256740800 60.1321863048541450, -162.4105582836378400 60.1332808993940400, -162.4113170650305000 60.1343930558948600, -162.4119779147489500 60.1355206600504740, -162.4125395674470600 60.1366615651791700, -162.4130009439383900 60.1378136030154450, -162.4132757371855000 60.1386998291338840, -162.4135905223846800 60.1392917593073000, -162.4138568179377600 60.1395067539335740, -162.4146186947969000 60.1402514276613260, -162.4147326532893000 60.1403588858539700, -162.4157541068665000 60.1412801108884900, -162.4165831172170400 60.1421168904821600, -162.4176015688573000 60.1413488262873560, -162.4188630703743600 60.1404754029175600, -162.4194157820127000 60.1401232778670200, -162.4203817654061200 60.1393306235095200, -162.4216917772537000 60.1383542619396960, -162.4223777747145000 60.1378882872147640, -162.4230150846783800 60.1371673636829200, -162.4240584016738800 60.1361141037829160, -162.4251927687312500 60.1350845338242300, -162.4263915056634200 60.1340997959688400, -162.4276735207163800 60.1331415233626700, -162.4290364621629700 60.1322114678849860, -162.4304778325858600 60.1313113301538350, -162.4335905453673400 60.1294502991920000, -162.4337158074385500 60.1293840227544900, -162.4344212833155400 60.1283638938786600, -162.4352764135756000 60.1272692993387640, -162.4362263710501700 60.1261943486903200, -162.4372693400080200 60.1251410860923000, -162.4384033293501400 60.1241115143349700, -162.4384798005023600 60.1240487335622300, -162.4384961996398700 60.1239745781642800, -162.4388562459190000 60.1228135983689100, -162.4393174110696200 60.1216615587339900, -162.4394842964631000 60.1213224019073800, -162.4394394355814500 60.1200783706203800, -162.4394307229494800 60.1195720064429800, -162.4394581531712200 60.1187352295472700, -162.4397889984634800 60.1134034881804950, -162.4392214255283300 60.1122615002680600, -162.4387640258391000 60.1111091368772460, -162.4382560563718700 60.1102368574450450, -162.4376984794012600 60.1090955035547300, -162.4372412020198300 60.1079430942984350, -162.4371941593829300 60.1078072400121640, -162.4370319567593700 60.1073315481124840, -162.4367528125922000 60.1069199877673000, -162.4360960763728000 60.1057918638035200, -162.4355385740459200 60.1046505099131400, -162.4350813578183800 60.1034980997575300, -162.4347252865427200 60.1023368276825100, -162.4344710293145200 60.1011689060202340, -162.4344487701945600 60.1009971930660640, -162.4341573565767200 60.1004005153715200, -162.4340311753984000 60.1000824368550200, -162.4334877204818800 60.0992810006177400, -162.4332355433856000 60.0988527290702450, -162.4331444807331800 60.0987739709420340, -162.4320310624835300 60.0977576956611900, -162.4309950129094800 60.0967004535631300, -162.4309137240890700 60.0966145593145000, -162.4306440749640500 60.0963686990562560, -162.4296051376669500 60.0953146711352100, -162.4286593161744700 60.0942390082237240, -162.4278084046341300 60.0931437598766800, -162.4270540155303600 60.0920310125212600, -162.4263975742886000 60.0909028858595800, -162.4260740791554000 60.0902403067448200, -162.4258388488837300 60.0901140041580100, -162.4246203286652000 60.0894126939407440, -162.4234230756144000 60.0886729296120700, -162.4223394240251800 60.0879785828453800, -162.4212121733031300 60.0872297461559100, -162.4201378099119800 60.0864617646987540, -162.4191176333720500 60.0856755692721550, -162.4181528748552500 60.0848721122582100, -162.4170232193460800 60.0838417266144200, -162.4159846741533500 60.0827876968947400, -162.4150392114903800 60.0817120321846100, -162.4141886219073600 60.0806167820389300, -162.4139332971839000 60.0802575541428600, -162.4122146486870700 60.0777838960100300, -162.4115473274471800 60.0767573423775050, -162.4109629165053500 60.0757182476990000, -162.4104623475592700 60.0746682820156400, -162.4100464174082000 60.0736091333548640, -162.4097161701651000 60.0725439313574160, -162.4094715167970300 60.0714729763968200, -162.4093128404152300 60.0703979852788700, -162.4092403874339000 60.0693206820039340, -162.4092139716474300 60.0683486713541600, -162.4092090199802700 60.0679610293780700, -162.4092092466094000 60.0678220292633100, -162.4092642698301500 60.0666270874701800, -162.4094253258181000 60.0654345423702700, -162.4097895908169300 60.0634076890136700, -162.4100454704221000 60.0622603672222200, -162.4103994696597800 60.0611195817033940, -162.4108597687633000 60.0599675303772640, -162.4114201129478400 60.0588266099601360, -162.4120794239262600 60.0576989923147300, -162.4128364390503800 60.0565868223240500, -162.4136897068145000 60.0554922142943040, -162.4146375967476700 60.0544172501560100, -162.4156782967159800 60.0533639749675100, -162.4168237398237000 60.0523085854728700, -162.4178763863861000 60.0512249725545100, -162.4190078342441300 60.0501953882066460, -162.4194603551112800 60.0498114316523000, -162.4205112066268600 60.0489310331407200, -162.4205706724985000 60.0488617655581150, -162.4209281377233400 60.0482259844416700, -162.4211415873143700 60.0479123036099600, -162.4213527787077600 60.0473835238306040, -162.4219129079543200 60.0462426016148360, -162.4225719680218800 60.0451149821707300, -162.4233305695501000 60.0439977049301800, -162.4235821261142000 60.0435653801382600, -162.4236266443541300 60.0433635704724800, -162.4239858065996600 60.0422025762879340, -162.4244458413025100 60.0410505213645250, -162.4246359885600000 60.0406631374938800, -162.4246450708133400 60.0391520201496860, -162.4247019898049600 60.0379923092976900, -162.4248586984701300 60.0368349007101760, -162.4251148937373200 60.0356819419681100, -162.4254700908719500 60.0345355734580150, -162.4259300185554800 60.0333835176352860, -162.4264899103810400 60.0322425927215600, -162.4271486898601300 60.0311149705794950, -162.4279050943446000 60.0300027951929000, -162.4285974446163400 60.0291035010258160, -162.4293536233710000 60.0282171759819200, -162.4301726557434300 60.0273449550057300, -162.4310534904262200 60.0264879532564900, -162.4314708882708400 60.0260991016922400, -162.4322928236548500 60.0253613455497000, -162.4335120120696800 60.0243574062693600, -162.4348174652538000 60.0233810249144400, -162.4361409597375000 60.0224765245720300, -162.4362015803386300 60.0224284432181300, -162.4371448369646200 60.0215596387663500, -162.4373529274955700 60.0208965704204600, -162.4378126645228200 60.0197445118997700, -162.4383723243232700 60.0186035842880300, -162.4390308322071200 60.0174759594480100, -162.4397869237275200 60.0163637813634500, -162.4398854921217300 60.0162371793024360, -162.4399755430368700 60.0157314077782760, -162.4402319208664400 60.0145746754809600, -162.4405878815255000 60.0134245684890860, -162.4410475151307000 60.0122725081697600, -162.4416070481267400 60.0111315796587500, -162.4422654058238000 60.0100039530200900, -162.4430213273723200 60.0088917740362150, -162.4438733630652200 60.0077971570132150, -162.4448198851295600 60.0067221847810400, -162.4458590832301000 60.0056689014986660, -162.4462697361593700 60.0052947016891950, -162.4463170458949200 60.0026066496772050, -162.4463833547080200 60.0014861636555600, -162.4465427172725600 60.0003680302604600, -162.4466260250709700 59.9999999998001950, -164.2282721319533000 59.9999999998001950, -164.2296842699131000 60.0006762854822600, -164.2313073906235600 60.0015244558889550, -164.2328551778241800 60.0024072582883700, -164.2334355625011700 60.0027630831498300, -164.2348595580221500 60.0029048172036140, -164.2371383384635200 60.0031838345663600, -164.2393906914272500 60.0035123263328400, -164.2412230888744200 60.0038368754715100, -164.2416118505064700 60.0038936496722500, -164.2434997361239000 60.0041288385750700, -164.2457521529394700 60.0044573303415500, -164.2479738624038000 60.0048346732816100, -164.2501753784909000 60.0052632038338600, -164.2523372506635700 60.0057397006267500, -164.2595830722010000 60.0074324585411900, -164.2616756821869600 60.0079491919017300, -164.2623842301481000 60.0081437071664250, -164.2634211529638200 60.0083719613969600, -164.2655258561333400 60.0088911912754950, -164.2675833934588000 60.0094558620984340, -164.2695898519900500 60.0100649027730800, -164.2715414195009000 60.0107171549727800, -164.2734343844892400 60.0114113803309700, -164.2752651469689300 60.0121462595423050, -164.2759591690803500 60.0124459037555200, -164.2762590093457800 60.0125369106499400, -164.2782107216474700 60.0131891628496400, -164.2798360394016600 60.0137851867370400, -164.2801069817517700 60.0138718939728050, -164.2802466185865500 60.0139179599459600, -164.2822607303484000 60.0145089179522400, -164.2842125595619500 60.0151611692526200, -164.2861057790584300 60.0158553946108100, -164.2879367861537200 60.0165902729228260, -164.2890774628546000 60.0170826625349040, -164.2901901868276300 60.0175908370475200, -164.2912740848311200 60.0181143980610700, -164.2923283079050500 60.0186529363839440, -164.2934393717296000 60.0192366107810360, -164.2945805997149000 60.0198551815714150, -164.2956826739162500 60.0204913008329300, -164.2959483363466000 60.0206567634988900, -164.2975347638182800 60.0208509037462900, -164.2997883182762300 60.0211793946134000, -164.3020111500944700 60.0215567357548140, -164.3041990360566400 60.0219822113100460, -164.3063478203955600 60.0224550118893500, -164.3081698918270200 60.0229092054954660, -164.3084525928128700 60.0229777104530060, -164.3100200302002000 60.0233545209944200, -164.3118364637817600 60.0238301895116700, -164.3158904384929100 60.0249413999256940, -164.3169302085622400 60.0252339170116900, -164.3189376248714700 60.0258429558877540, -164.3208901222813000 60.0264952062888140, -164.3211094507405200 60.0265756038810400, -164.3221211718545800 60.0266301072936700, -164.3235546858000800 60.0267268878356500, -164.3249824926478800 60.0268429012789400, -164.3272850538621000 60.0270719136379400, -164.3289493914012700 60.0272755480281700, -164.3296333752800300 60.0272503634136000, -164.3318064476094400 60.0272143896324340, -164.3361359215355200 60.0271864135222000, -164.3368329995432800 60.0271841553245600, -164.3391800556150600 60.0272097626204900, -164.3415226546467500 60.0272865368442600, -164.3438563476922500 60.0274143323056250, -164.3461767046911500 60.0275929052884300, -164.3484793171667200 60.0278219167481100, -164.3507598135145400 60.0281009332115300, -164.3530138617003300 60.0284294240786950, -164.3552371809511200 60.0288067643207900, -164.3573458959962700 60.0292157813832400, -164.3594184591945000 60.0296687438175240, -164.3649432472330400 60.0309458036060160, -164.3671313355426700 60.0314818867797160, -164.3692687641421300 60.0320669398374800, -164.3712765941395000 60.0326759778141650, -164.3732294953449000 60.0333282273159060, -164.3751237544576600 60.0340224499761350, -164.3769557678943400 60.0347573264894550, -164.3781705190541800 60.0352823686864100, -164.3793534701864600 60.0358252921035960, -164.3805035708830600 60.0363856138050660, -164.3816197968161500 60.0369628373650800, -164.3845370167698800 60.0385169746787140, -164.3855401097882000 60.0390663372417100, -164.3865125116430800 60.0396293461174650, -164.3879836721087600 60.0405450969786900, -164.3893736615652000 60.0414920615094700, -164.3906798297103400 60.0424684401664300, -164.3915414341898000 60.0431775367139800, -164.3918202959698600 60.0433511040702700, -164.3925797410621800 60.0438684507684600, -164.3929350596053000 60.0440435307843900, -164.3943252469126000 60.0447821196991100, -164.3956588884469200 60.0455463608759000, -164.3967925225568400 60.0462445468484100, -164.3978789503532600 60.0469612696469400, -164.3995456450154800 60.0480997250223250, -164.4003866280404200 60.0486906659415350, -164.4011955079663000 60.0492927161859600, -164.4017482214032700 60.0497290267732100, -164.4048064586511000 60.0501414297831960, -164.4070152466562700 60.0504647045825100, -164.4091944397715400 60.0508348475502200, -164.4113842628734000 60.0512603204074900, -164.4135349492784700 60.0517331182888400, -164.4156424133666700 60.0522523445700900, -164.4177026477589700 60.0528170108963760, -164.4197117386058300 60.0534260470744800, -164.4216658664865300 60.0540782938782060, -164.4235613136037000 60.0547725138404760, -164.4253944781726000 60.0555073876558940, -164.4271618708236500 60.0562815186772240, -164.4288601298910600 60.0570934365129600, -164.4304860223120400 60.0579415988257800, -164.4320364526201700 60.0588243922320000, -164.4335084692404200 60.0597401394958900, -164.4348992662880800 60.0606871013287100, -164.4362061943603500 60.0616634763883900, -164.4374267596372200 60.0626674093734900, -164.4385989764615800 60.0637357356157500, -164.4396733794228900 60.0648294686051260, -164.4403682522929800 60.0655792136098500, -164.4412763076554400 60.0666154511421840, -164.4417473815364000 60.0672210060446300, -164.4422685620444600 60.0675451576829600, -164.4436596882440000 60.0684921177171400, -164.4449669247837300 60.0694684918774440, -164.4461877796423000 60.0704724230639040, -164.4473199235755800 60.0715020038144900, -164.4483611955127500 60.0725552754057050, -164.4493096070527000 60.0736302359466660, -164.4501559230573700 60.0747099763843800, -164.4504244453318600 60.0747871184308340, -164.4523798367600300 60.0754393634359200, -164.4542765105525000 60.0761335807002300, -164.4561108604278300 60.0768684518176300, -164.4571670665068800 60.0773225572902450, -164.4581994513435700 60.0777901471976200, -164.4592073260572200 60.0782709112735900, -164.4601900161563000 60.0787645257623240, -164.4619680828607200 60.0796810086716850, -164.4632774525923400 60.0803803232933550, -164.4645362804249700 60.0811024456214100, -164.4660092898968000 60.0820181892880800, -164.4674010267359600 60.0829651475235660, -164.4687088370431800 60.0839415189859700, -164.4699302278976600 60.0849454483737900, -164.4710628691560700 60.0859750255270340, -164.4721045979488000 60.0870282953196100, -164.4730534267742000 60.0881032531626700, -164.4739075399010000 60.0891978548971200, -164.4746653041604200 60.0903100194918800, -164.4753252689459700 60.0914376317413700, -164.4758861680122000 60.0925785458632600, -164.4763469248706500 60.0937305908941000, -164.4767066518904500 60.0948915760854450, -164.4769646529963200 60.0960592918029300, -164.4771204281652000 60.0972315149225550, -164.4771736689296500 60.0984060160248500, -164.4771535394043000 60.0989000055308800, -164.4772686301431300 60.0989550107651700, -164.4784409872617300 60.0995511686515440, -164.4795757805977700 60.1001651924697200, -164.4806719165756600 60.1007964922643500, -164.4821458064837400 60.1017122332330600, -164.4835383742965000 60.1026591878712700, -164.4848469661145600 60.1036355557363900, -164.4860690872185700 60.1046394815269300, -164.4865628294110000 60.1050880264912700, -164.4870546326651500 60.1054077921359600, -164.4909795447701400 60.1074511489514400, -164.4921858926648000 60.1081001114310400, -164.4933488986327500 60.1087685109580400, -164.4948231446723500 60.1096842510274300, -164.4962160497309000 60.1106312038670000, -164.4975249590096000 60.1116075708328000, -164.4987473750912600 60.1126114948247050, -164.4990049625090000 60.1128363073497700, -164.4998246576817800 60.1135596860307260, -164.5011166030487600 60.1143365716754940, -164.5025315612825000 60.1152247664098800, -164.5038703586301000 60.1161419130189100, -164.5045875301903500 60.1166951282776300, -164.5058355086018200 60.1173307493147040, -164.5073887331035000 60.1182135337276700, -164.5088634018245000 60.1191292719983600, -164.5102567061820200 60.1200762239386100, -164.5115659904780600 60.1210525891057700, -164.5127887581946000 60.1220565121983550, -164.5139226755909800 60.1230860830563640, -164.5149655797976300 60.1241393456543300, -164.5159154779169300 60.1252142972020900, -164.5161457178505800 60.1255090302176400, -164.5167103086338000 60.1259725183171000, -164.5175619261419500 60.1267355292213800, -164.5183635377470400 60.1275119130444300, -164.5185279616960400 60.1276846988898200, -164.5187974237620700 60.1278856011396100, -164.5200204450874500 60.1288895233328700, -164.5211545981062000 60.1299190932915600, -164.5221977190494700 60.1309723549902600, -164.5231478150196300 60.1320473047393900, -164.5238041798190200 60.1328873515700500, -164.5242985623287700 60.1333360988819000, -164.5253417911906700 60.1343893596812800, -164.5262919851869300 60.1354643094304040, -164.5271473294856400 60.1365589030709800, -164.5279061855220300 60.1376710586724800, -164.5280118252855000 60.1378512936023500, -164.5287370178990300 60.1385833651302700, -164.5296873333037700 60.1396583139800800, -164.5303893368983400 60.1405500133724900, -164.5307107051349000 60.1408209188503500, -164.5311208229675800 60.1411395441546700, -164.5313174444444800 60.1413284431531600, -164.5330134030460800 60.1421486653287050, -164.5346434953010300 60.1429968141517300, -164.5361979302902300 60.1438795940680400, -164.5376737501434300 60.1447953287415100, -164.5390681408819700 60.1457422761851600, -164.5403784468078400 60.1467186377549900, -164.5416021678057600 60.1477225554516500, -164.5427369710343400 60.1487521227123240, -164.5437806891274600 60.1498053808137460, -164.5447313291874700 60.1508803278649100, -164.5455870745838000 60.1519749188075250, -164.5458590421610300 60.1523553796970400, -164.5463049134409600 60.1529942086158940, -164.5466113709180100 60.1534631969690300, -164.5466938603333600 60.1535246503423760, -164.5479178349401000 60.1545285671397200, -164.5490528719924200 60.1555581335011300, -164.5494180093336400 60.1559265308847560, -164.5499484384696400 60.1563615707299850, -164.5510835393738200 60.1573911361920200, -164.5521275326594800 60.1584443933941200, -164.5530784227310000 60.1595193377472700, -164.5539343929578400 60.1606139277905640, -164.5546938056745600 60.1617260788954700, -164.5553552066774000 60.1628536776551640, -164.5559173279223200 60.1639945791865200, -164.5563790893234900 60.1651466107275600, -164.5566881728208800 60.1661192428088600, -164.5570230785522000 60.1673141081596440, -164.5572490188271200 60.1682359276459800, -164.5574110397876400 60.1691610800198760, -164.5575089444821800 60.1700884663097200, -164.5575426106029800 60.1710169830473660, -164.5575204378179000 60.1718105592099700, -164.5574513303146200 60.1726034635790400, -164.5571495511108500 60.1751865871913200, -164.5570574983048900 60.1758172439707000, -164.5572757709600500 60.1759653380299800, -164.5585872819774500 60.1769416942038900, -164.5588456994694300 60.1771534989349000, -164.5606627167110000 60.1776628029960000, -164.5615390790652300 60.1779024939050400, -164.5636104128902300 60.1784564439097950, -164.5654393389543000 60.1790061859867400, -164.5665825580386000 60.1793653104607500, -164.5682105045111400 60.1796403366323000, -164.5704088981521000 60.1800657995970000, -164.5725680022115000 60.1805385866865100, -164.5736178347952100 60.1808037895633000, -164.5737997730410600 60.1808420224414250, -164.5758949173165600 60.1811250139083400, -164.5781285499925600 60.1815023442578100, -164.5803270686393000 60.1819278072225640, -164.5824862950064800 60.1824005943120140, -164.5846021272863300 60.1829198071034740, -164.5866705437106000 60.1834844608392250, -164.5867735007964000 60.1835141132857500, -164.5880229127272000 60.1838748583380700, -164.5900124990775500 60.1844781613381200, -164.5913160349070700 60.1849220298278740, -164.5917661096182500 60.1850116032030100, -164.5938821100713000 60.1855308159944100, -164.5959506910715000 60.1860954697302200, -164.5979679207828800 60.1867044906197750, -164.5999299653955500 60.1873567221350640, -164.6018330945216800 60.1880509259095800, -164.6036736874906700 60.1887857817384900, -164.6047622349891200 60.1892525307797540, -164.6058255322225000 60.1897335052971100, -164.6068628273575600 60.1902283671454940, -164.6078733901448200 60.1907367664886100, -164.6107998875047800 60.1922546260502140, -164.6126781710607000 60.1927614920492700, -164.6146958108629400 60.1933705129388840, -164.6166582529759500 60.1940227435548540, -164.6185617679112500 60.1947169464299900, -164.6204027340988600 60.1954518013595800, -164.6208201265475900 60.1956326163522100, -164.6216600357819900 60.1959117497275400, -164.6235636604345400 60.1966059517033600, -164.6254047318428800 60.1973408066329500, -164.6265985036180300 60.1978538815514500, -164.6304870048713600 60.1995748323126900, -164.6319315310153000 60.2002417470590100, -164.6322281921773000 60.2003685730512640, -164.6340963017029300 60.2010994241991300, -164.6390319978284000 60.2031627459639900, -164.6403470171011300 60.2037306129774400, -164.6416246902272500 60.2043192363437360, -164.6428636934047000 60.2049280063224600, -164.6440627442002600 60.2055562933882700, -164.6504243909728300 60.2089983918623400, -164.6520310334054500 60.2099077512417600, -164.6530121928584000 60.2105153242229100, -164.6543435636045600 60.2111488498396200, -164.6559770813772000 60.2119969878707500, -164.6575530920015600 60.2128906136109660, -164.6584321289395800 60.2134122950414500, -164.6592801761392000 60.2137819631670940, -164.6609865767690600 60.2145938585198340, -164.6626202654129000 60.2154419965509650, -164.6641781313156800 60.2163247656754400, -164.6656572076140000 60.2172404886576940, -164.6670546767319000 60.2181874244101900, -164.6683678757768200 60.2191637733894800, -164.6689628798330000 60.2196508219279300, -164.6699378672387600 60.2200965394238200, -164.6806602150968200 60.2251485448695100, -164.6817643685307600 60.2256836846543700, -164.6828374746697000 60.2262342388191300, -164.6838786629699000 60.2267997604006950, -164.6848870889679400 60.2273797916441250, -164.6863666634907000 60.2282955128276850, -164.6877646038533700 60.2292424476808600, -164.6890782453647000 60.2302187948615700, -164.6903050834128500 60.2312226990683800, -164.6905321343505000 60.2314198727290200, -164.6918942996821600 60.2326143918407400, -164.6929555941253500 60.2336086292348800, -164.6939103980464000 60.2342704574157300, -164.6952242410059000 60.2352468036970660, -164.6964512670123200 60.2362507070045600, -164.6974248901465200 60.2371248912008350, -164.6983326586252800 60.2380164305139400, -164.6991409063277300 60.2388480983611300, -164.6992230243231000 60.2389199523939300, -164.7004565074618000 60.2399177133318600, -164.7015945023843500 60.2409472644047800, -164.7026411576632700 60.2420005063183900, -164.7035944741056700 60.2430754371817440, -164.7044526287857600 60.2441700110372300, -164.7052139804408200 60.2452821477529600, -164.7058770712697800 60.2464097312241600, -164.7061913213723600 60.2470459089415700, -164.7064673925561000 60.2474491496585640, -164.7071305274518500 60.2485767331297700, -164.7075283677399400 60.2494137960099500, -164.7077027750629800 60.2497116946390750, -164.7082772484962000 60.2505321524369600, -164.7089404454451700 60.2516597350088400, -164.7095040946382200 60.2528006194530700, -164.7099671123923000 60.2539526357056160, -164.7101239748415400 60.2544564062382050, -164.7103906319221000 60.2549097364952200, -164.7109543368731300 60.2560506209394500, -164.7114174004926200 60.2572026362926750, -164.7116529167486800 60.2579193797756150, -164.7118494572866000 60.2586390181762100, -164.7119648726807000 60.2591683771189540, -164.7122863002725200 60.2597147404429700, -164.7128500888604800 60.2608556230886200, -164.7133132208284400 60.2620076384417900, -164.7136488262323200 60.2630724933009700, -164.7138984060865400 60.2641431676731260, -164.7140615511996000 60.2652179465510500, -164.7140775501388000 60.2654433975947650, -164.7192302643652000 60.2654896892977940, -164.7198665859741300 60.2654268608610000, -164.7222037575973000 60.2652482950728100, -164.7245543623939000 60.2651205059066800, -164.7269139370285400 60.2650437352801900, -164.7292780001795300 60.2650181288835800, -164.7316420633305300 60.2650437352801900, -164.7340016379651800 60.2651205059066800, -164.7363522427617700 60.2652482950728100, -164.7386905556246000 60.2654362623736700, -164.7390193765429600 60.2654058616911900, -164.7413386579526700 60.2651768592247100, -164.7436758115894000 60.2649982943358960, -164.7460263983995500 60.2648705051697100, -164.7483859550477500 60.2647937345432750, -164.7507500002123200 60.2647681281466700, -164.7531140453768600 60.2647937345432750, -164.7554736020251000 60.2648705051697100, -164.7578241888352300 60.2649982943358960, -164.7601613424719500 60.2651768592247100, -164.7608268263968800 60.2652372361096100, -164.7626034415955300 60.2654041017179900, -164.7644985991310300 60.2656019058033500, -164.7647224925489700 60.2656024858661100, -164.7670167593159600 60.2656324593705800, -164.7693064242520500 60.2657106212482200, -164.7715873918446300 60.2658368303055450, -164.7738555809702600 60.2660108626112700, -164.7761749217352200 60.2662398650777500, -164.7781531316616700 60.2664801405460900, -164.7789471673778500 60.2664887407628400, -164.7813068463338800 60.2665655122885940, -164.7836575545524600 60.2666933014547800, -164.7859948286983600 60.2668718663435900, -164.7883142306172300 60.2671008679107560, -164.7903787727621200 60.2673516231789100, -164.7906114102883400 60.2673662281689500, -164.7907233138298300 60.2673727635422550, -164.7929780814732500 60.2673855411098900, -164.7952252264630000 60.2674644413309600, -164.7974638467790700 60.2675896224631600, -164.7996900843299000 60.2677608695685200, -164.8020095492013000 60.2679898711356800, -164.8043067351676700 60.2682688750086300, -164.8065772814163700 60.2685973514866200, -164.8088165987070400 60.2689769301412640, -164.8100571037523000 60.2691298787409550, -164.8123269071610000 60.2694683269018000, -164.8130795938481600 60.2695388769176900, -164.8153991846246500 60.2697678784848560, -164.8162038602199600 60.2698656051136400, -164.8166016402534800 60.2699005167954740, -164.8189407463183600 60.2700658787373400, -164.8212603739670500 60.2702948812038800, -164.8235577227107200 60.2705738841774500, -164.8258284281394300 60.2709023597561800, -164.8264934516114700 60.2710143945986940, -164.8279266822705400 60.2711558840368900, -164.8302240903694600 60.2714348879097800, -164.8324948560527300 60.2717633634885000, -164.8334872939034600 60.2719305519534600, -164.8343719902751200 60.2720178878153100, -164.8353663310912800 60.2721386397864760, -164.8369475766693000 60.2721557637775050, -164.8393076630182200 60.2722325344040000, -164.8416587777303700 60.2723603235701260, -164.8439964565711800 60.2725388884589960, -164.8463162586883500 60.2727678900261600, -164.8486137810011800 60.2730468938991100, -164.8508846573010700 60.2733753694777760, -164.8531245762381700 60.2737526935320600, -164.8546083640847000 60.2740390286782600, -164.8555872563467800 60.2741578983683440, -164.8578582099883600 60.2744863739470700, -164.8600982044685300 60.2748636971019800, -164.8623029841953400 60.2752891528721760, -164.8644683610260000 60.2757619318676900, -164.8665902205622000 60.2762811365652740, -164.8686645302438500 60.2768457804085100, -164.8706873465437800 60.2774547914055460, -164.8725500619357800 60.2780959432732300, -164.8726522779802200 60.2781204093294600, -164.8728147279173300 60.2781651775809450, -164.8742536018222300 60.2784387612399000, -164.8759401256362500 60.2787922658504300, -164.8830188414463600 60.2803461018911550, -164.8843388942245600 60.2806463603413360, -164.8856423095449200 60.2809640494513700, -164.8869270891138400 60.2813038196156300, -164.8874694801323800 60.2814381972150950, -164.8895945511475800 60.2819471568358840, -164.8916669434746300 60.2825275316203600, -164.8930003161116800 60.2827364054608100, -164.8952408744667700 60.2831137286157200, -164.8969496798838000 60.2834385772285940, -164.8986354761462700 60.2837918444181500, -164.9002963467989400 60.2841731290866960, -164.9019304050641200 60.2845819986603700, -164.9089547010985400 60.2864136712539700, -164.9093913795085200 60.2865330616515400, -164.9110043037056200 60.2868441965025000, -164.9131704449600300 60.2873169736994300, -164.9152930527321800 60.2878361774976400, -164.9173680935626300 60.2884008204415500, -164.9193916248236000 60.2890098296400100, -164.9213597974167000 60.2896620494640840, -164.9232688710615000 60.2903562406480660, -164.9251152142957000 60.2910910829871200, -164.9265160315895600 60.2916944750200500, -164.9278745258886300 60.2923212728085200, -164.9287487361652000 60.2927531785164200, -164.9303393823565800 60.2932318435748000, -164.9323078094578200 60.2938840624995600, -164.9342171286175800 60.2945782527842200, -164.9360637101720500 60.2953130951232800, -164.9365830623584000 60.2955319343513450, -164.9389648817238800 60.2965482896718750, -164.9398160369805000 60.2967340077682900, -164.9419392553923000 60.2972532106671800, -164.9440148942719300 60.2978178527117700, -164.9460390064949000 60.2984268610109100, -164.9480077465602200 60.2990790799356660, -164.9482473187587200 60.2991661693832840, -164.9485951576404000 60.2992332426201200, -164.9507621181771800 60.2997060189176750, -164.9528855299432200 60.3002252218165600, -164.9549613567811500 60.3007898629618350, -164.9569856533652000 60.3013988712609700, -164.9589545723955800 60.3020510892864100, -164.9608643681960000 60.3027452786717500, -164.9627114111027000 60.3034801201114900, -164.9641313192050000 60.3040917859072500, -164.9649003807479300 60.3044469803439260, -164.9650128445671000 60.3044895803299140, -164.9669855038778800 60.3051340992593050, -164.9688954804420300 60.3058282886446500, -164.9707426969179000 60.3065631291851200, -164.9724497855291600 60.3073037478696960, -164.9740931014154600 60.3080790848819100, -164.9810930357150000 60.3115220808794000, -164.9828078351134800 60.3124046467571000, -164.9838746226157000 60.3130061960791300, -164.9844105205290800 60.3131230674756600, -164.9865348028388600 60.3136422685759040, -164.9886114813347700 60.3142069088218600, -164.9906366088923400 60.3148159153223000, -164.9926063346146300 60.3154681324484160, -164.9935883070547000 60.3158249213830700, -164.9945850490607300 60.3160959149945500, -164.9966102926308600 60.3167049214949900, -164.9985801334663600 60.3173571386211050, -165.0000000001998300 60.3178730005386100, -165.0000000001998300 62.6601544744494840, -164.9979265763503800 62.6600918996215340, -164.9971227542117200 62.6600513707741700, -164.9969333992569300 62.6603700302527500, -164.9968475958398500 62.6608543457514900, -164.9966744196887000 62.6616636312716100, -164.9964481529598600 62.6624701405845600, -164.9961689980008300 62.6632731380449300, -164.9958691883123500 62.6640002579056300, -164.9957219072402000 62.6643324189060400, -164.9958104526902200 62.6645361765034200, -164.9962012108172000 62.6656967039397700, -164.9964815375928700 62.6668639628017000, -164.9966508862294000 62.6680357335623060, -164.9967089203803400 62.6692097850036000, -164.9966555177379300 62.6703838823103750, -164.9964907655363800 62.6715557915665600, -164.9962149641492600 62.6727232797555900, -164.9958286261901300 62.6738841264513550, -164.9953324756132200 62.6750361184221560, -164.9947274423175800 62.6761770631210300, -164.9940146675428400 62.6773047868864500, -164.9931954966748200 62.6784171412381300, -164.9922714783460300 62.6795120064740000, -164.9912443626372000 62.6805872979654740, -164.9901160947819000 62.6816409652583960, -164.9888888151666600 62.6826710010659000, -164.9875675519009800 62.6836734897398200, -164.9861524857486000 62.6846485805675700, -164.9846462930919000 62.6855944218451700, -164.9830518265805000 62.6865092167270200, -164.9801560464643400 62.6880982468366600, -164.9784684308733600 62.6889837552961350, -164.9767021965491000 62.6898325965971140, -164.9748569576824200 62.6906452087095000, -164.9729362261259000 62.6914200403026600, -164.9709436603216400 62.6921556146899100, -164.9688830563080000 62.6928505280295100, -164.9667583396256400 62.6935034547207100, -164.9652039505019000 62.6939372301191040, -164.9639400747746000 62.6944470315053760, -164.9619765219988500 62.6951722879707600, -164.9599468177913800 62.6958580668963350, -164.9578547177210000 62.6965030957413200, -164.9557040960671700 62.6971061811054260, -164.9540362277896600 62.6975515289799400, -164.9539099962493000 62.6975851375441400, -164.9516690574809800 62.6981504360937800, -164.9493764886340200 62.6986702613235700, -164.9470366604135200 62.6991436194825300, -164.9446540361548200 62.6995696094499500, -164.9422331610315400 62.6999474164401800, -164.9397786539617000 62.7002763200961200, -164.9372951986145000 62.7005556926911250, -164.9347875335178300 62.7007850009271100, -164.9322605293998800 62.7009638014383200, -164.9297189256878400 62.7010917632742900, -164.9271675724255000 62.7011686409201160, -164.9246113403410400 62.7011942877862200, -164.9243875305600700 62.7011942877862200, -164.9256441667448600 62.7021437218553500, -164.9268758674273000 62.7031728547435140, -164.9280087326169000 62.7042256721770740, -164.9290405985447600 62.7053001731645200, -164.9299694902997000 62.7063943135468100, -164.9307936326200000 62.7075060140913400, -164.9315114435982300 62.7086331595926940, -164.9321215472715500 62.7097736060671300, -164.9326227700247800 62.7109251843498300, -164.9328803286642000 62.7116496727942400, -164.9330947711067700 62.7123771164108350, -164.9332659345752000 62.7131069747071600, -164.9333936877684400 62.7138387035933500, -164.9338721954454500 62.7171445053147100, -164.9339680784640300 62.7180241474964650, -164.9340012157834400 62.7189047582480700, -164.9339477277054300 62.7200788474609100, -164.9337827039086300 62.7212507477239000, -164.9335064447665800 62.7224182287183100, -164.9331194628928800 62.7235790673201450, -164.9326246577017500 62.7247265285065500, -164.9320216424847800 62.7258630386483560, -164.9313115431931500 62.7269864483659500, -164.9308953315542700 62.7275332298747200, -164.9304847469734600 62.7280865629445540, -164.9300704553871800 62.7286333003865500, -164.9291403279637500 62.7297339095923100, -164.9288054528093700 62.7300838969543400, -164.9288585029175400 62.7311547520902200, -164.9288049941551200 62.7323288395044200, -164.9286399029091700 62.7335007379687100, -164.9283635304525400 62.7346682162652200, -164.9279763902981400 62.7358290530684140, -164.9274792055009000 62.7369810351467000, -164.9268729104564400 62.7381219699530000, -164.9261586491023500 62.7392496847252200, -164.9253377677237600 62.7403620300837000, -164.9245687709320000 62.7412809231761340, -164.9238012310419500 62.7421064504523540, -164.9237406706953700 62.7423622095483900, -164.9233534298169000 62.7435230436536240, -164.9228561164166300 62.7446750257319100, -164.9222496648901000 62.7458159596388900, -164.9215352173763400 62.7469436726124740, -164.9209864159902800 62.7476871403492850, -164.9211199662134400 62.7478670416307400, -164.9214417112659400 62.7483715675938360, -164.9216434031205300 62.7485587255048360, -164.9226768203789400 62.7496332192976640, -164.9236071096803500 62.7507273524854000, -164.9244324921657500 62.7518390449360500, -164.9251513841290400 62.7529661823434700, -164.9257624069095000 62.7541066216233500, -164.9262643859926000 62.7552581918121750, -164.9266563528084000 62.7564187030607740, -164.9269375492284800 62.7575859466342100, -164.9271074266663700 62.7587577012070000, -164.9271214857679000 62.7590411917976200, -164.9283264684917000 62.7599498110350300, -164.9296516375130500 62.7610592767642860, -164.9308617229901000 62.7621960423135760, -164.9316127926962000 62.7629457576406400, -164.9325562507703200 62.7639397612110800, -164.9334116751087000 62.7649503635684600, -164.9342374559937800 62.7660620542204700, -164.9343317687960600 62.7662372961143550, -164.9352501402817000 62.7673393667184300, -164.9356889923530800 62.7679301142833900, -164.9361802416248000 62.7684588814722700, -164.9369198791491000 62.7693393672180950, -164.9377457832412700 62.7704510569707850, -164.9384651302615300 62.7715781916802500, -164.9390694593880000 62.7727027983954700, -164.9395853698689000 62.7733950587350500, -164.9403047888349000 62.7745221925451900, -164.9409162603771000 62.7756626282277900, -164.9414186081822000 62.7768141948192800, -164.9417115821238000 62.7776471091268600, -164.9419474446188500 62.7784838212713800, -164.9421259564477000 62.7793235065746000, -164.9422469386452700 62.7801653430561800, -164.9426146066787200 62.7835261913807000, -164.9426882296780300 62.7848487235897900, -164.9426346291847700 62.7860228020107340, -164.9424692429611500 62.7871946923812060, -164.9421923731794400 62.7883621625837800, -164.9418045324531800 62.7895229894944000, -164.9413064483339000 62.7906749634788640, -164.9412207519361300 62.7908359358298200, -164.9415023755341800 62.7914811966999200, -164.9418867134010600 62.7926137911935600, -164.9421654133031400 62.7937528500140700, -164.9423379572309000 62.7948963074186960, -164.9424040196297800 62.7960420913694860, -164.9425392291021200 62.8081810396233200, -164.9425399692441700 62.8082937120851740, -164.9424863282814000 62.8094677860095800, -164.9423208134547600 62.8106396718833900, -164.9420437251377800 62.8118071384886900, -164.9416555786420000 62.8129679618020300, -164.9411571006196800 62.8141199330884800, -164.9405492272650000 62.8152608562036200, -164.9398331034149700 62.8163885583853100, -164.9390100807506000 62.8175008929519000, -164.9380817159983800 62.8185957393020000, -164.9370497664335500 62.8196710110083800, -164.9359161862829500 62.8207246603148500, -164.9346831267248800 62.8217546772366400, -164.9338408783538300 62.8224020353257500, -164.9329593143208700 62.8230383524380600, -164.9324046853279200 62.8234265456985700, -164.9314291025710000 62.8240877353607600, -164.9304110664175500 62.8247354046152960, -164.9293514689950700 62.8253689850906200, -164.9282512411018600 62.8259879192071400, -164.9265595030186000 62.8268713574272500, -164.9247850120186700 62.8277201852384340, -164.9229311459556000 62.8285327838609650, -164.9210014328698200 62.8293076037629700, -164.9208559486431000 62.8293633104684660, -164.9188204411104600 62.8301401259660700, -164.9188949508413000 62.8314655440996150, -164.9192263627064400 62.8357215299247400, -164.9192636234174600 62.8366546961573800, -164.9192343378943500 62.8375284882491800, -164.9191430153378500 62.8384013846162500, -164.9189897447808700 62.8392724661514400, -164.9187746845040600 62.8401408128482900, -164.9182780959573300 62.8418910194550300, -164.9178818393753500 62.8430789267511050, -164.9173828541353800 62.8442308926416300, -164.9167743611478200 62.8453718112601200, -164.9160575079476000 62.8464995098445340, -164.9152336462157700 62.8476118390152000, -164.9143043335781200 62.8487066808687000, -164.9132713309071800 62.8497819489778100, -164.9124876068175600 62.8505096650890200, -164.9123504449170800 62.8506948336996600, -164.9114210360519300 62.8517896755531640, -164.9105273644463000 62.8527198128691100, -164.9103721306692600 62.8530107993090040, -164.9096550922087000 62.8541384969940960, -164.9088310173375500 62.8552508252654400, -164.9079014645809000 62.8563456662195700, -164.9068681939120000 62.8574209334294100, -164.9057331622556100 62.8584745773399050, -164.9050133116150200 62.8590751221192360, -164.9047886213977300 62.8593089287641100, -164.9036535177956000 62.8603625726746600, -164.9024187989883500 62.8613925850997900, -164.9010868095086300 62.8623970028194800, -164.8996600782499800 62.8633739120764400, -164.8981413157690700 62.8643214494753700, -164.8965334088896700 62.8652378091775860, -164.8952337914063300 62.8659178702135900, -164.8948730049851600 62.8669948982959600, -164.8943736159495800 62.8681468596898900, -164.8938380301010000 62.8691598128751250, -164.8937124901392800 62.8699142037775100, -164.8935437998064800 62.8706382920236140, -164.8933322675700600 62.8713600312405000, -164.8930780427174600 62.8720788926268600, -164.8926107190094400 62.8731546652556400, -164.8925862214769000 62.8732324017539700, -164.8923346703087700 62.8745154564232400, -164.8920649645264700 62.8756056343925700, -164.8916981499496300 62.8766898867289700, -164.8911985972374300 62.8778418472235200, -164.8905894126712300 62.8789827604460900, -164.8898717419872600 62.8801104536345860, -164.8891356199129000 62.8811164523624500, -164.8890081985694800 62.8821982270665700, -164.8887859653000300 62.8832440594658240, -164.8884744527338000 62.8842851344514300, -164.8881980119287000 62.8850912471633600, -164.8880207159832300 62.8855788757645660, -164.8875210139836000 62.8867308353598000, -164.8869116450563600 62.8878717476830500, -164.8866600857943000 62.8882379597141040, -164.8865304386288200 62.8887510598136150, -164.8861412830937000 62.8899118714358000, -164.8857678755869600 62.8907725577074100, -164.8857026909264200 62.8916526306644500, -164.8855290848993300 62.8927249642857200, -164.8852617371394200 62.8937932779375050, -164.8849010622342000 62.8948558656057900, -164.8844012019539000 62.8960078234023850, -164.8837916414710500 62.8971487339270000, -164.8830735292199600 62.8982764244175300, -164.8822728349233600 62.8993650654454650, -164.8821080071787700 62.9000840482402740, -164.8817187032555300 62.9012448580638200, -164.8812187350565600 62.9023968140617740, -164.8806090432727000 62.9035377245863860, -164.8798907745395800 62.9046654141776000, -164.8795576872374500 62.9051142397304400, -164.8795753157481800 62.9053154198707600, -164.8795966989284800 62.9060156598948200, -164.8795428888931800 62.9071897185307300, -164.8793768326746700 62.9083615882167900, -164.8790988324451200 62.9095290386342750, -164.8787094044154500 62.9106898466591250, -164.8782092761371700 62.9118418017578200, -164.8775993883011000 62.9129827104837300, -164.8768808902408700 62.9141103991756300, -164.8763626801935000 62.9148084466525600, -164.8762157669440600 62.9151467967872700, -164.8756058107595400 62.9162877055132400, -164.8748872308610000 62.9174153933058200, -164.8743021103540800 62.9182034827046000, -164.8739448339868800 62.9188717014678800, -164.8732261911357900 62.9199993892604540, -164.8724002726544300 62.9211117085385500, -164.8714598551881400 62.9222018424411540, -164.8708973121612000 62.9232326948330750, -164.8701785631901000 62.9243603817262740, -164.8693525224009600 62.9254727001051040, -164.8689072491701800 62.9259865970038850, -164.8681659416049000 62.9271044228308940, -164.8681357486658500 62.9271653177252700, -164.8676306426400200 62.9283137798570900, -164.8670413753591500 62.9293869084791000, -164.8670135566303000 62.9294524429759000, -164.8665831572868400 62.9307448227154400, -164.8660826890648300 62.9318967751161150, -164.8654723857419800 62.9330376802448100, -164.8647533975512300 62.9341653653393700, -164.8639270815695300 62.9352776828188800, -164.8629949990199700 62.9363725120818460, -164.8619589152716900 62.9374477676004740, -164.8617657085206000 62.9376266319635500, -164.8615108172703900 62.9380263590293200, -164.8606843924707200 62.9391386756094560, -164.8597521885126600 62.9402335048724240, -164.8587159680674600 62.9413087594917300, -164.8575776961537300 62.9423623926103900, -164.8569558994951500 62.9428489159447500, -164.8568160809973000 62.9429898514005700, -164.8560090716613000 62.9439284981017400, -164.8556120389644000 62.9443404352629160, -164.8553854844525000 62.9452776205657760, -164.8550032545964800 62.9464118041614700, -164.8545025201751500 62.9475637538641900, -164.8538918921970300 62.9487046571942400, -164.8531725217944200 62.9498323395908400, -164.8523457642456000 62.9509446543723360, -164.8515079072640800 62.9519344706993140, -164.8505849897054800 62.9529084769446850, -164.8495784378945600 62.9538651586502200, -164.8491081994838000 62.9542578062528260, -164.8481693486365000 62.9553454751136300, -164.8471325957926300 62.9564207288336200, -164.8459937384202800 62.9574743592543200, -164.8450688225680700 62.9582433776298560, -164.8445089784066000 62.9589004690814140, -164.8434720996576500 62.9599757219020800, -164.8430562549421800 62.9603603997127300, -164.8429653074029800 62.9604650610137900, -164.8424481513610500 62.9611666365311200, -164.8415152477304800 62.9622614621967500, -164.8404782502710200 62.9633367150174200, -164.8393391240013600 62.9643903445388000, -164.8381000290930300 62.9654203443734560, -164.8367711179926700 62.9664191647127600, -164.8353481818730600 62.9673907967479100, -164.8338338935193400 62.9683334076606800, -164.8322310992857600 62.9692452212900100, -164.8290471628962200 62.9709778740297000, -164.8273293237892300 62.9718709376936660, -164.8272356629954300 62.9719155188861350, -164.8263961026979400 62.9729004420018440, -164.8253587293218600 62.9739756930238740, -164.8242191902634000 62.9750293207466140, -164.8229796456940600 62.9760593187825750, -164.8216424482403700 62.9770637230124600, -164.8202101366884200 62.9780406187795700, -164.8186854332860800 62.9789881426887060, -164.8170712356489700 62.9799044898004500, -164.8159760178788800 62.9804822817319500, -164.8157933448869400 62.9805732985189500, -164.8151096910593800 62.9811685426941500, -164.8139342960309000 62.9821423052232500, -164.8125968215860300 62.9831467076545000, -164.8111642123584800 62.9841236025222900, -164.8103082852991000 62.9846554058223660, -164.8100231129762700 62.9848922980411900, -164.8090514629546000 62.9856315848298300, -164.8080282548001000 62.9863563448694800, -164.8069545326255500 62.9870658335214560, -164.8058313945032300 62.9877593241335500, -164.8049418336986500 62.9882905356797100, -164.8045248819177300 62.9889432753119540, -164.8036970226994000 62.9900555846975300, -164.8027631999616700 62.9911504067659400, -164.8017251808723800 62.9922256550899500, -164.8005849322488000 62.9932792810140540, -164.7993446151618300 62.9943092763520550, -164.7982079467393200 62.9951379719399260, -164.7981091948834000 62.9952373308382200, -164.7973757527887200 62.9962225741125500, -164.7964417339988000 62.9973173952816400, -164.7954034963742300 62.9983926427063350, -164.7942630067323400 62.9994462677311160, -164.7930224288420000 63.0004762621698000, -164.7916841171282800 63.0014806637017300, -164.7902506112766600 63.0024575558715600, -164.7887246353336400 63.0034050779819950, -164.7879939910298200 63.0038255371188700, -164.7878263160316400 63.0039914062784300, -164.7876107323493800 63.0042022379429900, -164.7873586622724200 63.0044756300463300, -164.7862179361088400 63.0055292541717900, -164.7849771001130500 63.0065592486104700, -164.7849133939379600 63.0066093687274250, -164.7842759760554300 63.0071095995284600, -164.7831420091963300 63.0079568256470600, -164.7830618427298400 63.0080822442002400, -164.7822334439182700 63.0091945508878550, -164.7814862305051000 63.0100809991388360, -164.7806706515293000 63.0109549162364700, -164.7797877169295800 63.0118152149003100, -164.7788385211807700 63.0126608222391840, -164.7780893382523300 63.0133000972217600, -164.7771293137667800 63.0140872306412200, -164.7763579607512600 63.0146658598416140, -164.7756287661546000 63.0154206077749000, -164.7744876137123800 63.0164742301017200, -164.7732463145657400 63.0175042227417600, -164.7719072231398000 63.0185086224750000, -164.7704728827173400 63.0194855128461900, -164.7689460191434400 63.0204330322586660, -164.7673295336310600 63.0213493748738100, -164.7658908791607000 63.0221006703097260, -164.7608085845485000 63.0246572414386040, -164.7594181526256000 63.0253328607229800, -164.7589577465027700 63.0255303239653100, -164.7578118069693000 63.0265852089402760, -164.7565700779467200 63.0276151997816800, -164.7552305242692500 63.0286195977163300, -164.7537956883203400 63.0295964871882000, -164.7522682959450700 63.0305440057013600, -164.7506512519536800 63.0314603474171800, -164.7501307855073000 63.0317385751751540, -164.7486031035503500 63.0325440565630400, -164.7470108071030400 63.0333501629796700, -164.7453483041808500 63.0341265117292000, -164.7436182864547300 63.0348718437606400, -164.7418235553128000 63.0355849503852140, -164.7398075450821000 63.0363204959941750, -164.7388117176866000 63.0366524087817200, -164.7374965464284500 63.0372769177955660, -164.7356308228042000 63.0380887879672400, -164.7336888339724800 63.0388629396729800, -164.7316725980119500 63.0395984852819400, -164.7295875126535500 63.0402933716418400, -164.7274361796359600 63.0409427747893000, -164.7266369539322600 63.0412519329304360, -164.7246167330757500 63.0419786993575700, -164.7242747892501000 63.0421097665525300, -164.7223330944967000 63.0428909275743200, -164.7203165806456600 63.0436264731832240, -164.7182312075042000 63.0443213595431760, -164.7160809491764400 63.0449742610533700, -164.7138699047722500 63.0455839321527950, -164.7134919799708800 63.0456822388442800, -164.7126305121883500 63.0459044154564500, -164.7104508316405400 63.0464394958860900, -164.7082237253446200 63.0469327380554900, -164.7059530873650600 63.0473832786154840, -164.7045168520710400 63.0476363388460200, -164.7043673721564700 63.0476959117369800, -164.7023505255562800 63.0484314573459400, -164.7002648097731300 63.0491263428065200, -164.6981141971125000 63.0497792443167100, -164.6959027884828700 63.0503889145168700, -164.6941284188913800 63.0508361095988300, -164.6925923462597400 63.0511925711802500, -164.6923228338317000 63.0512609592259400, -164.6913759457432600 63.0515279112841540, -164.6891078672342700 63.0520931882500700, -164.6867875300204700 63.0526129927954460, -164.6846250445101700 63.0530447294307800, -164.6858588702906200 63.0536268749803500, -164.6872146720194800 63.0542883991903400, -164.6885208464598800 63.0549701851260240, -164.6901421478418000 63.0558854665411000, -164.6916740206395000 63.0568319490352600, -164.6931135447542500 63.0578078339644300, -164.6944579745558600 63.0588112669264550, -164.6957047442785000 63.0598403404594000, -164.6968514734167300 63.0608930976384300, -164.6978959721214000 63.0619675374719600, -164.6988362411995300 63.0630616167002800, -164.6996704820071200 63.0641732551916300, -164.7003970946501600 63.0653003386397600, -164.7010146851795600 63.0664407239602840, -164.7015236160220300 63.0676244700932800, -164.7022379214429000 63.0687723404711850, -164.7028555866160000 63.0699127248923900, -164.7033630281811700 63.0710642402225400, -164.7037482033169000 63.0721870554882600, -164.7040285525756000 63.0733162424506900, -164.7042035651424000 63.0744497884270460, -164.7042729154626400 63.0755856744393700, -164.7043653603730600 63.0822528433940900, -164.7043707545067000 63.0824045662178040, -164.7043166369032300 63.0835785951761100, -164.7041495941284400 63.0847504360838200, -164.7038699292538000 63.0859178577230200, -164.7034781620875000 63.0870786378689000, -164.7029750255769300 63.0882305659878850, -164.7026026190156400 63.0889230331715100, -164.7025145699914000 63.0894735243837200, -164.7022437148755200 63.0905565077766800, -164.7018763103434000 63.0916336320864840, -164.7013730946925400 63.0927855593061500, -164.7007594377977900 63.0939264401531550, -164.7000364943886800 63.0950541018653440, -164.6992056296360800 63.0961663959624840, -164.6985873349375400 63.0969042789093900, -164.6979215227600300 63.0976336263908000, -164.6975453120664700 63.0980137563298600, -164.6973233063255000 63.0984264345323700, -164.6966002522998000 63.0995540953453000, -164.6957692589441300 63.1006663885430600, -164.6949444232465000 63.1016369494856800, -164.6941460249191000 63.1024551652737400, -164.6940288972158200 63.1025850822358050, -164.6931972527510000 63.1035391900816200, -164.6921552370745000 63.1046144240165200, -164.6914216519876000 63.1052896682836000, -164.6909742761419000 63.1058883784459700, -164.6900367490966600 63.1069831843265660, -164.6889946102130600 63.1080584173621450, -164.6878498335029800 63.1091120279977500, -164.6866045908291800 63.1101420089466400, -164.6853754001545600 63.1110647808150100, -164.6840655483863100 63.1119645156499600, -164.6826771291461600 63.1128397682407500, -164.6812123664575200 63.1136891329471700, -164.6799627368907600 63.1143845373165960, -164.6794200913641000 63.1146821157870500, -164.6777116025084200 63.1155655243295540, -164.6761502211557500 63.1163050620290300, -164.6759216692496200 63.1164184323648100, -164.6754059835992300 63.1166912066339600, -164.6750805207494200 63.1168533445062960, -164.6740221562974400 63.1175842325263800, -164.6721342778746000 63.1188348828236500, -164.6704357849834500 63.1199029365712900, -164.6686238758911400 63.1209320991371200, -164.6669150201120700 63.1218155067802500, -164.6651225714494700 63.1226643058131460, -164.6635597089134000 63.1233424629843400, -164.6627124000572000 63.1238210902711800, -164.6616828525815500 63.1243625450954400, -164.6569606573084700 63.1267800207813800, -164.6554739466652700 63.1275132353475800, -164.6539282899586000 63.1282210521598600, -164.6523257996958600 63.1289025035477500, -164.6506686684243000 63.1295566542162900, -164.6504400121967800 63.1296398109286100, -164.6501698252771700 63.1302575093766340, -164.6495553814756400 63.1313983848276600, -164.6488315099662000 63.1325260411439300, -164.6479995777183000 63.1336383289457800, -164.6470611576462800 63.1347331312291000, -164.6460180259111300 63.1358083597680200, -164.6453769783648200 63.1363977934235000, -164.6448983609705600 63.1369561267239300, -164.6438551491957600 63.1380313552629100, -164.6433925235460800 63.1384591061029140, -164.6423309835879800 63.1395583528357600, -164.6411844181263600 63.1406118717405300, -164.6410401785613500 63.1415162740568700, -164.6407680832804000 63.1426058818560140, -164.6403980815062200 63.1436895712167800, -164.6398939701306000 63.1448414903425700, -164.6392792187609200 63.1459823630956400, -164.6385549848246500 63.1471100167139500, -164.6377096589735600 63.1482139678004160, -164.6374189702092700 63.1486380143329600, -164.6365865784078400 63.1497503003361660, -164.6356476394270000 63.1508450999214700, -164.6346039303271000 63.1519203266618100, -164.6334574287173200 63.1529739319015000, -164.6322103091584000 63.1540039074544100, -164.6306819167370500 63.1551376072148400, -164.6290316185143500 63.1562358242239840, -164.6285038882438000 63.1565690032569500, -164.6271549546374000 63.1573873638358240, -164.6257382930877200 63.1581819958025200, -164.6240272474594800 63.1590653998483700, -164.6222325010290600 63.1599141952839300, -164.6203574703209800 63.1607267633295350, -164.6184057238450600 63.1615015535539300, -164.6169163341215000 63.1620489555948550, -164.6157086030695500 63.1624643065825350, -164.6144040932742600 63.1630811848488600, -164.6125288584200600 63.1638937528944100, -164.6105768997041400 63.1646685431188100, -164.6085519340245200 63.1654040788352500, -164.6064578212714200 63.1660989553025700, -164.6042985499381000 63.1667518487188900, -164.6020782362216000 63.1673615117244400, -164.5998011132307700 63.1679267814958500, -164.5974936462148000 63.1684190910682450, -164.5968345204966900 63.1688731308903500, -164.5952998121366000 63.1698206341150100, -164.5936750204858000 63.1707369605423400, -164.5934844361577800 63.1708392431366400, -164.5893184203088000 63.1730635696280840, -164.5876475096248400 63.1739181809793400, -164.5858978893760700 63.1747400165385800, -164.5840726981964200 63.1755275978204600, -164.5821752150141300 63.1762795074933500, -164.5801494399446800 63.1770150414110960, -164.5780544890234300 63.1777099169791540, -164.5758943543409600 63.1783628094960900, -164.5744964211728800 63.1787465061464100, -164.5739259218438000 63.1790986096132200, -164.5723006112841600 63.1800149351411700, -164.5710980513339600 63.1806433984741000, -164.5698530802554300 63.1812547836813700, -164.5694197095519400 63.1814396537171200, -164.5679701067350000 63.1822369287912700, -164.5662576437752000 63.1831203301391600, -164.5644614107654600 63.1839691228767600, -164.5625848251295600 63.1847816891237240, -164.5613015834013300 63.1852772209670100, -164.5596713157785600 63.1861819182609600, -164.5576524618915600 63.1872152977478550, -164.5547357509541000 63.1886331895701100, -164.5534651500965700 63.1892320256375200, -164.5521542452222000 63.1898128815593050, -164.5520216033143000 63.1898681332078240, -164.5517023457866000 63.1901436854827800, -164.5509146790691700 63.1907808218774700, -164.5495676043614000 63.1917852000270300, -164.5481247104869700 63.1927620706131300, -164.5465887394787200 63.1937095702405140, -164.5449626105360300 63.1946258948692050, -164.5432494155280700 63.1955092953177800, -164.5414524153966300 63.1963580871560600, -164.5406291535125800 63.1967144093425760, -164.5399934614290800 63.1970708871118060, -164.5388856099828800 63.1976509255498500, -164.5377416084884000 63.1982164858022200, -164.5356587822270000 63.1992171191747600, -164.5344401280094600 63.1997855626536300, -164.5331849487264000 63.2003375782167040, -164.5318943298594000 63.2008726874246350, -164.5305693856686000 63.2013904280258900, -164.5298212567455800 63.2016678374008050, -164.5287406529587300 63.2025587948525640, -164.5273930314632000 63.2035631712034300, -164.5259495530294200 63.2045400399908900, -164.5244129578916600 63.2054875396183300, -164.5227861688465800 63.2064038615490060, -164.5223234073993000 63.2066501453879800, -164.5206847589944000 63.2075116644318200, -164.5190697753498300 63.2083265815065800, -164.5173827029493600 63.2091111995222800, -164.5156263269933600 63.2098642207572540, -164.5138035468961600 63.2105843996503700, -164.5117753751334200 63.2113199308701600, -164.5101291868125000 63.2118653085372000, -164.5086513452833400 63.2125046042041840, -164.5066961139344800 63.2132793899319300, -164.5050491899681000 63.2138815723766900, -164.5033558214140000 63.2144569433333460, -164.5018272761079000 63.2149573180258800, -164.5005674266454000 63.2153585955228440, -164.5000805237971000 63.2155053118207200, -164.4993317329730800 63.2160631406015340, -164.4978876313091000 63.2170400084896760, -164.4963503742703200 63.2179875063184200, -164.4947228837540600 63.2189038273498340, -164.4930809222467500 63.2197513304595900, -164.4913617557404000 63.2205670946956960, -164.4895683933666200 63.2213496883375100, -164.4877039701620700 63.2220977417174500, -164.4855365500717000 63.2229313278185700, -164.4852090574520000 63.2230563596633000, -164.4831800124475800 63.2237918899837700, -164.4810816791761300 63.2244867628538700, -164.4789180560234500 63.2251396508742700, -164.4784508932940500 63.2252676675688600, -164.4780709549106000 63.2255338120358500, -164.4769553665968500 63.2262615146572100, -164.4757872992444400 63.2269722740512600, -164.4740379901611000 63.2280008538563700, -164.4724326697319000 63.2289037992709950, -164.4707174485513700 63.2297871961222300, -164.4689183224226000 63.2306359843632300, -164.4670387150646300 63.2314485461135400, -164.4650822039805000 63.2322233309420200, -164.4630525168601300 63.2329588603631700, -164.4620171579654500 63.2333016153772860, -164.4608949812184000 63.2338309752194050, -164.4590151661169800 63.2346435360703940, -164.4570584400949000 63.2354183208988700, -164.4550285281440300 63.2361538503199650, -164.4529292991478000 63.2368487213914250, -164.4507647523914000 63.2375016094118200, -164.4485390130649600 63.2381112679207150, -164.4462563250693300 63.2386765340948500, -164.4439210411231300 63.2391963287476500, -164.4415376137698400 63.2396696599269000, -164.4391105908810300 63.2400956247133760, -164.4366603519936200 63.2404711681099900, -164.4341762545304800 63.2407984332011800, -164.4332594910326600 63.2409095327487900, -164.4324950609982400 63.2409940960008040, -164.4323794675383700 63.2410178066265300, -164.4301546518157000 63.2416382552013940, -164.4278716859295500 63.2422035213754700, -164.4255361168982600 63.2427233160282750, -164.4250737529513000 63.2428158634613740, -164.4229651880929200 63.2435146996437540, -164.4208001431120700 63.2441675867647750, -164.4185738911721200 63.2447772443744040, -164.4178852622950000 63.2449466262858100, -164.4160942201720800 63.2454359770887300, -164.4155593366940000 63.2456786024855550, -164.4139953598979000 63.2463388136853840, -164.4123797665130000 63.2469732844895700, -164.4104616016216000 63.2476697410657500, -164.4084812549059500 63.2483299189906350, -164.4064420997231000 63.2489526923129700, -164.4043476101540500 63.2495369980341000, -164.4039303921738300 63.2496480867898200, -164.4034400521166800 63.2497772276370260, -164.4011564432152600 63.2503424929117840, -164.3988202176789000 63.2508622866652700, -164.3964358289503300 63.2513356178445200, -164.3940078275991300 63.2517615826309900, -164.3935182573616500 63.2518217499738300, -164.3911315762612200 63.2522806146586700, -164.3887034948703600 63.2527065794451460, -164.3862364305667800 63.2530843639522700, -164.3837350904020700 63.2534132487224950, -164.3812042470783000 63.2536926051296860, -164.3786487308542200 63.2539219007751400, -164.3767225691911700 63.2540605114834900, -164.3747873747375400 63.2541706766354540, -164.3728452168332700 63.2542522775206600, -164.3708981738116400 63.2543052260054400, -164.3707522714001600 63.2543081146278600, -164.3704134949867600 63.2544307911481400, -164.3683129394905500 63.2551256613202800, -164.3661470248652800 63.2557785475419800, -164.3639198789991800 63.2563882051516100, -164.3616357484909800 63.2569534704263700, -164.3592989887573000 63.2574732632805300, -164.3569140550395700 63.2579465944598400, -164.3544854979073800 63.2583725583469350, -164.3520179506678600 63.2587503428541140, -164.3495161194733000 63.2590792276242840, -164.3469847806231000 63.2593585840314740, -164.3444287643759500 63.2595878787776660, -164.3425002276033800 63.2597266180890200, -164.3405626400537800 63.2598368524888300, -164.3382628604426300 63.2599504503530740, -164.3374886403884100 63.2600522239310400, -164.3364575757565000 63.2601597891430200, -164.3342906071257800 63.2608065311965200, -164.3320630736519000 63.2614161879067750, -164.3297785465426600 63.2619814522822700, -164.3274413794161000 63.2625012451364340, -164.3261868404503000 63.2627501864719760, -164.3254744478874400 63.2629264490964260, -164.3231372043185000 63.2634462428499100, -164.3207517786716200 63.2639195731298400, -164.3183227197177000 63.2643455370169900, -164.3158546616632800 63.2647233215241160, -164.3133523142578600 63.2650522053950200, -164.3108204520022200 63.2653315618022100, -164.3082639069537300 63.2655608565483500, -164.3058331653682600 63.2657309273404850, -164.3053395652687000 63.2657561326394700, -164.3041114618744400 63.2660292333624740, -164.3017258221889300 63.2665025627431400, -164.2992965464984000 63.2669285266302400, -164.2968282681100600 63.2673063111374200, -164.2943256967734600 63.2676351950083240, -164.2917936087880000 63.2679145514154600, -164.2892368353116700 63.2681438461616500, -164.2886119512805000 63.2681974097827150, -164.2880673434331000 63.2683080353875800, -164.2878546132997400 63.2683503116176700, -164.2869466703525300 63.2685572249360460, -164.2845608229236200 63.2690305543166600, -164.2821313340937800 63.2694565182038100, -164.2804523915645800 63.2697134680021800, -164.2791163758200500 63.2700974407443400, -164.2775045757755000 63.2705417921700360, -164.2762118650855000 63.2708881561635500, -164.2739265888409600 63.2714534196396700, -164.2715886563913400 63.2719732124938300, -164.2692025265753300 63.2724465427737640, -164.2667727508617500 63.2728725057616000, -164.2643039652557800 63.2732502902687200, -164.2618008786076300 63.2735791741396300, -164.2592682690153700 63.2738585296475000, -164.2567109694356600 63.2740878243936300, -164.2546830117116000 63.2742285215290960, -164.2540557282892000 63.2744174852787750, -164.2518271462058000 63.2750271410897650, -164.2495415426080900 63.2755924045658840, -164.2472032756106400 63.2761121974200500, -164.2448168040522500 63.2765855268006600, -164.2423866803010200 63.2770114897884900, -164.2399175403621700 63.2773892742956150, -164.2374140957838600 63.2777181581665200, -164.2348811237648000 63.2779975136743900, -164.2323234572617000 63.2782268084205300, -164.2297459786939300 63.2784056044351360, -164.2271536082524000 63.2785335599758700, -164.2245512922083300 63.2786104304270800, -164.2219440002154200 63.2786360709979500, -164.2207830509969700 63.2786309889290240, -164.2175860771357300 63.2786029633561500, -164.2164500490305000 63.2785830595606200, -164.2142488207264500 63.2788327365416300, -164.2114357665473700 63.2790878049582940, -164.2106696700692000 63.2791409467973300, -164.2085691568411000 63.2795575163663700, -164.2061387830783600 63.2799834793541440, -164.2036693895307000 63.2803612638612660, -164.2011656868469300 63.2806901468328500, -164.1986324540245000 63.2809695032400440, -164.1960745249193700 63.2811987970868600, -164.1932758526984000 63.2813905118626960, -164.1913300858147700 63.2815026150536800, -164.1894417937038000 63.2815976742932660, -164.1875654293011000 63.2816650586955800, -164.1859027546084000 63.2818484520444700, -164.1854445446300000 63.2819138156701200, -164.1829766007894600 63.2823062564286260, -164.1804727299325200 63.2826351394002100, -164.1779393262388900 63.2829144958074040, -164.1770457247803600 63.2829945930261000, -164.1762831014839300 63.2831112530819300, -164.1737791604798500 63.2834401369528340, -164.1712456866391000 63.2837194924606500, -164.1709121244949200 63.2837403477389000, -164.1685723943005300 63.2842511689563600, -164.1661852500492000 63.2847244974376500, -164.1637544419139400 63.2851504604254840, -164.1612846058998200 63.2855282440332900, -164.1587804562530300 63.2858571279041940, -164.1562450084004000 63.2861249720898500, -164.1542571595402600 63.2864172409629760, -164.1517529316524500 63.2867461239345060, -164.1492191673306700 63.2870254794423800, -164.1466607022296000 63.2872547741885100, -164.1447550190288800 63.2873919216999100, -164.1428404802039700 63.2875012891532300, -164.1409190849478000 63.2875827614353740, -164.1389928414464500 63.2876362540099500, -164.1349330733026800 63.2877193306826500, -164.1322219995456000 63.2877470360969000, -164.1299349534353400 63.2877273229576640, -164.1276512644942300 63.2876682105195400, -164.1264146409229200 63.2876125685652400, -164.1238068417123400 63.2876360372733300, -164.1219991585343200 63.2876360372733300, -164.1193912648949400 63.2876103841119860, -164.1167883490031000 63.2875335091641800, -164.1162414218041500 63.2875065205095700, -164.1154753945737600 63.2876071213715900, -164.1129415547089500 63.2878864768794640, -164.1103830122661700 63.2881157707262800, -164.1081431607782000 63.2882740451111660, -164.1058915677416200 63.2883939472229140, -164.1036314806083300 63.2884753052911700, -164.1013661567227200 63.2885180006052800, -164.0986416210139700 63.2885460270775300, -164.0972779996799000 63.2885530336956200, -164.0946698119622300 63.2885273931247500, -164.0920666028913800 63.2884505226735400, -164.0914385703337400 63.2884195347338050, -164.0891284116468400 63.2885335211051940, -164.0865251953814300 63.2886103924557200, -164.0839169995698500 63.2886360321272150, -164.0833100102487400 63.2886300651254600, -164.0829979023313000 63.2886644740862600, -164.0804392915400500 63.2888937679330750, -164.0778608614895400 63.2890725639477400, -164.0752675323707000 63.2892005194884200, -164.0726642558507000 63.2892773899396300, -164.0700559997845300 63.2893030305104960, -164.0691769646451800 63.2893001194050300, -164.0607521220128000 63.2892440673599000, -164.0600818914661000 63.2892335569831060, -164.0588825169146000 63.2892954420310600, -164.0564774437790000 63.2893754412236800, -164.0540671509782000 63.2894116839021300, -164.0493407522738800 63.2894397094750600, -164.0485560002591700 63.2894420297259300, -164.0459477316025000 63.2894163900543840, -164.0433444424919900 63.2893395187038550, -164.0407511016819600 63.2892115631631800, -164.0381726581416300 63.2890327680478900, -164.0356140347598700 63.2888034733017000, -164.0330801148553800 63.2885241177938840, -164.0305757331835300 63.2881952348223000, -164.0281056696409200 63.2878174512144400, -164.0268795321646600 63.2876026085735900, -164.0259136656831000 63.2874961216487600, -164.0234093730441000 63.2871672386771700, -164.0209393346825000 63.2867900279375100, -164.0192751419342300 63.2866071247190700, -164.0167700381067600 63.2862881603703600, -164.0158921927704500 63.2862194836423000, -164.0133584994951300 63.2859401281344840, -164.0108543417544500 63.2856112442635800, -164.0083844994450700 63.2852334606557200, -164.0064990932585300 63.2849078844913040, -164.0046392323147000 63.2845538061133100, -164.0028070426109000 63.2841716311159500, -164.0010041483227500 63.2837648704524440, -164.0000526395176600 63.2836224664037560, -163.9976219599854200 63.2831965034159800, -163.9964923512410000 63.2829586192449400, -163.9952327499914000 63.2827375011348200, -163.9940253867621600 63.2825674699128600, -163.9915947953634800 63.2821415069250860, -163.9892078651508300 63.2816681775444200, -163.9868691475930700 63.2811483846902550, -163.9845831042268600 63.2805831221134550, -163.9839949431121000 63.2804222540838200, -163.9829440196507400 63.2802614786843400, -163.9805136225056400 63.2798355156965600, -163.9781268829492500 63.2793621863158900, -163.9757883524504800 63.2788423934617300, -163.9735024916466600 63.2782771299856100, -163.9712736586524000 63.2776674741746200, -163.9691061036637300 63.2770145897515600, -163.9670044905647600 63.2763177986275900, -163.9657043199983400 63.2759401652065200, -163.9653669492252800 63.2758516674205700, -163.9649019106946000 63.2757270141904100, -163.9634225079423700 63.2753611403044260, -163.9624582809249000 63.2750947979865800, -163.9614066227174500 63.2748161700303060, -163.9611909509016200 63.2747627691865100, -163.9601727987356400 63.2745297152741840, -163.9590707038498700 63.2742874091366600, -163.9588109049992400 63.2742073865616700, -163.9562819421579000 63.2739131715557050, -163.9537788267314500 63.2735842876848000, -163.9513100123471600 63.2732065040769400, -163.9488802087546200 63.2727805401898400, -163.9464940510595700 63.2723072108091740, -163.9441560916303000 63.2717874179550100, -163.9418707893054500 63.2712221535795700, -163.9396425004010500 63.2706124977686400, -163.9374736207110000 63.2699689555029750, -163.9364682605017800 63.2697792201349800, -163.9341305061179200 63.2692594272808150, -163.9318454025432700 63.2686941629053760, -163.9296173096910500 63.2680845061950660, -163.9274504732607000 63.2674316208726850, -163.9253490229390300 63.2667367515998650, -163.9246172643752300 63.2664493624481600, -163.9241722267668000 63.2663145405836640, -163.9235430169966000 63.2661661722311240, -163.9213151174986400 63.2655565155208140, -163.9191484708252300 63.2649036292991100, -163.9170514064972000 63.2641934059010400, -163.9166735140714000 63.2640734867021000, -163.9162059070769100 63.2639455203695300, -163.9140393809126700 63.2632926341478300, -163.9119382318638700 63.2625977648750100, -163.9099064646116200 63.2618622372525000, -163.9083201198776000 63.2612400008254100, -163.9067834455995000 63.2605929727874900, -163.9058801026845600 63.2601848127789600, -163.9037929335969700 63.2599975811235140, -163.9012615380894700 63.2597182247163800, -163.8987596529356000 63.2593893408454700, -163.8962920508374500 63.2590115554389740, -163.8938634397459300 63.2585855915518800, -163.8928553536916000 63.2583855247722200, -163.8913206588213100 63.2581505589012100, -163.8888921205748700 63.2577245950141100, -163.8865072057429300 63.2572512638348000, -163.8841704630963500 63.2567314700813200, -163.8831159963061500 63.2564580303139200, -163.8818857273444000 63.2561690070940600, -163.8807822304155800 63.2559264743273960, -163.8784981808463500 63.2553612090526400, -163.8762711150199000 63.2547515514430100, -163.8741052768370400 63.2540986652213060, -163.8720047959845000 63.2534037950491700, -163.8699736744455000 63.2526682665273400, -163.8683807214930800 63.2520431378805500, -163.8668249555072700 63.2513863162255900, -163.8653689396248300 63.2509038029681960, -163.8633379934536000 63.2501682744463700, -163.8618346615403700 63.2495794658197500, -163.8605770909599600 63.2490526933272000, -163.8595632231642000 63.2491646220497050, -163.8570081071384000 63.2493939176952150, -163.8544331988330200 63.2495727137098240, -163.8518434121437200 63.2497006692505600, -163.8492436924424300 63.2497775415004100, -163.8466389994902000 63.2498031811719560, -163.8462709600367500 63.2498026694576650, -163.8363167078497600 63.2497746429854150, -163.8338066388652700 63.2497436703341700, -163.8313016906205000 63.2496651181507450, -163.8288063030684000 63.2495391258300400, -163.8263249017727800 63.2493659173032940, -163.8237697884449600 63.2491366216578400, -163.8212393444201800 63.2488572652506500, -163.8187383981585300 63.2485283804804200, -163.8162717223620700 63.2481505950739800, -163.8138440231831000 63.2477246311868300, -163.8114599330294500 63.2472513000075200, -163.8091239988734200 63.2467315053547200, -163.8068406750571000 63.2461662400799600, -163.8046143169971200 63.2455565824703850, -163.8024491667955800 63.2449036953493100, -163.8014076016794400 63.2445590202826200, -163.8012121709049300 63.2445725946495800, -163.7986251730133000 63.2447005043248960, -163.7960282511028800 63.2447774215408460, -163.7934263541429000 63.2448031997079740, -163.7732966462232300 63.2448031997079740, -163.7706947492632400 63.2447774215408460, -163.7680978273528200 63.2447005043248960, -163.7655108294612000 63.2445725946495800, -163.7629386847724500 63.2443939362312300, -163.7603840112131200 63.2441646405857200, -163.7585419244702200 63.2439612427172050, -163.7567208368970700 63.2439702035621300, -163.7541169614286000 63.2439445459041300, -163.7515180574124000 63.2438676691576800, -163.7489290837102000 63.2437397190128650, -163.7463549829960500 63.2435609391860700, -163.7438003822818000 63.2433316435405600, -163.7412704463739600 63.2430522871334200, -163.7387700019340000 63.2427234023632000, -163.7363038207646800 63.2423456169567000, -163.7344596430980300 63.2420060248582000, -163.7330225705351800 63.2419219454415040, -163.7304681146117700 63.2416926497959900, -163.7279383216961700 63.2414132933888600, -163.7254380184497500 63.2410844086186300, -163.7229719775746700 63.2407066232121340, -163.7205449034245200 63.2402806575264000, -163.7181614266085300 63.2398073263470900, -163.7158260931996000 63.2392875316942900, -163.7150810408573000 63.2391030375752050, -163.7146671539659600 63.2390396281763300, -163.7122402201100300 63.2386136633899100, -163.7098568799909800 63.2381403322106050, -163.7075216805810700 63.2376205375578000, -163.7052420304952700 63.2370419991889900, -163.7041649709366300 63.2367747746362200, -163.7018789347650000 63.2362222743385600, -163.6996533411287700 63.2356126158296100, -163.6974889355659000 63.2349597278092700, -163.6953898432666400 63.2342648558384900, -163.6933600644154000 63.2335293264173400, -163.6916188905993000 63.2328432426215840, -163.6899380370107600 63.2321272365827550, -163.6883200262482000 63.2313823856886200, -163.6867672873803800 63.2306098104944000, -163.6842957624394600 63.2293310330008500, -163.6835392860092200 63.2289317996628600, -163.6819112325173400 63.2280154795308250, -163.6803734430799000 63.2270679826014000, -163.6789288422922000 63.2260911165118960, -163.6775801739858000 63.2250867428589340, -163.6763299994299000 63.2240567762992200, -163.6751806901367000 63.2230031809521050, -163.6745624323103800 63.2223825920830200, -163.6734058025357400 63.2213361841176600, -163.6723595987164700 63.2202609663705740, -163.6714184159271200 63.2191661766777900, -163.6705840357246300 63.2180539005671000, -163.6698580355199000 63.2169262568413600, -163.6692327431965200 63.2157921775669800, -163.6690608908474200 63.2155819043814500, -163.6683349517965700 63.2144542606556600, -163.6677187543170400 63.2133133986944240, -163.6672134585342600 63.2121614894612100, -163.6668294776982000 63.2110332530822350, -163.6665518659758000 63.2098986818787100, -163.6663811099002700 63.2087598182110900, -163.6663627070732300 63.2084296671954460, -163.6659094496613400 63.2082928164603600, -163.6638122882065100 63.2075979426909400, -163.6617843772472000 63.2068624114711500, -163.6613841933258300 63.2067050993608750, -163.6609394821713300 63.2065708215861800, -163.6588424457222600 63.2058759478168200, -163.6568146543727700 63.2051404165969760, -163.6554442368620200 63.2046044242548500, -163.6541106088175200 63.2040498555164700, -163.6528150068071000 63.2034772238948200, -163.6515586269290700 63.2028870599899050, -163.6472530344999300 63.2008017453043750, -163.6461950963266000 63.2002755303914800, -163.6451683385479600 63.1997368805526800, -163.6435419227215400 63.1988205568233100, -163.6420056810173400 63.1978730571958640, -163.6405625335340800 63.1968961875090800, -163.6392152214053200 63.1958918102589000, -163.6379663032023000 63.1948618401019100, -163.6368181495379300 63.1938082411574560, -163.6357729358722700 63.1927330198130900, -163.6355904445433400 63.1925205432884800, -163.6352381504202600 63.1921972433082150, -163.6341925329590000 63.1911225255841500, -163.6335472541024700 63.1905312474191900, -163.6325016959964400 63.1894565305944400, -163.6318597734098000 63.1888564174897200, -163.6303284725809000 63.1879010820693450, -163.6288858206241000 63.1869242114832450, -163.6275389716462000 63.1859198333336850, -163.6262904815204700 63.1848898622773700, -163.6251427217591800 63.1838362606349600, -163.6243243503884300 63.1829941039947600, -163.6234273512912000 63.1826684864615200, -163.6216366985747500 63.1819608108427800, -163.6199101036683300 63.1812213792633200, -163.6182503220946700 63.1804513716335240, -163.6166600005585400 63.1796520200247760, -163.6142165038885000 63.1783732488264040, -163.6136474461726800 63.1780709408213300, -163.6129607427440600 63.1776837619960900, -163.6118844799847200 63.1772281096895650, -163.6116805263352000 63.1771352933591300, -163.6104834171759400 63.1773458543277700, -163.6080227632399200 63.1777236424322300, -163.6055279224756000 63.1780525290010900, -163.6030036558939900 63.1783318881061860, -163.6004547811632000 63.1785611846510160, -163.5978863560704600 63.1787399707731100, -163.5953030921639300 63.1788679236158260, -163.5927099195271200 63.1789447994629540, -163.5901117862299300 63.1789704517250360, -163.5884162134374800 63.1789704517250360, -163.5858180801402600 63.1789447994629540, -163.5832249075034500 63.1788679236158260, -163.5806416435969500 63.1787399707731100, -163.5780732185042200 63.1785611846510160, -163.5755243437734200 63.1783318881061860, -163.5730000771917800 63.1780525290010900, -163.5705052364275000 63.1777236424322300, -163.5680445824914700 63.1773458543277700, -163.5656228098447700 63.1769198859440200, -163.5632445383047600 63.1764465520668100, -163.5609143049511800 63.1759267538166700, -163.5586365542335700 63.1753614840453100, -163.5564156280787500 63.1747518219390800, -163.5542557622935600 63.1740989294220900, -163.5521610721757200 63.1734040529547100, -163.5501355489164200 63.1726685181376400, -163.5484535334038000 63.1720051907869900, -163.5468277857736700 63.1713138216756000, -163.5458827574832400 63.1708965461387500, -163.5438151207711700 63.1699369218515000, -163.5418558163928000 63.1689319654379350, -163.5402311254660500 63.1680156390106050, -163.5386965124341000 63.1670681348865600, -163.5372548946976000 63.1660912616025000, -163.5359090106922500 63.1650868807549840, -163.5346614153919800 63.1640569070007100, -163.5340867845774300 63.1635290373352500, -163.5321969950952000 63.1633589440600640, -163.5304410247334800 63.1631645115330100, -163.5299711622393200 63.1631645115330100, -163.5273744570655200 63.1631388583716700, -163.5247827089548300 63.1630619825245400, -163.5222008641785000 63.1629340296817650, -163.5196338519207000 63.1627552444589900, -163.5170863639445100 63.1625259470149000, -163.5145634724263000 63.1622465879097500, -163.5120699896383000 63.1619176995422440, -163.5096106747927800 63.1615399114378400, -163.5071902205522200 63.1611139430540900, -163.5048132440359400 63.1606406073781840, -163.5024842796257800 63.1601208082287800, -163.5002077681739400 63.1595555384573700, -163.4979880516072800 63.1589458745525000, -163.4958293603366700 63.1582929811362400, -163.4937358096598500 63.1575981037695440, -163.4917113889694000 63.1568625680531000, -163.4898036265361200 63.1561058766849300, -163.4879690284478800 63.1553130793352000, -163.4862109302901800 63.1544856185165600, -163.4845325273542200 63.1536250023920050, -163.4821440988710300 63.1523462410862100, -163.4819929974788000 63.1522650116210700, -163.4803692382497200 63.1513486833951000, -163.4788355047547000 63.1504011783717400, -163.4773947125959000 63.1494243032890400, -163.4760495993095300 63.1484199197435600, -163.4748027189702700 63.1473899441906500, -163.4736564376944200 63.1463363380516400, -163.4726118517555200 63.1452622822286000, -163.4719655305847500 63.1446703412632900, -163.4714139862664000 63.1440905195618700, -163.4709140153695000 63.1436038883088600, -163.4702735721676000 63.1430313448207700, -163.4692301823270400 63.1419561162817900, -163.4682915293306000 63.1408613157971700, -163.4674593911379600 63.1397490288946400, -163.4667353406634000 63.1386213734776300, -163.4661207439771100 63.1374804998252440, -163.4656167594059000 63.1363285789008700, -163.4654865951302400 63.1359435593478200, -163.4653879727766800 63.1357899452498260, -163.4629946411897000 63.1355246875143600, -163.4605034507736100 63.1351957991468600, -163.4580463977230500 63.1348180101431350, -163.4556281684052000 63.1343920399607440, -163.4532533772415400 63.1339187033855200, -163.4509265532178400 63.1333989033368000, -163.4486521344883800 63.1328336308674240, -163.4464344584834500 63.1322239651639200, -163.4442777511172800 63.1315710699489600, -163.4421861240903000 63.1308761907836240, -163.4401635640972000 63.1301406523692800, -163.4386333568439200 63.1295383700997400, -163.4371494754679000 63.1289128079797600, -163.4357136475667600 63.1282646953594600, -163.4343275413829000 63.1275947885686700, -163.4321048210806000 63.1264827372885400, -163.4318838099898000 63.1263702240066800, -163.4303958142154200 63.1255990859291400, -163.4287735424650000 63.1246827541058900, -163.4272412137110300 63.1237352454852500, -163.4258017417569400 63.1227583677045350, -163.4244578596424700 63.1217539814611540, -163.4232121205429000 63.1207240023109100, -163.4220668887758700 63.1196703925746200, -163.4210243344054700 63.1185951613376800, -163.4200864332422600 63.1175003572557200, -163.4193736000116000 63.1165467737146740, -163.4179217713726200 63.1163857590955800, -163.4154322204206000 63.1160568698287500, -163.4129767834517700 63.1156790790263360, -163.4105601459339700 63.1152531088439450, -163.4081869168926700 63.1147797713694000, -163.4058616235150800 63.1142599695220400, -163.4035887012575200 63.1136946961533450, -163.4013724830536200 63.1130850295505200, -163.3992171939183300 63.1124321334362400, -163.3971269428541000 63.1117372524722700, -163.3951057120589500 63.1110017122592800, -163.3931573515305300 63.1102269175382840, -163.3912855736702700 63.1094143449960800, -163.3894939397934500 63.1085655441646050, -163.3877858619279700 63.1076821356221000, -163.3871255877756000 63.1073188005223100, -163.3864308012404600 63.1069295748400800, -163.3850001111661600 63.1060950597392900, -163.3836429163874600 63.1052357395378200, -163.3823613042307800 63.1043529398363600, -163.3812767092527000 63.1035378069242940, -163.3802776595862800 63.1030938233213300, -163.3791290238853300 63.1025540826049100, -163.3780140614997000 63.1020000489631340, -163.3769336366779600 63.1014321531714000, -163.3753127103133000 63.1005158195495140, -163.3737816532007000 63.0995683082309140, -163.3723433737476700 63.0985914268529200, -163.3710006058932200 63.0975870379115240, -163.3697558992153300 63.0965570560633200, -163.3695100704333600 63.0963307056975400, -163.3677366775056300 63.0957931881051760, -163.3656476207410700 63.0950983062418800, -163.3636275446754000 63.0943627651295740, -163.3620842019243500 63.0937543530810100, -163.3605880744800300 63.0931222034270150, -163.3591409367048500 63.0924670662021750, -163.3577445054045800 63.0917897202194800, -163.3534953013670500 63.0896556595810700, -163.3522378980605000 63.0892373255421700, -163.3502182284884200 63.0885017835305460, -163.3485087917473200 63.0878251812871440, -163.3468577264029300 63.0871194482040200, -163.3452674426383500 63.0863856167029000, -163.3437402634024000 63.0856247605743200, -163.3429344132925000 63.0852075066212000, -163.3420986805096800 63.0847651993545360, -163.3404786813460400 63.0838488630346300, -163.3389484983744600 63.0829013508167700, -163.3375110409018000 63.0819244676401350, -163.3361690401690400 63.0809200760007800, -163.3349250448549000 63.0798900914546150, -163.3337814138811300 63.0788364772217300, -163.3333915289958300 63.0784338066748660, -163.3321180035430000 63.0779325929148600, -163.3307129864151600 63.0773424982577350, -163.3293507410438400 63.0767321463715100, -163.3280326856598800 63.0761021748755300, -163.3238111717481600 63.0740178782225500, -163.3220338901518900 63.0730992315443500, -163.3204145385001300 63.0721828943251800, -163.3188849670675600 63.0712353803086200, -163.3174480842616600 63.0702584953333500, -163.3161066204241600 63.0692541027946700, -163.3148631215358000 63.0682241164498700, -163.3137199474176000 63.0671705004183400, -163.3136453261708400 63.0670934015392960, -163.3125433976596500 63.0671523907702750, -163.3120522733936800 63.0672189424003000, -163.3095376088735000 63.0674983042034100, -163.3069984297337000 63.0677276034462000, -163.3044407164658800 63.0679063356089400, -163.3018682291354400 63.0680342713645800, -163.2992858744435000 63.0681111660974800, -163.2966985761783300 63.0681368750168200, -163.2881522063592000 63.0681368750168200, -163.2861499890307500 63.0683593016405000, -163.2836107343479000 63.0685886008832900, -163.2813312065699000 63.0687503952146360, -163.2790395136626000 63.0688718405630200, -163.2767391288077200 63.0689527525675540, -163.2744335404754800 63.0689930089203000, -163.2711805415487200 63.0690210344931760, -163.2700559995846800 63.0690258719465100, -163.2674674755435300 63.0690002313756400, -163.2648838914783800 63.0689233591257900, -163.2623101810699800 63.0687954008871000, -163.2613480926403300 63.0687260892376600, -163.2590464963986700 63.0688457206535400, -163.2567360175531500 63.0689265409271800, -163.2544203352302600 63.0689663494175650, -163.2511673372028200 63.0689933740450200, -163.2504315442803000 63.0689964263440300, -163.2491520473291000 63.0693151280907500, -163.2468303395485000 63.0698349317367500, -163.2444607698486200 63.0703082719092550, -163.2420478591213900 63.0707342438902860, -163.2395962091976600 63.0711120364913400, -163.2371104983508000 63.0714409275568100, -163.2345954696052000 63.0717202884606000, -163.2320559226427000 63.0719495886027060, -163.2294982426497500 63.0721282955844340, -163.2269257903929000 63.0722562232461400, -163.2243434707745300 63.0723331269722960, -163.2219660338054000 63.0723515055176450, -163.2217577813964600 63.0723690854649700, -163.2204200308597000 63.0725844515112600, -163.2194346976531600 63.0727812627451400, -163.2170215818804600 63.0732072347261700, -163.2145697242133600 63.0735850273272260, -163.2120838020258000 63.0739139174933700, -163.2095685601409200 63.0741932792964800, -163.2070287973411000 63.0744225785392100, -163.2044703124549300 63.0746013214938440, -163.2025004419418200 63.0746992612619700, -163.2021395044345400 63.0747320793220750, -163.2018994079313000 63.0747494344389000, -163.1996249271486500 63.0750262763416460, -163.1970850924030600 63.0752555755843800, -163.1945255831891000 63.0754343751963200, -163.1919512864227000 63.0755623334350160, -163.1893671142009300 63.0756392056848650, -163.1867780002045300 63.0756648462557340, -163.1866952382946000 63.0756648201753500, -163.1628795384599000 63.0756466610646400, -163.1612082824362600 63.0758322730410440, -163.1586683775435600 63.0760615722837800, -163.1561099421201000 63.0762403035472500, -163.1535367299361200 63.0763682393028400, -163.1521694474620000 63.0763974196053140, -163.1496536497960800 63.0766652700862100, -163.1471136720582800 63.0768945693289400, -163.1446158113705600 63.0770696619354100, -163.1421037530857000 63.0771963368415500, -163.1395820621624200 63.0772743638208900, -163.1370553251431000 63.0773036025792600, -163.1348156544189000 63.0773077520511800, -163.1328480295129300 63.0775262666239800, -163.1303079762321000 63.0777555658667100, -163.1277495453052500 63.0779441698875900, -163.1270029847998700 63.0780529024195860, -163.1244873849848000 63.0783322642226950, -163.1238870758278700 63.0783864546712040, -163.1229617516834800 63.0785290080073650, -163.1204754086132000 63.0788578990728300, -163.1179597395503200 63.0791372599766200, -163.1154195459752400 63.0793665592194100, -163.1140494702068500 63.0794629962203400, -163.1121148630105000 63.0797188956106000, -163.1095991193038800 63.0799982574137060, -163.1089145301814000 63.0800416029376800, -163.1086007234446000 63.0800959462709440, -163.1078531161283800 63.0802306404317500, -163.1077732878069600 63.0802438928414500, -163.1053607880698700 63.0806792078792000, -163.1029083017766700 63.0810569995809400, -163.1004217419698000 63.0813858897470800, -163.0979058552709700 63.0816652515501900, -163.0953795481276200 63.0818941793729100, -163.0935350781812800 63.0823078872992400, -163.0911644949454500 63.0827812265724200, -163.0887505508971700 63.0832071985534500, -163.0879990800934500 63.0833229484953200, -163.0876028729741700 63.0836194630678050, -163.0870480901972000 63.0839964669634100, -163.0863953613568000 63.0846704647701700, -163.0852491439328300 63.0857217956244100, -163.0846763882047000 63.0863084620659150, -163.0835324649512800 63.0873620753995400, -163.0822881503778200 63.0883920590463300, -163.0811662533199000 63.0892381349320300, -163.0799765896478600 63.0900649860103600, -163.0787207583563000 63.0908714980212700, -163.0774004447746700 63.0916565863823850, -163.0766227101699100 63.0921018398281000, -163.0755796863534200 63.0926821768410400, -163.0738724871255600 63.0935655871821840, -163.0720817759531700 63.0944143889129800, -163.0702109612668000 63.0952269632538200, -163.0682636043818000 63.0960017597734600, -163.0662434150015700 63.0967373008857600, -163.0652062709526100 63.0970822655342000, -163.0642662383961600 63.0977854292542000, -163.0628279994126000 63.0987623097328800, -163.0612969845681400 63.0997098210514760, -163.0606463052827500 63.1000670677410650, -163.0592988807387400 63.1010634212399300, -163.0578604798772000 63.1020403017186000, -163.0563292923629300 63.1029878121378800, -163.0547082284019800 63.1039041457597700, -163.0534797796680700 63.1045473498803600, -163.0510648553587600 63.1057718371006300, -163.0503348729560000 63.1063220288386300, -163.0491446121341000 63.1071488160650900, -163.0434810506099600 63.1109287709460900, -163.0429666689765600 63.1112540035694600, -163.0423294903137000 63.1117810053891600, -163.0409860686521300 63.1127853925319200, -163.0399733465926300 63.1134728981558060, -163.0390288650900200 63.1142539989229500, -163.0376853292145500 63.1152583860657050, -163.0369534213632800 63.1157366931938700, -163.0356992888910400 63.1167539937018800, -163.0343556379023400 63.1177583799453150, -163.0336636977214400 63.1182305042344200, -163.0323987625927800 63.1192809870279900, -163.0310549946922300 63.1202853741707500, -163.0296156450459600 63.1212622528507300, -163.0280834466936700 63.1222097605720500, -163.0264613125395000 63.1231260923952960, -163.0255345449832300 63.1236079887177650, -163.0243672276654000 63.1244803634780300, -163.0229276702757200 63.1254572421580600, -163.0213952515895500 63.1264047498793840, -163.0197728836116700 63.1273210808033100, -163.0187040024877000 63.1278825878112600, -163.0176013257405700 63.1284305519284900, -163.0151295435935300 63.1296253048639640, -163.0138968851331000 63.1302035203762000, -163.0126265918437000 63.1307648142448560, -163.0113197959718000 63.1313086846481600, -163.0099776639380000 63.1318346468515300, -163.0079549852343600 63.1325701852658800, -163.0062541684950500 63.1331351969318460, -163.0056132009884000 63.1334384501244000, -163.0042940682166400 63.1340248827422100, -163.0029352339738300 63.1345924610732800, -163.0015380121695000 63.1351406365312200, -162.9995151032394000 63.1358761740462460, -162.9974231173829400 63.1365710532115800, -162.9952660394961000 63.1372239484265400, -162.9930479812793000 63.1378336132307250, -162.9907731713447600 63.1383988848007200, -162.9884459471227300 63.1389186848495000, -162.9860707467675200 63.1393920214247260, -162.9841557807646400 63.1397292833797800, -162.9825797989185500 63.1401208787755760, -162.9802524362009400 63.1406406788243000, -162.9778770964508000 63.1411140153995200, -162.9754583077546800 63.1415399846825950, -162.9729995558847700 63.1419121007629100, -162.9727946147796200 63.1419460025060740, -162.9703758917340000 63.1423729817277600, -162.9679192865458200 63.1427562287170200, -162.9678222523950000 63.1427722978033300, -162.9654044754361700 63.1432069779197600, -162.9629467128205200 63.1435847678228600, -162.9604548038461000 63.1439136561903640, -162.9579335032285600 63.1441930152954600, -162.9570958989565400 63.1442628845245500, -162.9561577082116300 63.1444470036264000, -162.9537386425243000 63.1448729729094100, -162.9528878550904000 63.1450000713962250, -162.9525272035675700 63.1450806056854500, -162.9513308642279700 63.1457089835827800, -162.9404711647124500 63.1510733244743960, -162.9391367119896500 63.1517110993877960, -162.9377494699620300 63.1523198270983800, -162.9373738438278000 63.1526149099502160, -162.9360285362879000 63.1536192925963200, -162.9345875363856600 63.1545961676790740, -162.9330535825567700 63.1555436727023800, -162.9314295886046000 63.1564600000290300, -162.9300681184488700 63.1571691964013550, -162.9243189558551000 63.1600599798842400, -162.9229035506583000 63.1607470565314800, -162.9214359326221600 63.1614113785323640, -162.9199178869009200 63.1620521364969800, -162.9183512625007500 63.1626685498137600, -162.9163264371153400 63.1634040855302000, -162.9152261912357200 63.1637691985897050, -162.9140073112883400 63.1643983840782000, -162.9122122357060800 63.1652471786144360, -162.9103368596583200 63.1660597466600400, -162.9083847552522300 63.1668345368844400, -162.9063596393858000 63.1675700717015050, -162.9042653701506800 63.1682649481688800, -162.9025232970125200 63.1687916541116000, -162.9014094443903000 63.1695289866734700, -162.9009250812274800 63.1698783571005700, -162.9011178320223000 63.1703142539996600, -162.9012268757197100 63.1706273718558000, -162.9016623571320400 63.1713003903008140, -162.9022822130536700 63.1724407567355700, -162.9027914577595500 63.1735922540793240, -162.9031856764777600 63.1747410210813300, -162.9034697804060000 63.1758964079928660, -162.9036432245551400 63.1770562600384000, -162.9037056725787000 63.1782184152477300, -162.9037899282625400 63.1924359458622600, -162.9037357117336700 63.1936335172730400, -162.9035680466280000 63.1948053401943640, -162.9032873322445600 63.1959727447464300, -162.9028940892907500 63.1971335069058600, -162.9023890534120700 63.1982854179377700, -162.9017731742925400 63.1994262825969000, -162.9010476111583000 63.2005539290206600, -162.9002351483334000 63.2016415655058950, -162.9000841404706800 63.2019262791744700, -162.8993585143839000 63.2030539246989100, -162.8985238445997000 63.2041658150004100, -162.8983671647128500 63.2044542761439600, -162.8976414765728600 63.2055819216684000, -162.8974436077362800 63.2058219821987560, -162.8968161345569300 63.2069542718222700, -162.8960903834643800 63.2080819164473300, -162.8952562892463300 63.2091941943566550, -162.8943154293136000 63.2102889849487600, -162.8932695843238300 63.2113642035951700, -162.8921207363828500 63.2124178016403000, -162.8908710627493000 63.2134477690993300, -162.8895229349354600 63.2144521436515560, -162.8880789142105000 63.2154290115397000, -162.8865417426073000 63.2163765093684450, -162.8849143420232500 63.2172928312991760, -162.8834970203711500 63.2180285819535500, -162.8743323234779200 63.2226144229173300, -162.8729260787755000 63.2232939281723250, -162.8714685889042400 63.2239511041601650, -162.8699615940522800 63.2245851648735300, -162.8684068919644700 63.2251953521837900, -162.8663776967732700 63.2259308825042600, -162.8648987068098400 63.2264082516395550, -162.8642847549374700 63.2266389106572400, -162.8633579738913400 63.2270451569085000, -162.8617711678051300 63.2276683457176300, -162.8597417999441000 63.2284038760381000, -162.8576431321248200 63.2290987480088800, -162.8554791645318000 63.2297516360292200, -162.8532540214559000 63.2303612954374900, -162.8521225924836200 63.2306266601922860, -162.8509719908646500 63.2309267342814100, -162.8498939087768300 63.2312222910759400, -162.8476117639717000 63.2317875572500160, -162.8454571808042300 63.2322786833146300, -162.8452849642296800 63.2323292710790400, -162.8446360638032800 63.2325978617020040, -162.8425370920131500 63.2332927336727800, -162.8403728114560600 63.2339456216931240, -162.8381473455235400 63.2345552811013900, -162.8358647636479000 63.2351199114548300, -162.8349811761403300 63.2353612769014700, -162.8326987048813000 63.2359265430755500, -162.8315936854002400 63.2361693240551400, -162.8304616125133700 63.2364292757905000, -162.8303652870283400 63.2364531563881100, -162.8293105432469500 63.2367318005322000, -162.8282328946323500 63.2370272718911200, -162.8259502920723000 63.2375925380652600, -162.8236150953603400 63.2381123327180600, -162.8212317579392400 63.2385856638973100, -162.8188048258819800 63.2390116286837840, -162.8163403282435000 63.2393964638757800, -162.8162591284559800 63.2394098718681300, -162.8138334140807600 63.2398456257750500, -162.8113661159534600 63.2402167148295600, -162.8111500313488300 63.2402523369758000, -162.8087230021647800 63.2406786228202700, -162.8081099765941200 63.2407725354242400, -162.8065701933597000 63.2411942572092600, -162.8054939431909000 63.2414529444978400, -162.8042893067061200 63.2417669913536400, -162.8032660814644700 63.2420552546463450, -162.8009830832027000 63.2426205199211040, -162.7986474799972000 63.2431403145739100, -162.7962637288879400 63.2436136457532140, -162.7938363750486400 63.2440396105396300, -162.7913700490884700 63.2444173959461300, -162.7888694589583500 63.2447462807163560, -162.7863393737630700 63.2450256371234900, -162.7837846237613600 63.2452549327690000, -162.7812100841780000 63.2454337287836100, -162.7786206680093800 63.2455616852236600, -162.7760213197281000 63.2456385565741900, -162.7734169999945400 63.2456641971450600, -162.7711974695875200 63.2456455757827600, -162.7687901985088400 63.2456051422635700, -162.7676603199677700 63.2456385565741900, -162.7650560002341800 63.2456641971450600, -162.7624516805006200 63.2456385565741900, -162.7598523322193400 63.2455616852236600, -162.7572629160507000 63.2454337287836100, -162.7546883764673900 63.2452549327690000, -162.7521336264656500 63.2450256371234900, -162.7496035412703700 63.2447462807163560, -162.7471029511402500 63.2444173959461300, -162.7446366251800800 63.2440396105396300, -162.7422092713407800 63.2436136457532140, -162.7398255202315300 63.2431403145739100, -162.7374899170260000 63.2426205199211040, -162.7361567278506700 63.2422904255627700, -162.7345872130294400 63.2422887753068040, -162.7338087760541300 63.2423600870484400, -162.7330175183437600 63.2424650855952560, -162.7329514145761000 63.2424775223198600, -162.7326220288835000 63.2425645200366400, -162.7302864310739000 63.2430843146894400, -162.7293268796317700 63.2432696766543360, -162.7271608651817600 63.2439175878264450, -162.7263508898816400 63.2441232645770700, -162.7248637646510000 63.2448352524450000, -162.7233225029311300 63.2455372155700960, -162.7217250704556200 63.2462131972812900, -162.7200736184027500 63.2468622847666800, -162.7180429042566000 63.2475978132885100, -162.7162788462917000 63.2481815074706300, -162.7159895074098000 63.2484196884179250, -162.7146397527223800 63.2494240593728700, -162.7131939882119700 63.2504009227644100, -162.7116549604080500 63.2513484169958800, -162.7100255948053300 63.2522647344300140, -162.7087084216563000 63.2529476759945060, -162.7078410111537000 63.2535910491876050, -162.7063950380005800 63.2545679116798300, -162.7048557889634700 63.2555154050119800, -162.7032261886376700 63.2564317224461100, -162.7018307142160700 63.2571555849623340, -162.7009842147497000 63.2575802466311100, -162.6996277232408000 63.2585910369468250, -162.6984177267966300 63.2594083381243900, -162.6981900418369400 63.2595782812127800, -162.6975933785315600 63.2600866616701300, -162.6962430806536300 63.2610910308264900, -162.6947967324831800 63.2620678933186600, -162.6932570850464000 63.2630153857514900, -162.6929085887603300 63.2632112931667050, -162.6926553441687700 63.2634196534942800, -162.6913048898087800 63.2644240226505900, -162.6898583761631000 63.2654008842434900, -162.6883185506605700 63.2663483766763200, -162.6866883396950800 63.2672646932110750, -162.6854142629578300 63.2679273793451100, -162.6827266246340000 63.2692652360019000, -162.6813700638773200 63.2702580084004500, -162.6799232579519700 63.2712348699932900, -162.6783831221833000 63.2721823615268000, -162.6776215169194300 63.2725968797422500, -162.6762648779217400 63.2735910002245400, -162.6748179056218000 63.2745678609181250, -162.6732775926867300 63.2755153524516340, -162.6716468655104000 63.2764316680870700, -162.6704873345228500 63.2770363470498300, -162.6689731810674300 63.2778025964127550, -162.6679126033839000 63.2785909888830800, -162.6664653810724400 63.2795678486773450, -162.6649248010387200 63.2805153393115350, -162.6632937923746000 63.2814316540476500, -162.6619153951793000 63.2821463686600500, -162.6528057224061300 63.2867041975407600, -162.6513870274893000 63.2873894611547600, -162.6503154097283400 63.2878722109338700, -162.6499932105182300 63.2880703189900940, -162.6497837287360500 63.2881879772933760, -162.6494098598771000 63.2886218354294100, -162.6483611847208700 63.2896970432839800, -162.6472092269242500 63.2907506305372200, -162.6459561700412000 63.2917805890030540, -162.6446043918791400 63.2927849536627600, -162.6431564582039500 63.2937618125576500, -162.6416151218403700 63.2947093013932000, -162.6399833118803100 63.2956256152299940, -162.6384814818349000 63.2964015403988500, -162.6382029258243400 63.2965399874305500, -162.6373043780945400 63.2973616161457360, -162.6360510343277500 63.2983915737121950, -162.6349490383674000 63.2992174580193140, -162.6337819980407500 63.3000250600085800, -162.6325514053230600 63.3008133427616140, -162.6312588331286000 63.3015812954404850, -162.6304811102150400 63.3020265515841600, -162.6292995161597000 63.3026815952794660, -162.6275799152808500 63.3035649849361450, -162.6267122799477200 63.3039732699505200, -162.6256792727802000 63.3049175994676700, -162.6252063525910800 63.3053061281753460, -162.6245263167361000 63.3060948021334900, -162.6234770084571400 63.3071700072900400, -162.6230952534431500 63.3075189505391900, -162.6228625637562900 63.3077887984143800, -162.6218131934241200 63.3088640044703100, -162.6206821934284500 63.3098988399595440, -162.6200663277987500 63.3105310004053760, -162.6189135390285700 63.3115845849606560, -162.6176595783268500 63.3126145398292100, -162.6166051699925700 63.3133973942743750, -162.6162709828195700 63.3139147436705200, -162.6154338390004500 63.3150270062913600, -162.6144895373622300 63.3161217824943500, -162.6134398657571600 63.3171969876509000, -162.6122868107876500 63.3182505704075400, -162.6110325614035600 63.3192805252761000, -162.6096794954123700 63.3202848872377900, -162.6082301839758000 63.3212617425354550, -162.6066873790193000 63.3222092286730460, -162.6050540141314000 63.3231255389125640, -162.6037090753135600 63.3238225197935100, -162.6014328174705000 63.3249638736838850, -162.6011740681287000 63.3252607650723000, -162.6001240637745000 63.3263359684302700, -162.5989706445795700 63.3273895502875900, -162.5977159976951000 63.3284195033574500, -162.5964844561926800 63.3293373109681850, -162.5951725081047200 63.3302323387515000, -162.5937822299659000 63.3311031648792100, -162.5923158242159000 63.3319484061940440, -162.5915110685809300 63.3323936668343200, -162.5909312666646000 63.3327095123341900, -162.5892098761348400 63.3335928983935900, -162.5874042766860000 63.3344416767420200, -162.5869985556388100 63.3346164401966100, -162.5866845834267500 63.3347925058695300, -162.5861118276986600 63.3351044977744100, -162.5847632403312600 63.3361188485060900, -162.5833131329946800 63.3370957020051150, -162.5817694808768000 63.3380431863440100, -162.5813724391866800 63.3382658027246600, -162.5811510485820000 63.3384474810664500, -162.5797970841680600 63.3394518403302400, -162.5783468095576000 63.3404286938292100, -162.5768029802733000 63.3413761772688400, -162.5751685290043700 63.3422924857097200, -162.5739802673754200 63.3429103226533240, -162.5728567551351200 63.3434529933609840, -162.5727537476872700 63.3435156671143900, -162.5714998553340300 63.3444518280894600, -162.5700493289133700 63.3454286806891100, -162.5685052316311000 63.3463761641287400, -162.5668704970757400 63.3472924716703000, -162.5657393064238400 63.3478813882155700, -162.5645706545120700 63.3484553661223200, -162.5633655180042200 63.3490139251525760, -162.5621249023423300 63.3495565985582500, -162.5618645692944000 63.3496677304814300, -162.5607086823597700 63.3507234985906400, -162.5594530210400700 63.3517534489625400, -162.5580984324966200 63.3527578073270100, -162.5566474878912000 63.3537346590273400, -162.5553952143176600 63.3545028527245200, -162.5552055176205200 63.3546969102342800, -162.5547258138452000 63.3551346597367900, -162.5545846355724400 63.3552798058184400, -162.5535416630173000 63.3563639061694060, -162.5523870432274400 63.3574174844293900, -162.5511310896280600 63.3584474339020300, -162.5497761863219000 63.3594517913671200, -162.5483249053700700 63.3604286421681300, -162.5467800040938800 63.3613761238091200, -162.5451444196792000 63.3622924304513600, -162.5436208386307700 63.3630774108938800, -162.5424219937799500 63.3636713348642500, -162.5413689713009500 63.3644517800256600, -162.5399174385389400 63.3654286299274100, -162.5389525523184200 63.3660202885055800, -162.5386165404209700 63.3663638852851250, -162.5374615204328000 63.3674174626458500, -162.5362051315615300 63.3684474112191100, -162.5348497579099700 63.3694517668855600, -162.5341628755162700 63.3698874605379400, -162.5340829887389000 63.3699526218160800, -162.5335403585007200 63.3705028774059000, -162.5323851730372800 63.3715564538673000, -162.5311286034023000 63.3725864015412400, -162.5297730354971600 63.3735907572077500, -162.5295106448003800 63.3737513626353460, -162.5286042828613200 63.3746968684657760, -162.5279977288121000 63.3752387855415700, -162.5274583055563400 63.3757596180120100, -162.5271056400132500 63.3761268849478400, -162.5269538416464500 63.3763166140205950, -162.5263696438439600 63.3772486399128640, -162.5255306636092000 63.3783608926411260, -162.5245842881343500 63.3794556607501800, -162.5235323106675800 63.3805308569135950, -162.5223767232071700 63.3815844315763000, -162.5211197165017000 63.3826143783509200, -162.5197636755531500 63.3836187331181100, -162.5183111769192400 63.3845955812211600, -162.5167649788206700 63.3855430601641400, -162.5163901243047600 63.3857528890846400, -162.5161527392574800 63.3859473710743940, -162.5147965418269000 63.3869517249422100, -162.5143347111779500 63.3872622833277400, -162.5141645198766600 63.3874174190787000, -162.5129072586630300 63.3884473649540040, -162.5115509434212700 63.3894517188218200, -162.5100981507090700 63.3904285660255500, -162.5085516387471000 63.3913760449685800, -162.5069143483185000 63.3922923480134840, -162.5056392805283600 63.3929527471715900, -162.5043170361023000 63.3935942290904700, -162.5029490062915700 63.3942161138825800, -162.5015366345080600 63.3948177468416250, -162.5005925325193300 63.3952070147919360, -162.4985786788629000 63.3960008166844200, -162.4965374381522200 63.3967363326157200, -162.4953267258477000 63.3971348626838000, -162.4953960806645600 63.3973356857933400, -162.4956835975199900 63.3985028196494800, -162.4958573204589500 63.3996744654043000, -162.4959169041417800 63.4008483936385100, -162.4959154625285600 63.4010618144512250, -162.4958907698431300 63.4026448253984540, -162.4958212243700000 63.4037652772457800, -162.4956476615103300 63.4048834583049940, -162.4953703717452200 63.4059974305370700, -162.4949898227221200 63.4071052586008360, -162.4944811194081000 63.4082571372571240, -162.4938607625641000 63.4093979704400100, -162.4931299195101500 63.4105255853875200, -162.4922899698062200 63.4116378345185000, -162.4913425016551000 63.4127325972316400, -162.4902893083049000 63.4138077888983960, -162.4899395331828800 63.4141263170759540, -162.4896787765542600 63.4144275935586300, -162.4886255211508500 63.4155027852253850, -162.4880340478330300 63.4160413882995040, -162.4879851930621700 63.4160915102151000, -162.4869346814903400 63.4171697811605100, -162.4857776227390800 63.4182233513266740, -162.4845190143410000 63.4192532936047000, -162.4831612466941500 63.4202576438752300, -162.4828487925377000 63.4204675105672200, -162.4819706351366600 63.4213637731197100, -162.4808134073128700 63.4224173423864950, -162.4795546163524300 63.4234472837652000, -162.4784559910511000 63.4242673044925600, -162.4772929590028200 63.4250693109000300, -162.4760669870018100 63.4258522894516550, -162.4747796200833800 63.4266152490945400, -162.4740019007671000 63.4270595051920600, -162.4728671604910300 63.4276864981334260, -162.4723787989424000 63.4283328031164050, -162.4714307813055000 63.4294275640309000, -162.4703769764163000 63.4305027538990200, -162.4692193798704500 63.4315563222664900, -162.4688630729724300 63.4318477592667600, -162.4680482836013800 63.4327885580455600, -162.4669943555050800 63.4338637470143600, -162.4658366249602500 63.4349173153818800, -162.4645772854133600 63.4359472549618900, -162.4632187290610800 63.4369516034337800, -162.4617635342596600 63.4379284452415960, -162.4602144655251300 63.4388759178893340, -162.4585744672378400 63.4397922164376950, -162.4579777850467200 63.4401061481802340, -162.4556172742178100 63.4413288952123900, -162.4540173092513800 63.4421250137584140, -162.4533946987063500 63.4424110368399300, -162.4530676449558000 63.4427885389599740, -162.4520133499361200 63.4438637261301300, -162.4514245107325500 63.4443993992129550, -162.4513729139288000 63.4444522829465400, -162.4503215174240700 63.4455307229645200, -162.4491633165338000 63.4465842904327250, -162.4479034661720000 63.4476142282140900, -162.4465443576359600 63.4486185748873500, -162.4460053192900400 63.4489802723217600, -162.4458846554524600 63.4490748792023850, -162.4446310068154800 63.4501142229930800, -162.4432717795689300 63.4511185696663350, -162.4418158671085500 63.4520954096754500, -162.4404766857504000 63.4529141012048400, -162.4403358249383300 63.4530577076471300, -162.4391773200772200 63.4541112733166400, -162.4379171396642200 63.4551412110980660, -162.4365576749966600 63.4561455568720000, -162.4351015062295000 63.4571223968811750, -162.4335514014759700 63.4580698677302700, -162.4319103060158000 63.4589861635806200, -162.4303772218313000 63.4597732925034850, -162.4262667822861500 63.4618025668350500, -162.4248711756642000 63.4624684185827160, -162.4234258365331000 63.4631126991917540, -162.4219324268400000 63.4637346658222440, -162.4208593818549700 63.4641520591702600, -162.4201983576680600 63.4645953772749200, -162.4186478491189000 63.4655428481240200, -162.4170063255814400 63.4664591430750400, -162.4163581482099500 63.4667857192855540, -162.4149952841050600 63.4677845288330200, -162.4135385253826200 63.4687613670435000, -162.4119877911036600 63.4697088360939600, -162.4103460292458300 63.4706251310450400, -162.4086994479211500 63.4714678110906900, -162.4044499929727600 63.4735531248768440, -162.4030789765135400 63.4742037816792500, -162.4016603301600700 63.4748337010145200, -162.4001956187328000 63.4754421868075300, -162.3986864592126800 63.4760285654659800, -162.3966395185988700 63.4767640751020400, -162.3953183488626700 63.4771995268367300, -162.3936641035155300 63.4781251108852300, -162.3916986648614800 63.4791228016760000, -162.3908927500003800 63.4795120498412760, -162.3895923060400700 63.4801207388810550, -162.3882498682368000 63.4807109342622800, -162.3868667496007800 63.4812820568215000, -162.3854443027123600 63.4818335480798600, -162.3833969484104200 63.4825690577159200, -162.3812796781146200 63.4832639108008700, -162.3790965261837000 63.4839167808348200, -162.3768516546800800 63.4845264231559550, -162.3748949664295400 63.4850068194092500, -162.3739248101818200 63.4854500610715040, -162.3722187845692000 63.4861709468318050, -162.3704511014371400 63.4868615317343500, -162.3684033865070500 63.4875970413704100, -162.3662857447912700 63.4882918935560950, -162.3641022097491500 63.4889447635900400, -162.3618569443425000 63.4895544059111800, -162.3610813222451800 63.4897447986835460, -162.3601005881715800 63.4900970334513800, -162.3588924596192800 63.4904806563572500, -162.3572032935970800 63.4911800923874240, -162.3554578632897300 63.4918615158962900, -162.3534097913287700 63.4925970246330300, -162.3524777987114200 63.4929027815381900, -162.3519380454044400 63.4931651731342900, -162.3503818837169200 63.4938679582397200, -162.3487689334395000 63.4945447079719540, -162.3471013718308000 63.4951945050224250, -162.3461177716178300 63.4955476966688900, -162.3463249646253800 63.4957009204611600, -162.3468313872586700 63.4961126022148500, -162.3469143605093000 63.4961711246976960, -162.3483803507725400 63.4971415633325500, -162.3497454209144200 63.4981449243488200, -162.3510113363041000 63.4991739250366440, -162.3521756813625800 63.5002266084712800, -162.3532362302677800 63.5013009745603650, -162.3541909541491700 63.5023949782457200, -162.3550380255843800 63.5035065420933050, -162.3557758221964200 63.5046335499984000, -162.3564029257544000 63.5057738579772000, -162.3569181311668000 63.5069252986636460, -162.3573204437834400 63.5080856804098600, -162.3576090856907000 63.5092527962795540, -162.3577834921144400 63.5104244231486600, -162.3578433186142400 63.5115983333964200, -162.3578326004940800 63.5121318678914700, -162.3578107487670000 63.5126485499906700, -162.3583890002521500 63.5126429202346100, -162.3586671084003000 63.5126432062190250, -162.3720714756180700 63.5126701804845200, -162.3746335227188800 63.5126995325574600, -162.3771904697643400 63.5127774633093600, -162.3797377050310300 63.5129038306473000, -162.3822706347819500 63.5130784088415200, -162.3848494974063500 63.5133072746110660, -162.3874035998962000 63.5135861139081040, -162.3899280922076700 63.5139143961325200, -162.3924181809542500 63.5142914980542600, -162.3948691375006800 63.5147167038128940, -162.3972763060566500 63.5151892067165700, -162.3996351153682600 63.5157081101412500, -162.4019410823150600 63.5162724266312500, -162.4038653814821500 63.5168114317022500, -162.4041877785431000 63.5168903912785940, -162.4062197103713200 63.5173471146776500, -162.4085258095184700 63.5179114320669700, -162.4100139995464000 63.5183142123310600, -162.4115021904736700 63.5179114320669700, -162.4138082896208500 63.5173471146776500, -162.4161672338307500 63.5168282121523500, -162.4185745399830000 63.5163557092486140, -162.4210256368236600 63.5159305034899800, -162.4235158685624500 63.5155534015683000, -162.4260405056648000 63.5152251193438250, -162.4285947547441000 63.5149462809461600, -162.4311737657566500 63.5147174151766200, -162.4337726427932000 63.5145389555084400, -162.4363864512736800 63.5144112427846600, -162.4390102305377000 63.5143345171243250, -162.4416402034326300 63.5143089260161560, -162.4467487969194200 63.5143089260161560, -162.4493787698143600 63.5143345171243250, -162.4520025490783400 63.5144112427846600, -162.4546163575588200 63.5145389555084400, -162.4572152345953700 63.5147174151766200, -162.4597942456079200 63.5149462809461600, -162.4623484946872600 63.5152251193438250, -162.4648731317895700 63.5155534015683000, -162.4673633635283600 63.5159305034899800, -162.4684165002212800 63.5161131971663600, -162.4694696369142000 63.5159305034899800, -162.4719598686530000 63.5155534015683000, -162.4744845057553000 63.5152251193438250, -162.4770387548346400 63.5149462809461600, -162.4796177658472000 63.5147174151766200, -162.4822166428837400 63.5145389555084400, -162.4848304513642200 63.5144112427846600, -162.4874542306282000 63.5143345171243250, -162.4900830002302400 63.5143089260161560, -162.4906558099176600 63.5143101410002400, -162.4927776397762200 63.5143190901539500, -162.4928634449919700 63.5143098280361760, -162.4952705793737000 63.5138277014872900, -162.4977214594777300 63.5134024948293360, -162.5002114708826500 63.5130253929075900, -162.5027358849531000 63.5126971106831800, -162.5052899083026000 63.5124182722855150, -162.5078686908873400 63.5121894056166500, -162.5104673376974300 63.5120109468477950, -162.5130809159515000 63.5118832332246940, -162.5142068194891000 63.5118503063466160, -162.5150939305404400 63.5115327116653800, -162.5172150238542500 63.5108389152837840, -162.5194017568855400 63.5101870668796660, -162.5216499729678500 63.5095784066182300, -162.5239554003214300 63.5090140883295900, -162.5263136565499700 63.5084951858042360, -162.5287202612310300 63.5080226820012400, -162.5311706440100000 63.5075974753432900, -162.5336601499959000 63.5072203725222300, -162.5361840514527800 63.5068920902978100, -162.5387375558934500 63.5066132510007700, -162.5413158150727800 63.5063843843319100, -162.5437261168667600 63.5062170942435400, -162.5461495784402600 63.5060934806296600, -162.5485822400782800 63.5060137467370960, -162.5510201249787500 63.5059780229674400, -162.5559874457639800 63.5059500486558500, -162.5567499998126000 63.5059478947795800, -162.5593780004943000 63.5059734858876940, -162.5620010126365900 63.5060502115480860, -162.5636681578591800 63.5061445081625500, -162.5647770543175700 63.5061081908403900, -162.5657307116030400 63.5060753449013200, -162.5674000232924000 63.5060307232393500, -162.5677989508608600 63.5060239522436500, -162.5694914155963300 63.5060017245999700, -162.5700279412364800 63.5059968952405700, -162.5717219995706000 63.5059758951715000, -162.5743500029502400 63.5060014862796150, -162.5769730177905200 63.5060782119400100, -162.5795860645452300 63.5062059255630500, -162.5821841843526000 63.5063843843319100, -162.5847624435319300 63.5066132510007700, -162.5873159479726000 63.5068920902978100, -162.5891086736263600 63.5071252692158600, -162.5910322245575000 63.5067914723486500, -162.5935216603962800 63.5064143695275900, -162.5960454908067200 63.5060860873031200, -162.5985989233016400 63.5058072480061360, -162.6011771096358700 63.5055783813372700, -162.6037751556988600 63.5053999216690950, -162.6063881296084600 63.5052722080459940, -162.6090110707043300 63.5051954832849800, -162.6116400669355000 63.5051698921768660, -162.6142669281761600 63.5051826877308940, -162.6184423985977800 63.5051698921768660, -162.6210719290262700 63.5051954832849800, -162.6236948701221400 63.5052722080459940, -162.6263078440317400 63.5053999216690950, -162.6289058900947300 63.5055783813372700, -162.6314840764289600 63.5058072480061360, -162.6340375089238800 63.5060860873031200, -162.6365613393343200 63.5064143695275900, -162.6390507751731000 63.5067914723486500, -162.6415010887042500 63.5072166790066000, -162.6439076259361500 63.5076891828096000, -162.6462658156148700 63.5082080862342200, -162.6485711773179600 63.5087724036235950, -162.6508193304477200 63.5093810647843500, -162.6530060023251300 63.5100329122891500, -162.6551270353843400 63.5107267095700650, -162.6571783961660200 63.5114611382210200, -162.6590044372050000 63.5121729938886100, -162.6607649959078000 63.5129170470841000, -162.6624572223229300 63.5136920972125840, -162.6640783807126800 63.5144968933170160, -162.6648845491825700 63.5149136382538600, -162.6654178831287800 63.5151931655321960, -162.6670652639507500 63.5161083759009000, -162.6686217826691000 63.5170547864493100, -162.6700844715211000 63.5180305976340400, -162.6714505399104700 63.5190339559523500, -162.6717559191003500 63.5192820006638500, -162.6720428406045800 63.5194413830134860, -162.6735995400866800 63.5203877926625750, -162.6750623998099000 63.5213636029479860, -162.6764286282785600 63.5223669603669800, -162.6776956192574000 63.5233959565582040, -162.6788609535701400 63.5244486363955050, -162.6798018800527000 63.5254010094490700, -162.6799256663364000 63.5255193845120500, -162.6805310341798600 63.5260596378420800, -162.6815925444603300 63.5271339994345700, -162.6820398285752000 63.5276460698103200, -162.6843519963475200 63.5276685681499800, -162.6869769995888400 63.5277452929109900, -162.6895920284493000 63.5278730065340940, -162.6921921186713000 63.5280514653029500, -162.6947723329767500 63.5282803301731750, -162.6973277736578000 63.5285591685708400, -162.6998535897713200 63.5288874498959300, -162.7023449834342200 63.5292645509183560, -162.7047972242125000 63.5296897557776700, -162.7072056554166300 63.5301622577820240, -162.7095657003967200 63.5306811585087400, -162.7118728760323700 63.5312454749987400, -162.7141227990279300 63.5318541325622160, -162.7163111913084000 63.5325059782683200, -162.7184338935093400 63.5331997728512760, -162.7204868694734300 63.5339341979049550, -162.7221495810383000 63.5345794668689340, -162.7237584358031500 63.5352513917383700, -162.7253112870862000 63.5359490794865000, -162.7268060610508400 63.5366715993149000, -162.7296401170977000 63.5380923986453500, -162.7300513554856400 63.5382267861373300, -162.7321046929771700 63.5389612111910100, -162.7343035317825300 63.5398247977762500, -162.7364059416808300 63.5407349665455300, -162.7373229650827400 63.5411516916972800, -162.7389260506966500 63.5419089118668700, -162.7404623454608600 63.5426932223144260, -162.7421113144855600 63.5436084290857900, -162.7436693341724000 63.5445548351376000, -162.7451334331613900 63.5455306418257350, -162.7465008208561700 63.5465339956474500, -162.7477688865248500 63.5475629882413950, -162.7489352082932000 63.5486156635820400, -162.7499975594397800 63.5496900206779860, -162.7509539056981700 63.5507840171687200, -162.7518024187466000 63.5518955720231100, -162.7525414699128700 63.5530225718342760, -162.7531696418654400 63.5541628717192000, -162.7536857250161700 63.5553143043117640, -162.7540887256141700 63.5564746779640500, -162.7542201966047600 63.5570053625075400, -162.7546741833668300 63.5572351824577600, -162.7551600187198600 63.5573938399538200, -162.7572147366707300 63.5581282623095400, -162.7585056559112500 63.5586246440121840, -162.7597646672056000 63.5591370705194550, -162.7609907687089800 63.5596651344384300, -162.7621829810597000 63.5602084148865200, -162.7630720436398800 63.5606251454341900, -162.7643320163094800 63.5612342076925640, -162.7655493925903700 63.5618602635403800, -162.7671994713784600 63.5627754676137900, -162.7687585387755300 63.5637218700683200, -162.7702236234214600 63.5646976740584900, -162.7715919311226900 63.5657010242828700, -162.7728608502480000 63.5667300141788600, -162.7740279580238200 63.5677826859222800, -162.7750910241314300 63.5688570403202100, -162.7760480152037000 63.5699510332136700, -162.7768970993216400 63.5710625844707240, -162.7776366496116500 63.5721895806846650, -162.7782652460442400 63.5733298778716300, -162.7787816781319000 63.5744813068668600, -162.7791849512245000 63.5756416778212400, -162.7794742847104300 63.5768087811004000, -162.7796491120168700 63.5779803971776700, -162.7797090869048000 63.5791542957342100, -162.7796955557053000 63.5797498996382160, -162.7795356733326200 63.5831109664979400, -162.7794430809334200 63.5841354408979100, -162.7792629485262200 63.5851575995436600, -162.7789955279212400 63.5861759603523640, -162.7786411995317000 63.5871890430399840, -162.7781293036244400 63.5883408938172500, -162.7775050473200600 63.5894817009198050, -162.7767696060324700 63.5906092897869260, -162.7759243692142400 63.5917215128375800, -162.7749709340613400 63.5928162512690300, -162.7739111037144300 63.5938914186540960, -162.7727468881583400 63.5949449663372100, -162.7714804925306900 63.5959748861321260, -162.7701143216186200 63.5969792148189900, -162.7686509681676000 63.5979560386403500, -162.7670932128814300 63.5989034933016340, -162.7654440172276000 63.5998197747628640, -162.7642714973317200 63.6004243592968240, -162.7634936260300000 63.6008136029654450, -162.7620093291671700 63.6015297573924300, -162.7604676960273200 63.6022215033197540, -162.7588707491857000 63.6028879315328500, -162.7572205813647200 63.6035281669913960, -162.7551644865518000 63.6042636667348800, -162.7530381771701000 63.6049585108266900, -162.7508457037661700 63.6056113727667000, -162.7485912463888800 63.6062210069939060, -162.7462791028982600 63.6067862515843100, -162.7443240640043300 63.6072158487324940, -162.7435506668297800 63.6077841887893100, -162.7420867593964100 63.6087610108120300, -162.7405284132556500 63.6097084654733750, -162.7388785925729700 63.6106247451359100, -162.7377132276833000 63.6112255264369540, -162.7369353563815700 63.6116147701056300, -162.7354488256028000 63.6123319686454900, -162.7339047795818800 63.6130246975318400, -162.7323052471893700 63.6136920457513500, -162.7306523328388700 63.6143331328678400, -162.7285954583137200 63.6150686317120600, -162.7264683413408500 63.6157634749045000, -162.7242750369633500 63.6164163368445100, -162.7220197234314600 63.6170259701724500, -162.7197067022025300 63.6175912138634800, -162.7173403835518300 63.6181109878318700, -162.7167884507264000 63.6182191555896000, -162.7156546421480000 63.6186941568099660, -162.7139372023400000 63.6193611174217040, -162.7130729772361000 63.6196700930004200, -162.7127352260498000 63.6202866547054100, -162.7119989924595000 63.6214142390759300, -162.7111528437287400 63.6225264585293100, -162.7101983788520800 63.6236211924641000, -162.7091374045675400 63.6246963553525700, -162.7079719308598800 63.6257498994383500, -162.7067041664640800 63.6267798156360400, -162.7053365188652400 63.6277841407255660, -162.7038715835067500 63.6287609609496500, -162.7023121437903800 63.6297084129129760, -162.7006611638816000 63.6306246907769260, -162.6993985669902500 63.6312735669216100, -162.6980900399234000 63.6319041994192960, -162.6972560940934300 63.6322934520812300, -162.6960836506399300 63.6328257239280800, -162.6948784790585300 63.6333433476174260, -162.6936415029529700 63.6338459247496640, -162.6923736711080200 63.6343330713142450, -162.6903153504730000 63.6350685683597700, -162.6881867388269100 63.6357634097536200, -162.6859918921121000 63.6364162698949940, -162.6837349930754300 63.6370259023236140, -162.6814203458722300 63.6375911451153200, -162.6790523625764400 63.6381109181843950, -162.6766355613820300 63.6385842295786100, -162.6741745504151300 63.6390101772778960, -162.6736027605589400 63.6390965607577100, -162.6727789707728700 63.6395210497566950, -162.6702793878834300 63.6407718322543000, -162.6687870016188000 63.6414917359549000, -162.6672366306659400 63.6421870144192200, -162.6656303272777400 63.6428567458422100, -162.6639702174515500 63.6435000425929600, -162.6619112331168800 63.6442355396384900, -162.6597819352880700 63.6449303801330200, -162.6575863808068000 63.6455832393750700, -162.6553287542186000 63.6461928718036350, -162.6530133605781000 63.6467581127967040, -162.6506446146572000 63.6472778858657760, -162.6482270328512500 63.6477511972599900, -162.6457652286823400 63.6481771440600140, -162.6432638984101700 63.6485549141780200, -162.6407278138375100 63.6488837854583950, -162.6381618160149600 63.6491631301743700, -162.6355708008517500 63.6493924168266300, -162.6331832644960400 63.6495579244586900, -162.6307827491245300 63.6496809220369640, -162.6283730885471600 63.6497612153078760, -162.6276257932957000 63.6497738813595800, -162.6253602211972000 63.6503868574675400, -162.6233070860531600 63.6508880010804300, -162.6222781483178600 63.6514586326098900, -162.6205875298905700 63.6523176560350500, -162.6164210580853400 63.6543459456089500, -162.6150488158501400 63.6549921273848440, -162.6136292593827800 63.6556178163092450, -162.6121639346178500 63.6562223270987600, -162.6106544405499500 63.6568050005503800, -162.6085944930413800 63.6575404957973200, -162.6064641978644000 63.6582353353924760, -162.6042676154580700 63.6588881946345300, -162.6020089321664600 63.6594978252644500, -162.5996924548428800 63.6600630662575800, -162.5973225991586000 63.6605828384273300, -162.5968028665590200 63.6606845436568300, -162.5959253602671300 63.6610582371479840, -162.5939393325341500 63.6618329851042400, -162.5918790208001500 63.6625684803511260, -162.5897483488072300 63.6632633199463400, -162.5875513778937600 63.6639161782890700, -162.5852922953031600 63.6645258089189950, -162.5829754069894200 63.6650910499120640, -162.5806051322210500 63.6656108211825000, -162.5781859909906800 63.6660841316773940, -162.5757225977196800 63.6665100775780960, -162.5732196522651200 63.6668878467967260, -162.5706819309263600 63.6672167180771600, -162.5681142765526000 63.6674960627931340, -162.5655215886503700 63.6677253485460700, -162.5629092010987300 63.6679041139837500, -162.5602817202252000 63.6680320578332700, -162.5576441597501400 63.6681089327810800, -162.5550015531791000 63.6681345949356800, -162.5517204468411300 63.6681345949356800, -162.5490778402701000 63.6681089327810800, -162.5464402797950400 63.6680320578332700, -162.5438127989215000 63.6679041139837500, -162.5412004113698600 63.6677253485460700, -162.5386077234676300 63.6674960627931340, -162.5360400690938700 63.6672167180771600, -162.5335023477551000 63.6668878467967260, -162.5309994023005500 63.6665100775780960, -162.5285360090295500 63.6660841316773940, -162.5261168677991700 63.6656108211825000, -162.5237465930308000 63.6650910499120640, -162.5214297047170600 63.6645258089189950, -162.5199755953973700 63.6641334068313000, -162.5176809086469800 63.6638837289509640, -162.5151434849838000 63.6635548585699100, -162.5126408336075500 63.6631770893512200, -162.5101777299182700 63.6627511425512600, -162.5077588719743500 63.6622778320563600, -162.5053888750965000 63.6617580607859300, -162.5030722592773000 63.6611928197928600, -162.5008134410874200 63.6605831882635600, -162.4986167282793600 63.6599303299208260, -162.4964863062979800 63.6592354903256700, -162.4944262355822700 63.6584999950787850, -162.4927622910468600 63.6578555103236000, -162.4911523804779600 63.6571844973667000, -162.4900416601944400 63.6566864833945400, -162.4881335605153700 63.6562208369221600, -162.4858751380271800 63.6556112053928600, -162.4846379631714200 63.6552502777781800, -162.4822028095120200 63.6564879778379700, -162.4806587401087400 63.6572400152146000, -162.4790516857866300 63.6579655504698400, -162.4773839452128600 63.6586635430880960, -162.4756579060874600 63.6593329930232700, -162.4735977751172000 63.6600684882701560, -162.4714672901832600 63.6607633278653700, -162.4692705126240400 63.6614161862081000, -162.4670116287836000 63.6620258177373440, -162.4646949446159900 63.6625910578310940, -162.4623248784903400 63.6631108300008460, -162.4599059494999600 63.6635841404957400, -162.4574427729655800 63.6640100863964450, -162.4549400487442200 63.6643878556150750, -162.4524025504373000 63.6647167268955060, -162.4498351217934000 63.6649960716114800, -162.4472426623189800 63.6652253573644200, -162.4448197907007600 63.6653929082561940, -162.4423836181094600 63.6655167314120800, -162.4399381447295800 63.6655966235853700, -162.4374873887319700 63.6656324543743040, -162.4343648013944500 63.6656434521836450, -162.4324826201767600 63.6656571623482250, -162.4317219996705100 63.6656626032465740, -162.4290792339194800 63.6656369644744000, -162.4264415124658000 63.6655600958218300, -162.4238138715129200 63.6654321456770160, -162.4212013265799300 63.6652533568569650, -162.4186088644075300 63.6650240711040300, -162.4160415032127700 63.6647423593724400, -162.4159706851989400 63.6647355569004960, -162.4147196724749000 63.6646990992840640, -162.4120921115616600 63.6645711482399300, -162.4094796457690000 63.6643923594198800, -162.4068872627369400 63.6641630745663200, -162.4043199087367700 63.6638837289509640, -162.4017824850736000 63.6635548585699100, -162.3992798336973400 63.6631770893512200, -162.3968926885467000 63.6627564566452400, -162.3968177588324700 63.6627443256901400, -162.3965049215648500 63.6626901289463400, -162.3943914221264000 63.6623710926518800, -162.3919283876849000 63.6619451458518600, -162.3909474764448600 63.6617531999502800, -162.3893370505644000 63.6615100961141140, -162.3868845804590000 63.6610835089967960, -162.3843926373103300 63.6607050985614900, -162.3819297476597000 63.6602791517614700, -162.3795111010564400 63.6598058412666300, -162.3771413101233300 63.6592860690968800, -162.3748248957523000 63.6587208281038100, -162.3725662745139300 63.6581111965745100, -162.3703697514628200 63.6574583382317800, -162.3682395156411000 63.6567634986366200, -162.3661796238905000 63.6560280024903600, -162.3647597274794200 63.6554809997484200, -162.3633787609210500 63.6549146714749550, -162.3620380543127300 63.6543295653572160, -162.3607412463114500 63.6537126664064800, -162.3605881996856500 63.6536597637871200, -162.3602403715958400 63.6536240885809000, -162.3595946475749000 63.6535864006918900, -162.3570032501998000 63.6533571149389560, -162.3544368728633700 63.6530777702229800, -162.3519004150720700 63.6527488989426050, -162.3493987151785200 63.6523711288246000, -162.3469365476835000 63.6519451820245760, -162.3445186097460200 63.6514718706303600, -162.3421495139888600 63.6509520984606100, -162.3398337786059600 63.6503868574675400, -162.3375758192686000 63.6497772250389740, -162.3353799410314200 63.6491243666962400, -162.3332503284398700 63.6484295262017100, -162.3311910410337000 63.6476940291561850, -162.3299016344528500 63.6471985944396600, -162.3286441574019200 63.6466872138439040, -162.3274196063297300 63.6461602920638800, -162.3262289525041200 63.6456182490829860, -162.3253400140304000 63.6452019789882100, -162.3240708763698300 63.6445889057534400, -162.3228450923271300 63.6439586536689600, -162.3211933390013500 63.6430423767043860, -162.3196331690354800 63.6420949265397000, -162.3181675474942800 63.6411181081142560, -162.3167992586788300 63.6401137848233700, -162.3155309016297800 63.6390838704243150, -162.3143648820336600 63.6380303281371800, -162.3133034113233500 63.6369551661480300, -162.3123485003829700 63.6358604340118750, -162.3115019559505000 63.6347482172564600, -162.3107653788191600 63.6336206346845760, -162.3101401584415300 63.6324798347766300, -162.3096274720301700 63.6313279911938700, -162.3092282836583400 63.6301672955842700, -162.3089433379646500 63.6289999611793200, -162.3087731646498000 63.6278282084051600, -162.3087180730805700 63.6266542693790600, -162.3087199041002600 63.6257932692440140, -162.3087799824102400 63.6246193787813500, -162.3089551019963300 63.6234477707980660, -162.3092449139216200 63.6222806747134100, -162.3096488525125000 63.6211203127522800, -162.3101661362581500 63.6199688909516100, -162.3107833220926200 63.6188511424663260, -162.3101732292111300 63.6184188338621650, -162.3089058371346600 63.6173889167651500, -162.3077407051693800 63.6163353717800500, -162.3071883865348000 63.6157862556312350, -162.3069852476710000 63.6157138997767200, -162.3048495772461600 63.6150406322194600, -162.3027927045196700 63.6143051333752400, -162.3011474946611000 63.6136671444232300, -162.2995551523483800 63.6130031380844200, -162.2980177523173800 63.6123139822045700, -162.2965372955597200 63.6116005761057860, -162.2958144133045000 63.6112393499161040, -162.2946214068524300 63.6106247451359100, -162.2929715861697300 63.6097084654733750, -162.2914132400290000 63.6087610108120300, -162.2899493325956000 63.6077841887893100, -162.2885826436740300 63.6067798610018260, -162.2873157687077400 63.6057499421061700, -162.2861511124838200 63.6046963962217550, -162.2850908810393000 63.6036212297360100, -162.2841370843589200 63.6025264931032550, -162.2832915282813800 63.6014142718512400, -162.2825558100026000 63.6002866847827600, -162.2819313180758300 63.5991458794787800, -162.2814192279150000 63.5979940305001600, -162.2810641189139200 63.5969788326070800, -162.2807963142984400 63.5959583395058400, -162.2806161953810700 63.5949340377756600, -162.2805240166700000 63.5939074202912600, -162.2804446074326600 63.5922133862388250, -162.2804314719348600 63.5916262890220900, -162.2804914747017600 63.5904523922641260, -162.2806663802492200 63.5892807779855500, -162.2809558405395800 63.5881136765050300, -162.2813592916979200 63.5869533082486100, -162.2818759522134000 63.5858018810520200, -162.2825048238385000 63.5846615865630160, -162.2832446987838000 63.5835345921477700, -162.2840941561203700 63.5824230426893000, -162.2850515680753700 63.5813290515945400, -162.2861151000318200 63.5802546998945700, -162.2872827195218700 63.5792020299497800, -162.2885521953275300 63.5781730427517600, -162.2899211019772600 63.5771696943259600, -162.2908033153207200 63.5765823641847900, -162.2907764264908500 63.5764720065778900, -162.2906065607441500 63.5753002457098550, -162.2905515645030600 63.5741262976905550, -162.2906115294984500 63.5729523982346340, -162.2906416612836200 63.5727504320868200, -162.2896187310196000 63.5721815650272800, -162.2880624335344600 63.5712341067686600, -162.2866004497509200 63.5702572802493360, -162.2852355567755000 63.5692529479652500, -162.2849056962408600 63.5689844301873560, -162.2833610000101000 63.5689959684892200, -162.2810539071121000 63.5689735097197400, -162.2806797405775400 63.5690384299796300, -162.2781853521722400 63.5694162027955940, -162.2756563074925700 63.5697450767739300, -162.2730974323006300 63.5700244241878640, -162.2705136099151300 63.5702537126387600, -162.2679097713188700 63.5704325023581300, -162.2652908879640800 63.5705604543015850, -162.2626619573834000 63.5706373238534750, -162.2600279995924700 63.5706629626257040, -162.2573940418015500 63.5706373238534750, -162.2547651112208800 63.5705604543015850, -162.2521462278661000 63.5704325023581300, -162.2495423892698300 63.5702537126387600, -162.2469585668843300 63.5700244241878640, -162.2443996916924000 63.5697450767739300, -162.2418706470127200 63.5694162027955940, -162.2393762586074200 63.5690384299796300, -162.2369212874874000 63.5686124795823300, -162.2359684890545000 63.5684296644975000, -162.2353753178166500 63.5683854304433000, -162.2328165892142000 63.5681060830293600, -162.2302876902246900 63.5677772090510300, -162.2277934457109200 63.5673994362350640, -162.2253386148851500 63.5669734858377640, -162.2229276943576000 63.5665014074140800, -162.2227953384340800 63.5664768568215660, -162.2203393582747400 63.5660564885162100, -162.2179287030472000 63.5655831735247150, -162.2155667416118000 63.5650633968583100, -162.2149679433159000 63.5649167947743200, -162.2144902962901000 63.5648444452150440, -162.2120356857982400 63.5644184948177440, -162.2096251681669500 63.5639451789269300, -162.2072633425292200 63.5634254022605800, -162.2049547135891300 63.5628601558715300, -162.2027036817295000 63.5622505180470500, -162.2005145403137500 63.5615976534090240, -162.1983914612968600 63.5609028057199900, -162.1963384907287500 63.5601673023791700, -162.1947978207628000 63.5595700805948240, -162.1943429121956200 63.5593813119979800, -162.1938986291184200 63.5594207526656300, -162.1912963607384200 63.5595995091101140, -162.1886790583918000 63.5597274493623560, -162.1860517151145300 63.5598043297060800, -162.1834193455263500 63.5598300035518950, -162.1784416546586000 63.5598300035518950, -162.1758092850704100 63.5598043297060800, -162.1731819417931600 63.5597274493623560, -162.1705646394465200 63.5595995091101140, -162.1679623710665500 63.5594207526656300, -162.1653795298414000 63.5591914642147340, -162.1628216259172700 63.5589121168008000, -162.1602935417135400 63.5585832419231450, -162.1578001011937000 63.5582054691071800, -162.1553460608719800 63.5577795178105600, -162.1529361053169700 63.5573062019197440, -162.1505748291650000 63.5567864252533900, -162.1482667362208800 63.5562211779650300, -162.1475413205754400 63.5560246707020700, -162.1453540686353300 63.5558304773946900, -162.1427964659840800 63.5555511290813800, -162.1402686794559700 63.5552222551030500, -162.1377755321150900 63.5548444813877600, -162.1353217813750700 63.5544185300911400, -162.1329121091065000 63.5539452142003260, -162.1305511108450600 63.5534254366346540, -162.1282432903955200 63.5528601902456100, -162.1259930472413000 63.5522505515218100, -162.1238046729472700 63.5515976859844600, -162.1216823376697000 63.5509028382954300, -162.1196300847606000 63.5501673340552900, -162.1180556884192500 63.5495563517442860, -162.1165296720067200 63.5489214366750160, -162.1150538611467500 63.5482633487745800, -162.1136300212084800 63.5475828767484360, -162.1111023866657800 63.5463320906534900, -162.1096719519989600 63.5455979246045800, -162.1080258850865000 63.5446816377474300, -162.1064710858718700 63.5437341767909060, -162.1050105077287000 63.5427573466742500, -162.1044303955463000 63.5423300697769400, -162.1034138720525300 63.5423300697769400, -162.1007833119003000 63.5423043851393460, -162.0992499938920700 63.5422594846875200, -162.0977149320984000 63.5423044193135500, -162.0950837846888800 63.5423300697769400, -162.0934162149863000 63.5423300697769400, -162.0907850675767700 63.5423044193135500, -162.0881589437802000 63.5422275461643800, -162.0858890135670800 63.5421165275557800, -162.0836186651692400 63.5422275614528760, -162.0809923444211300 63.5423044310047660, -162.0783610000600800 63.5423300697769400, -162.0772278848589800 63.5423253177592640, -162.0738917454077000 63.5422972903876940, -162.0715455221081200 63.5422571446515600, -162.0692045895201500 63.5421762587274100, -162.0668725035631600 63.5420547549230700, -162.0645528066666500 63.5418928184988100, -162.0619715509462800 63.5416635300479100, -162.0594152172384700 63.5413841817346600, -162.0568886843652800 63.5410553059576840, -162.0543967744915200 63.5406775322424000, -162.0519442405342500 63.5402515809457800, -162.0495357634647000 63.5397782641556400, -162.0471759370198600 63.5392584856905960, -162.0448692605079400 63.5386932375029700, -162.0426201334123800 63.5380835987791100, -162.0404328446000800 63.5374307323425000, -162.0383115606299800 63.5367358828547700, -162.0362603266527200 63.5360003777153100, -162.0343764052469000 63.5352637619131400, -162.0325627487718200 63.5344928513640640, -162.0308224859689000 63.5336889770646850, -162.0291586178758800 63.5328535302662660, -162.0267701651110000 63.5316027693523900, -162.0264448740316800 63.5314309637680000, -162.0247996237036400 63.5305146751122150, -162.0232455934093700 63.5295672123569940, -162.0217857392204600 63.5285903804417560, -162.0204228346460700 63.5275860436610200, -162.0199935864348500 63.5272361111576600, -162.0193223513454000 63.5272626024871560, -162.0172410269518000 63.5273124312237800, -162.0155724599010800 63.5273394558512340, -162.0133889995027000 63.5273571257308160, -162.0107590347016600 63.5273314869585900, -162.0081340899163000 63.5272546174067000, -162.0055191761690000 63.5271266645639800, -162.0029192855965300 63.5269478739452900, -162.0003393797585400 63.5267185845950700, -161.9977843833425800 63.5264392362817600, -161.9952591724728000 63.5261103605047900, -161.9927685657167200 63.5257325858901800, -161.9903173150920000 63.5253066336942400, -161.9879100970733000 63.5248333169041100, -161.9855515035989700 63.5243135375398000, -161.9832460339772500 63.5237482884527900, -161.9809980831949500 63.5231386488296150, -161.9788119374209400 63.5224857805943660, -161.9766917632142600 63.5217909311066360, -161.9746416003295600 63.5210554241685400, -161.9728325187057600 63.5203488843935700, -161.9710880524716300 63.5196106848852650, -161.9694109751363600 63.5188420010575800, -161.9678039540892000 63.5180440586864300, -161.9665738407101400 63.5174046542014700, -161.9652805103872000 63.5171195628176400, -161.9629756208282200 63.5165543137306400, -161.9607469551078500 63.5159497507804100, -161.9586149638095000 63.5153139085101100, -161.9585427887187000 63.5152913481172700, -161.9565281202765000 63.5146321738358200, -161.9564232422388000 63.5145962711010840, -161.9545087663664400 63.5139110686409400, -161.9543733275670000 63.5138615123989300, -161.9528740030327800 63.5132879850525000, -161.9527405130641900 63.5132368469030000, -161.9523922694876300 63.5131002875483000, -161.9507594729712700 63.5124756895015140, -161.9488614268133800 63.5116631529322150, -161.9470446541874000 63.5108143916709200, -161.9453126129866700 63.5099310235979150, -161.9436685974278000 63.5090147322441700, -161.9421157353528700 63.5080672667909900, -161.9406569774375300 63.5070904330770500, -161.9392950944930000 63.5060860935984100, -161.9380326738687800 63.5050561630115450, -161.9368721104595000 63.5040026036372750, -161.9358156049062200 63.5029274236617300, -161.9348651590998000 63.5018326735391300, -161.9340225707849800 63.5007204378979400, -161.9332894326611600 63.4995928355409660, -161.9326671296842600 63.4984520158479300, -161.9321568327716000 63.4973001506814400, -161.9317158286225700 63.4959867259067300, -161.9314203968338300 63.4946651766566100, -161.9312011232332200 63.4933590840545300, -161.9310735112335400 63.4923404291675400, -161.9310323879343200 63.4913203443584850, -161.9310757370555800 63.4903243083202260, -161.9312015288274700 63.4893296716271040, -161.9314095806875600 63.4883377967519800, -161.9316996003562400 63.4873500425704800, -161.9322589885614400 63.4856842733105960, -161.9325163619405100 63.4849812957502300, -161.9330311698525700 63.4838298514665100, -161.9336577904746300 63.4826895389911100, -161.9343950187151200 63.4815625274887340, -161.9352414390411600 63.4804509609431300, -161.9361954290757500 63.4793569527612360, -161.9371206479994800 63.4784189553705600, -161.9367933208550300 63.4783792116313600, -161.9348570948790000 63.4781124915982700, -161.9329420803127300 63.4778167603352600, -161.9310135408422000 63.4774904449281500, -161.9304926912846600 63.4774055543229600, -161.9285255798915800 63.4771217624594300, -161.9270687995854000 63.4768681869173300, -161.9259306310937300 63.4771477016051900, -161.9235759226906500 63.4776674836675200, -161.9211726706821800 63.4781408031556100, -161.9187254580134500 63.4785667580495100, -161.9162389548638400 63.4789445335634350, -161.9137179033585300 63.4792734111390500, -161.9111671166690800 63.4795527612510000, -161.9085914619264000 63.4797820506012160, -161.9065714946787000 63.4799256615401100, -161.9045417643909000 63.4800384751955560, -161.9025046209914400 63.4801203638637600, -161.9004624216034400 63.4801712304180200, -161.8956519156034000 63.4802543079899800, -161.8933330002177500 63.4802743053149900, -161.8907073611557600 63.4802486656434440, -161.8880867340155300 63.4801717960915540, -161.8854761217256200 63.4800438432488360, -161.8828805074294300 63.4798650508315060, -161.8812284213545400 63.4797240002624800, -161.8795858132346600 63.4795623480239900, -161.8779539673017200 63.4793802200212000, -161.8763341614923400 63.4791777601455500, -161.8752782926590600 63.4790386350250600, -161.8734756600736400 63.4787872871036700, -161.8717654544121600 63.4785123319786100, -161.8716918395067500 63.4785050330808640, -161.8716025530153800 63.4784952619468200, -161.8688148768051000 63.4783693460685200, -161.8658811255135000 63.4781710572485740, -161.8633056155616700 63.4779417669989800, -161.8607549718644200 63.4776624168870850, -161.8582340633513200 63.4773335402107900, -161.8557476995966300 63.4769557637974900, -161.8533006245241700 63.4765298089035900, -161.8508975074140000 63.4760564894155000, -161.8493458432360500 63.4757139538359640, -161.8479380579949500 63.4756150670817200, -161.8453627782695600 63.4753857768321840, -161.8431638603238700 63.4751443358424600, -161.8405445533884000 63.4752206370228600, -161.8379201706793000 63.4752463234590900, -161.8311638285478300 63.4752463234590900, -161.8285394458387100 63.4752206370228600, -161.8259200750513900 63.4751437521824760, -161.8233107146177500 63.4750158146281900, -161.8207163422853500 63.4748370689756000, -161.8181411318077500 63.4746077787260700, -161.8155907857861000 63.4743284286141700, -161.8149548086175000 63.4742454499676100, -161.8141042289270000 63.4743564290060360, -161.8115538802073800 63.4746357791179900, -161.8113193801852000 63.4746566586779300, -161.8109358202319000 63.4748171022275200, -161.8093246694978700 63.4754445673129900, -161.8072777711522000 63.4761800778483700, -161.8051609730004800 63.4768749309333800, -161.8029783085021000 63.4775278018666400, -161.8007339379208800 63.4781374450871000, -161.7984321402310600 63.4787026959726860, -161.7960773050235700 63.4792224780350100, -161.7936739217141000 63.4796957975231100, -161.7912265768450200 63.4801217515176860, -161.7887399378978000 63.4804995279309300, -161.7873924989646400 63.4806752950289000, -161.7865846865340400 63.4808577827604950, -161.7845361505229000 63.4812782391994100, -161.7824537865130000 63.4816640798334800, -161.7813419636606800 63.4818592498045860, -161.7799499947964000 63.4820947444769100, -161.7774631849780000 63.4824725208901550, -161.7749418232065500 63.4828013975665040, -161.7723907226537000 63.4830807476784000, -161.7698147504503400 63.4833100379279360, -161.7672188231901200 63.4834888294460000, -161.7646078970368000 63.4836167822887200, -161.7619869542345200 63.4836936518406100, -161.7593609995104800 63.4837192915121600, -161.7568373426692000 63.4836956114633600, -161.7543389306970600 63.4836052997448500, -161.7540826311085000 63.4836157516656400, -161.7532984582572000 63.4836823320740100, -161.7519901299405000 63.4840264243800300, -161.7510969017006300 63.4842247707566100, -161.7505613653147200 63.4843832591801060, -161.7484488911034000 63.4850979045447160, -161.7462655997776000 63.4857507745786600, -161.7445035670859300 63.4861799373542800, -161.7440123546864000 63.4863341270183800, -161.7439065962124000 63.4863647354442260, -161.7433740536696000 63.4865194925805550, -161.7423265224510000 63.4868480904670500, -161.7417842366531600 63.4870418979653000, -161.7396007969392000 63.4876947679991900, -161.7373556295586400 63.4883044103203250, -161.7350740486284000 63.4888647590015000, -161.7327403259053000 63.4893804653362400, -161.7303588302957600 63.4898505607548000, -161.7279340242358000 63.4902741648209000, -161.7264048556995000 63.4905243849924550, -161.7263170701766000 63.4905387138906000, -161.7238295265114200 63.4909164903038460, -161.7213074210006600 63.4912453669801400, -161.7187555677152500 63.4915247161927700, -161.7161788355847700 63.4917540055429900, -161.7135821421021500 63.4919327979603200, -161.7109704452298300 63.4920607508030340, -161.7083487299099400 63.4921376203549240, -161.7060002610032300 63.4921540968341560, -161.7036442566770800 63.4926674307573650, -161.7012397447184000 63.4931407493461400, -161.6987912496164500 63.4935667033407200, -161.6963034424498700 63.4939444788546440, -161.6937810698404700 63.4942733555309900, -161.6912289467584600 63.4945527056428900, -161.6886519412340700 63.4947819949931040, -161.6860549734582300 63.4949607865111700, -161.6834430004940400 63.4950887393538900, -161.6808210072836400 63.4951656089057800, -161.6781939994534700 63.4951912485773300, -161.6755669916233300 63.4951656089057800, -161.6729449984129300 63.4950887393538900, -161.6703330254487400 63.4949607865111700, -161.6677360576729000 63.4947819949931040, -161.6653603132278400 63.4945725024190900, -161.6644985612595600 63.4944884248010340, -161.6625305748261500 63.4942808693666600, -161.6605793211787000 63.4940438800210800, -161.6586470054549000 63.4937777238629340, -161.6567358103093600 63.4934827030643300, -161.6542873224019800 63.4930567499690700, -161.6518828176379000 63.4925834304809800, -161.6495268825595400 63.4920636502173500, -161.6472240110792300 63.4914983993317040, -161.6449785927878000 63.4908887570105660, -161.6427949102568700 63.4902358869766800, -161.6406771237502400 63.4895410347909900, -161.6404773105794000 63.4894692697910160, -161.6395816802503000 63.4894692697910160, -161.6369555285747600 63.4894436112337500, -161.6343343906196000 63.4893667353865700, -161.6317232702127200 63.4892387888390900, -161.6291271486989300 63.4890600162068500, -161.6265506584860800 63.4888307259573140, -161.6239990453196600 63.4885513767446800, -161.6214771772299000 63.4882225000683900, -161.6189898673884500 63.4878447236551440, -161.6165418624170000 63.4874187696605650, -161.6141378306963000 63.4869454501724700, -161.6117823596681300 63.4864256690094600, -161.6094799414461200 63.4858604181238800, -161.6077950741833000 63.4854028781403500, -161.6062348898282700 63.4853876454235400, -161.6036137923426300 63.4853107758716500, -161.6010027115059000 63.4851828230289360, -161.5984066304616000 63.4850040315109250, -161.5958305062728200 63.4847747412613300, -161.5932792537345500 63.4844953911494400, -161.5907577435749800 63.4841665144731450, -161.5882707862677400 63.4837887389591600, -161.5858231275353000 63.4833627840652640, -161.5834194366576400 63.4828894645771700, -161.5810642992779500 63.4823696834142200, -161.5787622066105200 63.4818044325285800, -161.5772090810342300 63.4813890365748500, -161.5756846339386600 63.4809529382275740, -161.5741902457832000 63.4804965322891800, -161.5739033881308200 63.4804031403926960, -161.5722987637769000 63.4814547788150200, -161.5701058811814300 63.4828165232639800, -161.5687830369076000 63.4836069248197500, -161.5673961707966300 63.4843750933359300, -161.5656656746311600 63.4852584641068900, -161.5638505225835200 63.4861072280662000, -161.5619541698490300 63.4869197664341400, -161.5599802272057000 63.4876945287795140, -161.5582204742954000 63.4883305149413700, -161.5564084195129300 63.4889364709414400, -161.5549358758899200 63.4894098308990350, -161.5524654679069800 63.4901630131126350, -161.5516198434809500 63.4903941748513600, -161.5509669599572000 63.4907927804625300, -161.5493239903099000 63.4917090727155940, -161.5473347160243000 63.4927178134763600, -161.5442800337965000 63.4941907510024100, -161.5429844030077500 63.4947962438516240, -161.5416471731784600 63.4953834103162100, -161.5402696402316800 63.4959516802259150, -161.5388531396606300 63.4965005013970650, -161.5368047358498400 63.4972360092344840, -161.5346863800723400 63.4979308614201700, -161.5325021102841300 63.4985837305548000, -161.5302560885476200 63.4991933728759360, -161.5279525974344000 63.4997586228622000, -161.5255960283340000 63.5002784031258300, -161.5231908769574000 63.5007517217146640, -161.5207417307462400 63.5011776748099240, -161.5182532616786700 63.5015554503238500, -161.5157302181750000 63.5018843270001400, -161.5131774152055200 63.5021636762127200, -161.5105997243977400 63.5023929655629900, -161.5080020659425500 63.5025717570810000, -161.5053893978024500 63.5026997099237200, -161.5027667067181200 63.5027765794756100, -161.5001390001147300 63.5028022191471560, -161.4975112935113700 63.5027765794756100, -161.4948886024270400 63.5026997099237200, -161.4922759342869000 63.5025717570810000, -161.4896782758317500 63.5023929655629900, -161.4871005850239400 63.5021636762127200, -161.4845477820544800 63.5018843270001400, -161.4820247385508200 63.5015554503238500, -161.4795362694832200 63.5011776748099240, -161.4770871232721000 63.5007517217146640, -161.4746821841354700 63.5002894809748000, -161.4715470791343500 63.5003606020602000, -161.4689719999578000 63.5003852281957960, -161.4663445154869800 63.5003595885242500, -161.4637220456358800 63.5002827189723600, -161.4611095987289700 63.5001547661295800, -161.4585121588090400 63.4999759746115700, -161.4559346865365200 63.4997466852613600, -161.4533820994043400 63.4994673360487800, -161.4508592690400000 63.4991384593724300, -161.4483710104137800 63.4987606838585100, -161.4466753485884300 63.4984716309610350, -161.4449999835623500 63.4981598638866560, -161.4433464378877800 63.4978256650225000, -161.4417162161304300 63.4974693401379700, -161.4398820748978000 63.4970529936008460, -161.4384430085379700 63.4967153098637000, -161.4370248936838500 63.4963603825256650, -161.4347790940799000 63.4957507411038500, -161.4325950401289700 63.4950978710699600, -161.4304768947928300 63.4944030197835900, -161.4284286942288000 63.4936675110468500, -161.4271181068151600 63.4931611756478000, -161.4258523200285300 63.4933637344488500, -161.4257469248806600 63.4933835276277700, -161.4253744130986700 63.4934498679171500, -161.4251706321189500 63.4934838514985800, -161.4227684161295000 63.4939737463913600, -161.4203198499810700 63.4943997003859400, -161.4178319699694000 63.4947774758998660, -161.4153095245149200 63.4951063525761600, -161.4137038389609700 63.4952618102843760, -161.4112978251344800 63.4957237398587600, -161.4088491096986200 63.4961496938533400, -161.4060218777074700 63.4965748150756900, -161.4031509332689300 63.4969368047897550, -161.4021781060347400 63.4970479061360040, -161.3999665688020900 63.4972806812584740, -161.3977369264180000 63.4974759852286200, -161.3951397140265600 63.4976547767466300, -161.3925274955474500 63.4977827295893460, -161.3899052550234800 63.4978595991412360, -161.3872779998797600 63.4978852379134650, -161.3860511906099200 63.4978796495262800, -161.3800722719177800 63.4978207718112340, -161.3775841329013800 63.4981944635037500, -161.3760422659378000 63.4983909455857000, -161.3754815287495300 63.4984848060290100, -161.3730784440149600 63.4989737287546060, -161.3706294497892500 63.4993996827492400, -161.3681411354050400 63.4997774573638500, -161.3656182492827600 63.5001063340401400, -161.3630656045939400 63.5003856832527160, -161.3604880738655000 63.5006149726029300, -161.3575571014790200 63.5008129754385200, -161.3546078449760400 63.5009462549657540, -161.3488805098276400 63.5011414375273940, -161.3465949125251800 63.5011997711525850, -161.3443060003216400 63.5012192252870600, -161.3413269609704300 63.5011862633354550, -161.3387965906900700 63.5011302112902740, -161.3369179366134500 63.5010754066048000, -161.3350440435477500 63.5009943740911350, -161.3331767470092500 63.5008871946883460, -161.3313178744203400 63.5007539727177460, -161.3287403311013600 63.5005246833674700, -161.3261876747213800 63.5002453341549000, -161.3236647760085700 63.4999164574786050, -161.3211764499331800 63.4995386819646800, -161.3187274440163000 63.4991127288694200, -161.3180937025623000 63.4989880054920950, -161.3177445111002700 63.4990567280855800, -161.3152955096800000 63.4994826811808400, -161.3128071881012300 63.4998604566947600, -161.3118703121651500 63.4999825846286400, -161.3108722778333400 63.5001681750213150, -161.3091847233962400 63.5004532025533300, -161.3082187876669000 63.5006407219917700, -161.3057696504489800 63.5010666759863500, -161.3032811912739200 63.5014444515002800, -161.3007534488125700 63.5017493405596840, -161.3000848397435300 63.5018648485839800, -161.3000129551337500 63.5018769030966700, -161.2999357168598000 63.5018916672667050, -161.2976091752232400 63.5023627168659460, -161.2951598905165200 63.5027886699612050, -161.2943866255423000 63.5029044315942900, -161.2922017361212000 63.5035557152241400, -161.2899553240789000 63.5041653566459560, -161.2876514318680600 63.5047306066322200, -161.2852890594425000 63.5052297114820600, -161.2851515584976000 63.5052635871448960, -161.2843744624114800 63.5054482458399400, -161.2829021094447600 63.5058603502749860, -161.2818679088768800 63.5061140724065500, -161.2802249167464800 63.5066528328620200, -161.2780399814599500 63.5073057019965860, -161.2757932744400500 63.5079153425190840, -161.2750513589330400 63.5080863198278400, -161.2741246219537200 63.5083355057790300, -161.2708840543556000 63.5092714194404950, -161.2683224407280400 63.5099713366079750, -161.2660180808697000 63.5105365856949200, -161.2636606241384500 63.5110563659585500, -161.2612545662452000 63.5115296836480640, -161.2588044973296600 63.5119556367433200, -161.2573461701895800 63.5121769419124000, -161.2561172834858200 63.5124186805776960, -161.2536671372285800 63.5128446327736360, -161.2511776537257000 63.5132224082875600, -161.2486535804983000 63.5135512840645900, -161.2460997361139000 63.5138306332771660, -161.2454815394414700 63.5138855998405900, -161.2452420868527800 63.5139146713251000, -161.2432688843515000 63.5141930834441300, -161.2412753535746800 63.5144333930866800, -161.2392645279355700 63.5146430358474840, -161.2372357491305000 63.5148382148118460, -161.2367089694433600 63.5148842942747900, -161.2361897683431000 63.5150263188096460, -161.2338850019912000 63.5155915687959100, -161.2315271279745400 63.5161113481602200, -161.2291206447019600 63.5165846658496800, -161.2266701423132000 63.5170106189449400, -161.2241802945849000 63.5173883935595400, -161.2216558544341200 63.5177172693365700, -161.2191016377303800 63.5179966176498300, -161.2179439692387700 63.5181032637546540, -161.2185000020734000 63.5189665562616000, -161.2191274221927400 63.5201068624418200, -161.2196428866099000 63.5212583004303040, -161.2200454033726400 63.5224186803778250, -161.2203341909701000 63.5235857926502400, -161.2205086873260300 63.5247574177207100, -161.2205685453021000 63.5259313252705060, -161.2205667808322300 63.5261641003929750, -161.2205447213617600 63.5273763442429500, -161.2205372776732000 63.5276088981322000, -161.2204852743758700 63.5285500629350960, -161.2204671557346000 63.5287241707839000, -161.2203167207400400 63.5297216772136700, -161.2202936090628000 63.5298373956792940, -161.2200252684513400 63.5309182296925900, -161.2196373135111900 63.5320501092252240, -161.2191263996636000 63.5332019689957400, -161.2185033430548000 63.5343427832928600, -161.2177693173001400 63.5354703802539100, -161.2169257073554700 63.5365826113984440, -161.2159741077188600 63.5376773570244500, -161.2149163197323400 63.5387525316041300, -161.2137543470854300 63.5398060864817500, -161.2124903940164400 63.5408360134712800, -161.2111268572186600 63.5418403493527000, -161.2096663258402300 63.5428171785699760, -161.2081115760883300 63.5437646404258800, -161.2064655631352000 63.5446809272830250, -161.2060885502463600 63.5448753813938100, -161.2047363260206000 63.5455736977680200, -161.2041737182425000 63.5458793953179100, -161.2025197094170300 63.5467076637277700, -161.2007904965841200 63.5475048048029400, -161.1989890160302300 63.5482694632651700, -161.1971183290476000 63.5490003368960860, -161.1950661606747400 63.5497358411362260, -161.1929439117321000 63.5504306888252600, -161.1907556264709500 63.5510835552619260, -161.1885054759469300 63.5516931930864640, -161.1861977499261800 63.5522584403747700, -161.1838368478922000 63.5527782179404400, -161.1814272736497200 63.5532515338312600, -161.1801657442536600 63.5534705340379560, -161.1799322577674600 63.5538977542780100, -161.1791977301910800 63.5550253485410500, -161.1783535446803000 63.5561375760883040, -161.1774051349390000 63.5572289429613900, -161.1770108110001000 63.5581189354405750, -161.1763872129994600 63.5592597461404100, -161.1756525487261000 63.5603873395041900, -161.1748082049347000 63.5614995670514400, -161.1738557761231300 63.5625943090801700, -161.1732031668926200 63.5632570662606300, -161.1731415273595800 63.5633283078551600, -161.1721933595359000 63.5644273054758200, -161.1711345822951000 63.5655024764581640, -161.1699715223678300 63.5665560277385600, -161.1687063857910400 63.5675859511308100, -161.1673415719559400 63.5685902843142100, -161.1658796736080300 63.5695671108335300, -161.1643234678537300 63.5705145690921540, -161.1626759116639700 63.5714308532513400, -161.1607163734618400 63.5724225995234100, -161.1592165336161000 63.5731450608959100, -161.1579091531848500 63.5737553003668840, -161.1565594353696200 63.5743469643409750, -161.1551687075697700 63.5749194700575800, -161.1537383367548000 63.5754722545409550, -161.1516842645171700 63.5762077569824560, -161.1495600460592400 63.5769026028729060, -161.1473697301289000 63.5775554666115600, -161.1451174913791000 63.5781651035367760, -161.1428076222739200 63.5787303490264400, -161.1404445294914200 63.5792501247934750, -161.1380327186350300 63.5797234397849700, -161.1355767897370300 63.5801493892829500, -161.1342122331080300 63.5803626760966840, -161.1331003526991000 63.5805298249914600, -161.1309325818731400 63.5808355522190140, -161.1287404780905500 63.5811046815358600, -161.1265271557036600 63.5813368307302100, -161.1242957587422500 63.5815316697508000, -161.1228510743176000 63.5816308281002900, -161.1219320957895600 63.5818989636662760, -161.1200109946116800 63.5824150890851460, -161.1177007819654800 63.5829803336754900, -161.1153308885096700 63.5834753556032400, -161.1150497523441600 63.5835565401022800, -161.1139719148719400 63.5839722283357100, -161.1119172301959800 63.5847077289785700, -161.1097923786153400 63.5854025748689650, -161.1076014097772000 63.5860554377083500, -161.1062559727349000 63.5864195120508950, -161.1062018479369200 63.5864744345476000, -161.1050379345530000 63.5875279831299740, -161.1037718680772200 63.5885579038242700, -161.1024060514980400 63.5895622334103900, -161.1009430793596000 63.5905390572317500, -161.0993857287683400 63.5914865136917340, -161.0988481347336000 63.5917852747706400, -161.0984535311055500 63.5923045118437900, -161.0978477810502300 63.5930161876469800, -161.0973270160289400 63.5935793952729100, -161.0973515360445300 63.5939872872835400, -161.0972965038305600 63.5951612317055600, -161.0971265220713000 63.5963329898756340, -161.0968419001335700 63.5975003296765100, -161.0967039540242400 63.5979018859633240, -161.0966575148324000 63.5982219879544460, -161.0963728740089000 63.5993893277553200, -161.0959741137143300 63.6005500269622500, -161.0954619785874200 63.6017018759408760, -161.0948374309027000 63.6028426803454750, -161.0941016460740800 63.6039702674139560, -161.0932560144535000 63.6050824886659700, -161.0923021323375200 63.6061772252987800, -161.0912418064641800 63.6072523908852100, -161.0904792802945200 63.6079421079419940, -161.0905181606845500 63.6082023852319500, -161.0905782030216400 63.6093762792918940, -161.0905231429286700 63.6105502210159560, -161.0903530703379000 63.6117219764880700, -161.0900682964147300 63.6128893135909800, -161.0896693481618600 63.6140500118986000, -161.0892158964964000 63.6150817609145600, -161.0886722014609000 63.6161048404660500, -161.0880390823377600 63.6171176875313340, -161.0873174978042600 63.6181187561757040, -161.0865692213924400 63.6190910528098900, -161.0862019058932000 63.6195544635676800, -161.0852475408413000 63.6206491975025300, -161.0841866771734000 63.6217243612903200, -161.0830213239749000 63.6227779053761000, -161.0817536926787500 63.6238078215737350, -161.0816446345921800 63.6238879160945300, -161.0815927742871000 63.6240907914569200, -161.0812206078447600 63.6251609981815700, -161.0807080329493300 63.6263128435629140, -161.0803078939940700 63.6270431101514760, -161.0802099731117500 63.6274442995148800, -161.0798108225114300 63.6286049942251600, -161.0792981855627800 63.6297568387071800, -161.0786730245404200 63.6308976395145000, -161.0779365175562200 63.6320252220863840, -161.0770900540627200 63.6331374397411200, -161.0761352339538600 63.6342321718772700, -161.0750738639676200 63.6353073338664200, -161.0739079567867400 63.6363608761535600, -161.0726397202468500 63.6373907914519350, -161.0714089098932500 63.6382986363730100, -161.0700985670951600 63.6391842149795900, -161.0687107207231500 63.6400461504095460, -161.0672475201569000 63.6408831035724350, -161.0655260576813800 63.6418286633621600, -161.0648740069298400 63.6421806580110000, -161.0631339194947600 63.6430640134934700, -161.0613087067314000 63.6439127621642900, -161.0594018418215000 63.6447252861431140, -161.0574169544288700 63.6455000358980100, -161.0553578262026800 63.6462355320442160, -161.0532283781870700 63.6469303734380700, -161.0510326690224200 63.6475832326801200, -161.0487748841535400 63.6481928642093600, -161.0481405995090300 63.6483535478780000, -161.0472510980597000 63.6485757307854100, -161.0450832507913500 63.6490917267019000, -161.0428699769678400 63.6495681398578200, -161.0406149332325500 63.6500041833464250, -161.0383218481747200 63.6503991359114700, -161.0358203218503400 63.6507769060294200, -161.0332840394268600 63.6511057773098500, -161.0307178401561700 63.6513851220258300, -161.0281266226455000 63.6516144077787660, -161.0263369735724600 63.6517425296940500, -161.0245394842098000 63.6518467656158000, -161.0223704723194000 63.6519578687606900, -161.0206438513326400 63.6520351645912100, -161.0189129486736000 63.6520904216357050, -161.0171791888684500 63.6521235940286940, -161.0154440000405300 63.6521346547905300, -161.0132305166749800 63.6521166539604900, -161.0110199992735100 63.6520626757519500, -161.0088154111023200 63.6519727930100300, -161.0066197073335800 63.6518471253446000, -161.0049241552255500 63.6517360221997140, -161.0032343776643700 63.6516144077787660, -161.0006431601537000 63.6513851220258300, -160.9980769608830000 63.6511057773098500, -160.9955406784595200 63.6507769060294200, -160.9949002100766000 63.6506801848427100, -160.9946248520552400 63.6508473571199150, -160.9929726454711800 63.6517636322858500, -160.9912319725774500 63.6526469868690000, -160.9894061446778200 63.6534957346405000, -160.9879171110857800 63.6541300039965560, -160.9875048636585000 63.6543207034377500, -160.9810348135058000 63.6575734460577700, -160.9795400782120000 63.6582942652681800, -160.9785689695822600 63.6587296009903400, -160.9784549067685000 63.6587866701687500, -160.9772310616641300 63.6594175319935400, -160.9771191770083800 63.6594903141267400, -160.9757563003129800 63.6605070615517000, -160.9742896796249700 63.6614838772791800, -160.9727284457611300 63.6624313256452300, -160.9718591772592000 63.6629004722790340, -160.9709147865881000 63.6635899204385400, -160.9699285684486400 63.6642761652129250, -160.9689708507241600 63.6648749985823800, -160.9688875510196300 63.6649383908940650, -160.9676923205441300 63.6658907252768240, -160.9663227924628800 63.6668950458697500, -160.9652094236759300 63.6676364181861900, -160.9650730073134000 63.6677366521248600, -160.9649767115060000 63.6678350766275100, -160.9643138886750000 63.6685941062330600, -160.9632512380541700 63.6696692637256100, -160.9620839216356400 63.6707228015161500, -160.9608141544496500 63.6717527123178700, -160.9594134073029000 63.6727626680627200, -160.9593322569780600 63.6728098725776000, -160.9586967735372400 63.6734619449129000, -160.9580186802179000 63.6741013538944000, -160.9558545642367200 63.6760741705865600, -160.9549001820977000 63.6769070444246400, -160.9538811962601700 63.6777246972370700, -160.9533863326131200 63.6780806516008500, -160.9526986120512800 63.6788033072269300, -160.9519690963966500 63.6795252775695500, -160.9511920506725700 63.6802374084297200, -160.9507196439963400 63.6806545859404300, -160.9504739636025200 63.6808640542327600, -160.9502228549008000 63.6811487463176600, -160.9494836958158700 63.6822751390864700, -160.9486357385484600 63.6833873495465900, -160.9476792331100800 63.6844820753875100, -160.9473105047759400 63.6848549343078500, -160.9472453893632000 63.6849427135354600, -160.9465184511655600 63.6860811329380000, -160.9456531468752000 63.6871837197529100, -160.9455949679334000 63.6872664654750340, -160.9450922163326800 63.6880325115911900, -160.9446205066310500 63.6887267018758500, -160.9441148601126800 63.6894352543336000, -160.9435652943028600 63.6901373379678260, -160.9426085613360200 63.6912320629094200, -160.9415450653524400 63.6923072168046900, -160.9403768199342700 63.6933607518972200, -160.9391060401116200 63.6943906600010340, -160.9382291696404400 63.6950354010629700, -160.9379654875172000 63.6954430826322100, -160.9370783000235000 63.6966103262056440, -160.9361213494207200 63.6977050502479200, -160.9350576106202000 63.6987802032438140, -160.9346010410052000 63.6991918481253400, -160.9345378294572400 63.6992560624174200, -160.9334776258917000 63.7003352003093260, -160.9323090504223000 63.7013887345025300, -160.9310379117701800 63.7024186408077100, -160.9298972089889600 63.7032608864807900, -160.9296059896247000 63.7035940385341060, -160.9285420304903000 63.7046691915300000, -160.9273732769551400 63.7057227248239400, -160.9261019449487800 63.7067526311290600, -160.9247304455536000 63.7077569472253900, -160.9232613850048800 63.7087337575569000, -160.9216975521003000 63.7096812005270300, -160.9211816551092800 63.7099667118943100, -160.9206916388080500 63.7103636231827300, -160.9193199649444000 63.7113679383796800, -160.9178507173367000 63.7123447487112460, -160.9162866856819700 63.7132921916813760, -160.9146308440382000 63.7142084605520700, -160.9135838119433400 63.7147479287739300, -160.9125049348548400 63.7152749216003800, -160.9113949655052200 63.7157890712087500, -160.9102546809087600 63.7162900169707900, -160.9092563318142200 63.7167171032118060, -160.9062966090013000 63.7184223590047050, -160.9047221856803000 63.7192914467429400, -160.9029773687105700 63.7201747941314800, -160.9011471934881600 63.7210235356077400, -160.8992351439867000 63.7218360523919500, -160.8972448588631000 63.7226107958516100, -160.8951801305585400 63.7233462857025760, -160.8948491314822000 63.7234539966046900, -160.8943354036559300 63.7238223319351400, -160.8929297219291000 63.7247239706347840, -160.8923860547725700 63.7251405887672040, -160.8912551006423500 63.7259752315717400, -160.8910270370680800 63.7261305139121500, -160.8902463886598800 63.7268336785314800, -160.8889741105667200 63.7278635821386400, -160.8876015904410200 63.7288678955370100, -160.8872010701732300 63.7291202327126000, -160.8859223385450700 63.7301405774257400, -160.8845497096014000 63.7311448908241100, -160.8830794367665600 63.7321216984576600, -160.8828490700285300 63.7322611500321160, -160.8824828283198400 63.7325575719744400, -160.8811100815650000 63.7335618844734300, -160.8796396837244000 63.7345386921070400, -160.8780744280923600 63.7354861332784700, -160.8775419835756400 63.7357805326454900, -160.8773986397354200 63.7358772178593540, -160.8760331118386000 63.7368948762975800, -160.8745625413282000 63.7378716839311300, -160.8734077569624000 63.7385705857639660, -160.8726341628363000 63.7391965561761800, -160.8714937946029000 63.7400374654567400, -160.8702838476214400 63.7408580473610300, -160.8694165522320800 63.7415575508403550, -160.8683456683179100 63.7423490954344600, -160.8679357159605000 63.7426245415893500, -160.8668678447752000 63.7436961116862300, -160.8656974832522300 63.7447496395842560, -160.8644244011651700 63.7457795413927800, -160.8630510140930000 63.7467838520931300, -160.8615799300697000 63.7477606588274200, -160.8600139441881500 63.7487080982002100, -160.8583822664284400 63.7496077395056200, -160.8576428078692700 63.7504549485370800, -160.8565770914595700 63.7515300952377400, -160.8562075546349200 63.7518506028231400, -160.8551357956804000 63.7529190927419900, -160.8539650528448700 63.7539726197406400, -160.8526915561703600 63.7550025197505200, -160.8513177230344700 63.7560068304509300, -160.8507144910808800 63.7563786407617400, -160.8506489098193000 63.7564322835231100, -160.8505679006880500 63.7564940525585400, -160.8488209199494700 63.7582829264159700, -160.8486852167493200 63.7583968732171800, -160.8477167278447000 63.7594819313461000, -160.8466506714912600 63.7605570762481200, -160.8458607528714300 63.7612627005132700, -160.8454874065185700 63.7616183311211560, -160.8447921361481300 63.7623350728054000, -160.8436210048055000 63.7633885989047800, -160.8423470854496000 63.7644184980153450, -160.8414108012674400 63.7651133232213300, -160.8404277100707400 63.7657953708597350, -160.8393986967924000 63.7664640221969400, -160.8383246895327500 63.7671186737878200, -160.8373714980961300 63.7676816529859700, -160.8372599794644500 63.7677811180042200, -160.8365548291420200 63.7686490681000460, -160.8358047208111800 63.7698152774531200, -160.8349231900531600 63.7709711931660760, -160.8339729007287500 63.7720576920089600, -160.8337715236368700 63.7724254265922350, -160.8336125990422000 63.7726675267849700, -160.8334761655925400 63.7730498213921900, -160.8329609260059000 63.7742016442904860, -160.8323325867794200 63.7753424226147560, -160.8315923323202400 63.7764699845022300, -160.8311180163833300 63.7770900472679050, -160.8310946915667300 63.7772498298158440, -160.8308082682869200 63.7784171417377500, -160.8304070024811400 63.7795778130656600, -160.8298916441840200 63.7807296350646900, -160.8292631610660000 63.7818704133889000, -160.8291518951438000 63.7820398546556360, -160.8289844584659500 63.7827221370170600, -160.8285831315063000 63.7838828083449700, -160.8282098229249500 63.7847420835803400, -160.8277735348207500 63.7855955348061340, -160.8273301213879700 63.7864017167658500, -160.8269142865650600 63.7871150617107800, -160.8264544398205000 63.7878231042529360, -160.8261765043422000 63.7881870535896950, -160.8260966013770300 63.7914846867689100, -160.8261645190772500 63.7916069397085700, -160.8266849621412600 63.7927583318315800, -160.8270713990258000 63.7938526898498140, -160.8273556972076200 63.7949531506674250, -160.8275373620596000 63.7960578526877950, -160.8276160761210000 63.7971649235224700, -160.8278594614449700 63.8070818241669140, -160.8278630182636600 63.8073481682834000, -160.8278623302823000 63.8075043301607800, -160.8277965349820700 63.8134989519151650, -160.8282029296214800 63.8143973332703900, -160.8285997132061600 63.8155246973070100, -160.8288880223643000 63.8166584789057100, -160.8290673273952200 63.8177966393035400, -160.8291372901538000 63.8189371343413540, -160.8292030872526400 63.8238645216304100, -160.8294002195444800 63.8242189489453700, -160.8299212687515200 63.8253703356725200, -160.8303281535214400 63.8265306634593800, -160.8303897822626000 63.8267770363312400, -160.8306074163991200 63.8271056962709050, -160.8312417154327800 63.8282459493910900, -160.8317628392835800 63.8293973352189140, -160.8321697825094200 63.8305576621064600, -160.8324617564049000 63.8317247231175300, -160.8324929898595600 63.8319321211704960, -160.8328066841811000 63.8324959511272700, -160.8329184860992300 63.8327429319408000, -160.8350800785827300 63.8329762646429800, -160.8376331369596800 63.8333045279816250, -160.8401514041639500 63.8336816083196400, -160.8426300976009000 63.8341067906959000, -160.8450645102189500 63.8345792666199260, -160.8474500159054800 63.8350981394676200, -160.8497820847753700 63.8356624253806900, -160.8508950380755200 63.8359585334596300, -160.8516878210360800 63.8361677436465100, -160.8520100382326600 63.8362453884140000, -160.8532283111376300 63.8365174773996960, -160.8543956806161400 63.8367651443959400, -160.8567278879816000 63.8373294303090100, -160.8587352413382800 63.8378634774176100, -160.8606946905075300 63.8384311717612150, -160.8626033423703300 63.8390316742724050, -160.8644583775520400 63.8396641000182400, -160.8661799245638500 63.8402746479566760, -160.8671582061862500 63.8406290123191400, -160.8691590799275600 63.8414026334248200, -160.8710817162481700 63.8422140197612860, -160.8729224576053000 63.8430616298903700, -160.8746777984416000 63.8439438540257240, -160.8752341127640800 63.8442403353232600, -160.8765685187221400 63.8449619009709860, -160.8780748948405000 63.8458105453204900, -160.8795031432554200 63.8466851243190940, -160.8808509670984000 63.8475842350245000, -160.8821161999026700 63.8485064385213800, -160.8833978669180000 63.8495353807532500, -160.8845767036519300 63.8505880057319360, -160.8856504564034300 63.8516623124658050, -160.8866170729195600 63.8527562576952050, -160.8874179794561600 63.8537890544213840, -160.8881233609043600 63.8548353292870840, -160.8891816327261500 63.8565299011340800, -160.8898741313860200 63.8577491534007900, -160.8904368857536400 63.8589813388177840, -160.8908442597547400 63.8601416603094100, -160.8911365439163300 63.8613087159245650, -160.8913131671689000 63.8624802843377200, -160.8913737796761700 63.8636541361295260, -160.8913182510364400 63.8648280364847700, -160.8911466720812200 63.8659997514873800, -160.8908593557746000 63.8671670490201700, -160.8904568354146000 63.8683277068582240, -160.8899398619350600 63.8694795153674000, -160.8893094066038100 63.8706202802018200, -160.8885666565259400 63.8717478277001200, -160.8877130137445600 63.8728600120799700, -160.8867500907440700 63.8739547118405540, -160.8856797104502600 63.8750298414540800, -160.8845039008343200 63.8760833531642900, -160.8832248904163300 63.8771132387850000, -160.8820770137431600 63.8779554943506600, -160.8817348378924200 63.8781795478479350, -160.8805765884387700 63.8790088261964100, -160.8803459213271800 63.8791708867270800, -160.8794276235859400 63.8797855607550700, -160.8788674763529200 63.8801468301121500, -160.8782194086987300 63.8805457990494600, -160.8772945719868800 63.8810948162728200, -160.8769529717022500 63.8812883485784940, -160.8756300006240000 63.8820129998001700, -160.8738751067507500 63.8828963310009500, -160.8720343608970000 63.8837450571887200, -160.8701112650228400 63.8845575604830740, -160.8683502278806800 63.8852391161923400, -160.8689810402427700 63.8861897220780860, -160.8696166783669800 63.8873299653056960, -160.8701389029879500 63.8884813412409500, -160.8705229009111000 63.8895634307078240, -160.8706037112922000 63.8898732606425000, -160.8711521556474500 63.8908569678748100, -160.8716744468182500 63.8920083420114200, -160.8717909054259000 63.8923396576491300, -160.8721892007709800 63.8929397248884360, -160.8728249917799000 63.8940799672167800, -160.8731642124584200 63.8948276824516500, -160.8733581458617200 63.8950327530591800, -160.8740097802271400 63.8957842913120540, -160.8748687254113200 63.8968957877104900, -160.8756168687234800 63.8980227281664400, -160.8757180613394300 63.8982236690870900, -160.8765687903173800 63.8993397880008700, -160.8773170001793700 63.9004667284568200, -160.8779529620595000 63.9016069698857900, -160.8784754546784700 63.9027583431230800, -160.8786861937128400 63.9033431965313500, -160.8789900008878000 63.9038007302195900, -160.8796260392103000 63.9049409707492400, -160.8801485929831500 63.9060923430872100, -160.8805427208698400 63.9072635967376640, -160.8806137897945200 63.9073863389084500, -160.8809816646720500 63.9076194557733300, -160.8821629430653400 63.9086720717587600, -160.8832389207395600 63.9097463677007900, -160.8842075400459000 63.9108403030376200, -160.8850669474816200 63.9119517967380940, -160.8858154936900500 63.9130787344960800, -160.8860082318943500 63.9134241452081800, -160.8864972958135000 63.9139123718585440, -160.8874660590114000 63.9150063062960500, -160.8883255941508000 63.9161177990972100, -160.8886839568990600 63.9166686005755200, -160.8897550044898400 63.9177463750951900, -160.8907239007873500 63.9188403086333800, -160.8915835528386500 63.9199518005352160, -160.8923323139850700 63.9210787373938840, -160.8925614918193500 63.9214893354645140, -160.8930966073225500 63.9220233789758400, -160.8940656511089000 63.9231173125140200, -160.8949254353605300 63.9242288035165400, -160.8956743107208400 63.9253557394758300, -160.8959969577933300 63.9259384471017140, -160.8963384789376200 63.9263297807947900, -160.8974635290186000 63.9272304806022500, -160.8986456338888600 63.9282830929904000, -160.8997223651949800 63.9293573862344150, -160.9006916634894500 63.9304513179740200, -160.9015516725716000 63.9315628080771600, -160.9023007448834300 63.9326897431371900, -160.9025318697499600 63.9331036561088700, -160.9032593682252400 63.9338293910136600, -160.9034702511511300 63.9340817605648800, -160.9045400531808800 63.9351623913313460, -160.9055095529235000 63.9362563221715700, -160.9063697400714300 63.9373678113754500, -160.9071189679659700 63.9384947455361600, -160.9074393847198000 63.9390870687133200, -160.9086140638879000 63.9401441066652300, -160.9096912520496000 63.9412183981106640, -160.9101954911289700 63.9417929794624900, -160.9102783330786000 63.9418700765428400, -160.9107986367476700 63.9422855003755900, -160.9119813774386000 63.9433381100657800, -160.9130586879081000 63.9444124006118400, -160.9140285078093500 63.9455063296534260, -160.9148889809417000 63.9466178170586660, -160.9156384561498000 63.9477447494206800, -160.9158731881970500 63.9481648946941700, -160.9164564237249500 63.9487464053224240, -160.9166458065587000 63.9489599907110460, -160.9170558398551000 63.9492565844238900, -160.9181171864589700 63.9500977131390300, -160.9191095541625600 63.9509549774902550, -160.9193826045235500 63.9512132780703840, -160.9195497201434400 63.9513512196830900, -160.9208461522281000 63.9523695130426400, -160.9220293191977000 63.9534221209341900, -160.9231070181743300 63.9544964105809300, -160.9240771879118800 63.9555903378238800, -160.9249379713103000 63.9567018234304800, -160.9255683582930800 63.9576493473395540, -160.9260994349409400 63.9580345971190240, -160.9273649977964000 63.9590457417676250, -160.9285308645077600 63.9600797984439850, -160.9295948811987700 63.9611348695786400, -160.9303061702935000 63.9619305645439900, -160.9309439703879000 63.9621983952397950, -160.9326324673144800 63.9629659567135600, -160.9342504582919800 63.9637623324657060, -160.9364179467308400 63.9648726408597700, -160.9368245832878600 63.9650831047015900, -160.9384983897888300 63.9659982476210900, -160.9400798799824500 63.9669445871230660, -160.9415660411398500 63.9679203272613700, -160.9429540376986600 63.9689236118352940, -160.9442412202561000 63.9699525351813900, -160.9450197543581600 63.9706447235751600, -160.9463098875912000 63.9714165954995340, -160.9477962852703300 63.9723923347385150, -160.9491845039616500 63.9733956193124400, -160.9504718924638400 63.9744245408599000, -160.9516559929297000 63.9754771451541700, -160.9527345426649800 63.9765514312036300, -160.9537054786249000 63.9776453548493000, -160.9544672358742000 63.9786196470790860, -160.9547730143631000 63.9790365251155900, -160.9553790908723300 63.9799136770745900, -160.9559168431877400 63.9807993842842400, -160.9563856408845800 63.9816926215173100, -160.9567849335778000 63.9825923509562800, -160.9571285771221200 63.9835419927688350, -160.9573947782464000 63.9844964198739500, -160.9575690866440000 63.9853827197367760, -160.9579196684579000 63.9858315479876300, -160.9593209749829700 63.9868406385846800, -160.9606089831180500 63.9878695583335000, -160.9617936537540900 63.9889221608291340, -160.9628727223982000 63.9899964441806300, -160.9638441260055700 63.9910903660276060, -160.9640794561019800 63.9913785375894700, -160.9645244604354800 63.9919333608360150, -160.9653066529796200 63.9929759170050260, -160.9659914165706000 63.9940316077725100, -160.9665776000761600 63.9950986776618700, -160.9666680062234700 63.9952987066700400, -160.9674936989750000 63.9962283691439800, -160.9683576470877100 63.9973346503738900, -160.9693312180612300 63.9984233714415040, -160.9701933225637400 63.9995348498534900, -160.9709442204993500 64.0006617732223000, -160.9715824702547600 64.0018019975642000, -160.9721068424567800 64.0029533528150400, -160.9724609900826000 64.0039351157130900, -160.9727037620689300 64.0049168615240100, -160.9727586899615500 64.0050608735605200, -160.9733135644694000 64.0060519984010600, -160.9738380176104000 64.0072033536519000, -160.9740808840255400 64.0078608947645200, -160.9744074116726700 64.0082283784369700, -160.9752698192467300 64.0093398559496300, -160.9760209815830000 64.0104667775198100, -160.9766335493987700 64.0116264281172100, -160.9768272525756200 64.0119752967226000, -160.9773588670180700 64.0127727786408500, -160.9779973946640200 64.0139130002847900, -160.9783384832343800 64.0146615950566200, -160.9786708465822800 64.0150898594095600, -160.9794221645012700 64.0162167791811000, -160.9797729990246500 64.0168431884624200, -160.9800105630370000 64.0170794691422300, -160.9809829100332500 64.0181733864926600, -160.9812137956801000 64.0184850069775300, -160.9813627081224500 64.0185915973244200, -160.9825486836748000 64.0196441944240700, -160.9836289412226300 64.0207184723796600, -160.9846014150232600 64.0218123888307100, -160.9854642425807000 64.0229238636454700, -160.9862157718403600 64.0240507825176300, -160.9868545575917300 64.0251910023629300, -160.9869814303487000 64.0254693389388800, -160.9874432484071500 64.0261617836394500, -160.9880820827219200 64.0273020034847500, -160.9886069369605400 64.0284533551383100, -160.9890167984864300 64.0296136487509700, -160.9890430712807000 64.0297179116523700, -160.9891170270291500 64.0298287854701000, -160.9894159742677600 64.0303622884889000, -160.9897868205053400 64.0308398680655300, -160.9905385629043300 64.0319667860384200, -160.9908108938076600 64.0324527526924500, -160.9909577099303400 64.0326173969753500, -160.9914822961710000 64.0332734524079700, -160.9926460458782700 64.0342153213800300, -160.9937130078490000 64.0351839604714400, -160.9946908883737800 64.0361705122593900, -160.9955781172363000 64.0371734011316100, -160.9964414223337300 64.0382848732483600, -160.9969895672147400 64.0391063634679700, -160.9974441646164700 64.0396174023213100, -160.9980412524018600 64.0404044215268900, -160.9982619109584000 64.0406692188094600, -160.9990040665843800 64.0415064039974000, -160.9998675056808000 64.0426178752148300, -161.0006195655405000 64.0437447913890900, -161.0012588045501600 64.0448850076370500, -161.0017839915379600 64.0460363565926500, -161.0019636922705500 64.0465463747154900, -161.0020441276343500 64.0466641103604400, -161.0022732928781300 64.0470549458291300, -161.0025712355740400 64.0473954084714000, -161.0034348572328300 64.0485068787894500, -161.0041870771718500 64.0496337931650700, -161.0048264510798200 64.0507740094130300, -161.0053517486842300 64.0519253574693200, -161.0054847773006000 64.0522923474139800, -161.0058609241423000 64.0528557951588500, -161.0065003726940000 64.0539960105075500, -161.0070257314523300 64.0551473576644500, -161.0073456328946000 64.0560210373410500, -161.0075993514289000 64.0568957062718600, -161.0078703729193400 64.0573007968943100, -161.0085099239937600 64.0584410113436300, -161.0090353672883300 64.0595923576012800, -161.0094241109339400 64.0606821020974200, -161.0097105998642600 64.0617779062254700, -161.0098943412508300 64.0628779317712000, -161.0099750149349500 64.0639803306278300, -161.0100688744789500 64.0676100069962900, -161.0108942578636700 64.0687018909795300, -161.0116470236911500 64.0698288026571800, -161.0122868634479700 64.0709690153078700, -161.0128125441635500 64.0721203597668700, -161.0132230514026600 64.0732806452855900, -161.0134786854929000 64.0742935139345500, -161.0136832210038200 64.0744965232959800, -161.0146575752868300 64.0755904307538300, -161.0155220728853200 64.0767018965753400, -161.0162750554494300 64.0778288064543000, -161.0169150795672400 64.0789690173063500, -161.0174409113689400 64.0801203599667100, -161.0178515382178800 64.0812806454854400, -161.0181461633147500 64.0824476633290500, -161.0183242110934400 64.0836191957693000, -161.0183853290196800 64.0847930106889400, -161.0183700018740500 64.0854203417754300, -161.0183545776016600 64.0857222801591300, -161.0183843235776400 64.0858402900973400, -161.0185452266808300 64.0865695422506300, -161.0186607104234300 64.0873004401632300, -161.0187306839738700 64.0880324433426300, -161.0187550933728500 64.0887650085983300, -161.0187588318545700 64.0904590066778600, -161.0187028778355200 64.0916328710602000, -161.0185299301121500 64.0928045491906500, -161.0182403025479000 64.0939718107505300, -161.0178345338366300 64.0951324344143800, -161.0173133812075400 64.0962842087493000, -161.0166940756710400 64.0974237747874400, -161.0168614529936200 64.0995303620366600, -161.0168916666170800 64.1003480013592400, -161.0168356937122700 64.1015218639429300, -161.0166626857343300 64.1026935402747400, -161.0163729565467000 64.1038608009352500, -161.0159670448432200 64.1050214228004600, -161.0154475064972000 64.1061702734394300, -161.0153665513252600 64.1067215362699600, -161.0150767816681000 64.1078887960311500, -161.0146708115087200 64.1090494169970400, -161.0141493998748700 64.1102011895333100, -161.0135135261283000 64.1113419183948800, -161.0128406254944500 64.1123546863197500, -161.0127336727208000 64.1126604126479800, -161.0122121936378000 64.1138121842849400, -161.0121178115877000 64.1139814798614800, -161.0120495575410200 64.1144435290456700, -161.0117597078442200 64.1156107879076000, -161.0113536261689000 64.1167714079741700, -161.0113024196709000 64.1168844887282000, -161.0114137197673200 64.1170508228372600, -161.0117470157122000 64.1176381286967400, -161.0122723016254000 64.1181625638512900, -161.0132481883531700 64.1192564632152700, -161.0141140457266100 64.1203679218421600, -161.0148653267734000 64.1214977401286300, -161.0155304779491700 64.1221625675485100, -161.0165065049712000 64.1232564669125000, -161.0173724882497000 64.1243679237407500, -161.0181267658375400 64.1254948264251500, -161.0185062986267600 64.1261698035936000, -161.0188772968497500 64.1266459262685700, -161.0196316364908000 64.1277728280536500, -161.0202728135395000 64.1289130299124400, -161.0207995959246000 64.1300643644788700, -161.0212109647142100 64.1312246410044500, -161.0215061240084000 64.1323916516534500, -161.0216844973416500 64.1335631751005000, -161.0217457312804500 64.1347369819262100, -161.0216869920610000 64.1359381434306200, -161.0215896485434300 64.1369108177800600, -161.0221295628290400 64.1404971081550500, -161.0222281770886600 64.1413665736085400, -161.0222623477291400 64.1422369770548900, -161.0222442848458400 64.1426152579878100, -161.0223026706317200 64.1427190334566700, -161.0228297156188500 64.1438703662244600, -161.0232192308827700 64.1449587572408900, -161.0235064347741000 64.1460531970974400, -161.0236908317664600 64.1471518511770600, -161.0237721026004200 64.1482528803662100, -161.0238625546131700 64.1516138429045700, -161.0238667814268000 64.1519039713912200, -161.0238107104958700 64.1530778249816600, -161.0236373868558800 64.1542494941189100, -161.0233471270682300 64.1554167457862300, -161.0229404680281400 64.1565773604568800, -161.0225317531378600 64.1574997591066600, -161.0220494871940400 64.1584153678749700, -161.0217176652380400 64.1589985035781200, -161.0215457931038500 64.1592844798949000, -161.0215939365109300 64.1594746442394800, -161.0217724870106500 64.1606461631899400, -161.0218337839019700 64.1618199664183600, -161.0217776940852700 64.1629938182102300, -161.0217391014783200 64.1632546153082900, -161.0221855510223500 64.1696678840656300, -161.0222139678003500 64.1704589610122900, -161.0221578608965300 64.1716328119048300, -161.0219844248413000 64.1728044774447400, -161.0217729969262500 64.1736541479206700, -161.0219316921938200 64.1742806408389600, -161.0221103389209800 64.1754521579907800, -161.0221716699865600 64.1766259576219200, -161.0221703785601000 64.1768280838490500, -161.0221560721449800 64.1777817204500700, -161.0225742586950400 64.1785240424506500, -161.0231019871669400 64.1796753689232000, -161.0235140969979600 64.1808356373548500, -161.0238097895900800 64.1820026390106500, -161.0239884875786000 64.1831741543637700, -161.0240498366306400 64.1843479530956000, -161.0239937036464800 64.1855218021895000, -161.0238201821556500 64.1866934650314500, -161.0235295860215400 64.1878607122021700, -161.0231224557367000 64.1890213214768400, -161.0227579686053300 64.1898507958775900, -161.0225046988327600 64.1903430020279900, -161.0225118997043700 64.1904506688633200, -161.0225380987542400 64.1912089493336000, -161.0224819531795800 64.1923827966288000, -161.0223083894206000 64.1935544585714400, -161.0220177222400700 64.1947217048428300, -161.0216104912311400 64.1958823132182500, -161.0210874581196700 64.1970340722646700, -161.0204986683788200 64.1980939116048100, -161.0204317777043500 64.1988425918122000, -161.0203143631173400 64.1995885021077600, -161.0201494355479800 64.2003327036914000, -161.0198460474571000 64.2015278316441700, -161.0196000253208700 64.2023739794756200, -161.0192925722943500 64.2032163042890700, -161.0190480637171500 64.2037545890031500, -161.0192667995231400 64.2042313699818100, -161.0196160656289000 64.2051819318007800, -161.0197498280920700 64.2053488990325100, -161.0201787480507700 64.2058125301242000, -161.0210473168801300 64.2069239734626600, -161.0213011406351000 64.2073020547461000, -161.0214560632467000 64.2074248364870600, -161.0226501273015200 64.2084774021104700, -161.0237377556928500 64.2095516485897500, -161.0247168673895000 64.2106455335645600, -161.0251292236347400 64.2111731028564900, -161.0256004099309500 64.2115884061800600, -161.0266881606300700 64.2126626517600100, -161.0276673829433500 64.2137565358355000, -161.0281295166638200 64.2143477231689400, -161.0285067139136900 64.2146179649472000, -161.0298053169617800 64.2156468478238500, -161.0309997362488000 64.2166994116485600, -161.0320876883960800 64.2177736572285800, -161.0329885365916600 64.2187833791496700, -161.0330716986999000 64.2188617244890500, -161.0342855586316000 64.2198138520277000, -161.0348627803929800 64.2203283874451900, -161.0364558430626700 64.2212780337542900, -161.0379556523314500 64.2222537334230900, -161.0393563976795700 64.2232569766282500, -161.0400328614274000 64.2237914976795400, -161.0412276997984700 64.2243698840629800, -161.0425972971275400 64.2250556405054500, -161.0442868120866800 64.2259707438548200, -161.0458831482886200 64.2269170437866100, -161.0473832633269000 64.2278927425561000, -161.0487842946594400 64.2288959848618800, -161.0500009775630300 64.2298669370096000, -161.0500872549228600 64.2299139157946100, -161.0519633486296000 64.2306589330633500, -161.0538298879389500 64.2315064883338200, -161.0556098342264300 64.2323886549125400, -161.0569178801560200 64.2330896989305400, -161.0579323343097500 64.2336722653628300, -161.0581769481076400 64.2337965480722900, -161.0591339166968800 64.2342068736483600, -161.0611976809282200 64.2352226605973400, -161.0628878173188800 64.2361377621480800, -161.0644847407781400 64.2370840602812300, -161.0659854071008400 64.2380597572520700, -161.0673869528455700 64.2390629986585400, -161.0686403523703200 64.2400487689356000, -161.0687808228766500 64.2401181300477300, -161.0691124424852000 64.2402366265191600, -161.0710627527438000 64.2410479579969000, -161.0729299935243500 64.2418955114687300, -161.0747106089074500 64.2427776762488000, -161.0764012066503300 64.2436927769001600, -161.0779985662807700 64.2446390741340000, -161.0794996426943200 64.2456147702055200, -161.0809015724496000 64.2466180098133500, -161.0816638674934600 64.2472162469322800, -161.0817766910414300 64.2472886684373600, -161.0821330465028600 64.2474441702123600, -161.0843718979447000 64.2484412755445100, -161.0858104903618000 64.2491130115562900, -161.0871956414656600 64.2498056900805600, -161.0888866690844700 64.2507207898326600, -161.0904911207685800 64.2516516034388000, -161.0933645239536000 64.2528789514025200, -161.0953026007344000 64.2537542561540800, -161.0971479682041500 64.2546667002080800, -161.0988392934985700 64.2555817990608500, -161.0998787380133300 64.2562158327945100, -161.1004409051236300 64.2565208954230200, -161.1016521570214000 64.2571117059405300, -161.1033436325026000 64.2580268038939300, -161.1049418204086700 64.2589730993291300, -161.1064436756351000 64.2599487927026900, -161.1078463338412000 64.2609520305118700, -161.1079907352841800 64.2610662471096800, -161.1085659866309400 64.2613254766894800, -161.1104389650861300 64.2622507153982400, -161.1121307553300700 64.2631658133516300, -161.1137292409117000 64.2641121078875100, -161.1142689330647800 64.2644626582251700, -161.1148080388598800 64.2646190881005200, -161.1169867922066600 64.2653127945498600, -161.1190939838003000 64.2660471278727000, -161.1211256053623800 64.2668206923211800, -161.1230777934054000 64.2676320202016300, -161.1249468301320700 64.2684795700761800, -161.1267291587236600 64.2693617312589300, -161.1284213842394600 64.2702768274136800, -161.1300202817106000 64.2712231201509200, -161.1315228033347000 64.2721988117258400, -161.1329260838716400 64.2732020477363900, -161.1333204087098600 64.2735138067168400, -161.1335394269030000 64.2736212532183200, -161.1346226935824000 64.2741759055936100, -161.1348205929959400 64.2742777412248100, -161.1365131197846000 64.2751928364803000, -161.1381123023408600 64.2761391292174800, -161.1396150919629000 64.2771148198930900, -161.1400899924591700 64.2774542761939600, -161.1406139977377700 64.2776537188440800, -161.1425669502045500 64.2784650449259500, -161.1444367207780000 64.2793125930018000, -161.1462197490421600 64.2801947523859700, -161.1467653569356500 64.2804896814536700, -161.1479675661502400 64.2810345968692300, -161.1497507059303000 64.2819167562533400, -161.1511486031255000 64.2826663609638400, -161.1524838337619000 64.2834372436339500, -161.1541851244439000 64.2844569093589400, -161.1545103993354400 64.2846388107325900, -161.1546861817218700 64.2847047661121000, -161.1548135733876800 64.2847574996589500, -161.1563784647942700 64.2852609788111500, -161.1578994252182600 64.2857971788967600, -161.1599325009841000 64.2865707406472200, -161.1618860847749800 64.2873820658297200, -161.1637564587935000 64.2882296130063100, -161.1655400635230800 64.2891117705917700, -161.1672334995263600 64.2900268640485700, -161.1688335418344600 64.2909731540878500, -161.1703362640073500 64.2919513574692000, -161.1706034355001000 64.2920471946224000, -161.1726369708195300 64.2928207563728600, -161.1745909970768200 64.2936320806560400, -161.1764617955753600 64.2944796260339900, -161.1782458032012400 64.2953617836194600, -161.1799396241143300 64.2962768761769300, -161.1815400288492000 64.2972231653169000, -161.1830439669055300 64.2981988523951600, -161.1844485712445300 64.2992020839091100, -161.1850498984340400 64.2996770509552100, -161.1854153019746000 64.2998729358873200, -161.1872877615209600 64.3005977759666500, -161.1892423381633500 64.3014090993505100, -161.1911136636646200 64.3022566438290800, -161.1928981749108200 64.3031387996159700, -161.1945924733639400 64.3040538912741200, -161.1961933295585000 64.3050001795147000, -161.1976976929941000 64.3059758656937100, -161.1991026930348300 64.3069790954089600, -161.2000220537747500 64.3077050605401700, -161.2028428996800400 64.3094747446638200, -161.2042278043696500 64.3103821462191300, -161.2055271241774200 64.3113131010188700, -161.2064889518036600 64.3120724795613200, -161.2067896698074000 64.3122501909935500, -161.2077711053522000 64.3129045350163400, -161.2082862217317300 64.3132385324323600, -161.2092611272991600 64.3139020747210000, -161.2097063654563800 64.3142199059239500, -161.2106716374860600 64.3148989822023000, -161.2139964247951400 64.3166103947539800, -161.2143584774617300 64.3167923383957700, -161.2157501441538000 64.3175114749746500, -161.2160670004916500 64.3176812247087900, -161.2168807358572500 64.3180988401894000, -161.2179656366048200 64.3187105977159500, -161.2210230554696000 64.3204865645034300, -161.2220892287349000 64.3211251074378100, -161.2231118748131600 64.3217769216676600, -161.2240868514270200 64.3224474930574400, -161.2250421985386000 64.3229709272665100, -161.2253203867264500 64.3231352549880700, -161.2265101457266200 64.3236736898889500, -161.2282960446267200 64.3245558429778200, -161.2294537023264800 64.3251806064998300, -161.2299290021217400 64.3253956937563200, -161.2317150116384400 64.3262778468451900, -161.2332824166501800 64.3271207652111900, -161.2340896535146700 64.3275748526973500, -161.2359620240281700 64.3284237011928900, -161.2377482304964000 64.3293058533825000, -161.2394441378366700 64.3302209405440500, -161.2410465156841300 64.3311672242880400, -161.2425523081424800 64.3321429059703900, -161.2439586436764500 64.3331461320883600, -161.2444384895446200 64.3335246774219600, -161.2448398443832800 64.3337228619205900, -161.2463851089855500 64.3345531430131800, -161.2478518654711800 64.3354123472021200, -161.2489266767247200 64.3359448663625200, -161.2493375751689400 64.3361705791089700, -161.2511225918341000 64.3370558681338600, -161.2511920716567600 64.3370917825597500, -161.2548636276542600 64.3390086488301400, -161.2557542892290300 64.3394402640569800, -161.2567310177222700 64.3398687253614400, -161.2585179661312000 64.3407508757523500, -161.2596302080676200 64.3413414758285300, -161.2603720111593500 64.3417589564107900, -161.2604578460527300 64.3417990868584300, -161.2624188420559000 64.3426041941282800, -161.2642929671467000 64.3434517332110000, -161.2660801484800300 64.3443338836019000, -161.2669335070756600 64.3447838800720400, -161.2711569257514800 64.3470604913486600, -161.2726089333555700 64.3478744596386600, -161.2739881759135600 64.3487118804490000, -161.2752926353468000 64.3495715307016100, -161.2765151251728600 64.3504487815860700, -161.2776658940657300 64.3509938462890400, -161.2787866148104000 64.3515558982861100, -161.2801657989124600 64.3522931544056300, -161.2814842077299600 64.3530510184898000, -161.2827401991008900 64.3538285498477800, -161.2839322082048200 64.3546247808090500, -161.2858507678985800 64.3559570949440200, -161.2869216554100500 64.3567291656185600, -161.2878767758924700 64.3574713788011600, -161.2887773839690600 64.3582262832164200, -161.2897878891997000 64.3591070459534600, -161.2903753371520600 64.3592857772168800, -161.2929853990569000 64.3601191240983300, -161.2945295952645800 64.3606284308574500, -161.2960363688832800 64.3611583743595500, -161.2980750105532800 64.3619319271168100, -161.3000339444109800 64.3627432415074200, -161.3019094418672200 64.3635907778921100, -161.3036979317141400 64.3644729246858000, -161.3053190523323800 64.3653447238799600, -161.3068551681314800 64.3662449596372400, -161.3075872135790000 64.3667135244097000, -161.3082621188017000 64.3669989773209700, -161.3101075150497600 64.3672001664545500, -161.3122851226602600 64.3674748104142500, -161.3127108527236500 64.3675158096069700, -161.3134822875774700 64.3675545425081700, -161.3161409146714500 64.3677833741035100, -161.3187740181064000 64.3680621693337100, -161.3213765994504700 64.3683904011961100, -161.3239437160296500 64.3687674455612200, -161.3264704935184300 64.3691925865686600, -161.3289521349330500 64.3696650184259000, -161.3302644823199600 64.3699450088551500, -161.3307116935897600 64.3700014062399600, -161.3332789603557000 64.3703784506050700, -161.3358058862326300 64.3708035916125100, -161.3382876724381000 64.3712760225704400, -161.3407196038266000 64.3717948468547500, -161.3430970623794800 64.3723590788084700, -161.3454155281041000 64.3729676473391200, -161.3465457915550000 64.3732933790862500, -161.3490864060128000 64.3737196019781100, -161.3515684548203000 64.3741920329360400, -161.3540006443142500 64.3747108563210300, -161.3563783546773000 64.3752750882747500, -161.3580356064580300 64.3757039147039300, -161.3596613504909000 64.3761548068988500, -161.3612540192575600 64.3766273304869400, -161.3619653011576800 64.3768527131822500, -161.3634582539952000 64.3771430593047900, -161.3640602394884200 64.3772533116910500, -161.3665438225393400 64.3777200445445000, -161.3689763240980400 64.3782388679294400, -161.3713543384319600 64.3788030989839000, -161.3722782398488700 64.3790455508115500, -161.3733131598744000 64.3792196199895000, -161.3757957051076600 64.3796920509474300, -161.3773554119227000 64.3800246939844700, -161.3782735783629200 64.3801404412284300, -161.3808417912156600 64.3805174846942200, -161.3833696487902200 64.3809426257016600, -161.3858523496062000 64.3814150557602700, -161.3882851785181500 64.3819338791452700, -161.3906620201361000 64.3825069838102900, -161.3922052342841200 64.3827756319898900, -161.3946881005753700 64.3832480620485000, -161.3971210913652500 64.3837668845341700, -161.3994995841384800 64.3843311155885700, -161.4015567374534300 64.3848678237910700, -161.4027781265093000 64.3852005495657500, -161.4045464724417200 64.3857005942071000, -161.4062746186786800 64.3862263324793400, -161.4079605732218600 64.3867771600379800, -161.4086413330310600 64.3870156935195200, -161.4096147268381600 64.3872986948789000, -161.4100445434209200 64.3874007661324900, -161.4124864105194000 64.3879058982386700, -161.4148652621221300 64.3884701283937500, -161.4157042945175500 64.3886833513556100, -161.4188136159555700 64.3894876780140000, -161.4209085336019000 64.3900542751847000, -161.4229498831305700 64.3906564117640400, -161.4249344458679600 64.3912931389672300, -161.4268590930726600 64.3919634540502000, -161.4289000199199500 64.3927370023108700, -161.4293501333020000 64.3929232123364300, -161.4313036739253800 64.3929232123364300, -161.4330789212551700 64.3929379522247700, -161.4332347180078000 64.3929303556514600, -161.4358958488143400 64.3926926342577400, -161.4379522179205000 64.3925511825910300, -161.4392282425893000 64.3924822540528200, -161.4398338001897000 64.3922873430864800, -161.4415346232242400 64.3917770048049600, -161.4432707347565700 64.3912852725973200, -161.4443536533983700 64.3907580054776100, -161.4460864221506400 64.3899902713340000, -161.4478796523240800 64.3892475932019000, -161.4482665847350800 64.3885883559679000, -161.4485776818145300 64.3877313847956400, -161.4491094221620800 64.3865800942960000, -161.4497566291650800 64.3854399347052900, -161.4505180554638700 64.3843130769869800, -161.4513922405594100 64.3832016633261300, -161.4523775081155000 64.3821078080289900, -161.4525905952797300 64.3818986625932400, -161.4528116036725300 64.3816176622253800, -161.4537968145713200 64.3805238060288600, -161.4548912139583200 64.3794495883278700, -161.4560927091112000 64.3783970505834900, -161.4573990031614400 64.3773681946864800, -161.4587292983184500 64.3764182381112300, -161.4601489186376600 64.3754928537122700, -161.4610384533619000 64.3749381626661300, -161.4619098469618500 64.3744309558239800, -161.4621641203778200 64.3742571483487600, -161.4622708501196000 64.3741386581725700, -161.4627457614077500 64.3735346563993300, -161.4636574734136300 64.3725174781991400, -161.4646635818588000 64.3715171344083000, -161.4676120793339700 64.3687402635523500, -161.4688864609413800 64.3676102159387800, -161.4702812410863800 64.3665071794628100, -161.4716892835335800 64.3655039587407600, -161.4731969034143300 64.3645282815550100, -161.4748012246967300 64.3635820032069400, -161.4764991896858200 64.3626669205419800, -161.4783502948302200 64.3617552013415100, -161.4812396438944000 64.3603950981553200, -161.4826245252016600 64.3597639341583100, -161.4840557566678000 64.3591525012869900, -161.4855318373244000 64.3585614398585900, -161.4870512230354800 64.3579913659088400, -161.4895281313181700 64.3571375180820300, -161.4921020701543700 64.3563394156315700, -161.4939902444541800 64.3557848621816800, -161.4958793387604600 64.3552514212161700, -161.4978118055703400 64.3547480248015500, -161.5001877433696200 64.3541837910492000, -161.5026181198303400 64.3536649658655600, -161.5050983178330700 64.3531925331090000, -161.5076236285276000 64.3527673903028600, -161.5101892531315000 64.3523903450384300, -161.5127903218158600 64.3520621122767100, -161.5154218955040300 64.3517833161471900, -161.5180789784620600 64.3515544845518500, -161.5201287924098200 64.3514132460245500, -161.5221883352234600 64.3513017498759200, -161.5242553127324600 64.3512201202124200, -161.5263274208737400 64.3511684478656300, -161.5279088786917600 64.3511404753527400, -161.5304440000905000 64.3511180579520800, -161.5331523390092000 64.3511436454629100, -161.5358555374031000 64.3512203585327700, -161.5385484655392400 64.3513480523707800, -161.5412260107717400 64.3515264850593100, -161.5440216441835200 64.3517686868754600, -161.5467887340128400 64.3520661987960800, -161.5498420672575700 64.3524268593121700, -161.5523058940018000 64.3527416993699700, -161.5547376284387700 64.3531003921694400, -161.5572629688109300 64.3535255340762000, -161.5597431973906200 64.3539979668327600, -161.5621736035289500 64.3545167920164000, -161.5645495692072300 64.3550810257687500, -161.5668665807281000 64.3556895969973700, -161.5691202332121700 64.3563413482746700, -161.5713062431885300 64.3570350439321700, -161.5734204548900500 64.3577693646644800, -161.5754588456491700 64.3585429183210600, -161.5774175384886000 64.3593542336110400, -161.5792928048190600 64.3602017699957400, -161.5810810743320800 64.3610839167893700, -161.5823851182785500 64.3617793616283000, -161.5836350635073600 64.3624932182874500, -161.5848295232638600 64.3632246971620800, -161.5859671701487600 64.3639729888624300, -161.5871070563455600 64.3647505831729000, -161.5884391861195000 64.3657021783129200, -161.5897416535544300 64.3667356297455600, -161.5899897828022000 64.3669319283658300, -161.5913023721067500 64.3679530384020500, -161.5925034104040500 64.3690055770458100, -161.5935973934049600 64.3700797974447600, -161.5945822283871000 64.3711736545406000, -161.5953796140779000 64.3721811830152400, -161.5960843677993000 64.3732015843856400, -161.5966953779892800 64.3742332605566000, -161.5972116760779600 64.3752745963456000, -161.5974357430650600 64.3757745033906900, -161.5976196634167000 64.3762033837791700, -161.5980347374131700 64.3773636189359300, -161.5983325631972000 64.3785305882161100, -161.5985125598067500 64.3797020711936600, -161.5985743693116800 64.3808758384492400, -161.5985248706262500 64.3819761850529600, -161.5983714759628000 64.3830747339118800, -161.5981144299369700 64.3841696495097700, -161.5977541498341200 64.3852590981289300, -161.5973116815888000 64.3864262823470900, -161.5971980576442200 64.3867160816818700, -161.5968754573364700 64.3873883932598100, -161.5966881303529000 64.3885542833535300, -161.5963954271072400 64.3897214990480000, -161.5959853335562600 64.3908820777457400, -161.5954586159223500 64.3920338071145600, -161.5948162625604400 64.3931744955066300, -161.5940594839579800 64.3943019692605400, -161.5931897064397700 64.3954140807952600, -161.5923544808745800 64.3963545549188400, -161.5914384161499700 64.3972808359419000, -161.5906008928169200 64.3980469935739300, -161.5912309461512300 64.3985606089849500, -161.5923261081633200 64.3996348239879800, -161.5933120061441500 64.4007286765872200, -161.5941867497187000 64.4018400866507400, -161.5949486643493500 64.4029669416710800, -161.5955962859398200 64.4041070976645100, -161.5959850232901500 64.4049482272789100, -161.5962501874961400 64.4052850899350300, -161.5970121983542400 64.4064119440560000, -161.5976599008836800 64.4075520991501100, -161.5981920495234500 64.4087033869518000, -161.5986076181470400 64.4098636167125800, -161.5989058000626000 64.4110305805969000, -161.5990860134087700 64.4122020581784800, -161.5991478993560400 64.4133758200381400, -161.5990894218393200 64.4145687644369800, -161.5989086886850100 64.4157594137660100, -161.5980837711490800 64.4198147626412400, -161.5977927001729600 64.4209626294218700, -161.5973879521922000 64.4221040399695000, -161.5968606392071000 64.4232557648417100, -161.5962175591929800 64.4243964487371800, -161.5954599235366200 64.4255239179945000, -161.5945891603614400 64.4266360250325600, -161.5940095491013700 64.4272989117154700, -161.5933897246560500 64.4279549707453600, -161.5927301124047200 64.4286037443673600, -161.5920311683037500 64.4292447838198000, -161.5913101611350000 64.4298840570036800, -161.5903330989932800 64.4307135655786300, -161.5892901768002000 64.4315279673418800, -161.5878826352753800 64.4325321980026000, -161.5863749578380200 64.4335089273951700, -161.5847700088288300 64.4344562930235700, -161.5830708387481700 64.4353724881498800, -161.5812806788602200 64.4362557662906300, -161.5804126846976200 64.4366480694528700, -161.5793800273663400 64.4372064836923100, -161.5775897478685300 64.4380897609337900, -161.5757118780007300 64.4389384358601700, -161.5741935175168000 64.4395672184524500, -161.5740341495563300 64.4396394421066200, -161.5737543596759200 64.4397605538066000, -161.5721583742095800 64.4404934311269800, -161.5701963772609700 64.4413058858580100, -161.5681540951353600 64.4420805690630800, -161.5660354165012500 64.4428160040553700, -161.5638443784153000 64.4435107869932700, -161.5615851555304800 64.4441635922760300, -161.5592620547000400 64.4447731752418900, -161.5568759437697700 64.4453247995998600, -161.5559562763610300 64.4455433771252000, -161.5535753212440400 64.4461163684756600, -161.5511377978710400 64.4466360983772700, -161.5493288421523000 64.4469802329514300, -161.5489834278429000 64.4472038934449600, -161.5473776784370700 64.4481512572747300, -161.5456750387720000 64.4490653965508500, -161.5450277553266300 64.4498859829518000, -161.5440446803177000 64.4509806053707200, -161.5429518898178300 64.4520556603405300, -161.5417514522676800 64.4531091001049400, -161.5412828038582800 64.4534786962848300, -161.5413714176567600 64.4537967936871600, -161.5415624876186800 64.4547943190027000, -161.5416675158431600 64.4557942230250100, -161.5419310486789200 64.4600503581375500, -161.5425273747385000 64.4620942950157300, -161.5427395913590400 64.4629255563693800, -161.5428918726617600 64.4637592629796400, -161.5429840666613200 64.4645946090540200, -161.5430160771302300 64.4654307887998900, -161.5429833292172400 64.4663296449971900, -161.5428810286365400 64.4672275281279800, -161.5427092815081000 64.4681234354482600, -161.5424682730923000 64.4690163660125100, -161.5419440276946800 64.4707115862707400, -161.5417517418493700 64.4712396699748600, -161.5425612468040700 64.4722851273567700, -161.5433251273527200 64.4734119706859600, -161.5439744216821800 64.4745521149881700, -161.5445078797348200 64.4757033910986500, -161.5449244717869000 64.4768636100676000, -161.5452233911465500 64.4780305622607000, -161.5454040532544300 64.4792020290504400, -161.5454660983817000 64.4803757801182100, -161.5454763506530200 64.4848757771954400, -161.5454196385054800 64.4860495777259100, -161.5452442500220800 64.4872211929038000, -161.5449505035628600 64.4883883942091000, -161.5445389441169400 64.4895489576183500, -161.5440103406047000 64.4907006725980000, -161.5433656840790200 64.4918413466008900, -161.5426061886247000 64.4929688068650100, -161.5417332877610000 64.4940809040105600, -161.5407486308446000 64.4951755210335000, -161.5396540794721700 64.4962505706074000, -161.5387572737291700 64.4970362884939700, -161.5383517289491000 64.4975528977481100, -161.5374163557801800 64.4985958100486400, -161.5363812082261500 64.4996210641608600, -161.5354751916267700 64.5004252793032700, -161.5357275485874600 64.5014496907506900, -161.5358789539505400 64.5021517393113900, -161.5359876388184500 64.5028552573642700, -161.5360535267488400 64.5035597601748200, -161.5360765673796700 64.5042647657064100, -161.5360552381587000 64.5049950412881700, -161.5360012644467800 64.5058840642981900, -161.5358987237470700 64.5068745731031200, -161.5357115676347000 64.5078627805429500, -161.5354400416245800 64.5088473466278200, -161.5350845036468900 64.5098269322671700, -161.5345555107282000 64.5109786445488600, -161.5339103784611700 64.5121193158538000, -161.5331503227291700 64.5132467734199000, -161.5322767761522600 64.5143588678674900, -161.5313004676424400 64.5154440123313900, -161.5302160777097800 64.5165099472762900, -161.5287183332844200 64.5178995212459700, -161.5275062054470000 64.5189621466858000, -161.5261866383026800 64.5200007647235900, -161.5247745516042500 64.5210049854917400, -161.5232620034386700 64.5219817049917300, -161.5216518689385600 64.5229290616269400, -161.5199472075975000 64.5238452477600500, -161.5181942706490500 64.5247082533832700, -161.5163574485374000 64.5255382925582200, -161.5144400741501000 64.5263338553232300, -161.5124456296620400 64.5270934955684100, -161.5097790624537300 64.5280662229778800, -161.5095861443850300 64.5281363044469500, -161.5074607999759200 64.5288717331440000, -161.5052628685865000 64.5295665097866600, -161.5029965365609000 64.5302193096734400, -161.5006661251415200 64.5308288872433900, -161.4985461451884000 64.5313331191281900, -161.4979025615539600 64.5314792436722100, -161.4976238382695000 64.5315548173010100, -161.4953599946679800 64.5322193038778100, -161.4930294123774400 64.5328288805484400, -161.4906391897468000 64.5333940720788000, -161.4881938836407800 64.5339137983831400, -161.4856981597422400 64.5343870684085300, -161.4831567772634200 64.5348129774370100, -161.4819881838076000 64.5349830752088000, -161.4808717087623200 64.5357036713873500, -161.4792607666710200 64.5366510262239200, -161.4775552500747200 64.5375672114577100, -161.4757584028280000 64.5384504788066200, -161.4738736423546800 64.5392991447398000, -161.4719045569497000 64.5401115913769000, -161.4698548940880600 64.5408862664880900, -161.4677285586260500 64.5416216933865000, -161.4655296011101800 64.5423164700291000, -161.4632622123811800 64.5429692690166200, -161.4609307136814500 64.5435788456872500, -161.4589332861422000 64.5440549620669200, -161.4568967300000700 64.5444993476668300, -161.4537802868307500 64.5451487391230800, -161.4527145929041000 64.5456724584173000, -161.4521418263841500 64.5459277552617400, -161.4505293320629800 64.5468729984901300, -161.4488231778473400 64.5477891828246000, -161.4471567943505500 64.5486105894072500, -161.4454143443964500 64.5494022545104800, -161.4435986878291400 64.5501628759160400, -161.4417128050019000 64.5508912017676300, -161.4339883139095400 64.5537543310975400, -161.4334011555388600 64.5539692258991000, -161.4312738020443000 64.5547046527975700, -161.4290737914223000 64.5553994276415300, -161.4268053154129300 64.5560522257296700, -161.4244726997552600 64.5566618015009800, -161.4220803906974300 64.5572269912327100, -161.4214732700753200 64.5573559162426100, -161.4201134025114800 64.5577472202580800, -161.4177806420629500 64.5583567960293900, -161.4153881846170000 64.5589219857611200, -161.4129405915350300 64.5594417102667500, -161.4104425329964800 64.5599149793928300, -161.4078987745088000 64.5603408875219900, -161.4053141688138200 64.5607186234657300, -161.4026936477935700 64.5610474659678200, -161.4000422134773500 64.5613267864021000, -161.3973649263502400 64.5615560523699500, -161.3946668963601500 64.5617348259015700, -161.3919532757230700 64.5618627652544900, -161.3892292427353300 64.5619396267124400, -161.3864999999750000 64.5619652636860300, -161.3848835162612300 64.5619562731635000, -161.3832681153312200 64.5619293078913200, -161.3732582958336600 64.5617060880655900, -161.3713434125684000 64.5616506322709300, -161.3694333955347400 64.5615699199159400, -161.3675300469740500 64.5614640265436600, -161.3656351628324600 64.5613330528781300, -161.3629578972891000 64.5611037869102800, -161.3603064845566000 64.5608244664759900, -161.3576859851201000 64.5604956239739000, -161.3551014001095000 64.5601178880301600, -161.3549887285469400 64.5601001785804600, -161.3523476139512000 64.5596837960703700, -161.3498341455293700 64.5592608116372200, -161.3473655146068000 64.5587915525881600, -161.3449463257123300 64.5582768948628400, -161.3425810898454000 64.5577177980380300, -161.3403831827376700 64.5571451007658700, -161.3382419023418800 64.5565340294219800, -161.3361608693286400 64.5558856164281000, -161.3341435964498000 64.5552009598564500, -161.3331993631600500 64.5548667061336200, -161.3327087802859400 64.5546912241207500, -161.3306580823046400 64.5539165499089300, -161.3286880013501400 64.5531041050704700, -161.3268022893941200 64.5522554400365600, -161.3250045347314800 64.5513721735869700, -161.3231094527390300 64.5503494609589000, -161.3212492698379000 64.5492938349426000, -161.3200849841347000 64.5486110075920000, -161.3189712718067300 64.5479127460764000, -161.3179092318255500 64.5471997428738900, -161.3168999145993600 64.5464727048515100, -161.3155897022029700 64.5454429001697500, -161.3143852168042800 64.5443894720965000, -161.3132887417819700 64.5433144288179000, -161.3128616393531400 64.5428404663145400, -161.3120332657226200 64.5426043304255500, -161.3099766439069600 64.5419648755786300, -161.3092734118384600 64.5417269338509500, -161.3087124956850900 64.5415802733110100, -161.3064461951357800 64.5409243932462000, -161.3053505924558500 64.5406898545532000, -161.3045078143841000 64.5404751881794700, -161.3043709519578500 64.5404464557394100, -161.3017840907631600 64.5400909591305100, -161.3010057410221000 64.5399416087183200, -161.3006965397135000 64.5399004395537200, -161.3004756401386400 64.5398818613588800, -161.2993676483982300 64.5398459055641600, -161.2966717812776700 64.5396671320325500, -161.2939966399329700 64.5394378651653800, -161.2913473298153800 64.5391585447311000, -161.2898964400686200 64.5389806534344600, -161.2872001232870200 64.5388061345955200, -161.2855858294224700 64.5386740430726600, -161.2839801762441000 64.5385237177953900, -161.2823844911513000 64.5383482564669200, -161.2822226455586200 64.5383362478196400, -161.2796664998090800 64.5382573296121200, -161.2764647982118300 64.5381226264581200, -161.2732834770508000 64.5379171385651500, -161.2706085065772800 64.5376878716979800, -161.2679593673309200 64.5374085512637000, -161.2653539612163000 64.5370814246680900, -161.2626919202958500 64.5368538755059800, -161.2600428610891500 64.5365745541723800, -161.2574246881987700 64.5362457107709700, -161.2552491256466000 64.5359327296118300, -161.2548409845237800 64.5358813729270700, -161.2525994027402000 64.5356585577962400, -161.2499813179834000 64.5353297143948300, -161.2473991134782800 64.5349519775517700, -161.2452158653199000 64.5345894410499500, -161.2430657284006000 64.5341919470008000, -161.2409517244425000 64.5337600547827600, -161.2388768203089700 64.5332943714381600, -161.2361531668351500 64.5326548203637500, -161.2348051595304500 64.5323288817725100, -161.2324746195080500 64.5317193051018900, -161.2302081633760000 64.5310665052151100, -161.2280101114774300 64.5303717285724500, -161.2258846510557600 64.5296362998753900, -161.2238358317582000 64.5288616238648800, -161.2218675557430700 64.5280491772277900, -161.2209715719804400 64.5276455686881100, -161.2192660248071800 64.5273960041223500, -161.2176726275896500 64.5271353419225300, -161.2160963651551000 64.5268560466692500, -161.2145381305302600 64.5265609809046000, -161.2138548301362800 64.5264915901148600, -161.2112376222184500 64.5261627467134500, -161.2094684552050000 64.5259198928888000, -161.2077301808031700 64.5257032552011100, -161.2068482327597000 64.5256181820335500, -161.2053433980793200 64.5255281832791000, -161.2026696407912700 64.5252989164119400, -161.2000217012405000 64.5250195950783300, -161.1996098693000000 64.5249678471884600, -161.1984990995537700 64.5249251734580300, -161.1963747785731300 64.5248118301019500, -161.1942607395414800 64.5246671867413400, -161.1915868149795000 64.5244290372703000, -161.1914541281055000 64.5244238967454700, -161.1908924978904500 64.5244397652829800, -161.1881669999070800 64.5244654022565700, -161.1854415019237500 64.5244397652829800, -161.1827212074177600 64.5243629029257000, -161.1800113099739300 64.5242349635727800, -161.1773169824927300 64.5240561891418500, -161.1761068070834400 64.5239588896910700, -161.1744662853907400 64.5238197555773400, -161.1721033859624600 64.5235987849560000, -161.1697621503029700 64.5233385688199500, -161.1685821624368200 64.5231843404849900, -161.1684903524477800 64.5231814293795200, -161.1657944322672000 64.5233729660896000, -161.1630846202589900 64.5235009063418400, -161.1603644111886000 64.5235777677998000, -161.1576389995401500 64.5236034047733800, -161.1573409732073000 64.5236030990038800, -161.1469683546058600 64.5235796231011700, -161.1476321505033000 64.5243127675202600, -161.1483404322651200 64.5251956859322000, -161.1489771720588000 64.5260886551673700, -161.1491577892006000 64.5263787036143400, -161.1501553495896800 64.5274981608115500, -161.1515077051164700 64.5291010206955800, -161.1523755670787400 64.5302032738620700, -161.1531319868517000 64.5313206509273400, -161.1537755354126000 64.5324510627663700, -161.1543049959787500 64.5335923950730100, -161.1546446905999500 64.5345087116078300, -161.1549108188791600 64.5354295247528300, -161.1551030570604200 64.5363537400331200, -161.1552211677227000 64.5372802584772100, -161.1553351477988000 64.5385852107389200, -161.1553792595451600 64.5395697453475300, -161.1553224394789700 64.5407435368847500, -161.1551467065552300 64.5419151439687700, -161.1548523791339600 64.5430823362808600, -161.1544400013049800 64.5442428915962400, -161.1539103455859600 64.5453945984820000, -161.1532644048284000 64.5465352652902900, -161.1525033949157300 64.5476627165611500, -161.1516287511659000 64.5487748074114600, -161.1509147721989500 64.5495807501515600, -161.1501410863420500 64.5503764298284200, -161.1471460813265500 64.5533225899656000, -161.1464326554426500 64.5539987146689800, -161.1456761007714000 64.5546661096532800, -161.1448769919795700 64.5553242659021900, -161.1440359343109000 64.5559726824933500, -161.1426219887137800 64.5569768996642200, -161.1411074512478500 64.5579536155669900, -161.1394951970456800 64.5589009677055400, -161.1377882918961300 64.5598171502413700, -161.1359899805531200 64.5607004166909000, -161.1341036858364000 64.5615490808255000, -161.1321329960409000 64.5623615247646400, -161.1300816631382000 64.5631361980771300, -161.1279535955819400 64.5638716240762300, -161.1257528457172200 64.5645663980209300, -161.1234836079820800 64.5652191961090700, -161.1211502090149000 64.5658287709810600, -161.1187570959632000 64.5663939598134700, -161.1179462492199800 64.5665660891537500, -161.1172622590460000 64.5667447682565100, -161.1148690659546000 64.5673099570889200, -161.1124207210394300 64.5678296815945600, -161.1099218944798000 64.5683029498213200, -161.1073773535819700 64.5687288579504800, -161.1047919537856200 64.5691065938942800, -161.1021706269728200 64.5694354354969800, -161.0995183769715000 64.5697147559312700, -161.0968402669647300 64.5699440218991200, -161.0941414077997000 64.5701227954307300, -161.0914269516924300 64.5702507347836600, -161.0887020823352000 64.5703275962416100, -161.0859719996080600 64.5703532332152000, -161.0841364329500000 64.5703416472492800, -161.0601127918718300 64.5700363471997300, -161.0578494635818500 64.5699897389353600, -161.0555915537072200 64.5699079024278100, -161.0533420318092800 64.5697909464950600, -161.0511038539596600 64.5696390222231600, -161.0492448608616200 64.5694854369034500, -161.0476884239815500 64.5693463036890300, -161.0465657130372000 64.5692368094312900, -161.0462898882677000 64.5692340745929400, -161.0436256395116200 64.5693037351792900, -161.0417301941931000 64.5693408582940300, -161.0398329996931500 64.5693532365626800, -161.0371030176900700 64.5693275995890900, -161.0343782472582700 64.5692507381311300, -161.0316638909757500 64.5691227987782100, -161.0289651307361700 64.5689440252466500, -161.0262871187555000 64.5687147592787500, -161.0257788794916700 64.5686612325299000, -161.0236849636901000 64.5688817588861000, -161.0210069355216300 64.5691110248539500, -161.0183081581949000 64.5692897974861900, -161.0155937857246000 64.5694177368391100, -161.0128689991050000 64.5694945991964500, -161.0101390000148200 64.5695202352707200, -161.0073642047942000 64.5694937502364600, -161.0067511144723400 64.5694820194796600, -161.0061522712103000 64.5695339607237900, -161.0043204331414600 64.5698015908707800, -161.0017742096120500 64.5701210039812300, -161.0016992960856000 64.5701319667169300, -161.0009625534790400 64.5702568519722000, -160.9983770079925000 64.5706345879159500, -160.9957555345902200 64.5709634295187100, -160.9942205546348600 64.5711158825919800, -160.9934245053366300 64.5712759394331200, -160.9908796874476000 64.5717018475622800, -160.9907168849762200 64.5717256310330800, -160.9898853799063300 64.5726473731778000, -160.9887877294701200 64.5737224128591300, -160.9875819508463300 64.5747758364357800, -160.9862703319102500 64.5758056375202000, -160.9848553601866900 64.5768098519931200, -160.9833397228499000 64.5777865651978700, -160.9817262977304300 64.5787339155378400, -160.9815208386157800 64.5788441157633900, -160.9811100148153000 64.5791666288369000, -160.9800242048531500 64.5799371400870000, -160.9795093780553300 64.5803868244924000, -160.9781974893226400 64.5814166246775600, -160.9773333082855200 64.5820298130254900, -160.9765421333127600 64.5827208188108000, -160.9752301321648500 64.5837506189959100, -160.9738147494511000 64.5847548325695000, -160.9722986705472000 64.5857315448749300, -160.9706847759816000 64.5866788943155800, -160.9689761333418400 64.5875950750527200, -160.9677399567336000 64.5882099154553100, -160.9670129187112000 64.5885605934966500, -160.9665582133908000 64.5890643415461900, -160.9654599028522200 64.5901393785295600, -160.9642534002741700 64.5911928012068900, -160.9629409926326700 64.5922225995933600, -160.9615251701504500 64.5932268122676300, -160.9600086200018000 64.5942035245730600, -160.9583942245138200 64.5951508731143300, -160.9566850512740600 64.5960670520528900, -160.9548726826281800 64.5969557899777600, -160.9530959091488600 64.5977893428039900, -160.9516902040396600 64.5984275269088900, -160.9502366774806600 64.5990456480382700, -160.9487368799030700 64.5996430460897400, -160.9471924103014500 64.6002190843433400, -160.9450614469282000 64.6009545067451500, -160.9431520081586200 64.6015564940370300, -160.9428603921933200 64.6016565211315900, -160.9426337504472000 64.6017295415851400, -160.9405075858563800 64.6024825025655200, -160.9383037189414600 64.6031772747115300, -160.9361685701233900 64.6037906267361000, -160.9360318165150800 64.6038318165851100, -160.9354662355782800 64.6039887878523600, -160.9337058099751200 64.6045125718977100, -160.9333023974876400 64.6047155569774500, -160.9315685900183700 64.6054788916375700, -160.9297656174892400 64.6062121115997500, -160.9278963118652800 64.6069140639329500, -160.9257648250866000 64.6076494863347600, -160.9247752605698000 64.6079613883075000, -160.9243169786456000 64.6081463194971100, -160.9225661047419200 64.6088020583683300, -160.9204344704744000 64.6095374798708800, -160.9182300324900000 64.6102322511175700, -160.9159569915219000 64.6108850465077500, -160.9136196805038000 64.6114946186817700, -160.9112225555764400 64.6120598048161700, -160.9087701879937500 64.6125795275232200, -160.9062672560290300 64.6130527939513400, -160.9037185332836700 64.6134787002818600, -160.9011288841906300 64.6138564344269600, -160.8989873528840000 64.6141088192666800, -160.8987203855373300 64.6141536378801200, -160.8985040913906600 64.6141884164623000, -160.8982960278394000 64.6142188495203400, -160.8957967246391000 64.6147197871885000, -160.8932478463110300 64.6151456935189700, -160.8906580389373200 64.6155234276641300, -160.8903428778215200 64.6155628971100700, -160.8888046603068000 64.6160934602450500, -160.8865996917223500 64.6167882305924200, -160.8843261039665000 64.6174410250832800, -160.8819882299728200 64.6180505963579900, -160.8805765416740300 64.6183833599042100, -160.8799217776678700 64.6187070304051800, -160.8782737187571000 64.6194899514001700, -160.8765553148758400 64.6202445239656500, -160.8747692082323500 64.6209695852782000, -160.8729181453561000 64.6216640183798200, -160.8707855038478800 64.6223994398823200, -160.8695870295177600 64.6227769833711200, -160.8661538801973700 64.6248310690986000, -160.8647452370030600 64.6256411613106300, -160.8632665977752400 64.6264279691755000, -160.8624699198509000 64.6268279372595800, -160.8591375998203400 64.6284679993987100, -160.8575061091196000 64.6292401564081700, -160.8558060541061000 64.6299846124999200, -160.8547905396516500 64.6303961134899000, -160.8542855343499000 64.6312851364999100, -160.8542444883924000 64.6313471411576800, -160.8546953158361200 64.6323144006891000, -160.8548388098631700 64.6326957680952900, -160.8553463341659700 64.6334400344301200, -160.8559994650032600 64.6345801517526300, -160.8565360778776500 64.6357314008835100, -160.8568946744496500 64.6367013116163200, -160.8571705378899700 64.6376761866067700, -160.8573632922821000 64.6386547290325700, -160.8574726705273000 64.6396356366753400, -160.8578171963065400 64.6446354931335300, -160.8578445491865800 64.6454036823341200, -160.8577875222763000 64.6465774567842600, -160.8576111175590000 64.6477490476804600, -160.8575664824072000 64.6479253741567300, -160.8578369373247800 64.6489745160611200, -160.8580187550614700 64.6501459549718900, -160.8580522691968300 64.6507757744824400, -160.8584331356806300 64.6515924020677600, -160.8588095433257500 64.6526166309528200, -160.8590936409587500 64.6536463142260800, -160.8592849951064000 64.6546799248387200, -160.8593833116904600 64.6557159267486600, -160.8597618282457500 64.6632987692228800, -160.8597761652378000 64.6638476704337100, -160.8597191014553400 64.6650214421858900, -160.8595425798261800 64.6661930303840800, -160.8592469205089500 64.6673602038104000, -160.8588326720901000 64.6685207402400100, -160.8587239719337300 64.6687789311028500, -160.8584473746466000 64.6694180469053800, -160.8579233747639000 64.6705035025346400, -160.8572954159506600 64.6715787913282200, -160.8565645504136500 64.6726420867629500, -160.8557320066267700 64.6736915838995400, -160.8548614080275200 64.6746603075272300, -160.8539041579505000 64.6756139243431700, -160.8529875581292900 64.6764378544235100, -160.8529473440446500 64.6767353672434500, -160.8528160547171200 64.6775117825428100, -160.8526323672898900 64.6782862454139700, -160.8523964310504400 64.6790581083450900, -160.8521084393529700 64.6798267256229500, -160.8515761540162700 64.6809784136229400, -160.8510075837329800 64.6819774695845800, -160.8512882540496500 64.6873562823665800, -160.8513039067498800 64.6879306559750400, -160.8512467944040000 64.6891044241299400, -160.8510701189907800 64.6902760087308500, -160.8507742006688000 64.6914431776605700, -160.8504484347474500 64.6923550209675100, -160.8504714421033600 64.6924185868483600, -160.8506966683165700 64.6932908195157700, -160.8512451639331300 64.6942461657280300, -160.8517829639126300 64.6953974049663400, -160.8522029545027300 64.6965575870630700, -160.8525043191190000 64.6977245032832700, -160.8526864696048600 64.6988959341001100, -160.8527490444328000 64.7000696491950300, -160.8527323907871700 64.7007161511295400, -160.8525722808860200 64.7036892198816500, -160.8524732709247000 64.7047007296550300, -160.8522853791669000 64.7057099299693700, -160.8520088628187400 64.7067153918019400, -160.8516441022934500 64.7077156915260000, -160.8511112728669200 64.7088673750294000, -160.8510652770408700 64.7089481134647100, -160.8511584126306000 64.7096995599867500, -160.8512237609677700 64.7103983565989400, -160.8512466325260300 64.7110976424423300, -160.8512136615812000 64.7117747132325000, -160.8516271779518800 64.7121046232298300, -160.8518373675004800 64.7122554791071100, -160.8531477138958500 64.7130884995347000, -160.8542898915652000 64.7139073331569500, -160.8545777861359000 64.7140842091190000, -160.8560026153284000 64.7148326591000100, -160.8576277289365000 64.7157788834887200, -160.8591548928839600 64.7167545049165400, -160.8605811924680300 64.7177576698806000, -160.8608015092822000 64.7179290311999000, -160.8622796736679800 64.7186957374183900, -160.8638907758386000 64.7195672515275100, -160.8654164783877400 64.7204664395745800, -160.8668541759794000 64.7213917727122000, -160.8682014143637700 64.7223416762274200, -160.8689653848446000 64.7229357872568600, -160.8701063763082000 64.7235147429111000, -160.8712988341738400 64.7241392438310800, -160.8724216512382000 64.7247641521439600, -160.8735012369924700 64.7254028389699000, -160.8745366633363300 64.7260547584204500, -160.8762038598202400 64.7271381680920400, -160.8771753380713700 64.7277896028080000, -160.8781027135693500 64.7284526837444200, -160.8793712414895700 64.7294543351495100, -160.8795868467555600 64.7296164208611900, -160.8807737405156800 64.7304526869419900, -160.8820970749200400 64.7314814852823600, -160.8833142488534800 64.7325339654701700, -160.8844229348705000 64.7336081247152600, -160.8854210114704700 64.7347019215565000, -160.8863065675940000 64.7358132758620300, -160.8863449848331600 64.7358693962556800, -160.8876266302647500 64.7364672160891800, -160.8894083383241300 64.7373346760545000, -160.8911297945044000 64.7382497020621500, -160.8927563155514800 64.7391959228536400, -160.8942848024016700 64.7401715406841200, -160.8957123376542300 64.7411747011515800, -160.8970361981620000 64.7422034985926300, -160.8982538550313600 64.7432559760824800, -160.8988386310979300 64.7438223151477800, -160.8988976742882000 64.7438735630145700, -160.9001183717654200 64.7449229783128400, -160.9012275667987500 64.7459971357592400, -160.9022261011536200 64.7470909308018500, -160.9031120646700000 64.7482022833087900, -160.9038837567299500 64.7493290798731800, -160.9045396961500400 64.7504691774106500, -160.9050786211814000 64.7516204076557600, -160.9052334790417800 64.7520099472013700, -160.9057082788140000 64.7532597485386000, -160.9060618032096000 64.7543244028489700, -160.9061743506657000 64.7547990920045300, -160.9108612385553000 64.7571681976542700, -160.9109708110540600 64.7572237155021000, -160.9126935343791000 64.7581387388118000, -160.9143212533231500 64.7590849569052700, -160.9158508652252200 64.7600605711385200, -160.9172794526845700 64.7610637289080300, -160.9186042889567400 64.7620925227518000, -160.9198228433495200 64.7631449966443100, -160.9209327866187800 64.7642191513927500, -160.9219319963645200 64.7653129428380800, -160.9228185588294000 64.7664242926470600, -160.9230198810626300 64.7667180561933800, -160.9239491199559000 64.7673105826173700, -160.9253780914257600 64.7683137385882300, -160.9267032829301300 64.7693425315326900, -160.9279221646761200 64.7703950045258800, -160.9290324074196400 64.7714691574756800, -160.9300318860626600 64.7725629480216900, -160.9302818040620000 64.7728690700515700, -160.9307584186660700 64.7733301596592200, -160.9317579665569000 64.7744239493058600, -160.9318583219040000 64.7745421166254100, -160.9323033316334200 64.7750699395261300, -160.9331561695215700 64.7761530874950600, -160.9339005302852300 64.7772507046563500, -160.9345350577467000 64.7783608116022300, -160.9350585971765000 64.7794814091397500, -160.9354007460475800 64.7803957174884300, -160.9354692671929000 64.7806857461503100, -160.9361110908541300 64.7818301838160000, -160.9366506445116200 64.7829814086651400, -160.9370480198502000 64.7840652868835600, -160.9371306729421700 64.7843722156053400, -160.9374598787703700 64.7849174988435300, -160.9379336587113600 64.7857503034338200, -160.9383689161925000 64.7865711551347700, -160.9387438012853700 64.7873974090632600, -160.9391454834772600 64.7884946557038600, -160.9394406931334600 64.7895980357208100, -160.9396289140431000 64.7907056704303800, -160.9397098125577700 64.7918156739542600, -160.9397439903928300 64.7932123714538200, -160.9403190618752000 64.7932500755306400, -160.9430195290280200 64.7934788891394600, -160.9456940732228800 64.7937576636853100, -160.9483376159881500 64.7940858703667000, -160.9509451382075400 64.7944628859534600, -160.9535116891131300 64.7948879945853400, -160.9555108640351200 64.7952626521497500, -160.9565280467319300 64.7953686696284300, -160.9591717477779000 64.7956968763098800, -160.9617794255800000 64.7960738918966400, -160.9642376720309200 64.7964799178140000, -160.9658204599462300 64.7967576617367600, -160.9677443265394200 64.7971112580781300, -160.9696396594427000 64.7974918592619200, -160.9715043749269200 64.7978990453047500, -160.9733339655900000 64.7983440667253500, -160.9738382730178600 64.7984621180323800, -160.9749997951044200 64.7987506718060900, -160.9754173979945000 64.7988311044719600, -160.9769324408794000 64.7990820090275300, -160.9794535382501700 64.7995544040126100, -160.9819239947965000 64.8000731887267400, -160.9843391169566500 64.8006373784123200, -160.9866915662627500 64.8012576741024300, -160.9876698379926000 64.8015109348817800, -160.9878431256596800 64.8015569450969900, -160.9910954231152700 64.8023466595707300, -160.9934045988431400 64.8029469498419000, -160.9956514362647500 64.8035888184692800, -160.9978318155857800 64.8042710900388100, -160.9999417393197800 64.8049925144930000, -161.0002917221852000 64.8051257742351400, -161.0008794786050100 64.8052667780394200, -161.0029231672703200 64.8054797042250400, -161.0055678575705500 64.8058079100071000, -161.0081765129357000 64.8061849255938700, -161.0107441790006200 64.8066100333264200, -161.0132659796412300 64.8070824283114500, -161.0157371250682300 64.8076012121263100, -161.0181529217199500 64.8081654009125700, -161.0205087785572600 64.8087739235777500, -161.0228002187550700 64.8094256235937100, -161.0250228859973700 64.8101192643926000, -161.0271725534705400 64.8108535293669700, -161.0290267396922600 64.8115422616660900, -161.0308166675551400 64.8122612201792100, -161.0325396211066000 64.8130093167266600, -161.0341929878161000 64.8137854190619000, -161.0438619795466800 64.8185043336081900, -161.0446371609761800 64.8188898387950900, -161.0463638269290500 64.8198048522122000, -161.0473952081223400 64.8204030344725200, -161.0489464451223000 64.8206934714266400, -161.0514188388083300 64.8212122543421300, -161.0538358549407300 64.8217764422290700, -161.0561929006818000 64.8223849630956000, -161.0584854974077600 64.8230366613129300, -161.0607092879032800 64.8237303012124900, -161.0628600417575000 64.8244645634888500, -161.0649336688537000 64.8252380550922000, -161.0669262247654400 64.8260493065303100, -161.0688339170516000 64.8268967772645000, -161.0706531142498000 64.8277788566089700, -161.0722295169786000 64.8286106341734600, -161.0737271993507400 64.8294684021451000, -161.0751437943506000 64.8303508097421300, -161.0764656268871400 64.8312462494149600, -161.0784709001119000 64.8318693231108200, -161.0806223032766400 64.8326035844879100, -161.0826965580996600 64.8333770751919500, -161.0846897156578200 64.8341883257306800, -161.0865979853087400 64.8350357946662300, -161.0884177310934000 64.8359178731113800, -161.0888669649384600 64.8361574677929900, -161.0931182320207700 64.8380757909650400, -161.0941132185501800 64.8383863979140100, -161.0943857598948600 64.8384775549952200, -161.0956629941518400 64.8388675558930500, -161.0966274145235400 64.8391515105338400, -161.0979516842228000 64.8395367072532700, -161.1001768362919200 64.8402303453542000, -161.1023289085522700 64.8409646058319700, -161.1031780106566500 64.8412841061766000, -161.1054023362488000 64.8419803496135000, -161.1075545470047200 64.8427146100912600, -161.1095532677690600 64.8434596525410100, -161.1096302425416400 64.8434859756972600, -161.1097073782928500 64.8435136181590200, -161.1118581762138400 64.8442568646626100, -161.1138041076734000 64.8447740278991200, -161.1160986109621000 64.8454257243178000, -161.1183242495644400 64.8461193606200400, -161.1204767921702000 64.8468536210978100, -161.1225521441661000 64.8476271091038800, -161.1245463575283500 64.8484383578439700, -161.1251709357900400 64.8487155882538700, -161.1269127355343000 64.8492583695781400, -161.1290655290509000 64.8499926291565900, -161.1314008570638800 64.8508678160968700, -161.1336323241724000 64.8517907930107600, -161.1355483828515700 64.8526232135905000, -161.1371998223139300 64.8533684700788600, -161.1387834933635000 64.8541399094293000, -161.1399210332290600 64.8547326651803900, -161.1410185442703700 64.8553389350438500, -161.1428066087379700 64.8563567031993700, -161.1443132528543200 64.8570435577140600, -161.1457629923681600 64.8577519159182400, -161.1469291774395500 64.8583599655400500, -161.1480578769694300 64.8589725279598500, -161.1484587362816000 64.8591526648636400, -161.1501261495021700 64.8599861268583000, -161.1503782429615200 64.8601129204749300, -161.1515125767439800 64.8607196157177600, -161.1525042267886000 64.8611748507388500, -161.1543257415397000 64.8620569246873500, -161.1556336363832000 64.8627412691942600, -161.1568881654564500 64.8634434643444700, -161.1580879788771000 64.8641627574053800, -161.1592317870173200 64.8648983758594100, -161.1598249519599300 64.8652937699915200, -161.1604694250239000 64.8655343845043100, -161.1622406020221400 64.8662212821864700, -161.1624133357068400 64.8662935481087900, -161.1628736339110600 64.8660168033328500, -161.1642740878788200 64.8652367259941800, -161.1676363274545200 64.8634328433511200, -161.1687838569894000 64.8628349263908000, -161.1706054248005000 64.8619528524422400, -161.1725156037121000 64.8611053871039800, -161.1745107559666000 64.8602941401624700, -161.1765870855255400 64.8595206530557700, -161.1787439709574700 64.8587953336377700, -161.1790746408819400 64.8586825631498400, -161.1812138330519000 64.8579533919355500, -161.1834404501166500 64.8572597565325900, -161.1839646334610400 64.8571109412170000, -161.1850679379349500 64.8564719198432700, -161.1867969574136300 64.8555569118220800, -161.1886874825412700 64.8546426925063300, -161.1906731622366000 64.8537657689751100, -161.1926451425592600 64.8529333582878800, -161.1945706612070200 64.8521539545414500, -161.1965713326008800 64.8514096333479400, -161.1985028776056800 64.8507478870054100, -161.2004938183350200 64.8501188436097800, -161.2016580644680600 64.8497658246331500, -161.2028915503047700 64.8491128988412700, -161.2043176394474800 64.8484154862857200, -161.2057991124390500 64.8477393175155600, -161.2073342200981500 64.8470851875314300, -161.2089211493915000 64.8464538670523900, -161.2121707075121200 64.8452047905686900, -161.2139426849069500 64.8445486146269400, -161.2160950431516800 64.8438143541491700, -161.2183217168737000 64.8431243097391500, -161.2184298450612800 64.8430905374983700, -161.2190075308728300 64.8429249669137600, -161.2192260814185000 64.8428500237096700, -161.2208338605941500 64.8420638102966800, -161.2227426275701700 64.8412163422604500, -161.2247363058358200 64.8404050926209800, -161.2268111020507000 64.8396316028162700, -161.2288218242677500 64.8389435540018400, -161.2308967248039800 64.8382909735496500, -161.2323691263340800 64.8378473334877300, -161.2337765815239800 64.8374437843032800, -161.2340127623790500 64.8366237015226800, -161.2343669189981000 64.8356754113911500, -161.2348108675275000 64.8347121484469500, -161.2353370095953000 64.8337564191235200, -161.2359446374350400 64.8328094941628600, -161.2366329353616500 64.8318726326159500, -161.2377186850692400 64.8304840694842700, -161.2383144310661000 64.8297569891937500, -161.2393160348071300 64.8286632085403200, -161.2404286382710000 64.8275890645837200, -161.2416501109638300 64.8265366014830400, -161.2429781182455300 64.8255078175317900, -161.2444101249273000 64.8245046705541800, -161.2459433979694000 64.8235290662135000, -161.2475750109779500 64.8225828580125400, -161.2493018549966000 64.8216678445954200, -161.2511206385066200 64.8207857643516300, -161.2530278982189000 64.8199382936174400, -161.2550200026709600 64.8191270412800100, -161.2570931603210600 64.8183535487772800, -161.2592434267427300 64.8176192856016100, -161.2603862672124300 64.8172627313899700, -161.2617118319354600 64.8166197547979000, -161.2636187966701000 64.8157722831643900, -161.2656105926547000 64.8149610308269600, -161.2676834301461500 64.8141875374249700, -161.2698333638186600 64.8134532733499200, -161.2716809040504400 64.8128767719455300, -161.2719713571923400 64.8123671558196300, -161.2728352801240400 64.8109785090509800, -161.2736334203460400 64.8098039117211900, -161.2745558909416000 64.8086459743323100, -161.2755567095744600 64.8075521891822200, -161.2766684397966200 64.8064780425277100, -161.2778889547114700 64.8054255749303800, -161.2792159214775700 64.8043967882812200, -161.2804899325643000 64.8034989402239600, -161.2818450139362200 64.8026229331019300, -161.2832790998505500 64.8017700988110600, -161.2847900058540600 64.8009417305764800, -161.2873188445889800 64.7996095630309700, -161.2880650921302700 64.7992237988393100, -161.2898823620813300 64.7983417158975500, -161.2917880344901700 64.7974942415660300, -161.2925407193786800 64.7971874666283200, -161.2926842062111000 64.7967215719430700, -161.2929865744708000 64.7959254102295300, -161.2935263880323500 64.7947741871790300, -161.2941834093368500 64.7936340968361700, -161.2949563730381600 64.7925073074663400, -161.2958437943556000 64.7913959621540100, -161.2968439717718600 64.7903021743059600, -161.2979549897309500 64.7892280249534500, -161.2991747231349400 64.7881755546581500, -161.3005008409410300 64.7871467653110400, -161.3016199572951700 64.7863616823458400, -161.3016060609709000 64.7859585972115600, -161.3016755264043800 64.7847226957958400, -161.3018779907766300 64.7834894599706700, -161.3019597607343500 64.7831149957605100, -161.3019304545268300 64.7829112714380800, -161.3018407066832400 64.7820743290670900, -161.3018120866584600 64.7812365997892800, -161.3018748602365800 64.7800628972849500, -161.3020575674027800 64.7788914799579000, -161.3023598475289200 64.7777245763281800, -161.3027811079617200 64.7765644086206300, -161.3033205330161500 64.7754131819728500, -161.3039770803779300 64.7742730889319800, -161.3047494882982300 64.7731462959648600, -161.3056362719963200 64.7720349479545200, -161.3064625565017400 64.7711209417781200, -161.3073661988909500 64.7702203732716800, -161.3084771619914000 64.7691827130118400, -161.3086399626641300 64.7690219223239300, -161.3094748356950800 64.7681081553671400, -161.3105849390436800 64.7670340015180300, -161.3118036697035800 64.7659815276254600, -161.3131286966320200 64.7649527346810000, -161.3145574891367700 64.7639495778108200, -161.3160873222720700 64.7629739635776200, -161.3170729252752600 64.7624146230364800, -161.3172908130205800 64.7622744574003400, -161.3182268597817300 64.7616109933526900, -161.3194414130907100 64.7608150528724300, -161.3231378569265400 64.7584833491272900, -161.3240736410856500 64.7579092021480300, -161.3250440221638700 64.7573456293973200, -161.3260483427568000 64.7567930085905300, -161.3270859238762700 64.7562517138455900, -161.3288553804714000 64.7553905500339000, -161.3307089641473600 64.7545623041070800, -161.3375149983184800 64.7516473450489800, -161.3395493097528000 64.7508140287445100, -161.3416687330255900 64.7500203743408600, -161.3438135639448000 64.7492861021719400, -161.3460312300572000 64.7485924541784900, -161.3483175144417000 64.7479407469679700, -161.3506680706748900 64.7473322180075000, -161.3530799579736500 64.7467739134853600, -161.3533383619758000 64.7467136930825400, -161.3557180904175000 64.7461570208299100, -161.3581836222763300 64.7456382316191300, -161.3606996942354800 64.7451658312381800, -161.3632615281969400 64.7447407190090300, -161.3654186141776800 64.7444244382372700, -161.3659052778063000 64.7443613876679400, -161.3677198686769700 64.7433896881836400, -161.3695333848578000 64.7425075971479500, -161.3714351218333700 64.7416601147225500, -161.3734214580338500 64.7408488515932800, -161.3754886136086000 64.7400753491980400, -161.3776326558223700 64.7393410761297900, -161.3798495062496800 64.7386474263377000, -161.3821349506674200 64.7379957182278600, -161.3844846435514200 64.7373871883681300, -161.3864152235836700 64.7369299649460000, -161.3886307304238400 64.7362314192446300, -161.3909159706954600 64.7355797102354700, -161.3932654540374500 64.7349711803757400, -161.3956747153158300 64.7344069843948700, -161.3981391760820800 64.7338881933855000, -161.3997029775103700 64.7335977762164700, -161.4006526525978000 64.7334086487901500, -161.4021679679773000 64.7330821912901800, -161.4046828735157800 64.7326097900098600, -161.4072435185735000 64.7321846768813900, -161.4098450414155000 64.7318076567979700, -161.4124825011664700 64.7314794465193000, -161.4151508921998800 64.7312006692755000, -161.4178451468360200 64.7309718529687100, -161.4198095755514500 64.7308375877844900, -161.4217829318368200 64.7307298885735300, -161.4237632524721000 64.7306488632544900, -161.4257485643447300 64.7305945918669700, -161.4271082160712800 64.7305666193540800, -161.4301389997150400 64.7305354533485200, -161.4328852252729000 64.7305610390607700, -161.4356262392595000 64.7306377476339800, -161.4383568390968300 64.7307654324787900, -161.4410718410925700 64.7309438525767900, -161.4430336410896400 64.7311052889779700, -161.4449824944465200 64.7312932203059300, -161.4469164451378200 64.7315074586023800, -161.4488327493319000 64.7317598551332500, -161.4491986636873500 64.7317962542937800, -161.4510162340119700 64.7319168560781000, -161.4537105830769000 64.7321456714856300, -161.4541043809124000 64.7321859943882000, -161.4567060413506900 64.7318076567979700, -161.4593435011016700 64.7314794465193000, -161.4620139048178400 64.7312145584052100, -161.4624283465908800 64.7311669842689500, -161.4625136778639000 64.7311580540010700, -161.4650658863815200 64.7308404449306600, -161.4662147226313200 64.7307204187124000, -161.4669502322673800 64.7299116853760100, -161.4679963155774700 64.7288891076462400, -161.4687474707191700 64.7281943966541500, -161.4700163161000700 64.7270880506730500, -161.4714022073459600 64.7260076807099300, -161.4728289431012000 64.7250045175445000, -161.4743565719981600 64.7240288979153900, -161.4759821811327400 64.7230826744259400, -161.4777026723404300 64.7221676457203300, -161.4790473107847500 64.7215057662781400, -161.4804416007992000 64.7208629524633400, -161.4818840620997700 64.7202398859620300, -161.4833731631409300 64.7196372250779200, -161.4868447566801400 64.7182772181191700, -161.4889393577651300 64.7174922916360000, -161.4910816121266600 64.7167580149704800, -161.4932966135478400 64.7160643633797000, -161.4955801523021500 64.7154126525719000, -161.4979278864627500 64.7148041200142100, -161.5003367250597800 64.7142452147448900, -161.5010983393168800 64.7140663800594200, -161.5035031570450300 64.7134899191245300, -161.5059657157451600 64.7129711263164600, -161.5084787542910500 64.7124987241368800, -161.5110374990812800 64.7120736083104500, -161.5136370910788600 64.7116965873277100, -161.5162725939050600 64.7113683761497200, -161.5189390037320200 64.7110895971072800, -161.5216312591752500 64.7108607808004300, -161.5240468930496400 64.7106993956606400, -161.5264753395652500 64.7105782380952500, -161.5284733822407800 64.7104953188039600, -161.5315111329324200 64.7104008827945400, -161.5345559999594000 64.7103693795433000, -161.5373001822575800 64.7103949652554900, -161.5400391565817700 64.7104716738287500, -161.5427677239512700 64.7105993595728300, -161.5454807060697000 64.7107777805702000, -161.5481729534190300 64.7110065968769800, -161.5508393560514300 64.7112853759194300, -161.5534748507837200 64.7116135870974200, -161.5560744346874000 64.7119906080801600, -161.5573855059363000 64.7122015737437000, -161.5585505902375300 64.7123953947317400, -161.5607659675753200 64.7127848290566600, -161.5629451481000800 64.7132100123322400, -161.5650827232890000 64.7136889444892600, -161.5652079197097000 64.7137138287302500, -161.5675760882658400 64.7140736151052900, -161.5701350219137000 64.7144987300324000, -161.5726482457199300 64.7149711322120400, -161.5751109860831000 64.7154899250200500, -161.5775185647299600 64.7160541227995600, -161.5798664068092000 64.7166626553573100, -161.5821500507841800 64.7173143661651100, -161.5843651547281000 64.7180080177558900, -161.5865075080150500 64.7187422935221000, -161.5884410000521000 64.7194642845491300, -161.5903009878003000 64.7202285212293300, -161.5912042048101700 64.7205482994645000, -161.5932698693089800 64.7213218045577000, -161.5952547728894300 64.7221330703849300, -161.5971551374995600 64.7229805546089700, -161.5989673451668000 64.7238626492419400, -161.6000426933156300 64.7244248918953000, -161.6010822007829000 64.7249993284563000, -161.6020851094402200 64.7255855416394800, -161.6030506872394000 64.7261831051662300, -161.6043575721442000 64.7270156453557800, -161.6054962991149000 64.7277677753626200, -161.6065758812718800 64.7285356839747100, -161.6078991230460500 64.7295644832144000, -161.6091162097452500 64.7306169625028900, -161.6102248166219500 64.7316911226472500, -161.6112228221754800 64.7327849194885000, -161.6121083153464600 64.7338962746934000, -161.6128795991141700 64.7350230739557400, -161.6135351904966000 64.7361631741911800, -161.6140738286442500 64.7373144062349300, -161.6141020889402300 64.7373923513759500, -161.6158810189938000 64.7376136763301700, -161.6184831003148000 64.7379906955142700, -161.6210442948582800 64.7384158095420000, -161.6235597390906700 64.7388882099230000, -161.6260246558131800 64.7394070000330500, -161.6284343622559700 64.7399711951146000, -161.6294511096809300 64.7402364105819300, -161.6310130665997000 64.7404627042904500, -161.6335744949669500 64.7408878174188700, -161.6360901694257600 64.7413602169005500, -161.6369042861038800 64.7415315476428600, -161.6381163204118300 64.7417330533377800, -161.6406976669637200 64.7422259087987300, -161.6417095931232000 64.7423797108550000, -161.6442712031534700 64.7428048239834800, -161.6467870556780600 64.7432772234651600, -161.6484036778874000 64.7436174181094100, -161.6492521414731000 64.7437994381935500, -161.6493939231909800 64.7438261948231000, -161.6496283395761700 64.7438721951457400, -161.6521885385701600 64.7443048284051800, -161.6547045304896500 64.7447772287861200, -161.6571699841074400 64.7452960179969000, -161.6595802148550000 64.7458602130784000, -161.6608685746250000 64.7462018745169400, -161.6615447128182300 64.7463678012330800, -161.6632762818749000 64.7467762157498300, -161.6656267904440000 64.7473847447102500, -161.6664208756229000 64.7476111040692800, -161.6670336107125400 64.7477400263811700, -161.6694440599953600 64.7483042205634000, -161.6703960418438200 64.7485434762005000, -161.6714794515154400 64.7488212399083500, -161.6735743826516200 64.7493824726231000, -161.6756162214114700 64.7499783598135000, -161.6773351900669400 64.7505234353083700, -161.6793892641032400 64.7501378482831500, -161.6819515684101000 64.7497127351546700, -161.6830711506130700 64.7495505882890800, -161.6849919253370400 64.7491010297887300, -161.6874577251938400 64.7485822405780000, -161.6899740714462200 64.7481098410963200, -161.6925361832982000 64.7476847288671700, -161.6951391963168300 64.7473077096831300, -161.6977781678281500 64.7469795003037200, -161.7004457251900400 64.7466881487391100, -161.7010864561749800 64.7465548368363100, -161.7036484637056000 64.7461299494376600, -161.7041772066127700 64.7460386358744100, -161.7042960106523400 64.7456754068945800, -161.7048672798011000 64.7444622538300200, -161.7051745367754200 64.7438793807289100, -161.7056508743883000 64.7430389534849800, -161.7061901456586700 64.7422054959869200, -161.7067917885102000 64.7413798697851900, -161.7074551761154500 64.7405629247392700, -161.7084534694520200 64.7394691287973400, -161.7095623955880500 64.7383949704515700, -161.7107798330228500 64.7373424920624000, -161.7121034552102700 64.7363136946213400, -161.7135307341560200 64.7353105332545600, -161.7150589458136700 64.7343349145247700, -161.7166851754804500 64.7333886928339600, -161.7184063213945800 64.7324736659269900, -161.7201613798437700 64.7316184942981200, -161.7206424308035000 64.7314070492959700, -161.7222735563795000 64.7304716878181800, -161.7239945170333000 64.7295566609112100, -161.7258071060131000 64.7286745671775600, -161.7277078708215500 64.7278270829535800, -161.7296931916874300 64.7270158180256200, -161.7317592905587800 64.7262423138317900, -161.7339022373983000 64.7255080389649000, -161.7361179546798300 64.7248143873741200, -161.7384022317775400 64.7241626774656400, -161.7407507240666300 64.7235541458072100, -161.7431589691111000 64.7229899489270800, -161.7438136584735300 64.7228614259141200, -161.7440658886298200 64.7227989536089000, -161.7460996577729600 64.7222186723539000, -161.7484479818888300 64.7216101406954700, -161.7489304951462000 64.7215107350324400, -161.7508535676380200 64.7210363471497800, -161.7512859823621600 64.7209354414175700, -161.7536898000442000 64.7203509405435400, -161.7561529828738300 64.7198321486348000, -161.7586703660445300 64.7193740591655500, -161.7589949223777200 64.7193052214588500, -161.7602840474707800 64.7189711323119400, -161.7626918860216800 64.7184069345324800, -161.7651548916849000 64.7178881426237400, -161.7656712509274500 64.7178086776284000, -161.7660202085657500 64.7177197130943100, -161.7660871127300500 64.7177062142704400, -161.7671887255792000 64.7173576577297900, -161.7695366279130300 64.7167491251720400, -161.7710758913392800 64.7163884196898500, -161.7719435545513700 64.7160910129899200, -161.7741585020132200 64.7153973613991400, -161.7764419841102500 64.7147456496920200, -161.7787896607142400 64.7141371180336500, -161.7812035561991300 64.7135957198666500, -161.7814003530438400 64.7135486286663300, -161.7829630950707600 64.7131123747363400, -161.7840471495562700 64.7128550876922200, -161.7844988934091600 64.7127383655831600, -161.7854307385377000 64.7124718083273400, -161.7863293213410700 64.7122032671671300, -161.7867189409263600 64.7120643515886000, -161.7890091310665000 64.7113882556635100, -161.7903893287045200 64.7109442378863400, -161.7916718464785000 64.7104642733076500, -161.7938135450590400 64.7097299957427500, -161.7960279718134300 64.7090363432527000, -161.7983109179145000 64.7083846315455800, -161.7995444783949200 64.7080931486799500, -161.7996458985393500 64.7080053631570400, -161.7999597295578600 64.7076965224765700, -161.8001082669829000 64.7075205997958800, -161.8009737799159800 64.7063959004505000, -161.8019708106044000 64.7053020991126600, -161.8030783355967000 64.7042279344716500, -161.8042942360901000 64.7031754506865600, -161.8056161864378200 64.7021466478495900, -161.8070416640415200 64.7011434801875100, -161.8085679466534000 64.7001678560617400, -161.8101921240672400 64.6992216298743900, -161.8119110990179800 64.6983065975715000, -161.8132548543280200 64.6976445724391200, -161.8143308068212600 64.6971480936097100, -161.8149083838148400 64.6967788508633200, -161.8165323579819000 64.6958326237766000, -161.8182511179946600 64.6949175914737100, -161.8194561951472700 64.6943218301883600, -161.8207014639014000 64.6937414149343800, -161.8260348995909200 64.6913270553993700, -161.8273069357664400 64.6907676168320900, -161.8286162983035000 64.6902241951905200, -161.8299618846332400 64.6896972491288100, -161.8313425634085500 64.6891872184154400, -161.8334825811561800 64.6884529390519600, -161.8356952713196800 64.6877592838639000, -161.8379764259712500 64.6871075694588200, -161.8403217094792700 64.6864990342031100, -161.8427266648037000 64.6859348328263200, -161.8442722324775200 64.6856088924365000, -161.8446963113856300 64.6854656079515300, -161.8465120920593800 64.6848746247641800, -161.8483766861351400 64.6843122139375700, -161.8494883327203400 64.6840165753047800, -161.8502902420010500 64.6837880548748700, -161.8512633210454000 64.6835307156700300, -161.8515882020338700 64.6834342444948300, -161.8522342111399200 64.6832478366184200, -161.8534075332310400 64.6828139236237100, -161.8556197629416700 64.6821202675363900, -161.8579004436505200 64.6814685522319300, -161.8602452397260000 64.6808600169762800, -161.8622486720385600 64.6803858916956100, -161.8642910342038300 64.6799432957465700, -161.8663696210611200 64.6795328145877900, -161.8677356103101500 64.6792779710016200, -161.8701932461213700 64.6787490167537800, -161.8727031145570500 64.6782766109768700, -161.8746109480368000 64.6779510123294000, -161.8770138133368000 64.6773788069863800, -161.8794730949073800 64.6768600105811000, -161.8819827888745800 64.6763876048041800, -161.8845381288315700 64.6759624871791000, -161.8871342611372200 64.6755854634984100, -161.8897662575067500 64.6752572496224000, -161.8905944458769600 64.6751705450846500, -161.8910669451833500 64.6750816012349800, -161.8936233103674500 64.6746620198363800, -161.8940574472933300 64.6745854083899300, -161.8964171271486800 64.6741383437096700, -161.8988178880350700 64.6737404800391600, -161.9014138081007300 64.6733634563584600, -161.9040455886329800 64.6730352424825100, -161.9067082338978600 64.6727564616414300, -161.9093943892396500 64.6725118262598400, -161.9104975228423800 64.6723354521194600, -161.9131292044492000 64.6720072382435100, -161.9157917480906700 64.6717284574024200, -161.9184800995769000 64.6714996392970000, -161.9210467763875800 64.6713293095001000, -161.9236276696812000 64.6712045240696000, -161.9252361916968500 64.6711504541302100, -161.9279243336410400 64.6709166366935000, -161.9300643109192000 64.6707714051762500, -161.9322146879574700 64.6706578387882600, -161.9371268955897300 64.6704350578317000, -161.9387786381236000 64.6703695440193100, -161.9404338376514500 64.6703227154210400, -161.9420905471410200 64.6702852640537500, -161.9437026457604500 64.6701386340907300, -161.9456978007129000 64.6700022078357000, -161.9477021485352900 64.6698933089291500, -161.9497136216862700 64.6698120506856600, -161.9517291498803200 64.6697498535729700, -161.9551621912820800 64.6693461568996800, -161.9578500004771200 64.6690639253599200, -161.9605641714993000 64.6688326296222200, -161.9632729618776600 64.6686542077255800, -161.9659973141247000 64.6685265210821300, -161.9687320571387000 64.6684498125088700, -161.9714720000327500 64.6684242258973500, -161.9729160945021200 64.6684313314408400, -162.0014158412680300 64.6687090573771600, -162.0030980762152200 64.6687473298254600, -162.0032101875001200 64.6687400579074300, -162.0054923332046000 64.6684512262431800, -162.0081545288084300 64.6681724454020900, -162.0108425286597400 64.6679436272966100, -162.0134548460642600 64.6677706678820500, -162.0160818116262600 64.6676448994925900, -162.0217982092199500 64.6674231176828000, -162.0246322095088400 64.6673407101057500, -162.0274719996330400 64.6673132223273800, -162.0302118301118500 64.6673388080396300, -162.0317477066912800 64.6673818909615600, -162.0329340752473400 64.6671844573968400, -162.0355293684855300 64.6668074328168200, -162.0381605140964300 64.6664792189408800, -162.0405848201333200 64.6662248789750200, -162.0408221683083800 64.6661976493021500, -162.0432158623221700 64.6658962172367000, -162.0458778070151600 64.6656174363956200, -162.0485655541569700 64.6653886173908200, -162.0498076195259800 64.6653003651198300, -162.0535540368892700 64.6650506098977800, -162.0559584103523300 64.6649105926497900, -162.0583735927670500 64.6648104315562500, -162.0607959913419000 64.6647502750052500, -162.0632219997954200 64.6647302129290400, -162.0655515334764500 64.6647487110842000, -162.0712596671998500 64.6648390201047500, -162.0728502801163000 64.6646724323869100, -162.0755379337286400 64.6644436142814200, -162.0782462870364800 64.6642651914854700, -162.0809701986157400 64.6641375048420200, -162.0837044991632800 64.6640607962688100, -162.0841462956150300 64.6640566701792600, -162.0848806451256500 64.6639344460179500, -162.0874756280977400 64.6635574214379300, -162.0901064589458800 64.6632292075619300, -162.0927681419361800 64.6629504258215800, -162.0954556255766200 64.6627216077161000, -162.0981638062146400 64.6625431849200800, -162.1008875460234200 64.6624154982766900, -162.1017543701680000 64.6623911788099100, -162.1026599847704400 64.6622404398444800, -162.1044458728787000 64.6619751713171800, -162.1062495504763500 64.6617330297555700, -162.1080693870925000 64.6615142345942800, -162.1089367220520500 64.6614219137903200, -162.1098571898574000 64.6612485550768400, -162.1124111052882600 64.6608234356530700, -162.1150057905847500 64.6604464110730500, -162.1176363201600200 64.6601181962977900, -162.1202976982801300 64.6598394154567000, -162.1213753136198000 64.6597476540310400, -162.1223109529880700 64.6595666951469000, -162.1252454884884700 64.6590734304944600, -162.1265597936995000 64.6588947226134100, -162.1269349315018600 64.6588279272671100, -162.1290191508131200 64.6583879510431500, -162.1314107224268600 64.6579374725363900, -162.1319526664823300 64.6573299130450900, -162.1327041201989500 64.6565242086254000, -162.1335823243647400 64.6556296907576800, -162.1345351578712000 64.6547493210243800, -162.1355613769559600 64.6538842433632200, -162.1366596407298200 64.6530355801279500, -162.1380825372792500 64.6520324052713100, -162.1396060571737800 64.6510567739510400, -162.1412272947038700 64.6501105387703800, -162.1429431597989600 64.6491955001722500, -162.1433686389515000 64.6489807510608900, -162.1492590040997200 64.6460386423694900, -162.1509760769843400 64.6452156260003800, -162.1527703557672700 64.6444234860550800, -162.1546388178271600 64.6436635517316000, -162.1556887295512000 64.6432703015831900, -162.1560105132745400 64.6425801537511700, -162.1566638356674400 64.6414400373279200, -162.1574324529453300 64.6403132227770800, -162.1583148866227000 64.6392018522836900, -162.1593094468734400 64.6381080392546900, -162.1594014592099600 64.6380185764961700, -162.1594084757205400 64.6379366419625400, -162.1595983154099000 64.6368726081843800, -162.1598863556707500 64.6358126393419000, -162.1602721324529200 64.6347584009794800, -162.1608087264415300 64.6336071518486500, -162.1614618329971600 64.6324670336267700, -162.1622301948675600 64.6313402172772800, -162.1631123371646000 64.6302288458845700, -162.1634014395248000 64.6299309229737600, -162.1635213515291000 64.6297788638035500, -162.1641797532929600 64.6288132167566100, -162.1650618128523400 64.6277018444645800, -162.1660559513210600 64.6266080296369400, -162.1671602639350200 64.6255338524054000, -162.1683726381866700 64.6244813551305100, -162.1696907565231500 64.6234525388036900, -162.1702660501380800 64.6230436296598300, -162.1705053030772500 64.6222369494756800, -162.1708295302585700 64.6213703996243100, -162.1709960181517000 64.6210130261303000, -162.1710622999851200 64.6205855244024900, -162.1713628003529400 64.6194185946924300, -162.1717815903480800 64.6182584000052300, -162.1723178569834800 64.6171071472770700, -162.1729705660387700 64.6159670272565400, -162.1737384602617200 64.6148402082091000, -162.1746200665628000 64.6137288332191100, -162.1755119215379200 64.6127408488112000, -162.1764936268793300 64.6117686951691900, -162.1788583114618800 64.6095476044384300, -162.1801713468301500 64.6083884044014100, -162.1816120580500000 64.6072575159216700, -162.1830325579062000 64.6062543338704800, -162.1845535120349400 64.6052786953555400, -162.1861720210219200 64.6043324538796900, -162.1878849974946200 64.6034174071876400, -162.1883394438102600 64.6031878192625300, -162.1922843460457000 64.6012170845008900, -162.1939919427739200 64.6003983462067600, -162.1957758685614700 64.5996102172378000, -162.1976331466523800 64.5988540106041600, -162.1995606770835500 64.5981309853567600, -162.2016935344290400 64.5973966943020600, -162.2038988222728000 64.5967030274228500, -162.2061723461768000 64.5960513031252000, -162.2071832884779500 64.5957881075352100, -162.2078351009091600 64.5955636889131600, -162.2100402394654600 64.5948700220339400, -162.2123136104847000 64.5942182977362900, -162.2146508927244800 64.5936097525880700, -162.2170476435339000 64.5930455422180800, -162.2194993087460700 64.5925267386181800, -162.2220012316714700 64.5920543265459600, -162.2243906404157000 64.5916465316621500, -162.2245464929262700 64.5916177335715800, -162.2250835015023500 64.5915066286280500, -162.2262400665258300 64.5908893816397300, -162.2280434176695700 64.5900072681209800, -162.2299344958802600 64.5891597641118600, -162.2319097011717300 64.5883484802981800, -162.2339652752772000 64.5875749581179000, -162.2356355942072800 64.5869941741418600, -162.2373512299752500 64.5864383328628300, -162.2391101645024500 64.5859080853898600, -162.2409103302475200 64.5854040567518800, -162.2426594441779700 64.5849324504722500, -162.2446614591589800 64.5844147251594900, -162.2470574005785400 64.5838505138901800, -162.2495082393137700 64.5833317093909000, -162.2520093168764400 64.5828592964194300, -162.2545558848461800 64.5824341715998000, -162.2564831068099000 64.5821452239230200, -162.2571406515198200 64.5820424395070000, -162.2590284517016500 64.5817121688815500, -162.2616156042767000 64.5813351389056200, -162.2642384977084800 64.5810069196337000, -162.2651309741151200 64.5809131581158300, -162.2667742414380700 64.5806368351218800, -162.2681964778851000 64.5804061644130300, -162.2707835063537000 64.5800291344370400, -162.2734062738804000 64.5797009151651800, -162.2760597991204200 64.5794221298274900, -162.2787390458702500 64.5791933081247300, -162.2796211629862500 64.5791350122710800, -162.2810366482227000 64.5786744262837800, -162.2827247998096400 64.5781618576836500, -162.2844513344615000 64.5776734997322700, -162.2859785748513300 64.5772568456270000, -162.2882543578523000 64.5766647014148700, -162.2906496184850800 64.5761004892462400, -162.2930997602457200 64.5755816838477000, -162.2956001273439600 64.5751092699769000, -162.2963543563684300 64.5749833226223000, -162.2971492644270000 64.5744212841150300, -162.2986684405960300 64.5734456402041700, -162.3002850574094400 64.5724993942317300, -162.3019960319912500 64.5715843430430700, -162.3026645529267600 64.5712479956985100, -162.3086658215703700 64.5682779117962600, -162.3103253504345400 64.5674885210784200, -162.3120560705312000 64.5667279392430400, -162.3138552749010000 64.5659973524958600, -162.3157201495652000 64.5652979011772500, -162.3178504384469500 64.5645636056259500, -162.3200530705927000 64.5638699351494600, -162.3223238569604000 64.5632182072545200, -162.3246584826028700 64.5626096585089600, -162.3270525093657900 64.5620454454410200, -162.3295013875789400 64.5615266391431500, -162.3320004668480300 64.5610542243730400, -162.3338622082742700 64.5607431740583000, -162.3350922946736400 64.5602374124267200, -162.3371457490770200 64.5594638857497800, -162.3392755820024700 64.5587295901984800, -162.3414777429035000 64.5580359188226700, -162.3437480445366000 64.5573841900284200, -162.3460821701560000 64.5567756412828500, -162.3484756852046800 64.5562114273155900, -162.3509240400124200 64.5556926201184000, -162.3534225850842200 64.5552202044489100, -162.3559665737983300 64.5547950778306500, -162.3571297794157700 64.5546187009923100, -162.3601601196937500 64.5541734502446000, -162.3604388106026000 64.5539762532016000, -162.3619568473306200 64.5530006056934600, -162.3635722509585800 64.5520543561236800, -162.3652819431071600 64.5511393022370600, -162.3670826646332400 64.5502571833224000, -162.3689709864218600 64.5494096739173500, -162.3709433138828000 64.5485983847077600, -162.3729958923465200 64.5478248562321800, -162.3751248169567000 64.5470905588822500, -162.3773260389655000 64.5463968866071100, -162.3795953720287700 64.5457451560142200, -162.3819285020986700 64.5451366054700200, -162.3843209964168200 64.5445723906033800, -162.3867683080109700 64.5440535825068800, -162.3892657873861400 64.5435811659381200, -162.3918086915178700 64.5431560384204800, -162.3940600075632700 64.5428301978553800, -162.3956093640808500 64.5423418749775800, -162.3978783607976800 64.5416901443846900, -162.4002111446286000 64.5410815938405400, -162.4026032828152200 64.5405173780745800, -162.4050502310832700 64.5399985699780800, -162.4072139783424000 64.5395892201664200, -162.4075664316454800 64.5393625829169100, -162.4091810285815700 64.5384163306491700, -162.4108898654748700 64.5375012749639200, -162.4113129299477400 64.5372868595010200, -162.4182865374936900 64.5337890956902800, -162.4199968384832900 64.5329658751750800, -162.4217840611854300 64.5321735418755200, -162.4236451955693000 64.5314134276876000, -162.4255771056988400 64.5306868114472500, -162.4274754765120000 64.5300285122061200, -162.4294319318381700 64.5294025615789900, -162.4314434994179200 64.5288099083506400, -162.4335071215563700 64.5282514527423800, -162.4381156416235400 64.5270574579353700, -162.4384852908634700 64.5269636793303800, -162.4386781297918400 64.5268691318050300, -162.4405648345994000 64.5260216197020200, -162.4425354722342300 64.5252103268951500, -162.4445862925233500 64.5244367957216100, -162.4464576414070000 64.5238025839221900, -162.4467129022786000 64.5237014002994400, -162.4483477744302000 64.5229656127728500, -162.4503181917311300 64.5221543199659200, -162.4523687826931300 64.5213807878931200, -162.4544956460571800 64.5206464869458500, -162.4557581584122700 64.5202482437615000, -162.4560785526830400 64.5200911178109200, -162.4579647889438300 64.5192436039092700, -162.4599349373474400 64.5184323111023400, -162.4619852495196000 64.5176587790294900, -162.4641118233019800 64.5169244771829500, -162.4663106153426000 64.5162308013104800, -162.4685774428946600 64.5155790680196300, -162.4709079982055200 64.5149705138781500, -162.4732978521141400 64.5144062963135500, -162.4757424621449000 64.5138874855190900, -162.4782371859973000 64.5134150662523800, -162.4807772842442500 64.5129899360367700, -162.4833533994398000 64.5126249821572600, -162.4858888922585400 64.5122119325347400, -162.4884688871294100 64.5118317747167100, -162.4890179475202400 64.5117266026006700, -162.4912785652535700 64.5113509306010000, -162.4930323610546000 64.5110946849718000, -162.4931315490817000 64.5110082151570600, -162.4944441860503200 64.5099793808437900, -162.4958596227233700 64.5089761826047800, -162.4973751575374500 64.5080005288014000, -162.4989879000715000 64.5070542720370700, -162.4996634393162400 64.5066921132505000, -162.5007366021124800 64.5050876489758600, -162.5013725585966700 64.5041951797637700, -162.5020799212513200 64.5033127523816500, -162.5029441517511700 64.5023500128429000, -162.5038933546945300 64.5014022632039400, -162.5077884497771000 64.4977087592519000, -162.5091198888717400 64.4965238197185600, -162.5105840607058000 64.4953683599619000, -162.5119987410490400 64.4943651599242600, -162.5135134655739400 64.4933895034229200, -162.5151253456581300 64.4924432448599400, -162.5168313092175000 64.4915281819800700, -162.5186281043035300 64.4906460531729000, -162.5205123089958500 64.4897985356739100, -162.5213419776501000 64.4894565136072500, -162.5214650183958400 64.4891911182755300, -162.5221146616622700 64.4880509766712700, -162.5228789523017700 64.4869241360401000, -162.5237564226207800 64.4858127394663800, -162.5247526493152700 64.4847234599197900, -162.5247978357514900 64.4846676201146400, -162.5248814906882200 64.4845344071372300, -162.5255095241452000 64.4836546849158500, -162.5262069061238000 64.4827847374257300, -162.5271957655721000 64.4816908992156600, -162.5282942164049300 64.4806166977024900, -162.5295001569067000 64.4795641770451800, -162.5308112839136000 64.4785353373359800, -162.5322250928137500 64.4775321346003800, -162.5330437852424600 64.4770044762756200, -162.5332149469122400 64.4766351148187500, -162.5338642907044300 64.4754949714158600, -162.5346282297090000 64.4743681289860400, -162.5355052971317200 64.4732567306136800, -162.5364938103410600 64.4721628897056600, -162.5375918780627000 64.4710886872931600, -162.5387973994804000 64.4700361648372100, -162.5401080696316900 64.4690073233293800, -162.5415213857033600 64.4680041187950800, -162.5430346506285800 64.4670284586964600, -162.5446449784829500 64.4660821956368900, -162.5457512687060600 64.4654882168078400, -162.5454604378489000 64.4648539879212900, -162.5450492462257200 64.4636934209147000, -162.5447557623685000 64.4625262160121200, -162.5445805285685000 64.4613545963376300, -162.5445238640850200 64.4601807922098300, -162.5445733393880800 64.4591349571126100, -162.5446368854838400 64.4584468723253400, -162.5444510828511700 64.4581177168591900, -162.5439231043677400 64.4569659973829500, -162.5435472803826500 64.4559199905152100, -162.5432670543310700 64.4548684105487800, -162.5431017364559500 64.4541183399894600, -162.5428901304751200 64.4528320189825200, -162.5428215005118200 64.4515427967627400, -162.5428834781899400 64.4503690411983700, -162.5430639460442400 64.4491975699119700, -162.5433625479432200 64.4480306123229500, -162.5437786984281600 64.4468703888574000, -162.5441892146605000 64.4459617165600200, -162.5446718304406000 64.4450596794607100, -162.5452259675043600 64.4441653441553500, -162.5458509630514600 64.4432797691461000, -162.5460236823470300 64.4430492971873700, -162.5469134014323000 64.4400045039047900, -162.5473800254677600 64.4386753886583400, -162.5479127595661700 64.4375241062525700, -162.5485611725600300 64.4363839556550600, -162.5493240179890200 64.4352571069300100, -162.5501998308574800 64.4341457013631000, -162.5511869321311700 64.4330518541597700, -162.5513620598112000 64.4328802859964800, -162.5514465807950400 64.4327356669175500, -162.5519454859953600 64.4319764817293000, -162.5524956687400800 64.4312239443296400, -162.5530966496906200 64.4304786986330700, -162.5534194505471800 64.4300950460495900, -162.5535415550986600 64.4291710807808000, -162.5537311906419000 64.4282769972856500, -162.5539897214484600 64.4273861450545800, -162.5544930836888400 64.4258583551790000, -162.5548276863486300 64.4249533871891300, -162.5553601515497300 64.4238021029847200, -162.5560082398883400 64.4226619496892600, -162.5565630415511000 64.4218420018069700, -162.5568848711398600 64.4190208555281200, -162.5570125586826000 64.4181734018810600, -162.5572020251533200 64.4173281120028500, -162.5574530771977200 64.4164858276589000, -162.5577654594084000 64.4156473870173700, -162.5582977438457700 64.4144961001150000, -162.5589456109511600 64.4133559459202200, -162.5597078142642000 64.4122290926985100, -162.5605828905879000 64.4111176835343100, -162.5616730694565600 64.4099162792129500, -162.5628950907358200 64.4087388526160100, -162.5637843610594000 64.4079341914098800, -162.5648821068237500 64.4069890237245200, -162.5660648052465300 64.4060632355299300, -162.5674748783629300 64.4050600211031700, -162.5689846710057200 64.4040843502126600, -162.5705913044451200 64.4031380772605100, -162.5722917155901800 64.4022230008908400, -162.5724358975985800 64.4021523528488700, -162.5723509719198000 64.4019660636829500, -162.5719407137928800 64.4008054867838400, -162.5716478936353400 64.3996382728880100, -162.5714730537384000 64.3984666433210000, -162.5714165115627200 64.3972928284013600, -162.5714421332478000 64.3968065739642800, -162.5708661030881500 64.3957838019809400, -162.5703393144078200 64.3946320726121300, -162.5699291650988700 64.3934714948137000, -162.5696364222830300 64.3923042791192300, -162.5694616273521800 64.3911326486528400, -162.5694050995656700 64.3899588328339400, -162.5694379823769700 64.3891097055485500, -162.5695327538335000 64.3882614497061900, -162.5696893132112000 64.3874149106696300, -162.5699074995314400 64.3865709311036200, -162.5699971349597800 64.3862680367405500, -162.5702752494032000 64.3851428544592200, -162.5706953748916000 64.3837260301322700, -162.5711444297715800 64.3824533851157000, -162.5716760684957500 64.3813020928174000, -162.5723231504929600 64.3801619332267000, -162.5730844302022700 64.3790350746090800, -162.5739584471246000 64.3779236600489000, -162.5749435249237000 64.3768298029531300, -162.5760377768219200 64.3757555843528200, -162.5772391100968300 64.3747030466083700, -162.5785452287792600 64.3736741898120500, -162.5799489985474200 64.3726650794299100, -162.5802426730609000 64.3724241879260100, -162.5815348414597300 64.3715001057453300, -162.5829115236478800 64.3705992170802700, -162.5843704965011800 64.3697229707385600, -162.5859094046952300 64.3688727768572400, -162.5908829451917400 64.3662354025418600, -162.5914385238687600 64.3659449269168800, -162.5932271090438200 64.3650627801232500, -162.5951027072241300 64.3642152446378800, -162.5970617454032000 64.3634039302472200, -162.5991004967904700 64.3626303774900000, -162.6012144018231700 64.3618962824875200, -162.6034000754531000 64.3612027873787700, -162.6056533619130800 64.3605512087713100, -162.6079699831281900 64.3599427823335800, -162.6097164044884400 64.3595062990764900, -162.6139785362804000 64.3579596360284500, -162.6160904682005300 64.3572263953818700, -162.6182740068399300 64.3565336844820300, -162.6205250108205600 64.3558828181376200, -162.6228392119600400 64.3552750266212600, -162.6231979551215000 64.3551860620871700, -162.6323316964506000 64.3529379674133100, -162.6346259452311600 64.3524004354318300, -162.6369701693378100 64.3519050924460900, -162.6393602426810200 64.3514528107986600, -162.6417898852949400 64.3510346863017700, -162.6421767133846000 64.3509419572056300, -162.6446566667717400 64.3504695244490700, -162.6471817274547200 64.3500443816429300, -162.6494004250895000 64.3497151470364800, -162.6510857869794500 64.3494954723382200, -162.6521068925190400 64.3489448929924500, -162.6538943733266400 64.3480627435008600, -162.6557688122808300 64.3472152053175300, -162.6577266417710600 64.3464038882289000, -162.6597641341074600 64.3456303336730000, -162.6619998568079000 64.3448554364293300, -162.6643154851714700 64.3441260053109500, -162.6659807885825000 64.3436264040353800, -162.6681111575039000 64.3430149495803200, -162.6702976719999500 64.3424419870081600, -162.6726725476998800 64.3418777523564200, -162.6751018386788700 64.3413589253741500, -162.6775809296161700 64.3408864917182700, -162.6801051116615300 64.3404613489121900, -162.6818732732329500 64.3402013827876500, -162.6836642335175300 64.3397210755672400, -162.6882177393571600 64.3385550532731300, -162.6887752075098000 64.3384139757244500, -162.6911497360714200 64.3378497401734500, -162.6912695995123700 64.3378241373740700, -162.6916647067607800 64.3373847663938800, -162.6927573884427000 64.3363105414983400, -162.6939569995158800 64.3352579965593300, -162.6952612449104800 64.3342291334677700, -162.6959063816741500 64.3337566710336000, -162.7038573274536800 64.3280655389934900, -162.7051361049472600 64.3271885668988800, -162.7064917942608700 64.3263336192012000, -162.7073917800066200 64.3258106418476800, -162.7086407656587700 64.3249149989281400, -162.7099725842673200 64.3240387292040600, -162.7113820728243600 64.3231856440023100, -162.7120279569246600 64.3228196550031200, -162.7129725436479400 64.3220151646681900, -162.7139805730449800 64.3212291158311000, -162.7153863006372500 64.3202258879144300, -162.7168914419864300 64.3192502035341200, -162.7184931255572700 64.3183039179915000, -162.7201882999500500 64.3173888290313000, -162.7219737339006800 64.3165066750430600, -162.7238460270724500 64.3156591323631200, -162.7246815700983400 64.3153279309393000, -162.7247915904595200 64.3152668435900000, -162.7262400250570800 64.3142380245652100, -162.7279131579658400 64.3131685624792300, -162.7301083536176000 64.3118353148479400, -162.7315613693616900 64.3109883756130800, -162.7330897321054000 64.3101668134477200, -162.7348746984086000 64.3092846585602200, -162.7367465014498600 64.3084371149809000, -162.7387015763166600 64.3076257924963700, -162.7407362034130400 64.3068522325445400, -162.7428465120568700 64.3061179055170000, -162.7450284867752300 64.3054242035642000, -162.7472826257925000 64.3047847712002700, -162.7475253141419000 64.3047073620551800, -162.7478784922985500 64.3045742273187700, -162.7499886255746000 64.3038398993919000, -162.7521704204285400 64.3031461974391000, -162.7544197282878100 64.3024944398665600, -162.7561041620773800 64.3020427544696000, -162.7582837454984300 64.3013411924421200, -162.7605329058688700 64.3006894348695800, -162.7628452984717200 64.3000808582450500, -162.7652165283201000 64.2995166190967200, -162.7676420907099000 64.2989977885171700, -162.7701173766156200 64.2985253512640000, -162.7726376843816000 64.2981002048606500, -162.7751982287152500 64.2977231559988800, -162.7777941460829500 64.2973949196398800, -162.7804205081998500 64.2971161208124000, -162.7830723292245800 64.2968872865191100, -162.7857445747523000 64.2967088529312600, -162.7884321726066600 64.2965811572946100, -162.7911300209336800 64.2965044433254300, -162.7938329998930000 64.2964788558146000, -162.7960472566755400 64.2964960247717800, -162.8032072837890800 64.2966069165759700, -162.8053560717253000 64.2966563622014200, -162.8074996229092300 64.2967381447496100, -162.8096353589846000 64.2968521652952600, -162.8117607132862500 64.2969982871413200, -162.8144125451028400 64.2972271205352400, -162.8170389180116300 64.2975059202620400, -162.8196348461712000 64.2978341557217700, -162.8221954003974000 64.2982112045834800, -162.8247157180559300 64.2986363518861600, -162.8271910138542000 64.2991087891393800, -162.8296165861365200 64.2996276197189300, -162.8319878258774300 64.3001918588672700, -162.8343002274734800 64.3008004345924200, -162.8365493968371700 64.3014521930643400, -162.8387310576921400 64.3021458950170800, -162.8408410614658000 64.3028802229440000, -162.8422787365744000 64.3034197954872300, -162.8436776922716500 64.3039782367063100, -162.8450366137487000 64.3045550222964800, -162.8463542248675500 64.3051496099665800, -162.8475483437810000 64.3057052408042900, -162.8486304746166700 64.3062220191309300, -162.8496813890848200 64.3067508061049000, -162.8513759087711300 64.3076658968636800, -162.8529769745077300 64.3086121842050000, -162.8544815348949000 64.3095878703839500, -162.8558867192966200 64.3105911000992600, -162.8571898459346000 64.3116199667881000, -162.8583884263847500 64.3126725153243800, -162.8594801700737700 64.3137467447165200, -162.8604629878765600 64.3148406117049400, -162.8613349993107400 64.3159520370569500, -162.8620945316373000 64.3170789064664000, -162.8627400569080800 64.3182191496940700, -162.8634511895207600 64.3188918659669200, -162.8643461858278000 64.3198301538386100, -162.8663781761119000 64.3220793573764800, -162.8668965354467300 64.3226736185926600, -162.8677687950937800 64.3237850421460300, -162.8685285441569600 64.3249119106562300, -162.8691079512709000 64.3259348957788600, -162.8691822451644700 64.3260458613274900, -162.8697752311419700 64.3267850437948100, -162.8705350629427600 64.3279119114056400, -162.8706903461825000 64.3281860445503600, -162.8708535713352300 64.3283676230673800, -162.8717260117460000 64.3294790457214300, -162.8724859181905300 64.3306059124329900, -162.8731318310691200 64.3317460810168900, -162.8736625075186700 64.3328973814090500, -162.8740769241107400 64.3340576237603700, -162.8743742768513700 64.3352246002351600, -162.8745539856778600 64.3363960904072800, -162.8746156926600600 64.3375698639581000, -162.8745773329775000 64.3385424924421200, -162.8744101966732000 64.3406013877439000, -162.8745397970739400 64.3408300826422400, -162.8750706497906200 64.3419813821351500, -162.8754852039789400 64.3431416226877700, -162.8757826556450300 64.3443085973639200, -162.8759624247260800 64.3454800857374500, -162.8760241532920000 64.3466538583888900, -162.8760200991482300 64.3469887884019200, -162.8759988328798200 64.3477923110663700, -162.8761982881204600 64.3481706648443600, -162.8765863033152000 64.3490363819235500, -162.8769130198200000 64.3499202455229800, -162.8771717493767000 64.3508083278421200, -162.8777609177321300 64.3531420820415300, -162.8779207695278600 64.3538653932733400, -162.8780355059338400 64.3545903115936500, -162.8781050397158000 64.3553163073017900, -162.8781293259076200 64.3560640648048000, -162.8781186896258000 64.3637792847862300, -162.8780590178094000 64.3649424652226700, -162.8778833226572000 64.3661034414207600, -162.8775919180325500 64.3672600424170600, -162.8771853345355400 64.3684101044428300, -162.8766590449789000 64.3695618374089200, -162.8760172132237800 64.3707025293982700, -162.8752610497576300 64.3718300058501400, -162.8743919800058400 64.3729421200828300, -162.8738166504180600 64.3736015371812300, -162.8732016040707400 64.3742541994718000, -162.8726094607579900 64.3748383037447500, -162.8724581372332200 64.3757456423475700, -162.8721745396232700 64.3768308056971800, -162.8717894607150000 64.3779100928765600, -162.8713815021545800 64.3788242294546600, -162.8709007191928000 64.3797317065530600, -162.8704311516762900 64.3805525141872300, -162.8704624903516300 64.3806203851227100, -162.8708776308979200 64.3817806193801500, -162.8711755052453300 64.3829475877610100, -162.8713555315325200 64.3841190698392400, -162.8714173509299600 64.3852928361955000, -162.8714064133752400 64.3858246125159300, -162.8711953973496800 64.3906857026830700, -162.8711036790914800 64.3917260699022300, -162.8709996985772000 64.3923106103464400, -162.8714048017901300 64.3930240955855900, -162.8719366680427600 64.3941753860852400, -162.8723520154331400 64.3953356176447200, -162.8725175671319800 64.3959838669619600, -162.8761204760790800 64.3976616574596000, -162.8781741193401200 64.3986669933871100, -162.8798743101512500 64.3995820706561000, -162.8814807358472500 64.4005283436082400, -162.8829903333371800 64.4015040153980700, -162.8844002229918700 64.4025072298248300, -162.8857077149390600 64.4035360821245600, -162.8869103108621300 64.4045886153723500, -162.8880057138925700 64.4056628294760600, -162.8889918286099600 64.4067566811759800, -162.8898667646394400 64.4078680903401700, -162.8906288474433400 64.4089949444612000, -162.8912766111266700 64.4101350995552500, -162.8918088101284500 64.4112863864576200, -162.8918368348020600 64.4113621021793400, -162.8927798585036400 64.4119173633956700, -162.8942900828210400 64.4128930324874900, -162.8957005579343600 64.4138962460149900, -162.8969568038134200 64.4148822636056500, -162.8981166621542000 64.4158901293260400, -162.8991780959923000 64.4169180796057500, -162.9001392365365200 64.4179643184985500, -162.9008347110530500 64.4187700436027000, -162.9009897883480300 64.4189516904681900, -162.9018651146832600 64.4200630978337500, -162.9026275365315500 64.4211899501561300, -162.9032755897966000 64.4223301025522200, -162.9033218626138400 64.4224301575258100, -162.9046582965431200 64.4226909357381600, -162.9062447869673000 64.4230241840189100, -162.9078088393064500 64.4233767119657200, -162.9093491990063000 64.4237482362921100, -162.9116720057584200 64.4243567994267900, -162.9139312960924100 64.4250085426102100, -162.9161227748461400 64.4257022301738400, -162.9182422754606000 64.4264365428122700, -162.9202857671744000 64.4272100865762800, -162.9222493622182500 64.4280213928730600, -162.9241293221105000 64.4288689193651900, -162.9259220684486700 64.4297510562663000, -162.9269712229435600 64.4303053731944700, -162.9279859163169700 64.4308715512811400, -162.9289654291112300 64.4314491894285800, -162.9299090661504600 64.4320378811433400, -162.9310768394245800 64.4327874732633200, -162.9322308539707000 64.4335561130242200, -162.9333237056244700 64.4343412751297800, -162.9341638324948500 64.4350181615589600, -162.9346404300118000 64.4353581718422100, -162.9356672804206300 64.4360040694323300, -162.9370789453370200 64.4370072784631700, -162.9383880839429000 64.4380361253669200, -162.9391656512737500 64.4387158050904000, -162.9396940425460000 64.4390912810378600, -162.9410032809766200 64.4401201270422900, -162.9422074839881700 64.4411726548941600, -162.9433043511148800 64.4422468627026300, -162.9442917842384300 64.4433407081072600, -162.9451678911852000 64.4444521118755300, -162.9459309938202700 64.4455789597012700, -162.9465796253494100 64.4467191085001300, -162.9471125384128800 64.4478703891072100, -162.9475287050856300 64.4490306125727600, -162.9478273168771500 64.4501975692624600, -162.9480077928253400 64.4513690405488500, -162.9480697723021200 64.4525427961132200, -162.9480108226413200 64.4537396435697500, -162.9479296462361600 64.4545446779945300, -162.9478086226697800 64.4554179179026500, -162.9476219108225000 64.4562889976392000, -162.9473697022499400 64.4571569962984100, -162.9470522577554700 64.4580209956724800, -162.9465242585876300 64.4591727160480400, -162.9458803404053500 64.4603133945476000, -162.9451217154947400 64.4614408584089300, -162.9442498146771600 64.4625529609504600, -162.9432662873092900 64.4636475815706800, -162.9421729922897300 64.4647226347418600, -162.9410213618463400 64.4657313719053500, -162.9409725889138000 64.4657766707567800, -162.9399272871145900 64.4668056309751600, -162.9387262056498300 64.4678590680416000, -162.9374196966616400 64.4688888817165700, -162.9360102386815500 64.4698931078807000, -162.9345005089912800 64.4708698336759200, -162.9335815646374800 64.4714109881266500, -162.9334060331618700 64.4725822067035200, -162.9332521474686000 64.4731939966056900, -162.9336150194175700 64.4739813908285600, -162.9340315844900100 64.4751416097975000, -162.9343304849638800 64.4763085628899300, -162.9345111353805700 64.4774800296796700, -162.9345731769105600 64.4786537807474400, -162.9345248869139800 64.4797072483908700, -162.9345140959487400 64.4798272629179200, -162.9343819675537200 64.4807587078481700, -162.9343370976788800 64.4809982908385000, -162.9341442974213700 64.4818067534789600, -162.9340425067562400 64.4821648320414000, -162.9338123459629600 64.4828500129178200, -162.9336404369565800 64.4833285871446300, -162.9335156299423500 64.4836854291393100, -162.9333328490317300 64.4841599645108100, -162.9328043480422000 64.4853116803897700, -162.9323598824026400 64.4860982868065700, -162.9326910496522000 64.4862238591438200, -162.9348195776613600 64.4871115358687300, -162.9374866314029000 64.4882777335306500, -162.9380469450104800 64.4885326715456100, -162.9400643383984600 64.4889612155876600, -162.9424519691830000 64.4895254358502300, -162.9447803571277400 64.4901339926896600, -162.9470450775682500 64.4907857286784700, -162.9492418236512200 64.4914794081482200, -162.9513664189250600 64.4922137126927200, -162.9532654939074000 64.4929285199352800, -162.9550961700521700 64.4936757873077800, -162.9568554598116000 64.4944542989268300, -162.9585404934490000 64.4952627867482400, -162.9644307992419700 64.4982059026803000, -162.9649588244901400 64.4984731955815400, -162.9665548297415700 64.4993290596884200, -162.9666671748502200 64.4993838194078000, -162.9669595093738200 64.4995072225802900, -162.9686099946555000 64.5002935115363700, -162.9691985056065300 64.5005851931521800, -162.9694277239103100 64.5001418354774000, -162.9700196396945800 64.4991694866825500, -162.9706953507098300 64.4982073433942600, -162.9714539054733400 64.4972567474010200, -162.9724432883270700 64.4961629109896000, -162.9735423210212600 64.4950887121743800, -162.9747489018403100 64.4940361942150300, -162.9760862863530000 64.4929889327930800, -162.9754197789995700 64.4924440344646500, -162.9742818452309300 64.4914346524872700, -162.9732425949697500 64.4904056805777400, -162.9723038277594200 64.4893589128835700, -162.9714310770825000 64.4882468139393800, -162.9706717120298500 64.4871193536752700, -162.9700271670201000 64.4859786787730500, -162.9694879182328000 64.4848330288213000, -162.9693362574623000 64.4845896812688600, -162.9688077708619000 64.4834379653898400, -162.9683963022475300 64.4822774010812600, -162.9681026205394700 64.4811101997759700, -162.9679272707269300 64.4799385827994300, -162.9678705702705800 64.4787647813696500, -162.9679326118005600 64.4775910303018800, -162.9681132631165800 64.4764195635120800, -162.9684121644897600 64.4752526104197200, -162.9688287322601600 64.4740923914507700, -162.9693621579372000 64.4729411144409100, -162.9700114135958400 64.4718009701387000, -162.9707752491784000 64.4706741268095700, -162.9716521978906000 64.4695627275378900, -162.9726405780002400 64.4684688866298600, -162.9737384973337600 64.4673946833180500, -162.9749438559741500 64.4663421608621000, -162.9762543489590000 64.4653133184549500, -162.9772668515839000 64.4645846724447400, -162.9783320913529000 64.4638701772669300, -162.9794490052673600 64.4631705451846000, -162.9806164772685700 64.4624864722729300, -162.9826733679815000 64.4613201621957600, -162.9845527693947500 64.4603061181329000, -162.9863475158251700 64.4594239857283900, -162.9882295729364000 64.4585764628335500, -162.9901953569301400 64.4577651610334200, -162.9922411275260000 64.4569916217660100, -162.9935854089394500 64.4565188310792200, -162.9949595856163600 64.4560623540944000, -162.9958202862771700 64.4557845724001500, -162.9973205326164700 64.4553152036338000, -162.9988523784345000 64.4548652782101000, -163.0004144711509000 64.4544351936293700, -163.0020054330043000 64.4540253285061300, -163.0043899719196400 64.4534611046463000, -163.0068291464479300 64.4529422884559200, -163.0093183223826500 64.4524698637932300, -163.0118527728871200 64.4520447290810200, -163.0130985983216200 64.4518623052013000, -163.0149415610042000 64.4514702826275000, -163.0174306038392700 64.4509978588641300, -163.0199649176468000 64.4505727232526000, -163.0216487371994300 64.4503200515292200, -163.0226526477015000 64.4501880517372600, -163.0233475916180300 64.4500824056785300, -163.0251898636212800 64.4497786272818900, -163.0257773745261700 64.4496725468505900, -163.0282651726995200 64.4491928529678300, -163.0296139857967700 64.4489665727492100, -163.0292232285691200 64.4478359189925000, -163.0291120921493200 64.4474468722754000, -163.0289057391085500 64.4466193512021700, -163.0287587503160600 64.4457894694085700, -163.0286712615694300 64.4449580209959500, -163.0286433511097400 64.4441258018643500, -163.0287053099021000 64.4429520445012800, -163.0288857291930000 64.4417805723156200, -163.0291842492536600 64.4406136138272800, -163.0296002864240600 64.4394533885631000, -163.0301330349116100 64.4383021061573200, -163.0307814667912400 64.4371619564591900, -163.0315443347032600 64.4360351068347700, -163.0324201727527500 64.4349237021671700, -163.0324976007836000 64.4348379032467200, -163.0325311544891600 64.4342020474865600, -163.0327115153241400 64.4330305735022100, -163.0330099382580000 64.4318636132152300, -163.0334258423287400 64.4307033879510400, -163.0338727019636000 64.4297210009235100, -163.0344037777121600 64.4287464757692900, -163.0349617207068000 64.4278017046849500, -163.0358077992904700 64.4265052411240600, -163.0368028388798800 64.4252286948484400, -163.0374192908675500 64.4245290753565900, -163.0380804967175300 64.4238371360750100, -163.0381737582123400 64.4237467461155100, -163.0383356145969200 64.4231136144018100, -163.0387513846686400 64.4219533873389900, -163.0392837923131400 64.4208021022353100, -163.0399318087059700 64.4196619489398500, -163.0406941882861200 64.4185350966174600, -163.0415694660579800 64.4174236883525900, -163.0425307684801600 64.4163561103462700, -163.0435962177912000 64.4153071824805500, -163.0447638714554700 64.4142788050228900, -163.0457412870307500 64.4135032099052900, -163.0456883016737500 64.4124038192808800, -163.0457501858223800 64.4112300574212800, -163.0459303928733200 64.4100585798396400, -163.0462285639970000 64.4088916159553800, -163.0466441173321000 64.4077313861946000, -163.0471411312581700 64.4066487238595800, -163.0477403360476400 64.4055757858938600, -163.0482139226344000 64.4047979784439800, -163.0490107183699400 64.4036022245630900, -163.0499343886611000 64.4024236774108700, -163.0509203468964800 64.4013298248116300, -163.0519014029273700 64.4003861949669800, -163.0520214705144300 64.4002609239025800, -163.0521168130404700 64.4001669924128400, -163.0528965873076300 64.3993018230207800, -163.0539917358299200 64.3982276080177500, -163.0551940538624600 64.3971750738706400, -163.0565012418388200 64.3961462206716000, -163.0574523270632000 64.3954586377060400, -163.0584502561743500 64.3947836065782400, -163.0594941424406800 64.3941217244381000, -163.0605830586612000 64.3934735767442100, -163.0618336316167600 64.3927519994052800, -163.0628867116524000 64.3921615648044400, -163.0639771540224000 64.3915839788176100, -163.0657674083391800 64.3907018365205800, -163.0676752049467000 64.3898429857652600, -163.0692185306106700 64.3889418542831900, -163.0708162166950200 64.3880839720977200, -163.0726062434833400 64.3872018289013100, -163.0744833516253600 64.3863542961139500, -163.0757051624632400 64.3858496316552200, -163.0774719462732800 64.3849798244593800, -163.0793489024298700 64.3841322916719600, -163.0813093606384400 64.3833209790800000, -163.0833495887125000 64.3825474299200100, -163.0854050638925500 64.3818332566995100, -163.0875285179267300 64.3811574161818500, -163.0900824846189300 64.3803800368093000, -163.0923998010099800 64.3797077414191700, -163.0947843471198800 64.3790811001127300, -163.0971623857355000 64.3785168690583300, -163.0995949115758800 64.3779980456733400, -163.1020773048237200 64.3775256147154100, -163.1025294425796800 64.3774495635465800, -163.1037074582325800 64.3768688065502500, -163.1055838613061200 64.3760212728635100, -163.1075437412506200 64.3752099593721700, -163.1095833676782500 64.3744364084136000, -163.1116988600143400 64.3737020894798800, -163.1138861946921000 64.3730083965203300, -163.1161412132463800 64.3723566461423500, -163.1184596277096300 64.3717480776117600, -163.1208370332025000 64.3711838456579800, -163.1232689106316800 64.3706650213736700, -163.1257530413697300 64.3702030684169100, -163.1260704939581000 64.3701364565323000, -163.1267512834449500 64.3699835178251200, -163.1285202948756700 64.3696108243801200, -163.1289710404811000 64.3695210477582100, -163.1310017420367400 64.3691375939248500, -163.1312312409290000 64.3690968492402400, -163.1335283270706200 64.3687114456767500, -163.1360954391531700 64.3683344013116400, -163.1386980142019600 64.3680061694491900, -163.1413311122410000 64.3677273733196700, -163.1439897339390400 64.3674985426237100, -163.1462211362963600 64.3673482686077700, -163.1466689069444800 64.3673215398572400, -163.1484636947437000 64.3672321913126100, -163.1493633999009500 64.3671945555843200, -163.1507145251552000 64.3671508890024000, -163.1520681334375800 64.3671178380178600, -163.1529706912443800 64.3671043382946100, -163.1547779283586700 64.3670844201099600, -163.1551903970191700 64.3670837663028100, -163.1570000002497800 64.3670621169232000, -163.1597099075861500 64.3670877035347600, -163.1624146725990300 64.3671644175039400, -163.1651091592602500 64.3672921104425800, -163.1677882558233300 64.3674705422317900, -163.1704468748234000 64.3676993729277500, -163.1730799701644500 64.3679781690573200, -163.1756825425153000 64.3683064009197200, -163.1782496518998800 64.3686834452848300, -163.1807764221941000 64.3691085862922700, -163.1832580555148000 64.3695810172502000, -163.1856898376158800 64.3700998415345100, -163.1863266376641700 64.3702496497016300, -163.1889181537497700 64.3706284513419900, -163.1909974393802800 64.3709742523599300, -163.1930468270494100 64.3713520782358700, -163.1950636898373800 64.3717614442353500, -163.1970454412940500 64.3722018251541500, -163.1985994859774700 64.3725625162471700, -163.2002917519627700 64.3729700809045700, -163.2026078569670000 64.3735913262787600, -163.2036510831309500 64.3738030311849900, -163.2060832384506700 64.3743218554693000, -163.2084609146394600 64.3748860874230800, -163.2098674579168300 64.3752480933249000, -163.2112515415254000 64.3756259956432500, -163.2126122076872200 64.3760195326753400, -163.2139485148120700 64.3764284328259500, -163.2164195918906300 64.3772058193931100, -163.2181383447088200 64.3777664153878400, -163.2198113175382400 64.3783524190289400, -163.2214089784416000 64.3789582626137600, -163.2218549414523600 64.3791144442762400, -163.2222518482441800 64.3792294082106800, -163.2236683991772600 64.3797010423692800, -163.2257033032648000 64.3804084239096700, -163.2277433730582000 64.3811819739689800, -163.2297036783820400 64.3819932856616800, -163.2315804888484600 64.3828408193484200, -163.2333702323503200 64.3837229634440900, -163.2346830950487800 64.3844226755661000, -163.2359411476658000 64.3851410198422500, -163.2371429773665000 64.3858771895807000, -163.2382872333691000 64.3866303619017200, -163.2393440590810200 64.3873519851060800, -163.2404937065193200 64.3881622508872000, -163.2460829939350000 64.3909031677470700, -163.2469944613253000 64.3913619793718800, -163.2486941997774700 64.3922770575402400, -163.2503001973961700 64.3932233313917100, -163.2518093928891300 64.3941990040808000, -163.2532189075265300 64.3952022203062600, -163.2542972180421500 64.3960430846207100, -163.2553054695717400 64.3969000764773800, -163.2562423697895000 64.3977721014014200, -163.2571067163018800 64.3986580478306800, -163.2581182602495000 64.3997387667307600, -163.2599766256207400 64.4002177285654000, -163.2622339302516500 64.4008694744467200, -163.2644234835569000 64.4015631647083600, -163.2665411216754000 64.4022974809440700, -163.2682096752363000 64.4029245107576000, -163.2698215733069300 64.4035878183232200, -163.2701132962915600 64.4037040458051100, -163.2713512310744200 64.4042188519185300, -163.2720721707940200 64.4045225898457300, -163.2724941335973500 64.4047083061434500, -163.2736072460775200 64.4052109390336800, -163.2739505002154000 64.4053700425934600, -163.2746886808379300 64.4057282524569200, -163.2757422698898000 64.4062510085772100, -163.2774429310464000 64.4071660849469400, -163.2790498001081700 64.4081123569997100, -163.2805598148835300 64.4090880269909000, -163.2819700939446600 64.4100912405184000, -163.2832779474193200 64.4111200910194300, -163.2844808769908400 64.4121726233679500, -163.2855765830928200 64.4132468356729600, -163.2865629703048000 64.4143406864735700, -163.2874350599800000 64.4154545013242300, -163.2875569540901200 64.4156219074251300, -163.2881949403442000 64.4165825335571200, -163.2884019265076700 64.4169222263797100, -163.2888641528583400 64.4177213315742300, -163.2889965735330000 64.4179576293411700, -163.2897441089034800 64.4186166309527800, -163.2908400731108700 64.4196908423585300, -163.2918266923479400 64.4207846913605000, -163.2927020771391300 64.4218960987260500, -163.2934645502487600 64.4230229501490600, -163.2941126466812700 64.4241631034445300, -163.2946451199762800 64.4253143876489400, -163.2950609413093700 64.4264746147117600, -163.2953593057873100 64.4276415758980600, -163.2954821064140600 64.4284393482973300, -163.2958125703938000 64.4286742665042300, -163.2959511846994000 64.4287783576351700, -163.2970913245050000 64.4296389404847800, -163.2983577534075700 64.4306437242285600, -163.2995242901138800 64.4316708543265100, -163.3005888167204800 64.4327184772759600, -163.3011757349721600 64.4333699425688500, -163.3015183847656100 64.4335541345157600, -163.3031268015606000 64.4345004020719300, -163.3046382696404000 64.4354760684658500, -163.3060499075771500 64.4364792774966900, -163.3073590210020000 64.4375081244005000, -163.3085550383843000 64.4385720115891400, -163.3090267139117000 64.4389242814305000, -163.3103359442484000 64.4399531274349300, -163.3115401400653800 64.4410056552868000, -163.3126369999975200 64.4420798630952700, -163.3136244268258000 64.4431737084999000, -163.3142872811331000 64.4439994785931300, -163.3148877395775000 64.4448341088071300, -163.3154251627410400 64.4456767187056700, -163.3158989786549000 64.4465264206578500, -163.3163739106274500 64.4474432246251500, -163.3169202163948300 64.4486203895194200, -163.3173363938594500 64.4497806129849700, -163.3176350146442000 64.4509475696746700, -163.3178154950890000 64.4521190409610100, -163.3178774763644000 64.4532927965253700, -163.3178709778633200 64.4534274412234800, -163.3181660544198300 64.4537266186885600, -163.3182358526025000 64.4537448857179800, -163.3204975648107500 64.4543966262033900, -163.3226913934930000 64.4550903092704200, -163.3248131675936000 64.4558246183115700, -163.3267925952020800 64.4565720196830000, -163.3286973485038000 64.4573547779007200, -163.3305240388532700 64.4581715035121200, -163.3322694143020000 64.4590207450114000, -163.3357142575069400 64.4607696368093500, -163.3359482467142000 64.4608891207364000, -163.3376523001135200 64.4618041881128600, -163.3392623761577000 64.4627504511724400, -163.3405916703692600 64.4636032404972000, -163.3410004266283700 64.4636963464093400, -163.3437996519323600 64.4636769759117700, -163.3448059995971800 64.4636734730523800, -163.3475254559350300 64.4636990605632700, -163.3502397501643200 64.4637757718344300, -163.3529437318677000 64.4639034629744900, -163.3556322686142700 64.4640818920657400, -163.3583002558521000 64.4643107191644200, -163.3609426303980600 64.4645895098980200, -163.3635543740351200 64.4649177354651800, -163.3661305305995000 64.4652947735350500, -163.3686662059806000 64.4657199073478800, -163.3711565861075300 64.4661923302119200, -163.3735969405463500 64.4667111464023600, -163.3759826323925500 64.4672753684635600, -163.3778153652868600 64.4677497293665700, -163.3796094210379000 64.4682508927645600, -163.3806639498813500 64.4685566451730700, -163.3820232140001000 64.4689621135107700, -163.3833571451161200 64.4693829701479900, -163.3846648088338300 64.4698189192078000, -163.3859452869454000 64.4702696567193200, -163.3879148229107200 64.4710127512375400, -163.3898105029523200 64.4717908131955300, -163.3916289923840600 64.4726024774224700, -163.3933670887201400 64.4734463175935300, -163.3953955797421700 64.4744736653274200, -163.3956671678055300 64.4746121483320300, -163.3973720755608000 64.4755272130105400, -163.3989829591962000 64.4764734751707900, -163.4004967475268600 64.4774491343700900, -163.4019105519304000 64.4784523371057500, -163.4032216744407000 64.4794811768148900, -163.4044276122445000 64.4805336974722000, -163.4055260594800200 64.4816078980861100, -163.4065149153310600 64.4827017371955000, -163.4073922858253000 64.4838131346684800, -163.4081564892305800 64.4849399752996500, -163.4088060578532700 64.4860801178032300, -163.4093397416357300 64.4872313921151200, -163.4097974947585500 64.4885275004438700, -163.4099760344663800 64.4892765646618000, -163.4115553366094700 64.4897004664034600, -163.4123407487265400 64.4899092449158000, -163.4131196911208000 64.4900810208225200, -163.4133421276370700 64.4901337201951000, -163.4157312989602500 64.4906924393046700, -163.4180597867297400 64.4913009952447900, -163.4197320293096700 64.4917822098811400, -163.4214585333845700 64.4921094147177900, -163.4239011981817000 64.4926282273108900, -163.4262891491249000 64.4931924475734500, -163.4286178491344000 64.4938010035135700, -163.4308828726464400 64.4944527395023800, -163.4330764054517100 64.4951583143048300, -163.4342645141959500 64.4955385647530200, -163.4359641851989700 64.4960507601345500, -163.4377601349222600 64.4966435986232200, -163.4390812524977700 64.4970357471020700, -163.4412785004024300 64.4977294256725000, -163.4434035813102000 64.4984637293177300, -163.4454524545671000 64.4992372631891700, -163.4460368142475500 64.4994780683582000, -163.4462042922942300 64.4995341105108700, -163.4484743601036000 64.5001747560601800, -163.4504666570106000 64.5008036582622700, -163.4506741755727100 64.5008566256328200, -163.4513580991968800 64.5009785170449800, -163.4535030776049200 64.5014429125604400, -163.4556051286737000 64.5019424742658300, -163.4579345742211800 64.5025510293066300, -163.4602003216874700 64.5032027643961200, -163.4623980660179000 64.5038964420672300, -163.4627977957816300 64.5040345338666700, -163.4629932175629000 64.5040911848603300, -163.4651240703195800 64.5046372352202900, -163.4653277406826500 64.5046808136687000, -163.4667833869437200 64.5049150375989500, -163.4692773346812000 64.5053874568657200, -163.4717211856841500 64.5059062685595000, -163.4741102967527700 64.5064704879227400, -163.4763638386202200 64.5070581562089800, -163.4778196350680700 64.5074748777634600, -163.4788060600516000 64.5076842750093500, -163.4811953258036000 64.5082484934732700, -163.4832560692122000 64.5088080435564300, -163.4835219852514000 64.5088711175081400, -163.4856416252607700 64.5093864973890200, -163.4879703468539800 64.5100031661132800, -163.4882297760832700 64.5100613576456100, -163.4903877002321600 64.5104621342201800, -163.4907269335011500 64.5105226424061000, -163.4929276033262000 64.5108870575916700, -163.4954220960528600 64.5113594768584400, -163.4978664812530800 64.5118782876529000, -163.5002561139285000 64.5124425061168300, -163.5025864534020700 64.5130510593589300, -163.5031651995143000 64.5132174699103900, -163.5043458133086200 64.5134150662523800, -163.5068405371610300 64.5138874855190900, -163.5092851471917800 64.5144062963135500, -163.5116750011004000 64.5149705138781500, -163.5140055564112600 64.5155790680196300, -163.5149074999811200 64.5158366725244700, -163.5172728680484000 64.5162786353507700, -163.5195933401605000 64.5167638249905600, -163.5218654233506000 64.5172898348580500, -163.5289442848508400 64.5190103638372500, -163.5294577599676000 64.5191365270291600, -163.5309043419618000 64.5195139850824300, -163.5341452593961800 64.5201143131251300, -163.5357261758223300 64.5204183586204200, -163.5372869609245000 64.5207411396918900, -163.5388264186043200 64.5210824099253300, -163.5394522271385500 64.5212354673429900, -163.5419920268105600 64.5216650932695200, -163.5437053162473300 64.5219894355640800, -163.5450013265499600 64.5220259858106700, -163.5477110693103700 64.5221536751520300, -163.5504053329397300 64.5223321024446400, -163.5524866159645400 64.5225057165656000, -163.5545530556789500 64.5227096135578800, -163.5563844099125700 64.5229044273974600, -163.5579968943411600 64.5230857981711100, -163.5595975949530000 64.5232856086439600, -163.5611853786023200 64.5235037185218500, -163.5627591157405600 64.5237399722220200, -163.5653002131343000 64.5241651015382400, -163.5677959181470800 64.5246375199057000, -163.5702414904524000 64.5251563298008400, -163.5726322841525800 64.5257205464661200, -163.5731208768269800 64.5258431582352000, -163.5749808456894500 64.5263147591189200, -163.5771812448185800 64.5268993544217400, -163.5793237015275800 64.5275226142773000, -163.5814045519784700 64.5281834747875700, -163.5834202384532100 64.5288808073035000, -163.5854713932901300 64.5296543375776500, -163.5874423519829300 64.5304656294852600, -163.5885196093924200 64.5309494575514600, -163.5909870244316000 64.5312949977660000, -163.5935288250951800 64.5317201270822800, -163.5944097991728700 64.5318868425038100, -163.5958766545839200 64.5321010007606300, -163.5984185298912000 64.5325261300769200, -163.6009149984284000 64.5329985475449900, -163.6020783209577300 64.5332452621592000, -163.6030173291863700 64.5333629735224600, -163.6055999374870900 64.5337400061964100, -163.6081419656791500 64.5341651355126400, -163.6100763741253300 64.5345535940731500, -163.6106363073197000 64.5346514088354900, -163.6119277256839600 64.5348962303767700, -163.6127385130719000 64.5350127609302100, -163.6153211285672000 64.5354005872673600, -163.6156242387675700 64.5354402024034900, -163.6163416405542500 64.5355436981831800, -163.6176063976171200 64.5355053241114500, -163.6203329999679600 64.5354797374999400, -163.6230596023187600 64.5355053241114500, -163.6257810290712200 64.5355820353826700, -163.6284921154187700 64.5357097247240900, -163.6311877163400000 64.5358881511173200, -163.6332823003378700 64.5360628821962900, -163.6351146114501200 64.5362297217243400, -163.6372532910065400 64.5364413753692400, -163.6388551769248400 64.5366255844032300, -163.6393742647105000 64.5366725901679400, -163.6402990474630300 64.5367211535584600, -163.6429741276538400 64.5369499779591800, -163.6456235268043000 64.5372287650955000, -163.6482422150061800 64.5375569870653300, -163.6508252199079400 64.5379340197392800, -163.6533525747615000 64.5383563116944900, -163.6536301316252500 64.5383997444527000, -163.6562148722185600 64.5387680231258400, -163.6570705744474300 64.5389175255234600, -163.6575619199466300 64.5389895810044400, -163.6601450579480300 64.5386129907969300, -163.6627638477733300 64.5382847688270500, -163.6654133485471600 64.5380059816907300, -163.6680885321600000 64.5377771581893300, -163.6707843192409000 64.5375987317961000, -163.6734955935468000 64.5374710424546800, -163.6762172091568500 64.5373943311835200, -163.6789439994660000 64.5373687445719500, -163.6813897552330000 64.5373893273556400, -163.6824732935076600 64.5374167108126400, -163.6839234035422200 64.5373207315665800, -163.6866346499690800 64.5371930413258500, -163.6893562377002000 64.5371163309539500, -163.6920830001303000 64.5370907443424400, -163.6944912991341000 64.5371107011979500, -163.6968960332253300 64.5371705420869300, -163.6993935917408300 64.5372534604789000, -163.7024252810019000 64.5373861203731800, -163.7054383902694800 64.5375821572907900, -163.7068609999351700 64.5377038418588400, -163.7082836096008700 64.5375821572907900, -163.7111384660673300 64.5373948132200900, -163.7131365447157500 64.5372839223152300, -163.7151299585807000 64.5371872308061300, -163.7171295417949000 64.5371180954238000, -163.7191332412061000 64.5370765854161200, -163.7211390000647700 64.5370627439505100, -163.7238657597969500 64.5370883305620900, -163.7265873448300800 64.5371650409339300, -163.7292985885589800 64.5372927311746600, -163.7319943459622800 64.5374711566685700, -163.7346694989981600 64.5376999810693500, -163.7373189709937000 64.5379787682056200, -163.7391893962736000 64.5382255619601900, -163.7399383777539000 64.5382972208401500, -163.7418837210568700 64.5384161606773400, -163.7445734413112500 64.5386446604227900, -163.7473096547167600 64.5387210470387300, -163.7500210531290700 64.5388487363801500, -163.7527169634171000 64.5390271627733800, -163.7557767088280200 64.5392931804360000, -163.7588018600178000 64.5396245437377700, -163.7597180596407000 64.5397354391392400, -163.7605441894627300 64.5398426248373200, -163.7611332615907100 64.5398729553726300, -163.7634123612914200 64.5400271666205200, -163.7660877652381500 64.5402559901219200, -163.7687374845472400 64.5405347772582400, -163.7713564902098300 64.5408629983287500, -163.7739398080756500 64.5412400310027000, -163.7764825332422700 64.5416651594196100, -163.7789798381489800 64.5421375759884200, -163.7814269779726100 64.5426563849842400, -163.7838193041175700 64.5432205998508800, -163.7855877183984600 64.5436763618746500, -163.7871419204632300 64.5440920150345000, -163.7890008290250000 64.5446089669303500, -163.7908161330580600 64.5451538832451800, -163.7925855608749000 64.5457260840915400, -163.7942871141589800 64.5463154781768400, -163.7952034756598300 64.5464171591246400, -163.7977879986172200 64.5465499314342400, -163.8003590227506800 64.5467211902308100, -163.8030350823031800 64.5469500137322100, -163.8056854509228000 64.5472288008685400, -163.8075010238531500 64.5474562780848400, -163.8078316829857500 64.5474856517415100, -163.8080559775013400 64.5474460213168900, -163.8106756144880000 64.5471178002463300, -163.8133259723157400 64.5468390131100000, -163.8160020210763700 64.5466101896086000, -163.8176678173158800 64.5464938623019900, -163.8193402892229400 64.5463969018955500, -163.8203952704253700 64.5463419551172100, -163.8222697327619200 64.5462566229448400, -163.8241493104423000 64.5461956156352100, -163.8260323010498200 64.5461589898455400, -163.8279169994699200 64.5461467770521700, -163.8306446666180400 64.5461723636636900, -163.8333671563691500 64.5462490740355900, -163.8337527829645200 64.5462672295490700, -163.8353278537974000 64.5461930741511200, -163.8380503381525600 64.5461163637792200, -163.8407779999047300 64.5460907771677000, -163.8424767994647000 64.5461006984884900, -163.8441743489670200 64.5461304570550300, -163.8458693983540000 64.5461800285855200, -163.8465697606858700 64.5462023920268300, -163.8470235630869400 64.5460178592368800, -163.8474192944648300 64.5458486419013300, -163.8486580836036500 64.5453419269883900, -163.8493945042529300 64.5450451246328500, -163.8500342414870400 64.5447988183108800, -163.8514461258380000 64.5442698469759100, -163.8535747734570000 64.5435355487266500, -163.8557757076827400 64.5428418755521400, -163.8580447457683800 64.5421901458586300, -163.8582981693250200 64.5421240366949900, -163.8605310303827300 64.5410595190816100, -163.8620156842763700 64.5403758832404700, -163.8635545933697700 64.5397148635501600, -163.8651458960662200 64.5390772559106800, -163.8667876696152300 64.5384638319403600, -163.8689158639759000 64.5377295336911000, -163.8711163305541700 64.5370358596172800, -163.8733848857038700 64.5363841290243800, -163.8757172162764800 64.5357755775809200, -163.8773673391313500 64.5353800863220000, -163.8790444173659500 64.5350062165637200, -163.8824031918538000 64.5342848505654800, -163.8840105474487800 64.5339518433029900, -163.8856392826267600 64.5336386993665200, -163.8872880753843300 64.5333456741635700, -163.8889555839330000 64.5330730042158500, -163.8915381292812000 64.5326959706425800, -163.8941563516342800 64.5323677486727000, -163.8968052786406700 64.5320889615363700, -163.8994798830901000 64.5318601371356500, -163.9003180881092600 64.5317990920544800, -163.9030934588960000 64.5316052800597000, -163.9055836573598700 64.5314534079484500, -163.9080860092619000 64.5313447527581700, -163.9105964748474000 64.5312794889573000, -163.9131109999726400 64.5312577226658300, -163.9158371805414200 64.5312833092773400, -163.9185581873104800 64.5313600205485600, -163.9212688545739500 64.5314877098899700, -163.9239640391090800 64.5316661362832000, -163.9266386246727600 64.5318949606839300, -163.9292875327933800 64.5321737478202500, -163.9312987577314700 64.5324258781518000, -163.9322453760232500 64.5321495722450300, -163.9348350260156000 64.5314771248694700, -163.9351101205356000 64.5314055136535700, -163.9374179032136300 64.5308035623346000, -163.9398069162561500 64.5302308173983800, -163.9399209934590500 64.5302038377369600, -163.9423097879663000 64.5296283435732800, -163.9440859966714000 64.5292500437545900, -163.9447536263787000 64.5291004918942700, -163.9464767840762800 64.5286843405099800, -163.9489226720436600 64.5281655306147900, -163.9514186990137100 64.5276931131467100, -163.9539601246600000 64.5272679838304300, -163.9565288501263200 64.5268927506999100, -163.9591329063585200 64.5265658291497700, -163.9617673992460400 64.5262878325175400, -163.9644273789203600 64.5260592842086600, -163.9677312938641000 64.5258073202516600, -163.9704548942779000 64.5256266878214400, -163.9731649805793600 64.5254989984800300, -163.9758854036884000 64.5254222872088700, -163.9786109996978500 64.5253967005973000, -163.9792475812108700 64.5253980954457800, -163.9984506555732700 64.5254810147370700, -164.0010213352664000 64.5255147195287600, -164.0035866289197500 64.5255939057342400, -164.0061422044991000 64.5257184411531700, -164.0086837452586200 64.5258881153442900, -164.0113577651487200 64.5261169397450100, -164.0140061129917000 64.5263957277806500, -164.0166237633759500 64.5267239497505300, -164.0192057448492200 64.5271009833237500, -164.0217471543077000 64.5275261126400300, -164.0242431659893000 64.5279985310074800, -164.0255297451016400 64.5282858032472900, -164.0266884064447800 64.5285206845819600, -164.0280219175774000 64.5287765327108800, -164.0291639018925300 64.5290187597080400, -164.0294444328143000 64.5290329087417800, -164.0318240569346500 64.5291931265616100, -164.0344983996813800 64.5294219509623300, -164.0371470685823300 64.5297007389979700, -164.0397650355279500 64.5300289609678500, -164.0423473290659600 64.5304059945410700, -164.0448890460925800 64.5308311229580300, -164.0473853599464000 64.5313035413254300, -164.0498315294015300 64.5318223503212500, -164.0522229067617000 64.5323865660872100, -164.0545582653516300 64.5330073537064700, -164.0551755069440700 64.5331172679476000, -164.0569421144869600 64.5334798826904700, -164.0586815355244000 64.5338661100329900, -164.0603920667404600 64.5342755731592200, -164.0606459561459200 64.5343418217177600, -164.0609101095139000 64.5343601463037500, -164.0635849585789600 64.5345889698051600, -164.0653746175445300 64.5347773067273900, -164.1036607850171800 64.5348408977892500, -164.1063329630957500 64.5348694629553800, -164.1089998747444000 64.5349471365012200, -164.1116566555302000 64.5350737754344600, -164.1142984626039300 64.5352491486293600, -164.1169733989032000 64.5354779730300800, -164.1172428870495700 64.5355063322514900, -164.1180194471397400 64.5355081030165800, -164.1206644378135300 64.5355381088966700, -164.1233041224872400 64.5356162258082100, -164.1259337851160800 64.5357423152556700, -164.1285487276416300 64.5359161515092400, -164.1306257244975500 64.5360892817950000, -164.1326879526868400 64.5362925393692400, -164.1327613445603800 64.5363009066615500, -164.1445714880836700 64.5363415623132800, -164.1471756612277500 64.5363736618151000, -164.1497744780097300 64.5364523974602100, -164.1523634382220700 64.5365776343504100, -164.1549380587444000 64.5367491539503200, -164.1576131416331600 64.5369779783511000, -164.1589508795794000 64.5371187438350400, -164.1609700500277700 64.5371187438350400, -164.1636987648860500 64.5371443304465500, -164.1664203553151300 64.5372210417177700, -164.1691316053393000 64.5373487310591300, -164.1718273681385000 64.5375271574524200, -164.1745025265703000 64.5377559809538200, -164.1771520893973700 64.5380347788819800, -164.1896787992371600 64.5381389527505000, -164.1919974034573800 64.5378949819679000, -164.1946725762783500 64.5376661575671700, -164.1953831576066000 64.5376140931159600, -164.1977419237507500 64.5374472544872300, -164.2002639510205000 64.5372914757210800, -164.2027986065704000 64.5371800200419400, -164.2053416932645000 64.5371130727102100, -164.2078889995776500 64.5370907443424400, -164.2094827619199000 64.5370994830547600, -164.2120352474287000 64.5371274546683400, -164.2143626290320800 64.5371716131794500, -164.2166845841262300 64.5372530333008900, -164.2189978985341600 64.5373716026174400, -164.2212993679714300 64.5375271574524200, -164.2239745264032500 64.5377559809538200, -164.2260016936232300 64.5379692866533200, -164.2384512200477500 64.5378990981649300, -164.2392780000796200 64.5378967464377500, -164.2413299715009600 64.5379112327172500, -164.2433761216107000 64.5379453880692600, -164.2434662705519200 64.5379412736709200, -164.2460255144658800 64.5376719806774300, -164.2487006657031300 64.5374431562767100, -164.2509008498943000 64.5372936547784100, -164.2531119905259200 64.5371779551985000, -164.2553312880085000 64.5370962050258800, -164.2575559337593000 64.5370485067832100, -164.2675460958756000 64.5369106425122300, -164.2695559997095800 64.5368967434899900, -164.2712049525465000 64.5369073995569200, -164.2714378544734000 64.5368985556239000, -164.2731169408940800 64.5367491539503200, -164.2758126272509300 64.5365707284564100, -164.2785237990340800 64.5364430382156800, -164.2812457177156800 64.5363749505435700, -164.2817458235109300 64.5363608347847700, -164.2844673204104700 64.5362833276135500, -164.2871940001030000 64.5362577410019800, -164.2877276011478500 64.5362587203637200, -164.2903382575045400 64.5362681695404500, -164.2907202292551600 64.5362279752409300, -164.2933952392988300 64.5359991508402100, -164.2960422561451700 64.5358226615866200, -164.2962976474184700 64.5357906313326500, -164.2988148021613600 64.5353510112402100, -164.3013975633468500 64.5349739785663100, -164.3040160033358500 64.5346457565964300, -164.3066651515754600 64.5343669694601100, -164.3082450769487000 64.5342318112491300, -164.3093591553007400 64.5341139496990800, -164.3120274267243400 64.5338109663031200, -164.3147006893853000 64.5335753286385600, -164.3154416920803800 64.5334151324024700, -164.3171399070810000 64.5331311148091800, -164.3180290550968000 64.5329425458618900, -164.3205255182380400 64.5324701283937500, -164.3228936067545200 64.5320636627079100, -164.3230651353477000 64.5320330947515700, -164.3253882973320400 64.5315811260681500, -164.3279300845057700 64.5311559967519200, -164.3305124481909200 64.5307789640779700, -164.3317799382935000 64.5306344079516000, -164.3331286821429300 64.5304396993327000, -164.3334306915731400 64.5303789950946200, -164.3341349956335200 64.5302761612159100, -164.3352641259386400 64.5300412214252800, -164.3375918474857500 64.5296061015404200, -164.3399586050056000 64.5292119907408600, -164.3425407852290300 64.5288349571675900, -164.3451586370614200 64.5285067351977100, -164.3473191863313600 64.5282791338750000, -164.3478065622230400 64.5282229352403100, -164.3499369662180000 64.5279507329400400, -164.3525839237091000 64.5276644427598900, -164.3526545825429300 64.5276553973787400, -164.3529187970648000 64.5275811124784000, -164.3554602128185400 64.5271559831621700, -164.3580421987884000 64.5267789495889000, -164.3606598536693000 64.5264507276190200, -164.3633082078075000 64.5261719395833800, -164.3646827954746000 64.5260415837521500, -164.3672992983239300 64.5257007254082300, -164.3677950558971000 64.5256485368505500, -164.3683702227076000 64.5255265231305700, -164.3708660086593300 64.5250541047631700, -164.3734071887907000 64.5246289754468900, -164.3743726595705500 64.5244816422140800, -164.3758714292230500 64.5242588486669900, -164.3782221518308000 64.5239316249445700, -164.3806010214199800 64.5236446386891800, -164.3830043273877700 64.5233983377631300, -164.3845484399585000 64.5232537375699700, -164.3863106749976200 64.5229903477264200, -164.3871287657799000 64.5228621853416400, -164.3888527958198400 64.5225729678682000, -164.3905717599787000 64.5223478234933000, -164.3915139320223200 64.5221938892366300, -164.3938444459644000 64.5215815345602600, -164.3962348772377600 64.5210173169956500, -164.3986800799217200 64.5204985071004600, -164.3994630962448600 64.5203675352336200, -164.3999413862859200 64.5202551784337900, -164.4006326025125600 64.5201197549228000, -164.4011665444004700 64.5199912274132400, -164.4013991621416000 64.5199466498181100, -164.4018849390386700 64.5198063780619600, -164.4030128552590200 64.5195111657078000, -164.4042081756667500 64.5191925269136300, -164.4054910324851400 64.5188868149745600, -164.4065943009861700 64.5186126188773400, -164.4078212235705800 64.5182755241961600, -164.4102113661616000 64.5177113066315500, -164.4126562729686000 64.5171924958371000, -164.4151512980939200 64.5167200765703200, -164.4159383271920000 64.5165974989754400, -164.4165586426671800 64.5164710462019000, -164.4169072738516000 64.5163964591293400, -164.4177684448578000 64.5161579823051200, -164.4178414221438800 64.5161407216170900, -164.4192400792662200 64.5157755159273700, -164.4216300033219800 64.5152112983627700, -164.4220928016414400 64.5151154720014700, -164.4221785699850000 64.5150948811239000, -164.4242250726289600 64.5145459394436200, -164.4253084796026200 64.5142681739371300, -164.4260480137048400 64.5140815106532300, -164.4284377893724500 64.5135172930886800, -164.4308823211621600 64.5129984822941700, -164.4333769631762700 64.5125260630274500, -164.4350157626673000 64.5122517725013700, -164.4360772594579300 64.5120264788390000, -164.4385718133384800 64.5115540595722300, -164.4411117380162800 64.5111289293566900, -164.4436922113264600 64.5107518948841000, -164.4441055775103600 64.5107103471049200, -164.4442932471356200 64.5106764876298400, -164.4464963334390000 64.5101562819869000, -164.4489405639558300 64.5096374711923800, -164.4514349002004700 64.5091650510263400, -164.4539746036450000 64.5087399208107400, -164.4560084087610200 64.5084432839304900, -164.4577756143531000 64.5080663573765500, -164.4595862787837200 64.5077100720622500, -164.4614241647933300 64.5073869042822700, -164.4619151055976300 64.5072909448213000, -164.4641008691597500 64.5068340991144300, -164.4653211727339000 64.5066354892364900, -164.4653870013090400 64.5066173714945400, -164.4657142043470200 64.5065427043823500, -164.4675892017802000 64.5059950388400100, -164.4692281379681700 64.5055669300698500, -164.4698528403362700 64.5053697698990000, -164.4721187685662800 64.5047180348095100, -164.4740149944963700 64.5042439257166500, -164.4744517187717700 64.5041205558190400, -164.4746040090677500 64.5040777822638900, -164.4762162048139700 64.5035637648559300, -164.4784819828572000 64.5029120297664300, -164.4808114589816000 64.5023034756249600, -164.4832002058248000 64.5017392562617100, -164.4856436845084000 64.5012204436686100, -164.4881372527320000 64.5007480235025200, -164.4906772754358700 64.5003287047060200, -164.4909543097935200 64.5002822376351900, -164.4917207857856200 64.5001370214064900, -164.4942596510620000 64.4997118902915600, -164.4961424231343000 64.4994501605965000, -164.4968394264983000 64.4993368604078200, -164.4986387801555500 64.4989980183439100, -164.5011775572984000 64.4985729816578400, -164.5012784657285700 64.4985560537189700, -164.5034198666335200 64.4982261194398900, -164.5038159712300700 64.4981250140581900, -164.5048432730985400 64.4978782436860500, -164.5060403264998300 64.4976165922320200, -164.5084271496931800 64.4970452421442800, -164.5108702092927000 64.4965264295511200, -164.5129288698714200 64.4961322171281500, -164.5133663486780300 64.4960633200662400, -164.5138284167480000 64.4959577171749700, -164.5139939495611000 64.4959208045015700, -164.5154070740772000 64.4954950078883400, -164.5177359188775200 64.4948864528476000, -164.5201315976950400 64.4943488057528500, -164.5203929056080800 64.4942759759555900, -164.5216989370562700 64.4938134150571000, -164.5238958701982300 64.4931197355873600, -164.5251421812666300 64.4927611057405000, -164.5266144595896000 64.4921542459217700, -164.5286628013471700 64.4913807102516300, -164.5307873327691700 64.4906464057071400, -164.5329840123023000 64.4899527271367100, -164.5352486625956800 64.4893009902485800, -164.5375769803933000 64.4886924343084600, -164.5399663648558100 64.4881345623602400, -164.5406447567500800 64.4879753571770500, -164.5413482613131700 64.4877601808876800, -164.5436123495303000 64.4871069843998700, -164.5459404802689000 64.4864984275604300, -164.5483278475521000 64.4859342072978700, -164.5507690437563300 64.4854117074843900, -164.5512482663943400 64.4853096991833500, -164.5536875299555000 64.4847763904181200, -164.5561814516126700 64.4843118033471100, -164.5565242120227400 64.4842426670654700, -164.5589655476219000 64.4837203875858900, -164.5614575213475000 64.4832479656211600, -164.5629964637158000 64.4830078826077500, -164.5634354884570000 64.4829024730707400, -164.5651879604559700 64.4823417053054900, -164.5674519812239400 64.4816899675180400, -164.5697796515097000 64.4810814106786000, -164.5718275193245300 64.4806377382410600, -164.5721746306546400 64.4805460928279800, -164.5740930554501300 64.4799949630971100, -164.5764205809450400 64.4793864053583500, -164.5788055434410400 64.4788244648772200, -164.5802938512801700 64.4784388706573800, -164.5812207105673200 64.4781183720653000, -164.5834163846584000 64.4774246907969100, -164.5856799989328000 64.4767729530094000, -164.5880072510338000 64.4761643952707000, -164.5897826656374700 64.4757335255818000, -164.5900301428767700 64.4756718734582300, -164.5917313256401300 64.4752203931067200, -164.5941177099643000 64.4746561710455200, -164.5951137217208500 64.4744444823270400, -164.5962087614251700 64.4741088553394700, -164.5969616423658700 64.4739065357580900, -164.5972696520727500 64.4738044645045000, -164.5992446478222200 64.4730476634189800, -164.6013677565167000 64.4723133561765300, -164.6035629647590000 64.4716196749081400, -164.6058260996947200 64.4709679362213100, -164.6081556387716800 64.4703690354027100, -164.6089131170466800 64.4701705244502300, -164.6112377755029000 64.4695533754879200, -164.6128786461325700 64.4691590992131300, -164.6145462419155000 64.4687863068426200, -164.6162454623581700 64.4684583465755200, -164.6163291523684500 64.4684384355853700, -164.6168979205026000 64.4683077991656400, -164.6186557344745400 64.4678313707212300, -164.6210414748841200 64.4672671477607100, -164.6234818778863200 64.4667483324696500, -164.6259723083753000 64.4662759096056000, -164.6285080359171000 64.4658507757927200, -164.6294261663844300 64.4657164026899000, -164.6304364521805000 64.4654423630746600, -164.6328219839473700 64.4648781401141400, -164.6352621747095700 64.4643593248230200, -164.6377523884619300 64.4638869010597100, -164.6402842489189300 64.4634463555649400, -164.6407406197837400 64.4633221358079700, -164.6431806720503300 64.4628033196175400, -164.6456707437098100 64.4623308967535400, -164.6473920209250000 64.4620450247581400, -164.6477133720744300 64.4619724089995400, -164.6485288575207200 64.4617076476898200, -164.6489936847107500 64.4615353276933000, -164.6497472266531500 64.4612973859656200, -164.6512356460082200 64.4607416310215000, -164.6533578005220600 64.4600073228796800, -164.6555520231073600 64.4593136398127000, -164.6578141418091800 64.4586619002265600, -164.6601398551701400 64.4580533406891600, -164.6625247448211000 64.4574891168293200, -164.6649642772795500 64.4569703006389400, -164.6674538192383500 64.4564978768755700, -164.6678010474803400 64.4564505266705500, -164.6682870635971000 64.4563581267262300, -164.6702422643689700 64.4559422981985800, -164.6727317136976000 64.4554698735358900, -164.6748544410795600 64.4551115368680000, -164.6752651857397000 64.4550381261086600, -164.6773434380492000 64.4546368710948000, -164.6780878752552200 64.4545424144009800, -164.6783066542287000 64.4544795194143500, -164.6801337933398500 64.4537976138688600, -164.6822554109584200 64.4530633039283900, -164.6844490768634000 64.4523696199620400, -164.6854218249572200 64.4520778403201600, -164.6868157885178000 64.4516037815893100, -164.6882425341656000 64.4511575182049800, -164.6896978773551200 64.4507288338686500, -164.6910582512372800 64.4503401504776400, -164.6926714776065800 64.4498944320824300, -164.6943156100773300 64.4494703145034600, -164.6966979141773800 64.4489002783252500, -164.6980931826542200 64.4484526093005500, -164.6985048167438800 64.4483339662396000, -164.6990741478536200 64.4480280942212300, -164.7006336613143800 64.4472569084795700, -164.7022598882831800 64.4465118867142300, -164.7039504743349000 64.4457941027157000, -164.7057029715148800 64.4451045961003000, -164.7091463856971200 64.4438005548518000, -164.7102049659863500 64.4434085871366200, -164.7123257787117000 64.4426742762968800, -164.7145186145423800 64.4419805914312200, -164.7167793024228500 64.4413288491471100, -164.7191035462916000 64.4407202878110800, -164.7214869277794700 64.4401560630519200, -164.7239249187999200 64.4396372450628400, -164.7264121504004000 64.4391623418686100, -164.7277813277460400 64.4387522465190200, -164.7297679382397200 64.4382076890336700, -164.7318773331723500 64.4376518540498800, -164.7331030470679400 64.4371865709035800, -164.7354039418384300 64.4363926970654000, -164.7393746375294700 64.4350877124280100, -164.7409711293141500 64.4345800793073000, -164.7426041425671000 64.4340946369579800, -164.7442720252337600 64.4336318764100000, -164.7459756046904000 64.4332002117204800, -164.7461925976102700 64.4331402862952100, -164.7466973322161000 64.4329805649011900, -164.7489572790551600 64.4323288226171400, -164.7512807602988000 64.4317202603817800, -164.7536633602758200 64.4311560338239800, -164.7561005517990000 64.4306372149355900, -164.7585877042591300 64.4301647893735800, -164.7611200953161300 64.4297396528627400, -164.7620882172973600 64.4295977767161000, -164.7622848153919000 64.4295355562210300, -164.7645444780452000 64.4288838121382800, -164.7668676679085000 64.4282752499029200, -164.7692499684113000 64.4277110233451300, -164.7716868541649500 64.4271922044567300, -164.7741736954596400 64.4267197779954000, -164.7767057672573000 64.4262946414845600, -164.7785535233264200 64.4260183724499600, -164.7802395866875400 64.4258087935410200, -164.7804222201093300 64.4257742298968300, -164.7825651318753200 64.4252202412212100, -164.7838403786305400 64.4249109247994000, -164.7858391704413300 64.4244393293116700, -164.7879237818570200 64.4239693031409000, -164.7900478986915400 64.4235336067905600, -164.7922084974241800 64.4231328580949600, -164.7944025023735400 64.4227676290229300, -164.7961032390732000 64.4225088877750000, -164.7969714706568000 64.4223719264233000, -164.7984870198600600 64.4221006270423700, -164.8010591222806300 64.4217235862745400, -164.8028741601143600 64.4214951234012600, -164.8037754975411500 64.4213031855936200, -164.8062618046385500 64.4208307582329700, -164.8087933341450400 64.4204056208228000, -164.8113652782849400 64.4200285800549800, -164.8139727519409200 64.4197003517898600, -164.8166122117841300 64.4194311460306000, -164.8184768643158000 64.4191675772219700, -164.8210842570328000 64.4188393489568500, -164.8237222275987000 64.4185605555252900, -164.8263857694876400 64.4183317266279100, -164.8290698258117900 64.4181532966374000, -164.8317693028110400 64.4180256036987100, -164.8320177953849300 64.4180315958814700, -164.8322383990828300 64.4180123243093600, -164.8345898870136400 64.4176675719009500, -164.8371971367384400 64.4173393436358300, -164.8398349634128000 64.4170605502042700, -164.8417275578804600 64.4169077940595100, -164.8424976734288500 64.4168262651201100, -164.8443355765256000 64.4165893414250400, -164.8469733312542200 64.4163105479934800, -164.8485474703894000 64.4161654172003200, -164.8511181734649000 64.4157785657282600, -164.8537252442246200 64.4154503365638200, -164.8563628892359200 64.4151715431322600, -164.8590261028723200 64.4149427142349400, -164.8593129542294400 64.4149342228361700, -164.8597166059366000 64.4148948415237900, -164.8619207327555800 64.4146173341227400, -164.8645582986265500 64.4143385406911800, -164.8672214304246500 64.4141097117938000, -164.8699050748592800 64.4139312818032900, -164.8726041363717600 64.4138035888646000, -164.8753134915244000 64.4137268766940600, -164.8780279997923200 64.4137012891832200, -164.8802459788688000 64.4137183691075300, -164.9025703158673700 64.4140605089853600, -164.9320502742007800 64.4140128988762500, -164.9333238257339400 64.4139513070072700, -164.9350506661553000 64.4138782793591500, -164.9367815373380500 64.4138260755130400, -164.9385150956951000 64.4137947377370200, -164.9402499994379000 64.4137842894134600, -164.9413468332896900 64.4137884649657600, -164.9561383328177700 64.4139003559167200, -164.9585812934918700 64.4139394584393000, -164.9610188312540200 64.4140199783394100, -164.9634471932333500 64.4141417924098500, -164.9656621730708000 64.4142911913854200, -164.9658564149415600 64.4142311823232500, -164.9674534553127000 64.4137692815271500, -164.9728118921550800 64.4122705100760400, -164.9755256189121400 64.4115531991208700, -164.9779064688084700 64.4109889707644400, -164.9803418706807500 64.4104701509767200, -164.9828271975171000 64.4099977227168100, -164.9853577287761400 64.4095725844072700, -164.9879286575814500 64.4091955436395000, -164.9905351033123400 64.4088673135757400, -164.9931721169995700 64.4085885201441200, -164.9958346921173000 64.4083596912468000, -164.9985177744757000 64.4081812603569100, -165.0000000001998300 64.4081111222305400, -165.0000000001998300 66.5256042313502600, -164.9981798236399300 66.5260264792386800, -164.9955404932991000 66.5265461120135300, -164.9928467278941500 66.5270192984019700, -164.9901036679498800 66.5274451327866800, -164.9873165493192700 66.5278228039792900, -164.9844906896935600 66.5281515898240600, -164.9825547595944500 66.5283222478735200, -164.9816260351134000 66.5284475684006200, -164.9805097462277700 66.5286556490390200, -164.9788089879444000 66.5289154658760800, -164.9787089005952500 66.5289329549919400, -164.9784389870695800 66.5289772690857700, -164.9760152053374300 66.5294082898607300, -164.9750885960618200 66.5295521238314800, -164.9738492142698000 66.5297961018087000, -164.9711550981292600 66.5302692872978100, -164.9697043495760300 66.5304944730415300, -164.9688781999689000 66.5306570992457900, -164.9661839902988700 66.5311302847349000, -164.9652813794321000 66.5312703838212100, -164.9636012812741000 66.5316010951145200, -164.9609069690813200 66.5320742806036400, -164.9581633524567200 66.5325001149883500, -164.9553738829983000 66.5328676274390900, -164.9542969772237000 66.5330462777635600, -164.9515532535797600 66.5334721130476500, -164.9487654595582700 66.5338497833408800, -164.9464660774475000 66.5341091145440400, -164.9459401880891700 66.5341858096274400, -164.9437705619618300 66.5345742726846100, -164.9410266701446800 66.5350001070693200, -164.9394116190509600 66.5352188887407600, -164.9380326831617700 66.5354974096777600, -164.9357824570947000 66.5359112138315300, -164.9334955647684600 66.5362917763444600, -164.9282130936593000 66.5371256115577700, -164.9264738857612000 66.5373890994274600, -164.9255372832190300 66.5375159640905200, -164.9251103174871400 66.5376094423219800, -164.9224697595717300 66.5381290741974600, -164.9197747414111500 66.5386022596865700, -164.9182351317459200 66.5388411582928800, -164.9171938103460500 66.5390460715190700, -164.9144986932600700 66.5395192570081800, -164.9117542564537500 66.5399450913929000, -164.9089631205515300 66.5403100992317600, -164.9078521511558200 66.5405264671227900, -164.9056066231471200 66.5409494218784000, -164.9033234989802600 66.5413391376911200, -164.9010058795177000 66.5416950848603500, -164.8982171645904500 66.5420727551535800, -164.8963151973884200 66.5422939209277600, -164.8943667181494800 66.5427204253074400, -164.8917256179428800 66.5432400580822900, -164.8890300457999600 66.5437132426720800, -164.8862875200529700 66.5441153295588500, -164.8858381288265500 66.5441996095244100, -164.8843965488616200 66.5445443295572000, -164.8818147103805500 66.5451094176655700, -164.8791733565651300 66.5456290495410500, -164.8764756107608000 66.5460934846266800, -164.8762332065972000 66.5461387582971000, -164.8735915353210800 66.5466570465855000, -164.8708955935567800 66.5471302311752900, -164.8681503176830000 66.5475560646607400, -164.8680471789341200 66.5475710006012400, -164.8634311063604500 66.5482376752285600, -164.8606674159684400 66.5486100314278700, -164.8592225058139600 66.5487773413013300, -164.8570698966583700 66.5492484043904300, -164.8544281030744700 66.5497680362659000, -164.8517318249637400 66.5502412208557000, -164.8508868255665000 66.5503722772588200, -164.8501824981237600 66.5505263994738200, -164.8475405687422300 66.5510460322486200, -164.8448441521359000 66.5515192168384100, -164.8420973042471800 66.5519395257885500, -164.8408198757366600 66.5521850281165800, -164.8381233359232000 66.5526582127064300, -164.8353774494097500 66.5530840470911500, -164.8338451377428800 66.5532964831462600, -164.8337096476820700 66.5533191829339900, -164.8335313984552500 66.5533471653394600, -164.8310135170601400 66.5537962094275600, -164.8282675055409000 66.5542220438123300, -164.8254773867719500 66.5545997141055600, -164.8226484865383800 66.5549284990510700, -164.8210527016208600 66.5550841995761900, -164.8191757247798500 66.5553887630810000, -164.8168239247842700 66.5557500378340600, -164.8143185421669700 66.5560916129376200, -164.8117814053875000 66.5563937734539200, -164.8095973487386300 66.5566058515788700, -164.8091944659518000 66.5566743853147000, -164.8084124370842900 66.5568593803561700, -164.8057698359091600 66.5573790122317000, -164.8030727322207800 66.5578521959221800, -164.8003262728392000 66.5582780303069000, -164.7986071450037000 66.5585065120659500, -164.7978317027708500 66.5586653737081000, -164.7951889091408200 66.5591850055835700, -164.7924916102995500 66.5596581901733700, -164.7897467049464500 66.5600929449335000, -164.7894657072765500 66.5601394533731500, -164.7867706198681800 66.5606301864340300, -164.7840238538177600 66.5610560199194200, -164.7812329688264300 66.5614336902127100, -164.7784032906793000 66.5617624751581600, -164.7755402225032200 66.5620417479283900, -164.7736904564493700 66.5621884156628900, -164.7726513950458000 66.5622881387866400, -164.7720969000518800 66.5623681523683800, -164.7710252220363400 66.5625280158553200, -164.7682341715697300 66.5629056852492300, -164.7667748102092800 66.5630606123574500, -164.7654061346853500 66.5632461379989300, -164.7640260998246300 66.5634720117240000, -164.7613975010937700 66.5638291621861500, -164.7587341885319500 66.5641429527351500, -164.7577051959380000 66.5642550694159900, -164.7546796067784000 66.5645549933183200, -164.7516224235360000 66.5647989658996300, -164.7487087307233000 66.5649777088542600, -164.7457781945080300 66.5651056266234500, -164.7455133288770000 66.5651125460072400, -164.7448941933123500 66.5652548835061000, -164.7446205188218500 66.5653147333882800, -164.7423126929763800 66.5658313516356100, -164.7396691385199000 66.5663509826118200, -164.7369710617650500 66.5668241672016200, -164.7346435938267700 66.5671849059587000, -164.7337325895873000 66.5674052578464200, -164.7311483777953600 66.5679703441561000, -164.7285045958104200 66.5684899751323100, -164.7258062870305000 66.5689631597221000, -164.7230586009736200 66.5693889932075500, -164.7202667797880300 66.5697666626014700, -164.7174361537554700 66.5700954475469200, -164.7145673820790000 66.5703458529787900, -164.7139838641639600 66.5704298010945200, -164.7113414365580300 66.5709619668213600, -164.7086428588808000 66.5714351514111500, -164.7058948994300400 66.5718609839972800, -164.7031028003539200 66.5722386542905200, -164.7007224378901600 66.5725151112834000, -164.7002732157363000 66.5725759782988000, -164.6995616748314000 66.5726949810885500, -164.6967694831251000 66.5730726504825200, -164.6952629586186300 66.5732484760363800, -164.6950727852808000 66.5732796960012400, -164.6924897722851400 66.5738593252477200, -164.6898453643720500 66.5743789562238800, -164.6871464161741300 66.5748521399143600, -164.6843980781087900 66.5752779733998000, -164.6816055959215000 66.5756556427937200, -164.6787742989946800 66.5759844268399100, -164.6768567672259800 66.5761634647721500, -164.6759096974745400 66.5762646079254000, -164.6740246510168000 66.5764844256158300, -164.6711598867193800 66.5767636974866800, -164.6682671813853000 66.5769929238844000, -164.6663338512262300 66.5771097035500400, -164.6639972767529000 66.5773734225454600, -164.6633288025821600 66.5774385865216200, -164.6632093402388400 66.5774561170062500, -164.6605106258646700 66.5779351301022200, -164.6577619469562700 66.5783609626883500, -164.6549691185299800 66.5787386320822600, -164.6521374699682400 66.5790674170277200, -164.6501801728766500 66.5792540632244800, -164.6492730600036800 66.5793547684078800, -164.6484910338341200 66.5794783172705700, -164.6471514774587000 66.5797131239615400, -164.6444026015987600 66.5801389574469900, -164.6416095735229700 66.5805166268409000, -164.6387777226137800 66.5808454108870400, -164.6359124555953300 66.5811246827579500, -164.6335187013269800 66.5813143371870000, -164.6319589207675400 66.5815559517458300, -164.6291657326124500 66.5819336211397400, -164.6263337207246000 66.5822624060852500, -164.6234680768902200 66.5825404620727000, -164.6216827463616000 66.5828521140338700, -164.6189335242627000 66.5832779466200000, -164.6170365698817800 66.5835379712004900, -164.6161836141824300 66.5836851110790900, -164.6134342994533300 66.5841109436651700, -164.6130599485577500 66.5841647141302800, -164.6071927346569600 66.5849995619802800, -164.6053236835411400 66.5852444761517300, -164.6044909580912200 66.5853642703448800, -164.6025737482798400 66.5856669380787600, -164.5997800978731800 66.5860446074727300, -164.5992287729894500 66.5861086032294900, -164.5982750707378800 66.5862959176225800, -164.5955748275162600 66.5867691004137300, -164.5928251719441000 66.5871949338991300, -164.5900016154821500 66.5875763327815700, -164.5806879566838200 66.5887435331875400, -164.5785762603861000 66.5889931211356700, -164.5764452088792500 66.5892151943257900, -164.5742970693542300 66.5894095162362300, -164.5727248601641300 66.5895160211475200, -164.5721355551117400 66.5895844712463800, -164.5716779009143800 66.5896781212483700, -164.5687169136546000 66.5901389239722300, -164.5659227605269500 66.5905165924668300, -164.5630897692774000 66.5908453765129600, -164.5602233484287600 66.5911246483838700, -164.5598956759446600 66.5911505992208400, -164.5592930933016000 66.5912941822807600, -164.5567063966828400 66.5918592676911200, -164.5540600714151400 66.5923788977679600, -164.5513591680911000 66.5928520805591100, -164.5486088380274300 66.5932779131452400, -164.5459076379271200 66.5936438400912000, -164.5431699604253000 66.5939640904704800, -164.5405918091646200 66.5942269703984400, -164.5378890793175200 66.5946850742568000, -164.5351385460070600 66.5951109068429300, -164.5323438335010700 66.5954885762368500, -164.5295102747793400 66.5958173602829800, -164.5266432801632300 66.5960966321538900, -164.5237483220274200 66.5963258576522900, -164.5229754185806700 66.5963752259359600, -164.5209007905390300 66.5966555715974100, -164.5180670987176000 66.5969843556435400, -164.5151986418038300 66.5972521998292000, -164.5150119326545500 66.5972704102013000, -164.5141202530472200 66.5973387101134300, -164.5136565958751800 66.5973914778344900, -164.5126128256213700 66.5975558990855300, -164.5098178370235200 66.5979335675801300, -164.5069839995119300 66.5982623525255800, -164.5041167225087000 66.5985416234971700, -164.5025192225840300 66.5986681032504200, -164.5017905199165400 66.5987665646253000, -164.4989565879761200 66.5990953486714800, -164.4984821524293700 66.5991415567375000, -164.4981239416665300 66.5992118756275900, -164.4954222946031700 66.5996850584187400, -164.4926712073103400 66.6001108910048700, -164.4898759318287500 66.6004885594994700, -164.4870418029368300 66.6008173435456000, -164.4841506210542800 66.6011113517075700, -164.4812922536345600 66.6014563415370200, -164.4793293708537500 66.6016475005317800, -164.4775888922136000 66.6019168843568000, -164.4747934134852300 66.6022945528513900, -164.4719590777492000 66.6026233368975200, -164.4701050965729200 66.6027969114483700, -164.4690367433509800 66.6029910471991100, -164.4662852909334000 66.6034168788859200, -164.4634896422331800 66.6037945482798400, -164.4606551356259800 66.6041233314266500, -164.4602590786935000 66.6041503335711100, -164.4574622347942600 66.6045165456021700, -164.4546276454494500 66.6048453296483000, -164.4517596076197800 66.6051246006198900, -164.4492699433532000 66.6053080614179300, -164.4488628940073300 66.6053477700836000, -164.4464355401680000 66.6056320170040400, -164.4457314663340800 66.6057498713595400, -164.4437575461738000 66.6060221096327000, -164.4420619913677800 66.6062443375062100, -164.4397406415173700 66.6065302895413000, -164.4373949101469600 66.6067828974128100, -164.4350278306698000 66.6070018355663400, -164.4339339627821300 66.6070866650176200, -164.4336307050929200 66.6071188859278900, -164.4307964880674400 66.6074563205527900, -164.4279281489648700 66.6077355915243700, -164.4259392865688000 66.6078929980634500, -164.4244101737904500 66.6080995327672600, -164.4215751752541000 66.6084283168134400, -164.4187067228369600 66.6087075886843500, -164.4158102934103000 66.6089368141827000, -164.4124609833876300 66.6091375437627000, -164.4102086016456200 66.6092496649401400, -164.4081151013308200 66.6093407248946000, -164.4060154748342800 66.6094058313141200, -164.4039117600196700 66.6094449203468500, -164.4018060001467600 66.6094579542212800, -164.3992393853893000 66.6094385891196300, -164.3966764740400200 66.6093805198951300, -164.3919724891390200 66.6092381958860600, -164.3911803653815300 66.6092751166533500, -164.3892176534719000 66.6093550573900200, -164.3872499035601600 66.6094122066081100, -164.3852787919826400 66.6094465148448200, -164.3833059995722000 66.6094579542212800, -164.3825840040485000 66.6094564226758000, -164.3581790171479000 66.6093352147484000, -164.3552825841239300 66.6095488127275500, -164.3532715048760300 66.6096775120076400, -164.3512515736012200 66.6097820806785400, -164.3492246267151000 66.6098624216135100, -164.3478608354092000 66.6099000321608000, -164.3474810400179500 66.6099461152210800, -164.3452115522712800 66.6101875741972500, -164.3429223073186000 66.6103975560024500, -164.3406160705751800 66.6105758088265800, -164.3378531589960700 66.6107462987028000, -164.3350748582181000 66.6108712532058000, -164.3322857206095000 66.6109479132156800, -164.3302833207186500 66.6111038070951000, -164.3285558040071200 66.6112158473335400, -164.3268215612660000 66.6113100818948300, -164.3228450928267500 66.6115030512248700, -164.3222713928105000 66.6115673059864500, -164.3194025770672500 66.6118465778573600, -164.3165057816165000 66.6120758033557100, -164.3141081476728400 66.6122264065235200, -164.3116984430287000 66.6123427194410200, -164.3092797757410300 66.6124245919214100, -164.3068552664573500 66.6124719187441200, -164.2955848303756000 66.6126106760419200, -164.2940141185567000 66.6127635742796000, -164.2911172160866300 66.6129927997779400, -164.2881990905155800 66.6131714779813800, -164.2852641017568700 66.6132993732675200, -164.2823178489895200 66.6133762437187300, -164.2793659547749600 66.6134019400475400, -164.2745808959915300 66.6133725052370100, -164.2743470084077000 66.6133914656437000, -164.2724697329917700 66.6136555146903200, -164.2696340995340400 66.6139842978371300, -164.2667650050009600 66.6142635697080400, -164.2638679271631000 66.6144927952063900, -164.2629631983928700 66.6145537395634600, -164.2586537109999400 66.6148320365692800, -164.2564377958675500 66.6149601809676100, -164.2542124081760700 66.6150591081913600, -164.2534022754945800 66.6150843665503200, -164.2530114759988000 66.6151094900110400, -164.2501231071956000 66.6153514903790600, -164.2465499424258700 66.6156027744485200, -164.2436789961887000 66.6157792115414500, -164.2408062656965600 66.6159059826750300, -164.2379225140127800 66.6159838729574300, -164.2350330138624800 66.6160127402957900, -164.2264809108653200 66.6160250205383000, -164.2230273514310900 66.6163105426974200, -164.2210078626227400 66.6164647881195200, -164.2180896201398400 66.6166434510345200, -164.2151545144692500 66.6167713418240000, -164.2122081447900300 66.6168482158725000, -164.2092561309656600 66.6168739283891100, -164.1979378689375000 66.6168739283891100, -164.1962316994333500 66.6168590670923200, -164.1960766742990600 66.6168668093558300, -164.1943509463390900 66.6170439623090800, -164.1926147718542000 66.6171939584344800, -164.1908692696010800 66.6173257855566000, -164.1888951569858600 66.6174523057793500, -164.1869124846234300 66.6175555884197500, -164.1849229864066600 66.6176355417468900, -164.1837231711873800 66.6176695613012800, -164.1830450562843000 66.6177355580496200, -164.1801475728521800 66.6179647835479600, -164.1783727455057800 66.6180796062888600, -164.1765908557833300 66.6181756466888300, -164.1748031627357400 66.6182528355000200, -164.1744063368829200 66.6182657398720700, -164.1737201811414200 66.6183452840077200, -164.1708505820886600 66.6186245549793000, -164.1679529943352000 66.6188537804776500, -164.1655499221911300 66.6190046489454600, -164.1631347352797800 66.6191210904660200, -164.1556547590598400 66.6194274193400100, -164.1521929564397600 66.6195335204556600, -164.1487219996205600 66.6195689195700400, -164.1467536957264600 66.6195575404481700, -164.1447870600747500 66.6195234156731400, -164.1387805861551000 66.6193842653716000, -164.1372323780717600 66.6193393793089400, -164.1360180738750000 66.6194575520244700, -164.1331203889947400 66.6196867775228200, -164.1304151518377500 66.6198541287651000, -164.1276950677731200 66.6199778574921900, -164.1249645965388600 66.6200577613566300, -164.1222282167587700 66.6200937090574700, -164.1189859656297800 66.6201078005346400, -164.1168178305783800 66.6203277828009800, -164.1142582224390000 66.6205691356571500, -164.1116769037660700 66.6207707735524100, -164.1087566351105800 66.6209495156077200, -164.1058194852810000 66.6210774324775900, -164.1028710633488600 66.6211542804457500, -164.0999169999695400 66.6211799129226800, -164.0974571931948800 66.6211621432183800, -164.0897818923204500 66.6210510238856800, -164.0874475643536000 66.6210011160087600, -164.0851191809054500 66.6209321775779700, -164.0768643182336700 66.6210749710331200, -164.0741939999531000 66.6210959144449400, -164.0724197751524700 66.6210866703136200, -164.0706467725305000 66.6210589460135900, -164.0688762124672200 66.6210127604306300, -164.0677629390084000 66.6209720481215900, -164.0659080755971800 66.6211525465528200, -164.0630101928660700 66.6213817720512200, -164.0606825036945500 66.6215284271951900, -164.0583433544622000 66.6216427876845500, -164.0559955870267000 66.6217247150236200, -164.0536420540375400 66.6217741075890300, -164.0497208138644400 66.6218291667826700, -164.0473329996182200 66.6218459112598700, -164.0443788570985400 66.6218202787828800, -164.0414303560260700 66.6217434308147200, -164.0384931270561400 66.6216155130455300, -164.0355727801596400 66.6214367709902700, -164.0326748911333000 66.6212075454918700, -164.0316763199062000 66.6211103737447800, -164.0290916989227400 66.6211076254166400, -164.0286300760171800 66.6211525465528200, -164.0257321932860700 66.6213817720512200, -164.0230644137916400 66.6215470989195000, -164.0203821345278600 66.6216700092636000, -164.0176896344690400 66.6217503061317900, -164.0149912051799400 66.6217878618204000, -164.0101512328930700 66.6218166131462200, -164.0093707067926500 66.6218951500412100, -164.0074325580660900 66.6220662919258800, -164.0054825886505200 66.6222147681970700, -164.0029567743356400 66.6223723815801900, -164.0004177570738000 66.6224919734259000, -163.9978691665287700 66.6225733719636000, -163.9953146458542000 66.6226164611807700, -163.9833857297675800 66.6227275814127900, -163.9818059995472200 66.6227349081895000, -163.9792141273301000 66.6227151806610900, -163.9719281510632800 66.6225925832811800, -163.9702223242008800 66.6225811753810100, -163.9690331848336000 66.6225917595021400, -163.9651679985043000 66.6225647303780900, -163.9625131125900500 66.6225254084209300, -163.9598641666979000 66.6224447140523900, -163.9572252509445600 66.6223227713788300, -163.9546004365608700 66.6221597692580200, -163.9517023694687300 66.6219225766656100, -163.9515563384542200 66.6219163245787600, -163.9467146709452800 66.6219732507649400, -163.9447219999203200 66.6219849104753000, -163.9417678403135600 66.6219592779983100, -163.9388193230532800 66.6218824300301500, -163.9376310506324600 66.6218306812410200, -163.9370619614403500 66.6218655119838600, -163.9341247027927600 66.6219934297530500, -163.9311761720426800 66.6220702777212000, -163.9282219998454000 66.6220959101981400, -163.9273659639680400 66.6220937590198300, -163.8984535345029800 66.6219454491232500, -163.8964591493702300 66.6220165207458900, -163.8934411010259600 66.6220970496392000, -163.8904170002443300 66.6221239105900600, -163.8883522782350300 66.6221113920272000, -163.8862894816742300 66.6220738498283800, -163.8840457846851800 66.6220173139479400, -163.8828688751984000 66.6219876830851400, -163.8810973204849000 66.6219380504007900, -163.8809526762250000 66.6219327336088400, -163.8790415071598000 66.6218516102636600, -163.8781601292865000 66.6218091568671300, -163.8771367619520000 66.6217503906680700, -163.8752396879612000 66.6216317709895000, -163.8723417755524800 66.6214025454911500, -163.8694442696373000 66.6211181780615200, -163.8684866004762200 66.6211376501824500, -163.8665910472390000 66.6211693449893100, -163.8646940002279000 66.6211799129226800, -163.8623194491832200 66.6211633537058700, -163.8599478290290700 66.6211136967397700, -163.8575820634614200 66.6210310031783000, -163.8552250716796800 66.6209153746448800, -163.8517494168021000 66.6207201660029100, -163.8494621890287700 66.6205757744525000, -163.8465644007265000 66.6203465489541000, -163.8448869258908800 66.6201833067143000, -163.8417831955380300 66.6203122847841800, -163.8400290777797000 66.6203759657782400, -163.8382713771223400 66.6204214831649900, -163.8365112860669800 66.6204488063673900, -163.8347499998126000 66.6204579156003500, -163.8320842941548000 66.6204370441343500, -163.8249375689136400 66.6203249229569100, -163.8226549483671600 66.6202737011704500, -163.8203779944488500 66.6201918682601800, -163.8181093106961200 66.6200795168562600, -163.8158514916529800 66.6199367764611500, -163.8136648638423800 66.6197686536005400, -163.8114933698231300 66.6195720267277200, -163.8103532426080400 66.6194609100929800, -163.8085714356232400 66.6192807156325600, -163.8073689871889700 66.6192296638179800, -163.8046991680321600 66.6190905144157500, -163.8017409785633000 66.6189097803621200, -163.7988433854138700 66.6186805548637700, -163.7959737791665600 66.6184012838921800, -163.7944639199739000 66.6182262506409900, -163.7924633600959500 66.6181037827634000, -163.7900214039646000 66.6179140698784500, -163.7875984244277300 66.6176961749386000, -163.7866375662706300 66.6176699543050300, -163.7842804162082200 66.6175542781074900, -163.7783301607083200 66.6172199200632900, -163.7760478477299600 66.6170757866183300, -163.7731504686192000 66.6168465611199300, -163.7702810755112000 66.6165672901484000, -163.7692972037029600 66.6164449517731900, -163.7688487576640200 66.6164012339298800, -163.7664008462220400 66.6162075631285700, -163.7635315268584600 66.6159282921570400, -163.7606956712682000 66.6155995081108500, -163.7594585620629700 66.6154324653360800, -163.7580169047563200 66.6154086548855800, -163.7554516542704000 66.6153273579712400, -163.7528960544093500 66.6152073461421400, -163.7503538094806900 66.6150487938667800, -163.7474566668916200 66.6148195683684300, -163.7445875076073500 66.6145402964975200, -163.7417518102977900 66.6142115133507100, -163.7389549888816000 66.6138338448561200, -163.7362026479338200 66.6134036406655200, -163.7361252549765000 66.6133945125467900, -163.7341046519081300 66.6132707991081400, -163.7313457288223000 66.6130536847798000, -163.7286119363917300 66.6127911780705000, -163.7274687307972600 66.6126714270448000, -163.7245500206669000 66.6124928019013400, -163.7223477464513000 66.6123233129705500, -163.7201608461461100 66.6121248937489000, -163.7164621908773700 66.6117635146745200, -163.7146900525039000 66.6115801968686600, -163.7129310685139700 66.6113778799852400, -163.7111865276361000 66.6111567115131000, -163.7094577123035600 66.6109168542295200, -163.7067054271137500 66.6104910216433800, -163.7044864677762300 66.6100809559714000, -163.7040038187212200 66.6100092800043000, -163.7037869624983000 66.6099755922998000, -163.7027003908103500 66.6098495280333500, -163.6999040604240200 66.6094718595387600, -163.6982583136702000 66.6092172156020900, -163.6975416376364500 66.6091841169534900, -163.6949126656869600 66.6090208144590900, -163.6920162272670300 66.6087915880614200, -163.6891477649573700 66.6085123170898300, -163.6863127574277700 66.6081835330436400, -163.6835166149997500 66.6078058645490500, -163.6807646751496200 66.6073800328623000, -163.6780621899181000 66.6069068500711400, -163.6754143160178500 66.6063872208935700, -163.6748495678532400 66.6062567310633500, -163.6726581385622000 66.6059149931824700, -163.6711008302390800 66.6056647424339900, -163.6689238359662400 66.6052971580374400, -163.6667805518809500 66.6048995317880200, -163.6646736031042600 66.6044723520174700, -163.6629375230482000 66.6040843152389900, -163.6626056273478000 66.6040168301127000, -163.6602319684305700 66.6036288607833700, -163.6575844443666000 66.6031092307064800, -163.6554465840925400 66.6026424097194600, -163.6548443593796700 66.6025725521815800, -163.6520488491750300 66.6021948836869900, -163.6492975316557200 66.6017690511008600, -163.6465956570639000 66.6012958683097000, -163.6439483821121100 66.6007762391321900, -163.6413607555943800 66.6002111537218300, -163.6389311282689200 66.5996154077249700, -163.6388384873063200 66.5995990382650700, -163.6371904652677400 66.5993888927832200, -163.6344394589138700 66.5989630610964700, -163.6317378900915300 66.5984898783053200, -163.6290909137146600 66.5979702482284200, -163.6265035803759000 66.5974051628180600, -163.6248399371134000 66.5970100159995000, -163.6240936149283700 66.5968269212255000, -163.6229630340167800 66.5966288833163800, -163.6203162554907600 66.5961092532394900, -163.6177291164055700 66.5955441687284500, -163.6168471980397200 66.5953310941547400, -163.6158527295198200 66.5951568882798000, -163.6132061083751800 66.5946372582029700, -163.6106191221747000 66.5940721727926100, -163.6080967045992000 66.5934627112351900, -163.6056436661222600 66.5928100363541400, -163.6032646823192000 66.5921153946098300, -163.6019866476656300 66.5917068910602600, -163.6005167939149000 66.5913517182073000, -163.5980639640806400 66.5906990433262500, -163.5956851826250600 66.5900044015819500, -163.5933849830305200 66.5892691176757100, -163.5911680516642300 66.5884934605048800, -163.5909052436820200 66.5884086715230400, -163.5885219593209300 66.5877264080473300, -163.5862219710671000 66.5869911250404700, -163.5848797437052000 66.5865303996582700, -163.5835883487232800 66.5860579426200200, -163.5813088892937800 66.5853241291053500, -163.5801057879517400 66.5849059407566400, -163.5791111161850300 66.5846154174676000, -163.5768114166135700 66.5838801335613700, -163.5750060312033400 66.5832545606495000, -163.5732575333085000 66.5826039344240700, -163.5704316907698800 66.5815143239269700, -163.5692002347030300 66.5811534151980000, -163.5669564432852000 66.5804351437669200, -163.5647435210966000 66.5796496003488300, -163.5644568496038900 66.5795491577674700, -163.5630060587825500 66.5790465113874500, -163.5615904098695000 66.5785306647584300, -163.5600342697657000 66.5779472061986400, -163.5586065069847000 66.5773958372481600, -163.5572201975540500 66.5768279756306400, -163.5558765438673800 66.5762441150739000, -163.5545767078487500 66.5756447627956000, -163.5527326138190500 66.5747287700168000, -163.5509908059809000 66.5737816166283700, -163.5502841304082700 66.5733598660650000, -163.5494313905462000 66.5729721242642000, -163.5458506957530000 66.5712687912217700, -163.5445675394603600 66.5709882459108800, -163.5420474637194600 66.5703787834541500, -163.5395967023259200 66.5697261076737700, -163.5372199263585000 66.5690314641308300, -163.5349216675009200 66.5682961793252700, -163.5334840625394300 66.5678013894226400, -163.5320820338587600 66.5672906905130000, -163.5309709322626800 66.5668743637609200, -163.5295364812236000 66.5663206970426100, -163.5281438351698300 66.5657503775779000, -163.5267942126827400 66.5651639044906500, -163.5254887927735300 66.5645617912936700, -163.5236455198248400 66.5636457976155500, -163.5222310229433200 66.5628921441571600, -163.5201875923834500 66.5620558870695600, -163.5182458481673400 66.5611728004844300, -163.5164028261295000 66.5602568059069300, -163.5146620300286300 66.5593096516191700, -163.5130267693698700 66.5583331434598300, -163.5115001495122700 66.5573291439249000, -163.5109601488917400 66.5569487280014300, -163.5092951107807000 66.5557531036228600, -163.5080653202582800 66.5548279413564500, -163.5069269188422000 66.5538844140345400, -163.5058778749639400 66.5528953873123300, -163.5057814865263600 66.5528211500760600, -163.5043710716676000 66.5521258122564600, -163.5029349128159600 66.5513640541078600, -163.5015674477794500 66.5505825063776200, -163.5002703897666500 66.5497821493268000, -163.4991883722455600 66.5490877548960500, -163.4980493098277600 66.5483291650589900, -163.4966347392018200 66.5472995870063600, -163.4953343483015000 66.5462463945555100, -163.4941506021685300 66.5451715958925000, -163.4930857428127500 66.5440772387735800, -163.4921417820176000 66.5429654087266700, -163.4913205040380100 66.5418382254537700, -163.4906234557079000 66.5406978356366500, -163.4903564928578400 66.5401599825971700, -163.4890166774776500 66.5394933718217200, -163.4874461194428400 66.5386805357781600, -163.4859545668497600 66.5378444090922600, -163.4845441852659200 66.5369862112447100, -163.4832170188503300 66.5361071913938000, -163.4818031407023400 66.5350776124419100, -163.4805033874213500 66.5340244190917400, -163.4793202213511200 66.5329496186300300, -163.4782558818034800 66.5318552597125300, -163.4773123832598600 66.5307434287663000, -163.4766541991319600 66.5298396451835300, -163.4762454698525300 66.5294547029722000, -163.4754032277767200 66.5285772668274800, -163.4744598524402200 66.5274654349818800, -163.4736390834768800 66.5263382499103400, -163.4729424659220500 66.5251978582945800, -163.4723713118865200 66.5240464328966300, -163.4719266906642200 66.5228861662636200, -163.4716094305307800 66.5217192689291900, -163.4714201196427700 66.5205479622187600, -163.4713590988433200 66.5193744773503100, -163.4714264661584500 66.5182010473405400, -163.4716220758980700 66.5170299061053400, -163.4719455377563400 66.5158632821647900, -163.4723962186105800 66.5147033950457300, -163.4729732425211000 66.5135524534829900, -163.4736754943285700 66.5124126446278900, -163.4745016214526500 66.5112861376451900, -163.4754500365898800 66.5101750747200000, -163.4765189195125000 66.5090815692590800, -163.4777062224641800 66.5080076995957400, -163.4790096728581000 66.5069555071909800, -163.4804267786728600 66.5059269930363800, -163.4816337309119400 66.5051268491248500, -163.4829094695963000 66.5043438975528700, -163.4842524523887400 66.5035790781120100, -163.4856610587108600 66.5028333135066400, -163.4890296834731000 66.5011132629667800, -163.4893579360199000 66.5009481933045100, -163.4908724096339700 66.5001990472483200, -163.4928129271748000 66.4993172107207300, -163.4948478204705000 66.4984699747096200, -163.4969732143423500 66.4976589507999700, -163.4991850645390600 66.4968856768325600, -163.5014791631328400 66.4961516231989000, -163.5038511466131000 66.4954581820495000, -163.5062965057791000 66.4948066708912000, -163.5088105920351600 66.4941983271911000, -163.5110135182592300 66.4937146933784800, -163.5113889132677000 66.4936357167150000, -163.5132599707710000 66.4932633461265800, -163.5140261257051000 66.4931179014700400, -163.5155469485328300 66.4928452917768600, -163.5167172587944400 66.4926458868982300, -163.5178712877297200 66.4924610195604400, -163.5192872496068600 66.4922403106418800, -163.5194563149569500 66.4922144452405000, -163.5208761241338000 66.4920112290350300, -163.5222387112475000 66.4918267457077800, -163.5236578944962000 66.4916195365124700, -163.5264801118676400 66.4912914296558000, -163.5293354170958000 66.4910127396463000, -163.5322183926646700 66.4907839961845200, -163.5351235661996000 66.4906056327438400, -163.5380454248564500 66.4904779883685300, -163.5409784243148000 66.4904013049762700, -163.5439169995698600 66.4903757273580100, -163.5468555748249000 66.4904013049762700, -163.5497885742832400 66.4904779883685300, -163.5527104329401000 66.4906056327438400, -163.5531750344002800 66.4906341574404700, -163.5536472027561700 66.4896914503002600, -163.5543487800721000 66.4885516378478800, -163.5551806115959200 66.4874291265530200, -163.5552713343046000 66.4873044481418000, -163.5560933317418300 66.4861751262811300, -163.5570407891011000 66.4850640597586000, -163.5581085937366000 66.4839705498010900, -163.5592946987913000 66.4828966765404600, -163.5605968343763800 66.4818444805384300, -163.5620125120677500 66.4808159618871700, -163.5635390258053700 66.4798130757129100, -163.5651734626851200 66.4788377285783600, -163.5669127038581800 66.4778917721876000, -163.5687534335241000 66.4769770051847200, -163.5706921443269800 66.4760951650598600, -163.5727251427511000 66.4752479263507900, -163.5748485581144400 66.4744368988438600, -163.5770583497630000 66.4736636221784900, -163.5793503133662300 66.4729295649474900, -163.5817200899102000 66.4722361219994600, -163.5841631737914000 66.4715846081431900, -163.5866749209108400 66.4709762617451400, -163.5892505594657000 66.4704122366354700, -163.5918851962448000 66.4698936039067700, -163.5945738256215200 66.4694213483166400, -163.5973113439433500 66.4689963646905500, -163.6004347991266500 66.4685767805939900, -163.6022582402255800 66.4683842591263100, -163.6036070623160600 66.4682296296937200, -163.6050792444115700 66.4680685773030300, -163.6057709165945000 66.4679993636797200, -163.6079320890946200 66.4677918622047000, -163.6082811852285000 66.4677616153063600, -163.6108122704698600 66.4675619181480800, -163.6127372108535700 66.4674411535864400, -163.6137148170851000 66.4673849711395500, -163.6146700355936300 66.4673389474345400, -163.6166216246882000 66.4672563375100400, -163.6185538190035200 66.4672027702916900, -163.6195641209873800 66.4671776908977600, -163.6268508427921200 66.4670050867154600, -163.6288275688372000 66.4669702586705300, -163.6308059999968800 66.4669586457249600, -163.6337418197291800 66.4669842233432700, -163.6366720699600400 66.4670609076348500, -163.6395911892819300 66.4671885529094200, -163.6424936387704000 66.4673669172494800, -163.6445337085637800 66.4675235359824800, -163.6465607435834200 66.4677052188208700, -163.6485728174815200 66.4679117912961600, -163.6505680191987000 66.4681430591549000, -163.6535092735341300 66.4685036881946900, -163.6567716047257500 66.4689403648060300, -163.6595091158529800 66.4693653475328000, -163.6621977398338000 66.4698376040222500, -163.6648323703176000 66.4703562367510000, -163.6674080034765400 66.4709202618606700, -163.6699197452000500 66.4715286082587200, -163.6723021329370600 66.4721639361168300, -163.6727197493169400 66.4716126382127200, -163.6733866541707000 66.4708384568293700, -163.6735448386233700 66.4706428812640400, -163.6741079653103300 66.4698903672467000, -163.6749118611934000 66.4689506161780600, -163.6751888209073200 66.4685150889002900, -163.6759379624669700 66.4675194143895300, -163.6767827379329700 66.4665360488995700, -163.6778497475677600 66.4654425362441000, -163.6790349703875300 66.4643686593862000, -163.6803361383021200 66.4633164606861400, -163.6817660873350300 66.4623021738063400, -163.6818893475153500 66.4621927550916200, -163.6819615055190400 66.4621318736871000, -163.6829436011662400 66.4610815338857600, -163.6841252275971500 66.4600043502206300, -163.6845584022484300 66.4595535317701500, -163.6855194285787400 66.4586825824353000, -163.6857488204516600 66.4583691156422600, -163.6866952193089000 66.4572580437238100, -163.6877618314433400 66.4561645301689600, -163.6889466135953000 66.4550906515124200, -163.6901470439509000 66.4541195509765400, -163.6881555528364600 66.4537536150373900, -163.6876316644697000 66.4536663601144800, -163.6848965005730200 66.4532415419636200, -163.6822106869736000 66.4527683537765500, -163.6795791465603400 66.4522487174044200, -163.6770068993489000 66.4516836256988200, -163.6744988520403600 66.4510741560475300, -163.6720597872293600 66.4504214739719100, -163.6696943535115700 66.4497268232343600, -163.6674070591884000 66.4489915303349200, -163.6652022641731300 66.4482169982159700, -163.6630841647024000 66.4474047053629400, -163.6610567960342700 66.4465562013077100, -163.6591240153610000 66.4456731048300000, -163.6572895000104000 66.4447571003599400, -163.6555567366540300 66.4438099352803400, -163.6539290204079300 66.4428334163291700, -163.6524094413426300 66.4418294042037000, -163.6510008835839000 66.4407998153592400, -163.6497060199168600 66.4397466112171700, -163.6485273027927600 66.4386717999636300, -163.6474669652282300 66.4375774293549200, -163.6469857442966400 66.4370281971936300, -163.6462098092352700 66.4361108815120400, -163.6454327239410400 66.4351308525069200, -163.6447498345372000 66.4341396530226100, -163.6441621302780600 66.4331387300683800, -163.6436704565263000 66.4321295486398100, -163.6432274558823700 66.4309692694163200, -163.6429113477804500 66.4298023594913600, -163.6427227185785700 66.4286310392910800, -163.6426619082204500 66.4274575400335200, -163.6426704922493800 66.4270554846230000, -163.6426881756188000 66.4267073912331500, -163.6427076864105700 66.4263059077914600, -163.6427643877662500 66.4255345781583000, -163.6428028553674500 66.4252339240064200, -163.6429578373343000 66.4243636887333100, -163.6430043026064400 66.4241639331190800, -163.6432782549874500 66.4231969137066500, -163.6433119372960300 66.4230975718954800, -163.6437251460985700 66.4220364006594100, -163.6439766774816500 66.4215328090919000, -163.6439924983551000 66.4212560993895500, -163.6441873364763600 66.4200849428658600, -163.6445095302905500 66.4189183036368700, -163.6449584511715600 66.4177584012292600, -163.6455332258776400 66.4166074434787700, -163.6462327446454300 66.4154676193352300, -163.6470556584918000 66.4143410970640400, -163.6480003882073200 66.4132300188503600, -163.6490651189600400 66.4121364972016300, -163.6502478119869000 66.4110626122498000, -163.6515462036943200 66.4100104045566000, -163.6518373951796300 66.4097982356001400, -163.6516882938796300 66.4092473792632000, -163.6514998157638600 66.4080760563649600, -163.6514390521705000 66.4069025544094400, -163.6515061002263300 66.4057291073124800, -163.6517008151405000 66.4045579480908800, -163.6520228075065400 66.4033913070632000, -163.6524714477990600 66.4022314019576900, -163.6530458636756300 66.4010804424085600, -163.6537449462722000 66.3999406155670000, -163.6545673493037000 66.3988140905978500, -163.6555065167123400 66.3977095261737400, -163.6562001467193600 66.3965773723479000, -163.6570218069108200 66.3954519814238300, -163.6579649475242800 66.3943420075776200, -163.6590288733837600 66.3932484823316700, -163.6602106733838300 66.3921745946818800, -163.6615080839309000 66.3911223842906700, -163.6629186264934000 66.3900938512503000, -163.6642559066847300 66.3892096620962800, -163.6644405357021400 66.3890924795343800, -163.6656764802853000 66.3883460080618900, -163.6660675657655300 66.3881146484723100, -163.6674808908304300 66.3872875977444900, -163.6693981177289200 66.3862238499508000, -163.6714422776389600 66.3851988368568900, -163.6733738819990300 66.3843169832422300, -163.6753994304393400 66.3834697319426300, -163.6775150657676400 66.3826586918452200, -163.6797167626184800 66.3818854034886400, -163.6820003301510800 66.3811513354658000, -163.6843614273379600 66.3804578808266100, -163.6867955647635000 66.3798063570777700, -163.6892981154156500 66.3791980007871400, -163.6918643236795700 66.3786339666842800, -163.6944893143303500 66.3781153258616400, -163.6971681015266400 66.3776430621776400, -163.6998955987028800 66.3772180722563100, -163.7026666266634700 66.3768411627895000, -163.7040837369748700 66.3766756506607900, -163.7041425436434600 66.3756451238234600, -163.7043370202372600 66.3744739601052000, -163.7046586222975600 66.3733073136816600, -163.7051067202989000 66.3721474040795000, -163.7056804436975000 66.3709964391343900, -163.7063786836293000 66.3698566077963000, -163.7072000965072200 66.3687300774311700, -163.7081431022223500 66.3676189920229300, -163.7082259324807600 66.3675284554739200, -163.7088383752907500 66.3668627008530000, -163.7098877078514000 66.3657928808368600, -163.7110498846444400 66.3647420221266800, -163.7123227715786000 66.3637120420771100, -163.7137040340139400 66.3627048175733300, -163.7152233495778800 66.3617019134126200, -163.7168500810663500 66.3607265473922900, -163.7185811249189600 66.3597805739144000, -163.7204131815230700 66.3588657898243900, -163.7223427579119200 66.3579839317131400, -163.7243661794556000 66.3571366768162500, -163.7264795943577600 66.3563256331215100, -163.7286789799509300 66.3555523411676500, -163.7309601516896300 66.3548182695475400, -163.7333187712442600 66.3541248122103900, -163.7342206338751000 66.3538831643766100, -163.7351544098481200 66.3535523361714500, -163.7374353999237300 66.3528182645513300, -163.7397938315200700 66.3521248063148000, -163.7422252215167200 66.3514732798680000, -163.7447249473983700 66.3508649199801500, -163.7472882598452800 66.3503008831792700, -163.7499102890285800 66.3497822396586800, -163.7525860536034700 66.3493099741760400, -163.7553104732997000 66.3488849824560100, -163.7580783752168300 66.3485080711905700, -163.7608845037168500 66.3481799553407000, -163.7637235330146000 66.3479012590359500, -163.7665900743724000 66.3476725092789400, -163.7694786886905000 66.3474941413416000, -163.7723838928024000 66.3473664933690100, -163.7753001747632300 66.3472898072788600, -163.7782220001451500 66.3472642296605400, -163.7816732123488400 66.3472999228532100, -163.7831442568020000 66.3473592331421300, -163.7851150536168000 66.3474157717205300, -163.7860601970204500 66.3474478091691300, -163.7871130477289500 66.3474927851639800, -163.7889652671333400 66.3475786263525700, -163.7894893416597600 66.3476077392058400, -163.7918539632897500 66.3477555095092300, -163.7947205145400700 66.3479842592661800, -163.7957225103855300 66.3480826208163400, -163.7958371667518200 66.3480068943027800, -163.7962842997805800 66.3477386526167800, -163.7962180746044400 66.3473261075138800, -163.7961574486073500 66.3461525956657900, -163.7962188642091800 66.3450292300150300, -163.7965757196937000 66.3416847448551700, -163.7960495542435000 66.3384772705096600, -163.7959397209413300 66.3375789233286900, -163.7959046950456000 66.3366796021819600, -163.7959554689696800 66.3356604769495000, -163.7961022805957300 66.3346428553835500, -163.7963430506912000 66.3336309957738900, -163.7959657428247300 66.3333846489824200, -163.7944746938520000 66.3322862826858600, -163.7931124610712000 66.3311612317055500, -163.7927121269630700 66.3308100464465200, -163.7923207321160500 66.3307407527835800, -163.7897019665724700 66.3302211119148500, -163.7871422055483200 66.3296560139139600, -163.7846463305636700 66.3290465379674300, -163.7822191026294500 66.3283938486972000, -163.7798651478582600 66.3276991907650900, -163.7775889520684400 66.3269638897717800, -163.7762276716697000 66.3264914156463900, -163.7748985177523800 66.3260043985841900, -163.7736024498931300 66.3255031902201000, -163.7723404051855300 66.3249881538802700, -163.7694235917253400 66.3237652521647200, -163.7678995888949000 66.3231044222313800, -163.7664315733584000 66.3224234303970700, -163.7646060404363800 66.3215074151351600, -163.7628817603849100 66.3205602383643500, -163.7612620103334700 66.3195837068226400, -163.7597498659635300 66.3185796821067000, -163.7595911041461200 66.3184682632997900, -163.7583704453397500 66.3176068081077700, -163.7570177732516200 66.3166031835901300, -163.7557723048479700 66.3155773763948600, -163.7546362704475000 66.3145312373267800, -163.7536117043166800 66.3134666522642500, -163.7529826807061000 66.3127189118483800, -163.7525280194525000 66.3124447238449800, -163.7510163040591600 66.3114406982297200, -163.7496150335069600 66.3104110949960800, -163.7483268661919000 66.3093578764649000, -163.7480900243351000 66.3091407657337900, -163.7473678930138300 66.3086124814809000, -163.7461664940884000 66.3076918607907800, -163.7450545120560700 66.3067532446665400, -163.7440336016693400 66.3057980369499100, -163.7431052782859200 66.3048276675628500, -163.7421702657451300 66.3037158087376500, -163.7413567669012500 66.3025885939885000, -163.7406663150983400 66.3014481726950700, -163.7401002089574400 66.3002967158208200, -163.7396595087792800 66.2991364177115700, -163.7393450383428000 66.2979694880015100, -163.7391573777108000 66.2967981489155100, -163.7390968659276000 66.2956246298728000, -163.7391636010193600 66.2944511656888300, -163.7393574381951900 66.2932799893800400, -163.7396779916459800 66.2921133303659600, -163.7401246327455600 66.2909534081733200, -163.7407587510155000 66.2896910540989100, -163.7415421513491700 66.2884423589278000, -163.7420059056480000 66.2877730016227800, -163.7421596411545000 66.2875560788500000, -163.7428271467554000 66.2866482860895900, -163.7429132856196000 66.2865399168837300, -163.7437653959562200 66.2855359434291200, -163.7448247127902300 66.2844424010959900, -163.7460013929499000 66.2833684954597400, -163.7472931872307800 66.2823162679814600, -163.7486976233965700 66.2812877178539600, -163.7498988343636800 66.2804886063641400, -163.7502132850150600 66.2802868434631000, -163.7511669989578000 66.2797048022349000, -163.7518318362702000 66.2793066534793500, -163.7528877824451900 66.2786733463978500, -163.7538877853929500 66.2780936425076600, -163.7549251614670000 66.2775246963077500, -163.7559991948069800 66.2769669008018800, -163.7566330324884200 66.2766549574603800, -163.7566921521211000 66.2762523993288300, -163.7563491039280000 66.2745449680758700, -163.7561845324901500 66.2734467034026700, -163.7561315920992800 66.2723466463807000, -163.7561982624398200 66.2711731785993800, -163.7563919170533000 66.2700019986933200, -163.7567121710298500 66.2688353360819600, -163.7571583966426700 66.2676754102919900, -163.7577297269453000 66.2665244282598000, -163.7584250593689600 66.2653845798345700, -163.7589451202210900 66.2646683489651900, -163.7590277966954200 66.2644534100968500, -163.7595990541530000 66.2633024271653400, -163.7602942966444500 66.2621625787400600, -163.7611121859785600 66.2610360312878600, -163.7620511501404500 66.2599249278931700, -163.7621919857715000 66.2597761908186300, -163.7624424613504700 66.2592744266735300, -163.7631375932253000 66.2581345773489300, -163.7639553512584300 66.2570080289974000, -163.7648941643341800 66.2558969247033900, -163.7659522320098800 66.2548033778736600, -163.7671275272135700 66.2537294677408100, -163.7684177998415600 66.2526772348665500, -163.7698205839527600 66.2516486802424500, -163.7710250846399200 66.2508500489906300, -163.7716452715120300 66.2503442325003700, -163.7730479261208500 66.2493156778762700, -163.7739771883965000 66.2486879151152300, -163.7749483662740600 66.2480705593089300, -163.7759607393965700 66.2474640655143000, -163.7770135595281100 66.2468688806943600, -163.7803493671295600 66.2450360326868100, -163.7816785561204500 66.2443302915098100, -163.7820659274006000 66.2441380875027900, -163.7825055151174000 66.2438156706567200, -163.7840176603867000 66.2428127476102900, -163.7856367161615000 66.2418373636035100, -163.7873595941699000 66.2408913721391700, -163.7891830091885000 66.2399765700627100, -163.7903511493860000 66.2394309792563300, -163.7915550619165400 66.2388981992925200, -163.7927938807329700 66.2383786123830900, -163.7940667164058000 66.2378725899481000, -163.7957886123545600 66.2372061005811500, -163.7974355668978600 66.2365897232372200, -163.7991329707100000 66.2359960546742200, -163.8014033316983700 66.2352619686649900, -163.8037507753779500 66.2345684969386600, -163.8061708375141200 66.2339169570020100, -163.8086589189739000 66.2333085854229500, -163.8110745636401800 66.2327606545806000, -163.8131746299052000 66.2319363512816600, -163.8153588223517500 66.2311535732788500, -163.8163698716722000 66.2306776790317100, -163.8183772861828000 66.2298375413694800, -163.8203846359421600 66.2289974037073000, -163.8224873165364000 66.2281863429254300, -163.8230928066876400 66.2279734572093200, -163.8244324260156200 66.2271264667131200, -163.8258579144112000 66.2262945803306600, -163.8273597822281400 66.2254848910149600, -163.8283605100294800 66.2249684166591800, -163.8292684979428000 66.2243357453983800, -163.8302240545964000 66.2237269502386400, -163.8312196247858300 66.2231286978312100, -163.8322544917513700 66.2225414153541000, -163.8341165110681000 66.2215140595262700, -163.8351372802612500 66.2209702790551700, -163.8356135414317700 66.2206206415294200, -163.8372826939411500 66.2195180295335000, -163.8390809288417500 66.2184490225044400, -163.8426670609361000 66.2164232726160000, -163.8442295052874200 66.2155762002814800, -163.8458729902462800 66.2147545230029100, -163.8472100914725000 66.2141318090357900, -163.8486076478246500 66.2135001746933700, -163.8479532039771400 66.2131756543330400, -163.8468219899428700 66.2125816314372200, -163.8454336876145600 66.2118311543843000, -163.8442732231307300 66.2111839689650300, -163.8431609236377000 66.2105231453269300, -163.8420977693965000 66.2098492662307200, -163.8410846957021000 66.2091629288261700, -163.8396890827849000 66.2081333139013900, -163.8384061153499300 66.2070800836789900, -163.8377041351377000 66.2064385109285900, -163.8363064429879300 66.2054113205760500, -163.8350236131492000 66.2043580894543300, -163.8338558461703400 66.2032832503218200, -163.8328053543835700 66.2021888518340800, -163.8318741234919900 66.2010769795190300, -163.8315736384126600 66.2006743872132700, -163.8305339411884000 66.1996174319989400, -163.8287600896064200 66.1976717190746000, -163.8286498291262800 66.1975498600380700, -163.8277187682065500 66.1964379868237000, -163.8269087056722000 66.1953107585847000, -163.8262211667734000 66.1941703229021500, -163.8258187741171000 66.1933483839208600, -163.8256256132314400 66.1930214111092700, -163.8251139079804400 66.1922427762831400, -163.8248125073912700 66.1917124217909000, -163.8238886536384200 66.1907448726777800, -163.8232123077018200 66.1899533109965400, -163.8225972892334700 66.1891536230413000, -163.8220441872893800 66.1883465840276700, -163.8215535324695200 66.1875329772651600, -163.8214561835560000 66.1873598766570100, -163.8207328822167000 66.1866058796576900, -163.8198022223946300 66.1854940055440000, -163.8189925087972000 66.1843667755063600, -163.8183052657753600 66.1832263380251200, -163.8177417874535000 66.1820748649631100, -163.8174670023002800 66.1813889736222900, -163.8172343288012000 66.1807017386943200, -163.8170305235398000 66.1804217815400200, -163.8169015985299000 66.1802078040469700, -163.8167770064536600 66.1800778915815000, -163.8158465858512300 66.1789660165684400, -163.8150370790979000 66.1778387856314800, -163.8143500132425000 66.1766983472509800, -163.8137866788121400 66.1755468732896500, -163.8133481334096000 66.1743865580932600, -163.8131929463973200 66.1738078686382800, -163.8130725352692700 66.1735617196976600, -163.8129232972723300 66.1734196430022000, -163.8120726591259000 66.1725219046622300, -163.8111425155146600 66.1714100287499000, -163.8103332488803000 66.1702827969136300, -163.8096463871710000 66.1691423576337500, -163.8090832200145700 66.1679908827731000, -163.8087957769035700 66.1672301327644700, -163.8085890263624500 66.1670378262347800, -163.8076468597147700 66.1661214530427000, -163.8065362959133000 66.1649669186883800, -163.8056064283939300 66.1638550418767300, -163.8047974027779000 66.1627278091411300, -163.8041107443153800 66.1615873680626700, -163.8035390470893200 66.1604421335976600, -163.8033318801621200 66.1601718126791000, -163.8026452909474000 66.1590313716005800, -163.8021616373496600 66.1579810488863700, -163.8020956289101000 66.1578710447129800, -163.8012778825682000 66.1570219327160800, -163.8009769586197000 66.1566619943556000, -163.8007766031577000 66.1564971863961100, -163.8000303169455400 66.1558034304840100, -163.7996034573336600 66.1554315545226900, -163.7987527616306200 66.1547471902307000, -163.7975872753324600 66.1536723457022600, -163.7965388331006400 66.1525779409192900, -163.7956094179402600 66.1514660623090000, -163.7948007862272800 66.1503388277747600, -163.7941144614132400 66.1491983857969200, -163.7940205667957000 66.1490062537356500, -163.7937702728797500 66.1487449485206300, -163.7928409989129400 66.1476330690109600, -163.7920324877091200 66.1465058335774100, -163.7916004767805600 66.1457694812766000, -163.7907477243279900 66.1450802102835400, -163.7895826804962700 66.1440053639564100, -163.7885346366641000 66.1429109582741700, -163.7876055749373200 66.1417990787645000, -163.7867972498931400 66.1406718424316300, -163.7862361745597800 66.1397391699268300, -163.7857931802110700 66.1394114614698200, -163.7845136805618700 66.1383582231535500, -163.7833486106498200 66.1372841043779500, -163.7831680510646800 66.1372019207321400, -163.7813558371021800 66.1362858883831000, -163.7796441349688300 66.1353386945251600, -163.7789390125253700 66.1349104517560100, -163.7783671768037300 66.1346459269680000, -163.7768967996475500 66.1339089919064800, -163.7736378687925800 66.1322152051676500, -163.7708548789494800 66.1310080146082600, -163.7696532363078000 66.1304724314575800, -163.7684876429903000 66.1299239394383000, -163.7666759479366200 66.1290079070893200, -163.7649647350344500 66.1280607123320600, -163.7633572580310000 66.1270841610052600, -163.7618565683259500 66.1260801165042300, -163.7611162140420000 66.1255454425681800, -163.7596180010698700 66.1244338805192300, -163.7591592973636500 66.1240776275805000, -163.7581920324363000 66.1235145440610400, -163.7576959457113000 66.1232849570352000, -163.7558847228016800 66.1223689237868400, -163.7546335338105000 66.1216584135050300, -163.7544851960349500 66.1215940508248500, -163.7523833419176600 66.1209094994739000, -163.7502070473173600 66.1201349448718400, -163.7481163250083700 66.1193226268378000, -163.7461151562894000 66.1184740967022400, -163.7442073488900000 66.1175909723455700, -163.7423965324739800 66.1166749381978900, -163.7406861496460500 66.1157277416420500, -163.7390794514555000 66.1147511894159300, -163.7375794902012800 66.1137471440155200, -163.7361891113383800 66.1127175191982100, -163.7349109525783600 66.1116642781839200, -163.7337474375941300 66.1105894273602500, -163.7327007679260800 66.1094950180806800, -163.7319577831251500 66.1086179227789900, -163.7314920602103700 66.1079994841889000, -163.7307820130794200 66.1074142863403200, -163.7296186914494200 66.1063394364159100, -163.7285829332557500 66.1052305318635800, -163.7277790958286000 66.1046210900913100, -163.7268938184949000 66.1044438454072200, -163.7243568112178300 66.1038787366144300, -163.7218831207094400 66.1032692498760600, -163.7194774648131000 66.1026165471159900, -163.7185557982115000 66.1023312812636700, -163.7157475706938000 66.1020420458038400, -163.7129691628965000 66.1017132482678600, -163.7102288413879000 66.1013355644847700, -163.7085443977057700 66.1010760597124500, -163.7068779899272800 66.1007980783686500, -163.7052308501236000 66.1005018245995800, -163.7036041977755000 66.1001875187390600, -163.7011024007551600 66.0996870451210700, -163.6991604047288700 66.0992822629661400, -163.6972523715996300 66.0988517521067300, -163.6947791703224200 66.0982422644689800, -163.6929543388716000 66.0977470536836300, -163.6914645102789000 66.0977088954492200, -163.6893603943666700 66.0976276030315300, -163.6872637491227000 66.0975191277056500, -163.6851767104368200 66.0973835809875300, -163.6823386802858500 66.0971543464959300, -163.6795280605715000 66.0968750629338600, -163.6767502166491400 66.0965462662972000, -163.6740104527201800 66.0961685816147900, -163.6713139965437000 66.0957427319415800, -163.6701897531545500 66.0955418278931000, -163.6680652613027300 66.0953319854828000, -163.6649793330297800 66.0949986472697900, -163.6621429558327000 66.0946645931964600, -163.6593461380138300 66.0942795880326300, -163.6566498823861500 66.0938537383593700, -163.6540020768343600 66.0933805357831800, -163.6514077737497200 66.0928608832232400, -163.6488719221015000 66.0922957744305100, -163.6463993584436000 66.0916862858934500, -163.6439947970222300 66.0910335831334200, -163.6416628225811700 66.0903389099128200, -163.6394078786706200 66.0896035936310100, -163.6376557358235300 66.0889706750566600, -163.6371779943689300 66.0890762221899300, -163.6366215946109000 66.0892004842150400, -163.6359426073654200 66.0893430645308500, -163.6342893233935500 66.0897236405336300, -163.6340887377050400 66.0897785819160500, -163.6320323533104200 66.0904499096356500, -163.6297003680775000 66.0911445819569400, -163.6272957967635800 66.0917972856162800, -163.6248232223138400 66.0924067732540300, -163.6231621295286200 66.0927605134869500, -163.6222856205849000 66.0929648286639800, -163.6206854541703400 66.0933517700681800, -163.6181494973014300 66.0939168788609100, -163.6155550862981700 66.0944365314208500, -163.6129071710291000 66.0949097339971000, -163.6102108038854500 66.0953355836703000, -163.6074711289893700 66.0957132683527100, -163.6046933767978800 66.0960420658887000, -163.6018828488144000 66.0963213485514400, -163.5990449112936000 66.0965505830430400, -163.5966162939068000 66.0967056900156500, -163.5941751498632500 66.0968241388230200, -163.5917248417280200 66.0969057666878300, -163.5892687491534300 66.0969504620941800, -163.5840962885128800 66.0970055212878300, -163.5823609998602000 66.0970147411374600, -163.5794679707702000 66.0969891077611500, -163.5765804653162000 66.0969122561957100, -163.5737039990403000 66.0967843330306000, -163.5708440632029000 66.0966055837807300, -163.5680061193868700 66.0963763492891300, -163.5662627665134300 66.0962031119841000, -163.5656804078245400 66.0963328715648100, -163.5633504865357000 66.0967995027948500, -163.5628881612596000 66.0972777784467700, -163.5614878008213000 66.0985330701451500, -163.5602945974177000 66.0995335308478500, -163.5592150278512200 66.1003985248721000, -163.5580592416406500 66.1012471719195100, -163.5565600160318800 66.1022512191185000, -163.5549541074460600 66.1032277731432600, -163.5532445645849600 66.1041749696991600, -163.5514346375984200 66.1050910056454800, -163.5495617715584700 66.1059590483714600, -163.5475987475841200 66.1067937190549600, -163.5455491728560300 66.1075934798552700, -163.5434168146342700 66.1083568576829000, -163.5424445899458300 66.1086901257487500, -163.5422912231613900 66.1087425364389700, -163.5400345822301600 66.1094778518214500, -163.5377008514131200 66.1101725232434200, -163.5352944805558000 66.1108252251041200, -163.5328200544019500 66.1114347118425500, -163.5302822934930300 66.1119998206352800, -163.5276860361816000 66.1125194713965200, -163.5250362368328500 66.1129926739727700, -163.5223379496366400 66.1134185227466600, -163.5195963259096700 66.1137962065297400, -163.5168165961089800 66.1141250040657300, -163.5140040680332700 66.1144042858292100, -163.5111641097358600 66.1146335203207500, -163.5092996334712700 66.1147558533000400, -163.5074273088232200 66.1148566088454600, -163.5055486574445600 66.1149357051187400, -163.5036652045855000 66.1149930782680100, -163.4968800661621000 66.1151602550418100, -163.4948714582511700 66.1151973188012800, -163.4928609995354800 66.1152096772848400, -163.4899658975081400 66.1151840430092100, -163.4870763245127400 66.1151071923430900, -163.4841977978900300 66.1149792700773000, -163.4813358133970400 66.1148005208274300, -163.4794134882418700 66.1146510822816800, -163.4787458270582500 66.1145950239412600, -163.4763988105566500 66.1143798791282000, -163.4740726196556600 66.1141303541326100, -163.4717703219427800 66.1138467772070700, -163.4694949508313000 66.1135295224695500, -163.4667966528432100 66.1131036727963400, -163.4645699512422300 66.1127060294597300, -163.4632785382739000 66.1126984652620400, -163.4608880125717000 66.1126704351925100, -163.4600839422201400 66.1126550522889100, -163.4599232153840700 66.1126570901526500, -163.4570338231524000 66.1127390516659800, -163.4541389999148700 66.1127646850422400, -163.4524646178478000 66.1127561118052000, -163.4470979468127600 66.1127010544102000, -163.4446248111860600 66.1126568958990800, -163.4421574725892600 66.1125753381813900, -163.4396993745265000 66.1124564936723100, -163.4372539488106500 66.1123005296457800, -163.4344142513166000 66.1120712942548600, -163.4316019813463500 66.1117920115921200, -163.4288225069531000 66.1114632149554500, -163.4260811350363300 66.1110855311723600, -163.4233830960530200 66.1106596814991600, -163.4215837235100000 66.1103383195578500, -163.4190658816850700 66.1106852177486500, -163.4162864927274400 66.1110140143853200, -163.4134743090920700 66.1112932970480600, -163.4106346988322700 66.1115225324389800, -163.4085440826432600 66.1116582194513300, -163.4064438338158400 66.1117667721188700, -163.4043360981324000 66.1118480798250500, -163.4022230267712500 66.1119020598322300, -163.3949103172573000 66.1120412065365000, -163.3918059996471500 66.1120706881118300, -163.3896923149483500 66.1120570238126700, -163.3875807823272000 66.1120160471029400, -163.3811290001032400 66.1118488703291400, -163.3792976863391300 66.1117910421229500, -163.3774710319625300 66.1117126662066400, -163.3756504417145000 66.1116138046334100, -163.3738373140407700 66.1114945320470600, -163.3730003977501300 66.1114269695790400, -163.3723505719213200 66.1116032223109200, -163.3698760702244200 66.1122127099486600, -163.3673382310744800 66.1127778178420700, -163.3647418946227000 66.1132974695027000, -163.3620920143349600 66.1137706711795700, -163.3593936444011400 66.1141965199535100, -163.3566519361379200 66.1145742037366000, -163.3538721218009500 66.1149030012725200, -163.3510595073903200 66.1151822830360000, -163.3482194627579800 66.1154115175275500, -163.3449545909815600 66.1156112776384400, -163.3416692110652000 66.1157449061025800, -163.3389443533991700 66.1158279935671100, -163.3364599303814700 66.1158847470834400, -163.3339720000077800 66.1159036742152500, -163.3310768188401000 66.1158780408390000, -163.3281871667043400 66.1158011892735000, -163.3253085618406100 66.1156732670077100, -163.3224464991066300 66.1154945177578400, -163.3196064454810400 66.1152652832662400, -163.3167938220772000 66.1149860006035000, -163.3140139978477000 66.1146572039668300, -163.3112722805912500 66.1142795201837400, -163.3085739025635200 66.1138536705105400, -163.3059240132825500 66.1133804688336100, -163.3033276678375800 66.1128608180723600, -163.3007898205937000 66.1122957092796400, -163.2987273190105400 66.1117919036734600, -163.2967119940632600 66.1112544292485600, -163.2966416248111200 66.1112381056540800, -163.2952606510581600 66.1109914764755300, -163.2926645502287800 66.1104718248149100, -163.2901269413052600 66.1099067169215000, -163.2876380342678400 66.1092934449366100, -163.2860251802178800 66.1088760749709600, -163.2842181823232300 66.1083914141324800, -163.2824512429304800 66.1078830714466200, -163.2807262488173000 66.1073515919025000, -163.2790450408958800 66.1067975420729700, -163.2768699549844200 66.1060229856723300, -163.2747803928008600 66.1052106667389100, -163.2727803347446200 66.1043621357040400, -163.2708735849479600 66.1034790095487200, -163.2690637730746300 66.1025629745017200, -163.2673543390315000 66.1016157770465000, -163.2657485311697500 66.1006392239211200, -163.2642494008891000 66.0996351767220700, -163.2628597927452200 66.0986055501061300, -163.2615823426509700 66.0975523063938800, -163.2604194715813200 66.0964774555701500, -163.2593733810766400 66.0953830435926200, -163.2588283667357000 66.0947453352291000, -163.2577020917780700 66.0946543544149600, -163.2548917481556100 66.0943750717522100, -163.2548192843824500 66.0943664940185200, -163.2534040896270000 66.0943736849976000, -163.2525829996057200 66.0943757498410500, -163.2500216782578000 66.0943556553892200, -163.2474641916191200 66.0942954026107800, -163.2465904786676300 66.0942679175304300, -163.2424423845084200 66.0943619722273200, -163.2405969109186700 66.0943933028087300, -163.2387500002123200 66.0944037493336000, -163.2367342813619800 66.0943913054144900, -163.2347204313028300 66.0943539862475400, -163.2327103170274800 66.0942918269063300, -163.2307058010318600 66.0942048831489000, -163.2262291746366700 66.0939826516780600, -163.2244923319555300 66.0938869269401700, -163.2227623466049800 66.0937725934305100, -163.2199247193503000 66.0935433589389200, -163.2171144980356400 66.0932640753768500, -163.2143370498149600 66.0929352778408700, -163.2118726654911000 66.0925942648135000, -163.2117010181874000 66.0925823317093100, -163.2115975403941400 66.0925745939424000, -163.2088059997970200 66.0926257563736000, -163.2077295634685500 66.0926180905524900, -163.2059737271058000 66.0926863374045900, -163.2034472122190300 66.0927451431738900, -163.2009170002193600 66.0927647546897100, -163.1986113048678000 66.0927484706654700, -163.1964738600805400 66.0927182498474000, -163.1935865524774000 66.0927951220972400, -163.1906940000280600 66.0928207554735500, -163.1886653857988800 66.0928081505757600, -163.1841606322073800 66.0927520904367000, -163.1817785475419000 66.0927049866458600, -163.1794021915578700 66.0926231240579800, -163.1770346480305400 66.0925066114909900, -163.1746789890440800 66.0923555982323000, -163.1725853871059000 66.0921915259182200, -163.1705059009265700 66.0920002014481700, -163.1684426852816600 66.0917818217737400, -163.1663978805577200 66.0915366153225800, -163.1648694899349700 66.0913424202165600, -163.1619881115620700 66.0909465989064400, -163.1592922084686300 66.0905207483339200, -163.1566447500551400 66.0900475457576700, -163.1540507869142700 66.0895278931977800, -163.1515152680151700 66.0889627844050600, -163.1490430281132300 66.0883532958679900, -163.1466387823539000 66.0877005922085900, -163.1452030165059700 66.0872728350733500, -163.1445707769197800 66.0873123656732000, -163.1416953817364400 66.0874402888383100, -163.1388089518716000 66.0875171404037500, -163.1359170001694000 66.0875427737800600, -163.1351956971237000 66.0875411792820300, -163.1333467548488200 66.0875286238469900, -163.1327869160833000 66.0876126097342100, -163.1300480730601000 66.0879902944166100, -163.1272711644326700 66.0883190919526000, -163.1244614899058000 66.0885983755146600, -163.1216244139355400 66.0888276100062600, -163.1190189727473700 66.0889925951322000, -163.1163997557441000 66.0891183985952500, -163.1161322748845600 66.0891383167799500, -163.1133229600865200 66.0894323726059800, -163.1119951317698700 66.0895289391093000, -163.1092171952173500 66.0898470868735900, -163.1064073525172700 66.0901263704357100, -163.1035701056758000 66.0903556049272500, -163.1017348384919800 66.0904762966438300, -163.0998925844751600 66.0905815092293100, -163.0986337953133600 66.0907360838032800, -163.0971093850900200 66.0908875961856700, -163.0953565344764500 66.0911292835896200, -163.0925792823080000 66.0914580811256100, -163.0897692615421600 66.0917373646876700, -163.0869318348363000 66.0919665991792700, -163.0848863016614700 66.0921160044500800, -163.0837738268006400 66.0922640787243300, -163.0809637170019000 66.0925433613870700, -163.0803537158513000 66.0925926415372400, -163.0790798198777600 66.0927682782335000, -163.0763023887442000 66.0930970757694900, -163.0744750158093000 66.0932786830648500, -163.0742914668776700 66.0933022839732900, -163.0715525384188700 66.0936852746557400, -163.0687750083599200 66.0940140721917300, -163.0659647043076200 66.0942933557538500, -163.0645727983959100 66.0944057952912700, -163.0638443727196000 66.0944737399711900, -163.0633787757099000 66.0945474385135300, -163.0628521237265100 66.0946085024804700, -163.0627208083186300 66.0946266265176500, -163.0606824814113600 66.0949735858623600, -163.0579428451861200 66.0953512696454500, -163.0556900740376700 66.0956179303232700, -163.0551637044413800 66.0956742530643700, -163.0546967800323400 66.0957451178429700, -163.0544844213189600 66.0957751021393300, -163.0520474744113800 66.0962147294262600, -163.0515504281097500 66.0962932258517500, -163.0513269465813000 66.0963391200543800, -163.0488561635810600 66.0969627585245700, -163.0463189170843300 66.0975244426989500, -163.0445814799513200 66.0979922655307000, -163.0421083029558000 66.0986017531684500, -163.0405133004484200 66.0989639137536600, -163.0388953733228000 66.0993126258770200, -163.0380824977090700 66.0995177504439100, -163.0355459257038700 66.1000828592366400, -163.0329508860745000 66.1006025108972000, -163.0303023277901700 66.1010757134734500, -163.0296528832739000 66.1011782586697300, -163.0286119989445700 66.1014347444179900, -163.0263686589864000 66.1019344877864200, -163.0246029417723200 66.1026836734128600, -163.0225135873321600 66.1034959923462100, -163.0203387172579700 66.1042705487469100, -163.0202665196841000 66.1042940786089200, -163.0200237378052200 66.1046331401074100, -163.0190960295580900 66.1057450250129400, -163.0180495145734200 66.1068394351918300, -163.0168861704603700 66.1079142860155600, -163.0156082005579800 66.1089675279291100, -163.0142180267405000 66.1099971536457900, -163.0129348866357000 66.1108621503680000, -163.0115725261511300 66.1117070139675900, -163.0101328590441800 66.1125305510441300, -163.0086179069908000 66.1133316005729600, -163.0052301860242500 66.1150547330895000, -163.0042055911151200 66.1155629777492800, -163.0022979357011400 66.1164461021060100, -163.0002969270615000 66.1172946331408900, -162.9982063720264300 66.1181069502756000, -162.9960302509952600 66.1188815057769300, -162.9937727098426600 66.1196168202600900, -162.9914380482273000 66.1203114916820600, -162.9890307159947200 66.1209641935427600, -162.9865553032846000 66.1215736793818700, -162.9840165288397000 66.1221387872752800, -162.9814192355093000 66.1226584380365200, -162.9787683776584700 66.1231316397134500, -162.9760690139737800 66.1235574884873400, -162.9733262948725800 66.1239351722704200, -162.9705454553085000 66.1242639689070900, -162.9677318039795500 66.1245432506705100, -162.9648907125363200 66.1247724851621100, -162.9625655531577300 66.1249215990525800, -162.9602287871287800 66.1250371862172400, -162.9578833606285600 66.1251191000664600, -162.9555322315272300 66.1251672380776100, -162.9534189982881000 66.1251952681471400, -162.9512499998875500 66.1252096411121200, -162.9483537575198700 66.1251840077358100, -162.9454630468820800 66.1251071570696900, -162.9425833862142700 66.1249792348039000, -162.9397202748707500 66.1248004855540300, -162.9368791798302400 66.1245712510624300, -162.9340655249040000 66.1242919692990100, -162.9312846826419700 66.1239631726623400, -162.9285419608427800 66.1235854888792600, -162.9258425935608200 66.1231596401053700, -162.9231917330120300 66.1226864384284500, -162.9205944369836600 66.1221667876672000, -162.9180556598408000 66.1216016797737300, -162.9155802444327000 66.1209921930353600, -162.9131729095021500 66.1203394920739800, -162.9108382460881600 66.1196448206520100, -162.9085807022376000 66.1189095061688500, -162.9079668115191200 66.1186910014885700, -162.9075032874467300 66.1186513710640000, -162.9049043978196800 66.1183842751142400, -162.9023343008872500 66.1180748183982100, -162.8997972018793200 66.1177235081334500, -162.8975968396224200 66.1173804662356000, -162.8954279842140800 66.1170059408715400, -162.8932933767878800 66.1166004041853600, -162.8911957162093000 66.1161643714886000, -162.8892774398020000 66.1157479844819700, -162.8873968656728000 66.1153236996290700, -162.8849220609043600 66.1147142128906500, -162.8825158672134700 66.1140502200416900, -162.8824245140800400 66.1140344846038500, -162.8819486414166400 66.1140114781472300, -162.8795032426804700 66.1138555231139500, -162.8766633716172700 66.1136262886223600, -162.8738509298764800 66.1133470068589300, -162.8710712855114000 66.1130182093229500, -162.8683297454214000 66.1126405255398600, -162.8656315409628200 66.1122146767659700, -162.8635690106013400 66.1118463378383000, -162.8615857320958200 66.1120432938630000, -162.8587460381991000 66.1122725292538600, -162.8563694798675700 66.1124090859106600, -162.8546485623812100 66.1125970082454200, -162.8518362033780400 66.1128762909081600, -162.8489964159518000 66.1131055253997600, -162.8482312511712800 66.1131454786809600, -162.8477472522339000 66.1131924268890400, -162.8463540782780700 66.1134634690639000, -162.8437041800038700 66.1139366707408300, -162.8410057929829400 66.1143625204140300, -162.8382640667332700 66.1147402041971200, -162.8354842344098800 66.1150690008337800, -162.8344226099155000 66.1151744157667200, -162.8337566133769800 66.1152795168362700, -162.8323189382683700 66.1154775547453800, -162.8314558750885200 66.1156316652691800, -162.8287573082032000 66.1160575140431200, -162.8260153984918200 66.1164351978261500, -162.8232353809080700 66.1167639944628100, -162.8204225596533700 66.1170432771256200, -162.8175823072776300 66.1172725116171600, -162.8149728515158500 66.1174375560983700, -162.8139718224416300 66.1174926134933700, -162.8117517587366500 66.1175992964704200, -162.8095240768746200 66.1176755841609600, -162.8072913102457400 66.1177213929279900, -162.8062995558797800 66.1177281702189200, -162.8058810554663000 66.1179056316396400, -162.8037904500692000 66.1187179487743600, -162.8016142777766800 66.1194925042756800, -162.8001051731152000 66.1199840296392800, -162.7996680684266000 66.1201750834134100, -162.7980055358267700 66.1208518529307400, -162.7962846938834800 66.1215042652097500, -162.7945077126608000 66.1221314964714700, -162.7922498819265000 66.1228668109546300, -162.7899149217362300 66.1235614823765400, -162.7875072819355000 66.1242141833379300, -162.7850315526640000 66.1248236700763500, -162.7824924535638600 66.1253887770704400, -162.7798948274842700 66.1259084278317500, -162.7772436305890600 66.1263816295086700, -162.7753129759130700 66.1266861687317400, -162.7747549996434800 66.1267859467141100, -162.7745463380430500 66.1268210184752500, -162.7721055204533800 66.1272706264383000, -162.7694057161009000 66.1276964752121900, -162.7666625500366000 66.1280741580959600, -162.7638812572142200 66.1284029547326200, -162.7610671472310500 66.1286822364960500, -162.7582255917376400 66.1289114709876500, -162.7553620172432700 66.1290902202375200, -162.7524818898273200 66.1292181425033000, -162.7495907106427600 66.1292949931694800, -162.7466939997282800 66.1293206265457300, -162.7437972888138000 66.1292949931694800, -162.7409061096292400 66.1292181425033000, -162.7380259822133000 66.1290902202375200, -162.7351624077189200 66.1289114709876500, -162.7323208522255000 66.1286822364960500, -162.7295067422423400 66.1284029547326200, -162.7267254494199200 66.1280741580959600, -162.7239822833556700 66.1276964752121900, -162.7212824790031800 66.1272706264383000, -162.7186311894777800 66.1267974247613800, -162.7160334725666600 66.1262777740001300, -162.7134919533909000 66.1257257314574100, -162.7128824801423300 66.1256304285015500, -162.7102848828410500 66.1251107777402500, -162.7077458107205500 66.1245456707461600, -162.7052701084287200 66.1239361840077300, -162.7028624947083400 66.1232834830463500, -162.7005275605984000 66.1225888116244400, -162.6982697550451200 66.1218534971412200, -162.6960933795058400 66.1210789425392100, -162.6940025798551500 66.1202666245051800, -162.6920013364924700 66.1194180943696200, -162.6900934589459400 66.1185349700128900, -162.6884616309994600 66.1177132468689000, -162.6832139123921200 66.1149614706953900, -162.6818719368404000 66.1142325036271900, -162.6805915945264500 66.1134855546147300, -162.6793743441506300 66.1127214780138400, -162.6782215751655400 66.1119411488649600, -162.6768312952280600 66.1109115231483300, -162.6755532272995600 66.1098582821340400, -162.6743897950529700 66.1087834313103700, -162.6733432000286300 66.1076890211314800, -162.6724154216343800 66.1065771371252100, -162.6716082117495400 66.1054498962957400, -162.6709230938256800 66.1043094480226600, -162.6703613547926800 66.1031579650680800, -162.6699240477565800 66.1019976390798500, -162.6696119893018400 66.1008306805915100, -162.6694257567932000 66.0996593118278500, -162.6693656865771500 66.0984857631075300, -162.6693747643338700 66.0983248060450100, -162.6680638828419000 66.0980925264489700, -162.6677881758835700 66.0980411517778000, -162.6654133919144800 66.0976305213315500, -162.6628186553566300 66.0971108696709300, -162.6602823801277000 66.0965457599788800, -162.6578094027816800 66.0959362723411300, -162.6566413003557000 66.0956192514273700, -162.6557656628550300 66.0954438746351800, -162.6532295531013700 66.0948787649430800, -162.6507567385326400 66.0942692773053900, -162.6483519333950000 66.0936165745453100, -162.6460197224322100 66.0929219013247600, -162.6437645491945700 66.0921865850429000, -162.6415907115420800 66.0914120277429300, -162.6395023499534600 66.0905997079102600, -162.6375034394321500 66.0897511750767400, -162.6355977841104200 66.0888680480220500, -162.6352260484433400 66.0886863741768600, -162.6313382900300400 66.0867690906210900, -162.6296809654042000 66.0859171871285300, -162.6281097742466700 66.0850388336753000, -162.6266272688333700 66.0841354610827200, -162.6252358566494300 66.0832085424403300, -162.6230441287834800 66.0816797327335600, -162.6229021725971500 66.0815802173531800, -162.6215135483115800 66.0805505889385900, -162.6202370029353000 66.0794973434277000, -162.6190749547453400 66.0784224899060200, -162.6185363741543000 66.0778394828059300, -162.6180234602145000 66.0773347176231600, -162.6173839657973600 66.0767554930716300, -162.6163386837832000 66.0756610783960800, -162.6158538358858000 66.0750666678924900, -162.6154012691532000 66.0745595042178000, -162.6148148302402000 66.0739670821151900, -162.6138882767225800 66.0728551927130000, -162.6130821325343700 66.0717279482862500, -162.6123979175298500 66.0705874955165800, -162.6118369177395400 66.0694360071660800, -162.6117723428193400 66.0692670218556400, -162.6111278967350000 66.0692858095924900, -162.6084014085981000 66.0693195359678500, -162.5944697050128400 66.0693745942621700, -162.5938330002927000 66.0693758380245400, -162.5909431125345700 66.0693502046482900, -162.5880274996693500 66.0692728890326700, -162.5857429024130000 66.0693201385136600, -162.5853816816192800 66.0693906723416800, -162.5826448000174800 66.0697683570240900, -162.5798698788917700 66.0700971554594000, -162.5770622161483300 66.0703764390215200, -162.5742265952811200 66.0706008207712900, -162.5723423654078200 66.0708191527817200, -162.5695346226247000 66.0710984363438500, -162.5666994972839300 66.0713276717347100, -162.5639863901597600 66.0714986508421000, -162.5612581384523000 66.0716237951021400, -162.5582830372323400 66.0717349108375000, -162.5552587745727600 66.0718195271495000, -162.5547200797678300 66.0718150278413000, -162.5545070339724000 66.0718265472573900, -162.5519730025520000 66.0720770219370500, -162.5491999367276600 66.0723006680414600, -162.5472610595502400 66.0724130958877300, -162.5467423674662700 66.0724550609523400, -162.5465274789599400 66.0724809443401600, -162.5457251020318000 66.0726586036117300, -162.5430794521549600 66.0731318070873000, -162.5403853917724000 66.0735576576598200, -162.5376480614088700 66.0739353423422200, -162.5348726861255400 66.0742641407775300, -162.5336142710817200 66.0743892976280400, -162.5324149190132600 66.0746038021238200, -162.5297522575606000 66.0750249420474900, -162.5271378051655500 66.0754927990535000, -162.5248132114605300 66.0758563562859000, -162.5244434911741400 66.0759186289416200, -162.5221666352819600 66.0763257960986700, -162.5217695486257400 66.0763885561870000, -162.5214663889626600 66.0764498099108600, -162.5189341714748000 66.0770279345915700, -162.5163414826732500 66.0775475871514600, -162.5136953246794700 66.0780207906270200, -162.5113025425782500 66.0783942961599000, -162.5110004315246800 66.0784448614412600, -162.5088239615565400 66.0788207160032900, -162.5083299999295100 66.0789178769584900, -162.5057981448684600 66.0794999271799400, -162.5032052042567400 66.0800195797398800, -162.5007997875801000 66.0804467613090200, -162.5005587198090500 66.0804924387750800, -162.4993814344056500 66.0807280638491100, -162.4983278804273300 66.0811036180376200, -162.4963319124877300 66.0817579944359700, -162.4942749426344600 66.0823805006596100, -162.4921600582400700 66.0829702014137300, -162.4899904312134000 66.0835262099666900, -162.4856829574025300 66.0845831624830000, -162.4845633734009300 66.0848517971727500, -162.4820282636934000 66.0854169068648000, -162.4794347196365700 66.0859365594247400, -162.4767876893003800 66.0864097629003000, -162.4740922223781200 66.0868356125735100, -162.4713534638912000 66.0872132972559100, -162.4685766398000600 66.0875420947919000, -162.4657670507088000 66.0878213783539600, -162.4629300619727400 66.0880506128455600, -162.4600710884099600 66.0882293629947500, -162.4571955898046000 66.0883572852605400, -162.4543090556183800 66.0884341368259800, -162.4514169995948400 66.0884597702022900, -162.4485249435712700 66.0884341368259800, -162.4456384093850500 66.0883572852605400, -162.4427629107797000 66.0882293629947500, -162.4399039372169000 66.0880506128455600, -162.4376678457944000 66.0878743070537100, -162.4354480347989500 66.0876669027054500, -162.4343359646330200 66.0875547887225700, -162.4326399205958200 66.0873740870445100, -162.4309562719144000 66.0871752289537000, -162.4292862002978700 66.0869583538450300, -162.4276308766635900 66.0867236137038400, -162.4249354214325400 66.0862977631313100, -162.4222884027875300 66.0858245596557500, -162.4196948704219000 66.0853049079951800, -162.4171597715062200 66.0847397983031300, -162.4146879416951200 66.0841303097660100, -162.4122840952347800 66.0834776061066700, -162.4099528123723500 66.0827829328861200, -162.4076985384567400 66.0820476157049400, -162.4055255659520800 66.0812730575056500, -162.4034380362363700 66.0804607367736600, -162.4014399216150700 66.0796122030407700, -162.3995350253211400 66.0787290750868100, -162.3977269716224000 66.0778130382411700, -162.3960191977277500 66.0768658380880000, -162.3944149501897700 66.0758892822646000, -162.3935988568017600 66.0753470846003100, -162.3925500035797700 66.0751036642028000, -162.3917789131663000 66.0749308324919900, -162.3916464834984000 66.0749020397973400, -162.3899577680365400 66.0745829432482900, -162.3874237375154300 66.0740178326569200, -162.3847144857848500 66.0733462935966100, -162.3829075445475200 66.0728738752292200, -162.3811626583300000 66.0724016187397800, -162.3794555166587400 66.0719071606869800, -162.3777878318429400 66.0713909983959400, -162.3761612775209000 66.0708536489767700, -162.3739892600962400 66.0700790898781600, -162.3719026467897000 66.0692667682467900, -162.3699054108060400 66.0684182336146400, -162.3680013508816000 66.0675351047613000, -162.3664515375084200 66.0667546649958700, -162.3649744963758800 66.0659513006120800, -162.3643358653079000 66.0655900780197400, -162.3624724601359000 66.0644783936629700, -162.3607483194793400 66.0633302579850600, -162.3593606889446000 66.0623006268725100, -162.3580850563802200 66.0612473804623000, -162.3569238391638000 66.0601725242426600, -162.3558792352385000 66.0590781077685300, -162.3549532222134000 66.0579662174670300, -162.3546562588792000 66.0575507270844500, -162.3545004432408200 66.0575691982599600, -162.3516941618560500 66.0578484818220200, -162.3512216670462700 66.0578867057069500, -162.3510916619506200 66.0579020265573100, -162.3495986335700500 66.0581461034599900, -162.3480154940198200 66.0584636504771700, -162.3453713181318000 66.0589368548520500, -162.3426787596170300 66.0593627063239000, -162.3399429545037300 66.0597403910063000, -162.3393793439815000 66.0598071989431300, -162.3379062949395300 66.0601026451210500, -162.3352619490796700 66.0605758494959300, -162.3331897474088800 66.0609035642481200, -162.3318881433231400 66.0611939859137500, -162.3292970661066800 66.0617136393730100, -162.3266525529729200 66.0621868437479000, -162.3239596500178000 66.0626126943204200, -162.3212234968668500 66.0629903799021500, -162.3184493140845500 66.0633191783374500, -162.3156423986777400 66.0635984618995700, -162.3128081079078000 66.0638276972904400, -162.3101401611395000 66.0639962554229200, -162.3092496182752300 66.0640374884394000, -162.3080720828603200 66.0642236894717600, -162.3067032139821000 66.0644126298390700, -162.3046311409143800 66.0650889856681800, -162.3023014777310000 66.0657836606874300, -162.3008554560144600 66.0661741930845800, -162.2999021125924000 66.0664457973357500, -162.2985250940578200 66.0668666575702400, -162.2961228151158000 66.0675193621289000, -162.2936525977891300 66.0681288515652900, -162.2913467090833400 66.0686309646473500, -162.2911171067690400 66.0686862900403200, -162.2905341482323300 66.0688273145290200, -162.2893316979994400 66.0692279732924100, -162.2870016562014500 66.0699226483116000, -162.2856666764759000 66.0702841047277000, -162.2846026202147000 66.0705872005389100, -162.2833362308823300 66.0709776448025000, -162.2809335643324900 66.0716303493612100, -162.2784629486061800 66.0722398378982800, -162.2759290943522000 66.0728049484896500, -162.2733368354266000 66.0733246010495300, -162.2706911163019500 66.0737978045251000, -162.2679969848729200 66.0742236559970000, -162.2652594683497700 66.0746007102546300, -162.2649139407257600 66.0746526649885500, -162.2619148015268400 66.0751406524192400, -162.2591773011914700 66.0755183371016400, -162.2564017532383000 66.0758471355369500, -162.2535934564728000 66.0761264190990100, -162.2509136161704000 66.0763430558873800, -162.2491943309535700 66.0771402104524000, -162.2471964096865200 66.0779887441852300, -162.2451090823182700 66.0788010649172900, -162.2429363211542700 66.0795756231165700, -162.2406822657739300 66.0803109402977000, -162.2397903910137000 66.0805767259352000, -162.2394058445041000 66.0807053127999800, -162.2379950663192300 66.0812146177604500, -162.2357354522293000 66.0819362994207600, -162.2356232384216800 66.0819751573276900, -162.2341489779929000 66.0825160141028500, -162.2326371366944800 66.0830476123574600, -162.2303827737460000 66.0837829295386400, -162.2280514000520400 66.0844776027592000, -162.2256474582635500 66.0851303064185300, -162.2231755313257000 66.0857397949556000, -162.2217064518912000 66.0860672605956600, -162.2214473500151500 66.0861596029833400, -162.2191927109748000 66.0868949201644700, -162.2168610521957800 66.0875895933850800, -162.2144568163289800 66.0882422961451000, -162.2129858968816000 66.0886049279751000, -162.2121647133308200 66.0888744529936500, -162.2101852074813200 66.0894533340041900, -162.2081063004653700 66.0901823577297000, -162.2075803679396000 66.0904084985534200, -162.2056914112296200 66.0911870740242800, -162.2034447033103700 66.0920703341786300, -162.2010976625270800 66.0929095833107000, -162.1988424254375600 66.0936448995925000, -162.1983326582255800 66.0937847477679300, -162.1966840831039200 66.0943535788546200, -162.1947714166675200 66.0949771651641000, -162.1944347752446400 66.0951031718739200, -162.1940862465830000 66.0952679177802300, -162.1919989425970800 66.0960795990942500, -162.1898262749626000 66.0968535718349100, -162.1877874570254800 66.0975182220883500, -162.1875733617212300 66.0975956105490400, -162.1874763410602600 66.0976293216359600, -162.1859814834586800 66.0982010845124800, -162.1844414430181600 66.0987425663164500, -162.1821856888184600 66.0994778816989300, -162.1798528762092500 66.1001725540202200, -162.1774474505393800 66.1008252567802400, -162.1749739983513000 66.1014347444179900, -162.1729207669798000 66.1018966182343800, -162.1682786563349000 66.1028975492825500, -162.1662237531237000 66.1033221470994500, -162.1641336324611300 66.1037174935675600, -162.1620108277374800 66.1040831102474200, -162.1598579101144300 66.1044185537733100, -162.1571172567559500 66.1047962375564000, -162.1543385117129200 66.1051250350923300, -162.1515269791867000 66.1054043177551300, -162.1486880272306300 66.1056335522466700, -162.1458270760586800 66.1058123014966000, -162.1429495872536000 66.1059402246617100, -162.1400610565724800 66.1060170753278300, -162.1371669995573700 66.1060427087040800, -162.1351292724979000 66.1060300039815700, -162.1330934735849200 66.1059919006057700, -162.1310615300655200 66.1059284345497000, -162.1290353655896300 66.1058396669670900, -162.1251423425450500 66.1056444628217700, -162.1217570605399000 66.1054385531467700, -162.1189181301675400 66.1052093186551700, -162.1161066192250600 66.1049300359924200, -162.1133278957657400 66.1046012384564400, -162.1105872630917000 66.1042235546733500, -162.1078899525592500 66.1037977050001500, -162.1052411118877800 66.1033245024239000, -162.1026457934685500 66.1028048507633300, -162.1001089507674400 66.1022397419705500, -162.0976354194390300 66.1016302543328000, -162.0952299182261200 66.1009775515727800, -162.0928970318725000 66.1002828801508700, -162.0906412066263400 66.0995475638690100, -162.0890353133290200 66.0989821852796800, -162.0874749985723000 66.0983962032222500, -162.0847528172886600 66.0973403982408200, -162.0834477867859000 66.0968200217266700, -162.0821786985880500 66.0962852281808200, -162.0809465194662700 66.0957364249960600, -162.0797521874134800 66.0951740321559100, -162.0782025107372400 66.0943894078449700, -162.0761034822898500 66.0949067653350000, -162.0735673707375500 66.0954718750270400, -162.0709728014536000 66.0959915266876700, -162.0683247243065600 66.0964647292639100, -162.0656281916876700 66.0968905789371200, -162.0638126637234000 66.0971408476720500, -162.0624646393316000 66.0973817265854700, -162.0597680086866300 66.0978075762586700, -162.0570280684905500 66.0981852600417600, -162.0542500456030800 66.0985140575777500, -162.0514392451250400 66.0987933402404900, -162.0486010306130400 66.0990225756314100, -162.0457408231804000 66.0992013248812800, -162.0428640835106000 66.0993292471470700, -162.0399763037633800 66.0994060987125600, -162.0370829994808200 66.0994317320888200, -162.0336721452532600 66.0993961018487000, -162.0283615532430600 66.0992849843146400, -162.0263264899755000 66.0992296175528500, -162.0242965969104000 66.0991488728223000, -162.0222738003955400 66.0990428247666300, -162.0202600186849000 66.0989115750092500, -162.0174218167634000 66.0986823405176600, -162.0146110279765400 66.0984030578549100, -162.0118330176796000 66.0980742603189200, -162.0090930891746800 66.0976965756365200, -162.0063964711202000 66.0972707259633100, -162.0037483094369000 66.0967975233870700, -162.0011419257592400 66.0962568824492100, -162.0003634420192000 66.0961017970603300, -161.9993788102838400 66.0959295966736100, -161.9976096162907300 66.0956076366831600, -161.9958644279010000 66.0952648124211900, -161.9941447397878800 66.0949014188654500, -161.9924520250409000 66.0945177671812900, -161.9899792455457300 66.0939082786442200, -161.9875744736830000 66.0932555758842000, -161.9852422959951400 66.0925609035629100, -161.9829871551331000 66.0918255863817900, -161.9808133480575500 66.0910510299810900, -161.9787250161465400 66.0902387092490900, -161.9767261335042300 66.0893901764155800, -161.9748205060615000 66.0885070493608900, -161.9727396628051700 66.0874458520444800, -161.9707934156835400 66.0863434289061600, -161.9687948001398800 66.0851487209367900, -161.9674606954547000 66.0843186610774200, -161.9662029099363300 66.0834692127340300, -161.9648141831280300 66.0824395843193900, -161.9635375424236000 66.0813863397078800, -161.9629697842281400 66.0808612219679000, -161.9626596449266500 66.0807741963721500, -161.9609404910108300 66.0802577076271400, -161.9601352101717900 66.0800074982474800, -161.9577862358460700 66.0792426239480000, -161.9556135034604000 66.0784680657486700, -161.9545117907864800 66.0780393085672700, -161.9532673736903200 66.0776898958720300, -161.9528219430782000 66.0775686528711000, -161.9520583907820700 66.0773803312373500, -161.9496551810417500 66.0767276266786900, -161.9473245169129000 66.0760329525587600, -161.9450708401471400 66.0752976353776400, -161.9428984441078700 66.0745230771783000, -161.9408114665759000 66.0737107555469800, -161.9388138816552800 66.0728622218141500, -161.9369094898810300 66.0719790929608200, -161.9364027857599200 66.0717304798777700, -161.9325430628120700 66.0698132017179200, -161.9308827371485800 66.0689532672795400, -161.9293098840438700 66.0680666472580400, -161.9278270953441600 66.0671548066490600, -161.9264368100107600 66.0662192509177500, -161.9262810483316700 66.0661085191928800, -161.9256213092759800 66.0660296828236800, -161.9229280447934000 66.0656038322511000, -161.9203134637952800 66.0651219197408800, -161.9196327921196400 66.0650002081931100, -161.9176509588246500 66.0646868349295500, -161.9150061857868000 66.0642136314539800, -161.9124148540622300 66.0636939779947200, -161.9098690900864000 66.0631251424114200, -161.9092037500530000 66.0629886154322900, -161.9077084976490300 66.0627720487910900, -161.9069504033384000 66.0626478569131500, -161.9050142807844000 66.0623538433552500, -161.9023697505635000 66.0618806389803700, -161.9017140530610800 66.0617486706646600, -161.8990433040052600 66.0613258463108100, -161.8983794523498100 66.0612070539624500, -161.8964412370734000 66.0610141871550800, -161.8936673061012600 66.0606853887197800, -161.8924317329381000 66.0605148206025200, -161.8907214157607000 66.0603764733955900, -161.8879148555860800 66.0600971898335300, -161.8874008912381200 66.0600362661608100, -161.8869669854380000 66.0603582648221300, -161.8855798342419200 66.0612920102181500, -161.8841005582941000 66.0622021367192900, -161.8825315812674400 66.0630871478536500, -161.8808754797195800 66.0639455849208700, -161.8765159261690200 66.0661130283936000, -161.8759963221725000 66.0663681085014800, -161.8740923503816300 66.0672512373547500, -161.8720952043301800 66.0680997719869700, -161.8700086872511000 66.0689120936182800, -161.8678367696511800 66.0696866518175600, -161.8672703388550400 66.0698715047661800, -161.8644505964178700 66.0712034411859000, -161.8639225378947800 66.0714506189509600, -161.8625445292066200 66.0720828072757600, -161.8621308248776200 66.0722645161945400, -161.8605473741619700 66.0729320208960800, -161.8602592385729800 66.0730483428068300, -161.8584608292038600 66.0737451492192900, -161.8583108384743800 66.0738007650932700, -161.8562880986168300 66.0745189987528600, -161.8560739682390000 66.0745983980976300, -161.8540807549228800 66.0754607508130800, -161.8519936334993500 66.0762730715450700, -161.8498210890719800 66.0770476297443600, -161.8475672567235000 66.0777829478248600, -161.8452364325153200 66.0784776210454100, -161.8428284149993300 66.0791147475476400, -161.8414599688025000 66.0795056180898500, -161.8390564964601000 66.0801583226485100, -161.8380374116971700 66.0804096417916200, -161.8372085722178000 66.0810242177934700, -161.8359657990823500 66.0818640110153400, -161.8346484388743200 66.0826848726088700, -161.8332582335805800 66.0834857107969900, -161.8317970232140200 66.0842654634803900, -161.8268572495623800 66.0868174552613800, -161.8254739969274000 66.0878582028938100, -161.8239755591247300 66.0888622518914400, -161.8223704950023000 66.0898388059162000, -161.8206618505639400 66.0907860051700600, -161.8188528759594400 66.0917020411163800, -161.8181259971170500 66.0920480921457700, -161.8121273616883700 66.0948550309349800, -161.8103777989962000 66.0956416967069900, -161.8085531294233600 66.0963997865209800, -161.8066561840356300 66.0971281213657600, -161.8052106335638600 66.0976408644344200, -161.8047487642440400 66.0979217856619200, -161.8030395775144500 66.0988689840164600, -161.8012300282431700 66.0997850190634600, -161.7992558418835600 66.1006981178239200, -161.7982480337197400 66.1011163007767100, -161.7967099115331600 66.1019784214670400, -161.7950905391970000 66.1028214810265800, -161.7872416493826000 66.1067437275410700, -161.7858519989705400 66.1077741572515800, -161.7843523893512600 66.1087782035513100, -161.7827460679766300 66.1097547566767500, -161.7810360871456800 66.1107019532325900, -161.7792256961089700 66.1116179873802700, -161.7788158633614000 66.1118144038117600, -161.7729069649844300 66.1146183883280400, -161.7717429292927000 66.1152725893585400, -161.7700687423785300 66.1161367263289300, -161.7621055820069700 66.1200777560836200, -161.7607151716678000 66.1211081282376100, -161.7593630382735600 66.1220172403034800, -161.7579233639720500 66.1229040168070100, -161.7563983835785000 66.1237670754902000, -161.7547904677059000 66.1246050691686400, -161.7504029982997000 66.1268005274224600, -161.7497007896597000 66.1271459471278100, -161.7477922646013200 66.1280290705851700, -161.7470002811380400 66.1283647587266600, -161.7457337308270000 66.1293021095048000, -161.7444911132742200 66.1301402704571600, -161.7436069600931000 66.1306902769347900, -161.7427991143876000 66.1313554784725900, -161.7414077165928200 66.1323851014913100, -161.7398999465252700 66.1333809990339300, -161.7391382396380000 66.1339944733663300, -161.7377466979517000 66.1350240963850000, -161.7372687784313400 66.1353437379232200, -161.7369518609396000 66.1356362289288900, -161.7356724979873700 66.1366894681444800, -161.7342808088122600 66.1377190902638900, -161.7327794320251300 66.1387231338656000, -161.7324324582913000 66.1389338252358800, -161.7319739470400000 66.1393044601327900, -161.7307304778292700 66.1402190850428200, -161.7294331482211800 66.1410922512064900, -161.7280549983394700 66.1419448858478600, -161.7265868146297700 66.1427741084384000, -161.7251774591724000 66.1437954154261500, -161.7248888343521900 66.1440522114404500, -161.7236090478192800 66.1451054497567800, -161.7222168981912800 66.1461350709768100, -161.7213696316031800 66.1467108178500200, -161.7212279739917700 66.1468168632077300, -161.7205862771349400 66.1473554446980600, -161.7191940034005000 66.1483850659180900, -161.7176919970879700 66.1493891077212200, -161.7160831072495700 66.1503656563500000, -161.7158332198272000 66.1505038533702000, -161.7156785139522400 66.1506889446391100, -161.7155341691665500 66.1508483998338200, -161.7153802367085400 66.1510167861957800, -161.7151692971253300 66.1514483825369000, -161.7144829111574000 66.1525888245146800, -161.7136742074986600 66.1537160581496000, -161.7127447104999500 66.1548279367599400, -161.7116961756379700 66.1559223415428600, -161.7105305859177800 66.1569971860713500, -161.7092501473763700 66.1580504225889900, -161.7082262980052300 66.1588072650433200, -161.7080289840503400 66.1590112978331600, -161.7070798206771700 66.1599410286556200, -161.7060453512119700 66.1608557443971700, -161.7051117748884800 66.1615777237330500, -161.7049184359370300 66.1617448627353000, -161.7039329921138600 66.1626361736205700, -161.7026522693867000 66.1636894092388800, -161.7012591008268000 66.1647190286602700, -161.7011915842242000 66.1647649903121100, -161.7010971581073300 66.1649218050972600, -161.7002880623441900 66.1660490378328600, -161.6996586897966800 66.1667866195069200, -161.6995224973653400 66.1673305663526300, -161.6990840733712700 66.1684908824483400, -161.6985208945236300 66.1696423573089900, -161.6978340193245200 66.1707827965888700, -161.6970247374016800 66.1719100284251500, -161.6967523633309000 66.1722356126834400, -161.6963357272120200 66.1730873524993500, -161.6959354686469200 66.1737431768062300, -161.6953253811613800 66.1749705679374100, -161.6945780193600800 66.1761874981545500, -161.6939960374871200 66.1770487393079000, -161.6935086166293200 66.1777163186532100, -161.6934505258210800 66.1780806052357800, -161.6931375275748000 66.1792475529322800, -161.6926988976359800 66.1804078672293500, -161.6921354561863200 66.1815593402913600, -161.6914482590299000 66.1826997786719200, -161.6906385975931600 66.1838270087095600, -161.6897079989249700 66.1849388828232500, -161.6890315711500500 66.1856608261862200, -161.6885339357924600 66.1863550038804100, -161.6876032444941000 66.1874668779941000, -161.6865533624476800 66.1885612782804200, -161.6856151941858300 66.1894252929429900, -161.6854860866135700 66.1896049981721700, -161.6845552766047000 66.1907168722858600, -161.6835052596599700 66.1918112725722400, -161.6823380214824800 66.1928861126040700, -161.6810557717064700 66.1939393446251100, -161.6808125986225000 66.1941188466075200, -161.6800097234699400 66.1948581082151600, -161.6787273747685000 66.1959113402362000, -161.6773324354435000 66.1969409560603000, -161.6758275513004200 66.1979449933668300, -161.6752580268364500 66.1982900155718400, -161.6751789116774000 66.1983495857648400, -161.6739015443207800 66.1994113334663400, -161.6725064125408800 66.2004409492904500, -161.6710013206544000 66.2014449856976000, -161.6693891267068000 66.2024215289304700, -161.6676728919903500 66.2033687164931200, -161.6658558792454000 66.2042847425468600, -161.6640563313346000 66.2051170516106700, -161.6639024861108300 66.2051825636244800, -161.6638583401902200 66.2052439720317200, -161.6629269564138800 66.2063558443467700, -161.6618762928566000 66.2074502419351900, -161.6615287471539400 66.2077700777269300, -161.6611525652386700 66.2083937386801700, -161.6603420854188800 66.2095209651204800, -161.6594105442612000 66.2106328365362000, -161.6583597026381400 66.2117272341246200, -161.6574287388452000 66.2125755367316600, -161.6572499608170000 66.2128005884764500, -161.6570729508559600 66.2130489596418100, -161.6561412810952200 66.2141608301582200, -161.6550902928826800 66.2152552277466400, -161.6539219746194000 66.2163300650805100, -161.6526385386376300 66.2173832944035900, -161.6512424167041500 66.2184129075297400, -161.6497674619987500 66.2193971111877900, -161.6481895178319500 66.2203549476228100, -161.6465114629336300 66.2212846622574000, -161.6447363585960500 66.2221845517756800, -161.6411965092115000 66.2239019493155800, -161.6410612619676500 66.2239996309782600, -161.6400032509492300 66.2250892090997900, -161.6398199547271000 66.2252577735274600, -161.6394192006356000 66.2259217115178600, -161.6386081596388400 66.2270489361595200, -161.6376759754658700 66.2281608048772900, -161.6366244071906200 66.2292552006670100, -161.6354554432141000 66.2303300362022500, -161.6353166256617200 66.2304223408184500, -161.6352646376528800 66.2304732127686300, -161.6352334518623000 66.2305592715931700, -161.6345449282058600 66.2316997027791100, -161.6344514886452500 66.2318098787229700, -161.6337239874720200 66.2333314740683400, -161.6331724089794800 66.2343886729989300, -161.6327356037650700 66.2350856835574900, -161.6326678074733000 66.2353161357311300, -161.6322878888749400 66.2362967969596600, -161.6317232090588300 66.2374482619278000, -161.6310344983433800 66.2385886922144200, -161.6303914030408000 66.2394820508560000, -161.6303246310768300 66.2396577918736400, -161.6297657788675800 66.2407927812619200, -161.6293305582586300 66.2419357899048600, -161.6287657525374200 66.2430872548729900, -161.6280768889372400 66.2442276842603000, -161.6273888311296200 66.2451832885779500, -161.6272013161877500 66.2456857847711800, -161.6266364268296000 66.2468372488400000, -161.6259474616060500 66.2479776773279800, -161.6251357155408000 66.2491048992717400, -161.6242027192800500 66.2502167652915500, -161.6231502345956000 66.2513111583833200, -161.6219802525865500 66.2523859912205900, -161.6206949873837300 66.2534392169463300, -161.6192968743512500 66.2544688264752000, -161.6181244488841700 66.2552576686065900, -161.6168857523755400 66.2560298876692300, -161.6155822300358700 66.2567845807438400, -161.6142154017193800 66.2575208637968600, -161.6098842730407300 66.2597723300290800, -161.6083036848671400 66.2605625939886000, -161.6063850820059100 66.2614457057548000, -161.6043725881244200 66.2622942250984600, -161.6022700316366400 66.2631065314413400, -161.6000814172236000 66.2638810770501400, -161.5978109123437000 66.2646163816407400, -161.5954628436353000 66.2653110431701900, -161.5930416852255600 66.2659637369369500, -161.5905520524352400 66.2665732155815000, -161.5879986945840600 66.2671383162803500, -161.5853864797022400 66.2676579607463600, -161.5827203909332800 66.2681311561279900, -161.5800055166412500 66.2685570004052800, -161.5782193056763800 66.2687909842166000, -161.5771103633525500 66.2690732076624700, -161.5745567518925400 66.2696383083613200, -161.5726140283147200 66.2700247335546900, -161.5718566651529500 66.2704142164429900, -161.5679129877941300 66.2723595255716900, -161.5673831351235500 66.2726175617511300, -161.5658964262790000 66.2733082554716500, -161.5643522381652400 66.2739781874434500, -161.5627523523391700 66.2746265842495200, -161.5610986178069500 66.2752526940566300, -161.5596544172175600 66.2757811096105900, -161.5577138394221200 66.2764640394838700, -161.5564348433932800 66.2768780369918900, -161.5556282306583000 66.2771894911022000, -161.5534383940666000 66.2779640349123200, -161.5511666211426000 66.2786993395029600, -161.5488172412226800 66.2793940001330400, -161.5463947302325800 66.2800466930005400, -161.5438992221713500 66.2806410000821400, -161.5422368595434000 66.2811159941078900, -161.5398141839773700 66.2817686869754000, -161.5373229908633200 66.2823781647205700, -161.5365184879378300 66.2825561027820000, -161.5360350447814700 66.2826746271324000, -161.5335411680904000 66.2832766423032400, -161.5331803483943200 66.2833657228499100, -161.5317831238920000 66.2836900606478100, -161.5314349234829000 66.2837784568104100, -161.5306898684426400 66.2839761862520600, -161.5290399830087700 66.2844356786636700, -161.5265485272926800 66.2850451564089000, -161.5239932970529800 66.2856102562084300, -161.5213791675145400 66.2861298997751200, -161.5187111254180600 66.2866030951567500, -161.5159942609263600 66.2870289385347200, -161.5132337595303500 66.2874066160225700, -161.5104348894585700 66.2877354090619500, -161.5076029944825700 66.2880146872281000, -161.5047434795279200 66.2882439190216800, -161.5018618052780500 66.2884226655735900, -161.4989634746846000 66.2885505860407400, -161.4960540203767000 66.2886274358076000, -161.4931390001647000 66.2886530691838500, -161.4923203616953000 66.2886510484071900, -161.4591740175668200 66.2884838698348000, -161.4564732509397500 66.2884479410197400, -161.4537783137181700 66.2883680407525200, -161.4510936287679200 66.2882442985356300, -161.4484235973711000 66.2880769185150600, -161.4455641022015300 66.2878476876207400, -161.4427324815188000 66.2875629361806200, -161.4425767405241200 66.2875501433245000, -161.4412823993632200 66.2874894112073900, -161.4387019422408000 66.2873269217001300, -161.4358425325068500 66.2870976908058700, -161.4330107400536000 66.2868184117403400, -161.4323690153177600 66.2867305173995200, -161.4300672095340600 66.2866682708241200, -161.4277696188728000 66.2865863533775700, -161.4268235212884400 66.2865269864313400, -161.4239647887439700 66.2867439235932400, -161.4210832862646300 66.2869226710444700, -161.4181851274416600 66.2870505915116700, -161.4152758467029400 66.2871274412784700, -161.4123610000601000 66.2871530746547300, -161.4101481956826700 66.2871383050887700, -161.4079378266693300 66.2870940125786800, -161.4006801376782000 66.2868998066807600, -161.3988787524524500 66.2868416915908400, -161.3970819402793000 66.2867639658843500, -161.3952910177662300 66.2866666862186700, -161.3935073006214000 66.2865499245394300, -161.3906479790210000 66.2863206936451700, -161.3880800386628200 66.2860674283691700, -161.3857960061807300 66.2862926932532400, -161.3829366863789400 66.2865219241475600, -161.3800552090806000 66.2867006706994700, -161.3771570763379700 66.2868285920659400, -161.3742478216796000 66.2869054418327400, -161.3713330002177600 66.2869310752090000, -161.3681361288792300 66.2869002383553700, -161.3634265340073200 66.2868091972866900, -161.3617410884804100 66.2868835910050000, -161.3588318275267900 66.2869604416711100, -161.3559169997697000 66.2869860741480500, -161.3551475191426600 66.2869842889937800, -161.3374616613265900 66.2869012006299800, -161.3347446016820000 66.2868659939704800, -161.3320333606510500 66.2867862789636300, -161.3293324411392300 66.2866621869104600, -161.3266463262669000 66.2864939237556400, -161.3237870100624300 66.2862646928613200, -161.3209553111386800 66.2859854137958600, -161.3181566362197500 66.2856566216558500, -161.3153963263793300 66.2852789432686800, -161.3126796507452500 66.2848530998907100, -161.3100117939091300 66.2843799054083400, -161.3073978460337500 66.2838602618416500, -161.3048427929605000 66.2832951611428000, -161.3023515099142200 66.2826856833976300, -161.2999287453153300 66.2820329914294500, -161.2975791198804500 66.2813383307993700, -161.2953071095354600 66.2806030271080400, -161.2931170436166300 66.2798284832979300, -161.2910130940790000 66.2790161778543700, -161.2889992656036000 66.2781676603093500, -161.2870793920003200 66.2772845494424700, -161.2864233374670300 66.2769641371852500, -161.2831744646298000 66.2753520574515300, -161.2815422778538200 66.2745083269977600, -161.2799947550538800 66.2736391142538000, -161.2785343378893400 66.2727457960816700, -161.2771633295240000 66.2718297871150500, -161.2757642560155800 66.2708001793848200, -161.2744781076785000 66.2697469563569800, -161.2733073216755300 66.2686721253184000, -161.2722541148355000 66.2675777349246000, -161.2713204791567700 66.2664658707034300, -161.2705081773105200 66.2653386514576800, -161.2698187399428800 66.2641982247683400, -161.2692534647755500 66.2630467624981600, -161.2688134103106000 66.2618864598922500, -161.2684993985283800 66.2607195247862800, -161.2683120094916000 66.2595481803043100, -161.2682515813453700 66.2583746558657400, -161.2683182130150800 66.2572011853864600, -161.2685117588106000 66.2560300036817600, -161.2688318329227300 66.2548633383724500, -161.2692778094233300 66.2537034098845100, -161.2698488213660000 66.2525524260536800, -161.2705437670811600 66.2514125749304400, -161.2713613065790000 66.2502860265789200, -161.2722998687439100 66.2491749213855900, -161.2733576540324800 66.2480813736565300, -161.2743012640920300 66.2472189301095700, -161.2740275725144300 66.2468332261725000, -161.2732788752199000 66.2459484362713600, -161.2726058972443500 66.2450591893301600, -161.2721725948893300 66.2444124976387300, -161.2717411064668600 66.2440402898275800, -161.2715112856173200 66.2438626152675200, -161.2710517635280500 66.2435688238422200, -161.2701571215539000 66.2434367745875100, -161.2695967710741000 66.2433665033614700, -161.2681125848279000 66.2432000487432900, -161.2674320795268300 66.2431625703963500, -161.2657222965467300 66.2430500751009400, -161.2628679014325000 66.2428208424079800, -161.2600410759348800 66.2425415633425100, -161.2572472168855300 66.2422127694038600, -161.2544916563648200 66.2418350901173800, -161.2517583306823800 66.2414001869690900, -161.2500347916722800 66.2412648479943900, -161.2472081397438300 66.2409855689289200, -161.2444144524649800 66.2406567749902100, -161.2420051030530300 66.2403087904184000, -161.2416600727541200 66.2402688668148000, -161.2412908300077600 66.2402220553036600, -161.2391808046503700 66.2400135717690000, -161.2363872252901700 66.2396847787296100, -161.2356221000798400 66.2395816768529400, -161.2329335858163000 66.2393215308640000, -161.2313088418295600 66.2391552417211100, -161.2310971369233000 66.2391373389170900, -161.2286401576171500 66.2389940886063800, -161.2257862211571600 66.2387648568127400, -161.2229598498172000 66.2384855768479500, -161.2201664386302000 66.2381567829092400, -161.2186720738571000 66.2379538293058100, -161.2186037379721000 66.2379496933237400, -161.2174142145943000 66.2380542925715800, -161.2166665614126400 66.2381567829092400, -161.2138731502256800 66.2384855768479500, -161.2110467788857000 66.2387648568127400, -161.2081928424257200 66.2389940886063800, -161.2061564652486500 66.2391260047613700, -161.2050248537140000 66.2391809893112500, -161.2040659920518500 66.2393676759775200, -161.2021466994106300 66.2397060405014000, -161.2015469217530200 66.2398249956270900, -161.1989669592577500 66.2403520505067700, -161.1985227948910300 66.2404261384555800, -161.1961761426148600 66.2411161181144000, -161.1937573035566800 66.2417688127805500, -161.1912700566677500 66.2423782932237400, -161.1887191449725400 66.2429433948218500, -161.1861094329039800 66.2434630401872400, -161.1834458991089300 66.2439362373675000, -161.1807336265556000 66.2443620816448000, -161.1801380999933000 66.2444451079554100, -161.1800282469060300 66.2444673050221700, -161.1778005434602800 66.2450172836208300, -161.1765002784650600 66.2453019487260200, -161.1741555030740000 66.2459282626792300, -161.1717475251281500 66.2465172790492700, -161.1691961952482000 66.2470823806473800, -161.1665860551023300 66.2476020260127700, -161.1639220851360800 66.2480752222937200, -161.1626243193568400 66.2482789466161500, -161.1619738649019000 66.2483947037526400, -161.1593119013231500 66.2488812198924400, -161.1574742014731800 66.2491696945258500, -161.1566964794589300 66.2493080956921300, -161.1566017799481500 66.2493205207255200, -161.1559438979924700 66.2494581358843100, -161.1554973243420000 66.2496293146412000, -161.1534474132675000 66.2503531169028900, -161.1511781251703000 66.2510884223928500, -161.1488313146134600 66.2517830857208900, -161.1464114530261000 66.2524357794877100, -161.1439231548297000 66.2530452590315200, -161.1428380175604200 66.2532855470904000, -161.1423818886132400 66.2533944747752300, -161.1418974112365000 66.2535049007306600, -161.1413837292756500 66.2536352205889900, -161.1399001374813300 66.2540309636581200, -161.1389690972460200 66.2542967735772700, -161.1364763698885300 66.2548905113880600, -161.1348035580377300 66.2553247697223900, -161.1323149756555600 66.2559342492662600, -161.1297626933935600 66.2564993499651100, -161.1271515792819300 66.2570189953304400, -161.1244866155648200 66.2574921916113900, -161.1217728861097700 66.2579180349893600, -161.1190155692131300 66.2582957142758500, -161.1162199295061200 66.2586245073152300, -161.1133913017671400 66.2589037863807000, -161.1120091669894200 66.2590147132584700, -161.1124650162474800 66.2594749278256900, -161.1135992106350400 66.2601772524782900, -161.1146726063556700 66.2608986922209000, -161.1149474499648000 66.2611001403592500, -161.1164840621897000 66.2618030468731800, -161.1190397789626000 66.2630242092998900, -161.1191137473015500 66.2630596120115500, -161.1209388332605000 66.2639744113900500, -161.1226632895791200 66.2649203992570500, -161.1242838292353000 66.2658957796665500, -161.1257973612591700 66.2668986991157000, -161.1272009952297000 66.2679272510418400, -161.1284920493685600 66.2689794821174600, -161.1296680568353300 66.2700533895523400, -161.1307267666269600 66.2711469345834400, -161.1310107626365500 66.2714828439581500, -161.1318814781476800 66.2720067889822000, -161.1333953770949600 66.2730097066327000, -161.1345371689551500 66.2738379147879800, -161.1356059349659000 66.2746817936299500, -161.1366003459292000 66.2755402999449600, -161.1375191625792500 66.2764123698350400, -161.1381314201289000 66.2770231264162200, -161.1389385032093200 66.2778689388005700, -161.1396625698716600 66.2787106080082300, -161.1403170991547700 66.2795614664885300, -161.1409013662050700 66.2804205825439100, -161.1414147244099700 66.2812870145841100, -161.1423911039662500 66.2830646073458000, -161.1429406607828400 66.2841754094676500, -161.1430834749224000 66.2845463977980700, -161.1433741564921000 66.2849122501003200, -161.1454278321287200 66.2876417284830400, -161.1456723389072700 66.2879344254334300, -161.1464576143274000 66.2888253783885400, -161.1471502164093300 66.2896892932263300, -161.1476352369765800 66.2902029455095800, -161.1484215331272200 66.2911322671404800, -161.1485934682139600 66.2913029584648300, -161.1496687075447800 66.2923969477610000, -161.1506088857914300 66.2935080457597800, -161.1514278336276000 66.2946345878160000, -161.1521239772397400 66.2957744308453700, -161.1526959757386500 66.2969254083809600, -161.1529250168760000 66.2975200832852900, -161.1564073438238400 66.2992184484726900, -161.1581233716962000 66.3000913772153200, -161.1597483162317700 66.3009921022038000, -161.1612793931294600 66.3019190864967000, -161.1627139754695600 66.3028707436899400, -161.1641196185255500 66.3038992911194200, -161.1654125225698200 66.3049515150004800, -161.1664775572934000 66.3059226892807500, -161.1665979477370700 66.3060125486402400, -161.1676809823914000 66.3066458368359700, -161.1691969677658300 66.3076487499898800, -161.1702195913610200 66.3083861670879700, -161.1713284671350300 66.3092160560762000, -161.1732148445893800 66.3098805282638200, -161.1753243546352200 66.3106915782538000, -161.1773440376971400 66.3115388394459200, -161.1792700482740800 66.3124207038524700, -161.1804807300016500 66.3130171324347700, -161.1815627538180000 66.3135824255885500, -161.1838117936793000 66.3137621443075900, -161.1850622551189400 66.3138850645441400, -161.1864413456915200 66.3139213773697500, -161.1893426881145500 66.3140490262416000, -161.1922274614281600 66.3142273950782600, -161.1950901923584600 66.3144561457346000, -161.1979254472016000 66.3147348447373600, -161.2007561083077300 66.3150767840663800, -161.2036466885438000 66.3153171485676000, -161.2064820405137200 66.3155958475703600, -161.2092845339540500 66.3159239652188700, -161.2118536686119000 66.3162742655449600, -161.2120492864454000 66.3162954050089900, -161.2130912949273000 66.3163731522992000, -161.2159267665070400 66.3166518513019700, -161.2187293777585400 66.3169799680511600, -161.2214938091919000 66.3173568820145600, -161.2242148141623000 66.3177818764324900, -161.2268872242659700 66.3182541446131500, -161.2295057191136000 66.3187745957710600, -161.2303012000403200 66.3188848868281300, -161.2330223695866500 66.3193098812460600, -161.2356949424676000 66.3197821494267100, -161.2383138429095000 66.3203007956452700, -161.2398054098917200 66.3206365656250800, -161.2427060211659300 66.3207710502438200, -161.2455915660978600 66.3209494190804800, -161.2484550614519000 66.3211781688374900, -161.2512910744235000 66.3214568678402500, -161.2540942207716300 66.3217849845894400, -161.2568591810063800 66.3221618976535300, -161.2592180649617000 66.3225270718669400, -161.2615410335918000 66.3229277666031900, -161.2638247809888000 66.3233634107928100, -161.2660660561035700 66.3238333857022400, -161.2672043055342500 66.3240831517161400, -161.2685727886032800 66.3243918458071000, -161.2710698821693000 66.3250002074936400, -161.2734987108967700 66.3256517375377300, -161.2758546585656000 66.3263451984722100, -161.2781332456527300 66.3270792736896000, -161.2791098275564800 66.3274323160486000, -161.2793798723831700 66.3275089265957300, -161.2798890415460000 66.3276396700347800, -161.2809384100795300 66.3278648557785000, -161.2830848292014700 66.3283840631740400, -161.2843831597549800 66.3287253235149000, -161.2849220479141600 66.3288330551014800, -161.2873294062271000 66.3293648593008800, -161.2893426492438500 66.3298505309773000, -161.2913123506844200 66.3303642579042500, -161.2932360904731600 66.3309054087576400, -161.2951115060911000 66.3314733198378700, -161.2999709118281000 66.3329990358768700, -161.3007302418071700 66.3332599705712500, -161.3017552611963200 66.3335796498810200, -161.3028144728096400 66.3338964162866200, -161.3048410347859000 66.3345522918548300, -161.3066948747686200 66.3352157172316200, -161.3070468307466000 66.3352873149576700, -161.3074277071229700 66.3353368361261500, -161.3092053979107400 66.3355789408155400, -161.3119283750944000 66.3360039334348200, -161.3146027232370700 66.3364762007161600, -161.3160532406645000 66.3367726676245900, -161.3168435495901200 66.3369017131436200, -161.3172280853078700 66.3369660389515700, -161.3188178402711000 66.3371619445681500, -161.3215409883259200 66.3375869371874400, -161.3242155055411300 66.3380592044687800, -161.3265331600772500 66.3385178569136000, -161.3268362253115200 66.3385828545151500, -161.3274098641738600 66.3386529314876700, -161.3275145560518800 66.3386662351586600, -161.3302481146587300 66.3389299253758000, -161.3330532107370600 66.3392580412256600, -161.3358200928229800 66.3396349533904300, -161.3385435097751200 66.3400599460097700, -161.3412182895923800 66.3405322123917400, -161.3420552247687900 66.3407024639476000, -161.3448596346643700 66.3410350467301000, -161.3476267128025400 66.3414119579955500, -161.3503503222095800 66.3418369506148300, -161.3530252917837500 66.3423092169968000, -161.3556465403555400 66.3428278614167100, -161.3582090901773500 66.3433918991169100, -161.3607080723196500 66.3440002590048200, -161.3620715902316600 66.3443521268492300, -161.3641296509625800 66.3446349690286800, -161.3668536102059000 66.3450599607486400, -161.3695289224218000 66.3455322271306600, -161.3721505073400200 66.3460508715505200, -161.3747133863137000 66.3466149083514000, -161.3772126895139800 66.3472232682393000, -161.3796436676211400 66.3478747955854300, -161.3801965231510000 66.3480519053711600, -161.3803662018387000 66.3480845129899400, -161.3805217944452300 66.3480830911618100, -161.4060554934662300 66.3480692901656500, -161.4061939998531700 66.3480692326090800, -161.4091159196639500 66.3480948102273400, -161.4120322942549400 66.3481714963175500, -161.4149375918963200 66.3482991442901400, -161.4178262979452500 66.3484775122274800, -161.4206929310339000 66.3487062619844300, -161.4235320520625000 66.3489849582892400, -161.4263382704947700 66.3493130741391000, -161.4268608836228500 66.3493842374926400, -161.4278827481902600 66.3494495156826400, -161.4307494918955000 66.3496782645403300, -161.4335887226414200 66.3499569617444500, -161.4363950498916200 66.3502850766950000, -161.4391631469616500 66.3506619879604500, -161.4415647145399000 66.3510499941619400, -161.4418863984385000 66.3510969756449600, -161.4443308564838200 66.3514399905631600, -161.4470555540705400 66.3518649822831900, -161.4497315911400000 66.3523372477658300, -161.4523538865226200 66.3528558912864200, -161.4549174597729300 66.3534199280872500, -161.4562112307636700 66.3537273091680500, -161.4571088485944600 66.3538638793146400, -161.4577074490395000 66.3539633677153200, -161.4598350219686700 66.3542819894223000, -161.4625113162442200 66.3547542549050000, -161.4651338643363400 66.3552728984256000, -161.4656640785343600 66.3553890890352700, -161.4680137983980600 66.3557934377170100, -161.4703098557152400 66.3562313104266700, -161.4725629793979600 66.3567037980419000, -161.4762275629516400 66.3575080437612400, -161.4775623160480200 66.3578089398307600, -161.4800627344076200 66.3584172988193500, -161.4824212874124500 66.3590491328112600, -161.4824949868541400 66.3590680482518600, -161.4833704984497200 66.3592821327642900, -161.4877643953105600 66.3604238373902100, -161.4897757713347600 66.3608056472628500, -161.4910663551281700 66.3610334194568200, -161.4924811424907000 66.3612540114635300, -161.4951581814049200 66.3617262769461700, -161.4977814579479000 66.3622449195674400, -161.5003459898755000 66.3628089545696300, -161.5018754992548500 66.3631766693678700, -161.5022594836882000 66.3632526566848400, -161.5036223846653000 66.3634490182576500, -161.5062996574032500 66.3639212828409800, -161.5089231632733500 66.3644399254622500, -161.5114879200314400 66.3650039604644300, -161.5128009967685600 66.3653233438972700, -161.5147736326969700 66.3656712879995900, -161.5173973211294400 66.3661899297215400, -161.5199607037234600 66.3667618203018000, -161.5205361016597300 66.3668883702021600, -161.5215328562562700 66.3671223396243000, -161.5222597674742500 66.3672627237957000, -161.5234706695357500 66.3674762938958900, -161.5260945477251700 66.3679949356178400, -161.5286596678094000 66.3685589706200300, -161.5291988860197400 66.3687145875082400, -161.5293267426350500 66.3687358762597300, -161.5294048568486300 66.3687485980693700, -161.5295367721043000 66.3687393026767200, -161.5321183255003000 66.3687618819553200, -161.5350371021805000 66.3688385680455300, -161.5379447920185200 66.3689662151188000, -161.5408358767742500 66.3691445821568200, -161.5422134546871600 66.3692479097632600, -161.5446559836866800 66.3694417064696200, -161.5471724999109100 66.3696615646295500, -161.5485332470117000 66.3698025900175700, -161.5527757070332200 66.3698061900037100, -161.5552110171746800 66.3695673318669000, -161.5580800334667500 66.3693385830092700, -161.5608999143995000 66.3691639904258700, -161.5637357241243400 66.3690376500675300, -161.5665823410022000 66.3689597903621100, -161.5694346254076000 66.3689305516037400, -161.5708398134066200 66.3689280685755400, -161.5731005138776000 66.3687063281345800, -161.5759694321435500 66.3684775801762600, -161.5787314803735000 66.3683060695694800, -161.5815103836972400 66.3681957812103700, -161.5840090960429300 66.3679645160496500, -161.5868462475562500 66.3677363571472400, -161.5887892607157700 66.3675975036219400, -161.5889148456436000 66.3675885769513300, -161.5918057514342600 66.3674102099133200, -161.5947132605085400 66.3672825628400500, -161.5976318564250000 66.3672058767498900, -161.6005560002592000 66.3671802991315800, -161.6027144190351800 66.3671942323280200, -161.6048706065931800 66.3672360166289100, -161.6070223344132000 66.3673056106654800, -161.6091673784717000 66.3674029397939200, -161.6113031433254000 66.3675138226049000, -161.6143352067044000 66.3676995775734900, -161.6172040350381600 66.3679283264311800, -161.6200453306274800 66.3682070218366700, -161.6225119668537500 66.3685140323967200, -161.6228530725112500 66.3685449313035700, -161.6246976584701300 66.3686725810748000, -161.6275665983198200 66.3689013290331800, -161.6284085058478300 66.3689839065820600, -161.6298128736651400 66.3690269553297900, -161.6324288656995500 66.3691487244341300, -161.6350309542151300 66.3693115835627600, -161.6378999678092300 66.3695403324204600, -161.6399073445482800 66.3697372182980400, -161.6401840299690000 66.3697366616177100, -161.6405279999672000 66.3697363081841400, -161.6434524423763000 66.3697618858024600, -161.6463713350690300 66.3698385709933000, -161.6492791409196000 66.3699662189658900, -161.6521703407885600 66.3701445860039000, -161.6550394488115000 66.3703733348616000, -161.6572488573488600 66.3705900292065400, -161.6594351101422000 66.3706508026924700, -161.6622412368435800 66.3707765728805700, -161.6628741248409500 66.3708158129994100, -161.6647711475703800 66.3707263250599300, -161.6673278050341500 66.3706453042374300, -161.6690409550759900 66.3706173784892700, -161.6697128223888200 66.3704013091731300, -161.6720729078383800 66.3697078536345700, -161.6745060020503200 66.3690563280871400, -161.6770074798113200 66.3684479708972000, -161.6775414765578800 66.3683305518135900, -161.6787145468388500 66.3679858488678700, -161.6811474737768600 66.3673343233203900, -161.6836487797673400 66.3667259661305000, -161.6843755506910700 66.3665661476096600, -161.6852171011882400 66.3663188439395500, -161.6876498662483000 66.3656673183920700, -161.6901510067635300 66.3650589603028000, -161.6907729365217700 66.3649326253404300, -161.6909636476542000 66.3648808594641700, -161.6917464427441200 66.3646073621401300, -161.6940249461942800 66.3638641929781600, -161.6942496094319000 66.3637884322903900, -161.6964442070345000 66.3629963588949200, -161.6985244396511500 66.3623245455414100, -161.7006695736418700 66.3616864900395200, -161.7028762086700600 66.3610832023279600, -161.7051408481715700 66.3605156383860600, -161.7065290263934000 66.3601829440876800, -161.7074078735744800 66.3600021254977700, -161.7084031334978000 66.3597667009725000, -161.7091442135345900 66.3594963503763300, -161.7114257441027700 66.3587622787562200, -161.7137847341781200 66.3580688223183300, -161.7162166997408700 66.3574172958715800, -161.7187170173764300 66.3568089368830000, -161.7212809368657200 66.3562449009814400, -161.7239035865812300 66.3557262574608400, -161.7251200662380500 66.3555264334981400, -161.7254468519906000 66.3554539400473700, -161.7275543241727000 66.3548892890095200, -161.7287051659106400 66.3546172539831200, -161.7300522496116000 66.3542729377459200, -161.7311386378378300 66.3539732863381500, -161.7336386128317000 66.3533649273495600, -161.7362021806860600 66.3528008914480600, -161.7382920252567300 66.3523948187659000, -161.7388216270164500 66.3522716377259500, -161.7407248235917000 66.3517502809507400, -161.7432245773523200 66.3511419210628900, -161.7439483283526400 66.3509721650334500, -161.7454912960864000 66.3505138030695900, -161.7479225296010300 66.3498622757235200, -161.7504220954033700 66.3492539158356200, -161.7529842576173600 66.3486862026062500, -161.7538685600859500 66.3484452715321100, -161.7563679846947200 66.3478369116442100, -161.7582013579063000 66.3474275339535800, -161.7600656911786800 66.3470413902480200, -161.7619591597873500 66.3466788582428000, -161.7638799093303000 66.3463402931700400, -161.7658503068461500 66.3460076213547200, -161.7689245376372800 66.3455239722535500, -161.7699354007981000 66.3453709463121900, -161.7725548606183000 66.3448372256575000, -161.7738406267435000 66.3446102457662600, -161.7746225404978300 66.3444199024566000, -161.7771851946410000 66.3438558647563900, -161.7798065511314000 66.3433372212358000, -161.7824816295235500 66.3428649548538400, -161.7829508894719500 66.3427917347507900, -161.7861185607229700 66.3420334812602200, -161.7877659766185000 66.3416175259281400, -161.7883846984950000 66.3414735579584100, -161.7886710345405800 66.3414013738743600, -161.7892692545724200 66.3412592926822500, -161.7907048783274300 66.3408725886990900, -161.7911015818724800 66.3407502503238200, -161.7936002411581700 66.3401418904359700, -161.7961624591301600 66.3395778518364500, -161.7987833686575000 66.3390592074165400, -161.8014579919927200 66.3385869410345800, -161.8027709311335200 66.3383733610418200, -161.8053316454390500 66.3378008472313900, -161.8079523697060700 66.3372822019121600, -161.8106268032843200 66.3368099355301400, -161.8132156079139500 66.3364081714999500, -161.8112668939519700 66.3355063961033700, -161.8098228543412300 66.3347890797522800, -161.8084409569845500 66.3340522759917800, -161.8071228260575400 66.3332968535669900, -161.8058700074948300 66.3325237028066700, -161.8044822222767000 66.3316341986594000, -161.8031947636274000 66.3307736553799700, -161.8017924183853600 66.3297440539449800, -161.8005032627153800 66.3286908372124300, -161.7993297400754200 66.3276160124690400, -161.7982740726902800 66.3265216292698500, -161.7973382561555700 66.3254097722432300, -161.7965240585384400 66.3242825610913700, -161.7958330140823200 66.3231421424959500, -161.7952664232068400 66.3219906892189800, -161.7948253462127200 66.3208303938076800, -161.7945106077783000 66.3196634676949100, -161.7943227879662500 66.3184921313068700, -161.7942622276196700 66.3173186158615000, -161.7943100032040600 66.3163304425959300, -161.7944480041720400 66.3153436425951100, -161.7946760326727500 66.3143595459563400, -161.7949937712455200 66.3133794809783100, -161.7951891264769700 66.3128525627955700, -161.7954862723735500 66.3121204076307400, -161.7960586180108000 66.3109694327931700, -161.7967551843043000 66.3098295915624500, -161.7975746294655400 66.3087030522041200, -161.7985153769830300 66.3075919569033700, -161.7995756246153600 66.3064984181675100, -161.8007533389953800 66.3054245161286000, -161.8020462664220200 66.3043722913482200, -161.8024096500852500 66.3041063995907500, -161.8014648070551700 66.3036877660775900, -161.8003048309032000 66.3031454811790600, -161.7985277336679500 66.3022541424148200, -161.7938078649410000 66.2997805391406100, -161.7924936811384400 66.2990676384608300, -161.7912387302831400 66.2983376695478900, -161.7900443766466500 66.2975914292011300, -161.7889119161520000 66.2968297313071300, -161.7875114567882800 66.2958001262748600, -161.7862240350111700 66.2947469059450300, -161.7856986025084600 66.2942650150184800, -161.7835032935421400 66.2936162944564600, -161.7812301770310000 66.2928809907651800, -161.7790390445162500 66.2921064478543400, -161.7769340697515000 66.2912941433101000, -161.7749192610150400 66.2904456266644000, -161.7729984521168400 66.2895625175961500, -161.7718149380089600 66.2889772900699100, -161.7706727180714700 66.2883789207506300, -161.7695726907270700 66.2877678835810100, -161.7685157193249700 66.2871446570004000, -161.7676004082322300 66.2865883300874000, -161.7664779535946600 66.2858824153412300, -161.7654107254246000 66.2851627571555500, -161.7640109135727800 66.2841331512240100, -161.7627240862475400 66.2830799290954900, -161.7615526833096500 66.2820050989562300, -161.7604989206886000 66.2809107103610700, -161.7595647921813800 66.2797988479385400, -161.7587520622578300 66.2786716304914300, -161.7580622624634300 66.2775312056007200, -161.7574966896205000 66.2763797460285100, -161.7570564049291000 66.2752194443219800, -161.7567422285709700 66.2740525110146500, -161.7565547424074200 66.2728811683313100, -161.7564942845835400 66.2717076465907000, -161.7565295182226600 66.2708620815199100, -161.7566307018453800 66.2700173797982800, -161.7567977266337500 66.2691743768960500, -161.7570304235152000 66.2683339055853400, -161.7573379349976800 66.2673620361291000, -161.7578285970121200 66.2660644097447900, -161.7583998904425800 66.2649134277126000, -161.7590951779001200 66.2637735783880000, -161.7599131202942400 66.2626470318351200, -161.7608521438113500 66.2615359284404200, -161.7619104489080500 66.2604423825100000, -161.7630860076131400 66.2593684732764800, -161.7643765689235000 66.2583162413015400, -161.7657796668980800 66.2572876875767600, -161.7672926206578800 66.2562847663289700, -161.7689125424798200 66.2553093841208400, -161.7706363413940000 66.2543633944551400, -161.7724607312777000 66.2534485950766300, -161.7736645053126400 66.2528871105517400, -161.7749061857718400 66.2523392165816200, -161.7761848256691300 66.2518053268544200, -161.7774994519381300 66.2512858487629600, -161.7785833778206000 66.2508691694766300, -161.7801571428378500 66.2502833034317900, -161.7817766662601000 66.2497180885190500, -161.7839591113239000 66.2490261456401900, -161.7840516956292200 66.2489925029017300, -161.7842301085326500 66.2489303129835900, -161.7856407832955000 66.2483604099050500, -161.7873772284763000 66.2477070902101000, -161.7885172522693400 66.2473077732352000, -161.7879426691188500 66.2471933812696000, -161.7853935695575600 66.2466150614359900, -161.7850304422011000 66.2465398628244800, -161.7839093194595000 66.2463496786948000, -161.7819400380023200 66.2459847868684600, -161.7800012453611500 66.2455942697598000, -161.7782780579859700 66.2452329302555500, -161.7756719333130500 66.2446562858589800, -161.7731844624929400 66.2440468054157900, -161.7707654048995000 66.2433941116489700, -161.7684193731555200 66.2426994483209300, -161.7661508386902400 66.2419641419316500, -161.7640405390396300 66.2412178341358000, -161.7620100740056700 66.2404363556533400, -161.7600630390779500 66.2396210932389000, -161.7582028813578500 66.2387734921030100, -161.7553976296968300 66.2374395762755000, -161.7551323980417000 66.2373126549551300, -161.7533130110865600 66.2363966324986700, -161.7515945361588800 66.2354494476339800, -161.7499802368983800 66.2344729070990200, -161.7484731817918700 66.2334688742891400, -161.7470762288848200 66.2324392620623700, -161.7457920302779500 66.2313860345379300, -161.7446230177380400 66.2303111990027000, -161.7435714053960000 66.2292168032129800, -161.7426391825522000 66.2281049344952000, -161.7418281082805400 66.2269777098534900, -161.7411397123278200 66.2258372777682200, -161.7405752906171300 66.2246858110014500, -161.7401358989525600 66.2235255029996200, -161.7398223584150700 66.2223585624977300, -161.7396352472688000 66.2211872117205200, -161.7395749063568000 66.2200136809866500, -161.7396643313438000 66.2186487880112000, -161.7397215003469500 66.2182038124560100, -161.7398601533233800 66.2173732264932400, -161.7400623820732300 66.2165447692257800, -161.7403279878463400 66.2157192347549400, -161.7406567098392700 66.2148974117861800, -161.7412268404463000 66.2137464216600600, -161.7419207132702800 66.2126065651409000, -161.7427369928179200 66.2114800095948200, -161.7436741088730000 66.2103688981062000, -161.7447302654893200 66.2092753440819000, -161.7459034382930300 66.2082014258551800, -161.7471913825762000 66.2071491857863600, -161.7485916359951800 66.2061206239676500, -161.7494083436201300 66.2055746959155200, -161.7495573459947000 66.2053690065744700, -161.7504942354206000 66.2042578941865300, -161.7515501357301600 66.2031643392629100, -161.7527230243480600 66.2020904201368100, -161.7540106565665200 66.2010381791686800, -161.7554105709410800 66.2000096164507000, -161.7567297315918000 66.1991278779492500, -161.7581313969464000 66.1982671790871100, -161.7609112850277600 66.1966291611069600, -161.7628210214729400 66.1955608015897500, -161.7648577871571300 66.1945314852399000, -161.7667748108088400 66.1936496046456000, -161.7687850716737000 66.1928023263663500, -161.7708847431363500 66.1919912601885600, -161.7730698277103400 66.1912179475502900, -161.7753361687291800 66.1904838552457600, -161.7776794557422600 66.1897903781235200, -161.7800952344075300 66.1891388327909500, -161.7825789118872400 66.1885304567152800, -161.7851257694386800 66.1879664037265900, -161.7877309669105700 66.1874477458168800, -161.7903895580316500 66.1869754659450700, -161.7930964922093200 66.1865504625338900, -161.7947275458395500 66.1863204069612700, -161.7957546633470000 66.1861817162133000, -161.7961020471717000 66.1861212988589000, -161.7987050359086500 66.1855867409353800, -161.8013634309775200 66.1851144610635600, -161.8040701664050400 66.1846894567530600, -161.8068201025656700 66.1843125346957800, -161.8096080179956000 66.1839844098527100, -161.8124286219833000 66.1837057045546500, -161.8152765599652400 66.1834769485024000, -161.8181464279152800 66.1832985751691500, -161.8210327786398000 66.1831709235992800, -161.8239301352675000 66.1830942348111600, -161.8268330002427400 66.1830686562935300, -161.8297652352773600 66.1830947555186000, -161.8326917937912000 66.1831730028319000, -161.8357995252278800 66.1832838856428800, -161.8386581183774200 66.1834110398876300, -161.8415004904552500 66.1835879482253000, -161.8443484410277000 66.1838167042775500, -161.8471690576059000 66.1840954095755500, -161.8499569856263600 66.1844235344186100, -161.8527069334781700 66.1848004564759500, -161.8554136805968500 66.1852254607864600, -161.8580720873569300 66.1856977406582700, -161.8606771058637200 66.1862163994673000, -161.8632237862487000 66.1867804524559900, -161.8657072928572500 66.1873888285316500, -161.8681229042486000 66.1880403738642300, -161.8704660293837200 66.1887338509864700, -161.8724266530675500 66.1893689621079500, -161.8727342958510500 66.1894602199132600, -161.8736814186625000 66.1897073787925500, -161.8760246975817000 66.1904008559148500, -161.8782910314059500 66.1911349482193100, -161.8804761087853600 66.1919082608575900, -161.8825757730534500 66.1927193270353800, -161.8845860276230400 66.1935666053146300, -161.8865030449795200 66.1944484859089400, -161.8882087756145000 66.1953033337819100, -161.8924046174791000 66.1974959115071900, -161.8928998390563000 66.1977637952629700, -161.8931171872084000 66.1978724162790400, -161.8937459626060600 66.1981993225407500, -161.8950350004648700 66.1988296609601400, -161.8968375817889300 66.1998283095289300, -161.8969882092384300 66.1999159061941800, -161.8988096322587000 66.2003618647083300, -161.9012264829158300 66.2010134082422600, -161.9035708104445000 66.2017068844651800, -161.9058381569054000 66.2024409749710700, -161.9080242118478700 66.2032142867100200, -161.9101248150081700 66.2040253510891100, -161.9121359688998000 66.2048726275697800, -161.9140538451088400 66.2057545063654500, -161.9154540265820400 66.2064505699378900, -161.9167960641870000 66.2071650840014700, -161.9186580772084800 66.2081914406824700, -161.9197003887619000 66.2087824814264500, -161.9207029008181800 66.2093846521800000, -161.9216648822285000 66.2099975167720300, -161.9225856306223400 66.2106206291387600, -161.9239861331535000 66.2116491909574700, -161.9252743067638000 66.2127014301269700, -161.9264476891095200 66.2137753474543700, -161.9275040345835000 66.2148689005793500, -161.9284413188118000 66.2159800111686500, -161.9292577440496000 66.2171065658154100, -161.9299517409800400 66.2182464223345700, -161.9305219732104600 66.2193974115613700, -161.9308958690491000 66.2203745780244000, -161.9314068620370200 66.2210795664688600, -161.9321009686847200 66.2222194220887000, -161.9326712917467000 66.2233704113155000, -161.9331167277547600 66.2245303442999800, -161.9334364133597700 66.2256970141059500, -161.9336297226335500 66.2268682012065700, -161.9336962697670000 66.2280416752831200, -161.9336628194835200 66.2289229155601300, -161.9335578497149600 66.2298032403273300, -161.9334794225373000 66.2302434539722600, -161.9333857905217800 66.2308290727036100, -161.9332825105793700 66.2314131796745800, -161.9332485126087400 66.2315603366402600, -161.9330551646641000 66.2322888009874200, -161.9329680896056200 66.2325796003683000, -161.9328128738150400 66.2330141195060400, -161.9325312430224200 66.2337408004976300, -161.9319666189642500 66.2348922654657600, -161.9312779783959700 66.2360326966517000, -161.9304666145426000 66.2371599194947300, -161.9295340580503000 66.2382717873131800, -161.9293486313342500 66.2384646891941300, -161.9299448611663800 66.2385347113079200, -161.9327007022755500 66.2389116297679800, -161.9354132491221200 66.2393366304811500, -161.9380773530873500 66.2398089058563600, -161.9406879536860800 66.2403275592694700, -161.9432400929559000 66.2408916068622500, -161.9457289226516300 66.2414999775419900, -161.9481497123393300 66.2421515165792700, -161.9504978610874000 66.2428449874062700, -161.9527689046611800 66.2435790734155600, -161.9548714575517000 66.2443203090351200, -161.9567602083169200 66.2450147637204000, -161.9583706899553600 66.2456268872711000, -161.9599300163571300 66.2462601997484600, -161.9614364716158500 66.2469140041780000, -161.9628883973816200 66.2475875846993200, -161.9647123627853000 66.2485023849771400, -161.9664357615011700 66.2494483755421600, -161.9680553056078300 66.2504237586496200, -161.9695679077327400 66.2514266807967300, -161.9709706792534000 66.2524552354208300, -161.9722609410895300 66.2535074682950800, -161.9734362255014000 66.2545813784279300, -161.9744942832845000 66.2556749252576700, -161.9754330891657000 66.2567860295516800, -161.9762508400042400 66.2579125770038800, -161.9769459646845000 66.2590524272278000, -161.9775171250152800 66.2602034101593000, -161.9779765490784500 66.2614040554528300, -161.9782567706334400 66.2622649368773900, -161.9785029564462500 66.2631293895098000, -161.9786796561412000 66.2639965976649100, -161.9787866772633200 66.2648656539268500, -161.9788239011021200 66.2657356508796600, -161.9787634567681000 66.2669091744189100, -161.9785760137720000 66.2680805180015700, -161.9782619111582600 66.2692474522082200, -161.9778217298889000 66.2704077539147500, -161.9772562901456500 66.2715592143862900, -161.9765666531285100 66.2726996401763100, -161.9759524809222200 66.2735271378671800, -161.9757683789075300 66.2738338642415100, -161.9753753356032200 66.2746702094626700, -161.9753013744588400 66.2747925010731400, -161.9752062918368800 66.2753865104791100, -161.9748920992909000 66.2765534437864400, -161.9744517912171500 66.2777137445937100, -161.9738861895959600 66.2788652041658700, -161.9731963529293000 66.2800056290565700, -161.9723736558195200 66.2811377747885300, -161.9726009900436200 66.2816204094543800, -161.9730474638693400 66.2827803325463400, -161.9733678968109700 66.2839469933591100, -161.9735616611417300 66.2851181714664800, -161.9736283710524600 66.2862916374491500, -161.9736039508616200 66.2870481804292200, -161.9735266928026000 66.2878041487425100, -161.9733628453190300 66.2889982190926000, -161.9732246851710600 66.2897917745708000, -161.9730282903233000 66.2905833389500000, -161.9727738271503800 66.2913722197521900, -161.9725159537482300 66.2920208027179000, -161.9728262576256600 66.2927961217436600, -161.9730969661520400 66.2936427165382200, -161.9733008253727700 66.2944923411486700, -161.9734174656435000 66.2952186192439400, -161.9737155998950000 66.2957067730491800, -161.9757281549303800 66.2961057240000300, -161.9782859482379000 66.2966697661968300, -161.9806847737832500 66.2972537193837200, -161.9830207645965700 66.2978775997714800, -161.9842152225544400 66.2982113076058100, -161.9866649515262500 66.2989293074416500, -161.9890314428468000 66.2996912076831700, -161.9912259442219200 66.3004645068315900, -161.9933346655623400 66.3012755577208800, -161.9953535922944000 66.3021228207116500, -161.9972788816150700 66.3030046860175200, -161.9991068660889700 66.3039194791007300, -162.0008340626418400 66.3048654615718600, -162.0024571779563600 66.3058408356860700, -162.0039731156667200 66.3068437488399800, -162.0050113712777300 66.3075928984935100, -162.0059897931943700 66.3083549741028300, -162.0087988822625700 66.3106308964987100, -162.0095998202754700 66.3113029427766500, -162.0103542093792400 66.3119836513245100, -162.0110614686118700 66.3126724996362200, -162.0117210502862000 66.3133689589103600, -162.0126620154396400 66.3144800542111700, -162.0134816485592000 66.3156065926701800, -162.0141783758313600 66.3167464330015300, -162.0147508536689400 66.3178974069398400, -162.0151979768051500 66.3190573246358800, -162.0155188773942400 66.3202239791533500, -162.0157129268101000 66.3213951518648000, -162.0157797374449000 66.3225686115522400, -162.0157252421262000 66.3236832501818900, -162.0155559078788200 66.3247960245169600, -162.0152720107946300 66.3259050225987600, -162.0148740230177000 66.3270083387639000, -162.0147358754602500 66.3273423973338400, -162.0146372108385700 66.3275746814264800, -162.0140704940580200 66.3287261338040800, -162.0139891566742000 66.3288603333377900, -162.0139925444203500 66.3292892982625500, -162.0139321144754700 66.3304921208147700, -162.0137442074292000 66.3316634554042300, -162.0134293197073000 66.3328303797183000, -162.0129880340704700 66.3339906733309600, -162.0124211742977000 66.3351421248093000, -162.0117298015890400 66.3362825416060700, -162.0109152163641000 66.3374097518586200, -162.0099789555643200 66.3385216070865300, -162.0089227854581700 66.3396159893864600, -162.0077487043392000 66.3406908123311600, -162.0064589344322600 66.3417440272651200, -162.0050559200946000 66.3427736278007400, -162.0045769420722000 66.3430913510850400, -162.0042394921588000 66.3433728712610700, -162.0033283125515600 66.3440788129868800, -162.0032653393239200 66.3441242593271500, -162.0032096973696000 66.3443303677523200, -162.0027682111839600 66.3454906595663400, -162.0022010933057900 66.3466421092459800, -162.0018690024524800 66.3471896416886600, -162.0018124692700200 66.3473592664170700, -162.0015249973807000 66.3480746555209700, -162.0009578210465700 66.3492261052006700, -162.0002660625287400 66.3503665201988000, -161.9994510231461800 66.3514937286527100, -161.9985142389409400 66.3526055820819900, -161.9974574788795000 66.3536999625832800, -161.9962827403561500 66.3547747837293400, -161.9949922491929000 66.3558279977639200, -161.9937553971938000 66.3567351502070400, -161.9935918293993800 66.3568617369796200, -161.9929958630686000 66.3573549944375100, -161.9920628020566400 66.3580392939782700, -161.9918138930966600 66.3584495080384000, -161.9909985929107000 66.3595767155930000, -161.9900615074325900 66.3606885681229500, -161.9893175378740600 66.3614568058869200, -161.9891632978478800 66.3616383124581800, -161.9888528302938700 66.3622810876021800, -161.9881607138458400 66.3634215008016800, -161.9873406778300000 66.3645464528565900, -161.9871646373381000 66.3648920839025900, -161.9867695201971600 66.3655430581656600, -161.9865990815823000 66.3659906327615700, -161.9860315032512400 66.3671420797432500, -161.9853392537035600 66.3682824929427400, -161.9845236351576100 66.3694096986986900, -161.9835861836554300 66.3705215494300100, -161.9832241678610400 66.3708961854106900, -161.9831244222542600 66.3710604888505600, -161.9827200016267500 66.3716193464557000, -161.9824894019643000 66.3720870730600200, -161.9817970166190000 66.3732274853601900, -161.9809847633361200 66.3743505704225600, -161.9806083017317000 66.3751150688054300, -161.9799158336488000 66.3762554802062800, -161.9796899806081000 66.3765675161780000, -161.9795299390554200 66.3768920662159300, -161.9788374224091000 66.3780324776167800, -161.9780214873017600 66.3791596824734100, -161.9770836733728000 66.3802715323054100, -161.9762763276903300 66.3811191370385800, -161.9753981190279400 66.3819553347709600, -161.9744500420357800 66.3827791731204100, -161.9736688450411500 66.3834018583091800, -161.9729815885294500 66.3842165253723800, -161.9726110408668000 66.3845997804555700, -161.9724121162261700 66.3850030544474500, -161.9717193756486300 66.3861434649489900, -161.9709031788386000 66.3872706689063000, -161.9699650627374300 66.3883825178389800, -161.9689067990095500 66.3894768938436100, -161.9687612014682500 66.3896099179634100, -161.9683690044260000 66.3902554594219500, -161.9675526736169800 66.3913826624799400, -161.9669486034952400 66.3920984841577700, -161.9666378445608400 66.3925948056058200, -161.9658627431710400 66.3936484405231800, -161.9656204685098000 66.3939341920094000, -161.9653807209435000 66.3944200417515700, -161.9646877222605500 66.3955604513537900, -161.9644905755795600 66.3958326167818900, -161.9644280906838000 66.3959905943904700, -161.9639552154608000 66.3969659298338700, -161.9636313138340400 66.3975231920417200, -161.9635486391583500 66.3978450324223700, -161.9630752953885300 66.3991015903661700, -161.9625069724188200 66.4002530328512500, -161.9618138127572000 66.4013934415541500, -161.9616792292130200 66.4015791947240900, -161.9615606275209200 66.4019846360821500, -161.9611695555305500 66.4029905853473100, -161.9606011444272400 66.4041420278323900, -161.9600575528138000 66.4050362237428000, -161.9600171750525700 66.4051944594567700, -161.9595397213810200 66.4064635818289200, -161.9592614657440200 66.4070516305283700, -161.9592133088471000 66.4072713825683000, -161.9589327446504000 66.4081886820620800, -161.9585736849276000 66.4091015784751400, -161.9580051362280200 66.4102530200609000, -161.9573117013739000 66.4113934269651600, -161.9564946843821400 66.4125206273251400, -161.9563418419024600 66.4127015925045600, -161.9560027201494000 66.4133903490853800, -161.9553318411914800 66.4145017078875500, -161.9550070834101500 66.4149544760682600, -161.9548539360602600 66.4154129828229400, -161.9545652455895800 66.4161295689245300, -161.9539965386093500 66.4172810096109700, -161.9533029095016400 66.4184214156159100, -161.9531734134222600 66.4186000254708800, -161.9529938080178000 66.4191321489295800, -161.9527140082448700 66.4198245648518700, -161.9521452176276700 66.4209760046389300, -161.9514514868966000 66.4221164097445500, -161.9506341218672000 66.4232436092052600, -161.9500973597053500 66.4238788633189200, -161.9496921791507300 66.4244376076095500, -161.9487526744963000 66.4255494511463100, -161.9485774469915500 66.4257205291791600, -161.9482588513648700 66.4265745559710600, -161.9476899078629200 66.4277259948588000, -161.9475690209934800 66.4279072460226400, -161.9475004746671500 66.4290760391279500, -161.9473118418680000 66.4302473584289100, -161.9469957292694700 66.4314142692532000, -161.9465527205316000 66.4325745484766800, -161.9459836412320300 66.4337259864651600, -161.9454145475433000 66.4346610304822300, -161.9453714637220400 66.4348838528076200, -161.9450727152335800 66.4359123795527500, -161.9446752598553300 66.4369355427411400, -161.9440990327441300 66.4380797582742800, -161.9438987267448000 66.4391984294640000, -161.9435763530662200 66.4403195045415500, -161.9435518798153700 66.4404343056987200, -161.9433702545336000 66.4416083472475000, -161.9430539989428700 66.4427752562731400, -161.9426107905555000 66.4439355336979800, -161.9424977871431400 66.4441544250867100, -161.9424331043042900 66.4453260258754300, -161.9422443518952800 66.4464973424784400, -161.9419280351506800 66.4476642506047600, -161.9414847413277000 66.4488245280296000, -161.9409580506734600 66.4498895087938300, -161.9410657417905000 66.4505771753964000, -161.9411252004676000 66.4516795238909600, -161.9410643343515200 66.4528530195512400, -161.9408755261845600 66.4540243352549300, -161.9405591159104500 66.4551912424819300, -161.9401156889878200 66.4563515181081400, -161.9394868758186300 66.4576092325800700, -161.9391274689575000 66.4582483834561800, -161.9390880597661000 66.4583136121835300, -161.9391017987090000 66.4634161064681700, -161.9393812189680700 66.4741550594085300, -161.9395810114545000 66.4745643975289800, -161.9400121950067700 66.4756682550859600, -161.9403283372829200 66.4767783125691400, -161.9404813506338000 66.4776285712016500, -161.9408787187778000 66.4782744499060000, -161.9414549216073200 66.4794253977639800, -161.9419049603456200 66.4805852902789500, -161.9422279590530400 66.4817519196154800, -161.9424232873048500 66.4829230662465400, -161.9424905547952300 66.4840965016522900, -161.9424905071311700 66.4841686920315700, -161.9424798573595000 66.4868172566111800, -161.9428467933448000 66.4874134504704000, -161.9434232084143200 66.4885643965297400, -161.9438734126278500 66.4897242872461300, -161.9441965318444500 66.4908909156832800, -161.9443827697489800 66.4920677019629200, -161.9445829732256000 66.4924134508201500, -161.9451595043076400 66.4935643968794900, -161.9456098002520400 66.4947242866965100, -161.9456673379772300 66.4949319851230600, -161.9460813408811400 66.4957583964329000, -161.9461333468764200 66.4958789442579200, -161.9469793193400700 66.4970236409283200, -161.9476811358756800 66.4981634515820600, -161.9482578009567200 66.4993143967420800, -161.9487082012224700 66.5004742856598300, -161.9490314616326100 66.5016409113990200, -161.9491813453428000 66.5025388547844000, -161.9492259553135500 66.5025911332742200, -161.9500517928559300 66.5037176411562400, -161.9507510625115000 66.5048510567309600, -161.9509814940007300 66.5050356965402300, -161.9521686548595200 66.5061095671029000, -161.9523874734031500 66.5063334524269300, -161.9525055211128700 66.5064387846222800, -161.9535539318684400 66.5072645250378400, -161.9539330482715200 66.5075033831746500, -161.9548563588338700 66.5081209952877500, -161.9562735896544200 66.5091495094423500, -161.9575771551615400 66.5102017009477900, -161.9582583142697600 66.5108177293547600, -161.9596760028452000 66.5115877783533200, -161.9613125900039800 66.5125631209912700, -161.9628411128270800 66.5135660017696200, -161.9642586539137300 66.5145945150249000, -161.9655625054052700 66.5156467065303300, -161.9657168812290700 66.5157862903051300, -161.9664372651676300 66.5160968459927000, -161.9696048518823700 66.5175128312521900, -161.9709147099458700 66.5181160811922600, -161.9727584820183000 66.5190308418999000, -161.9745005983239000 66.5199767919954200, -161.9761377376664200 66.5209521328347400, -161.9776667767003500 66.5219550127137000, -161.9789457322597200 66.5228778079645000, -161.9801331269422300 66.5238198720894600, -161.9812215323478000 66.5247900445249900, -161.9820633031788800 66.5252615231008800, -161.9830876831500200 66.5258514046186600, -161.9838382312493400 66.5262961373569000, -161.9850838030750000 66.5270618795021800, -161.9862635885937200 66.5278440198856600, -161.9864890090604800 66.5280074824594300, -161.9884321049576400 66.5287480390907700, -161.9891272071548700 66.5290370946862000, -161.9905656466872300 66.5294967543717900, -161.9927803953989000 66.5302700238426000, -161.9949085744711000 66.5310810441549200, -161.9969461342566600 66.5319282747701100, -161.9988891959796000 66.5328101068010400, -161.9999004323590300 66.5333013839517700, -162.0140177757997000 66.5403246529604100, -162.0155748350106000 66.5411296595062300, -162.0170545768072500 66.5419575178252700, -162.0184548859841700 66.5428070480069200, -162.0197737588518700 66.5436770386644400, -162.0211930185429300 66.5447055474231200, -162.0224984501433300 66.5457577335326400, -162.0232262480928400 66.5464149949560800, -162.0236781493271000 66.5467424444083200, -162.0247081635508800 66.5472528897091700, -162.0264522583650000 66.5481988344087100, -162.0280912575055000 66.5491741716507500, -162.0296220331303000 66.5501770470331700, -162.0310416642413700 66.5512055539931600, -162.0314838285158300 66.5515618474013900, -162.0336989882177000 66.5526308382426400, -162.0354355269279800 66.5535048713528000, -162.0356616767449500 66.5536410170194000, -162.0375918322971800 66.5545424803512400, -162.0397993108894600 66.5553260794350800, -162.0416943721975000 66.5560475308689100, -162.0419324515214000 66.5561274410286500, -162.0421478139704200 66.5561797725785000, -162.0444474514886800 66.5569138190176100, -162.0466644691898600 66.5576877377989100, -162.0470516947798700 66.5577913450945300, -162.0494296254768200 66.5584847781500500, -162.0517294761344000 66.5592188245891500, -162.0539468733495000 66.5599920904626900, -162.0560775975031000 66.5608031062784000, -162.0581175953507200 66.5616503332963100, -162.0596745637301000 66.5623560951577200, -162.0608086115281600 66.5625785064929100, -162.0633937972859000 66.5631425217100600, -162.0659148559858000 66.5637508591149200, -162.0683669978386400 66.5644023621793500, -162.0693609303626200 66.5646990278379500, -162.0701961433373000 66.5649146942577700, -162.0727234118559500 66.5655008633742100, -162.0751757254793000 66.5661523664386400, -162.0760319717980500 66.5664102443373600, -162.0775572957326000 66.5668351128502400, -162.0784821549274900 66.5670693691561200, -162.0808609732552800 66.5677628013123100, -162.0811164256824700 66.5678443041713300, -162.0815599434366200 66.5679219003754400, -162.0842049682846400 66.5684405241109400, -162.0867907637827000 66.5690045393280900, -162.0889399905880700 66.5695192294289800, -162.0910398518077000 66.5700652824868400, -162.0953437813903700 66.5712302417823000, -162.0980997708877000 66.5720170541437700, -162.1007533051209200 66.5728578573043100, -162.1029719200180600 66.5736311213792100, -162.1037326934090600 66.5739205340054800, -162.1047557333903600 66.5742468611038000, -162.1069744723939400 66.5750201242793800, -162.1091064870746800 66.5758311382964500, -162.1111477187921500 66.5766783635157300, -162.1118395258734000 66.5769917637589400, -162.1141913231709900 66.5775045634848700, -162.1167138396719500 66.5781128981917600, -162.1191673988563500 66.5787644003568700, -162.1208998483493000 66.5792691754321600, -162.1215511121940600 66.5794421042697300, -162.1223051829378200 66.5796064391858500, -162.1245281802313000 66.5801885370713600, -162.1266919913423000 66.5808049611800900, -162.1287932671955000 66.5814547609285200, -162.1304317923932700 66.5819823176299200, -162.1313247751182600 66.5822748796820200, -162.1335442317808300 66.5830481419582200, -162.1356769353422700 66.5838591550760300, -162.1377188280614200 66.5847063784966000, -162.1396660221691700 66.5855882033329700, -162.1408020277913200 66.5861405516452000, -162.1493613730289000 66.5904156759427200, -162.1508854684895500 66.5912063185168700, -162.1523350065553000 66.5920188496901900, -162.1537079952277600 66.5928521570015200, -162.1550025477293700 66.5937050992110400, -162.1564246726604800 66.5947335998757800, -162.1577327410731200 66.5957857778913600, -162.1589242519526400 66.5968596340649100, -162.1599969246183500 66.5979531251366600, -162.1603554042784500 66.5983532631926200, -162.1618593072611800 66.6000746528230300, -162.1626900577999000 66.6010900053995000, -162.1630555467760400 66.6016053574013500, -162.1634232408898000 66.6019801273810100, -162.1643751759735600 66.6030911750177700, -162.1652043715844500 66.6042176667120300, -162.1659092341238300 66.6053574611779600, -162.1664858308563700 66.6065102832230300, -162.1669621306977500 66.6071626676230700, -162.1676670768740700 66.6083024611896800, -162.1677731258290600 66.6085131759423900, -162.1681895479093000 66.6090787325974800, -162.1688943870662700 66.6102180423288200, -162.1694736161144600 66.6113684802712100, -162.1698090263654400 66.6121193629182900, -162.1701134684617800 66.6128996363092400, -162.1706428417937000 66.6137845871890000, -162.1710994482809000 66.6143411794019500, -162.1719205724764000 66.6154759637448100, -162.1721534932890400 66.6157301346380600, -162.1731059580734800 66.6168411804761700, -162.1739356150365800 66.6179676703717400, -162.1746408705796800 66.6191074621397100, -162.1752203649278700 66.6202583875146400, -162.1756249636211500 66.6212774318081000, -162.1759309345649500 66.6223018882216100, -162.1759504120818200 66.6223987074344600, -162.1760109067779000 66.6224964619422000, -162.1765904811657300 66.6236473873171300, -162.1768485982841500 66.6242872036915500, -162.1770640587592700 66.6245796722141700, -162.1777695031600200 66.6257194621835000, -162.1783491530909200 66.6268703866590500, -162.1787452558888300 66.6278647742399800, -162.1790044674821700 66.6287222643210800, -162.1790618622151500 66.6288464966685300, -162.1796043836353600 66.6297346617253100, -162.1797668785385700 66.6300650276789400, -162.1807207858355800 66.6310361435032500, -162.1815512063231000 66.6319948837569300, -162.1822747423854300 66.6329413302782400, -162.1834972187216400 66.6340890216910700, -162.1835646399961200 66.6341473795979500, -162.1848021269166000 66.6351468123755200, -162.1859955353656300 66.6362206613545100, -162.1870688852208400 66.6373155769523500, -162.1875285997650500 66.6376496445155300, -162.1888389389658300 66.6387018162358800, -162.1900325191854000 66.6397756643155000, -162.1911070552463600 66.6408691490920000, -162.1919182176516000 66.6418038549640000, -162.1926423607563000 66.6427497546974900, -162.1926911516753000 66.6428453697180900, -162.1930968817157000 66.6431226504900000, -162.1944075113975100 66.6441748204117000, -162.1956013560177300 66.6452486684913200, -162.1966761303990800 66.6463421523685000, -162.1968331313439000 66.6465397019457600, -162.1971936389752200 66.6467632167491000, -162.1988458320694500 66.6477293053632100, -162.2003827095943500 66.6487321654571500, -162.2018080001390700 66.6497606571287000, -162.2031189823551400 66.6508128270504000, -162.2037259725755400 66.6513667159012500, -162.2051474104246200 66.6523996601162600, -162.2064585320355800 66.6534518291386500, -162.2076528254175400 66.6545256754196200, -162.2081591509240500 66.6550406200286700, -162.2093499153662600 66.6558996632389300, -162.2106612222375800 66.6569518322613100, -162.2118514704689600 66.6580315196390000, -162.2127737342204300 66.6587056667331700, -162.2140763635333000 66.6597495988649500, -162.2146901445345000 66.6601020377788700, -162.2158435412464100 66.6608131011437300, -162.2169400918117500 66.6615381804427300, -162.2175917657473600 66.6620081850297800, -162.2179952420867200 66.6622156145590500, -162.2193397186530600 66.6629309038381700, -162.2206237248050200 66.6636634672952400, -162.2215477916972000 66.6642298252463100, -162.2222966409771600 66.6645395346718600, -162.2242501222453000 66.6654213478170200, -162.2254243499537600 66.6660004599533000, -162.2258481527700000 66.6661923285132000, -162.2261121271729000 66.6663197174810300, -162.2278085651131500 66.6670603505547800, -162.2294346697741500 66.6678577623259200, -162.2309806952029000 66.6686843579967700, -162.2310626666087500 66.6687263113702200, -162.2332095560761300 66.6697940521538600, -162.2338367873378500 66.6701143205195300, -162.2360673892985400 66.6708813379035000, -162.2382076705475200 66.6716923384307200, -162.2402568180976300 66.6725395501602000, -162.2422109324885200 66.6734213624060300, -162.2441198685370700 66.6743637655753800, -162.2507024274750300 66.6777658100441500, -162.2526373979975000 66.6784373545003700, -162.2547768149980000 66.6792531439174900, -162.2559678564314000 66.6796361085196700, -162.2581960554036000 66.6804093582054000, -162.2603371622302300 66.6812203587326200, -162.2623871002844300 66.6820675686634000, -162.2630701911364000 66.6823756997787900, -162.2646913962908900 66.6828460874770000, -162.2670028185252000 66.6835801177283000, -162.2692313736289700 66.6843533674140200, -162.2697225320691800 66.6845402915013200, -162.2720338104119800 66.6852751221492200, -162.2730891540412000 66.6856264342126200, -162.2755579801166700 66.6862646785721200, -162.2761479758483700 66.6864358348459500, -162.2765860392143200 66.6865467662203200, -162.2776956281507000 66.6867972426986700, -162.2793915606719700 66.6870250553620800, -162.2814697994916200 66.6873448578789400, -162.2827636082539000 66.6874236618725700, -162.2856695039444300 66.6876523972404100, -162.2885475116583000 66.6879310773574000, -162.2913921680141000 66.6882591725228600, -162.2941980743816000 66.6886360613052600, -162.2969599049756000 66.6890610278442200, -162.2985580650026800 66.6893392609981700, -162.2990045280365000 66.6893744020071000, -162.3018827353999000 66.6896530821241000, -162.3047275905058800 66.6899811772895500, -162.3075336929255500 66.6903580660719500, -162.3091806501668400 66.6906114122869000, -162.3095563203678800 66.6906486613067400, -162.3124872253051800 66.6908126733662200, -162.3153935193953700 66.6910414087340700, -162.3182719219116400 66.6913200879517400, -162.3211169685732200 66.6916481831172000, -162.3239232598505500 66.6920250718996000, -162.3255241879908500 66.6922818544241000, -162.3266868261361000 66.6924382699102700, -162.3283677714554500 66.6926201865724100, -162.3311741733493800 66.6929970744554900, -162.3339364913759400 66.6934220409944500, -162.3366494797896300 66.6938942776988000, -162.3384897139291400 66.6942532645765600, -162.3396734861424300 66.6943464190520700, -162.3425522726692200 66.6946250982697400, -162.3453977006433300 66.6949531934352000, -162.3482043669379500 66.6953300813182800, -162.3494378707611000 66.6955171582902700, -162.3505529851321400 66.6956251021168200, -162.3533985273201400 66.6959531972822800, -162.3562053078286700 66.6963300851653600, -162.3589663641063800 66.6967546263250000, -162.3603756808929300 66.6966661384316200, -162.3627259052762800 66.6965519164378400, -162.3650847370709300 66.6964701671645300, -162.3674493191307400 66.6964209886377800, -162.3714729399242200 66.6963650490078500, -162.3738609996853500 66.6963484385297000, -162.3768240544865000 66.6963740152486400, -162.3797814876255400 66.6964506959429300, -162.3827276864335500 66.6965783358215800, -162.3856570625234000 66.6967566929670900, -162.3885640562861300 66.6969854283349300, -162.3914431512803800 66.6972641075526000, -162.3942888823260400 66.6975922027180600, -162.3970958489942000 66.6979690906011300, -162.3998381472127000 66.6984096306999300, -162.4007809712648000 66.6985545555483600, -162.4026246327206000 66.6988020930422200, -162.4053876000576800 66.6992270586818600, -162.4081012260906800 66.6996992953862100, -162.4101440262258000 66.7000977031465300, -162.4109086810907500 66.7001457044607400, -162.4138160732531400 66.7003744389292600, -162.4166955630497600 66.7006531181469300, -162.4195416844012000 66.7009812133123900, -162.4223490368785300 66.7013581011954700, -162.4251122893006700 66.7017830659357900, -162.4266180062160000 66.7020435392779500, -162.4269077102226200 66.7020756037061900, -162.4283592007165000 66.7021814593069800, -162.4329121651642500 66.7021814593069800, -162.4358807543932800 66.7022070351266000, -162.4388388854062000 66.7022837158209000, -162.4417857811888300 66.7024113556995500, -162.4447158488573000 66.7025897128450500, -162.4476235288027800 66.7028184473135800, -162.4494660247372300 66.7029967478017000, -162.4639537818415200 66.7029771848492600, -162.4650154378121800 66.7028744471980400, -162.4679231240529000 66.7026457127295200, -162.4705677253202500 66.7024824632951000, -162.4732264846145400 66.7023605332120700, -162.4758952911347500 66.7022801113381000, -162.4785700160933300 66.7022413217796400, -162.4827324778215700 66.7022133519647000, -162.4838889996775600 66.7022094587995300, -162.4868527577485500 66.7022350346192000, -162.4898108923587800 66.7023117162127600, -162.4927577908393300 66.7024393560914700, -162.4956878621051100 66.7026177123376000, -162.4985955456478700 66.7028464468061200, -162.5014753232275700 66.7031251260237900, -162.5043217296640700 66.7034532211892500, -162.5067094773604600 66.7037737440630800, -162.5071301163617600 66.7038223146481600, -162.5086149159456000 66.7039581293642500, -162.5114614195088600 66.7042862245297100, -162.5142691470035000 66.7046631115134700, -162.5170327699463500 66.7050880771531000, -162.5191345476212300 66.7054769691868600, -162.5197448599373000 66.7055747857478400, -162.5210204996962800 66.7057951178504700, -162.5228929007867000 66.7060892726019000, -162.5247388717015400 66.7064183237466800, -162.5265593153601000 66.7067689757077500, -162.5278084098302100 66.7070187336277000, -162.5294763185772200 66.7073637648259100, -162.5311195013638600 66.7077269290546200, -162.5336553197372000 66.7083352511709800, -162.5361218192665300 66.7089867380476000, -162.5385143108867000 66.7096801531166100, -162.5408282467261600 66.7104141806699400, -162.5430592255028200 66.7111874267583900, -162.5452030033159200 66.7119984227890100, -162.5472554990420200 66.7128456282231900, -162.5492128069254800 66.7137274350731100, -162.5505791603999000 66.7143919288445200, -162.5601941415463600 66.7192216803363200, -162.5616624322754000 66.7199867192117600, -162.5630608411848400 66.7207719982291700, -162.5643875804224800 66.7215765173424400, -162.5656409565648600 66.7223992531231100, -162.5670705098961000 66.7234277331034500, -162.5683854140556000 66.7244798913340000, -162.5695831536396000 66.7255537259237600, -162.5706614371755400 66.7266471972104100, -162.5716181971220600 66.7277582241627600, -162.5724515988621600 66.7288846969712500, -162.5731600407033000 66.7300244707527700, -162.5737421565752400 66.7311753781412400, -162.5740910440664000 66.7320332621254100, -162.5743697097942400 66.7328951543879000, -162.5745778551838300 66.7337601547074500, -162.5747152572033400 66.7346273619632500, -162.5750285926953600 66.7372942295451100, -162.5751018631604300 66.7385133244304100, -162.5750677932440500 66.7393943533667800, -162.5749607496388500 66.7402744676925900, -162.5747808420621800 66.7411527240190600, -162.5745282530763800 66.7420281798566700, -162.5742802713174300 66.7427782854895200, -162.5738328334185000 66.7439351517858800, -162.5732566206964700 66.7450865466069000, -162.5725538256984600 66.7462269094443700, -162.5718143941189700 66.7472334315776800, -162.5719535516150800 66.7475083768101700, -162.5724085204368500 66.7486682270570700, -162.5727350705670300 66.7498348141254500, -162.5729325625876500 66.7510059202870700, -162.5730006025957000 66.7521793143239400, -162.5730053986801800 66.7539144572864400, -162.5731658440284400 66.7542313765768000, -162.5736000645913000 66.7553296493438800, -162.5739191026844000 66.7564340716751300, -162.5741223998288700 66.7575427567928700, -162.5742095926985000 66.7586538134228200, -162.5742540416906400 66.7603530680397000, -162.5747783023767300 66.7608972163335500, -162.5757363978164800 66.7620082378899200, -162.5765709632793000 66.7631347044031100, -162.5772085133621700 66.7641716757822800, -162.5772826975384400 66.7642724870856900, -162.5781610455957500 66.7652862397682200, -162.5789957225745200 66.7664127053821000, -162.5795688785009000 66.7673334106084400, -162.5798788478305400 66.7676472200432200, -162.5805065665248000 66.7683566493399800, -162.5809657774486500 66.7689262232666500, -162.5812246338097700 66.7690943092550200, -162.5821169528350700 66.7697224695164100, -162.5829664074737000 66.7703598316409700, -162.5837723861866400 66.7710059396724200, -162.5845343098105200 66.7716603313592700, -162.5853137216509000 66.7723540243188200, -162.5862099940959200 66.7731893982721700, -162.5865445050248500 66.7735329788639500, -162.5866804852162000 66.7736213147719000, -162.5881130189006900 66.7746497866583600, -162.5894306659924000 66.7757019367950300, -162.5906309038930700 66.7767757632909100, -162.5913151072064000 66.7774681522335000, -162.5921910774562200 66.7780383197127200, -162.5936238692461300 66.7790667906999100, -162.5949417519602500 66.7801189399372100, -162.5961422074968500 66.7811927655337700, -162.5972229353901400 66.7822862278272300, -162.5981818671993700 66.7833972466856400, -162.5990171611130700 66.7845237096015600, -162.5997272127406500 66.7856634743898800, -162.5999387126014700 66.7860806806789400, -162.6009339995044300 66.7869707702848800, -162.6016074190471300 66.7876673446722900, -162.6020194416438800 66.7880592449382700, -162.6028005532029400 66.7887487713387600, -162.6038816147447000 66.7898422318335700, -162.6047540092900800 66.7908526768096600, -162.6050833437213000 66.7910663350434100, -162.6065168963376700 66.7920948042319100, -162.6078354787243300 66.7931469507712400, -162.6090365709809500 66.7942207754684900, -162.6101178744403300 66.7953142350639300, -162.6106423230847000 66.7959422658229900, -162.6111375149843000 66.7963488331321900, -162.6118312169370800 66.7967575066536500, -162.6133774222302300 66.7977603433652100, -162.6148113651523500 66.7987888116543900, -162.6161303081671600 66.7998409572944000, -162.6169816891536000 66.8006019168450400, -162.6179004500457000 66.8012608141353300, -162.6192195261601800 66.8023129588760300, -162.6204210680778000 66.8033867817746300, -162.6215027753328000 66.8044802395714300, -162.6218816129460500 66.8049354817870800, -162.6224369101352600 66.8052253161954500, -162.6241993214415000 66.8061712231235000, -162.6258555363039300 66.8071465207953600, -162.6274023963035200 66.8081493557082800, -162.6288369471673400 66.8091778221988200, -162.6293812879161000 66.8096118682931300, -162.6304908876443300 66.8102015222824500, -162.6317416665446600 66.8108950830417100, -162.6335290412322400 66.8119368370154800, -162.6351910890974500 66.8130103613391400, -162.6366259241470400 66.8140388269303600, -162.6367672256269300 66.8141514751105200, -162.6477559562723300 66.8195917241787900, -162.6494018981790400 66.8201596676345800, -162.6515551926180200 66.8209706492760900, -162.6536168020737400 66.8218178394217800, -162.6555828010054400 66.8226996300838900, -162.6571743060493700 66.8234742890072700, -162.6586919866458300 66.8242716270340200, -162.6606007680110000 66.8253139682651000, -162.6654772860479000 66.8274923618830600, -162.6665380462937700 66.8279776405557300, -162.6684050928207600 66.8288923553979500, -162.6701692047449800 66.8298382587287300, -162.6718270195013000 66.8308135528032500, -162.6733753732748400 66.8318163841189000, -162.6748113099939400 66.8328448470121500, -162.6761320876257200 66.8338969872562000, -162.6768602246196500 66.8345594134862000, -162.6779827835785900 66.8353656287208700, -162.6790419951919000 66.8361795106759500, -162.6800304076771500 66.8370070938024100, -162.6809468726000600 66.8378474212215700, -162.6817264822913000 66.8385971104683600, -162.6826546941587700 66.8395623501224300, -162.6837817830028400 66.8405948878438500, -162.6848218912172700 66.8416472601130000, -162.6855339959970800 66.8424649345091700, -162.6859664745731200 66.8428598097324900, -162.6863873527940700 66.8433035792967900, -162.6870600205035000 66.8439419486620600, -162.6875814051577000 66.8443868109026800, -162.6886649254459200 66.8454802624042400, -162.6896263357867300 66.8465912713701300, -162.6904637907713000 66.8477177243935300, -162.6911756806131300 66.8488574792892800, -162.6917606338461400 66.8500083677919900, -162.6921427773672500 66.8509532908617500, -162.6923716026673000 66.8516861088269300, -162.6926660182221300 66.8521321150051300, -162.6931405257146500 66.8529565118336100, -162.6935490067812000 66.8537863675468900, -162.6939820222525000 66.8548759528629800, -162.6943012069351400 66.8559716050056000, -162.6945060113433200 66.8570714830625500, -162.6945960730503000 66.8581737398262700, -162.6950564863677200 66.8737295488796200, -162.6950610837020300 66.8740132283279000, -162.6949992355262700 66.8751866601363100, -162.6948072419606300 66.8763579146860800, -162.6944854492440700 66.8775247616584900, -162.6940344518284600 66.8786849779294200, -162.6934550905799300 66.8798363556633100, -162.6933477744801700 66.8800095372104100, -162.6932755598192000 66.8806591148263600, -162.6930708912086300 66.8816531867452100, -162.6927725923812000 66.8826435930274700, -162.6923810617365700 66.8836289720994200, -162.6918015835762000 66.8847803489339900, -162.6910948018835700 66.8859206937850700, -162.6902620449574000 66.8870478329911300, -162.6894204584873500 66.8880253717735500, -162.6891450617951300 66.8887129655310000, -162.6885654640249200 66.8898643414662500, -162.6878585366421200 66.8910046854179500, -162.6870256070461000 66.8921318237247500, -162.6860682454531300 66.8932436106042000, -162.6849882595005600 66.8943379254549800, -162.6845721836593300 66.8947103994654000, -162.6842867963985000 66.8951706796831900, -162.6834537256089300 66.8962978179899900, -162.6824926237355600 66.8974069581646500, -162.6820133975002700 66.8980478141553500, -162.6810558047815500 66.8991596001354800, -162.6799755589248700 66.9002539149862500, -162.6787747004920000 66.9013286731797600, -162.6782885045108500 66.9017168178768900, -162.6770497171707000 66.9029773049587100, -162.6760513950558200 66.9039374652418800, -162.6755947139248800 66.9043324214042000, -162.6748221360327300 66.9051149053286700, -162.6736210401788300 66.9061896635221800, -162.6723015818524800 66.9072428155036000, -162.6712284127610200 66.9080125893095800, -162.6706270352095000 66.9085506581863600, -162.6693074500787200 66.9096038110670900, -162.6678719917989600 66.9106333504488500, -162.6669271667553000 66.9112575563911500, -162.6659397228399000 66.9118715181560900, -162.6649103777117200 66.9124747878812000, -162.6638398787074200 66.9130669257980300, -162.6574265101253000 66.9165141549044000, -162.6570332680708500 66.9167185267386900, -162.6553702372466100 66.9176977760316200, -162.6536039885332000 66.9186448970444300, -162.6517340138136700 66.9195608601456200, -162.6497638663093400 66.9204439170532000, -162.6476972952939000 66.9212923842362100, -162.6455382344019500 66.9221046420156500, -162.6432907926359500 66.9228791417590400, -162.6409592516681000 66.9236144040815500, -162.6385311414989600 66.9243017154518600, -162.6380899350024800 66.9244292842840900, -162.6361836699403800 66.9250303992336000, -162.6353049441678000 66.9252835296112500, -162.6351949480883500 66.9253194611242700, -162.6334073027048200 66.9259341324543000, -162.6310754694573300 66.9266693947768100, -162.6298720821308500 66.9270160249696500, -162.6293789541753700 66.9271716184754800, -162.6270506058007800 66.9279193903676000, -162.6246389829027200 66.9286140123268800, -162.6221522846002200 66.9292666692214800, -162.6195952521191500 66.9298761136917600, -162.6169727615836400 66.9304411829143100, -162.6142898150229100 66.9309607995013500, -162.6115515304787200 66.9314339697019700, -162.6087631339114800 66.9318597905968900, -162.6059299466097000 66.9322374500982800, -162.6030573770962300 66.9325662251512200, -162.6001509085375600 66.9328454898275700, -162.5972160915493700 66.9330747099300000, -162.5942585280086200 66.9332534474886500, -162.5912838683558200 66.9333813616605700, -162.5882977909103000 66.9334582078300900, -162.5853060000718200 66.9334838394077000, -162.5826205533958000 66.9334631900742400, -162.5772256319573300 66.9333800990124200, -162.5749096942270000 66.9333289779500500, -162.5725995022651800 66.9332471369458500, -162.5717268631042300 66.9332045000876400, -162.5717315512700300 66.9348741849956900, -162.5716695583034600 66.9360476087102300, -162.5714770961910200 66.9372188542667500, -162.5711545111717300 66.9383856922459600, -162.5707023994961000 66.9395459004230100, -162.5701216038289400 66.9406972700630300, -162.5694132123498400 66.9418376068201700, -162.5691608059264300 66.9421784606674900, -162.5690990872530500 66.9423238963308300, -162.5685182259353500 66.9434752659707900, -162.5678097544166000 66.9446156018286200, -162.5669750036934400 66.9457427338401800, -162.5660155475794400 66.9468545135250100, -162.5650394486116300 66.9478474010367700, -162.5639638567465700 66.9488243723469600, -162.5627904438239000 66.9497838986080800, -162.5615139209306800 66.9507201414214700, -162.5614563058638000 66.9507818987656800, -162.5602992453139000 66.9525401695931900, -162.5594200267128400 66.9537475337217500, -162.5583979103352600 66.9549374995660300, -162.5573152021348400 66.9560318081215100, -162.5561116070650000 66.9571065600197800, -162.5547894022091000 66.9581597066052200, -162.5533510930784500 66.9591892414903800, -162.5517994073167600 66.9601932005558000, -162.5501372911030800 66.9611696700442800, -162.5483678992591200 66.9621167874598200, -162.5464945961486800 66.9630327460644100, -162.5443394805825200 66.9639931932313200, -162.5425067198092400 66.9647717731988300, -162.5410037880943200 66.9653901973997600, -162.5394514314383800 66.9659896117312300, -162.5378512146618000 66.9665694118489200, -162.5373443657498500 66.9667257625839000, -162.5390970616800200 66.9674431050153200, -162.5407837437747400 66.9681998890137000, -162.5426615354015200 66.9691145840708400, -162.5444358024702800 66.9700604667172000, -162.5461031617315000 66.9710357383087300, -162.5476604331824100 66.9720385480406400, -162.5491046418657000 66.9730669893501200, -162.5504330304599700 66.9741191071111600, -162.5516430583804200 66.9751929021308000, -162.5527324089734700 66.9762863329479500, -162.5529360487596200 66.9765203958996300, -162.5537874828060600 66.9772759046593400, -162.5540526524079600 66.9775420446297300, -162.5560902715487500 66.9777370230452200, -162.5589687208297700 66.9780651011235500, -162.5618079614682200 66.9784419701208500, -162.5646026038270700 66.9788669150761400, -162.5660502740009300 66.9791159769208700, -162.5680791634226200 66.9785859767614500, -162.5706430847105500 66.9779776834234300, -162.5732722185380200 66.9774137077764600, -162.5759615700703800 66.9768951209131300, -162.5787060329570300 66.9764229075911400, -162.5815003956267300 66.9759979626359200, -162.5843393511801000 66.9756210936386100, -162.5872175117787000 66.9752930146609600, -162.5901294140412000 66.9750143489330900, -162.5930695316335500 66.9747856252564600, -162.5957409308992000 66.9746225278074700, -162.5984266212915000 66.9745006633749500, -162.6011224578351500 66.9744202217158900, -162.6038242793669600 66.9743813260374200, -162.6121480858654400 66.9743253882061800, -162.6133330002177500 66.9743213916189600, -162.6163298083739300 66.9743469665393100, -162.6192059877661000 66.9744206974572800, -162.6193208230974700 66.9744203053528500, -162.6194168212293000 66.9744207846915200, -162.6222616160807000 66.9743445113901400, -162.6251110001725000 66.9743213916189600, -162.6281078083286500 66.9743469665393100, -162.6310989318701800 66.9744236436363300, -162.6340786933769800 66.9745512772197500, -162.6370414415093000 66.9747296253719900, -162.6399815519070600 66.9749583490486200, -162.6428934478743000 66.9752370147764400, -162.6457716012783400 66.9755650928548200, -162.6486105505364600 66.9759419627514500, -162.6514049060115800 66.9763669077066800, -162.6541493626029600 66.9768391210286600, -162.6568387087394000 66.9773577078919400, -162.6594678371709200 66.9779216826395900, -162.6620317512643000 66.9785299759776600, -162.6645179405505000 66.9791789339606700, -162.6652527649031600 66.9792759726081000, -162.6680475025901600 66.9797009175633800, -162.6707923350981600 66.9801731308853600, -162.6734820490573000 66.9806917177486400, -162.6761115363183300 66.9812556924962900, -162.6786758029459200 66.9818639849349900, -162.6811699746146200 66.9825154421340000, -162.6835893109979000 66.9832088248274400, -162.6859292138621000 66.9839428191058900, -162.6881852315631500 66.9847160292214300, -162.6903530734355700 66.9855269883798900, -162.6911463780029000 66.9858570638524500, -162.6919301281728600 66.9860650869342700, -162.6944267612859700 66.9867094529789100, -162.6968465149546700 66.9874028356723600, -162.6991868207151700 66.9881368281521600, -162.7014432269233500 66.9889100382677000, -162.7036114429137400 66.9897209974261600, -162.7055710530616200 66.9905207078644500, -162.7056889083164300 66.9905631621602400, -162.7059413561086700 66.9906368346222500, -162.7081979943419300 66.9914100438385300, -162.7103664324648700 66.9922210020976100, -162.7124425434885500 66.9930681688609900, -162.7129762110832600 66.9933058506845200, -162.7131994623852600 66.9932358492550900, -162.7156197961166700 66.9925424674609600, -162.7181149948111500 66.9918910120605900, -162.7206803163435000 66.9912827205212100, -162.7233108872876000 66.9907187466728800, -162.7260017083121700 66.9902001607089200, -162.7287476712680000 66.9897279482862600, -162.7315435591878800 66.9893030042303000, -162.7343840660717500 66.9889261361323000, -162.7372637986853200 66.9885980580539800, -162.7401772918485000 66.9883193932254800, -162.7431190156300400 66.9880906695488000, -162.7460833879379700 66.9879123222958700, -162.7490647844122400 66.9877846896117700, -162.7520575474178500 66.9877080125148200, -162.7527731406678700 66.9877019151113600, -162.7535456897817300 66.9868143391105400, -162.7546355125188600 66.9857209100919700, -162.7558460647440800 66.9846471168709700, -162.7571750280051200 66.9835950009086200, -162.7586198626165400 66.9825665613977300, -162.7595885709557700 66.9819315545976200, -162.7606014611884600 66.9813072056630900, -162.7616577652936000 66.9806939849395300, -162.7627566828746000 66.9800923555778200, -162.7674532924354800 66.9775939849744800, -162.7687979560608000 66.9769022660268000, -162.7701989262394300 66.9762279039946400, -162.7721773160302800 66.9753461349162600, -162.7742519152936300 66.9744989663542500, -162.7764187760056700 66.9736880053972100, -162.7786737720769000 66.9729147934829700, -162.7810126155397400 66.9721807983052600, -162.7834308574480800 66.9714874138131800, -162.7859239004676000 66.9708359566141700, -162.7884870060704500 66.9702276623767700, -162.7907714675291700 66.9697341782897400, -162.7931020453231000 66.9692749898489400, -162.7939903641639600 66.9691081548175500, -162.7970779328003300 66.9685644579834000, -162.8002300250955400 66.9680809374853500, -162.8030680588438200 66.9677040684880500, -162.8059471655292300 66.9673883506918600, -162.8065923049908600 66.9673084675118300, -162.8094297182069000 66.9669260658852700, -162.8123068517797700 66.9665979860083100, -162.8152177162246000 66.9663193202804900, -162.8181567852074400 66.9660905966038000, -162.8205530512822700 66.9659423082909500, -162.8229611686230000 66.9658272238473800, -162.8253781424872700 66.9657454871645500, -162.8278009673407500 66.9656971998659300, -162.8426455988153000 66.9655034130521500, -162.8449439997657500 66.9654883610990600, -162.8479397224402000 66.9655139369186800, -162.8509297622986800 66.9655906140157000, -162.8539084446190000 66.9657182475991100, -162.8568701189607900 66.9658965957513600, -162.8598091654605800 66.9661253194279900, -162.8627200056237400 66.9664039860551800, -162.8655971167135300 66.9667320650328300, -162.8684350380465300 66.9671089349294600, -162.8712283808850400 66.9675338807840000, -162.8739718428262500 66.9680060950053100, -162.8766602140975700 66.9685246827679600, -162.8792883892477300 66.9690886584149300, -162.8818513752407600 66.9696969526522700, -162.8843443013484000 66.9703484107506000, -162.8867578739766800 66.9710599903263500, -162.8886640095363700 66.9714416913810200, -162.8912924994492600 66.9720056670279900, -162.8938557912117600 66.9726139612653800, -162.8944467941841800 66.9727683847532400, -162.8954901633403300 66.9729750858315900, -162.8959515533215000 66.9730858148585000, -162.8972249681577300 66.9732090075896700, -162.9001028823421000 66.9735370865673200, -162.9029415950785200 66.9739139564640000, -162.9057357185285500 66.9743389014192300, -162.9084799466921500 66.9748111147412100, -162.9111690688973800 66.9753297016045000, -162.9137979778943500 66.9758936772514600, -162.9163616797477000 66.9765019705895400, -162.9188553019306200 66.9771534277885000, -162.9212741068145400 66.9778468122806300, -162.9236134934679000 66.9785808065590200, -162.9243147236455500 66.9788211935433000, -162.9252762517975600 66.9790968150660400, -162.9276157598594000 66.9798308093444300, -162.9294087175382500 66.9804460445493500, -162.9319805393703600 66.9810299833471300, -162.9344746256034600 66.9816814396467600, -162.9368938801484300 66.9823748232395800, -162.9392337020736600 66.9831088166186500, -162.9414896433323500 66.9838820276335100, -162.9430760321331500 66.9844754938490000, -162.9442088244776400 66.9848308213853400, -162.9456892713427600 66.9853381999980100, -162.9469826043636800 66.9857088312975900, -162.9493227473468800 66.9864428246766600, -162.9511927301603300 66.9871019342069800, -162.9515562954866300 66.9871973216991100, -162.9528455464847500 66.9875134253043700, -162.9536286446462200 66.9876970012156800, -162.9561234134647200 66.9883484566160500, -162.9577271268054200 66.9888069399883600, -162.9580012104874500 66.9888664796043800, -162.9607472642748000 66.9893391578759200, -162.9634379899712300 66.9898577438398800, -162.9660684673858400 66.9904217176881500, -162.9686336989860000 66.9910300101269000, -162.9694870126155000 66.9912543109377300, -162.9720519645265100 66.9918640126141400, -162.9745445084223000 66.9925266510841200, -162.9753292721281600 66.9927319860923400, -162.9778265536525000 66.9933764690488800, -162.9802469701215600 66.9940698517423200, -162.9825879170986700 66.9948038442220800, -162.9848407224213800 66.9955917816354800, -162.9851940111946400 66.9957082582295700, -162.9866189519030700 66.9961556781420900, -162.9880095007378300 66.9963669684609000, -162.9907562119296000 66.9968391808835700, -162.9934477677003000 66.9973577659482100, -162.9960790554040700 66.9979217388971600, -162.9986450775083000 66.9985300304366000, -162.9995009703934300 66.9987685684147300, -162.9997673504828000 66.9988460162307400, -163.0002703781753700 66.9989581841729200, -163.0025091963423200 66.9993391873536600, -163.0052010282048500 66.9998577724183000, -163.0066625677232800 67.0001709972937600, -163.0079397480209300 67.0002930955499800, -163.0108208637918000 67.0006211727289800, -163.0136627349472200 67.0009980408269700, -163.0164599664542500 67.0014229830842400, -163.0185015399141000 67.0017734470869800, -163.0192083944518200 67.0018876528929500, -163.0213218084546700 67.0022009865863300, -163.0240691779501700 67.0026731981096800, -163.0260791267502600 67.0030515770686700, -163.0289622003452300 67.0033711817346800, -163.0318043925586600 67.0037480489333500, -163.0325236757270200 67.0038573066694300, -163.0327195444713800 67.0038815209155100, -163.0356019076019200 67.0042041850751400, -163.0384435557254800 67.0045877549210300, -163.0393599576958600 67.0046821099914500, -163.0422415932749000 67.0050101871704600, -163.0436372484602100 67.0051952352719700, -163.0445280656177000 67.0052644488952800, -163.0474435867521000 67.0055431128244500, -163.0503253239545000 67.0058711900034600, -163.0531678084475700 67.0062480572021300, -163.0559656442990200 67.0066729994594000, -163.0583333164293800 67.0070662729901900, -163.0587156757877700 67.0071305394428700, -163.0611335147998500 67.0074780024079400, -163.0638814805458600 67.0079502139312800, -163.0645338226777600 67.0080758438251700, -163.0668824255834600 67.0083431978803200, -163.0691973605697200 67.0086517894486000, -163.0697259631826300 67.0087120674080600, -163.0721130669644500 67.0089321234188400, -163.0749852857423100 67.0092589712246000, -163.0779196485729000 67.0094864628300700, -163.0808356760256000 67.0097651267592500, -163.0819879270012000 67.0098962838864600, -163.0833647207052800 67.0099797436702700, -163.0863090911915700 67.0102084655483200, -163.0892252040798700 67.0104871294775000, -163.0921075276402500 67.0108152057571800, -163.0949505894980700 67.0111920729558500, -163.0977473326732400 67.0116316085120000, -163.0987449668067500 67.0117739684939100, -163.1013449374189000 67.0121045251037800, -163.1015905458669700 67.0121160031511000, -163.1130039309866000 67.0121278427258200, -163.1159209027274500 67.0121575815072100, -163.1188320432641500 67.0122355869028800, -163.1217321338308800 67.0123617186184800, -163.1246159763462000 67.0125357518235200, -163.1275606553000000 67.0127644737015700, -163.1304770757564000 67.0130431376307500, -163.1332021420652000 67.0133532814288600, -163.1333599532992000 67.0133671939409000, -163.1334484510851200 67.0133758040501600, -163.1363941651585800 67.0135974761426500, -163.1393106854397700 67.0138761400718900, -163.1421934100977800 67.0142042163515700, -163.1450368676573000 67.0145810835502400, -163.1478356621860300 67.0150060249081900, -163.1505844777914000 67.0154782355322100, -163.1517360057120500 67.0156999310070800, -163.1528365942334000 67.0158670277412000, -163.1555855069655400 67.0163392383652200, -163.1573096422261800 67.0166721134273800, -163.1582807400640700 67.0168489767988800, -163.1600584704220600 67.0171452404605400, -163.1618913687916000 67.0175042696064300, -163.1647340664240000 67.0178870930149600, -163.1675332413659600 67.0183120352722900, -163.1702824301899900 67.0187842449969400, -163.1729764150295000 67.0193028282630000, -163.1756100778427800 67.0198667994133100, -163.1764104906516000 67.0200563702054000, -163.1783137294950000 67.0201747767446200, -163.1812593338511600 67.0204034986226100, -163.1825347766586000 67.0205253288808600, -163.1839992893357000 67.0205628000332500, -163.1869847030815500 67.0206904327173400, -163.1899530701780000 67.0208687790709500, -163.1928987581711000 67.0210975009489400, -163.1958161777743600 67.0213761639788600, -163.1986997918618800 67.0217042402585400, -163.2015441262604000 67.0220811065578900, -163.2025643297799600 67.0222351028677400, -163.2054785244143300 67.0225652430915500, -163.2083229595369300 67.0229421093909000, -163.2091239802874400 67.0230674703875000, -163.2120072337468200 67.0233992455787900, -163.2148517668955000 67.0237761118781300, -163.2155608436579800 67.0238837301500900, -163.2160659325966800 67.0239461206170400, -163.2189519667598200 67.0242602484117900, -163.2217966006326000 67.0246371147111400, -163.2245965525888000 67.0250620551697700, -163.2273465049372300 67.0255342648944700, -163.2282378715805000 67.0257104753582100, -163.2301753853857000 67.0259262541933400, -163.2330202144113400 67.0263031195933600, -163.2341612742234000 67.0264762831540100, -163.2352648583864700 67.0265234525953100, -163.2382339377460000 67.0267017989489200, -163.2411803326062300 67.0269305199275900, -163.2437712335555500 67.0271779351136800, -163.2440985957735500 67.0271952533582900, -163.2445575629811300 67.0271860703808800, -163.2474625737387700 67.0272641899904300, -163.2503565597074300 67.0273901751165200, -163.2532343614766000 67.0275638018280200, -163.2561808606581600 67.0277925228067500, -163.2590990833559800 67.0280711858366100, -163.2616258455563000 67.0283792539994500, -163.2619825085858700 67.0284119182754800, -163.2645703716253300 67.0286255252478300, -163.2674886941479000 67.0289041882777500, -163.2700699903377600 67.0292138959046000, -163.2703723828791500 67.0292428109070800, -163.2730148824308600 67.0294585285883000, -163.2759333047781600 67.0297371916181500, -163.2775131941785400 67.0299218638030500, -163.2802076043974000 67.0300908095432500, -163.2831544102478200 67.0303195314213000, -163.2860729360171500 67.0305981935518400, -163.2889576436802800 67.0309262698315300, -163.2911284650066400 67.0312252602376500, -163.2918031552913500 67.0313021198969600, -163.2940456085180000 67.0315151971686900, -163.2953549143977600 67.0316640979198200, -163.2964304100353600 67.0317298149790300, -163.2993774146359600 67.0319585368570200, -163.3022961373568200 67.0322371989876200, -163.3051810401728400 67.0325652743679800, -163.3080266462127400 67.0329421397680100, -163.3091043308002000 67.0331160389740700, -163.3119877973989000 67.0334542775929100, -163.3139920076250200 67.0337197017029200, -163.3148349790510300 67.0338157313110000, -163.3156313395146800 67.0338762044233400, -163.3185164365842500 67.0342042798037000, -163.3213622341797300 67.0345811452037300, -163.3241619100441000 67.0350185889368000, -163.3244618429396800 67.0350613615926200, -163.3273070694656600 67.0354421480367400, -163.3276043754415500 67.0354869792407700, -163.3282881632681000 67.0354949625225300, -163.3311266152011000 67.0355739814541500, -163.3339543130411000 67.0356986742544900, -163.3367664472137300 67.0358688295828500, -163.3397139536360200 67.0360975505615800, -163.3426331736820000 67.0363762126921200, -163.3455185675278500 67.0367042880724900, -163.3478239885861900 67.0369979571900100, -163.3507448256132000 67.0372652159170500, -163.3536153095988400 67.0375920637228000, -163.3565480104822700 67.0378195562275900, -163.3594674373723000 67.0380982183581300, -163.3623530353642600 67.0384262937385000, -163.3651993275868800 67.0388031591385200, -163.3668071310442300 67.0390470282977700, -163.3684367223768000 67.0392322967331900, -163.3712831090282400 67.0396091621331600, -163.3722408888059500 67.0397544314219500, -163.3729407007527000 67.0398212249696100, -163.3758265037900800 67.0401492994506600, -163.3786729983601400 67.0405261648506900, -163.3814747804367500 67.0409511044100000, -163.3842265323285700 67.0414233132353800, -163.3869217267562700 67.0419517179974500, -163.3880355335130300 67.0421091686033000, -163.3908374990513200 67.0425341081626100, -163.3935894299082500 67.0430063169880000, -163.3962861001234000 67.0435248975560400, -163.3989363185562200 67.0441169905067800, -163.3997139092694800 67.0442761435292600, -163.4017023606754000 67.0446173220318500, -163.4039983091746000 67.0450621231185600, -163.4044003439007300 67.0451273329600800, -163.4068447668724700 67.0454421793131700, -163.4096471164212700 67.0458671188724800, -163.4123994249934500 67.0463393267985500, -163.4150964657292800 67.0468579073665900, -163.4177331169897200 67.0474218758190000, -163.4203043695510000 67.0480301619624600, -163.4228053373963700 67.0486816110675400, -163.4244339403740300 67.0491769828315700, -163.4246310663705800 67.0492195846162000, -163.4250092402842000 67.0493092515208100, -163.4252343819611300 67.0493566323028200, -163.4254305591729500 67.0493706347470500, -163.4267891488001400 67.0496323329658700, -163.4276139791018400 67.0497975528148800, -163.4305020097599200 67.0501213303351700, -163.4333485223164400 67.0505102457513000, -163.4341421083716000 67.0506081819220900, -163.4367181893929000 67.0508938704558100, -163.4370308962588200 67.0509237531287600, -163.4396671778979200 67.0511256005660800, -163.4425882046818700 67.0514042617973000, -163.4454753836819800 67.0517323362783500, -163.4465022799562300 67.0518682283361000, -163.4476676898120000 67.0519586030071700, -163.4505888164207200 67.0522372642383900, -163.4534760952455800 67.0525653387194900, -163.4563087006859500 67.0529398883651900, -163.4573954090708400 67.0530432672330800, -163.4602827832238500 67.0533713417141300, -163.4631308273257800 67.0537482062147800, -163.4638444690470000 67.0538563829657600, -163.4649230817348000 67.0539592708037700, -163.4678097283362800 67.0542981245588400, -163.4686675259855000 67.0543880648573300, -163.4715905924318800 67.0546542722768800, -163.4744778370824700 67.0549876896302500, -163.4751918879952000 67.0550358923926000, -163.4781417209636300 67.0552646133712600, -163.4810956818202200 67.0555475778584800, -163.4838100821695300 67.0555884268644600, -163.4864858944084700 67.0556691041459200, -163.4891516567235500 67.0557903210665200, -163.4918033392526700 67.0559518959632900, -163.4947532837370300 67.0561806160426400, -163.4976749184626800 67.0564592781731800, -163.4993828650271700 67.0566533140992100, -163.5001927090262700 67.0567018990734600, -163.5031427443421400 67.0569306191528100, -163.5060644698993400 67.0572092803840300, -163.5089523395787700 67.0575373548650800, -163.5102559968167700 67.0577233427581000, -163.5118022947400800 67.0578993095055600, -163.5131760622254500 67.0580152833786700, -163.5149010392515300 67.0582112420552200, -163.5159711632385600 67.0582649252861500, -163.5180825456729000 67.0583969043937000, -163.5210327869335500 67.0586256244730500, -163.5225118335542300 67.0587666795386800, -163.5336869576869000 67.0587666795386800, -163.5367012297779000 67.0587922544590400, -163.5397027539788700 67.0588689297573500, -163.5426928783736000 67.0589965615421300, -163.5456659291393000 67.0591749069964200, -163.5486162648287200 67.0594036270757700, -163.5515382880615200 67.0596822883069900, -163.5534587893915800 67.0599004431509800, -163.5552503396314400 67.0600079094375000, -163.5582007769442600 67.0602366295169100, -163.5611229000018000 67.0605152907481300, -163.5640111626849800 67.0608433643298600, -163.5668600845252500 67.0612202279312400, -163.5696642561005000 67.0616451665912300, -163.5724183534242400 67.0621173736179800, -163.5728310343247400 67.0621966713394000, -163.5756720052588000 67.0622138717728300, -163.5784134698057500 67.0622515803461900, -163.5811489349753500 67.0623317522086500, -163.5838740876190200 67.0624542632537000, -163.5865846271787800 67.0626189183285000, -163.5895353819523000 67.0628476384078500, -163.5924578188732000 67.0631262996390700, -163.5953463927218000 67.0634543732208000, -163.5981956212309000 67.0638312359228600, -163.6010000940790400 67.0642561745828500, -163.6020946409548700 67.0644438208257200, -163.6030084079116600 67.0645146442354900, -163.6044442394101000 67.0646590708594800, -163.6068245730955400 67.0647482683180000, -163.6091969459822300 67.0648621125964700, -163.6115578066474300 67.0650079259750700, -163.6145088519019700 67.0652366460544200, -163.6174311880988300 67.0655280021156800, -163.6180823395283000 67.0655748621902000, -163.6207169736094000 67.0656811395729700, -163.6233362175923400 67.0658409284161500, -163.6262873635709500 67.0660696484955600, -163.6292101889990000 67.0663483097267800, -163.6320991468581000 67.0666763833085000, -163.6349487530824500 67.0670532469099000, -163.6377535982499300 67.0674781846705600, -163.6397549675177200 67.0678212481521400, -163.6398764569329000 67.0678396311940900, -163.6405103099028500 67.0679387274903400, -163.6406777447820700 67.0679645137513500, -163.6408762188624000 67.0679946293487300, -163.6411175411415700 67.0680010244278200, -163.6412668196080000 67.0680126679503100, -163.6441220304073500 67.0680629616364300, -163.6471132879478600 67.0681905934212000, -163.6500874646647200 67.0683689379761700, -163.6530389182114800 67.0685976580555200, -163.6559620485097000 67.0688763183874200, -163.6588513067423800 67.0692043919691500, -163.6617012097430000 67.0695812546712200, -163.6620140335208000 67.0696431163368000, -163.6648120339481800 67.0699317438549700, -163.6669773010615600 67.0700639432964200, -163.6699289614523700 67.0702926633757700, -163.6728522958967200 67.0705713237076700, -163.6757417555775200 67.0708993972894000, -163.6785918582276300 67.0712762599914600, -163.6813971926263200 67.0717011977521300, -163.6841524320890400 67.0721734038795600, -163.6868523452595000 67.0726919817495900, -163.6877254835442000 67.0728785425108100, -163.6887924985749000 67.0730614061590100, -163.6914925115701200 67.0735799840291000, -163.6941320676408000 67.0741439497834900, -163.6967061530665000 67.0747522332290500, -163.6974188190232600 67.0749376617437700, -163.6988836635502000 67.0752189885655500, -163.7015233985859500 67.0757829543199500, -163.7040976575808000 67.0763912368661300, -163.7066015509208200 67.0770426832732500, -163.7090303193937000 67.0777360551748500, -163.7113793440814200 67.0784700377620900, -163.7118215910935200 67.0786210186451500, -163.7137500217460800 67.0790329630008800, -163.7163246260806000 67.0796412455471200, -163.7188288557670400 67.0802926910549200, -163.7212579488952000 67.0809860629564700, -163.7225161876718900 67.0813791620187800, -163.7243252962753700 67.0817272419187100, -163.7248651305213200 67.0818254415909200, -163.7270814872208300 67.0822004337031200, -163.7297825173492600 67.0827190106738800, -163.7324230689694400 67.0832829755289600, -163.7349981247636200 67.0838912580751400, -163.7375027933192400 67.0845427026836200, -163.7399323127260000 67.0852360736859000, -163.7422820649653000 67.0859700553738200, -163.7429399730013000 67.0861917814256100, -163.7431139792267300 67.0862453675297300, -163.7434936208339000 67.0863672508480100, -163.7436683168393200 67.0864171569263000, -163.7455490933160000 67.0869201459480600, -163.7461729206437400 67.0870707086463700, -163.7486026936593600 67.0877640796486000, -163.7509526914135400 67.0884980604371900, -163.7532180953388000 67.0892727328504200, -163.7554791762229600 67.0898082728335800, -163.7579844563176000 67.0904597174420600, -163.7604145692769200 67.0911530875450200, -163.7627648952836500 67.0918870683336200, -163.7649894753839400 67.0926454576218100, -163.7663742622623600 67.0930426468007700, -163.7681862046296100 67.0936184970960300, -163.7686285379766000 67.0937507540940600, -163.7706140611899500 67.0943200959956700, -163.7712449436991700 67.0945305040795600, -163.7729672875102800 67.0950449882356600, -163.7736716500265900 67.0952360977677800, -163.7760223726343700 67.0959700776570000, -163.7782888242698000 67.0967432742827400, -163.7804616295005600 67.0975723808607500, -163.7818576659984700 67.0979317364605100, -163.7842885289924000 67.0986251065634700, -163.7866395807520200 67.0993590855534300, -163.7887499847239800 67.1000767256604100, -163.7907840578379800 67.1008270884993900, -163.7927384537166500 67.1016089437977700, -163.7946099545857000 67.1024210073237000, -163.7978047619801600 67.1038649632975000, -163.7983558350537000 67.1041171296018900, -163.8002441721308200 67.1050318048739300, -163.8020284045871600 67.1059776668358800, -163.8037051311868300 67.1069529177430000, -163.8052711530412500 67.1079557067905000, -163.8062444497215600 67.1086330239949100, -163.8071672125967700 67.1093209864744200, -163.8080386691492300 67.1100190249580900, -163.8088580918274600 67.1107265566852800, -163.8094329088016800 67.1112566054080700, -163.8105968572591300 67.1121426004007200, -163.8116841106331700 67.1130369896653700, -163.8126862143972500 67.1139463346556800, -163.8136018051791300 67.1148694059983200, -163.8145739417339800 67.1159803717967500, -163.8154207469698600 67.1171067816527000, -163.8161405922145400 67.1182464933810400, -163.8167320907134000 67.1193973396156000, -163.8171720930176600 67.1204932129914500, -163.8174956771837300 67.1215952125491000, -163.8177022784373700 67.1227014667993000, -163.8177915298551900 67.1238100952597300, -163.8179466395257600 67.1294490315476100, -163.8179505578719000 67.1297070443446800, -163.8178880981571700 67.1308804392809300, -163.8176941179891300 67.1320516569584800, -163.8173689681033800 67.1332184670586700, -163.8169132483477000 67.1343786491554000, -163.8163278076821400 67.1355299918157000, -163.8160073207812000 67.1360417869989300, -163.8159928363003200 67.1365949599894500, -163.8159065103771200 67.1376921265904200, -163.8157051494730500 67.1387870107120100, -163.8153890737467300 67.1398777876298700, -163.8149587931138000 67.1409626398140000, -163.8144274403740300 67.1420073291749300, -163.8143536222218600 67.1428380347475700, -163.8141500642740300 67.1439024363484100, -163.8138380444901300 67.1449628593485400, -163.8134180395108800 67.1460176337068900, -163.8130420428559500 67.1467567253426400, -163.8130753807242000 67.1471447594231600, -163.8131139220698200 67.1480130305769800, -163.8130514182883000 67.1491864228152000, -163.8128572942287000 67.1503576377948000, -163.8125319006266800 67.1515244460963500, -163.8120758391286500 67.1526846245957900, -163.8114899577953000 67.1538359654575200, -163.8109830513267300 67.1546448489806400, -163.8109870227329000 67.1585961543890400, -163.8111700815340200 67.1588854950695700, -163.8117625809783000 67.1600363350089000, -163.8122223665689300 67.1611873341282100, -163.8125535158320600 67.1623449864320600, -163.8127553884504000 67.1635071227555600, -163.8128275887222000 67.1646715649408200, -163.8128793321154400 67.1729392798239400, -163.8128168481190000 67.1741304012970200, -163.8126225280072400 67.1753016126793300, -163.8122968025553500 67.1764684164842800, -163.8121203564692500 67.1769168184564500, -163.8121875574098300 67.1770851166848500, -163.8125199639251500 67.1782516372033500, -163.8127210244557000 67.1794226777144600, -163.8127903397024000 67.1805960078995100, -163.8128062873802300 67.1861473205424900, -163.8132212840350000 67.1868024964381300, -163.8138144741586200 67.1879533318808000, -163.8142778057761000 67.1891131128799100, -163.8146103795653200 67.1902796324990800, -163.8148115435179000 67.1914506703122400, -163.8148808947374800 67.1926239986986500, -163.8148798668123600 67.1928035087749400, -163.8147848885117800 67.1994311920959100, -163.8151258403852000 67.2000923304967200, -163.8155595807100400 67.2011660391814300, -163.8158811872669400 67.2022456681031600, -163.8159023024492700 67.2023551992331200, -163.8162384258626200 67.2028854970681100, -163.8168320143859400 67.2040363298128200, -163.8172956580681300 67.2051961081139700, -163.8176284557885700 67.2063626250351800, -163.8178297564380700 67.2075336610497000, -163.8178389079392300 67.2076883822131200, -163.8182335331510200 67.2084533302570400, -163.8184084503896500 67.2088736239186900, -163.8188153531460000 67.2094127998609000, -163.8195379692019000 67.2105524972000700, -163.8201317474821200 67.2117033290454600, -163.8205955395524700 67.2128631064472900, -163.8209284451915600 67.2140296215698100, -163.8211298105922500 67.2152006566850000, -163.8211992346569200 67.2163739814741300, -163.8211997769481000 67.2165621169481800, -163.8217314507458300 67.2175923281234900, -163.8221953579294000 67.2187521046259900, -163.8225283454068000 67.2199186197485700, -163.8225969591823000 67.2203175410217600, -163.8228164027547700 67.2206634976223500, -163.8234104319458600 67.2218143276691600, -163.8238744209677000 67.2229741032722900, -163.8242074678003600 67.2241406174955500, -163.8244089195359800 67.2253116499127800, -163.8244783741776000 67.2264849738025400, -163.8244780827972400 67.2265985311973400, -163.8244745925284000 67.2270340971459200, -163.8245566952352600 67.2271634978971500, -163.8251508854050000 67.2283143270445900, -163.8256150003319600 67.2294741017484500, -163.8258414010598000 67.2302668640246000, -163.8262489693144600 67.2307304123787000, -163.8270998268954800 67.2318568042482000, -163.8278231201408600 67.2329964979900300, -163.8284174560007800 67.2341473262381400, -163.8288786049636200 67.2352981302046300, -163.8292107632660800 67.2364555855568800, -163.8294132896915300 67.2376175240295900, -163.8294857849410000 67.2387817692633100, -163.8295087752097700 67.2423947470200000, -163.8300267487354300 67.2433973256261200, -163.8303803441775000 67.2442477380427600, -163.8306634606501600 67.2451020975838100, -163.8307020190828800 67.2452994034447900, -163.8314160106403400 67.2464414992758200, -163.8320106810480800 67.2475923248259700, -163.8324751709923200 67.2487520968318800, -163.8328085784531000 67.2499186065584800, -163.8330102990860000 67.2510868699631600, -163.8331470077282000 67.2512547518053900, -163.8351255396119400 67.2538369338274700, -163.8356559444662300 67.2545666257492500, -163.8361330465028500 67.2553018116293500, -163.8365564608119800 67.2560419060092200, -163.8369376897225600 67.2567773688805300, -163.8370587204835300 67.2569128085793300, -163.8377827718574000 67.2580524987238800, -163.8383777300481700 67.2592033233747200, -163.8386897471340800 67.2599434672172800, -163.8387460761704500 67.2601053631720400, -163.8389574177506000 67.2603848095113800, -163.8396815743451500 67.2615244987566700, -163.8397539212064700 67.2616735065271900, -163.8406021707535600 67.2628018103553100, -163.8413264001932000 67.2639414987012900, -163.8419215058727600 67.2650923224528000, -163.8421830422136000 67.2657979566104700, -163.8424757868280600 67.2663201956206100, -163.8427639314102700 67.2666474247388900, -163.8436160660286000 67.2677738112124600, -163.8443404465543300 67.2689134986591200, -163.8449356754410400 67.2700643215112600, -163.8452388467953300 67.2707811810067300, -163.8453281926419400 67.2710353294169700, -163.8454034631992300 67.2711348115224200, -163.8461279453483700 67.2722744998683300, -163.8467232587713300 67.2734253218212100, -163.8468539365599000 67.2737512541171400, -163.8469972408299800 67.2739413752942700, -163.8474676725949700 67.2746334827491000, -163.8479145070488400 67.2753282962639200, -163.8484471017523300 67.2762210622522600, -163.8489007962347400 67.2771203213458200, -163.8493658626444200 67.2782800879557500, -163.8496996846926700 67.2794465940851300, -163.8499016094716600 67.2806176184084300, -163.8499712331858400 67.2817909342043100, -163.8499341424467000 67.2826396343117500, -163.8500272096879400 67.2828622767727300, -163.8505492040824800 67.2835518139651200, -163.8512740621482400 67.2846914996130700, -163.8518696858373000 67.2858423197673100, -163.8520214680163200 67.2862185691317300, -163.8524401006301000 67.2868767127901000, -163.8533704663739000 67.2873350900424000, -163.8550077981713300 67.2882121367807700, -163.8565527048434400 67.2891138968888600, -163.8580026835769600 67.2900389152637800, -163.8594660442225300 67.2910673062112900, -163.8608120541329600 67.2921193736102600, -163.8620381394485400 67.2931931182678200, -163.8623298012793000 67.2934820227772000, -163.8630390938790500 67.2940363756782700, -163.8642652772207400 67.2951101194365200, -163.8653691797438200 67.2962034998916500, -163.8663486844442000 67.2973144360124700, -163.8672019126381400 67.2984408170900700, -163.8679272230628800 67.2995805000401200, -163.8685232181719600 67.3007313183956600, -163.8689072826449500 67.3016616769448900, -163.8691802484696600 67.3025137926774700, -163.8700327536086500 67.3034804388711900, -163.8708862021365000 67.3046068181502000, -163.8716117005195400 67.3057465011002000, -163.8722078494127000 67.3068973176571600, -163.8726734976837300 67.3080570797704900, -163.8730077397153800 67.3092235805039000, -163.8732099199018500 67.3103946012299200, -163.8732796344475600 67.3115679116298800, -163.8732499775044300 67.3123838548310700, -163.8738824419211300 67.3132458199386900, -163.8746082020069000 67.3143855010900400, -163.8752045676366700 67.3155363167476800, -163.8756030365508700 67.3165055062241900, -163.8759096909794300 67.3174796617570300, -163.8760610450811400 67.3181698743403000, -163.8764818171820800 67.3188305010268700, -163.8770782943278000 67.3199813157851300, -163.8772345497346500 67.3203638595046000, -163.8773524445596500 67.3204805114664900, -163.8783329448095300 67.3215914439900300, -163.8791870408492200 67.3227178214703500, -163.8799130905166800 67.3238575008230700, -163.8805096935675000 67.3250083146820100, -163.8807480211042700 67.3256014508463600, -163.8811417982553600 67.3262195009292600, -163.8813077501525300 67.3265395813366500, -163.8814029712701000 67.3266474460228900, -163.8822572480735000 67.3277738226038900, -163.8827648802949600 67.3285704834411300, -163.8832989867588000 67.3291754465896600, -163.8841533543937600 67.3303018231706600, -163.8848796351870000 67.3314415007247400, -163.8854668798925600 67.3325995568241600, -163.8855192645024200 67.3326915655633800, -163.8862474239794000 67.3338305011767500, -163.8868442770417200 67.3349813141363700, -163.8871797502452500 67.3357800973736300, -163.8872775290347200 67.3360674064856500, -163.8876653193989300 67.3366038736699000, -163.8878898342484300 67.3367613512554000, -163.8892384180185500 67.3378134114598200, -163.8904668496653600 67.3388871489228200, -163.8915727756630400 67.3399805212840800, -163.8925540781082000 67.3410914511096600, -163.8934088720218000 67.3422178249927000, -163.8941355161411200 67.3433575016474600, -163.8947326075238000 67.3445083119091200, -163.8947989064443500 67.3446643982434200, -163.8951761936264000 67.3450914521088700, -163.8960311323308800 67.3462178259919100, -163.8967578978586600 67.3473575017473500, -163.8973550899654000 67.3485083120090700, -163.8974955523778200 67.3488927056338900, -163.8984678643004700 67.3500084540269800, -163.8993229783727400 67.3511348270107000, -163.9000498940873200 67.3522745018668200, -163.9004644392824200 67.3530731789840600, -163.9009964125543800 67.3537738264010400, -163.9017234092079300 67.3549135012571600, -163.9023207910716200 67.3560643106195000, -163.9025158153525600 67.3565490380077600, -163.9027886408830500 67.3569280437942600, -163.9034000431774000 67.3579225617768900, -163.9039130119759000 67.3589253103548300, -163.9041395700850500 67.3594883453109200, -163.9046995257624800 67.3603578305495000, -163.9055777838876000 67.3610364301871400, -163.9068074107334000 67.3621101640528700, -163.9079076719015000 67.3631960594506200, -163.9081670291850200 67.3633974320459300, -163.9093967774393000 67.3644711650123300, -163.9105038905421000 67.3655645337762500, -163.9114862460933500 67.3666754600045600, -163.9123419591141000 67.3678018293909400, -163.9127329438702200 67.3684143927101200, -163.9129638169265800 67.3686754605041600, -163.9138196018931000 67.3698018307899200, -163.9145470886771800 67.3709415020487100, -163.9151448734371300 67.3720923087131500, -163.9154943607761000 67.3729562370407400, -163.9160525771646600 67.3736908302676600, -163.9167801817599500 67.3748305024258200, -163.9173780654453500 67.3759813081908900, -163.9178271958683700 67.3770847682475300, -163.9187962909160800 67.3781754633270100, -163.9196524176249500 67.3793018309148100, -163.9203792667897000 67.3804399121722800, -163.9209075942100600 67.3811348318071200, -163.9216354272331600 67.3822745021665800, -163.9222334979775200 67.3834253070323300, -163.9226912654894800 67.3845579608812400, -163.9228944367288500 67.3852550074127000, -163.9232051129256000 67.3857414012447300, -163.9235883419284200 67.3861195445813900, -163.9241539165699600 67.3867390290830000, -163.9245679617420000 67.3872432492766000, -163.9248063486340600 67.3874592700293500, -163.9254872469388700 67.3880320392472600, -163.9260426898182500 67.3885284137553500, -163.9263511383943000 67.3888223877430600, -163.9271507526051200 67.3896220837921800, -163.9280498399281500 67.3904151824148100, -163.9291581590218000 67.3915085475814500, -163.9301415856656000 67.3926194684137800, -163.9304077481190500 67.3929694341920800, -163.9306964277978700 67.3932211841104200, -163.9318048772932200 67.3943145483777400, -163.9327884199496000 67.3954254692100700, -163.9336451680900000 67.3965518349992300, -163.9343279180989200 67.3976344154959300, -163.9343756163415800 67.3976897885529500, -163.9347409407418000 67.3980221608940700, -163.9357270014998800 67.3990174873671900, -163.9361020349809000 67.3993601884220100, -163.9372107704606700 67.4004535508906900, -163.9381945676251700 67.4015644717230200, -163.9386366734437000 67.4021455569719600, -163.9395838070470300 67.4029711903681900, -163.9405127590565600 67.4038871228924600, -163.9406978062587300 67.4040587081429400, -163.9413101681297200 67.4045821909154500, -163.9424191473257500 67.4056755533841300, -163.9432277448645200 67.4065884354080300, -163.9438941874667500 67.4071239547067800, -163.9446768494570000 67.4077999741895200, -163.9454109021913600 67.4084840138262400, -163.9460957871907900 67.4091755556074800, -163.9470799440841200 67.4102864746411700, -163.9472079221078800 67.4104546208840800, -163.9475769409230600 67.4107761959647300, -163.9486862097007800 67.4118695575340900, -163.9493611517957000 67.4126313471589900, -163.9501242382429800 67.4132480455609200, -163.9511639102862000 67.4141766234524800, -163.9521121662434400 67.4151195590204700, -163.9530965695510000 67.4162304762555200, -163.9539425860814700 67.4173670133770300, -163.9544291076172000 67.4179391512708400, -163.9544967366350600 67.4179996162893100, -163.9556855927159000 67.4188174300803700, -163.9570388259810200 67.4198694776943000, -163.9582714934346400 67.4209432016674600, -163.9593812361551000 67.4220365614382300, -163.9603659263463800 67.4231474786732900, -163.9612236745329300 67.4242738390664700, -163.9619462851928800 67.4254219243823600, -163.9631120421869600 67.4263414829731000, -163.9643357236147400 67.4274285474895100, -163.9649856978316500 67.4279025549590200, -163.9654309251970000 67.4281153201659400, -163.9672393440204700 67.4290611335645200, -163.9689388054814600 67.4300363359082600, -163.9705260666246400 67.4310390745936800, -163.9719980967347500 67.4320674430580900, -163.9733520845310600 67.4331194888733900, -163.9745854390667400 67.4341932110479000, -163.9756958005207500 67.4352865690199800, -163.9766789789517000 67.4364013776215100, -163.9769476990770200 67.4365477198014700, -163.9789912555419800 67.4376904523525700, -163.9808789990665300 67.4388720823807300, -163.9823515148105500 67.4399004508451900, -163.9837059477712600 67.4409524948617900, -163.9849397096998000 67.4420262161370400, -163.9860504371779000 67.4431195723104800, -163.9870360015102300 67.4442304850488800, -163.9875535775355500 67.4449095397434900, -163.9881990695314200 67.4454712185219600, -163.9893099588874700 67.4465645746954000, -163.9902956662120000 67.4476754874338600, -163.9911543011300500 67.4488018442297600, -163.9918842124863800 67.4499415037973900, -163.9922050887937800 67.4505571652810000, -163.9928228888652000 67.4512453975571000, -163.9930789537307000 67.4515485104554400, -163.9932064596104000 67.4516475042290200, -163.9944327796490300 67.4527326253104900, -163.9947969430244800 67.4529991582845700, -163.9962618765843000 67.4541543689290400, -163.9988775277756500 67.4563483406034800, -163.9999800768190700 67.4573234853905900, -164.0009814539309300 67.4583145796542000, -164.0014048070861500 67.4588091555181700, -164.0019781743532400 67.4594148704999300, -164.0023745280620000 67.4597865809859600, -164.0025772766200000 67.4600118440714000, -164.0028502532365700 67.4602492282193700, -164.0039618332719700 67.4613425816948500, -164.0042655954808300 67.4616682208118200, -164.0056863903146200 67.4632226414118500, -164.0065700830428700 67.4642557367129100, -164.0071045546314700 67.4649777960884800, -164.0073615970600300 67.4652305829251300, -164.0083480813988200 67.4663414929655700, -164.0084519890680200 67.4665002260046500, -164.0096762127869600 67.4675822327338900, -164.0107881363633700 67.4686755853100500, -164.0117747636943500 67.4697864944512300, -164.0126317447591800 67.4709140410502100, -164.0137413696684500 67.4720085870267200, -164.0142239287912400 67.4725706156414700, -164.0154710123773000 67.4735450544607700, -164.0172202252332000 67.4746501234045000, -164.0186949605040000 67.4756784855737200, -164.0200514358250800 67.4767305241944100, -164.0212870584509500 67.4778042391743600, -164.0223994613660400 67.4788975899518800, -164.0233865149756700 67.4800084981936800, -164.0239601484420600 67.4807599600042000, -164.0251757305754800 67.4817025277495200, -164.0257860914549300 67.4822327995041700, -164.0259518850714000 67.4823566415458300, -164.0274370983434000 67.4833734923928400, -164.0287940143322800 67.4844255301141500, -164.0300300371564500 67.4854992441948400, -164.0311428024983000 67.4865925931736700, -164.0321301762666000 67.4877034996168800, -164.0323697286800000 67.4880172128241600, -164.0335812728574200 67.4888778343446300, -164.0347465586067700 67.4897425585722900, -164.0358295393017700 67.4906228635543900, -164.0368287877183500 67.4915175999573200, -164.0377429890476700 67.4924255968638800, -164.0387258365281000 67.4935413569481300, -164.0391633054421700 67.4939805966273000, -164.0401509867786000 67.4950915021711400, -164.0410113429990400 67.4962178517724900, -164.0417427184516700 67.4973575041455500, -164.0418986716863000 67.4976561303262200, -164.0425337036674600 67.4982060756499300, -164.0431178834835200 67.4987338436919800, -164.0444300447107700 67.5000086003167300, -164.0453939452743300 67.5011046049936000, -164.0466035253324000 67.5021652546228700, -164.0477170730844000 67.5032586009037900, -164.0483842944995600 67.5039909871943600, -164.0489961392604000 67.5047304340623100, -164.0500697804959300 67.5060959115970700, -164.0503098329324000 67.5063042575355300, -164.0507834348076400 67.5067691863489500, -164.0515223825519000 67.5073415481739400, -164.0527596014744000 67.5084152586573000, -164.0538734442040700 67.5095086049382200, -164.0546603896652300 67.5103797746069700, -164.0548707329979000 67.5106412956593000, -164.0549912592392000 67.5107091935744800, -164.0567603111394000 67.5118171646304900, -164.0582373585672300 67.5128455214037300, -164.0589587110756300 67.5134040993197600, -164.0619003026568200 67.5148605549707100, -164.0633063594009400 67.5155811655384400, -164.0646487792177500 67.5163193569528000, -164.0659260575415000 67.5170743063342200, -164.0671367626514400 67.5178451710178800, -164.0686141868952000 67.5188735268918100, -164.0696624681483500 67.5196850553210800, -164.0707542424143200 67.5203721733372000, -164.0722318240394200 67.5214005292111200, -164.0735909190856300 67.5224525606371900, -164.0748289285122000 67.5235262684225900, -164.0759434817062800 67.5246196120055500, -164.0769324436773000 67.5257305121534700, -164.0777939150571000 67.5268568572582200, -164.0785262401938000 67.5279965042353200, -164.0791206713818400 67.5291528974883000, -164.0793293122979000 67.5294408577094600, -164.0800548439558500 67.5305936671640600, -164.0807501458025700 67.5309735021255000, -164.0824343106948500 67.5319374179775300, -164.0840084633199000 67.5329281875858700, -164.0854868282545000 67.5339565407617800, -164.0868466445569700 67.5350085703892700, -164.0871118923999000 67.5352384937615400, -164.0874599552127200 67.5354561908506000, -164.0889384784280200 67.5364845440265600, -164.0902984404206700 67.5375365727546800, -164.0915372394520000 67.5386102787414300, -164.0926525040098300 67.5397036196263800, -164.0934070397031000 67.5405506469948000, -164.0935925032913800 67.5406949378211700, -164.0941083013569800 67.5411201912438600, -164.0948637255804400 67.5415951978601500, -164.0963426328062300 67.5426235492374800, -164.0975072656477500 67.5435242436489600, -164.1002002603337000 67.5449761883005000, -164.1020191382726000 67.5460061944303900, -164.1037117909663400 67.5470672028891400, -164.1045854031937700 67.5476745249594000, -164.1052210476132400 67.5480053028025500, -164.1069290490363500 67.5489804871598400, -164.1085242880654000 67.5499832069595000, -164.1100037195959700 67.5510115574375000, -164.1108607681099400 67.5516741383508500, -164.1132572572166200 67.5528126710679500, -164.1149057487013200 67.5536270386569400, -164.1164715978859200 67.5544649073296500, -164.1179525052039300 67.5553250522094700, -164.1193462960946500 67.5562062142454400, -164.1208261170316400 67.5572345638241200, -164.1219720763502000 67.5581350289085100, -164.1221913193738500 67.5582792891579500, -164.1232284670201000 67.5588445850096400, -164.1244334938106700 67.5595598050410300, -164.1255788038187000 67.5602892181729500, -164.1270588810624800 67.5613175668522700, -164.1284202720778800 67.5623695919831600, -164.1296603733275400 67.5634432934732600, -164.1307768115006200 67.5645366307609800, -164.1309186139028800 67.5646950832115700, -164.1320147966455000 67.5654565706642500, -164.1330494972364700 67.5662647734006300, -164.1333823633054000 67.5664993291807700, -164.1339847543928800 67.5668722258726000, -164.1354652435261400 67.5679005736526000, -164.1368270140554300 67.5689525978841600, -164.1380585366721000 67.5700146702408800, -164.1397737641478600 67.5706391702615300, -164.1419005447743000 67.5714862569852200, -164.1439287039465000 67.5723679406280000, -164.1453568570333000 67.5730383240594400, -164.1467279589281200 67.5737258692535100, -164.1480405940981200 67.5744298684437000, -164.1492934036676300 67.5751495967765000, -164.1507396753956700 67.5760100699088800, -164.1524129656857800 67.5770558600399900, -164.1534703912455200 67.5774726895130600, -164.1554544206849500 67.5783279753558200, -164.1585393084423000 67.5797159566261600, -164.1587516788468700 67.5798119538586700, -164.1604393016324400 67.5805971879099700, -164.1622386238134000 67.5812211519346400, -164.1639727334548700 67.5818816059514200, -164.1656457548476700 67.5825646527366100, -164.1670900066984300 67.5831751889838300, -164.1687329925335600 67.5838949604840900, -164.1706596074549000 67.5848095656090200, -164.1724800160398800 67.5857553556252200, -164.1741907469054200 67.5867305345865400, -164.1746633577277500 67.5870271274000600, -164.1832911521649000 67.5913829415695800, -164.1841243353697500 67.5916613366014800, -164.1844178740856000 67.5917816164285300, -164.1868136428353200 67.5925272074646800, -164.1891276362314000 67.5933003393392400, -164.1913511956011600 67.5941112166593700, -164.1934800905337000 67.5949583006851100, -164.1955102650866300 67.5958399807306000, -164.1960527676211000 67.5960892314329300, -164.2008874716794400 67.5983376129905200, -164.2026596406299000 67.5991966364156800, -164.2043389761628000 67.6000824002825900, -164.2059227011717000 67.6009934431929200, -164.2065427774272200 67.6013836581293500, -164.2072736573533700 67.6017009911079200, -164.2080547401341200 67.6020655034203000, -164.2095903307291600 67.6025783598035400, -164.2118147642399600 67.6033892362243000, -164.2139444946426700 67.6042363184514000, -164.2159754677935800 67.6051179975975700, -164.2175274422376400 67.6058475699094900, -164.2187802841827400 67.6064804246319700, -164.2190173643598400 67.6065777195861400, -164.2191532366325400 67.6066101365486200, -164.2202921650513500 67.6069050170529500, -164.2210216528269800 67.6071086937113300, -164.2212880113326300 67.6071766150088300, -164.2238497355768000 67.6078220197704200, -164.2253197664940000 67.6082280241041100, -164.2255937674384000 67.6082948743090800, -164.2279593099741500 67.6088096372550400, -164.2305195422430600 67.6094610234075600, -164.2330029643153200 67.6101543332559300, -164.2354048556495300 67.6108882492933400, -164.2377206494883500 67.6116613784698800, -164.2384555709678000 67.6119457270137300, -164.2408523226765200 67.6126942525377800, -164.2431682936817800 67.6134673826136900, -164.2453937533190400 67.6142782572358100, -164.2475244657814500 67.6151253376642700, -164.2494280661523000 67.6159349028735000, -164.2495630948609200 67.6159845481484500, -164.2498126495341000 67.6160499171700200, -164.2518319494848500 67.6166662621383200, -164.2541483098965500 67.6174393913149200, -164.2546613470435000 67.6176262920197900, -164.2560569770478200 67.6179486603024900, -164.2586181994703000 67.6186000455557000, -164.2611025838171500 67.6192933545047500, -164.2635054050503800 67.6200272696428300, -164.2658220955132700 67.6208003979201000, -164.2661693759159500 67.6209268947604300, -164.2670665791592600 67.6211550518642000, -164.2695512324034200 67.6218483599139400, -164.2719543144400200 67.6225822750520300, -164.2724143122706600 67.6227357695402100, -164.2743764576074200 67.6231454503023300, -164.2747613269736500 67.6232306304892700, -164.2757606806109000 67.6234534114458400, -164.2782911624071900 67.6240450331517900, -164.2792768373561200 67.6243066594248600, -164.2811941802671600 67.6246190173538400, -164.2839571592954300 67.6251375457611600, -164.2866582784567700 67.6257014575562600, -164.2892924053202300 67.6263096825458700, -164.2918545351586500 67.6269610668997500, -164.2943397999417800 67.6276543749494900, -164.2966329623413000 67.6283736491246800, -164.2967411489848000 67.6283994209965200, -164.2993301388747800 67.6289514653379300, -164.3018830461656000 67.6295399475106400, -164.3043685384772300 67.6301689576313300, -164.3054149086710800 67.6304587326844200, -164.3064437142060000 67.6306734710039400, -164.3090761953101300 67.6312922360479000, -164.3093896944788000 67.6313647672702700, -164.3108596417590400 67.6317306762297800, -164.3116455592951000 67.6319123581688500, -164.3120219435578200 67.6319842131010200, -164.3135571654308000 67.6323124746410300, -164.3161920306376700 67.6329206996306300, -164.3187548790344000 67.6335720839845200, -164.3212408398928200 67.6342653902356100, -164.3226355040252700 67.6346911032118800, -164.3230239445993300 67.6347950666390700, -164.3255910737690000 67.6354330879667000, -164.3279030023216800 67.6360778074449000, -164.3280784528582800 67.6361205351346400, -164.3300914827357200 67.6365344858778600, -164.3316966250991400 67.6369103997951700, -164.3327280116883700 67.6371370001724600, -164.3343978971452000 67.6374794889873100, -164.3370333397168400 67.6380877130775400, -164.3395967492905000 67.6387390965321600, -164.3420832551380800 67.6394324027832000, -164.3444881295235400 67.6401663152233300, -164.3468067984949200 67.6409394408025800, -164.3490348517769600 67.6417503118274800, -164.3502789127416000 67.6422665694466900, -164.3504491732906800 67.6423259004200200, -164.3513955505641800 67.6424529116725900, -164.3540529024194800 67.6429069155217900, -164.3542162103098300 67.6429326496221400, -164.3569245672149700 67.6433409139520400, -164.3597464545352000 67.6438130724154100, -164.3625116827679200 67.6443315981248400, -164.3652150007716300 67.6448955081212400, -164.3678499199378400 67.6455102118268900, -164.3684644051081700 67.6456522795291400, -164.3707142435674500 67.6461603749014600, -164.3729107045653300 67.6467066294075000, -164.3737712685292000 67.6469294193572600, -164.3766497277027600 67.6477154358187800, -164.3794212817667200 67.6485553342613500, -164.3814164987723800 67.6492203721225600, -164.3817438448025700 67.6493163774489400, -164.3822541228294700 67.6494331220409900, -164.3847417564268800 67.6501264273927600, -164.3871477216899800 67.6508603380342500, -164.3894674437675000 67.6516334627141900, -164.3916965078875000 67.6524443328397600, -164.3938306737465800 67.6532914078722500, -164.3958658764090300 67.6541730798238000, -164.3974924541134300 67.6549485850092700, -164.3976597621882500 67.6549989614329700, -164.3981095365258500 67.6550897309064100, -164.4003158433015000 67.6556675309318500, -164.4024631545509000 67.6562766957130200, -164.4045483918947400 67.6569163529074400, -164.4062365335891200 67.6574788365791200, -164.4066409838942500 67.6575546350384200, -164.4093458181549500 67.6581185441355600, -164.4117797397431700 67.6586776103834500, -164.4141527322627500 67.6592734265274800, -164.4146917292398800 67.6594144582107300, -164.4152110562452300 67.6595365150981300, -164.4174024036979300 67.6599918994066900, -164.4174807247556200 67.6600122537625500, -164.4200452045225500 67.6605751232434000, -164.4201786189480900 67.6606059349160200, -164.4228205528262400 67.6611987734047500, -164.4253864778036700 67.6618501541613600, -164.4278720492556500 67.6625567433990200, -164.4289683363196300 67.6628628195635400, -164.4314612489374700 67.6635434588636100, -164.4317639301612200 67.6636488755951900, -164.4324937255050000 67.6637581306332500, -164.4352612946729800 67.6642766545440400, -164.4379669005520000 67.6648405627418600, -164.4406054044158600 67.6654487841341300, -164.4431717925441500 67.6661001639914200, -164.4451703559271600 67.6666567696942100, -164.4459597979063000 67.6668046614060500, -164.4486656942663400 67.6673685696038700, -164.4513044814166600 67.6679767900968200, -164.4538711447375200 67.6686281699541600, -164.4563608072054700 67.6693214726079200, -164.4569850653085000 67.6695408199529400, -164.4571421516889000 67.6695809081324500, -164.4582243634636000 67.6698125761894900, -164.4608634240077800 67.6704207966824900, -164.4634303535279700 67.6710721765397800, -164.4659201652833600 67.6717659063715500, -164.4670150278212500 67.6720441790956200, -164.4686150161700200 67.6724829942948000, -164.4692107396838600 67.6726415897376200, -164.4695106114255600 67.6727142081942400, -164.4718964516599000 67.6732015849852400, -164.4745358917180000 67.6738098054781900, -164.4771031917588600 67.6744611844361500, -164.4795908775169600 67.6751647042877400, -164.4808269623943600 67.6754891868765200, -164.4833173497159000 67.6761824886310100, -164.4857259787709000 67.6769163965744800, -164.4879636143293200 67.6776613347029200, -164.4880488655626600 67.6776873754720300, -164.4882338758926300 67.6777466237077800, -164.4906459826259800 67.6784713999352300, -164.4929684260520000 67.6792445210178900, -164.4937461282811700 67.6795270934006800, -164.4942511416768000 67.6796551982288900, -164.4967419705654700 67.6803484990840000, -164.4991510258991000 67.6810824070275300, -164.5014737274305500 67.6818555272108700, -164.5037056558912800 67.6826663928397900, -164.5058425637832600 67.6835134642750000, -164.5078803816742500 67.6843951317300100, -164.5094214608317300 67.6851168664503000, -164.5096776156294400 67.6852475064673000, -164.5098587993440700 67.6853227662327300, -164.5100246298327700 67.6853641988987000, -164.5103000876788700 67.6854336139701900, -164.5121489382228800 67.6858857634173300, -164.5123368164908600 67.6859441554984200, -164.5151615007026700 67.6864251947669700, -164.5179317363605000 67.6869437177784300, -164.5206399484748000 67.6875076232782400, -164.5232809938227700 67.6881158419726000, -164.5258498550867000 67.6887672200312500, -164.5283416480485800 67.6894605199870500, -164.5307516368785000 67.6901944261319400, -164.5330752386313400 67.6909675454159600, -164.5336078162477000 67.6911727805994000, -164.5360939039105000 67.6918859429819100, -164.5376486815413800 67.6922538529330500, -164.5390014246759700 67.6926132588948200, -164.5397392042008800 67.6927867552046200, -164.5402196723999300 67.6928975408888500, -164.5404543423939600 67.6929535380753600, -164.5417045124532600 67.6932016385448500, -164.5443461972192000 67.6938098572391600, -164.5469156799146600 67.6944612343984900, -164.5494080763216400 67.6951545334550200, -164.5501384517281500 67.6953733834749300, -164.5505916857576700 67.6954391895670300, -164.5515774308537000 67.6955551796278900, -164.5544570474547500 67.6959800697245000, -164.5572852498144000 67.6964522245905300, -164.5600566653827700 67.6969707458033600, -164.5627660331259000 67.6975346504038400, -164.5654082044250700 67.6981428681988900, -164.5679781610632500 67.6987942444589000, -164.5704710170237800 67.6994875435153700, -164.5728820337788000 67.7002214487608900, -164.5752066265845300 67.7009945671455900, -164.5774403725751000 67.7018054300766000, -164.5795790215545700 67.7026524988138500, -164.5811399109781000 67.7033272700375600, -164.5822517994809300 67.7036455176265700, -164.5832345021705000 67.7039134265634200, -164.5837343750413600 67.7040598757627100, -164.5843902218312600 67.7042262566365000, -164.5857329294311200 67.7045885206437700, -164.5869606685999400 67.7048782597239600, -164.5894541702737000 67.7055715578811700, -164.5918658120575600 67.7063054622273600, -164.5930399372432800 67.7066958543302900, -164.5937906139456600 67.7069045617961400, -164.5962023924264500 67.7076384661423300, -164.5985277190789300 67.7084115827283900, -164.6007621701380000 67.7092224447600900, -164.6029014936090000 67.7100695125980100, -164.6049416164624000 67.7109511764557000, -164.6064414653013400 67.7116521017631500, -164.6078785792330200 67.7123717329691300, -164.6083457986197000 67.7126249442857800, -164.6105761685553000 67.7134444532989600, -164.6127158769361400 67.7142915202375100, -164.6147563667129200 67.7151731831959300, -164.6159880287245300 67.7157450962592400, -164.6171779109318200 67.7163296232136000, -164.6189410488902600 67.7172205285046400, -164.6208519526554700 67.7178556027539000, -164.6230873021372600 67.7186664638862800, -164.6252274871587800 67.7195135299255000, -164.6272684301938800 67.7203951928839300, -164.6284511879719300 67.7209436516282600, -164.6293037704526200 67.7213609451515600, -164.6304549395438000 67.7217784698006000, -164.6325954078517700 67.7226255358398800, -164.6346366215827900 67.7235071978989300, -164.6359692666683000 67.7241272228930600, -164.6372527934816000 67.7247620021647100, -164.6453150519480700 67.7288725361386800, -164.6464397566894000 67.7292432258942100, -164.6482985258562600 67.7299016267587000, -164.6500939647646400 67.7305848686967800, -164.6518237639555200 67.7312920757687500, -164.6527409393428300 67.7316807807434900, -164.6541849825508700 67.7323122127384600, -164.6561237823866300 67.7332267962796700, -164.6579557076897200 67.7341725638128200, -164.6580314827667000 67.7342320764492500, -164.6602612798341700 67.7350554957146200, -164.6624029595289200 67.7359025599552000, -164.6644453288888000 67.7367842202156700, -164.6658351663598000 67.7374398403764000, -164.6662531730454800 67.7375786444389400, -164.6684904021103400 67.7383895019739800, -164.6706323857759500 67.7392365653153100, -164.6726750465161600 67.7401182255757100, -164.6738559669792600 67.7406653353369800, -164.6749986131954000 67.7412240166750600, -164.6761021919625700 67.7417938828814400, -164.6771664325847600 67.7423734069072300, -164.6777368338877400 67.7426182302471600, -164.6792182843962800 67.7433092917904700, -164.6806386718372200 67.7440185538132500, -164.6855820310858300 67.7465727219536100, -164.6858227939867200 67.7466528353601200, -164.6878086103790500 67.7473392357172200, -164.6897245503477000 67.7480536247750300, -164.6915678682625000 67.7487949809037100, -164.6933359174186400 67.7495622420039500, -164.6952727000750000 67.7504884681683300, -164.6962907020542300 67.7508022973881900, -164.6981971379875000 67.7514142185913800, -164.6983272222235000 67.7514515692345800, -164.7009034309485600 67.7521003770308400, -164.7034019535373000 67.7527936697920800, -164.7058184516601800 67.7535275687423600, -164.7081483297815800 67.7543006799325000, -164.7099252876219000 67.7549442563723700, -164.7103047214856700 67.7550135725184100, -164.7128268665666200 67.7555226472524000, -164.7137422361152800 67.7557164538513300, -164.7145761055028300 67.7558958074456000, -164.7172248526448200 67.7565040198446700, -164.7198012052613800 67.7571553898094400, -164.7223002665440400 67.7578486816713600, -164.7247172862737200 67.7585825797223200, -164.7270476671161200 67.7593556900131400, -164.7292869754135400 67.7601665457495400, -164.7314309501781800 67.7610136063928500, -164.7334755102865500 67.7618952630559800, -164.7341743131939600 67.7622024480845700, -164.7349197477481400 67.7624165883549400, -164.7372505099030800 67.7631896977463800, -164.7394901842246000 67.7640005525834700, -164.7416345106241200 67.7648476123275100, -164.7436794043809700 67.7657292689906400, -164.7457768644107400 67.7667209370216600, -164.7519293558550500 67.7697736785125400, -164.7529306628198000 67.7701057118092100, -164.7551709999416700 67.7709165657469700, -164.7570016131339200 67.7716394875723700, -164.7573199524538300 67.7717504648121600, -164.7575490304633700 67.7718056094414000, -164.7598807270139200 67.7725787179335300, -164.7621212997581500 67.7733895718712900, -164.7642664859095600 67.7742366307160200, -164.7663121998481300 67.7751182855804500, -164.7682545457106800 67.7760328619270900, -164.7692881833030000 67.7765685125268600, -164.7693596425334600 67.7765983268513400, -164.7694672949796500 67.7766439422641700, -164.7697376671595700 67.7767444082279000, -164.7717129938595500 67.7774445799034900, -164.7738585514309800 67.7782916378488400, -164.7759046197024000 67.7791732918140000, -164.7779638297669000 67.7801454040872000, -164.7873855160287000 67.7848091587157500, -164.7876131002643400 67.7849256056322200, -164.7879062243927000 67.7850227432051000, -164.7884555114127000 67.7852214223308400, -164.7891843121063000 67.7854054586950400, -164.7916863897151000 67.7860987478590000, -164.7941063259461600 67.7868326423126700, -164.7964341041505600 67.7876256411104800, -164.7966653288418000 67.7876998001057700, -164.7990814708332000 67.7884446456039900, -164.8014148257336000 67.7892177522974700, -164.8025976950275700 67.7896455220233000, -164.8046379887521500 67.7902107576204000, -164.8070583503625500 67.7909446511747500, -164.8093919534758500 67.7917177578683000, -164.8116343599377300 67.7925286091081000, -164.8137813015658000 67.7933756643555000, -164.8155675188259000 67.7941448500049000, -164.8158478429036000 67.7942516444978800, -164.8181117863298400 67.7950556141253700, -164.8202589599830000 67.7959026693727700, -164.8223065696924200 67.7967843215392900, -164.8239216261820800 67.7975382402976300, -164.8247381107751700 67.7979336524161900, -164.8263508047458000 67.7984677723698600, -164.8285938587196000 67.7992786218110300, -164.8307414190812000 67.8001256770584200, -164.8327843909868300 67.8010224477278600, -164.8344952459588000 67.8016057785838500, -164.8367386012054400 67.8024166280250100, -164.8383058029704000 67.8030346906985000, -164.8393849750365500 67.8033772901299000, -164.8417052555930400 67.8041468759776100, -164.8439352199344200 67.8049537675024100, -164.8460706736226500 67.8057964484473800, -164.8481075930909300 67.8066733378043400, -164.8500525613765700 67.8075879096543900, -164.8516262094819600 67.8083977500562000, -164.8517485991185400 67.8084554892295200, -164.8518934906920200 67.8085269385674100, -164.8538516916022400 67.8094428342194500, -164.8558266468822000 67.8104707017615200, -164.8598855597707300 67.8126912546977100, -164.8611499517088800 67.8134133761264500, -164.8614595514171400 67.8135912026719400, -164.8617451985820000 67.8137080605785600, -164.8631880996510400 67.8141898049156000, -164.8654326617878800 67.8150006534574500, -164.8673815412251100 67.8157536045452500, -164.8675870632923200 67.8158315029215800, -164.8694911843706400 67.8164560443110500, -164.8708918478804400 67.8169891399369400, -164.8715221485283000 67.8171903677413200, -164.8737463311282500 67.8177813104591700, -164.8765014123103000 67.8186107129141100, -164.8788377790402500 67.8193838151110500, -164.8810828403008200 67.8201946627535200, -164.8832323243123000 67.8210417144036300, -164.8852821382600400 67.8219233629728800, -164.8872283772877600 67.8228379330242300, -164.8890673325913000 67.8237836879669100, -164.8902279400673500 67.8244353142384300, -164.8926532443517200 67.8251667274625400, -164.8949902666874400 67.8259398287601700, -164.8972359592720800 67.8267506755033200, -164.8993860467286400 67.8275977271534300, -164.9009372054876200 67.8282647102482200, -164.9017175831998800 67.8285228354605500, -164.9039635230980700 67.8293336813043800, -164.9061138488750000 67.8301807320551700, -164.9081644650180200 67.8310623788257800, -164.9087833424772500 67.8313515225547700, -164.9100572735243300 67.8317728414435200, -164.9123035272859300 67.8325836872874100, -164.9142768332092400 67.8333702838116300, -164.9144522774506000 67.8334360062667100, -164.9160187327782700 67.8339990358268800, -164.9162817359133400 67.8340855524063500, -164.9170321446177600 67.8343057478121000, -164.9193700824633000 67.8350788491096600, -164.9199597238621500 67.8352916655779800, -164.9201637980208400 67.8353565894351000, -164.9225916276015000 67.8360827524171600, -164.9249297426135000 67.8368558528154000, -164.9257760820005700 67.8371612949578700, -164.9266448118086000 67.8373410253680600, -164.9293027949879600 67.8379492287739400, -164.9318881318317800 67.8386005897454500, -164.9343959093437200 67.8392938726141800, -164.9368213593182600 67.8400277598733000, -164.9391598700319400 67.8408008602715400, -164.9406394463533400 67.8413347455021400, -164.9415026669145200 67.8415322384221300, -164.9436637647709000 67.8420860634211600, -164.9440883275142700 67.8421833349929700, -164.9442028354924300 67.8422104954181000, -164.9452075212101000 67.8423960390460400, -164.9478660799556000 67.8430042415525300, -164.9504519761777300 67.8436556025241100, -164.9529602968801800 67.8443488844934600, -164.9553862729581000 67.8450827717525700, -164.9576063861258000 67.8458165708780700, -164.9577263970555500 67.8458514735667100, -164.9588453047669800 67.8461286086484300, -164.9613538916687500 67.8468218897185100, -164.9637801240534400 67.8475557769775700, -164.9661193892983400 67.8483288764765000, -164.9683672357593000 67.8491397196224300, -164.9705193871599500 67.8499867676752600, -164.9725717452898000 67.8508684117478500, -164.9735653378700000 67.8513245335004700, -164.9819026467896800 67.8552377148487300, -164.9835672865010600 67.8560500976339500, -164.9851486417963400 67.8568858457052800, -164.9864373927714200 67.8576420757212900, -164.9866405055548500 67.8577632818500500, -164.9867930305738600 67.8578123812364400, -164.9873816530408000 67.8579480772420400, -164.9875229707085000 67.8579818710665600, -164.9881412627091000 67.8581143798747900, -164.9888373433687000 67.8582794306512400, -164.9915031011871300 67.8588662832524400, -164.9940907564832000 67.8595176415260000, -164.9966007823002500 67.8602109216967600, -164.9990284086341300 67.8609448071571800, -165.0000000001998300 67.8612657221354400, -165.0000000001998300 68.9097889226207500, -164.9978567412955500 68.9099780410538200, -164.9946614033010800 68.9102072305792600, -164.9914430489575000 68.9103858620179600, -164.9882059662323300 68.9105125504139000, -164.9877449566644000 68.9105598106867800, -164.9845803709873200 68.9108390384909000, -164.9813829771426600 68.9110524548070200, -164.9809285398202400 68.9110928946214500, -164.9777998442873500 68.9114146423718800, -164.9772084312240800 68.9114828037884300, -164.9741242854074000 68.9118700734451900, -164.9709963893718300 68.9121988053306600, -164.9678315680723700 68.9124780295375100, -164.9657641597881000 68.9127310699829500, -164.9626361423440500 68.9130598018684300, -164.9594711987368000 68.9133390296725600, -164.9562753742091300 68.9135682191980000, -164.9546822818617800 68.9136566270517500, -164.9526918465514600 68.9138657994671500, -164.9495248965567000 68.9141295787171700, -164.9474318243192000 68.9143700646268400, -164.9443035748500700 68.9146987965123100, -164.9435918378929700 68.9147615853789300, -164.9432869560281700 68.9148020854479500, -164.9403059507589800 68.9152886888219900, -164.9372691605433000 68.9157144521602700, -164.9341835731134000 68.9160920595010100, -164.9310550799279700 68.9164207913864900, -164.9278896560827300 68.9167000191906100, -164.9246933459211600 68.9169292096153800, -164.9214722549406000 68.9171079237917200, -164.9182325372018000 68.9172358217758200, -164.9149803809398000 68.9173126580527700, -164.9117219995706000 68.9173382860331600, -164.9111684003014000 68.9173354954368200, -164.9095276106107200 68.9174648251416200, -164.9074608048722200 68.9176888840348200, -164.9069201189683000 68.9177614008680200, -164.9038830184864800 68.9181874438954800, -164.9007970857169000 68.9185650521354800, -164.8976682426952000 68.9188937840209500, -164.8945007944760400 68.9191593664116900, -164.8924369322186300 68.9193980500800200, -164.8893079713857300 68.9197267819655000, -164.8861420735978000 68.9200060088702500, -164.8829452858962000 68.9202351992950600, -164.8824658833937600 68.9202604189832200, -164.8793367256093600 68.9205877785032000, -164.8761707046143000 68.9208670054080100, -164.8729737919069300 68.9210961958328300, -164.8697520938840000 68.9212749100091200, -164.8665117655055500 68.9214028079932700, -164.8632589959059000 68.9214796442702200, -164.8600000002997500 68.9215052731498800, -164.8597445532684800 68.9215051157685300, -164.8381072632395800 68.9214770821017200, -164.8368299597348000 68.9214655177195300, -164.8344772936921200 68.9216730039060500, -164.8312802649722400 68.9219021934315500, -164.8280599573011500 68.9220808365614000, -164.8270817413292700 68.9221194570473600, -164.8260601591490000 68.9222267731471400, -164.8228939034308700 68.9225060009512200, -164.8196967542018300 68.9227351904767100, -164.8164763125317600 68.9229138345058900, -164.8157944888245700 68.9229407521140700, -164.8143949125951000 68.9230877705841700, -164.8112285336698600 68.9233669983883000, -164.8080312594350400 68.9235961879138000, -164.8048091971866700 68.9237749020900900, -164.8030398655973000 68.9238447308496800, -164.8028393338681500 68.9238592117333200, -164.7996731024317000 68.9241449955951000, -164.7964757148823200 68.9243741851206000, -164.7950012682938700 68.9244571862502100, -164.7927013223081500 68.9246987657355100, -164.7895347122571400 68.9249779935396400, -164.7863372041986000 68.9252071830650800, -164.7833633170634000 68.9253739605399000, -164.7803716737137400 68.9254869459658200, -164.7788646905530000 68.9256874210377100, -164.7757777109725600 68.9260650292777100, -164.7726478058515300 68.9263937611631800, -164.7694809529835700 68.9266729880679900, -164.7662832003094300 68.9269021784928100, -164.7630606560244400 68.9270808926691000, -164.7621327697115000 68.9271175067675600, -164.7610925346927000 68.9272267582084000, -164.7579255622149000 68.9275059851131600, -164.7547276890316000 68.9277351755379800, -164.7515050233381300 68.9279138897143200, -164.7482637209939000 68.9280417867991000, -164.7450099747305200 68.9281186239753700, -164.7417499835748600 68.9281440711919800, -164.7414111478062000 68.9281588101810000, -164.7395371720028500 68.9283389821583800, -164.7363391783104000 68.9285681725831400, -164.7358920263958700 68.9285789734409500, -164.7353265281966800 68.9286243271510600, -164.7346037088940000 68.9286719120791500, -164.7344043570754000 68.9286934850163700, -164.7341074324120600 68.9287226563255900, -164.7332802674703500 68.9288995412808800, -164.7302961712313000 68.9293726458310000, -164.7272574456745500 68.9297984082699600, -164.7241698914273200 68.9301760165100200, -164.7210394044449200 68.9305047474961700, -164.7199779652109000 68.9305966627058500, -164.7178200752362600 68.9309352835365400, -164.7169946756637300 68.9310740219486300, -164.7148959206102200 68.9314545332002200, -164.7119114790315000 68.9319276377503300, -164.7088724027391600 68.9323534001893000, -164.7057844914611000 68.9327310084293600, -164.7052739013694200 68.9327666674478200, -164.7032033049885000 68.9331215282359700, -164.7012141512120700 68.9334222282532800, -164.7002176025603000 68.9335887997833700, -164.6992577084764400 68.9337395639298000, -164.6989531584614800 68.9337904376786200, -164.6978229120976800 68.9341080746280000, -164.6951121477074200 68.9347606325971500, -164.6923246855358000 68.9353699880345500, -164.6894658423747000 68.9359349763181500, -164.6865410717130700 68.9364545182614800, -164.6835559547435000 68.9369276228116000, -164.6805161904697700 68.9373533852505600, -164.6774275804184800 68.9377309925913000, -164.6742960223435300 68.9380597244767700, -164.6711274967365500 68.9383389513815800, -164.6679280551356000 68.9385681418063400, -164.6674851956852000 68.9385788194570000, -164.6669230627491000 68.9386179822341200, -164.6638801211706200 68.9390203793870500, -164.6607912781949000 68.9393979876271000, -164.6583425789468400 68.9396550165658400, -164.6562223130093200 68.9400739630430000, -164.6532969937612200 68.9405935049863400, -164.6518366557370400 68.9408249077433800, -164.6512779752982900 68.9409243313928100, -164.6503149443791500 68.9410866041635000, -164.6483542271658000 68.9414545033227500, -164.6453684348054000 68.9419276069735400, -164.6423279816510000 68.9423533694125000, -164.6392386719271300 68.9427309767532400, -164.6361064051864000 68.9430597086387100, -164.6329371619204700 68.9433389355435200, -164.6297369954659500 68.9435681250689600, -164.6265147902253700 68.9437467079442900, -164.6232739618238600 68.9438745609622900, -164.6200206904025000 68.9439514413060100, -164.6167611812834700 68.9439772014866900, -164.5983778182816500 68.9439772014866900, -164.5951183091626100 68.9439514413060100, -164.5918650377412600 68.9438745609622900, -164.5886242093397700 68.9437467079442900, -164.5854020040992000 68.9435681250689600, -164.5822018376446700 68.9433389355435200, -164.5790325943787000 68.9430597086387100, -164.5780534161322000 68.9429569440077900, -164.5769603495404600 68.9429138422001400, -164.5737354939978200 68.9427351280238000, -164.5705354489517700 68.9425059384983000, -164.5682151531068000 68.9423015001141800, -164.5537689941437200 68.9422931166340600, -164.5513535509256000 68.9425059384983000, -164.5481535058795500 68.9427351280238000, -164.5449311873244000 68.9429137216909600, -164.5416902438096800 68.9430415792055600, -164.5384368572751200 68.9431184550527400, -164.5351761538563800 68.9431319502793400, -164.5329931422197000 68.9433119360970200, -164.5297929802618000 68.9435411256225200, -164.5265758139226500 68.9437194701774800, -164.5233400738852700 68.9438472422564800, -164.5200919097138400 68.9439242017405700, -164.5168374979521400 68.9439502002416000, -164.4821598952629200 68.9439502002416000, -164.4796317732876800 68.9441729326347900, -164.4764314863240000 68.9444021221602800, -164.4732063879644000 68.9445808363365700, -164.4715991142077200 68.9446442097625400, -164.4710798420610400 68.9446987032826000, -164.4679103631727000 68.9449779301874000, -164.4647099592971500 68.9452071197128500, -164.4615955521929600 68.9453805521707700, -164.4584635525508800 68.9455065975515100, -164.4560256928314200 68.9455635570125800, -164.4528559945085200 68.9458389276245000, -164.4496554665265400 68.9460681171499300, -164.4464336300080000 68.9462466649516700, -164.4431931757244500 68.9463745071778400, -164.4399402802197300 68.9464513983134600, -164.4366811443193200 68.9464771935676600, -164.4300505031282000 68.9464771935676600, -164.4278286066049000 68.9466729247157600, -164.4246279563151000 68.9469021142412500, -164.4215234300622200 68.9470750610652800, -164.4184014048009600 68.9472009283802000, -164.4176932849171400 68.9472086850328200, -164.4173758170403000 68.9472266390981800, -164.4145231971877800 68.9474779222683800, -164.4113224308854600 68.9477071117938200, -164.4082222159824500 68.9478798463778700, -164.4051034507636200 68.9479952284970600, -164.4043887892112300 68.9480596928006500, -164.4012188282862600 68.9483389197054600, -164.3980179378775000 68.9485681092309000, -164.3947922306768700 68.9487468234072500, -164.3915478688390400 68.9488747213913500, -164.3882910513909000 68.9489515576683000, -164.3866580237487700 68.9489643837993100, -164.3846084202423600 68.9491449173041200, -164.3814074120224000 68.9493741068296200, -164.3781833568763800 68.9495527364696800, -164.3749405103962100 68.9496791424784900, -164.3744732514393800 68.9497266869370800, -164.3713030512947500 68.9500059147412100, -164.3681019189683600 68.9502351042667100, -164.3663654495058500 68.9503313029473500, -164.3644459590137800 68.9505326854351200, -164.3612738577023400 68.9507973028532900, -164.3591911357622700 68.9510369505948700, -164.3560576900103500 68.9513656824803400, -164.3528872542433700 68.9516449093851000, -164.3496858835966300 68.9518740989106000, -164.3465251155416200 68.9520497023319800, -164.3433463178782300 68.9521765283241700, -164.3401553182133300 68.9522543448621800, -164.3369579711334400 68.9522830071551300, -164.3304419674228400 68.9522908357535000, -164.3279998862856800 68.9525059068221800, -164.3247983906332000 68.9527350963476800, -164.3215720745915300 68.9529138105239700, -164.3183271003154000 68.9530417076087500, -164.3150696677309700 68.9531185438857500, -164.3118060001467600 68.9531441727654000, -164.3115288147030000 68.9531439875050900, -164.3085656555805000 68.9531398623148600, -164.3063054974007600 68.9533389038673500, -164.3031038803398000 68.9535680933928500, -164.3014296970228800 68.9536608269856400, -164.2994768839510000 68.9538656745613100, -164.2963060884552000 68.9541449014660700, -164.2931043553816700 68.9543740909915600, -164.2913359869662000 68.9544727987806700, -164.2894495897267600 68.9546706721138800, -164.2886306913533000 68.9547427833528000, -164.2883723197267300 68.9547770430261800, -164.2853857287683500 68.9552615662683500, -164.2823434382990200 68.9556873278080000, -164.2792522624819000 68.9560649351486700, -164.2761181026682800 68.9563936661348300, -164.2729469447456800 68.9566728930396400, -164.2716369302001500 68.9567666572554600, -164.2704439273453500 68.9569555616499200, -164.2674014030522800 68.9573813231895700, -164.2643099898141400 68.9577589305303000, -164.2611755898815300 68.9580876615164000, -164.2591705702655800 68.9582641939374500, -164.2570840540858000 68.9585945562938000, -164.2540413049622100 68.9590203187327700, -164.2509496623969800 68.9593979260735000, -164.2478150286406400 68.9597266570596000, -164.2458774123127000 68.9598972422639900, -164.2445900948569600 68.9600895514916500, -164.2437521866141000 68.9602279355708000, -164.2416596467752500 68.9605934452313800, -164.2396442831571000 68.9609101756641400, -164.2386724622643000 68.9610733036900600, -164.2367158423622000 68.9614274423226400, -164.2345366924144000 68.9617564646891300, -164.2337256765986800 68.9618911282730100, -164.2326694201575800 68.9620593230793600, -164.2312669903792800 68.9624419927038700, -164.2285527465120000 68.9630945497737000, -164.2257617050386200 68.9637039043117900, -164.2228991899456200 68.9642688907967500, -164.2199706637151200 68.9647884327400200, -164.2179569089841200 68.9651045012717500, -164.2169828550746600 68.9652679737380400, -164.2150278593482000 68.9656214297851900, -164.2120387952541600 68.9660945334360300, -164.2089950110109300 68.9665202949756800, -164.2059023171382000 68.9668979023164200, -164.2048259428629500 68.9669951837807400, -164.2034192107279600 68.9672604253284500, -164.2014047904986600 68.9675765271350700, -164.2004310594458000 68.9677399276556000, -164.1985903819405300 68.9680697315329200, -164.1984752066654200 68.9680925086623800, -164.1957981452681600 68.9686758889811200, -164.1929349853612600 68.9692408763654000, -164.1926761173089300 68.9692867912524400, -164.1923360107982400 68.9694039324455700, -164.1898815477951500 68.9701783062838600, -164.1873352073539000 68.9709134516945100, -164.1854119037363400 68.9714206963081400, -164.1840087473058200 68.9719039245265400, -164.1815540064122300 68.9726782983648300, -164.1790073772886000 68.9734134437754800, -164.1763737126766800 68.9741079578160500, -164.1756490506631400 68.9742781581105600, -164.1730143905017000 68.9749689561524500, -164.1719393364312000 68.9752341698211400, -164.1696839356650600 68.9760917876059800, -164.1673252243795700 68.9769039113864400, -164.1648644265520100 68.9776636469598000, -164.1647184683825700 68.9777120062041700, -164.1623557650065000 68.9785072290254700, -164.1602019417661600 68.9793824537372900, -164.1579438835034000 68.9802307770288000, -164.1555847297514400 68.9810428999099400, -164.1531289717246400 68.9818172728489000, -164.1505812876962400 68.9825524182595600, -164.1490234433772000 68.9829630612962900, -164.1472575373054800 68.9835708932821500, -164.1448014977908700 68.9843452662211100, -164.1422535205834700 68.9850804107324500, -164.1404782022072500 68.9855483261943600, -164.1390412177779600 68.9860428858705200, -164.1365849021714800 68.9868172588094800, -164.1340366398789900 68.9875524033208200, -164.1314012863402600 68.9882469173613800, -164.1292084927776800 68.9887734902044400, -164.1286853751299200 68.9889052103072800, -164.1280419129039400 68.9890809153520200, -164.1273453340199000 68.9892195854155800, -164.1253266572993500 68.9897420825311700, -164.1247095389140600 68.9899139132965000, -164.1219919108979500 68.9905664694670700, -164.1191973899475700 68.9911758222064600, -164.1163313063446800 68.9917408086914200, -164.1133991279673400 68.9922603488361100, -164.1112516476454000 68.9925866606459400, -164.1104053954926000 68.9927275007735800, -164.1095267434644100 68.9928714678440000, -164.1087464826640000 68.9930664624473600, -164.1059516442529400 68.9936758151868000, -164.1030852350955000 68.9942408007723900, -164.1003896062952700 68.9947118161974200, -164.1001523606429000 68.9947586771712600, -164.0975934341896000 68.9953148098306900, -164.0947268118928300 68.9958797963155900, -164.0927201690005600 68.9962352776360000, -164.0919196302866700 68.9964274519654200, -164.0891243655969700 68.9970368047048000, -164.0862575193689800 68.9976017902904500, -164.0833245603801300 68.9981213313344000, -164.0803310860107700 68.9985944331866100, -164.0772828096539200 68.9990201947262600, -164.0741855499231600 68.9993978002683000, -164.0736390265198300 68.9994416440167100, -164.0716879599313800 68.9997883263702100, -164.0696808835659000 69.0000894517668300, -164.0686931140959000 69.0002549647948600, -164.0667451195915600 69.0005933239228300, -164.0647349684440100 69.0009093618776300, -164.0637526416710400 69.0010739548991400, -164.0618013196751400 69.0014273210140900, -164.0597923412435400 69.0017427555238200, -164.0588086609908800 69.0019075688792300, -164.0568585189055000 69.0022603189586300, -164.0538644815605400 69.0027334208107800, -164.0508156323355400 69.0031591814511100, -164.0479929257329000 69.0034663044264700, -164.0477133894613400 69.0035099161497700, -164.0471697465865200 69.0035895259359200, -164.0466562229063400 69.0036615796182700, -164.0463925389844600 69.0036896528552600, -164.0460931160044700 69.0037533707215400, -164.0450587283776000 69.0039706882967000, -164.0443423338316200 69.0041478529411200, -164.0393110874367200 69.0052600058446600, -164.0375000335996600 69.0056477791217700, -164.0346320650177500 69.0062127656066800, -164.0316979593932800 69.0067323057513700, -164.0287033132073000 69.0072054076035200, -164.0256538443494200 69.0076311682438500, -164.0233019400324700 69.0079227239546100, -164.0209242980179200 69.0081861128988400, -164.0185235443261000 69.0084210436962700, -164.0161023283597500 69.0086272582414000, -164.0117846931090600 69.0089610470147400, -164.0087892132515600 69.0094274003543000, -164.0057394359262000 69.0098531609946200, -164.0041382191035000 69.0100513868620700, -164.0015002422423400 69.0107468532847300, -163.9990284771824300 69.0113398104839500, -163.9987807562269000 69.0114021227098500, -163.9981128738100400 69.0115808503759900, -163.9953925712101700 69.0122334056472400, -163.9941291550364600 69.0125086260723000, -163.9939763692140400 69.0125472420616000, -163.9934139646827000 69.0126784297658000, -163.9931622507372400 69.0127626728591400, -163.9907985635028600 69.0135708108443300, -163.9883391776109200 69.0143451828839100, -163.9857877281211200 69.0150803264959300, -163.9831490785671000 69.0157748387378500, -163.9816438086148500 69.0161174291760600, -163.9814273588854700 69.0161759507595900, -163.9799348907825400 69.0167993563052800, -163.9776729951126000 69.0176476768988300, -163.9753098321829700 69.0184597979813400, -163.9728498995032500 69.0192341691216600, -163.9702978834405400 69.0199693118343000, -163.9689818578264600 69.0203156227678400, -163.9686987053809200 69.0203985492536800, -163.9683573101417300 69.0205302306856700, -163.9673463579480300 69.0209462561648500, -163.9653690050755000 69.0216993655333200, -163.9633970796115000 69.0224219815892200, -163.9607733156359800 69.0233375642772000, -163.9588334303185200 69.0239512814265500, -163.9585625689074000 69.0241286268347400, -163.9582589613819400 69.0243090308371700, -163.9579617174592600 69.0245838177890000, -163.9566460245943300 69.0256583493534200, -163.9552006234100000 69.0267112854974700, -163.9536282505433000 69.0277406189344400, -163.9519318863474400 69.0287443864443200, -163.9501147503954000 69.0297206742697500, -163.9481802924864800 69.0306676190154500, -163.9461321881499300 69.0315834157420900, -163.9439743305508700 69.0324663161675900, -163.9417108241951600 69.0333146349625000, -163.9395468961723000 69.0340544082843600, -163.9393483753272300 69.0341321816549100, -163.9380294026347800 69.0347214075669600, -163.9358712374676000 69.0356043070931400, -163.9336914265181000 69.0364211433211500, -163.9336144724299200 69.0364623295728800, -163.9327601083922700 69.0370992627208600, -163.9311869926855300 69.0381285952585100, -163.9294898289924000 69.0391323618690600, -163.9276718350871000 69.0401086487951800, -163.9258359060022200 69.0410069366208700, -163.9257386874904000 69.0410593536063300, -163.9246362814392000 69.0417163569243800, -163.9228180743946000 69.0426926429511800, -163.9208824752460000 69.0436395867975500, -163.9188331622206400 69.0445553826248800, -163.9166740320809000 69.0454382821510500, -163.9144091902319000 69.0462866009459000, -163.9120401466354300 69.0470927865029600, -163.9111182614985300 69.0475206515568500, -163.9095927010423000 69.0481943732717700, -163.9074332129723600 69.0490772718986200, -163.9051679961061200 69.0499255906935300, -163.9029873847599700 69.0506738751992100, -163.9028063548293800 69.0507480989456900, -163.9021211101011200 69.0510902460180800, -163.9003243869608800 69.0518883637570300, -163.8981645364641500 69.0527712632832000, -163.8958989391846600 69.0536195811788000, -163.8953937872934100 69.0537928967248700, -163.8939980178941800 69.0544163571292400, -163.8918379182852600 69.0552992557561000, -163.8895720611017200 69.0561475745510000, -163.8872047558947400 69.0569596929355500, -163.8847405127644400 69.0577340622772300, -163.8821840234738800 69.0584692031912400, -163.8795401605499400 69.0591637136345200, -163.8768139628940300 69.0598162671071200, -163.8754811622258400 69.0601059729123700, -163.8746039626027800 69.0603581976727100, -163.8719598721503400 69.0610527081160500, -163.8705931553498000 69.0613798230204500, -163.8705250155170200 69.0613986602200500, -163.8679675720457900 69.0621329863482700, -163.8673282296141000 69.0623486788484800, -163.8648633812400000 69.0631230472908400, -163.8623062642227000 69.0638581882049000, -163.8596617519882300 69.0645526986481900, -163.8586010690840500 69.0648065251011200, -163.8566964335935000 69.0654596694282600, -163.8542312362825000 69.0662340378706300, -163.8522563160761000 69.0668004254993100, -163.8499889273470800 69.0676475436992500, -163.8476203828743400 69.0684596611844800, -163.8463968210564300 69.0688439540852500, -163.8447703045059100 69.0694525388036600, -163.8424015648802800 69.0702646571882600, -163.8399358279760600 69.0710390247312500, -163.8373777891536000 69.0717741656453100, -163.8347323227385000 69.0724686751892700, -163.8320044721286600 69.0731212286618200, -163.8291994381035600 69.0737305778039900, -163.8263225707300000 69.0742955615909300, -163.8248885001041800 69.0745487054584300, -163.8228365026024800 69.0750198458892400, -163.8226571346190500 69.0750652265790000, -163.8200402585510700 69.0756623368474200, -163.8199236380654000 69.0756913148023800, -163.8176351611337500 69.0762028617726900, -163.8171237283773400 69.0763254609513000, -163.8158795783798200 69.0766636635972300, -163.8131512061632000 69.0773162161705200, -163.8103456352428400 69.0779255662119500, -163.8074682183835500 69.0784905490996300, -163.8054090137149800 69.0788539714337200, -163.8052076033481800 69.0788936018582800, -163.8045264990986000 69.0790205564536000, -163.8023307584577000 69.0794625462595500, -163.7993868529209000 69.0799820837062300, -163.7984915625355600 69.0801230524369900, -163.7977878637189000 69.0802821452048800, -163.7960723070912600 69.0806475577386400, -163.7947429706115700 69.0809085418957200, -163.7936221311564000 69.0812926261538100, -163.7911551540870500 69.0820669936968600, -163.7885958292341000 69.0828021346108600, -163.7859490327216500 69.0834966432555600, -163.7832198106457000 69.0841491958287900, -163.7804133655843400 69.0847585449709500, -163.7775350512016200 69.0853235278585800, -163.7745903587580200 69.0858430653052600, -163.7715849081169800 69.0863161653588200, -163.7704629777841800 69.0864692245751300, -163.7679146237608400 69.0868984449073800, -163.7653230564139000 69.0872961853706900, -163.7626915124033400 69.0876589215220600, -163.7621850978639500 69.0877204126669500, -163.7610941923430800 69.0879345205617000, -163.7597190767739300 69.0881567907034100, -163.7593308556344600 69.0882614915746600, -163.7588016207981200 69.0884411185628600, -163.7561541443982000 69.0891356272075000, -163.7552801859318000 69.0893445352221500, -163.7547459400730400 69.0894850228156100, -163.7521012254911500 69.0901916246438100, -163.7493968076165600 69.0908422059031300, -163.7416148831203200 69.0947711397763600, -163.7397994262025200 69.0956487153160300, -163.7392975901116800 69.0958717435861400, -163.7390259660754500 69.0960454665251400, -163.7373243237585100 69.0970492277397200, -163.7355015319701000 69.0980255101692400, -163.7335610504021300 69.0989724504183300, -163.7315065680736300 69.0998882417490000, -163.7305234705817000 69.1002918179131000, -163.7296202796521500 69.1007755038864400, -163.7276795552672300 69.1017224432362100, -163.7256248148333000 69.1026382345669400, -163.7251309539303500 69.1028396467323800, -163.7247015474384300 69.1030306636342900, -163.7200301009084000 69.1052099358898900, -163.7188701544340600 69.1060030821765800, -163.7176409934370700 69.1067954424557300, -163.7159385174486000 69.1077992036703700, -163.7141148317340700 69.1087754843011900, -163.7121733986833800 69.1097224236509600, -163.7101179082148700 69.1106382140823700, -163.7084872062195600 69.1113030235158000, -163.7074570894730800 69.1118054180856200, -163.7054014038516800 69.1127212094163500, -163.7032355566755700 69.1136041035466000, -163.7009636686383700 69.1144524187441800, -163.7000048411504700 69.1147741134346300, -163.6987132959818000 69.1153332021656300, -163.6965471915996000 69.1162160971952000, -163.6942750328664400 69.1170644114934600, -163.6925868327161300 69.1176419498161700, -163.6924676716457200 69.1176887739178500, -163.6903031887411300 69.1185770909600600, -163.6880307844931000 69.1194254052583100, -163.6858596493033500 69.1201680779944400, -163.6807580201664800 69.1228645071913100, -163.6796475220155000 69.1234351890827800, -163.6784960102826300 69.1239954433351000, -163.6773042502909000 69.1245448958303500, -163.6760730379403000 69.1250831778464200, -163.6739059685855600 69.1259660719766800, -163.6716327981151300 69.1268143853756700, -163.6692578522680300 69.1276265001629300, -163.6687482847055400 69.1277861118396700, -163.6671553767192200 69.1285616673870900, -163.6651116313966600 69.1294711661614700, -163.6629441276693300 69.1303540602917200, -163.6606705012426000 69.1312023736906600, -163.6582950796541800 69.1320144875786000, -163.6558347485747600 69.1327859278283700, -163.6554317983387800 69.1329814269513500, -163.6535121612572000 69.1338331559754200, -163.6513442249559800 69.1347160492063600, -163.6490701452709700 69.1355643626053000, -163.6479316098558700 69.1359535298315700, -163.6476682487906000 69.1360783296512400, -163.6435312549634200 69.1379687567528000, -163.6418860154272500 69.1386941427205700, -163.6397175979887200 69.1395770359515000, -163.6374430128847200 69.1404253493504400, -163.6350665894515300 69.1412374632383800, -163.6325928512790400 69.1420118271841500, -163.6323924400590200 69.1420410776336800, -163.6320584687233300 69.1421600903160000, -163.6306198906953900 69.1428051335501600, -163.6284510658639700 69.1436880258817700, -163.6266592952902000 69.1443561466189200, -163.6262375222438300 69.1446514138317500, -163.6249784749766100 69.1454623559030800, -163.6235529317224000 69.1463001184557700, -163.6234824014916000 69.1463524742873100, -163.6221641626459600 69.1474350997501100, -163.6207107269184700 69.1484880251023200, -163.6191296108428300 69.1495173468481400, -163.6174238109600800 69.1505211044654400, -163.6155965648296000 69.1514973823983600, -163.6136513402371400 69.1524443181508000, -163.6115918351950100 69.1533601058842500, -163.6094219626534000 69.1542429982158600, -163.6086787017606500 69.1545029733335900, -163.6070915764151000 69.1555173339578500, -163.6053853088848800 69.1565210915751400, -163.6035575609326700 69.1574973686087400, -163.6016118030422600 69.1584443034618600, -163.5995517323265500 69.1593600911953100, -163.5986746792930000 69.1597168540496300, -163.5985394833104700 69.1597752668151900, -163.5970815617646400 69.1608219985364500, -163.5954995544608400 69.1618513202822700, -163.5939265961354700 69.1627798559056800, -163.5922496429066700 69.1636850460280900, -163.5917181210943700 69.1639481930547000, -163.5912622655411000 69.1643546209690500, -163.5900058254085000 69.1653544458510500, -163.5886359411957000 69.1663352176962000, -163.5871548737983700 69.1672953078322600, -163.5858015326146200 69.1680840303537800, -163.5856444642206200 69.1681889227806400, -163.5849148397480200 69.1687367061341500, -163.5829182413837000 69.1701824904296200, -163.5817876901497500 69.1709682128128500, -163.5805852066419600 69.1717402978765100, -163.5789024105178000 69.1727326655801000, -163.5781018304351000 69.1734715278887500, -163.5767771884165000 69.1745460441646900, -163.5753160194187200 69.1755927075374800, -163.5746949458150800 69.1762394567855400, -163.5734999914314200 69.1773096608122300, -163.5732726005500400 69.1775205392415300, -163.5725067307010400 69.1783224530188400, -163.5713148654886300 69.1794165160594000, -163.5711244241528300 69.1795709557350700, -163.5705315496912200 69.1806379941481900, -163.5697513653332200 69.1817780548134400, -163.5690128087940700 69.1826833348680500, -163.5688419510951500 69.1829117078091300, -163.5687009248078000 69.1831390528250800, -163.5677815352895800 69.1842659177379500, -163.5667247185708700 69.1853774411160900, -163.5656444133589700 69.1863745455489200, -163.5644534771462300 69.1873555925865800, -163.5631537787239000 69.1883190308986400, -163.5617473595529800 69.1892633379327400, -163.5587513733771600 69.1911814830390900, -163.5581726785262600 69.1915452534107700, -163.5564635961180500 69.1925490074307800, -163.5546328327390000 69.1935252817663700, -163.5526838624702500 69.1944722148209000, -163.5506938894114300 69.1953551737023500, -163.5506216666565500 69.1953903938516500, -163.5488628139676700 69.1963312753681000, -163.5471783711848600 69.1971495783904000, -163.5470405851548600 69.1972944178032200, -163.5458476866214000 69.1983884790451500, -163.5445215337417700 69.1994629935223900, -163.5430646356244000 69.2005159134786800, -163.5414797522887200 69.2015452307278500, -163.5398570605548800 69.2025001290777500, -163.5381241865819000 69.2034302744876300, -163.5362841044278400 69.2043340634663200, -163.5343399743103400 69.2052099374886900, -163.5331914627158000 69.2056940785189500, -163.5314770185495400 69.2066879750700500, -163.5296450680654000 69.2076642476070000, -163.5276948351485000 69.2086111797622200, -163.5256300250056300 69.2095269638983300, -163.5252424576732400 69.2096881143151000, -163.5251742539886000 69.2097279138122300, -163.5240515853123800 69.2105368926635300, -163.5225818241918000 69.2115374630835200, -163.5210687822984400 69.2125172070035400, -163.5193580568288200 69.2135209592249200, -163.5175209487327700 69.2144894463309600, -163.5167607275255400 69.2149264853690600, -163.5150642446191700 69.2158390130600800, -163.5132645672060000 69.2167262751975200, -163.5113848114598600 69.2175788567788600, -163.5107277325987500 69.2179616010470800, -163.5089785934872900 69.2188883497176400, -163.5071225663533300 69.2197885207236800, -163.5051628383942600 69.2206605600368900, -163.5036633600760000 69.2213000634472500, -163.5035225604178000 69.2213599331144600, -163.5013459168805200 69.2222428209494800, -163.4990627009828500 69.2230911289524900, -163.4981370971492800 69.2233956798667700, -163.4961822336231600 69.2243331412615200, -163.4941159333036500 69.2252489235990000, -163.4919389003599400 69.2261318114340200, -163.4896552770693500 69.2269801185377100, -163.4872694089560200 69.2277922279290600, -163.4847858375963000 69.2285665873781700, -163.4822092952227600 69.2293017210976100, -163.4813310793658000 69.2295064463654600, -163.4805691710304000 69.2297395731228600, -163.4789143591103500 69.2303202204019000, -163.4764304990682400 69.2310945807503800, -163.4738536572204700 69.2318297135705000, -163.4718647606501600 69.2323480396303800, -163.4716636866298000 69.2324659146702900, -163.4698295687795500 69.2334421863079100, -163.4678770273029300 69.2343891157651100, -163.4658097728027400 69.2353048981026400, -163.4636317344170000 69.2361877850382800, -163.4613470562216300 69.2370360921419800, -163.4589601565859300 69.2378483391295800, -163.4569205274603400 69.2388896119661000, -163.4549190961393500 69.2398636577816500, -163.4539110694402700 69.2403106406236500, -163.4536463746804300 69.2404670462172500, -163.4520718641252000 69.2413573525598200, -163.4504003598886800 69.2422251389790500, -163.4486344079515400 69.2430690771762400, -163.4480770486168800 69.2433147377850000, -163.4475113606607400 69.2436493665251200, -163.4466626290770500 69.2441302007482000, -163.4452025761379400 69.2451828185323300, -163.4436144426523800 69.2462121321842100, -163.4423779800597200 69.2469462739514400, -163.4419848171455700 69.2471636805594800, -163.4419169237270000 69.2472126405509700, -163.4405926351419700 69.2482958937405300, -163.4391324724856000 69.2493488092002300, -163.4375440350291600 69.2503781228521700, -163.4358303346022300 69.2513818714762700, -163.4339946222539800 69.2523581413152000, -163.4320403837566900 69.2533050698731400, -163.4299713315117200 69.2542208504119700, -163.4277913991537300 69.2551037355490300, -163.4267928450137500 69.2554741788903200, -163.4267235828270700 69.2555090474046400, -163.4251404648605300 69.2564492256513000, -163.4234491035932400 69.2573578062178400, -163.4216552537869000 69.2582413604504800, -163.4197618490300700 69.2590984386420700, -163.4180954997075000 69.2598220034827200, -163.4174870184111500 69.2600828356543700, -163.4153064978965200 69.2609657207914300, -163.4130192152645400 69.2618140260964900, -163.4109995205114400 69.2625003940779600, -163.4104391556424800 69.2627488290952400, -163.4086374826336800 69.2634846112258600, -163.4072239525233700 69.2643125037191100, -163.4062091062652000 69.2650437757496900, -163.4046195230725000 69.2660730885023100, -163.4041126831537800 69.2663756887870400, -163.4031739402251400 69.2671918855970700, -163.4021636850060300 69.2680292857230000, -163.4010739027384000 69.2688540809511400, -163.3999058353859700 69.2696653224966800, -163.3986608157440200 69.2704620786620400, -163.3966507662198600 69.2716288078232800, -163.3944757468582000 69.2727578248138200, -163.3913108635055000 69.2743139487298000, -163.3896543671553000 69.2750978194088700, -163.3893528055875000 69.2752277723439000, -163.3876818832123000 69.2760909146640500, -163.3859257410800600 69.2769350830876600, -163.3840958104732400 69.2779140805704400, -163.3821392733087800 69.2788610073296800, -163.3800620830986400 69.2797660463659800, -163.3791305014714500 69.2802470748426900, -163.3781962272740300 69.2806991964108600, -163.3779172054146600 69.2809307817302600, -163.3768215991374600 69.2817605538065800, -163.3756467347090200 69.2825766256108300, -163.3743939674076600 69.2833780492576400, -163.3726776643427200 69.2843817951837800, -163.3724580166241400 69.2844984309578500, -163.3718479237426500 69.2849908187713500, -163.3703852960445600 69.2860437306337100, -163.3687941777091000 69.2870730415876300, -163.3670775832638400 69.2880767875137700, -163.3652387700531700 69.2890530537554800, -163.3632812292453000 69.2899999796154000, -163.3612086795369000 69.2909157574562800, -163.3608564132928200 69.2910581857867100, -163.3605868603952700 69.2912157793847400, -163.3587477818846000 69.2921920465257700, -163.3567899577902800 69.2931389714864300, -163.3547171095069600 69.2940547493273000, -163.3544863893353600 69.2941493750936400, -163.3533754550132000 69.2947987710464900, -163.3515360725317000 69.2957750372882000, -163.3495746493505600 69.2967163396874000, -163.3487327418225400 69.2971992414518900, -163.3479275167414600 69.2976445398636500, -163.3465850123883700 69.2983613984598000, -163.3451783243202000 69.2990626933886300, -163.3442659072457800 69.2994880376429000, -163.3432296400358400 69.3003237875128700, -163.3417659799160000 69.3013766984759000, -163.3401737383273400 69.3024060076311900, -163.3384559306966300 69.3034097517586900, -163.3366158188649000 69.3043860171010800, -163.3346568948997500 69.3053329420616800, -163.3339359956496500 69.3056512535026200, -163.3333265988434300 69.3059909867946500, -163.3321128432331000 69.3066267535219300, -163.3308482363569900 69.3072500097802000, -163.3305737704631000 69.3073812712287300, -163.3297185421769500 69.3079339945582500, -163.3287372586175600 69.3085192850370500, -163.3259073358548500 69.3101593435789000, -163.3243849787837000 69.3110055885371100, -163.3236162661777000 69.3113898283779100, -163.3224108247997000 69.3124712568430800, -163.3210777084694300 69.3135457605284800, -163.3196131571214700 69.3145986696928800, -163.3191941252087000 69.3148693890111600, -163.3185036527213800 69.3154992507898600, -163.3171703502314400 69.3165737535759400, -163.3165841730211400 69.3169938664738100, -163.3158529882248000 69.3177391958072900, -163.3146534769763600 69.3188332444587400, -163.3132985098183400 69.3198924704611800, -163.3129593457971400 69.3201669345564300, -163.3120774202367300 69.3209712405303500, -163.3107437822996800 69.3220457433164400, -163.3092786571842500 69.3230986515815700, -163.3076848201982600 69.3241279589382200, -163.3064327642606200 69.3248608551443800, -163.3063635983014000 69.3249071837196300, -163.3048985847019000 69.3259606450677700, -163.3033045372745600 69.3269899524244100, -163.3019367313950200 69.3277824332128000, -163.3017227718884000 69.3279823641947800, -163.3014986815189200 69.3282391763969500, -163.3002985911070700 69.3293332241490200, -163.2989644387578200 69.3304077260357900, -163.2982838741015000 69.3308966235803700, -163.2980606210008400 69.3311789090794300, -163.2968466423586200 69.3324611687480100, -163.2956463172237400 69.3335552156007700, -163.2943119058697300 69.3346297165882100, -163.2928459308949700 69.3356826239539700, -163.2920501235143700 69.3361801729766400, -163.2908524235005200 69.3372772091759100, -163.2895177828194000 69.3383517101633500, -163.2885693245147000 69.3390328036210200, -163.2877216478357500 69.3398052034474400, -163.2866711290693300 69.3406508629470300, -163.2861659088296000 69.3412656448936700, -163.2851014532694200 69.3423771502853000, -163.2839005795481000 69.3434711962388000, -163.2835403902767600 69.3437610962976100, -163.2831478982568600 69.3442386390020700, -163.2823399644178000 69.3450796211277000, -163.2819114527513000 69.3460426790264800, -163.2812669904792000 69.3471937419976700, -163.2804808310255000 69.3483337837771500, -163.2795544510770200 69.3494606307036200, -163.2784895935199000 69.3505721351959300, -163.2773665911952000 69.3515802689143500, -163.2772815980672800 69.3516655003626300, -163.2772247717058200 69.3517493180766000, -163.2770731828810500 69.3522470217826600, -163.2766037223838400 69.3533206675148200, -163.2759590442744600 69.3544717304860100, -163.2751726222187200 69.3556117713662300, -163.2749175367149200 69.3559219520365100, -163.2746874532633400 69.3563327281729000, -163.2739009628591300 69.3574727681538000, -163.2729741926048600 69.3585996141808900, -163.2719088862860400 69.3597111186732600, -163.2717644191925500 69.3598269774331000, -163.2714793296073600 69.3603607223694800, -163.2706926944122800 69.3615007623503700, -163.2697657514882200 69.3626276074781500, -163.2687002473185200 69.3637391110712000, -163.2674981909887000 69.3648331552260000, -163.2661618523875400 69.3659076535154800, -163.2646937595093600 69.3669605581832800, -163.2645227992877300 69.3670707413217000, -163.2644356127133300 69.3673547562170800, -163.2639335347048500 69.3685146469334800, -163.2632884051357700 69.3696657081060300, -163.2625014326949300 69.3708057462882300, -163.2615740931698300 69.3719325905166800, -163.2613724318922000 69.3721428681988600, -163.2612974122457400 69.3722767035071100, -163.2605103444767800 69.3734167416893100, -163.2595828925364300 69.3745435859178200, -163.2585863142070000 69.3755826158450800, -163.2585277899255200 69.3756612489675000, -163.2582280234045400 69.3762216974734000, -163.2574408126433500 69.3773617356556500, -163.2566768772360600 69.3782897406790700, -163.2564038421635600 69.3787766938893900, -163.2556165387722200 69.3799167320715900, -163.2546888089413500 69.3810435754007200, -163.2539512425557600 69.3818123284762600, -163.2536213649340200 69.3825426274403900, -163.2529758198781500 69.3836936868142400, -163.2521883384210600 69.3848337240971200, -163.2516040407938000 69.3855428080542000, -163.2509581818745500 69.3866936821677300, -163.2501705915995000 69.3878337185513500, -163.2492425227242200 69.3889605609811600, -163.2481757226314600 69.3900720618762000, -163.2469722031046600 69.3911661033330300, -163.2464113409106400 69.3916102263309500, -163.2459375133055600 69.3923607312627800, -163.2442507412786500 69.3948894530858500, -163.2437052529950000 69.3956517085595700, -163.2434470036762400 69.3962096083867600, -163.2430619598415500 69.3969267943361400, -163.2429786997072000 69.3970616998376500, -163.2427379152226000 69.3984175609217600, -163.2425766011292000 69.3991604279114500, -163.2423568994513200 69.3999014360025500, -163.2420789720668800 69.4006400159240700, -163.2417430276186000 69.4013756002038300, -163.2410969222851000 69.4025266577791000, -163.2410164797267400 69.4026430129647500, -163.2409009294343000 69.4029528851675700, -163.2405561734286400 69.4037095981195200, -163.2399528470462300 69.4047917865118000, -163.2392239312394000 69.4058643539568200, -163.2383706328983500 69.4069254937166400, -163.2379135515691000 69.4074161278520600, -163.2378672220946000 69.4076745039752200, -163.2375932166536000 69.4088136239496400, -163.2372319697795400 69.4100010141355600, -163.2367212654740000 69.4111815865610400, -163.2363029710052700 69.4119264536429900, -163.2361463702587500 69.4124713753537300, -163.2358595701630000 69.4132446052543600, -163.2355091637169000 69.4140145832065000, -163.2350222941435300 69.4149046647185600, -163.2344504152544300 69.4157884653654400, -163.2337941664676000 69.4166649797051000, -163.2330542843277200 69.4175332112887400, -163.2294832671390500 69.4214797044248800, -163.2285067239061500 69.4224890018659800, -163.2277959896931300 69.4231510854542600, -163.2274106589747000 69.4234893978174900, -163.2280004118894700 69.4241199493762300, -163.2289377177014800 69.4252460004026400, -163.2297345736916000 69.4263853559994600, -163.2303894420191200 69.4275358488004600, -163.2309239468826300 69.4287563978895200, -163.2312986008497300 69.4299842881444500, -163.2316375841072000 69.4314011403504300, -163.2318374854116000 69.4325106879179500, -163.2319067970610100 69.4336221933096500, -163.2318372992519400 69.4348023970130700, -163.2314865429695500 69.4376915527230400, -163.2313392627967200 69.4385682199474600, -163.2311106110658200 69.4394427296982700, -163.2308008233992500 69.4403141475799000, -163.2305090113817400 69.4409621630734400, -163.2304732462433000 69.4415732569003700, -163.2302590511143000 69.4427441571172000, -163.2298996982124800 69.4439106587499900, -163.2293958485395500 69.4450705395738000, -163.2287484400884200 69.4462215917531000, -163.2282097003174000 69.4469992714992400, -163.2281090877641500 69.4475491511724400, -163.2277496548226700 69.4487156519058400, -163.2272456945331400 69.4498755327297200, -163.2266768283729200 69.4508823174650200, -163.2265540799068300 69.4539569241727600, -163.2264521813230800 69.4550319755453000, -163.2264295687695600 69.4551401567928800, -163.2267662344741300 69.4557308396066400, -163.2272919448673500 69.4569259243919500, -163.2279369260482700 69.4586476458721900, -163.2282206279795700 69.4595130293029100, -163.2284243855769100 69.4603811844441500, -163.2285479767077400 69.4612512020813700, -163.2285912610778000 69.4621221685033600, -163.2285415852259400 69.4630484360365600, -163.2287207850361600 69.4638957529866700, -163.2288244543850300 69.4652611648709200, -163.2287970655321200 69.4660146780350400, -163.2287095435106000 69.4667676255255600, -163.2285619494743700 69.4675194164879600, -163.2283543931407000 69.4682694609669000, -163.2282813573986900 69.4684997800408700, -163.2280815748048000 69.4723985677397900, -163.2285513365749000 69.4838807545932000, -163.2285591786631500 69.4842331485410200, -163.2285012902023600 69.4853121947020900, -163.2281690500615800 69.4883070351415900, -163.2284720343568800 69.4896117463850400, -163.2286598712560000 69.4906855566931700, -163.2287250864935000 69.4917611413636100, -163.2286286440966300 69.4931434353213100, -163.2284619115879000 69.4939122990134600, -163.2285218981670300 69.4942271399705800, -163.2285991013674000 69.4954001383058000, -163.2285302825464700 69.4965731995935700, -163.2283155496229000 69.4977440926158500, -163.2279552875065000 69.4989105870540100, -163.2274501580983000 69.5000704615826000, -163.2268215283908000 69.5011949010239000, -163.2266957986721500 69.5018631548607600, -163.2263414154239500 69.5029834007634100, -163.2258533524502300 69.5040974566324000, -163.2256546985055000 69.5044496869035700, -163.2256883970019000 69.5049831296677800, -163.2256710176033600 69.5055901378746000, -163.2253164814704300 69.5114146438707500, -163.2259074071011200 69.5149905803510800, -163.2260022532014000 69.5157505317616800, -163.2260356962903200 69.5165111189929800, -163.2259524343573400 69.5177973077995800, -163.2256935995799300 69.5190806295674400, -163.2253801624645000 69.5202392315553700, -163.2255042545177200 69.5208107237359600, -163.2256682198124600 69.5218126970983700, -163.2257253042793400 69.5228161138726400, -163.2256831152835200 69.5237417159075300, -163.2255499508695200 69.5246662603397000, -163.2255003604532500 69.5248704702960400, -163.2255974989254000 69.5254924018529400, -163.2256821215326600 69.5262094888768700, -163.2257120536683000 69.5269271100980900, -163.2256431404185500 69.5281001677885800, -163.2254919625840000 69.5289233208546300, -163.2254927458935000 69.5290014260750100, -163.2255847177604800 69.5301771070878700, -163.2255536165061800 69.5309767051109000, -163.2253418657345000 69.5335774338515200, -163.2256691973755400 69.5346114131862100, -163.2258926932931300 69.5357821092570100, -163.2259700547742000 69.5369551012969400, -163.2259613088672800 69.5373959894334300, -163.2257821738082600 69.5415350705870900, -163.2256761050681700 69.5425975026726600, -163.2254500595725500 69.5436576387890600, -163.2251043727685600 69.5447138205864200, -163.2246395680615800 69.5457643978088000, -163.2239891342911000 69.5469154373975600, -163.2234000702570100 69.5477617911738000, -163.2234483809380000 69.5485057805174200, -163.2239693177298000 69.5492463344508600, -163.2246279740017800 69.5503968092654100, -163.2251425516873800 69.5515562332336100, -163.2255120480425600 69.5527224021172400, -163.2257357373144000 69.5538930945907000, -163.2258131689425500 69.5550660848319900, -163.2257818824279000 69.5558675516462600, -163.2256929646585800 69.5565824263379700, -163.2258730053349000 69.5568968068421900, -163.2263877404018600 69.5580562308104500, -163.2267573509709600 69.5592223978953800, -163.2269811094906000 69.5603930903689000, -163.2270585662997700 69.5615660797108700, -163.2270174645843000 69.5624794024025700, -163.2267176117283600 69.5656812406967300, -163.2271242240037200 69.5710081509054700, -163.2275366225170800 69.5717308020349500, -163.2280517182121900 69.5728902233052000, -163.2284215895846600 69.5740563885915400, -163.2284869415191000 69.5743980644192000, -163.2285414836025600 69.5744539671769100, -163.2294854156194000 69.5755799957202600, -163.2302879112580700 69.5767193288340300, -163.2309474209866700 69.5778698000513000, -163.2313122786387000 69.5786543497185300, -163.2316106071437800 69.5794423222054700, -163.2318421367052000 69.5802330286314300, -163.2320066586803200 69.5810257792164200, -163.2321487506643000 69.5818867172982300, -163.2322430185004700 69.5826430750179300, -163.2322762718324600 69.5834000595651800, -163.2322071895101500 69.5845731091617400, -163.2319915914387700 69.5857439913921200, -163.2318726345144500 69.5861275990095600, -163.2320550592935100 69.5870073724922800, -163.2321524342873700 69.5881509584999700, -163.2321853485749400 69.5895119448204600, -163.2321880321519200 69.5897050535454600, -163.2321189309438700 69.5908781031420200, -163.2319947678442400 69.5915675575967600, -163.2323443711957500 69.5926998427236200, -163.2325520156629800 69.5938264216520700, -163.2326239956008700 69.5949550492362000, -163.2325548782050400 69.5961280979334400, -163.2323391659197400 69.5972989783651900, -163.2322721322531000 69.5975150305942500, -163.2323278506497700 69.5980036052822000, -163.2323887527387300 69.5990390451158900, -163.2323649395902700 69.5997422043393000, -163.2323376649512500 69.5999927095959400, -163.2323604393827500 69.6000951010081500, -163.2324707376344000 69.6009136756256900, -163.2325094921193300 69.6017330425459600, -163.2324641995631400 69.6026892476107300, -163.2323214564700000 69.6036442853555300, -163.2320483413578500 69.6050054056750000, -163.2318834965261000 69.6056981696348800, -163.2316673534655500 69.6063892167889500, -163.2314000515711000 69.6070780830871200, -163.2310817635125500 69.6077643098750500, -163.2306103667749800 69.6085961099225900, -163.2308736415053300 69.6089693222764400, -163.2315341557766400 69.6101197880977900, -163.2320501885653200 69.6112792039721200, -163.2324207335300000 69.6124453638624900, -163.2326450631191500 69.6136160491414000, -163.2327227249737400 69.6147890303894900, -163.2326813408711500 69.6157043666632400, -163.2325506010293700 69.6166186813071600, -163.2322786928074000 69.6180348014649400, -163.2321143444014500 69.6187480933499000, -163.2318955906089900 69.6194596081744500, -163.2316225807175000 69.6201688414189400, -163.2312955026852700 69.6208752921610900, -163.2310612202990400 69.6212884407090100, -163.2310163531221600 69.6216046396424400, -163.2307997361189000 69.6225099134018100, -163.2304954828802000 69.6234121213723800, -163.2298622567377300 69.6250503974579300, -163.2293971372680500 69.6260972838626300, -163.2291672210903600 69.6265112013309100, -163.2289686849568000 69.6276626950773900, -163.2286310983464800 69.6287891049332800, -163.2281576340675400 69.6299095621766400, -163.2276055888268300 69.6310488017608700, -163.2275263873329000 69.6312092767867600, -163.2273008733366200 69.6316067708358400, -163.2272599254052000 69.6318818095978700, -163.2271029892115500 69.6326964775604400, -163.2268751055016800 69.6335091094579200, -163.2265764784217200 69.6343189561549700, -163.2262073732716200 69.6351252712143500, -163.2255542289444700 69.6362763009106000, -163.2253280503492200 69.6365999156536200, -163.2245742817776500 69.6386729914654600, -163.2240295471258700 69.6399312653156800, -163.2239205618844000 69.6401232858610200, -163.2238010069109200 69.6407709263372100, -163.2234383561951500 69.6419374027889800, -163.2229298651211600 69.6430972602304300, -163.2222764770777000 69.6442482881280400, -163.2214794142435300 69.6453882957333100, -163.2211275266140300 69.6458104581861300, -163.2207841582622600 69.6464152855370500, -163.2199870153884300 69.6475552922430000, -163.2190476780079000 69.6486821067938400, -163.2179679150871700 69.6497935807092300, -163.2171822682470600 69.6505006519835800, -163.2170906003509000 69.6506042808629200, -163.2170188488407800 69.6507363328155400, -163.2166550703751700 69.6515422476766700, -163.2160014251256500 69.6526932755742800, -163.2152040475287400 69.6538332822802300, -163.2142644349556800 69.6549600950324400, -163.2138637258302700 69.6553724512776900, -163.2137625161272000 69.6554912355321700, -163.2136874704004000 69.6556368834354800, -163.2134486734175000 69.6561812412713300, -163.2128754689277300 69.6572035644929900, -163.2121888428408000 69.6582173954165000, -163.2113898113906600 69.6592212105904300, -163.2108040433718700 69.6598598470543500, -163.2100062170132700 69.6610002710457400, -163.2090662887782000 69.6621270828986200, -163.2079858450706500 69.6632385559146900, -163.2067669237545000 69.6643325694925600, -163.2064173204029800 69.6646097729227400, -163.2056620436683500 69.6655150772590400, -163.2045814281903200 69.6666265493757900, -163.2043130570019400 69.6668673815244700, -163.2039698927963000 69.6674712537953800, -163.2031719639149700 69.6686112587027000, -163.2022317011320600 69.6697380705555800, -163.2011508716154000 69.6708495417730100, -163.2002759472771000 69.6716376113867000, -163.2001004877472800 69.6718882524409700, -163.1991600801735300 69.6730150633945300, -163.1980790851816000 69.6741265346119600, -163.1968595415346000 69.6752205472905100, -163.1955037523962300 69.6762950159023300, -163.1940142817337000 69.6773478926911600, -163.1923939507202300 69.6783771694708800, -163.1913400397110400 69.6789940477371500, -163.1906871849655800 69.6793647608750500, -163.1905233509718300 69.6799551307247500, -163.1902210204836800 69.6807779843165900, -163.1898457792593000 69.6815972055466700, -163.1891912149026200 69.6827482298470000, -163.1889925519646700 69.6830318571345500, -163.1887907980568600 69.6838727250462900, -163.1884591083011700 69.6848348512474400, -163.1880278384139700 69.6857921993506000, -163.1877864217059700 69.6862342817867100, -163.1876357277066300 69.6870488724076200, -163.1872722963793500 69.6882153425640900, -163.1867627072331300 69.6893751946096200, -163.1861880566334800 69.6903853248229600, -163.1861519857255300 69.6904571374869900, -163.1861115171328000 69.6905282729615000, -163.1855007650482300 69.6916102167381800, -163.1850419183498000 69.6922650311063300, -163.1848029828713300 69.6927921894080700, -163.1841480758729700 69.6939432128090700, -163.1833491577374000 69.6950832141191100, -163.1830500782984400 69.6954411856622200, -163.1828913452593500 69.6962988619030200, -163.1825277583493500 69.6974653311601700, -163.1820179479698800 69.6986251814070700, -163.1815545147290400 69.6994655421011700, -163.1810142820834200 69.7003003575754900, -163.1809479274049000 69.7003979196283600, -163.1809516928663000 69.7005939529486200, -163.1808822553118100 69.7017669881560100, -163.1806654926183700 69.7029378541987000, -163.1803017932931000 69.7041043225564700, -163.1797918246329900 69.7052641728033700, -163.1791365354227400 69.7064151935064200, -163.1783371505390500 69.7075551939171300, -163.1773951682524000 69.7086820021727400, -163.1770547505762500 69.7090314301564100, -163.1769998190863500 69.7091531659858700, -163.1763444111656200 69.7103041875882400, -163.1755448796924000 69.7114441870996300, -163.1746027256352500 69.7125709944558600, -163.1735197215578800 69.7136824611766900, -163.1733651316954500 69.7138117890828500, -163.1728968924775800 69.7143580570787500, -163.1727219761382600 69.7146651809533800, -163.1719222809884400 69.7158051804647700, -163.1709900248697200 69.7169218344751600, -163.1708688025531700 69.7171371771390800, -163.1700690147732000 69.7182771766504200, -163.1691265585438000 69.7194039831073800, -163.1685686560186400 69.7199763647175200, -163.1684318547462700 69.7203420758261800, -163.1680709343261200 69.7211251497059300, -163.1674439341901700 69.7222306943911000, -163.1666838937466700 69.7233261567767500, -163.1657921305023800 69.7244096096158600, -163.1647701885933000 69.7254791499428800, -163.1646613967060700 69.7255854722917500, -163.1641253450086400 69.7265261622526400, -163.1633252046944200 69.7276661599653400, -163.1623823329782700 69.7287929655229800, -163.1612985033232500 69.7299044313445000, -163.1610919155594400 69.7300996049128800, -163.1593338200996800 69.7317240737070800, -163.1591538450738600 69.7322432864985400, -163.1586432055195000 69.7334031322488400, -163.1579870520607800 69.7345541502538700, -163.1571866104736700 69.7356941479666300, -163.1568613086025000 69.7360603698902000, -163.1563508390199800 69.7371811266077700, -163.1556945686494000 69.7383321446128500, -163.1548939849694000 69.7394721414262300, -163.1539505898478200 69.7405989451852400, -163.1528661576470300 69.7417104092080500, -163.1517439350345500 69.7427159384898200, -163.1510189717481300 69.7436084229904000, -163.1497940681417200 69.7448764041228000, -163.1491730287122800 69.7454316644398200, -163.1489226988234700 69.7458114373480400, -163.1482445011827500 69.7466993577891700, -163.1474791160683300 69.7475787319729600, -163.1463997722317000 69.7487461841890900, -163.1454497338181400 69.7497103950187800, -163.1449630782834000 69.7501454060856600, -163.1448713906021600 69.7503471078328000, -163.1442147155366600 69.7514981240392400, -163.1438370425454400 69.7520355813770200, -163.1434913296611200 69.7528201040646000, -163.1428345781532400 69.7539711202710500, -163.1423826463420000 69.7546141778021300, -163.1423574194593000 69.7546752867351600, -163.1420079411135800 69.7558245510622300, -163.1415062956789700 69.7569590988833900, -163.1408494164673800 69.7581101141904600, -163.1400480881487200 69.7592501083059300, -163.1396345582882000 69.7597435735072000, -163.1391085780983600 69.7606651097070800, -163.1383071535522600 69.7618051047218700, -163.1373848277475800 69.7629127358341600, -163.1371843706621400 69.7635246417488600, -163.1367277300007000 69.7645420879470600, -163.1360706169653800 69.7656931023548700, -163.1352690026623000 69.7668330955709700, -163.1343243916573200 69.7679598975312800, -163.1332385619100800 69.7690713588562000, -163.1323520884781000 69.7698768573311600, -163.1298123202823300 69.7720773697748800, -163.1297130513162300 69.7721752978517900, -163.1291951443404000 69.7730742286927400, -163.1291658129518700 69.7731409925627900, -163.1288347068562000 69.7742432313401100, -163.1283230618598000 69.7754030725938000, -163.1276656124780000 69.7765540852029200, -163.1268635889834000 69.7776940784190200, -163.1267842076250600 69.7777712744248200, -163.1261842141301500 69.7788103097480500, -163.1254733360256000 69.7798476174736500, -163.1246440828581000 69.7808743590644600, -163.1242826138515000 69.7812618868266600, -163.1240996800561600 69.7815820778506600, -163.1234337203898700 69.7825284452316000, -163.1232394497408000 69.7829590622110300, -163.1230077124359600 69.7833646258768600, -163.1229239675670300 69.7836322191516300, -163.1224120968407800 69.7847920595060000, -163.1217543578772800 69.7859430712158000, -163.1209519800498200 69.7870830626333100, -163.1202157050907000 69.7879605050733300, -163.1196541468214000 69.7889430665693500, -163.1188516556793500 69.7900830579868000, -163.1185083053140000 69.7904921820685900, -163.1184333603113100 69.7906530509975500, -163.1177754396847800 69.7918040618080800, -163.1169728397247500 69.7929440523262200, -163.1160270658963300 69.7940708515885700, -163.1149398979579000 69.7951823102155200, -163.1137133854643400 69.7962763103035400, -163.1125960758482000 69.7971624959524800, -163.1116529118523600 69.7982928439396300, -163.1105655271773000 69.7994043025665900, -163.1097239568950700 69.8001697488348900, -163.1093274107314000 69.8004997667508700, -163.1092481121106600 69.8006395798527700, -163.1085165064315800 69.8016997456467700, -163.1076611018783000 69.8027487931223600, -163.1066832861047500 69.8037849955811100, -163.1045238268131400 69.8059248928195800, -163.1042012202101100 69.8062382894655700, -163.1030308326068000 69.8072809976200100, -163.1029671021500200 69.8073482156476600, -163.1025565967095500 69.8078755637063800, -163.1016570687187000 69.8088553516931800, -163.0984172988192400 69.8121627011477700, -163.0978616733775000 69.8127102767579100, -163.0966341446500400 69.8138042759466100, -163.0952694738071500 69.8148787319679500, -163.0939715695322700 69.8157749999163600, -163.0937781217628800 69.8159393123494300, -163.0928761341262700 69.8168762701238300, -163.0916445287719500 69.8179670470416300, -163.0912239131530400 69.8184598080737300, -163.0901354915596600 69.8195712640026600, -163.0889075644325300 69.8206652622921000, -163.0875424511232000 69.8217397174140600, -163.0860427326859400 69.8227925807131000, -163.0844112482804500 69.8238218458016000, -163.0826403527700300 69.8248313779657800, -163.0819380910700100 69.8252125007563800, -163.0809343289561000 69.8259795676030400, -163.0795660239528200 69.8269243458819300, -163.0780911483877600 69.8278498373002200, -163.0770238356814400 69.8284641731830800, -163.0756526096801600 69.8295447014268700, -163.0741523363612000 69.8305975647259000, -163.0725202494099600 69.8316268280157700, -163.0707357138820700 69.8326434036702000, -163.0703941720533700 69.8328198479577000, -163.0701083468227000 69.8330446946569600, -163.0686078252908800 69.8340975579560000, -163.0669754667443700 69.8351268212458600, -163.0654275590346000 69.8360141436379000, -163.0637816315170600 69.8368802303384100, -163.0623560136191000 69.8375879158496700, -163.0612045882211300 69.8385349379370800, -163.0599450643132400 69.8394523300610200, -163.0585859485826500 69.8403526620457500, -163.0575314718999000 69.8410200696205800, -163.0566351347036700 69.8415718063938000, -163.0548734968144000 69.8425755073538400, -163.0543456334442000 69.8428485819965200, -163.0541634856563200 69.8429528682802900, -163.0528865400817400 69.8437002966314300, -163.0515373753495700 69.8444252509246400, -163.0501214764249800 69.8451349203403400, -163.0492848155417700 69.8455267378687400, -163.0481895042422000 69.8462826432294700, -163.0467092273489400 69.8472107939430200, -163.0449471182149000 69.8482144940037400, -163.0430595347697000 69.8491907179773100, -163.0410500617109600 69.8501376033677800, -163.0395971538855200 69.8507629658382700, -163.0365850473620200 69.8525839787676500, -163.0364207960828400 69.8526827809856200, -163.0352710704035500 69.8533485958610600, -163.0340660984716400 69.8540027078587400, -163.0328068767359500 69.8546445728887900, -163.0314944493093500 69.8552736567539200, -163.0308600306658500 69.8555686397809800, -163.0306745769701000 69.8556701840318500, -163.0289176137568500 69.8566864746011900, -163.0270292712838200 69.8576626985747600, -163.0266233910566300 69.8578538764553000, -163.0247689431322000 69.8589097174095700, -163.0231777402604800 69.8597777133708200, -163.0214914124986500 69.8606241309989300, -163.0197124122979600 69.8614477328266600, -163.0178433270079000 69.8622473164605300, -163.0159678367462300 69.8629908300628100, -163.0140144355177700 69.8637101554993500, -163.0122915260330700 69.8643216989872800, -163.0106836740123000 69.8648641700454500, -163.0098096615866000 69.8653107652796700, -163.0078868355090300 69.8662101889491400, -163.0058525429604700 69.8670733411618100, -163.0057858240565200 69.8671058426605800, -163.0049517001608000 69.8675754497472800, -163.0030623819233700 69.8685516719222000, -163.0010510607578200 69.8694985564133000, -162.9994467322808300 69.8701884578311500, -162.9983961901320400 69.8708497410227700, -162.9966321033888300 69.8718534401841700, -162.9947424011408800 69.8728296623591000, -162.9927306707838000 69.8737765459508800, -162.9906007353356500 69.8746922851209400, -162.9902624220731000 69.8748265772847500, -162.9896815022994800 69.8751286469695300, -162.9877769396540300 69.8760346536763600, -162.9869735734716000 69.8763851140818100, -162.9861942182885200 69.8768368300557100, -162.9850650852854400 69.8774526228403400, -162.9838878691298300 69.8780576552366600, -162.9826634304729000 69.8786514820802700, -162.9807756716599000 69.8795411517028200, -162.9794696231245700 69.8801180479096600, -162.9792126940105800 69.8802427901727000, -162.9775725221541300 69.8810796426115000, -162.9755600030916300 69.8820265262032800, -162.9734243398613700 69.8829326974860700, -162.9722343011720200 69.8835291395582200, -162.9720438661315000 69.8836260514012200, -162.9648767271792000 69.8872555416099900, -162.9645445481923200 69.8874287087679700, -162.9634052726351900 69.8883225809224200, -162.9619008111734800 69.8893754388254800, -162.9602641664580700 69.8904046976187500, -162.9582385163943700 69.8915481559226900, -162.9519396548911300 69.8949114845773900, -162.9505887095013200 69.8956085697797100, -162.9491752045720100 69.8962908287588200, -162.9477005097706700 69.8969575978149500, -162.9461660532207600 69.8976082276376500, -162.9444836581942300 69.8982661428682400, -162.9432760332623000 69.8990772971795900, -162.9419897167520000 69.8998766757680400, -162.9403591874265400 69.9008065163077400, -162.9386206899928300 69.9017129429979600, -162.9367770528187000 69.9025944746553600, -162.9348312751432000 69.9034496696666000, -162.9327380347325000 69.9043315106907200, -162.9307997097387800 69.9054262832963800, -162.9286929866919400 69.9064972967129300, -162.9255842273302000 69.9079984099987000, -162.9237593626044700 69.9088439166135300, -162.9218394773100000 69.9096641972449800, -162.9195916479362000 69.9105470419125400, -162.9172337469398400 69.9113953094460500, -162.9147702610386800 69.9122073810658500, -162.9141732658834800 69.9123876465727100, -162.9128481409289300 69.9129080356773300, -162.9104899746325800 69.9137563032109000, -162.9080262117402600 69.9145683748307100, -162.9073705924788300 69.9147663192103400, -162.9072417403140500 69.9148089155990500, -162.9049901418815000 69.9155544211996600, -162.9046185537032700 69.9157665955519900, -162.9030921433876800 69.9166011646121300, -162.9016395719086700 69.9173661378370600, -162.9001121291714000 69.9181137028851400, -162.8985115715517500 69.9188429955078700, -162.8970798508544000 69.9194403117210800, -162.8970232520214300 69.9194781542934200, -162.8968189350458000 69.9196820773660200, -162.8954456756773700 69.9208914020166500, -162.8939039948734300 69.9220765331055500, -162.8921871603091600 69.9233147925436900, -162.8917363274695200 69.9238486220163500, -162.8906424568838500 69.9249600671534500, -162.8894083783939000 69.9260540555502500, -162.8880364221431300 69.9271285007797600, -162.8865291817763000 69.9281813550855400, -162.8848895135402000 69.9292106111807900, -162.8828485291362800 69.9303602424312800, -162.8806423176888000 69.9314733180392500, -162.8750632267864700 69.9341413115723200, -162.8745793015934600 69.9343638407187300, -162.8734249938683500 69.9352674849065500, -162.8719171698414800 69.9363203383130100, -162.8702768648853700 69.9373495926096800, -162.8685071888556600 69.9383532863751000, -162.8666114971228800 69.9393295040534300, -162.8645933896731600 69.9402763831486100, -162.8624567003164400 69.9411921178220300, -162.8598170201393300 69.9422196831918700, -162.8595232152242000 69.9423219199207400, -162.8580352563219800 69.9431091064001900, -162.8564536231361600 69.9439156831622900, -162.8552785473670500 69.9444810761407900, -162.8542190659571000 69.9451265753312400, -162.8524487334222800 69.9461302681973500, -162.8505523393189700 69.9471064849763600, -162.8487900817968000 69.9479173829809000, -162.8485318351760300 69.9480504367783200, -162.8467572065797800 69.9490457128894100, -162.8397640468732300 69.9527702983106700, -162.8384085482159000 69.9534679258042000, -162.8369902229204300 69.9541507063900700, -162.8355104451509000 69.9548179754692700, -162.8353249608782000 69.9548964080428300, -162.8352364478038000 69.9549487728676200, -162.8337325664048000 69.9560142959230700, -162.8320907218093200 69.9570435493204200, -162.8309564743617800 69.9576975264197900, -162.8270727745888600 69.9598659825291500, -162.8249225081672000 69.9610012525058700, -162.8226081280626300 69.9620979451640900, -162.8184357108393700 69.9639733158159000, -162.8180633393516000 69.9641874695761300, -162.8167868299482300 69.9648734670369100, -162.8154502836036700 69.9655458973253400, -162.8140549206980000 69.9662041435065000, -162.8125250381000000 69.9669032755657600, -162.8123457978202900 69.9669974525704100, -162.8122839694296100 69.9670299055058000, -162.8105180102979000 69.9680472177049600, -162.8086196313908500 69.9690234326853300, -162.8065986622984000 69.9699703099818700, -162.8044589422263800 69.9708860428566500, -162.8032344738918200 69.9713655541770500, -162.8028610007345700 69.9715995173039600, -162.8026829790362300 69.9717049223443700, -162.8012677635963700 69.9725384598820600, -162.7995299892176000 69.9735136091657600, -162.7976727462002500 69.9744625567016700, -162.7956993782237000 69.9753835856839700, -162.7936134403080000 69.9762750296689500, -162.7913584568272800 69.9771578698398600, -162.7889930491898300 69.9780061337760900, -162.7865217185024800 69.9788182026979400, -162.7839491718168000 69.9795925243755600, -162.7812803086393000 69.9803276230214200, -162.7804946914768000 69.9805252931078600, -162.7802559043864500 69.9807649633324300, -162.7790185415724000 69.9818589463333800, -162.7776429322754800 69.9829333870662300, -162.7761316773350000 69.9839862359760900, -162.7744876383937700 69.9850154866754200, -162.7743694413965700 69.9850660420642600, -162.7729868155890400 69.9861283797209800, -162.7714753304221300 69.9871812286308500, -162.7698310405700400 69.9882104802295500, -162.7686104159379300 69.9889115674149600, -162.7673281382829200 69.9895996360144200, -162.7653003694164800 69.9906518482042700, -162.7644774186978800 69.9912943688401000, -162.7629655603123200 69.9923472177499700, -162.7613208657653300 69.9933764684493000, -162.7601700779867000 69.9940385628294700, -162.7594209067494300 69.9944558446615600, -162.7578767905814000 69.9952817019890300, -162.7565641500155000 69.9959303290215200, -162.7561323738099800 69.9962673589515100, -162.7546201565949000 69.9973202069620600, -162.7529750708428000 69.9983494567620700, -162.7517776343303200 69.9990373436984900, -162.7505208155831400 69.9997127129713600, -162.7492057243646600 70.0003749629342500, -162.7478285781263600 70.0010173909399200, -162.7471066941186000 70.0015911925795500, -162.7459510068334800 70.0024419404432500, -162.7447092130597000 70.0032783648047700, -162.7433828164638000 70.0040994440341800, -162.7421073502739500 70.0048428650062500, -162.7417451024544700 70.0060209274238900, -162.7412278312993400 70.0071807407986200, -162.7405631369791500 70.0083317264280800, -162.7397522605583600 70.0094716935638500, -162.7387967227904800 70.0105984685445700, -162.7376983232190000 70.0117099055877400, -162.7364560977706600 70.0128013129303200, -162.7362226085865000 70.0130704647302200, -162.7351240786133000 70.0141819008740600, -162.7345875304901000 70.0146555180377800, -162.7337876977440200 70.0155984608003900, -162.7326890346711800 70.0167098969442300, -162.7318482962618300 70.0174519365576800, -162.7313235877133800 70.0180704560867200, -162.7302247951381600 70.0191818913313000, -162.7295005441147900 70.0198210440060500, -162.7288884790200700 70.0205424513731000, -162.7277895578418000 70.0216538866176300, -162.7265497758514500 70.0227478660212300, -162.7251714766822800 70.0238223022574900, -162.7236572656702500 70.0248751484693900, -162.7220100098540500 70.0259043955714400, -162.7214938646501000 70.0261958955242100, -162.7209958461813200 70.0265421453038400, -162.7193484590641000 70.0275713924058900, -162.7175711387969800 70.0285750789767600, -162.7156672569383300 70.0295512894604700, -162.7144571193006000 70.0301166293790000, -162.7135658902536000 70.0307361354643400, -162.7119181721858800 70.0317653825663900, -162.7101404948879000 70.0327690682379400, -162.7082362299180400 70.0337452787217100, -162.7062077101177000 70.0346898789348400, -162.7051764593261000 70.0352690630169300, -162.7032719668277700 70.0362452735006400, -162.7017792181363800 70.0369424153602200, -162.7011162289308000 70.0374031218566400, -162.6994679847596500 70.0384323680593800, -162.6976897390901500 70.0394360537309200, -162.6957848661786000 70.0404122642147000, -162.6944641182244600 70.0410289563213300, -162.6936851992125500 70.0415701125707000, -162.6926818013240600 70.0421888281519500, -162.6920435830449000 70.0426093736237500, -162.6914116150539700 70.0430675260455500, -162.6903135140574000 70.0441818445165700, -162.6890723956745000 70.0452758212222200, -162.6876926090266700 70.0463502556598300, -162.6861767639464600 70.0474031000730400, -162.6845277301705700 70.0484323453765100, -162.6827486319437800 70.0494360301487400, -162.6808536569706700 70.0504084994527700, -162.6803933075051000 70.0508758321539600, -162.6791517916218500 70.0519698088596700, -162.6777715634069000 70.0530442423979000, -162.6763672324617900 70.0540193197358600, -162.6762640631360000 70.0541058327180500, -162.6754358324976400 70.0549598244364200, -162.6741940737974500 70.0560538002427500, -162.6730320903586500 70.0569581647875500, -162.6724286047962400 70.0578046129925300, -162.6714708591927700 70.0589313834766500, -162.6711654997879500 70.0592396521882400, -162.6707266764949000 70.0599976466741000, -162.6699137981832200 70.0611376075146400, -162.6695139245279600 70.0616079763270800, -162.6694466120714500 70.0618181272048400, -162.6689353492869300 70.0629586600142000, -162.6682688851009300 70.0641096402477500, -162.6674558467099400 70.0652496010882800, -162.6664977593640600 70.0663763706730300, -162.6653964262040700 70.0674878014209500, -162.6641539219659000 70.0685817754286400, -162.6627725938800800 70.0696562080676100, -162.6612550535778300 70.0707090497828600, -162.6596027705514000 70.0717362698130700, -162.6586776568483700 70.0723750456718900, -162.6570266463626200 70.0734042891766600, -162.6552454158432400 70.0744079721502500, -162.6533373440431700 70.0753841799360100, -162.6521790712071400 70.0759240996175700, -162.6512477710677400 70.0765700367778100, -162.6495964287321700 70.0775992802826400, -162.6490324917560600 70.0779169819832100, -162.6478321980974300 70.0788501886853000, -162.6463139886996000 70.0799030295012800, -162.6446623819633100 70.0809322730060600, -162.6428805075293800 70.0819359550803300, -162.6409717450499700 70.0829121619667600, -162.6389397196922700 70.0838590320687400, -162.6383753285585400 70.0840992571750100, -162.6377775132216400 70.0844359498592600, -162.6358685214151000 70.0854121567456900, -162.6343410490001700 70.0861238325488800, -162.6336974410840200 70.0865700149942700, -162.6320453055464000 70.0875992575997200, -162.6302628600429300 70.0886029396739900, -162.6283534860245400 70.0895791465604200, -162.6263208095576800 70.0905260148637700, -162.6241686905326300 70.0914417405439300, -162.6216342490213500 70.0924235493074000, -162.6189625035166800 70.0933621717268800, -162.6047489218252600 70.0981154835428100, -162.6046201730824800 70.0985208052910000, -162.6041006194480000 70.0996806069745200, -162.6034329843447200 70.1008315827114100, -162.6026185169310000 70.1019715399546600, -162.6016587424569800 70.1030983050428000, -162.6005554685600000 70.1042097321934500, -162.5993107735733000 70.1053037035031800, -162.5979270083247500 70.1063781325448200, -162.5964067907407600 70.1074309715621700, -162.5947529968533000 70.1084602123689800, -162.5943070949964000 70.1087110440794800, -162.5938292303346800 70.1090419676127700, -162.5928475258925800 70.1096704579253500, -162.5915448264325700 70.1105952038056400, -162.5904432927237600 70.1117097183288800, -162.5891981498746800 70.1128036878399700, -162.5878138864017000 70.1138781168816600, -162.5862931193319700 70.1149309549996400, -162.5857109809769600 70.1152931191821800, -162.5854584468498300 70.1154891138315900, -162.5839375628682100 70.1165419519495600, -162.5831962247259500 70.1170031224961600, -162.5829481997995500 70.1171612709759400, -162.5828657463570700 70.1172513263876500, -162.5825095356864800 70.1177495130296500, -162.5821183108113500 70.1182084586535000, -162.5820066437915400 70.1185494905665800, -162.5815084949210800 70.1196525783038900, -162.5808402221984700 70.1208035522422000, -162.5800249741732000 70.1219435058881700, -162.5790642796927200 70.1230702700769400, -162.5779599472937000 70.1241816954289400, -162.5767140571080300 70.1252756640407100, -162.5753289635608000 70.1263500912837700, -162.5744753675441500 70.1269406868632400, -162.5742463318027500 70.1272092621977700, -162.5731417790698300 70.1283206866504000, -162.5718956415705600 70.1294146552621700, -162.5705102710321600 70.1304890825052200, -162.5689882889783200 70.1315419188245500, -162.5679897447309000 70.1321588294664500, -162.5673415349838300 70.1325841116674800, -162.5664659307580600 70.1332089156590000, -162.5654141727258700 70.1338553519430000, -162.5648165093743700 70.1342474437646000, -162.5638809842200200 70.1348930068068600, -162.5630556601905400 70.1355170724550000, -162.5615333094146700 70.1365699087743300, -162.5598771233305500 70.1375990416625000, -162.5589559513560400 70.1382359046633000, -162.5579880793863200 70.1388284778520300, -162.5573067584001600 70.1392753455808100, -162.5564615017968300 70.1398749011058800, -162.5548051250564500 70.1409041392146800, -162.5530181020038000 70.1419078167923500, -162.5511038230829400 70.1428840200815100, -162.5499743897062800 70.1434087861865700, -162.5490586199593000 70.1440418918198800, -162.5474019104697700 70.1450711299287400, -162.5456145285876000 70.1460748075064100, -162.5436998656562400 70.1470510098962400, -162.5416615558361000 70.1479978746023100, -162.5409557813841800 70.1482973497429600, -162.5405114965083200 70.1485468018934700, -162.5385966051491700 70.1495230042832500, -162.5367497421068800 70.1503808343081200, -162.5365620176230000 70.1504769331639900, -162.5354637358627000 70.1511027965568700, -162.5335486088811800 70.1520789980473900, -162.5315098053332300 70.1530258636527200, -162.5293511976995800 70.1539415848363300, -162.5269316158014000 70.1548782341432700, -162.5243866792018500 70.1557757548472400, -162.5235929861273700 70.1560428876691700, -162.5223847190795000 70.1567931039186900, -162.5205963272586600 70.1577967805969800, -162.5186805815435800 70.1587729820875000, -162.5167534630019000 70.1596676879135000, -162.5166434417414200 70.1597239845742700, -162.5156323951189000 70.1602967744765900, -162.5137164182780500 70.1612729759671100, -162.5116767100121300 70.1622198406731700, -162.5113246407195800 70.1623691281328100, -162.5106123740618000 70.1627687688636600, -162.5086961687931400 70.1637449703541700, -162.5066562168109400 70.1646918341608600, -162.5044963941932000 70.1656075544451600, -162.5018443726196700 70.1666291600078000, -162.4990431679078400 70.1676038218589600, -162.4950683290401200 70.1689179544001100, -162.4937704697313700 70.1695789561039800, -162.4917299430824000 70.1705258199107200, -162.4895695116236400 70.1714415401949600, -162.4876741409488300 70.1721744516896700, -162.4862808401885800 70.1728839484355300, -162.4847587592093400 70.1735901257837300, -162.4841044376696300 70.1740418273685100, -162.4824453296881800 70.1750710636787300, -162.4806553595571800 70.1760747385583800, -162.4787379231166300 70.1770509382502600, -162.4766966599228800 70.1779978020569500, -162.4745354487519400 70.1789135214419300, -162.4727606951499300 70.1796003219973300, -162.4712763029589800 70.1803559314811300, -162.4692347142106700 70.1813027943885000, -162.4670731577000400 70.1822185137734200, -162.4659923866393000 70.1826390250710100, -162.4657610054660000 70.1827687234978700, -162.4638429493925900 70.1837449231896900, -162.4618010260964500 70.1846917860971200, -162.4596391161522600 70.1856075045827200, -162.4577067662542300 70.1863613684824400, -162.4560123832648300 70.1869747456880200, -162.4557069645047700 70.1872109661132400, -162.4541808158919000 70.1882637979359700, -162.4525205675701000 70.1892930315482300, -162.4507293680658500 70.1902967055285700, -162.4488106132192000 70.1912729052204400, -162.4467679470830600 70.1922197672285500, -162.4446052502321000 70.1931354857141500, -162.4437997670456000 70.1934527629347300, -162.4432860626017000 70.1938499512143600, -162.4417594238583000 70.1949027830370400, -162.4409220255310200 70.1954217431190300, -162.4407585296823700 70.1955351898971600, -162.4392371951404000 70.1965967802173000, -162.4375762786223400 70.1976260138295000, -162.4357843569624700 70.1986296869105800, -162.4338648295981800 70.1996058857031400, -162.4318213405823600 70.2005527477111900, -162.4296577713890000 70.2014684652974700, -162.4269554417402000 70.2025067568814000, -162.4240987524554200 70.2034964778802100, -162.4184573610183700 70.2053519384412500, -162.4175209230521400 70.2059319948657500, -162.4157282819346300 70.2069356679467700, -162.4138079838513400 70.2079118658400000, -162.4117636728552000 70.2088587269487300, -162.4095992340174000 70.2097744445350700, -162.4070983920771000 70.2107385843182800, -162.4044643749309400 70.2116611511412400, -162.3732134626311600 70.2220878064072200, -162.3709487961500000 70.2228136834048100, -162.3686015575158300 70.2235088611450900, -162.3659011668053700 70.2242439489991200, -162.3631084624855000 70.2249384108790200, -162.3602287685428000 70.2255909193854700, -162.3586173992735300 70.2259224832360500, -162.3583454119112200 70.2260746233452600, -162.3564233340695800 70.2270508194398000, -162.3543771282019000 70.2279976796492600, -162.3522106820773000 70.2289133963362200, -162.3496808819671000 70.2298873090521200, -162.3470150683906800 70.2308187602776000, -162.3257093754872600 70.2379083380993700, -162.3234654833453600 70.2386261122054000, -162.3211407214671000 70.2393138192774100, -162.3184382605172700 70.2400489062321200, -162.3156434149116500 70.2407433672127000, -162.3127615122339800 70.2413958748198300, -162.3111825149610800 70.2417205282798100, -162.3109960926955000 70.2417650051509100, -162.3082022264515600 70.2424653629862000, -162.3053200836549200 70.2431178705933200, -162.3048934182966000 70.2432055886670200, -162.2959175763350600 70.2462166771579700, -162.2935566769990000 70.2469764352143800, -162.2911055342929400 70.2477027969465600, -162.2884019725729600 70.2484378839012600, -162.2856059893249200 70.2491323439825200, -162.2829914784739200 70.2497240691105800, -162.2827267162649000 70.2497966210173100, -162.2812587996538400 70.2502839303591600, -162.2787248096022700 70.2510357869720700, -162.2760208108117300 70.2517708739267700, -162.2732243743054000 70.2524653349073600, -162.2703408321636400 70.2531178425144800, -162.2697389222134600 70.2532415289734300, -162.2680742267441500 70.2537920004005500, -162.2659008324574200 70.2544839351855300, -162.2636520210239200 70.2551477760490600, -162.2609474826401800 70.2558828630037600, -162.2581504876548600 70.2565773230850300, -162.2552632124272800 70.2572176421804800, -162.2540190066718000 70.2576627508353200, -162.2522753813037800 70.2582409861326500, -162.2504799612811700 70.2588008338914300, -162.2486344418260000 70.2593417644109800, -162.2459293521578400 70.2600768513656800, -162.2431317879016600 70.2607713114469400, -162.2402462744459800 70.2614210968062000, -162.2387237240206200 70.2618697577831300, -162.2360183025026300 70.2626048438385200, -162.2332203947054300 70.2632993039197800, -162.2303353345080600 70.2639518115269100, -162.2293898754423700 70.2641459913444900, -162.2287298701873200 70.2643417512708800, -162.2260241231147700 70.2650768382255800, -162.2232258798704300 70.2657712974075300, -162.2203412270659400 70.2664260605143300, -162.1886151858421400 70.2770403845062200, -162.1862762902186000 70.2777908723509200, -162.1838491198409700 70.2785087130067700, -162.1811415093731300 70.2792437981628400, -162.1783413388816700 70.2799382573447800, -162.1781184284227000 70.2799886319698400, -162.1769551562554200 70.2805255515130500, -162.1747831828975600 70.2814412655020500, -162.1722886775803800 70.2823998897431500, -162.1696620537607300 70.2833174383491700, -162.1684120203984000 70.2837338244564800, -162.1661119215279100 70.2844700139800100, -162.1637267243088400 70.2851746948563200, -162.1610182361026800 70.2859097800123900, -162.1582171572959500 70.2866042391943300, -162.1553928004373700 70.2872422928975300, -162.1553297516666700 70.2872595967530200, -162.1539167701427900 70.2877211737932200, -162.1512630326628000 70.2885086858272500, -162.1485541055874600 70.2892437709833200, -162.1457525726231000 70.2899382292659400, -162.1428683164196500 70.2906044407424100, -162.1233707158858000 70.2970837979789300, -162.1211328743826200 70.2977970889645600, -162.1188149014864700 70.2984806591551300, -162.1161046596023400 70.2992157434118800, -162.1133017668630300 70.2999102025938200, -162.1104134709049200 70.3005684487749200, -162.1034145690271000 70.3028985472302000, -162.1011496237561000 70.3036213233654600, -162.0988024606650000 70.3043136430602500, -162.0960914489611800 70.3050487282162600, -162.0932877603218600 70.3057431864988900, -162.0904005417515600 70.3064070516441600, -162.0862347102636500 70.3078147073828700, -162.0838483538184400 70.3085811384088400, -162.0813699472652200 70.3093136299201500, -162.0786582763583400 70.3100487141769000, -162.0758539042342600 70.3107431724595200, -162.0729621773625700 70.3113956782680100, -162.0699886112853700 70.3120049851419800, -162.0669388771274600 70.3125699302581200, -162.0649361112125500 70.3128986252713700, -162.0638198124343600 70.3130949310862500, -162.0618854723366600 70.3134589271878100, -162.0587975547633200 70.3139743259544600, -162.0582783986291700 70.3141041628768400, -162.0553859531991600 70.3147558979663900, -162.0535856696429000 70.3153280925175200, -162.0512756773306000 70.3160086113084000, -162.0485631214908400 70.3167436955651500, -162.0457578347562400 70.3174381529484500, -162.0428651653950300 70.3180906587569400, -162.0398892026245800 70.3186942081712200, -162.0383174916589000 70.3190771484916600, -162.0354245911719000 70.3197296543001500, -162.0324498164059000 70.3203389611741700, -162.0293988438815200 70.3209039053909900, -162.0262806245511600 70.3214360630239500, -162.0258780079636600 70.3215491419793500, -162.0229847585397400 70.3222016468885700, -162.0200081905255400 70.3228051558333500, -162.0183267262973500 70.3232151369690500, -162.0154332421503800 70.3238676427775400, -162.0124578675365400 70.3244769496515700, -162.0094062789765700 70.3250418938683900, -162.0088633843377000 70.3251297891085300, -162.0086143971366800 70.3252683944209000, -162.0066830391908800 70.3262445842202600, -162.0046269515725300 70.3271914381344300, -162.0024500418359400 70.3281071485261600, -161.9999336650066000 70.3290716903063100, -161.9972832298371700 70.3299946222540500, -161.9929563531531500 70.3314304222762400, -161.9916736483202000 70.3320785708693800, -161.9896169770418300 70.3330254238842400, -161.9874394476723600 70.3339411342759600, -161.9852285300726000 70.3347932203309400, -161.9829129385812200 70.3356131942935600, -161.9717740832073500 70.3393936788752400, -161.9691807855647600 70.3402347365438900, -161.9664773191729200 70.3410355441550900, -161.9637614520293600 70.3417706266132000, -161.9609527397771000 70.3424650839965000, -161.9580565378789000 70.3431175889056700, -161.9550783681721400 70.3437268948803800, -161.9526493856605800 70.3441761521077600, -161.9518525611467500 70.3445785411668100, -161.9497946362134500 70.3455253932823400, -161.9476157794446500 70.3464411027747500, -161.9461731391790000 70.3470049165437100, -161.9446846217978200 70.3475550669128900, -161.9431513676414600 70.3480911312008200, -161.9415745503252000 70.3486126993166700, -161.9376852270915200 70.3498638838112200, -161.9358154493234800 70.3504463899889700, -161.9338913273228700 70.3510085175291200, -161.9311741381759200 70.3517435999872300, -161.9283640589541200 70.3524380564711600, -161.9254664469189600 70.3530905604810600, -161.9224868266057300 70.3536998664557100, -161.9194308844277500 70.3542648097732100, -161.9163044488911700 70.3547843121463600, -161.9131134887964500 70.3552573807235700, -161.9098640952517800 70.3556831116862900, -161.9065624726799500 70.3560606920473800, -161.9032149280264700 70.3563894005504300, -161.8998278545718000 70.3566686085694600, -161.8964077229380200 70.3568977819071500, -161.8929635137551200 70.3570763755743100, -161.8894993917835000 70.3572042276929900, -161.8860219652414700 70.3572810954462400, -161.8825378711258300 70.3573068304459000, -161.8709865686751600 70.3572940178047500, -161.8674950641458600 70.3573068313452300, -161.8640097325631000 70.3572811503049100, -161.8605310658559800 70.3572043005381100, -161.8570657091151500 70.3570764304329800, -161.8536202768542600 70.3568977819071500, -161.8502001452205000 70.3566686085694600, -161.8475442044015000 70.3564483852848000, -161.8440608971926300 70.3564200791233800, -161.8405840480154000 70.3563432050749000, -161.8371204998112000 70.3562153592515100, -161.8336768616977700 70.3560367844700600, -161.8302568739555300 70.3558076102330600, -161.8274868487390600 70.3555792588757600, -161.8255900922089600 70.3555373774480600, -161.8221237821867600 70.3554094884571600, -161.8186774074363800 70.3552307868713500, -161.8152575545924500 70.3550016126344000, -161.8118707572296300 70.3547224046153600, -161.8085234841714200 70.3543936970115700, -161.8052221313962200 70.3540161166505400, -161.8019730022522300 70.3535903856878200, -161.7987823020615700 70.3531173171105600, -161.7956561210331200 70.3525978147374100, -161.7938131511559700 70.3522709300594300, -161.7920074869559200 70.3519846569664100, -161.7910814199715300 70.3518937040312800, -161.7877804691932800 70.3515161236702500, -161.7845317375496300 70.3510903927075300, -161.7827615686914300 70.3508313025226400, -161.7793749673808200 70.3505554174985800, -161.7760283760087200 70.3502267089954800, -161.7727276950270700 70.3498491286344500, -161.7717915475418500 70.3497244133510500, -161.7716682729724000 70.3497102850017200, -161.7684453536701000 70.3493937110510000, -161.7651448066874600 70.3490161306899600, -161.7637125616853400 70.3488284187965300, -161.7628974368671800 70.3488095699057700, -161.7595301997588700 70.3486831845813800, -161.7561819644260800 70.3485088069359700, -161.7527632339360700 70.3482796326989600, -161.7493775481353000 70.3480004255792400, -161.7460313740486400 70.3476717170761400, -161.7427322129212500 70.3472806909512100, -161.7418513755405300 70.3471866947102700, -161.7385043192189200 70.3468657194774200, -161.7352041796291600 70.3464881382170700, -161.7319562447848400 70.3460624072543500, -161.7303213780291500 70.3458273622430300, -161.7269350168375300 70.3455554324373200, -161.7236574070636600 70.3452461798673900, -161.7235883202447400 70.3452404646757800, -161.7202379778004000 70.3450296420044200, -161.7168528288949000 70.3447504339853800, -161.7135071863075700 70.3444217263816000, -161.7102074406208500 70.3440441451212500, -161.7069586810982300 70.3436307528570000, -161.7061191963438200 70.3435607280452500, -161.7028195891526800 70.3431831476841600, -161.7018805134749000 70.3430441035026200, -161.7009122601926400 70.3429330992831900, -161.6985372064269200 70.3426997315074800, -161.6952388403002200 70.3423087809255800, -161.6943564102201400 70.3422145913303900, -161.6912418304461000 70.3419206829931900, -161.6910096308897400 70.3419014914607000, -161.6878237924340500 70.3416956519328700, -161.6844393872678700 70.3414076800205000, -161.6842089602752700 70.3413938196691200, -161.6831499105399200 70.3413704193094400, -161.6796859972109800 70.3412425303186000, -161.6762420065633000 70.3410638287327900, -161.6728245189363800 70.3408346544957800, -161.6694400625088400 70.3405554464767400, -161.6660951052049000 70.3402267379736400, -161.6627960349090600 70.3398491576126000, -161.6595491522715200 70.3394234266498900, -161.6563606581178500 70.3389503571733000, -161.6551020335320000 70.3387410570542200, -161.6535420263434200 70.3385877433297500, -161.6502432204482300 70.3382101620694000, -161.6469965977147800 70.3377844311066800, -161.6445086673410900 70.3374152728965800, -161.6418324540045100 70.3371944569586800, -161.6387172950671000 70.3368930842485200, -161.6384874859087000 70.3368740851709600, -161.6353000340692700 70.3366686674251000, -161.6319162665224700 70.3363894594060600, -161.6285719891059800 70.3360607509030200, -161.6252735888050400 70.3356831705419300, -161.6232914758209300 70.3354232224038500, -161.6210179968830000 70.3351997534659300, -161.6177197359770000 70.3348221731048400, -161.6169448801021000 70.3347201342268700, -161.6136604831447400 70.3343962604790800, -161.6102751417843400 70.3341686744448100, -161.6068917870263000 70.3338894664257700, -161.6035479179020600 70.3335607579226700, -161.6002499204974200 70.3331831775616400, -161.5982737934008000 70.3329239830554200, -161.5970027141039500 70.3327754519256100, -161.5962479409896600 70.3327278562056800, -161.5959924588848400 70.3327067320300900, -161.5928315478376500 70.3325016803083800, -161.5894484682721700 70.3322224722893500, -161.5861048707431600 70.3318937637862400, -161.5828071413364700 70.3315161825258300, -161.5821056125839200 70.3314241602968200, -161.5815664177559400 70.3314201727028500, -161.5780933879994200 70.3313433049496000, -161.5746336457261500 70.3312154528309200, -161.5711937919599000 70.3310368591637600, -161.5677779761726400 70.3308076849267500, -161.5650081640954700 70.3305790718667400, -161.5631255898740300 70.3305374530410700, -161.5596635075648000 70.3304095640501700, -161.5562213371449600 70.3302308615650400, -161.5528056553566800 70.3300016873280400, -161.5494229885800300 70.3297224793090500, -161.5460797984439000 70.3293937708059500, -161.5427824710341700 70.3290161895455400, -161.5400160718841700 70.3286532681338500, -161.5388334454071600 70.3285918660218400, -161.5354180370127600 70.3283626917848300, -161.5320356409320700 70.3280834837658000, -161.5306456478783200 70.3279468065999300, -161.5296377785606000 70.3279095710698800, -161.5261960281241600 70.3277308685847500, -161.5227807627220000 70.3275016943477500, -161.5193985078348400 70.3272224863287600, -161.5183331250736400 70.3271177234042900, -161.5170603919235000 70.3270693758510700, -161.5137795913550200 70.3268978715395900, -161.5103644653477800 70.3266686973025800, -161.5069823480568800 70.3263894892835400, -161.5055578381237000 70.3262494063850500, -161.5044778377819600 70.3262083784139800, -161.5011971730111000 70.3260368741025000, -161.4977821899960300 70.3258076998654900, -161.4950145605734800 70.3255792109118800, -161.4931232044722800 70.3255373465713700, -161.4896640179800000 70.3254094881573900, -161.4862247181961500 70.3252308756044600, -161.4828098691801000 70.3250017013674600, -161.4794280270817500 70.3247224933484200, -161.4780395520836300 70.3245859429869100, -161.4768644007714600 70.3245412790568600, -161.4735862999677400 70.3243698781673700, -161.4701715948432000 70.3241407039304200, -161.4667897959123200 70.3238659376629600, -161.4655687252164600 70.3238433502904200, -161.4621098516882700 70.3237154918765000, -161.4586708630698400 70.3235368811222100, -161.4552562964409000 70.3233077068852000, -161.4532242980628800 70.3231399293642900, -161.4039048960940500 70.3231399293642900, -161.4038181025234000 70.3231399293642900, -161.3376236031467400 70.3231399293642900, -161.3341537246146800 70.3231138256426200, -161.3306905190521800 70.3230368364808700, -161.3272405632014000 70.3229091084686500, -161.3238104077241000 70.3227308844228100, -161.3203975021429800 70.3225084847787800, -161.3178476174735500 70.3230906447175200, -161.3148723561742800 70.3236999515915500, -161.3118208827275200 70.3242648958083700, -161.3086990211428700 70.3247843990807800, -161.3055127294289000 70.3252574685573700, -161.3022680897005600 70.3256831995200900, -161.2989712991861000 70.3260607807804400, -161.2964959791061000 70.3263041984800500, -161.2956304904547600 70.3264035016203500, -161.2948801995615300 70.3265161974645700, -161.2915832741487600 70.3268937778256600, -161.2887777194162000 70.3271696583531100, -161.2882416308465600 70.3272311656858200, -161.2874093082929200 70.3273491945098000, -161.2841122497804600 70.3277267748708300, -161.2811147068781800 70.3280215222754900, -161.2807683680657000 70.3280526801871100, -161.2804143364524200 70.3281082178200400, -161.2774381407575700 70.3287269369985800, -161.2743859199742000 70.3292918812154000, -161.2712632930664800 70.3298113844878700, -161.2694654799479000 70.3300782403185800, -161.2693590874519000 70.3300959776473200, -161.2680783962010000 70.3302975373015300, -161.2662366197242000 70.3306173820865900, -161.2630494214935800 70.3310904515631700, -161.2625469441860800 70.3311563628759000, -161.2624705413823600 70.3311691818123600, -161.2594183170017000 70.3317368743573200, -161.2575290734080000 70.3320419127041400, -161.2562957287648500 70.3322585998545800, -161.2544748651229000 70.3325978726937300, -161.2513517345948300 70.3331173750668800, -161.2496990882423000 70.3333626444705300, -161.2494757236257200 70.3333998755039100, -161.2481667118242700 70.3336058598226300, -161.2463530625437600 70.3339233717662800, -161.2431653499009500 70.3343964412428000, -161.2423896459653700 70.3344990619821700, -161.2393123125132000 70.3350698652821000, -161.2361888051692000 70.3355893676552500, -161.2330004692962000 70.3360609271700800, -161.2324554432640600 70.3361832457602500, -161.2309115753089400 70.3365771002530100, -161.2280162043843000 70.3372296051621800, -161.2250388908321000 70.3378389111368800, -161.2219853129717800 70.3384038553537000, -161.2200689638116000 70.3387039168523500, -161.2196558503372000 70.3387862515842800, -161.2185001630520600 70.3390770932333000, -161.2156044395932000 70.3397295981424700, -161.2126267627149000 70.3403389041171700, -161.2095728125352400 70.3409038483340000, -161.2064484157617400 70.3414233507071500, -161.2032595366982300 70.3418964201836700, -161.2000122619563000 70.3423221511463900, -161.1967127932607600 70.3426997315074800, -161.1961007029850400 70.3427499640396800, -161.1957363174770400 70.3428028558671500, -161.1939512072823700 70.3431173460887200, -161.1907620647175000 70.3435904146659800, -161.1875145219776000 70.3440161456287000, -161.1842147798881500 70.3443937268890500, -161.1831433914543400 70.3444989907358700, -161.1814269561890600 70.3447843402252000, -161.1794152591069000 70.3450762115979300, -161.1782382039299400 70.3452613271485900, -161.1775803030885000 70.3453539096552700, -161.1774716838711000 70.3453720687660400, -161.1762888370601600 70.3455869311919700, -161.1744158657995500 70.3459308337410200, -161.1712907028036700 70.3464503361141700, -161.1681010404306600 70.3469234046914400, -161.1648529688893600 70.3473491365534800, -161.1615526908040000 70.3477267169145100, -161.1599748230795800 70.3478624641814500, -161.1569203692796000 70.3484308267213100, -161.1537945488793000 70.3489492175324400, -161.1532725346996800 70.3490770651545200, -161.1503753975065600 70.3497295700636900, -161.1473962664245200 70.3503388760383400, -161.1443408251689000 70.3509038193558400, -161.1424277405477600 70.3512106671386200, -161.1412149445140500 70.3514235447608500, -161.1393703774409400 70.3517648167929200, -161.1362443232169000 70.3522843191660700, -161.1330537525286400 70.3527573877432800, -161.1298047555849800 70.3531831196053200, -161.1265035368087400 70.3535606999664100, -161.1231839277960000 70.3538871529697800, -161.1224168312717200 70.3539881162586200, -161.1191154820938000 70.3543656966196500, -161.1157682144315000 70.3546944042234400, -161.1123814215653200 70.3549736122424700, -161.1089615723187000 70.3552027864794800, -161.1082667075425000 70.3552388169179000, -161.1081411765740000 70.3552513615611600, -161.1048920950940700 70.3556831116862900, -161.1015904725222500 70.3560606920473800, -161.0982429278688000 70.3563894005504300, -161.0954985890885800 70.3566156259104800, -161.0945464399662000 70.3567918021999500, -161.0914196186204800 70.3573113045731000, -161.0882282646227000 70.3577843731503700, -161.0877584866648000 70.3578459155566000, -161.0876604992326000 70.3578623335798700, -161.0846043960760000 70.3584307977431500, -161.0814773247187200 70.3589503001163000, -161.0803780851804600 70.3591132320900700, -161.0794119489023000 70.3592917951802400, -161.0762847453446800 70.3598112975533900, -161.0748772748663000 70.3600199078924800, -161.0746066355877400 70.3600649603297400, -161.0730958842676200 70.3603020602919300, -161.0714773671867300 70.3605748858223600, -161.0694709050581800 70.3609307907234400, -161.0663434514890800 70.3614502930966000, -161.0631491908824300 70.3619123000127000, -161.0625015189299300 70.3620207690433400, -161.0594459139977000 70.3625977857592500, -161.0563182050211000 70.3631172872330800, -161.0531259454060400 70.3635903558103500, -161.0498752289586300 70.3640160867730600, -161.0465722627996600 70.3643936671341000, -161.0434362539799000 70.3647014780908100, -161.0432238035356800 70.3647258083494200, -161.0425153059366000 70.3648220852711000, -161.0392122093759300 70.3651996647328100, -161.0382678699662000 70.3652883324905900, -161.0350164934164000 70.3657100821546400, -161.0317132538635600 70.3660876616163500, -161.0298501562596700 70.3662705171706800, -161.0287677115606200 70.3664502781578600, -161.0272949799793000 70.3666684896591000, -161.0269244035383700 70.3667301588698100, -161.0255752855709400 70.3669282732212800, -161.0249573074337700 70.3670334768135600, -161.0237962233170200 70.3672518411995600, -161.0218989370862600 70.3675977717198300, -161.0187704645852300 70.3681172731936600, -161.0169016886619600 70.3683848565759100, -161.0155779423681000 70.3685934552238500, -161.0152013836369000 70.3686468740540400, -161.0149722624599000 70.3686871169169900, -161.0134293459875000 70.3690770098961600, -161.0105293777285700 70.3697295130066900, -161.0075473346417400 70.3703388180820200, -161.0044845531196000 70.3708889864376500, -161.0040223258696000 70.3709950308960400, -161.0013047122426400 70.3717435447288700, -160.9984918864913400 70.3724380003135400, -160.9955914415917300 70.3730905043233900, -160.9926089092737000 70.3736998093987200, -160.9895499786485700 70.3742647527162100, -160.9876179623990000 70.3745854707429400, -160.9860805560727800 70.3749649927402700, -160.9831797532429800 70.3756174967501200, -160.9822684234489400 70.3758036501184300, -160.9814821974454200 70.3760354494764900, -160.9787616844042000 70.3767705310352200, -160.9759481679735400 70.3774649866198800, -160.9730470099115400 70.3781174897304100, -160.9700637446460700 70.3787267948058000, -160.9695155044369400 70.3788280224952700, -160.9685067870585400 70.3790769827166400, -160.9656054005687600 70.3797294858271700, -160.9627896763025000 70.3803045267325700, -160.9626227306544600 70.3803421570649400, -160.9608995909433400 70.3807709780982100, -160.9579979643345700 70.3814234812087400, -160.9550142161331500 70.3820327853848100, -160.9519540390476500 70.3825977287022500, -160.9488204772831600 70.3831020999820100, -160.9469555450623400 70.3834307257474700, -160.9438246497877300 70.3839502272212500, -160.9420893800208300 70.3842071194630400, -160.9419285785410500 70.3842338563075000, -160.9406280491451200 70.3844205789466200, -160.9400198601284200 70.3845340446105200, -160.9384369508046000 70.3849379661143100, -160.9355347333412300 70.3855904692248400, -160.9327160709898700 70.3861659445028000, -160.9325511964805200 70.3862030963958300, -160.9309406932583500 70.3866039620032800, -160.9280382392733000 70.3872564642144900, -160.9250536394139000 70.3878657692898700, -160.9219925890867000 70.3884307117080500, -160.9200849948266200 70.3887368229461000, -160.9188611191453000 70.3889512518987900, -160.9170221467546500 70.3892917091451400, -160.9138876775742200 70.3897967099502500, -160.9120236563666000 70.3901257071357200, -160.9088917358649000 70.3906452086095600, -160.9069822269481700 70.3909280426950700, -160.9056970912477300 70.3911298244818800, -160.9054025542844200 70.3911580407110500, -160.9050629801723700 70.3912159183800000, -160.9046441847812600 70.3912836346320900, -160.9034799314536300 70.3916039470645400, -160.9005767670041700 70.3922564501750700, -160.8975914377946000 70.3928657543511300, -160.8945296383321000 70.3934306967693100, -160.8925675271696000 70.3937412299738400, -160.8913965001483500 70.3939463500440800, -160.8895031970149000 70.3942916951057200, -160.8863706370951800 70.3948111956801800, -160.8845335802605000 70.3950762798464800, -160.8831742981553000 70.3952895315866800, -160.8813999258658500 70.3955891937863000, -160.8782025931751000 70.3960622614642400, -160.8749467092232200 70.3964879915276400, -160.8716384919228200 70.3968655709893500, -160.8706206122514300 70.3969582569180800, -160.8673589879269300 70.3973641731181500, -160.8652837591381500 70.3981448952707800, -160.8641449512285000 70.3985622661357400, -160.8623547373812000 70.3991972828283700, -160.8605038633625700 70.3998124065174100, -160.8585942860974000 70.4004069824962900, -160.8566280254629800 70.4009803821389800, -160.8539041912254000 70.4017154627984500, -160.8510872393845500 70.4024099174837400, -160.8483153651619400 70.4030325819881000, -160.8481843914964300 70.4030681996377400, -160.8465723738159700 70.4035914045197700, -160.8440255027747000 70.4043413734556800, -160.8413012206747800 70.4050764532158300, -160.8384838047837500 70.4057709079011100, -160.8355754341589300 70.4064126227444300, -160.8340868106577700 70.4068413664359700, -160.8313621949093300 70.4075764470954400, -160.8285444345779600 70.4082709017807200, -160.8256434572797000 70.4089370619958600, -160.8214990845151000 70.4103299481686200, -160.8195458235808500 70.4109625735639500, -160.8190870758079000 70.4111153198161900, -160.8179281356749000 70.4115304189937200, -160.8162602395184000 70.4120751437529300, -160.8151211231413000 70.4124364877537800, -160.8133990833010200 70.4129669645538500, -160.8116315701408300 70.4134803479397500, -160.8089060685602000 70.4142154285992200, -160.8060873918196600 70.4149098823852500, -160.8032729697717000 70.4155417181758000, -160.8031821526342000 70.4155662876540900, -160.8013921447316600 70.4161395622910500, -160.7990010587518300 70.4168413392564500, -160.7962751084095000 70.4175764190166000, -160.7934559676187700 70.4182708737019400, -160.7905490098289000 70.4189233759131000, -160.7875597793603000 70.4195326791898400, -160.7844939779147000 70.4200976207087000, -160.7813574564814000 70.4206171212831600, -160.7781562000485600 70.4210901889611000, -160.7776946868603000 70.4211504615246300, -160.7759634217744600 70.4215768642809000, -160.7730559927398400 70.4222293655927800, -160.7701480960577700 70.4228219954387700, -160.7700666813322500 70.4228403083336000, -160.7684391791247800 70.4232428592706000, -160.7663709398669600 70.4237077260307800, -160.7640189195374800 70.4244576455039900, -160.7615781181356200 70.4251743161418000, -160.7588510544326000 70.4259093959019500, -160.7560307625096500 70.4266038496879800, -160.7531226167153600 70.4272563518991900, -160.7501321649674000 70.4278656551758800, -160.7470651107662100 70.4284305966947400, -160.7439273077990000 70.4289500972692500, -160.7423856728604800 70.4291778200004600, -160.7420657336466500 70.4292308988869400, -160.7407283212550000 70.4294444716850900, -160.7395577744716800 70.4296519398851600, -160.7385102234680000 70.4299098411663000, -160.7359067472985100 70.4304938887820000, -160.7356044806622300 70.4305721199074800, -160.7340649402447600 70.4310353013381700, -160.7313370932322400 70.4317703801989400, -160.7285159901208300 70.4324648339849700, -160.7256070097556600 70.4331173352968600, -160.7226156982558500 70.4337266385735500, -160.7215867443327700 70.4339161140375200, -160.7210439720016700 70.4340303917891800, -160.7189483483875300 70.4345196598544600, -160.7168849303952000 70.4351879172886000, -160.7141055252497500 70.4360082878522500, -160.7113770136382400 70.4367433667130700, -160.7085552225454400 70.4374378204991000, -160.7056455317158700 70.4380903218109300, -160.7051540971838200 70.4381903983682500, -160.7041667836701000 70.4384802804406700, -160.7014379402087300 70.4392153602007600, -160.6986158073735900 70.4399098130874700, -160.6963506768422300 70.4404177097096000, -160.6944045277467400 70.4410452782170800, -160.6917032934722000 70.4418412717573700, -160.6889740012491400 70.4425763506181400, -160.6861514025651400 70.4432708044041600, -160.6834017353018300 70.4438872429020100, -160.6832439870203500 70.4439322233934600, -160.6817401281044000 70.4444663874139100, -160.6792759578191600 70.4452552169547600, -160.6767138495644600 70.4460082606727300, -160.6739839988624400 70.4467433395335500, -160.6711608228137000 70.4474377924202600, -160.6684394104504000 70.4480477719871500, -160.6682523811424500 70.4480986295481600, -160.6669038927004500 70.4485408208023000, -160.6642782257595000 70.4493132521049600, -160.6615479316916700 70.4500483309657900, -160.6587242978880000 70.4507427838524300, -160.6558127067909500 70.4513952842650000, -160.6546234523104600 70.4516373080153900, -160.6530787147109000 70.4522302769058200, -160.6508523206780400 70.4530182619832300, -160.6372696772537800 70.4576335287644000, -160.6345684960392400 70.4585090331654000, -160.6317476573285000 70.4593412244180400, -160.6290160187742200 70.4600763023794900, -160.6261909946186700 70.4607707552662000, -160.6232779700022800 70.4614232556787700, -160.6227282549050000 70.4615350719860200, -160.6217819297922000 70.4618132179057300, -160.6190499602874000 70.4625482967665600, -160.6162245925908400 70.4632427487538800, -160.6133098268869600 70.4638905340210000, -160.6117603471622600 70.4643412112779400, -160.6090280377137300 70.4650762892393900, -160.6062023192815800 70.4657707412267800, -160.6032915762452300 70.4664321844977600, -160.6019198709052800 70.4668991475776400, -160.5993968525826600 70.4677084277018400, -160.5967708564898000 70.4684801998014300, -160.5940379921595700 70.4692152777629400, -160.5931059338917000 70.4694442955178600, -160.5926253101099500 70.4696640898259300, -160.5904331793477000 70.4705797921237700, -160.5881073607660600 70.4714685219547600, -160.5856669092004800 70.4723221917158200, -160.5768619033541100 70.4752689382110000, -160.5743504530109600 70.4760736165042700, -160.5717371013861000 70.4768411770787100, -160.5690031129033200 70.4775762550402200, -160.5661756587796000 70.4782707070275500, -160.5637817354387000 70.4788064700426300, -160.5586425874854000 70.4805247696024800, -160.5572083423910500 70.4812442164474600, -160.5551366092670700 70.4821910604691200, -160.5529431286224700 70.4831067609683300, -160.5505075999457500 70.4840349701378300, -160.5479469593846300 70.4849247845512000, -160.5291696636490400 70.4911536185447300, -160.5267696033345000 70.4919172310953900, -160.5242735170091600 70.4926380395139600, -160.5230575436707000 70.4931347350799900, -160.5205718022468500 70.4940807535240300, -160.5179560422375300 70.4949868186868100, -160.5037763182225000 70.4996705778349300, -160.5022985243573700 70.5004111713385600, -160.5002248388052500 70.5013580135615100, -160.4980292906192300 70.5022737131614000, -160.4956588827512000 70.5031773816309000, -160.4931697742656500 70.5040447471674300, -160.4442644471464800 70.5203056256041800, -160.4423113426942700 70.5212721216111600, -160.4402355284468600 70.5222189620355400, -160.4380377247611600 70.5231346607360500, -160.4353733914688000 70.5241438835334400, -160.4325608858761400 70.5251073506237800, -160.4313658316677600 70.5254967183988700, -160.4291802695537700 70.5261827041684900, -160.4271266083063000 70.5267807407386700, -160.4269226177845600 70.5268491404755200, -160.4256443870787600 70.5273451111879700, -160.4240481111313800 70.5279006278117900, -160.4223626718997500 70.5287441037574500, -160.4202860923292600 70.5296909441817700, -160.4180874810523700 70.5306066419830100, -160.4157013710214000 70.5315148178546000, -160.4131952059939300 70.5323863121786300, -160.3994730930088000 70.5369465854166200, -160.3970098616158000 70.5377310082794800, -160.3944492938997500 70.5384800113435000, -160.3917069965806000 70.5392150866070400, -160.3888709476361000 70.5399095358964100, -160.3878770969504300 70.5401312862299500, -160.3873176961547200 70.5404110761103300, -160.3852399231839000 70.5413579156353300, -160.3830400465608600 70.5422736134365800, -160.3807599549079700 70.5431426678998700, -160.3783698554844000 70.5439782630864400, -160.3714025270050000 70.5463105253105600, -160.3698674445269000 70.5470780607040000, -160.3677889889706300 70.5480248993296800, -160.3655883892927000 70.5489405962316000, -160.3632708004071000 70.5498230505933700, -160.3608397521528000 70.5506709592974000, -160.3437653550870400 70.5563677624623400, -160.3423440953037300 70.5570780362224400, -160.3402646145203200 70.5580248748481700, -160.3380629293606600 70.5589405717500400, -160.3357249114754700 70.5598300462197000, -160.3332715645310600 70.5606843994655200, -160.3269883377415700 70.5627723185876900, -160.3250328797635700 70.5637440207700000, -160.3229527154954000 70.5646908584963600, -160.3207503054822000 70.5656065544989700, -160.3182475884554200 70.5665554930416200, -160.3173929213462300 70.5668503510629000, -160.3161640778099000 70.5675981877062700, -160.3143394900753800 70.5686018338076300, -160.3123849583991000 70.5695780065198600, -160.3103041942831000 70.5705248442462200, -160.3081011511471800 70.5714405402487700, -160.3059093369463000 70.5722761642136900, -160.3036156637318800 70.5730809558215200, -160.2974217854870000 70.5751658990870400, -160.2947511605376000 70.5760242938861200, -160.2919646372581600 70.5768409079815900, -160.2892171418576000 70.5775759814464400, -160.2885289518496300 70.5777441762527900, -160.2879119665639700 70.5780248267843700, -160.2857081068436300 70.5789405218876000, -160.2846438122621000 70.5793464066114200, -160.2844320857721200 70.5794628085618000, -160.2824765063856200 70.5804389812740300, -160.2803946262110000 70.5813858181010700, -160.2781904004665700 70.5823015132043000, -160.2757938313202400 70.5832112700841200, -160.2732764796258000 70.5840842105179700, -160.2721199829508000 70.5844502777581500, -160.2701587935934200 70.5854109695406500, -160.2680764017045500 70.5863578054684200, -160.2658716345682400 70.5872735005716500, -160.2633822832657400 70.5882166384871500, -160.2617351290729200 70.5887847941829700, -160.2601454496527500 70.5895779602547000, -160.2580626296865800 70.5905247961824800, -160.2558574083926400 70.5914404903863900, -160.2545877940914000 70.5919139681551500, -160.2526282855668900 70.5928829516869300, -160.2515260297025000 70.5933830457909700, -160.2514473651038000 70.5934283410451800, -160.2505087804558200 70.5940689245413200, -160.2500023290442000 70.5943767175115800, -160.2495995128072400 70.5946821236811400, -160.2480426982119200 70.5957349213296100, -160.2475388503376300 70.5960411063120400, -160.2471325627175500 70.5963491196162000, -160.2455756195192000 70.5974019172647300, -160.2450778087938000 70.5977044087315400, -160.2446666135733200 70.5980161164506500, -160.2431095417719000 70.5990689140991800, -160.2414156426178000 70.6000981162351300, -160.2395881230933700 70.6011017596385400, -160.2376304518838300 70.6020779305521300, -160.2363936286630000 70.6026398341611000, -160.2355133479626000 70.6032349047670800, -160.2338190989722200 70.6042641060037700, -160.2319912035311800 70.6052677494071800, -160.2300331294253500 70.6062439203207100, -160.2288021311134400 70.6067970690296000, -160.2269717508456000 70.6077957436787100, -160.2250134321241700 70.6087719136929200, -160.2240856348441600 70.6091932838430100, -160.2230370550160500 70.6099018902600600, -160.2213422475466600 70.6109310914967500, -160.2195137504591900 70.6119347340008400, -160.2175550297408000 70.6129109040150500, -160.2154698049875000 70.6138577390434500, -160.2132620377128400 70.6147734323481000, -160.2124196832217800 70.6150945586670100, -160.2120531222537600 70.6152957262168600, -160.2100940759808000 70.6162718962310700, -160.2080082100108600 70.6172181943642300, -160.2070054884125300 70.6177677206038700, -160.2050462029199000 70.6187438906181300, -160.2029603765201400 70.6196907247472200, -160.2007519707268300 70.6206064180518000, -160.1988081742578000 70.6213491753242100, -160.1967836915141300 70.6220677956922600, -160.1858124319981000 70.6258208608441000, -160.1849748493098000 70.6266527472265600, -160.1836980701098000 70.6277466699729100, -160.1822786170645000 70.6288210522498000, -160.1807191728515200 70.6298738472003700, -160.1796539025055800 70.6305015883776800, -160.1790239795729700 70.6309049558990400, -160.1780861161812800 70.6315408431354400, -160.1763894947793300 70.6325700425734300, -160.1745590380691300 70.6335736841782600, -160.1725982183331000 70.6345498523938300, -160.1705107587644600 70.6354966856236000, -160.1683006235748800 70.6364123780288700, -160.1663707791880700 70.6371494380961700, -160.1643614176452700 70.6378627443702400, -160.1557509144731000 70.6408094746775500, -160.1528057714691600 70.6417670934766300, -160.1497173376849600 70.6426737315075600, -160.1469608715469500 70.6434088031737700, -160.1441101663510600 70.6441032488659200, -160.1411706567004000 70.6447557438825100, -160.1381479489686500 70.6453650408640200, -160.1357822652393300 70.6457961380813800, -160.1307886788544300 70.6474504158040900, -160.1290838547360800 70.6484590081767600, -160.1272519573119600 70.6494626479828900, -160.1252895934399600 70.6504388152991400, -160.1242363218487400 70.6509161835351200, -160.1232685973678500 70.6515688008595400, -160.1215702915357000 70.6525979984988900, -160.1197380181949700 70.6536016383050200, -160.1177752514266800 70.6545778056212700, -160.1156857189207600 70.6555246379517100, -160.1134733884860600 70.6564403285583500, -160.1117823419814700 70.6570834085724800, -160.1102310699079000 70.6578547966615800, -160.1081411974582800 70.6588016289920200, -160.1059284362483200 70.6597171900963300, -160.1048717724143300 70.6602956223451300, -160.1029083536376000 70.6612717887621200, -160.1008181268550500 70.6622186210925600, -160.0986050616742200 70.6631343116992000, -160.0968661082842500 70.6637892618650200, -160.0953361825188000 70.6645497816471700, -160.0932456157925000 70.6654966130782900, -160.0910321899835700 70.6664123036849200, -160.0893503129665300 70.6670567128970200, -160.0876075545449700 70.6676831302722800, -160.0858056639002300 70.6682909253859700, -160.0848440808895800 70.6685986158335000, -160.0828807997091000 70.6695777697983100, -160.0807897104767200 70.6705246003301100, -160.0785757324840400 70.6714402909367400, -160.0761079181458800 70.6723719202279900, -160.0735128848117500 70.6732648588861700, -160.0728827730215200 70.6734718288618600, -160.0716188703145800 70.6742369504749500, -160.0697846292572000 70.6752405884824400, -160.0678197544780500 70.6762167540000500, -160.0667846716752400 70.6766852783030100, -160.0666509811578400 70.6767557114070000, -160.0648202366645600 70.6777675818085000, -160.0628551154711700 70.6787437473261100, -160.0607630747560700 70.6796905787572900, -160.0585480886233500 70.6806062675652200, -160.0561861568656000 70.6814992754712500, -160.0548659350148700 70.6819446907949200, -160.0528969071665000 70.6829107380401600, -160.0508044329781700 70.6838575685719700, -160.0485889881912300 70.6847732582792800, -160.0473071952708000 70.6852570764529600, -160.0453249428917700 70.6862437307636400, -160.0432321224644500 70.6871905603961200, -160.0410163107541200 70.6881062501034300, -160.0386478921864500 70.6890012832826600, -160.0361619448178800 70.6898607356844800, -160.0323155273396800 70.6911161793682400, -160.0303442682733200 70.6920777165134400, -160.0282508417029400 70.6930245470452400, -160.0260343869773600 70.6939402349539100, -160.0239442591202400 70.6947339505114800, -160.0217616629703300 70.6954999642520100, -160.0198836402177800 70.6961308980226000, -160.0179159307755600 70.6971047046184800, -160.0158219807997600 70.6980515342509600, -160.0136049720917700 70.6989672221596400, -160.0125598015935400 70.6993618464720700, -160.0124757527537400 70.6994004876424400, -160.0105108006329100 70.7003826966042100, -160.0092443402540700 70.7009419472131500, -160.0074026680986200 70.7019345262574500, -160.0054351861848500 70.7029106908757400, -160.0043568918570400 70.7033981261226900, -160.0034015924095500 70.7040406872279700, -160.0016988583156200 70.7050698812700500, -159.9998618059775300 70.7060735174789000, -159.9978939193688600 70.7070496811978700, -159.9967870913511700 70.7075499119989100, -159.9967054589897000 70.7075928537272500, -159.9948704454147000 70.7086015108511100, -159.9929023114924600 70.7095776745700800, -159.9908070619963000 70.7105245033032500, -159.9885886782249000 70.7114401912119200, -159.9865454320260500 70.7122161262732900, -159.9844137339066800 70.7129656338569800, -159.9806358969290700 70.7142438285898700, -159.9777828472006100 70.7151628376948300, -159.9747968381035700 70.7160345343663200, -159.9720303013573000 70.7167696033345700, -159.9691691802134700 70.7174640463287600, -159.9671465176976000 70.7179113888995500, -159.9664802225841800 70.7181235065946200, -159.9654592015808700 70.7184376982412500, -159.9643820350028700 70.7188150079063600, -159.9621187004176500 70.7195768622824500, -159.9604932027990300 70.7203826494397800, -159.9583968264523400 70.7213294772736300, -159.9561772492806000 70.7222451642829800, -159.9543541867962500 70.7229399589120400, -159.9524601570106200 70.7236137345862500, -159.9487384350307200 70.7248929203720400, -159.9472221420881500 70.7254003718297800, -159.9456655748064000 70.7258943505439100, -159.9440698276604000 70.7263745084768500, -159.9424360230040300 70.7268405056848300, -159.9396679960811000 70.7275755737537700, -159.9368053334993000 70.7282700167479600, -159.9342014877084600 70.7288455864547200, -159.9336175120385200 70.7290651163621100, -159.9309313800791000 70.7299829752341800, -159.9297363483537700 70.7303723457072200, -159.9273861338629700 70.7311081593141500, -159.9261541840683000 70.7314516859465800, -159.9242154094136000 70.7321759000977900, -159.9222003578602000 70.7328879913877700, -159.9209784292111200 70.7333043783944000, -159.9184392959367400 70.7341265395082200, -159.9180144184306300 70.7342687969674600, -159.9169785208420400 70.7346319126327200, -159.9154783950119000 70.7351245369678700, -159.9140911718700700 70.7355738904227600, -159.9140251949068000 70.7355965272580000, -159.9116462497745800 70.7364294811357000, -159.9091610119711000 70.7372212415671100, -159.9065761409760900 70.7379774679858400, -159.9051867423742400 70.7383668654385400, -159.9048833443908000 70.7384514736566500, -159.9021084799224000 70.7391749404711700, -159.9008730821270200 70.7397184322599000, -159.8986514706888000 70.7406341183699400, -159.8972463393470500 70.7411733545667400, -159.8957984137657600 70.7417001225626900, -159.8943087074808300 70.7422140536357300, -159.8927782610079200 70.7427147871577500, -159.8915561794740700 70.7431041621274500, -159.8895096939172000 70.7437341057444700, -159.8873987368622000 70.7443404583455000, -159.8846282943602500 70.7450755255151200, -159.8817631325625000 70.7457699685093100, -159.8801641604476000 70.7461231061964800, -159.8747191863413400 70.7479225569804800, -159.8730606053626000 70.7487435822506000, -159.8709612648504500 70.7496904082857400, -159.8687385481454400 70.7506060934964600, -159.8664906585170500 70.7514549303008400, -159.8641367208329600 70.7522719086217600, -159.8425738568979600 70.7594380394340300, -159.8405995221502000 70.7604105546034800, -159.8384989603587000 70.7613573806386900, -159.8362749495292700 70.7622730649500200, -159.8339945619994200 70.7631331774542200, -159.8327005823659600 70.7635812502745100, -159.8326114046925600 70.7636207170225500, -159.8306405242407800 70.7646045447639800, -159.8285395226807900 70.7655513698998700, -159.8263150469018700 70.7664670542112600, -159.8247095187292600 70.7670706144173800, -159.8231243790868000 70.7678545363578500, -159.8226217318074600 70.7680810198232800, -159.8220877845236000 70.7684027396947500, -159.8202449288603500 70.7694063714069400, -159.8182708243390400 70.7703825306293200, -159.8161692166360000 70.7713293557652000, -159.8139440987411300 70.7722450391772800, -159.8125924563767300 70.7727458473430600, -159.8106159659540400 70.7737165224995700, -159.8085140084147300 70.7746633476354500, -159.8062885199991600 70.7755790310475300, -159.8041529853719600 70.7763861438055500, -159.8019214445190200 70.7771645735862800, -159.8012521996293000 70.7773828300536300, -159.8006695963247800 70.7777225138829600, -159.8002433653390000 70.7780427426785100, -159.7986723189723000 70.7790955250384900, -159.7969632086851000 70.7801247136846400, -159.7951192756340200 70.7811283444975700, -159.7931440145845800 70.7821045028206300, -159.7924882424384000 70.7823997709327300, -159.7912423108839200 70.7832345162600000, -159.7895328480624600 70.7842637040067800, -159.7876885336988600 70.7852673348197100, -159.7857128643571800 70.7862434931427600, -159.7836095920090400 70.7871903173793300, -159.7813827096443000 70.7881060007913400, -159.7789522153724000 70.7890190806661000, -159.7763987945686800 70.7898950626071200, -159.7747627020370400 70.7904313526248600, -159.7731186037405300 70.7912434818013000, -159.7721677514405500 70.7916714170023600, -159.7720562166210800 70.7917298441570300, -159.7702142935547700 70.7927403179114100, -159.7682378867690400 70.7937164753351500, -159.7661338284134200 70.7946632995716500, -159.7639061141758000 70.7955789820844100, -159.7632614666433400 70.7958223826968800, -159.7626989775757200 70.7961283095738700, -159.7607222362421700 70.7971044669976100, -159.7586178208557300 70.7980512903348500, -159.7566540567393000 70.7988583428382900, -159.7562998245772000 70.7990954823706600, -159.7552994816857000 70.7996882893830800, -159.7545959321565200 70.8001350141196900, -159.7537227731874000 70.8007344788131800, -159.7520118156927300 70.8017636656607000, -159.7501658879453400 70.8027672946750000, -159.7481884901067000 70.8037434520986700, -159.7460833759470200 70.8046902754359200, -159.7438545456507200 70.8056059570493500, -159.7416176223553600 70.8064485966255000, -159.7392759019612600 70.8072598624527200, -159.7154982992071300 70.8151563291013400, -159.7128229806959600 70.8160047459223300, -159.7100329581544700 70.8168122642746300, -159.7072524594334200 70.8175473287462900, -159.7043768969761900 70.8182417690424600, -159.7028681061781300 70.8185737834534200, -159.7007722352504400 70.8192731412425500, -159.6980243963088200 70.8201478164685900, -159.6951549393489500 70.8209792531900500, -159.6923738605652000 70.8217143176617000, -159.6894976982601400 70.8224087570585500, -159.6874612896068000 70.8228567822147900, -159.6856339895170000 70.8234420592037300, -159.6826367272031700 70.8243122441148200, -159.6798551834699300 70.8250473085864800, -159.6769785400275600 70.8257417479833300, -159.6753519290482500 70.8260995540512100, -159.6743207232227600 70.8264079936340600, -159.6726984676601300 70.8268682369796400, -159.6699165677953300 70.8276033014512300, -159.6670395565302800 70.8282977408481400, -159.6640729170314600 70.8289502304688200, -159.6610223087325300 70.8295595220543500, -159.6578935502471000 70.8301244536806400, -159.6546926130736000 70.8306439452619000, -159.6534591820955600 70.8308225443250300, -159.6528655746865000 70.8309190838487000, -159.6496660098784200 70.8314489428145200, -159.6486029509654000 70.8316028662793000, -159.6478667434554000 70.8317225921239800, -159.6446648853761300 70.8322409658479700, -159.6429261307363300 70.8325404472838600, -159.6410554518476000 70.8328543952142100, -159.6379278166154200 70.8334294442135500, -159.6347263488419000 70.8339489357948100, -159.6325151533516200 70.8342690611683000, -159.6310605736865000 70.8345595089142500, -159.6279310300929200 70.8351244396412200, -159.6272380601883000 70.8352368755814200, -159.6247982579332400 70.8358812793976000, -159.6219200514691700 70.8365757187944500, -159.6189483200089400 70.8372135881366500, -159.6174135639847700 70.8376032751710900, -159.6145351093078000 70.8382977145679400, -159.6115669823303400 70.8389502032893000, -159.6085117820930500 70.8395468063400800, -159.6069559063899400 70.8399087097192300, -159.6039875392934800 70.8405611984406400, -159.6009351539342000 70.8411704900261700, -159.5978045725230000 70.8417354207531400, -159.5959399163940000 70.8420224906454900, -159.5946008519477200 70.8422498230709200, -159.5928061531813900 70.8425684186976200, -159.5909668156659800 70.8428656005670500, -159.5896051908268600 70.8430988487329500, -159.5878357872917000 70.8434294161347100, -159.5859413006505000 70.8437310055815000, -159.5846338069046300 70.8439549727438600, -159.5828094224169000 70.8442904135718000, -159.5796062081599600 70.8448099051530600, -159.5778129204299000 70.8450547491774000, -159.5763372462668600 70.8452845952079400, -159.5759686699181500 70.8453447058935200, -159.5728405337635800 70.8459294091150000, -159.5696342357313700 70.8464332704791100, -159.5678678773006700 70.8467202981033200, -159.5663724054621200 70.8469486818362400, -159.5659484443651800 70.8470391437415400, -159.5646671226895400 70.8472585909112800, -159.5628156982858200 70.8475964050501300, -159.5609792907616200 70.8478791330156200, -159.5596114992712600 70.8481133812276200, -159.5578452802354500 70.8484294020952900, -159.5546414013795400 70.8489488936765500, -159.5534581912425000 70.8491200634402400, -159.5528171922596000 70.8492242139263900, -159.5513758856885400 70.8494458383548200, -159.5509528607858600 70.8495346616953200, -159.5496163612060600 70.8497635301628200, -159.5478204474556500 70.8500963971311000, -159.5461503758391500 70.8503521229521900, -159.5446161117441200 70.8506148481967600, -159.5430159777051800 70.8509023947298100, -159.5398117013489000 70.8514218863110700, -159.5374504683644000 70.8517527253080700, -159.5345684541708000 70.8524366759119200, -159.5315982200817800 70.8530891637339600, -159.5285439146699000 70.8536984553194900, -159.5254113637434200 70.8542633860465100, -159.5222065459952600 70.8547828767284500, -159.5189355786140200 70.8552559354131400, -159.5156047055926600 70.8556816573826600, -159.5122199964556600 70.8560574238111400, -159.5097934448116000 70.8564488717181000, -159.5065222031371400 70.8569219304028500, -159.5031910522252500 70.8573476523723100, -159.4998063520814600 70.8577252246394700, -159.4989465840176000 70.8577980229604200, -159.4987995304739200 70.8578177549854300, -159.4985250079227500 70.8578585266497500, -159.4971593271412200 70.8580991348672500, -159.4953922825277700 70.8584293740164500, -159.4921867938854000 70.8589488646983900, -159.4911571573768800 70.8590977429665300, -159.4903918846777000 70.8592220238773500, -159.4889195478987700 70.8594459586641400, -159.4884741226826000 70.8595388568328400, -159.4871889123384000 70.8597588328039500, -159.4853394529533500 70.8600963699515800, -159.4821336954137000 70.8606158606335200, -159.4788617693551500 70.8610889184188900, -159.4755299205693600 70.8615146412877300, -159.4721424792919600 70.8618796662136700, -159.4697475487104000 70.8622548543780800, -159.4664774482755800 70.8627384243388900, -159.4660357282662000 70.8628374289043000, -159.4629017393237700 70.8634023596312700, -159.4610646285297500 70.8636992096508600, -159.4596974881485200 70.8639331583885900, -159.4579303769852700 70.8642633579676700, -159.4547239494506800 70.8647828477502900, -159.4533956768689500 70.8649748503091200, -159.4528755980304000 70.8650592867567200, -159.4514556395661000 70.8652785117939200, -159.4510410431096300 70.8653650940239000, -159.4496724116524400 70.8655992774847000, -159.4479065478488700 70.8659293520580000, -159.4446998514169700 70.8664488427399400, -159.4414269657818300 70.8669219014246900, -159.4380941403322800 70.8673476233941500, -159.4347077386711600 70.8677251956613100, -159.4340540277711400 70.8677733831351600, -159.4339885022675400 70.8677830805248200, -159.4335712689988300 70.8678424088001900, -159.4322047599417000 70.8680992371901100, -159.4304383052835300 70.8684293450383000, -159.4272312050560500 70.8689488357202300, -159.4262137705490500 70.8690958757741200, -159.4254378831517400 70.8692218168334300, -159.4239624248260200 70.8694464485947700, -159.4235226761305700 70.8695385499641500, -159.4222333801663500 70.8697591140918900, -159.4203864775538800 70.8700963409734200, -159.4171763879798800 70.8706007284409300, -159.4154137662323000 70.8708868009851500, -159.4122085132122800 70.8714218283547600, -159.4089348100933700 70.8718948870394500, -159.4056011509723000 70.8723206090089700, -159.4029191549949800 70.8725975174615400, -159.4022136233600000 70.8726957629991100, -159.3997114657115300 70.8731158246356500, -159.3964374829034800 70.8735888824210200, -159.3931035404959600 70.8740146052898600, -159.3897160038904400 70.8743921775570100, -159.3889943824847300 70.8744555329965400, -159.3856597556931500 70.8748756018276300, -159.3822720724981300 70.8752531740947800, -159.3793693406225300 70.8755309575876700, -159.3792311597901500 70.8755526798123600, -159.3761742094721700 70.8761703917502400, -159.3730381197134000 70.8767353215778800, -159.3711211293366100 70.8770384569592700, -159.3698304664028700 70.8772591712738000, -159.3679837598426200 70.8775963199142900, -159.3647751820290000 70.8781158096969100, -159.3629256066314200 70.8783829883842600, -159.3628180243323400 70.8784004433258600, -159.3615000498873500 70.8785888638850000, -159.3610968973039500 70.8786513361902700, -159.3596085561899000 70.8789160840101400, -159.3579588290367000 70.8792073159648900, -159.3560708498898000 70.8795081131090100, -159.3547512413766500 70.8797337494130500, -159.3529334696039000 70.8800683125026600, -159.3510989344682000 70.8803648333704400, -159.3497265951062600 70.8805994745861200, -159.3479621108627000 70.8809293099397500, -159.3447529952545000 70.8814488006216800, -159.3434730711253200 70.8816336589662200, -159.3429072221905200 70.8817254491701800, -159.3396994007067300 70.8822547982204000, -159.3375653589541200 70.8825630039795000, -159.3361879654022500 70.8828373727466200, -159.3330508243360600 70.8834023025742700, -159.3310252812916600 70.8837140579574900, -159.3298403777312200 70.8839166203558200, -159.3278854656416900 70.8842633009106700, -159.3246741835666900 70.8847737525067000, -159.3228310536102000 70.8850962988551600, -159.3196212653091000 70.8856157895371000, -159.3170832417981400 70.8859822785593700, -159.3161388457311000 70.8861703645707200, -159.3130011785615000 70.8867352943983600, -159.3110867215749200 70.8870381491913100, -159.3097919658265200 70.8872594525617500, -159.3079478205354700 70.8875962909361300, -159.3047376284387700 70.8881157816180700, -159.3014611742937300 70.8885888394035000, -159.2981247155831300 70.8890145613729600, -159.2947346222050300 70.8893921327408000, -159.2940196611784000 70.8894375305176800, -159.2935902393980100 70.8894988211137600, -159.2922687306174000 70.8897339425674300, -159.2904525353562000 70.8900682853231400, -159.2886195488530600 70.8903646083400600, -159.2872440843469800 70.8905996659418600, -159.2854811784136200 70.8909292818609000, -159.2822704476230300 70.8914487716435200, -159.2808613394792000 70.8916521856998500, -159.2803985519515800 70.8917272206347800, -159.2789974711563400 70.8919430444360000, -159.2785679747322300 70.8920314927592600, -159.2771910164522000 70.8922667850841300, -159.2754293587778700 70.8925962777960300, -159.2722183581906600 70.8931157675786500, -159.2709476332266500 70.8932991906052000, -159.2703711291242700 70.8933790414096700, -159.2700023657165800 70.8934445875976800, -159.2686806410986800 70.8936874980796000, -159.2655435396026500 70.8942632728318400, -159.2623322701181500 70.8947827635137700, -159.2610354872978700 70.8949699313173500, -159.2604876994477400 70.8950587321747900, -159.2572776773229200 70.8955877601670700, -159.2539999911066700 70.8960608179524500, -159.2506622769425000 70.8964865399219100, -159.2472709083257300 70.8968641112897400, -159.2465578502645400 70.8969270215648600, -159.2432194939844400 70.8973475373590000, -159.2398279778788600 70.8977251096261500, -159.2363938312103000 70.8980534476085600, -159.2356096340773200 70.8981535349577100, -159.2322179803754500 70.8985311072248700, -159.2315044906397000 70.8985940354863800, -159.2281658519724500 70.8990145332941200, -159.2247740516811200 70.8993921046619600, -159.2217897593898500 70.8996773462325800, -159.2213359794718600 70.8997279528827600, -159.2206669917882200 70.8998205299935200, -159.2172750530012600 70.9001981022606700, -159.2138359303838500 70.9005268026698400, -159.2103561925842000 70.9008060052929600, -159.2068424882901600 70.9010351741340500, -159.2034694262730000 70.9012065678289200, -159.2026566172091000 70.9012253618610100, -159.2006973479042500 70.9014865258825500, -159.1973051258308700 70.9018640972503200, -159.1938657136317400 70.9021927985588700, -159.1903856835524200 70.9024720002826700, -159.1889150968542000 70.9025679066836000, -159.1872512314591300 70.9027530950793300, -159.1838116663752800 70.9030817954885000, -159.1803314807132500 70.9033609972123000, -159.1774614562811500 70.9035481605192200, -159.1773630866371100 70.9035568389770100, -159.1768183223077000 70.9036006188735000, -159.1747870155083400 70.9038052784908900, -159.1739254523976700 70.9039028801138900, -159.1731459254441000 70.9040145183553800, -159.1697532707967800 70.9043920897232200, -159.1663134206278300 70.9047207910317600, -159.1639204802459300 70.9049127513224600, -159.1615425450523800 70.9052557923210400, -159.1582032849536000 70.9056815133911900, -159.1548103452212200 70.9060590856583400, -159.1513699644522700 70.9063858813034400, -159.1505654237552700 70.9064865109438100, -159.1471723464266300 70.9068640823115900, -159.1464626635210800 70.9069268145209400, -159.1431226425958400 70.9073475083808400, -159.1397294186777000 70.9077250806479900, -159.1369760354156700 70.9079881404404100, -159.1362903671067400 70.9080645756197300, -159.1356787840486200 70.9081535059795600, -159.1322854216348600 70.9085310782467100, -159.1288448547062400 70.9088597795552600, -159.1253636555082700 70.9091389812790000, -159.1218484763260800 70.9093681501200900, -159.1183081359117200 70.9095467581764200, -159.1147473215316400 70.9096746138923800, -159.1142436229448300 70.9096854444278000, -159.1138734826750500 70.9097070938074100, -159.1103924264692800 70.9099999787160900, -159.1068770944023600 70.9102291475571700, -159.1033374401707000 70.9104077196406000, -159.0997773191679000 70.9105355627660900, -159.0962035239734300 70.9106124350159300, -159.0932560364369000 70.9106336338351800, -159.0904211988792000 70.9108609761531700, -159.0869057139275400 70.9110901449942600, -159.0833629633300700 70.9112688438821100, -159.0797997162838400 70.9113967301750000, -159.0762227833547500 70.9114735601567100, -159.0726390002896000 70.9114991863384600, -159.0711667291612000 70.9114811090659600, -159.0690552711838000 70.9114811090659600, -159.0675825809713000 70.9114939612773600, -159.0653939206928600 70.9116669737518900, -159.0622348577524600 70.9118684749502100, -159.0618783862784700 70.9118971129614700, -159.0587934265753300 70.9121927695807100, -159.0553116428180300 70.9124719713045100, -159.0536454958429400 70.9125805761327100, -159.0523466427833000 70.9127250657092500, -159.0514726933101300 70.9127955986380100, -159.0481309420892700 70.9132084917785000, -159.0447367154270400 70.9135860640456600, -159.0412942455329800 70.9139067146232400, -159.0406033944311000 70.9139783914896500, -159.0372096839797000 70.9143640612524600, -159.0337681053137800 70.9146927625610000, -159.0302858835866300 70.9149719642848000, -159.0267696701841000 70.9152011331258300, -159.0244333178433200 70.9153189560050800, -159.0224237512550800 70.9156437038938600, -159.0205576373250800 70.9159074327818600, -159.0191438527066000 70.9161235668492000, -159.0173421140473000 70.9164217011006600, -159.0140609870249000 70.9168947588860900, -159.0107197682027000 70.9173204799562300, -159.0073248373713300 70.9176980522233900, -159.0066188138072000 70.9177605928771300, -159.0032769879426000 70.9181814773933200, -158.9998819105217400 70.9185590496604700, -158.9989541851874700 70.9186321249726500, -158.9956112081906700 70.9190424748304000, -158.9922159832809700 70.9194200470975600, -158.9887729665991000 70.9197443462246600, -158.9881394751566300 70.9198100560892600, -158.9847449526174300 70.9201980443043600, -158.9840399695689300 70.9202657380734000, -158.9835985787114200 70.9203642686961200, -158.9804555039183400 70.9209291976244500, -158.9772399185873400 70.9214486865077400, -158.9739579596920600 70.9219217442931200, -158.9706158937085000 70.9223474653633200, -158.9679319462023300 70.9226349741248300, -158.9672212011974500 70.9227318356057600, -158.9647148877818000 70.9231436819354100, -158.9614326482980600 70.9236167388215200, -158.9580902972294000 70.9240424607909900, -158.9546942161651000 70.9244200321588200, -158.9512508919151000 70.9247487325679900, -158.9477669039194400 70.9250279342917900, -158.9447799811112200 70.9252102430583000, -158.9442485069630000 70.9252529140907800, -158.9413357278615000 70.9255267306741600, -158.9378516031689200 70.9258059323979000, -158.9349897535742300 70.9259923510662100, -158.9323316318992700 70.9264216730218200, -158.9290488501243000 70.9268947299079300, -158.9257059459726000 70.9273204509780700, -158.9223081714849000 70.9276910130298600, -158.9198066253754300 70.9280825103995800, -158.9179978117496000 70.9284021762194900, -158.9164973270899600 70.9286444940482300, -158.9162260627825600 70.9286933371278700, -158.9130824609867400 70.9292631745559000, -158.9098655239747300 70.9297826634392000, -158.9065821855194300 70.9302557203253000, -158.9032387147948000 70.9306814413954500, -158.8998414969874800 70.9310590136626000, -158.8979705384096000 70.9312375560684200, -158.8957958976625000 70.9315144393399400, -158.8923985368629700 70.9318920107077700, -158.8889533672041000 70.9322164141562400, -158.8881007883206800 70.9323047959296700, -158.8847045426804800 70.9326980083064900, -158.8812597813138200 70.9330267096150400, -158.8777743373158000 70.9333059113387800, -158.8742548719647500 70.9335350801798700, -158.8708793260200600 70.9337063398757600, -158.8700000336746000 70.9337387802206100, -158.8687326757723500 70.9338597066602000, -158.8652470851848000 70.9341389083839400, -158.8617274714456200 70.9343680772250300, -158.8582287831318000 70.9345446923837200, -158.8547100381377000 70.9346718673128900, -158.8511777790312500 70.9347493654908600, -158.8476385753599200 70.9347770421268300, -158.8085880039332000 70.9347911479931700, -158.8051369877817400 70.9348044570601200, -158.8049999994504000 70.9348051180618300, -158.8014120021621500 70.9347794918800800, -158.7978308622045000 70.9347026618983700, -158.7942634252168800 70.9345747756054800, -158.7907165071610500 70.9343960776169500, -158.7871968889252500 70.9341669087758600, -158.7863497563361600 70.9340990522295600, -158.7855919884794700 70.9342351601246200, -158.7823742438762300 70.9347546490079100, -158.7790900825412500 70.9352277058939600, -158.7757457727492000 70.9356534269641700, -158.7723477023845400 70.9360309992312600, -158.7689023609551700 70.9363596996404900, -158.7654163314984700 70.9366389013642900, -158.7618962734942000 70.9368680702053200, -158.7583493410492000 70.9370467502074000, -158.7547818896724400 70.9371746302050500, -158.7512007362249700 70.9372514664820500, -158.7476127236482500 70.9372771106502000, -158.7440225544972600 70.9372642980089800, -158.7425245510671600 70.9372771106502000, -158.7389369710643300 70.9372514475962800, -158.7353562510900800 70.9371746050240400, -158.7317892313879000 70.9370467313216300, -158.7282427261209000 70.9368680702053200, -158.7247226681166000 70.9366389013642900, -158.7212366386599200 70.9363596996404900, -158.7177912972305500 70.9360309992312600, -158.7143932268659000 70.9356534269641700, -158.7110489170738400 70.9352277058939600, -158.7077647557388500 70.9347546490079100, -158.7045470111356200 70.9342351601246200, -158.7014018274323600 70.9336702311962900, -158.6983352058050800 70.9330609423087100, -158.6953529954443500 70.9324084562852600, -158.6924608854614600 70.9317140195863700, -158.6896643878012300 70.9309789596113700, -158.6873905896040000 70.9303303892361300, -158.6851912435810000 70.9296549561113900, -158.6839691827315700 70.9292655784437300, -158.6810660776373500 70.9282925038959900, -158.6783173753465800 70.9272726547093300, -158.6760748915429800 70.9263569793911300, -158.6739568856017700 70.9254101632485000, -158.6719673810897300 70.9244340139186400, -158.6701101551595000 70.9234303938976000, -158.6683887295562000 70.9224012160433400, -158.6668063652215600 70.9213484444752000, -158.6653660595959500 70.9202740864799400, -158.6640705331285800 70.9191801916126100, -158.6629222337740500 70.9180688427030100, -158.6619233235025500 70.9169421603524500, -158.6610756800985200 70.9158022903434900, -158.6603808944627000 70.9146514054380600, -158.6598402616187400 70.9134916981834000, -158.6594547852101300 70.9123253764150300, -158.6592521616579200 70.9112922730200200, -158.6575414541747500 70.9108810760009200, -158.6547478910023300 70.9101460151265400, -158.6519306756601000 70.9093342510748800, -158.6492299207242200 70.9084811784636600, -158.6430070330481200 70.9064232229534400, -158.6406589652390300 70.9056135857983900, -158.6384157799642500 70.9047727106921000, -158.6361758340474600 70.9038570335753200, -158.6340602247995000 70.9029102174326300, -158.6320729712905700 70.9019340663042000, -158.6302178452773100 70.9009304444844600, -158.6284983658069000 70.8999012648315600, -158.6269177902238000 70.8988484914647800, -158.6264252450290000 70.8984806741438500, -158.6260603783837300 70.8982622683890300, -158.6244799332023400 70.8972094950222500, -158.6235467768622400 70.8965294474761000, -158.6219557223786600 70.8954852932117800, -158.6209338056506000 70.8948732748817700, -158.6193536293665000 70.8938205015150000, -158.6185310509672000 70.8932232509523000, -158.6169500580986700 70.8921693291512700, -158.6167195636569100 70.8920147671678400, -158.6159739204600200 70.8915682825502800, -158.6143940067779600 70.8905155091834400, -158.6135646079203000 70.8898991732083300, -158.6119832481283800 70.8888485114496800, -158.6105452906326100 70.8877741516558300, -158.6092518757734200 70.8866802531911700, -158.6081054461094200 70.8855689015836100, -158.6071081618122000 70.8844422156357700, -158.6062618970688600 70.8833023429288600, -158.6055682391828700 70.8821514544261500, -158.6052133253346600 70.8814287322502400, -158.6049185923191400 70.8807031106600800, -158.6046842523763300 70.8799751283495400, -158.6045104727800800 70.8792453240125700, -158.6044707883961300 70.8789942377939000, -158.6043712820090300 70.8784867746450100, -158.6041733079517800 70.8783192687193400, -158.6030273585257400 70.8772079171117200, -158.6020304915139400 70.8760812302646200, -158.6018585312462000 70.8758677842709000, -158.6007039780061500 70.8747629212718400, -158.5997072333021500 70.8736362344247400, -158.5988614254144000 70.8724963599191300, -158.5981681407470800 70.8713454705171000, -158.5976286743238300 70.8701857569671500, -158.5972440261908200 70.8690194307022200, -158.5970149005172200 70.8678487112490500, -158.5969417073938500 70.8666758271277800, -158.5970245583366700 70.8655030122543000, -158.5972632671860000 70.8643324996451700, -158.5976573537038800 70.8631665151226600, -158.5982060390774000 70.8620072782133500, -158.5989082540126800 70.8608569931557800, -158.5997626360368000 70.8597178497989800, -158.6007675339944600 70.8585920128111900, -158.6019210125446600 70.8574816234781800, -158.6032208530599000 70.8563887925088200, -158.6046645617201000 70.8553155973369800, -158.6062493722107300 70.8542640776251500, -158.6079722502191500 70.8532362307675000, -158.6098299015287000 70.8522340109908600, -158.6118187783139300 70.8512593203614100, -158.6139350827378400 70.8503140105831900, -158.6151538313842000 70.8498302715498800, -158.6161795675329800 70.8494116119563800, -158.6164912536683900 70.8492875333930100, -158.6173981444088000 70.8489275626569700, -158.6177107145777800 70.8488088872204000, -158.6197575769505800 70.8480481399097900, -158.6200029398837300 70.8479608004506600, -158.6222307575434000 70.8472010199112100, -158.6224017753216300 70.8471451477304300, -158.6248138811556600 70.8463900805378400, -158.6249029563063600 70.8463633805656000, -158.6275020284958000 70.8456168605297300, -158.6302902218162700 70.8448833428919900, -158.6331729995342800 70.8441904134568900, -158.6361448838792700 70.8435393879324800, -158.6392002271087700 70.8429315001886300, -158.6423332267969500 70.8423679049549300, -158.6455379339284700 70.8418496697265100, -158.6488082645897200 70.8413777783618500, -158.6521380125592000 70.8409531247869500, -158.6555208592002700 70.8405765156937300, -158.6589503869507800 70.8402486651438600, -158.6624200910143500 70.8399701927702400, -158.6659233910516200 70.8397416291729200, -158.6694536428713000 70.8395634060264000, -158.6730041546180000 70.8394358623751800, -158.6765681921683000 70.8393592392375800, -158.6801401248668500 70.8393336823036700, -158.6837098074616000 70.8393464607706300, -158.6851373130365300 70.8393336823036700, -158.6887098078113600 70.8393592392375800, -158.6922738453616500 70.8394358623751800, -158.6958243571083600 70.8395634060264000, -158.6993546089280200 70.8397416291729200, -158.7028579089652900 70.8399701927702400, -158.7063276130289000 70.8402486651438600, -158.7097571407794000 70.8405765156937300, -158.7131399874204500 70.8409531247869500, -158.7164697353899500 70.8413777783618500, -158.7197400660511700 70.8418496697265100, -158.7229447731827200 70.8423679049549300, -158.7260777728709000 70.8429315001886300, -158.7291331161004000 70.8435393879324800, -158.7321050004454000 70.8441904134568900, -158.7349877781634000 70.8448833428919900, -158.7377759714838700 70.8456168605297300, -158.7396572488829000 70.8461504166085100, -158.7414884385405900 70.8467024573525900, -158.7432678533287500 70.8472724764436600, -158.7449938519846500 70.8478599504763900, -158.7486333354600300 70.8491367737431700, -158.7500996512778500 70.8496650283184400, -158.7515227609666200 70.8502058787983000, -158.7537625477034000 70.8511200117791900, -158.7558789384622200 70.8520653215574000, -158.7578678952871200 70.8530400112875300, -158.7597256221397000 70.8540422319634900, -158.7614485702952400 70.8550700788211400, -158.7630322962034800 70.8561235230822000, -158.7640095543973800 70.8567090797602600, -158.7655945600408800 70.8577605985728400, -158.7670384467669000 70.8588337937446200, -158.7683384473614300 70.8599266238147200, -158.7694920680045000 70.8610370131477200, -158.7704970900686300 70.8621628492361400, -158.7713515782127400 70.8633019925929400, -158.7720538794829000 70.8644522767512500, -158.7726026341042600 70.8656115136605000, -158.7729967691855000 70.8667774981830700, -158.7730134992735300 70.8668595235482100, -158.7731568826839600 70.8669546025728900, -158.7739398261620000 70.8675398067167600, -158.7755238443499200 70.8685938742079900, -158.7765552282411600 70.8692090860305400, -158.7781412330314500 70.8702606039437900, -158.7795860298713500 70.8713337964176200, -158.7808868506476200 70.8724266255883300, -158.7820411997415400 70.8735370122233800, -158.7823803961383400 70.8739700465804400, -158.7824362943994500 70.8740163634644800, -158.7825266169098200 70.8740890574640600, -158.7841605627597200 70.8750420897207000, -158.7857470333988500 70.8760936067346300, -158.7871922556180700 70.8771667983091300, -158.7883440218591000 70.8781341189944700, -158.7883959424188000 70.8781307384429000, -158.7919330119988800 70.8779525170950300, -158.7954903783782200 70.8778249734438100, -158.7990612975408200 70.8777483512055300, -158.8026423538615000 70.8777227942716200, -158.8125526453882500 70.8777227942716200, -158.8161337026082500 70.8777483512055300, -158.8175996622945500 70.8777712110725700, -158.8178664165019000 70.8777213022963200, -158.8197412898286400 70.8774254945909700, -158.8214643755804300 70.8771078720307000, -158.8246012612392000 70.8765349868002700, -158.8278114776175600 70.8760167542698700, -158.8296326101568000 70.8757415752135700, -158.8328427860657000 70.8752213515841700, -158.8333182180613000 70.8751436231797200, -158.8334530767980400 70.8751121496060800, -158.8352920141151400 70.8744579449782500, -158.8365420564707000 70.8740413394363000, -158.8393807835962500 70.8731397007366600, -158.8423484483222000 70.8722839085755800, -158.8451403828224000 70.8715503945351200, -158.8480270285245000 70.8708574686973000, -158.8510028995641200 70.8702064458708500, -158.8540623410042000 70.8695985608249500, -158.8571995432243000 70.8690349682892100, -158.8604085482159000 70.8685167357588200, -158.8636832639714400 70.8680448461927300, -158.8670174761755600 70.8676201953158000, -158.8704048580977000 70.8672435880212100, -158.8738389840818300 70.8669157383706600, -158.8773133394390400 70.8666372677957400, -158.8808213357360200 70.8664087050977400, -158.8843563206876300 70.8662304828505400, -158.8879115907472800 70.8661029391993200, -158.8914804063956000 70.8660263169610400, -158.8950568824691300 70.8660007600271300, -158.8976661178970000 70.8660007600271300, -158.9012425939705000 70.8660263169610400, -158.9048114096188400 70.8661029391993200, -158.9083666796785000 70.8662304828505400, -158.9119016646300800 70.8664087050977400, -158.9120635497929500 70.8664192523467000, -158.9124360975478400 70.8662887121544100, -158.9211316307201400 70.8633474749061000, -158.9226294228096000 70.8628536859488900, -158.9241656312388500 70.8623727779813600, -158.9257392235862800 70.8619050747594800, -158.9273491440477200 70.8614508892471800, -158.9301395568950000 70.8607173734081400, -158.9330246305822000 70.8600244466709300, -158.9359988801441800 70.8593734220458500, -158.9390566560398000 70.8587655370000100, -158.9421921495480200 70.8582019426655700, -158.9453994062575600 70.8576837092358600, -158.9472501741561800 70.8574062962636000, -158.9504558093880700 70.8568777071405400, -158.9537286095876400 70.8564058166751400, -158.9570608720615600 70.8559811648988800, -158.9604462727772300 70.8556045567049800, -158.9611744988040400 70.8555399260268400, -158.9614840409557000 70.8555054244358200, -158.9645070841346000 70.8551201620658700, -158.9678923382607800 70.8547435538719700, -158.9697176382583700 70.8545693992584200, -158.9719802560839200 70.8542871605241100, -158.9753653690165400 70.8539105523302000, -158.9787971945348800 70.8535827017803400, -158.9822692224466300 70.8533042303060400, -158.9857748697144500 70.8530756676080400, -158.9893074858517500 70.8528974444615800, -158.9928603754059700 70.8527699008103600, -158.9964268006563000 70.8526932776727000, -158.9999999996002800 70.8526677207388000, -159.0035731985442500 70.8526932776727000, -159.0071396237946000 70.8527699008103600, -159.0106925133487700 70.8528974444615800, -159.0142251294861000 70.8530756676080400, -159.0177307767539200 70.8533042303060400, -159.0212028046656800 70.8535827017803400, -159.0231922947885400 70.8537655726231600, -159.0267257454967200 70.8539366695417200, -159.0302315429513300 70.8541652331390400, -159.0337037219491700 70.8544437037140300, -159.0371356958556500 70.8547715542638900, -159.0376071942166000 70.8548240081215100, -159.0384406589092500 70.8547696719828100, -159.0419735772187800 70.8545914497356600, -159.0455267680458700 70.8544639060844500, -159.0480596708171400 70.8544053341389000, -159.0483468216484700 70.8543053807887300, -159.0494900578199000 70.8539126972132700, -159.0512178533212500 70.8533620450224400, -159.0529941213815700 70.8528282829989300, -159.0548173277574300 70.8523118715956500, -159.0576064581714800 70.8515783548572200, -159.0604902062579800 70.8508854272207600, -159.0629120697362000 70.8503610676092400, -159.0629923000546000 70.8503374990763700, -159.0634156514111600 70.8501804819437700, -159.0651231051471700 70.8495510761213200, -159.0674332125726700 70.8487730222572000, -159.0698370014764000 70.8480262135389600, -159.0722748504040000 70.8473278198230800, -159.0720558915661200 70.8471815990516200, -159.0706209342087000 70.8461072347611200, -159.0693302164163200 70.8450133326991800, -159.0682576228909700 70.8439713835725200, -159.0625492517465300 70.8439713835725200, -159.0589793137443200 70.8439456845457600, -159.0554162051937000 70.8438688311816800, -159.0518667294659600 70.8437409682711000, -159.0483376647514000 70.8435623422283800, -159.0448340994141200 70.8433331724879700, -159.0413644034444500 70.8430539698648500, -159.0379352039465000 70.8427252685563600, -159.0345530524813600 70.8423476953898900, -159.0312244088793200 70.8419219725210500, -159.0279556304479600 70.8414489138363600, -159.0247529575829000 70.8409294231544200, -159.0216225029761000 70.8403644915281300, -159.0185714576066700 70.8397456887126400, -159.0161156663049300 70.8394290032459800, -159.0153833564567000 70.8393642781389900, -159.0120017760610800 70.8389867058718300, -159.0086736936360000 70.8385609830029900, -159.0054054664890700 70.8380879243183000, -159.0022033332172400 70.8375684327370400, -159.0004078511413800 70.8372497282923600, -158.9990703416229400 70.8370225883218700, -158.9972049138756300 70.8367354347925600, -158.9955208622979200 70.8364403357529700, -158.9923174420962400 70.8359294380931600, -158.9905468613485500 70.8355987070147500, -158.9891875675521600 70.8353657700143300, -158.9873470753072400 70.8350684397567500, -158.9842175407069000 70.8345035090297900, -158.9811661760781500 70.8338942165449300, -158.9781988018332000 70.8332417278235200, -158.9753185125393000 70.8325601280475300, -158.9737259714763700 70.8322460047493800, -158.9735210348678400 70.8322104131800600, -158.9712671287749400 70.8319220014992100, -158.9679999898076500 70.8314489428145200, -158.9647989231317800 70.8309294512332600, -158.9616700387412600 70.8303645205063000, -158.9586193072352000 70.8297552280214400, -158.9556525481265800 70.8291027393000300, -158.9527754199496300 70.8284082999031700, -158.9499934085689300 70.8276732354315200, -158.9481719792534000 70.8271484369508400, -158.9461920255415000 70.8268950160921800, -158.9429257094539000 70.8264219574074900, -158.9397275844604300 70.8258877259378300, -158.9388838558052700 70.8257504750045000, -158.9379551079418600 70.8256159589094500, -158.9354282513127100 70.8252019928777400, -158.9347535106659600 70.8251095830409000, -158.9320496683574800 70.8248207459806700, -158.9287239511494000 70.8243950231118900, -158.9254580442533000 70.8239219644272000, -158.9222603140622000 70.8233877770243200, -158.9214192222193000 70.8232509379804500, -158.9204874418419400 70.8231159659291600, -158.9186924373061000 70.8228245379221400, -158.9179899381850600 70.8227055432262800, -158.9146081383548800 70.8223477533462100, -158.9112814435837300 70.8219365077636700, -158.9103769603284200 70.8218643290756000, -158.9069994673515000 70.8214676183359900, -158.9064824129329700 70.8214305204022600, -158.9063596195008200 70.8214210748228100, -158.9029225635254600 70.8213688484935900, -158.8993779450361000 70.8212409981736100, -158.8958537060836400 70.8210624081037300, -158.8923540941660800 70.8208332383633200, -158.8888883111466200 70.8205540357402000, -158.8854629805321000 70.8202253335323900, -158.8844318412564300 70.8201100899087800, -158.8823268583977600 70.8199722409262300, -158.8793919505780300 70.8197357956705100, -158.8788608874200000 70.8197086775135200, -158.8778679612374000 70.8197028768863100, -158.8743232366280400 70.8195750211703500, -158.8707988924549000 70.8193964140133400, -158.8672995728170000 70.8191672433736100, -158.8650653205081000 70.8189872377708400, -158.8424379614427300 70.8189713764279500, -158.8389212183395200 70.8189436197523000, -158.8354113820296300 70.8188660963932600, -158.8319149725978700 70.8187389493430700, -158.8284384858474000 70.8185624151234400, -158.8249393127990200 70.8183332453830300, -158.8220050659810000 70.8180968334022000, -158.8214736260070200 70.8180697008560900, -158.8204837997875000 70.8180640045502500, -158.8169372297693000 70.8179361173579900, -158.8134110590730800 70.8177574184701400, -158.8099120272182500 70.8175282487297300, -158.8064468188655700 70.8172490461066700, -158.8042985525361500 70.8170590274522200, -158.8007726723209300 70.8168964210330500, -158.7972737906529000 70.8166672512926400, -158.7947277281021500 70.8164620979475200, -158.7852810262983000 70.8164713636625700, -158.7850559997345700 70.8164714652859300, -158.7814892938957600 70.8164458391042300, -158.7779294049180700 70.8163690091225200, -158.7743831361727600 70.8162411228296400, -158.7708572658501000 70.8160624230424700, -158.7673585307715600 70.8158332533020600, -158.7650444879127500 70.8156467878690100, -158.7595939532982600 70.8156381354916100, -158.7561292233849300 70.8156082797983100, -158.7526714767072600 70.8155301017328600, -158.7492269500636700 70.8154037406901600, -158.7458018586688000 70.8152294250979300, -158.7437499996627300 70.8150950214181900, -158.7416981415559600 70.8152294250979300, -158.7381728216184000 70.8154081068986400, -158.7346271086541000 70.8155359877956700, -158.7310677772561000 70.8156128231733000, -158.7275016289969500 70.8156384673414400, -158.7250813708086000 70.8156384673414400, -158.7215152225494400 70.8156128231733000, -158.7179558911514300 70.8155359877956700, -158.7144101781871400 70.8154081068986400, -158.7108848582495900 70.8152294250979300, -158.7073862697605200 70.8150002553575700, -158.7039215002769800 70.8147210527344600, -158.7018276582198300 70.8145336214295200, -158.6983024713819000 70.8143684276608400, -158.6948040339789500 70.8141392579204900, -158.6923291572647700 70.8139398152703200, -158.6903462879508000 70.8138970156348400, -158.6868004589739800 70.8137691293418900, -158.6832750248225000 70.8135904304540400, -158.6820801927466700 70.8135121579597900, -158.6817249353574700 70.8135354306156700, -158.6785394863082000 70.8136991503955100, -158.6775572584607000 70.8137366377357000, -158.6762715849656300 70.8138600552973700, -158.6728069656689000 70.8141392579204900, -158.6693085282659300 70.8143684276608400, -158.6661211240905800 70.8145322292790000, -158.6629165104885400 70.8146544948091300, -158.6596996948849800 70.8147350326956400, -158.6564757062887700 70.8147737188321000, -158.6464071628602400 70.8148287933142300, -158.6450559998344800 70.8148324706420500, -158.6425824271372800 70.8148146964411500, -158.6402797292260800 70.8150002553575700, -158.6374990362514800 70.8151824004475000, -158.6371142748039000 70.8152164955449200, -158.6367804860305700 70.8152280275514800, -158.6363739403050800 70.8152652648801100, -158.6351092255103200 70.8154178609455600, -158.6330485135780200 70.8156817723959200, -158.6296708830048200 70.8160593464617100, -158.6262462673513200 70.8163880477702600, -158.6246015305361800 70.8165205754642700, -158.6243729804287000 70.8165757740528100, -158.6214080838160000 70.8172282636734800, -158.6183592669665600 70.8178375561583400, -158.6152323466954200 70.8184024877846200, -158.6140417953925200 70.8185885359322400, -158.6135269533062300 70.8186920362085700, -158.6118509218825000 70.8191027664795500, -158.6088856493532000 70.8197552561002200, -158.6058364466946400 70.8203645485851300, -158.6027091307217600 70.8209294802114200, -158.5995096684364000 70.8214489717926800, -158.5962441671345900 70.8219220304773700, -158.5955891863918000 70.8220058841643000, -158.5957219856810500 70.8220652906806500, -158.5977079450656000 70.8230399858067600, -158.5995628705300400 70.8240422109793100, -158.6012832196448400 70.8250700614342500, -158.6028657026900000 70.8261215856427400, -158.6043072907488400 70.8271947853111200, -158.6056052211040400 70.8282876207771300, -158.6067570026335400 70.8293980137074200, -158.6077604221057700 70.8305238551918100, -158.6086135450790000 70.8316630030452100, -158.6093147230959600 70.8328132917001200, -158.6098625972810200 70.8339725331059600, -158.6102560983402400 70.8351385212258200, -158.6104944501587000 70.8363090383315400, -158.6105771715991800 70.8374818568023000, -158.6105765025035600 70.8376327306660300, -158.6105552371344600 70.8392717405984000, -158.6104675172621000 70.8404067956372000, -158.6102339561321300 70.8415396212565700, -158.6098549467483600 70.8426681975793100, -158.6093311393206000 70.8437905119226300, -158.6086388070352800 70.8449414040226200, -158.6077941628702800 70.8460812812261900, -158.6067987896324000 70.8472079707713100, -158.6056545597101300 70.8483193259761500, -158.6043636278790800 70.8494132280380900, -158.6029284331007000 70.8504875914292700, -158.6013516868308700 70.8515403683933300, -158.5996363739194800 70.8525695516435700, -158.5984890377388600 70.8532033272717900, -158.5972891217955000 70.8538265340673700, -158.5960375254114500 70.8544386998861500, -158.5947351883782200 70.8550393651746000, -158.5936809122442800 70.8555117412739200, -158.5920768085978200 70.8562065071246800, -158.5904048124321300 70.8568838288256900, -158.5880504601606000 70.8577666204332700, -158.5855807959169700 70.8586148385040200, -158.5830005204576300 70.8594268642584100, -158.5803145467788800 70.8602011481644900, -158.5775279911238700 70.8609362117368300, -158.5746461630899400 70.8616306502343600, -158.5716745575347800 70.8622831380564500, -158.5686188419859400 70.8628924287426700, -158.5654848440502700 70.8634573594696300, -158.5622785460180600 70.8639768501515700, -158.5590060668764600 70.8644499088362600, -158.5556736560144000 70.8648756308057800, -158.5522876752360000 70.8652532030729400, -158.5488545933647500 70.8655819043814300, -158.5453809682570600 70.8658611070045500, -158.5418734360102300 70.8660902767449600, -158.5383387001708400 70.8662689747334300, -158.5347835146474400 70.8663968619257000, -158.5312146747174300 70.8664736910080800, -158.5276389999398500 70.8664993180891000, -158.5262809526038600 70.8664956227748300, -158.5162113677603800 70.8664405482927000, -158.5129798563352800 70.8664018351765900, -158.5097555358892400 70.8663212900955300, -158.5065434462230500 70.8661990407532000, -158.5033486028557000 70.8660352769065900, -158.4998410814007500 70.8658061071661800, -158.4963674652862600 70.8655269045430600, -158.4929343933075600 70.8651982032345700, -158.4895484215224100 70.8648206309674200, -158.4887851830897000 70.8647220077145300, -158.4887154370677300 70.8647142150890100, -158.4853523908001600 70.8643922056358500, -158.4819665566112700 70.8640146333687000, -158.4813409297401000 70.8639247272444100, -158.4807186807225000 70.8638552078516000, -158.4779093893068300 70.8635862080371300, -158.4745236927142300 70.8632086357699800, -158.4711916487755400 70.8627819892974500, -158.4708474566447800 70.8627273869594200, -158.4703282672357100 70.8626745616817300, -158.4696508708909400 70.8626228623553000, -158.4673440531854900 70.8624721170945700, -158.4638710198316600 70.8621929144715000, -158.4604385225197800 70.8618642131629600, -158.4570531191061200 70.8614866408958000, -158.4564544682990600 70.8613989435065200, -158.4557556860760300 70.8613208625678200, -158.4530235196197000 70.8610592156104000, -158.4496382529030100 70.8606816424439200, -158.4463065435121500 70.8602559204744000, -158.4430347541505500 70.8597828617897100, -158.4398310614543000 70.8592500233699500, -158.4390657752652800 70.8591257406604300, -158.4380361567432000 70.8589768650903100, -158.4348306645035200 70.8584573744083700, -158.4328165752247300 70.8581052196802300, -158.4316942941563300 70.8579117602196200, -158.4304143907115500 70.8577123553410000, -158.4296086521175700 70.8576021955848900, -158.4270319865369200 70.8573206529258600, -158.4237008392223300 70.8568949309563400, -158.4204296029437800 70.8564218722716500, -158.4172261557624500 70.8558910762122300, -158.4165780629272400 70.8557858078688100, -158.4154030051445500 70.8556158737736200, -158.4134821746626000 70.8553045266826300, -158.4129494558526700 70.8552345837091500, -158.4112811900748500 70.8550674159285400, -158.4098237370757800 70.8549721390530200, -158.4063520122355400 70.8546929373292800, -158.4029208081487400 70.8543642351214100, -158.3995366799737800 70.8539866628542500, -158.3962060911381700 70.8535609399854700, -158.3929354016474300 70.8530878813007200, -158.3912308320372500 70.8527812034898300, -158.3908844113864500 70.8527411962492700, -158.3903693804425400 70.8526977140283500, -158.3897201949310200 70.8526530869704600, -158.3873809395786600 70.8525001455653300, -158.3839096455137000 70.8522209429422100, -158.3804788668062400 70.8518922416337200, -158.3770951586146500 70.8515146693665700, -158.3737637738790300 70.8511015648853700, -158.3728969326473000 70.8510312441966300, -158.3695133701458800 70.8506536710301600, -158.3661833388899500 70.8502279490606400, -158.3629131970863600 70.8497548903759500, -158.3612093514304000 70.8494449696096900, -158.3608596770324400 70.8494037096135700, -158.3605136098152000 70.8493620530163600, -158.3601020989326900 70.8493467321660000, -158.3573559075490800 70.8491671555398700, -158.3538851944461500 70.8488879529167500, -158.3504549904054700 70.8485592516082100, -158.3470718478874300 70.8481816784417900, -158.3466758862831000 70.8481310511072000, -158.3402328301809500 70.8481382357910000, -158.3399719998079100 70.8481383724879400, -158.3363996228442800 70.8481127454069200, -158.3328340726343000 70.8480359163245300, -158.3292821660391000 70.8479080291322700, -158.3257506884435000 70.8477293302444800, -158.3222463910580600 70.8475001605040700, -158.3187759684361700 70.8472209587802700, -158.3153470774056800 70.8468765652014000, -158.3146640737879500 70.8468161388538000, -158.3123861324140500 70.8466671625595800, -158.3089158554823300 70.8463879599364600, -158.3059171218776600 70.8460799987929600, -158.3054869032979200 70.8460466977969100, -158.3049401829430600 70.8459983259620600, -158.3024148749465000 70.8458331654682600, -158.2993669942913200 70.8455879365341200, -158.2947308866211000 70.8455821673831600, -158.2912404945531600 70.8455531372675300, -158.2877570677344500 70.8454752119115500, -158.2842869625732500 70.8453485352067700, -158.2808365138939700 70.8451733382789800, -158.2773326652702500 70.8449441685385800, -158.2755245576122100 70.8447986834125900, -158.2645948701571000 70.8447768469739600, -158.2611525369600000 70.8447459031010000, -158.2577172328639700 70.8446673967830000, -158.2542950579705200 70.8445414683141600, -158.2508920889986800 70.8443683398271000, -158.2473883824678500 70.8441391700866900, -158.2450064767674600 70.8439475092702100, -158.2402685415599000 70.8439409900846600, -158.2378056177350300 70.8441391700866900, -158.2343019112042000 70.8443683398271000, -158.2308611338342200 70.8445431212680900, -158.2274007917131400 70.8446696504840400, -158.2239271657061000 70.8447476954498300, -158.2204465618593200 70.8447771158712400, -158.2179804355486400 70.8447805827577200, -158.2152513834445500 70.8450001684231000, -158.2117475258276300 70.8452293381635000, -158.2082189827198400 70.8454079291327000, -158.2046700357935000 70.8455357794526900, -158.2011074578428800 70.8456126445079800, -158.2004016734984000 70.8456177328721400, -158.1977241246685800 70.8458331654682600, -158.1942201204621500 70.8460623352086700, -158.1906889396428300 70.8462410340965200, -158.1894828957190400 70.8462844614587700, -158.1886951147877000 70.8463599604438600, -158.1852248423525700 70.8466391630669800, -158.1834175773592800 70.8467573573661900, -158.1822089487839400 70.8468922565724600, -158.1787790316270000 70.8472209587802700, -158.1753086090050700 70.8475001605040700, -158.1718043116196700 70.8477293302444800, -158.1684456585403000 70.8478874850195000, -158.1662799480611200 70.8480819562173600, -158.1628093752524400 70.8483611588404800, -158.1593049258816000 70.8485903285808800, -158.1557753791304000 70.8487689366371600, -158.1522254204667500 70.8488967932524400, -158.1501956245284000 70.8489405722496600, -158.1477270673502500 70.8491391560472700, -158.1459902066826500 70.8492527314284600, -158.1447400402206500 70.8493922495527500, -158.1413096922884400 70.8497209517605600, -158.1378388343946700 70.8500001534843600, -158.1343340963414300 70.8502293232247700, -158.1308021762794000 70.8504080221125600, -158.1295552185984300 70.8504529135711300, -158.1287825498747600 70.8505269484599600, -158.1253115516867400 70.8508061510830800, -158.1218066715406400 70.8510353208234300, -158.1185483890968400 70.8512020173592400, -158.1152746913738800 70.8513404562970700, -158.1147007485406800 70.8514488866568400, -158.1114303288465800 70.8519219444422100, -158.1081000134048800 70.8523476673110500, -158.1047161640197200 70.8527252395782000, -158.1026549934331600 70.8529227118137300, -158.1006291868874300 70.8531816644023700, -158.0972451954094000 70.8535592375687900, -158.0938141298182000 70.8538879388773400, -158.0913248792397500 70.8540881369580100, -158.0888233088486000 70.8544499369151000, -158.0854925716248500 70.8548756597839400, -158.0821082914644600 70.8552532320511000, -158.0796190759595600 70.8554916827949900, -158.0786788311631000 70.8555967748713400, -158.0781327061594400 70.8556816573826600, -158.0747482902014000 70.8560592305490800, -158.0713167938349400 70.8563879318576300, -158.0678430922848500 70.8566555152398800, -158.0662991164110700 70.8568669305644200, -158.0629679735931000 70.8572926525339400, -158.0606265994380000 70.8575538408371100, -158.0603898043459600 70.8575883658105000, -158.0571853445280000 70.8581158676532300, -158.0539138285603000 70.8585889254386000, -158.0505823988585800 70.8590146483074400, -158.0478395934224800 70.8593053874337200, -158.0471975692124100 70.8593931702586700, -158.0446322926461600 70.8598098621354800, -158.0432927110897200 70.8600035482252200, -158.0429149032002000 70.8601032137923400, -158.0400331956754200 70.8607976522898800, -158.0370617151260100 70.8614501401119100, -158.0340061263816000 70.8620594316974500, -158.0320729131344000 70.8624148176897400, -158.0301110528827500 70.8627529052224600, -158.0281208873690300 70.8630679233460200, -158.0261749864864000 70.8634484283023800, -158.0230636415737700 70.8640094676628700, -158.0198809840201800 70.8645257243827000, -158.0139032713189000 70.8654428431127600, -158.0106113524319400 70.8659191870208900, -158.0072587302062200 70.8663476267416300, -158.0038807902662400 70.8667244813497600, -158.0018119151877200 70.8670598412387600, -157.9985389288284800 70.8675328999234500, -157.9952060008562300 70.8679586218929700, -157.9925398761143600 70.8682558766074600, -157.9915773047487700 70.8684293450383000, -157.9883702045213000 70.8689488357202300, -157.9850969078959500 70.8694218944049800, -157.9828999288885700 70.8697024927759000, -157.9804118959921800 70.8701984095290500, -157.9772767478236200 70.8707633393567000, -157.9740692716795300 70.8712828300386400, -157.9707955910436700 70.8717558878240100, -157.9687796059940000 70.8720091926701300, -157.9657218759637700 70.8726144022329500, -157.9625855110125000 70.8731751421191800, -157.9614708885706300 70.8733763969032700, -157.9583378286278600 70.8739573301667200, -157.9551298380715400 70.8744768208486600, -157.9538903825351000 70.8746558974517600, -157.9520617865222000 70.8749853272111600, -157.9488536295913000 70.8755048178931000, -157.9476489526370200 70.8756654565955800, -157.9461208462000700 70.8758862104803000, -157.9455787816354500 70.8759755581255600, -157.9444383549461000 70.8761693917041400, -157.9429815368684200 70.8764293227550900, -157.9397731470130900 70.8769488134370200, -157.9369836730580200 70.8773490252373800, -157.9364987649060500 70.8774233011444600, -157.9337511085268200 70.8778585037670200, -157.9331498604776400 70.8779560793096800, -157.9306738740000600 70.8784270821441900, -157.9300939911447600 70.8785537399632000, -157.9289648221687800 70.8788256023197500, -157.9259906481498800 70.8794780901417900, -157.9229322894935300 70.8800873808280000, -157.9197955827998800 70.8806523106556500, -157.9165865112584600 70.8811718013376400, -157.9133112028497000 70.8816448591230100, -157.9099759087611400 70.8820705810924800, -157.9069104607491500 70.8824071811465600, -157.9065875061084800 70.8824512830003600, -157.9037005645294000 70.8829217966036800, -157.9007393785194600 70.8833520340691600, -157.9004279576840600 70.8834086868614600, -157.9003415535198400 70.8834239456586500, -157.8992263941827000 70.8837135894106600, -157.8962514890150000 70.8843660772327600, -157.8931923794247300 70.8849753679189700, -157.8900549002134400 70.8855402977466200, -157.8868435300048800 70.8860514409213400, -157.8855787513582500 70.8862570637125500, -157.8826567622997200 70.8867511890162000, -157.8811889464127200 70.8869685785371100, -157.8798630786181400 70.8872072927823600, -157.8766529494740200 70.8877267825650400, -157.8733765600801500 70.8881998403504100, -157.8714408718987000 70.8884468328551000, -157.8695330977742200 70.8887902884411000, -157.8663227123233000 70.8893097782237200, -157.8630438345053300 70.8897704649350500, -157.8623955618057000 70.8898695567347100, -157.8600445037508300 70.8902620586471200, -157.8571595694585300 70.8909635694132600, -157.8541805067250000 70.8916043930283900, -157.8526609825183000 70.8919921276346400, -157.8497746524782000 70.8926865652328500, -157.8467984046226600 70.8933390521555700, -157.8447640167459600 70.8937440636376600, -157.8424305638194500 70.8942927984739400, -157.8390984164587000 70.8950363426531600, -157.8356585851755400 70.8957253375543200, -157.8344449842486000 70.8959437388125500, -157.8338924308909600 70.8960580021751000, -157.8312689609937300 70.8966380352172200, -157.8301194115815600 70.8968591758103900, -157.8272311767773600 70.8975475510786700, -157.8242542004709300 70.8982000380013900, -157.8223768656997700 70.8985738313173200, -157.8194852611358700 70.8992695468521700, -157.8165080258247000 70.8999220337748900, -157.8155743757568000 70.9001078454007800, -157.8133778616989400 70.9006861040804800, -157.8109634320167300 70.9012667495608800, -157.8106742235365500 70.9013509144132300, -157.8104958511026200 70.9013979966202900, -157.8080917204565000 70.9021767519556100, -157.8053999686336200 70.9029510340630500, -157.8026088678049600 70.9036909674642300, -157.8021986249665400 70.9037991280274000, -157.7997931057671800 70.9045070302752800, -157.7970003357968400 70.9052420911496600, -157.7941120803082200 70.9059365287478700, -157.7911338458502800 70.9065890147712700, -157.7883335206754200 70.9071461384835400, -157.7880725482095000 70.9072034441836600, -157.7875873774554800 70.9073255244534300, -157.7846089352541400 70.9079780113762000, -157.7832655432701800 70.9082452602106600, -157.7826365241562300 70.9084230193069500, -157.7798432029014700 70.9091580801813300, -157.7769543781420200 70.9098525177795400, -157.7757358444336500 70.9101194275695500, -157.7750585497122700 70.9103120146878000, -157.7722649631574800 70.9110470764614400, -157.7693758632054800 70.9117415131603400, -157.7668548000089900 70.9122936780108800, -157.7644495622974400 70.9130680230708800, -157.7621212391038600 70.9137886579202900, -157.7597086422400000 70.9144790036031600, -157.7569102676946800 70.9152017968255000, -157.7546922310616000 70.9159476900339300, -157.7521045065177200 70.9167597139896800, -157.7494107779850000 70.9175339951978000, -157.7462876573494800 70.9183512361207100, -157.7450970287049000 70.9186328084574000, -157.7432019988731300 70.9192816819041800, -157.7406138399567200 70.9200937049605500, -157.7379196581656500 70.9208679861686700, -157.7358886292568000 70.9214085965295500, -157.7338058812364000 70.9219277481670900, -157.7326717866736000 70.9222011645521800, -157.7275071582287500 70.9237445225916800, -157.7246195853255700 70.9248215605666100, -157.7225195415436000 70.9255753669097000, -157.7203334452322800 70.9263025623134800, -157.7180644422202000 70.9270020990676900, -157.7157157961470400 70.9276729681330400, -157.7129197643356200 70.9284080281081000, -157.7100281363893500 70.9291024648069900, -157.7075981718181500 70.9296342123490700, -157.7003580780628300 70.9320005570800700, -157.6978047184129800 70.9327995750404000, -157.6951485015021000 70.9335619519226300, -157.6923516405157700 70.9342970127969500, -157.6894591537169400 70.9349914485965200, -157.6866699549544300 70.9356016260142600, -157.6864782122996200 70.9356497712200300, -157.6863177291798200 70.9356884636517300, -157.6835230463514700 70.9364360071160700, -157.6806302465885800 70.9371304438149700, -157.6776459291163000 70.9377782434712000, -157.6768744196187400 70.9380032115790300, -157.6751896234023600 70.9384789394515600, -157.6723920681394000 70.9392139994266100, -157.6694988636815800 70.9399084352261900, -157.6665155255710100 70.9405609212495800, -157.6634488131122000 70.9411746707745000, -157.6633053766418000 70.9412045426555600, -157.6603234387756600 70.9418659175780700, -157.6582394631806500 70.9422797864830300, -157.6575382860630200 70.9424639910204200, -157.6546446076624800 70.9431584268199900, -157.6520678737333600 70.9437218916520500, -157.6505120304058500 70.9443150359102200, -157.6482780640813500 70.9451322165786000, -157.6459438665162000 70.9459189551956800, -157.6435155225233300 70.9466798661829300, -157.6433734557203600 70.9467266597076200, -157.6408960698976800 70.9475866085352300, -157.6383042156669800 70.9483986306922800, -157.6361310165331700 70.9490222952428000, -157.6314218389467000 70.9507586253103600, -157.6297439468256700 70.9513585936242600, -157.6280112113483000 70.9519417131396000, -157.6262252144220800 70.9525074487598300, -157.6243875874172000 70.9530552824753600, -157.6220820773259800 70.9537219580020000, -157.6204815511826200 70.9541728978609900, -157.6176817799901400 70.9549079578360400, -157.6147862831604000 70.9556023927363000, -157.6118005807322000 70.9562548778603700, -157.6087270756939600 70.9568498279572300, -157.6073262287224600 70.9571562269783300, -157.6057850461429300 70.9574845550682200, -157.6053221282136300 70.9576381197035200, -157.6025511946818700 70.9584765603450500, -157.5996615533380000 70.9593114072956700, -157.5980794857796000 70.9597568828738800, -157.5952789249823800 70.9604919419496100, -157.5929144625323800 70.9610588574803400, -157.5848911968712000 70.9635911640010600, -157.5828028856446400 70.9642275386700000, -157.5806480893378000 70.9648398699640700, -157.5778468090829600 70.9655749290398000, -157.5749497519294700 70.9662693639400600, -157.5719624406141000 70.9669218490641400, -157.5688905714427000 70.9675311370523900, -157.5657400061963000 70.9680960650814000, -157.5636909998397400 70.9684263015326500, -157.5633099912630500 70.9685478745848300, -157.5608773521081000 70.9692645182430000, -157.5557729170864100 70.9707089175825600, -157.5555753845963000 70.9707768334841400, -157.5550718703704800 70.9709945458616900, -157.5527039545238500 70.9718773311739700, -157.5502200603075000 70.9727255438488100, -157.5476249136588000 70.9735375651066000, -157.5462461225605000 70.9739327478980600, -157.5452246456008800 70.9742815391617800, -157.5426292957054000 70.9750935604195100, -157.5399276270583200 70.9758678398290000, -157.5371247855803700 70.9766028989047300, -157.5342261132445000 70.9772973329056600, -157.5332184507708500 70.9775018108599600, -157.5328924285427000 70.9775833245108700, -157.5327005231106300 70.9776359357499000, -157.5312584179416100 70.9781258675148500, -157.5297356220013000 70.9787445255394700, -157.5278408763553300 70.9794567688148800, -157.5258705849595000 70.9801468851706500, -157.5224568627939400 70.9812999958981500, -157.5203325526052000 70.9822458434709300, -157.5180837366750700 70.9831615151918500, -157.5158672064064300 70.9839896532000100, -157.5135485383343300 70.9847875299206500, -157.5081596630380000 70.9865672270959200, -157.5054124284408000 70.9874332481459200, -157.5043498722487800 70.9877384105992000, -157.5041222484429700 70.9878166336308100, -157.5021836842296000 70.9885575445950400, -157.5001625244808800 70.9892633640130800, -157.4971319872513800 70.9902840864414800, -157.4957821138534400 70.9911790674600500, -157.4940547095571600 70.9922082399184000, -157.4918484882171300 70.9933860523245200, -157.4894594904630800 70.9945253935321100, -157.4855183671788800 70.9963048083203000, -157.4837415604246500 70.9970772935822700, -157.4818806562672400 70.9978284793009500, -157.4800087668910500 70.9985317698253800, -157.4780631456975800 70.9992135044996600, -157.4683688470446200 71.0024935946037800, -157.4668437452426000 71.0029960863004100, -157.4652785561604000 71.0034853363792400, -157.4636743634810600 71.0039610048965000, -157.4620276004933400 71.0044140824439900, -157.4614535713252200 71.0047118290876800, -157.4594559926998700 71.0056879730215700, -157.4573293883405800 71.0066347837683300, -157.4550777971026300 71.0075504545898800, -157.4527055006583000 71.0084332381035200, -157.4521078570919000 71.0086321330665600, -157.4501084132726300 71.0096039638519300, -157.4479813871312800 71.0105507745986400, -157.4457293498296000 71.0114664454201800, -157.4433565839391600 71.0123492289338300, -157.4410361603904700 71.0131399965137000, -157.4405485605675800 71.0134301924495000, -157.4386828819094400 71.0144338070745700, -157.4366843203251000 71.0154099501091900, -157.4345566691549200 71.0163567599565800, -157.4323039708515400 71.0172724307781200, -157.4299305061878700 71.0181552133924500, -157.4274407906599400 71.0190034242686500, -157.4248395618962500 71.0198154437278000, -157.4221317724633000 71.0205897204393200, -157.4193225799730600 71.0213247777163600, -157.4164173389889600 71.0220192117172900, -157.4134215866368700 71.0226716941434100, -157.4103410381083800 71.0232809812323500, -157.4089364076890300 71.0235393663487600, -157.4053774567042300 71.0241791278645000, -157.4025463549303000 71.0246649290433000, -157.3996594259417300 71.0251146449250000, -157.3984214713737800 71.0252886232714200, -157.3962481742138400 71.0260401624236100, -157.3960798229254600 71.0261122304950700, -157.3940854548798100 71.0271039219085200, -157.3919565437594500 71.0280507317559100, -157.3900230310380300 71.0288361951343700, -157.3896727567922700 71.0290679854991800, -157.3879420402929000 71.0300971543602500, -157.3860747869218500 71.0311007680860500, -157.3840745382093500 71.0320769102212900, -157.3819450910930600 71.0330237191693600, -157.3796904898242000 71.0339393890915900, -157.3772029830312200 71.0348619361295200, -157.3745884173215800 71.0357465758438600, -157.3683103319562200 71.0377755345133400, -157.3666533823477000 71.0382891013609900, -157.3660733277218600 71.0386007515235200, -157.3640723190822300 71.0395768927594400, -157.3633164344059000 71.0399128515968500, -157.3630063787413500 71.0400971325766500, -157.3611381792835300 71.0411007445038100, -157.3591369170350700 71.0420768866390500, -157.3578789534509200 71.0426294966540000, -157.3560081297713400 71.0436277396285600, -157.3540066112161000 71.0446038808644900, -157.3518758115194500 71.0455506898125600, -157.3496197776306000 71.0464663579361400, -157.3476124197773300 71.0472168916463100, -157.3455208880784800 71.0479427605500300, -157.3453121419417800 71.0480125425448800, -157.3452621090590600 71.0480686062812200, -157.3441062616946000 71.0491799426003500, -157.3428022159495000 71.0502738266758300, -157.3413524323688400 71.0513481738792000, -157.3397596520862600 71.0524009346554500, -157.3380268887299000 71.0534301026172000, -157.3361574275232300 71.0544337145443600, -157.3341548117951000 71.0554098557802800, -157.3320228447784400 71.0563566629297200, -157.3297655743217500 71.0572723310533000, -157.3276210051052700 71.0580717429166400, -157.3265474547012600 71.0584413786667700, -157.3262003047002800 71.0586277047048600, -157.3241972626935000 71.0596038459407900, -157.3220648415192000 71.0605506530902200, -157.3198070908245500 71.0614663212138000, -157.3178009596465500 71.0622190339813100, -157.3166342502704000 71.0633469151280800, -157.3153292683310300 71.0644407983042500, -157.3138784442347700 71.0655151437089800, -157.3122845191152200 71.0665679035859600, -157.3105505119965000 71.0675970706483300, -157.3086797063033700 71.0686006816761700, -157.3066756507606400 71.0695768211134600, -157.3045421495005800 71.0705236282628900, -157.3022832557676000 71.0714392954871500, -157.3002227884509000 71.0722080008985700, -157.2987779970069400 71.0727074106185300, -157.2986642525531800 71.0727572627375300, -157.2966630262776000 71.0737428117814100, -157.2960813142012700 71.0740009100140400, -157.2953772601524000 71.0744545325507000, -157.2947647606851300 71.0748785772845500, -157.2939166190567000 71.0755151228247000, -157.2923218854466300 71.0765678818023600, -157.2905869978916000 71.0775970479654700, -157.2887152425144000 71.0786006580939300, -157.2867101698384400 71.0795767975312200, -157.2859674017741400 71.0799062560689100, -157.2847543620241600 71.0807068730238100, -157.2830191102437000 71.0817360391869200, -157.2811469609634400 71.0827396484161200, -157.2791389627928700 71.0837124046038300, -157.2789484603031800 71.0838481060053500, -157.2773530531008800 71.0849008640836900, -157.2766359651776300 71.0853260734396000, -157.2763439373228200 71.0855421022862400, -157.2747736571785000 71.0865791429132000, -157.2739612042461500 71.0871810987287600, -157.2723655272472500 71.0882338568071100, -157.2706296108678100 71.0892630220709000, -157.2703892742456000 71.0893946657312800, -157.2689188494253200 71.0904870920057300, -157.2673207703372500 71.0915369650589400, -157.2664802279801000 71.0921540879408600, -157.2648841480849500 71.0932068460192000, -157.2631477937356700 71.0942360112829300, -157.2612744555516400 71.0952396196128100, -157.2592676867543000 71.0962157581507800, -157.2586362538600000 71.0964955965945400, -157.2581850361105000 71.0967630064076800, -157.2579489784625700 71.0968924503263800, -157.2564755544033000 71.0979870763425800, -157.2555210238761300 71.0986107372957600, -157.2548884506414600 71.0990526182837400, -157.2540650403692800 71.0996810726234700, -157.2524664189900200 71.1007312181712300, -157.2516264243200000 71.1013480694579100, -157.2500295988868400 71.1024008266368800, -157.2493236184901700 71.1028190770388200, -157.2490219139301600 71.1030420657388000, -157.2474249500014000 71.1040948229177700, -157.2470444279579500 71.1043202397872800, -157.2465561932137000 71.1046810621813300, -157.2449590970846300 71.1057338193603500, -157.2432216365692500 71.1067629837247600, -157.2413471058842000 71.1077665911553300, -157.2393390582509200 71.1087427287939700, -157.2385386616299000 71.1090972226587600, -157.2382587935085000 71.1092629776043700, -157.2363840236038000 71.1102665859342600, -157.2352046535718800 71.1108398201016600, -157.2342990173857200 71.1117078223582000, -157.2329908311619000 71.1128017010377100, -157.2315364412537200 71.1138760428451600, -157.2299385986873400 71.1149287991248100, -157.2282003260841600 71.1159579625899600, -157.2263249176608000 71.1169615700205200, -157.2243159311353000 71.1179377067597900, -157.2241358059226900 71.1180161330381700, -157.2225371395773000 71.1190677903463200, -157.2216501391425800 71.1195928379392000, -157.2215268771636300 71.1196745512396000, -157.2199445892713400 71.1207262157423100, -157.2190652177855600 71.1213760271819500, -157.2174667654788000 71.1224287834616600, -157.2170419608178000 71.1226801979328200, -157.2166264020867500 71.1229870241319300, -157.2156503525817000 71.1236161826407700, -157.2150330471373800 71.1240468625727000, -157.2141889065927400 71.1246810204128200, -157.2125901853887000 71.1257337757931500, -157.2115618115283600 71.1263294993070200, -157.2108483856444500 71.1267609166830000, -157.2106274626872300 71.1269087733213000, -157.2099658782226800 71.1273843312219500, -157.2091736024797500 71.1279870136897900, -157.2075746123784400 71.1290397690701200, -157.2058350915162400 71.1300689316359500, -157.2039583359084500 71.1310725381671300, -157.2019479050717300 71.1320486740071400, -157.2011394694109500 71.1324129812741100, -157.2000258119416300 71.1331663370568800, -157.1999253342867200 71.1332364023381300, -157.1991400156991300 71.1338200020914500, -157.1981643439093300 71.1344495041413400, -157.1975462569541500 71.1348804898427700, -157.1967025309970000 71.1355149984185000, -157.1951029284573500 71.1365677528995100, -157.1940776104933000 71.1371747152409700, -157.1924701982410400 71.1382337487885400, -157.1907298625930600 71.1392629104549900, -157.1888522283476300 71.1402665160869100, -157.1868408550214200 71.1412426519269200, -157.1861490335510300 71.1415485500256200, -157.1857391540386900 71.1417909047265200, -157.1838612778756500 71.1427945103584400, -157.1818496455446700 71.1437706461984500, -157.1816813068468000 71.1438454958730000, -157.1800782985745900 71.1449007342815200, -157.1783373720720400 71.1459298950486500, -157.1764590993079500 71.1469335006805700, -157.1744470424969800 71.1479096356212600, -157.1734664442210000 71.1483430737739000, -157.1733155190959000 71.1484207320312400, -157.1714410558600200 71.1494334945601800, -157.1694287427422400 71.1504096295008700, -157.1692339010237000 71.1504909641867000, -157.1676554910080800 71.1515247276840900, -157.1667666586543500 71.1521809629811000, -157.1651656972391000 71.1532337165628500, -157.1634240314938300 71.1542628764306600, -157.1615449610311000 71.1552664820625300, -157.1595320498641700 71.1562426161039000, -157.1591711852020000 71.1563770206830100, -157.1575705151671200 71.1574287076687700, -157.1570309480198000 71.1577474723679900, -157.1567060256625200 71.1579869501376800, -157.1551045912039000 71.1590397037194300, -157.1533624101470800 71.1600688635872400, -157.1514827830040000 71.1610724683197900, -157.1494692746872500 71.1620486023611500, -157.1473257073155000 71.1629954041146700, -157.1450561530190300 71.1639110659430100, -157.1431921929653000 71.1646057859283600, -157.1428846347181000 71.1647127836681100, -157.1425987060654000 71.1649006916137000, -157.1408560034018000 71.1659298505821900, -157.1389758141824600 71.1669334553147900, -157.1369617042192300 71.1679095884567800, -157.1348174956309000 71.1688563902103000, -157.1332745611720400 71.1694787075763300, -157.1325896887631000 71.1699286797648400, -157.1308465391364600 71.1709578396326500, -157.1289658678804800 71.1719614434658800, -157.1269512408071000 71.1729375766079200, -157.1262130206144000 71.1732634630384400, -157.1258837599275500 71.1734578344115800, -157.1240028476532600 71.1744614373454900, -157.1219879633737800 71.1754375713868500, -157.1217768241410800 71.1755221373368300, -157.1201638073138200 71.1765582102932500, -157.1193349660358400 71.1771539113240100, -157.1177267569842000 71.1781995899392000, -157.1168694009021000 71.1788199072129800, -157.1152662631275200 71.1798726589960900, -157.1135222294673000 71.1809018170652600, -157.1116406022319700 71.1819054199991700, -157.1105270463860400 71.1824446894709100, -157.1096118243262000 71.1833186848095400, -157.1082988618030000 71.1844125571938100, -157.1068391595995000 71.1854868936052900, -157.1058666084571800 71.1861142786510800, -157.1052420760609300 71.1865486116291800, -157.1044017081722800 71.1871808898862400, -157.1029011155940000 71.1881658804511000, -157.1027998447370000 71.1882363009645500, -157.1019362608497300 71.1888758871125400, -157.1003323010948000 71.1899286370969500, -157.0985873708105000 71.1909577951661800, -157.0967047777033000 71.1919613972007700, -157.0946880911824300 71.1929375294435000, -157.0939618778383500 71.1932509458745200, -157.0936235996493600 71.1934577710593400, -157.0927368636153300 71.1940396279265400, -157.0909915673069600 71.1950687859957200, -157.0891085784980700 71.1960723880303600, -157.0870914683965200 71.1970485202730300, -157.0866511864031000 71.1972426425339800, -157.0858803630882500 71.1977469571564300, -157.0844187318389800 71.1988198663438000, -157.0828139572982700 71.1998726154288900, -157.0810681402824000 71.2009017725988000, -157.0791845893972400 71.2019053746333800, -157.0771668776492600 71.2028815059767900, -157.0761286921853600 71.2033391098121300, -157.0760194740195000 71.2033951510654200, -157.0741385986174000 71.2044053685130000, -157.0721206287639700 71.2053814998564000, -157.0715210480579000 71.2056457449552300, -157.0710866422347200 71.2059017612573400, -157.0692026102122700 71.2069053623926000, -157.0671843822534000 71.2078814937360100, -157.0650357885707500 71.2088282927915100, -157.0627609102877500 71.2097439528212100, -157.0608591616209800 71.2104413087194500, -157.0604380279925700 71.2107065916359300, -157.0586912442055300 71.2117357479065200, -157.0568066501067800 71.2127393490417800, -157.0547878196021500 71.2137154803851900, -157.0538313177610800 71.2141368460386800, -157.0536117482835200 71.2142494483534300, -157.0517327677530000 71.2152663441664800, -157.0497300207238400 71.2162362782816600, -157.0495427512969000 71.2163758287815100, -157.0479365351429500 71.2174285769673400, -157.0461891506088000 71.2184577332378700, -157.0443039080988400 71.2194613334738200, -157.0422843824182700 71.2204374639179000, -157.0415391277285300 71.2207656562101200, -157.0409911591146700 71.2213742894919000, -157.0398250864585300 71.2224856096232200, -157.0385094952170000 71.2235794793095900, -157.0370468693175500 71.2246538112244700, -157.0354399732761000 71.2257065594102400, -157.0336918485999100 71.2267357147814600, -157.0318058065926700 71.2277393150174000, -157.0297854247575000 71.2287154445621700, -157.0288437140661000 71.2291299762674700, -157.0286120523043400 71.2292486885761500, -157.0267319386280500 71.2302663083435200, -157.0247112950901600 71.2312424387876000, -157.0225601302457800 71.2321892360444600, -157.0202825288156000 71.2331048942755300, -157.0186703240761700 71.2337064768724400, -157.0170035098041000 71.2342924463394000, -157.0133369315541000 71.2355436281359900, -157.0116586734090200 71.2360999442570900, -157.0099311782812200 71.2366404332094600, -157.0081558841866600 71.2371646453322000, -157.0063342669128600 71.2376721435546200, -157.0059312564223100 71.2377635038826600, -157.0044628991434500 71.2388197828067900, -157.0034693335428800 71.2394527139716200, -157.0028579420403500 71.2398767596048400, -157.0019974886931200 71.2405147791338300, -157.0003854934957000 71.2415623562178000, -156.9995319676261800 71.2421807750228000, -156.9979236299715200 71.2432335214099300, -156.9961739350790000 71.2442626749825100, -156.9942861987490500 71.2452662743191400, -156.9922640020820000 71.2462424029645800, -156.9901111815857500 71.2471891993221200, -156.9878409608916000 71.2481017351070700, -156.9868533694874000 71.2486272665351500, -156.9848308238833900 71.2496033951806000, -156.9838431794191500 71.2500376795952700, -156.9835592616505800 71.2502734251784800, -156.9820946365582000 71.2513477552947200, -156.9804855425737000 71.2524005016818500, -156.9792155172822600 71.2531471674079200, -156.9786285999299200 71.2536344182938100, -156.9771637221280400 71.2547087493093700, -156.9755543520517000 71.2557614947971800, -156.9746194429329200 71.2563110462178900, -156.9745284108574600 71.2563709743410500, -156.9729217072709600 71.2574284907323100, -156.9711707389384000 71.2584576434055600, -156.9692816284443800 71.2594612409435500, -156.9672671056923400 71.2604339098970700, -156.9671516462314600 71.2604995019505000, -156.9655484913697600 71.2615674819537600, -156.9637971516172300 71.2625966346270200, -156.9619076400255400 71.2636002321650600, -156.9598835394937200 71.2645763599111300, -156.9577286937242200 71.2655231553694100, -156.9554471946322800 71.2664388118017800, -156.9537916965295500 71.2670550371602800, -156.9520788009958500 71.2676548561867100, -156.9458574808380400 71.2697678591994200, -156.9441958880297800 71.2703162397027700, -156.9424862993032500 71.2708491851418600, -156.9407301005137000 71.2713662629427600, -156.9389235073139700 71.2718590851287100, -156.9380349420589000 71.2724284576073000, -156.9375609345894400 71.2727068472432800, -156.9371789745300000 71.2729867108680500, -156.9355680944919400 71.2740394545572300, -156.9338156332848000 71.2750686072304800, -156.9319249121050000 71.2760722038691500, -156.9298995156501000 71.2770483307159600, -156.9296224552121000 71.2771715558226900, -156.9280011169579400 71.2782334447177300, -156.9262482789349000 71.2792625964917200, -156.9243571503621700 71.2802661931303900, -156.9223313177361000 71.2812423199771400, -156.9201746256584000 71.2821891145360400, -156.9178876344067800 71.2830981033948200, -156.9169252689859500 71.2836001858999000, -156.9148990892215600 71.2845763127467100, -156.9144881017444700 71.2847567068565700, -156.9139090534600300 71.2850965840401600, -156.9120173583144200 71.2861001797795100, -156.9099909186459500 71.2870763057270000, -156.9097418046405300 71.2871707840045600, -156.9081222470440500 71.2882064234877400, -156.9063685105982700 71.2892355743623500, -156.9044764134556800 71.2902391701017000, -156.9024495421126600 71.2912152969484500, -156.9002917447681700 71.2921620906080300, -156.8980037957385600 71.2930714778664800, -156.8970445401733700 71.2935721628251100, -156.8950173216920200 71.2945482887725500, -156.8941760293003000 71.2949173660436500, -156.8939183051856000 71.2950685618647000, -156.8920256405708400 71.2960721567047200, -156.8899981612861000 71.2970482826521600, -156.8878397164297400 71.2979950763117900, -156.8855544060110000 71.2989107318448400, -156.8837896124006800 71.2995652773157600, -156.8833464660665000 71.2997193095985200, -156.8831119012931800 71.2998723984924300, -156.8813571135399300 71.3009015484677200, -156.8794638814529500 71.3019051433077500, -156.8774357942265000 71.3028812692552400, -156.8752767018582700 71.3038280629148200, -156.8729907052568300 71.3047437175486000, -156.8711892291995300 71.3054112294447600, -156.8693202743111800 71.3060593933264000, -156.8530698334060700 71.3114876499351500, -156.8520829875398000 71.3118322107879400, -156.8514969479257700 71.3120365934141200, -156.8499161663979200 71.3126053903265500, -156.8482658861617000 71.3131532887932700, -156.8465677691871700 71.3136859644357600, -156.8452906446475000 71.3140753546939000, -156.8447379141234000 71.3142387785968000, -156.8436791989358600 71.3146304054689000, -156.8417367523492200 71.3153012898227400, -156.8229042238508300 71.3215843106674500, -156.8215970421697400 71.3220087789820200, -156.8214306487054400 71.3220665829065300, -156.8213421266378000 71.3220963072988000, -156.8195857066150400 71.3227104543240700, -156.8057539725677400 71.3273538905696700, -156.8041458030863300 71.3278789831286400, -156.8024933087192000 71.3283897701718400, -156.8007977269335200 71.3288858667893900, -156.7990603275720200 71.3293669006619700, -156.7962064396754200 71.3301019471472300, -156.7932549672429200 71.3307963712555900, -156.7924296045425800 71.3309566574238800, -156.7923114785918400 71.3309896364626200, -156.7920704980550000 71.3311270753542900, -156.7900393576302300 71.3321031995031400, -156.7878770133134800 71.3330499913640800, -156.7855875741072400 71.3339656441991700, -156.7839825576489000 71.3345616123286300, -156.7823236646054000 71.3351422659029000, -156.7761853896439800 71.3372282469860600, -156.7744915561403600 71.3377873015427900, -156.7727470080679400 71.3383283318870600, -156.7720762909880000 71.3385714033476600, -156.7695454647513600 71.3394195989354200, -156.7669012753735300 71.3402316049047200, -156.7645842827384400 71.3408833606786200, -156.7631953967501200 71.3414386263915500, -156.7613282378079000 71.3421283920117200, -156.7593888893857200 71.3427974516411600, -156.7580559951880000 71.3432418777105700, -156.7564842122765500 71.3437521305564200, -156.7548704247302900 71.3442487784584000, -156.7532157800841600 71.3447314697815500, -156.7515214537520500 71.3451998582868900, -156.7486652330140700 71.3459349047721000, -156.7457113485998300 71.3466293279811300, -156.7429832569717000 71.3472010611801000, -156.7426711400610500 71.3472960898427000, -156.7406895549789600 71.3481046091404800, -156.7381875124437200 71.3490181593606400, -156.7369107350423600 71.3494635773822700, -156.7350423548208000 71.3500945444277500, -156.7331110922031000 71.3507058343068400, -156.7311189652680000 71.3512968067023500, -156.7290680577446300 71.3518668419812300, -156.7262108531483300 71.3526018875671200, -156.7232559516008600 71.3532963107761600, -156.7223134432108000 71.3534986780216500, -156.7204600834660400 71.3541041600789800, -156.7185564741019700 71.3546874819417700, -156.7170562601382600 71.3551329341376600, -156.7139676141140700 71.3560058296054100, -156.7111097988780800 71.3567408760906100, -156.7081542651072300 71.3574352984003300, -156.7051066470541000 71.3580877727325700, -156.7039974978861800 71.3583034094748400, -156.7038079531744800 71.3583461740367400, -156.7008532809541400 71.3590462953503100, -156.6984248200493800 71.3595661682441000, -156.6978086279657700 71.3597112855474600, -156.6963416916157400 71.3601018674073100, -156.6933856443319800 71.3607962897170300, -156.6920048531414400 71.3610918564041300, -156.6907499796278400 71.3615115592111200, -156.6891517989163600 71.3620315903856400, -156.6875100271659800 71.3625375570626400, -156.6858258703676000 71.3630290842249300, -156.6841005686862600 71.3635058103449200, -156.6812416454855300 71.3642408559308000, -156.6782849659783800 71.3649352791399000, -156.6752361662160800 71.3655877525727600, -156.6721010612150000 71.3661970315678200, -156.6688856314666800 71.3667619506035700, -156.6655960139448500 71.3672814313930000, -156.6643076101081000 71.3674629577493500, -156.6621047459372600 71.3678910260500700, -156.6588890338018400 71.3684559459851500, -156.6555991284969600 71.3689754258752500, -156.6522413081898000 71.3694484755667400, -156.6488219859458600 71.3698741903416500, -156.6453476908432400 71.3702517563135600, -156.6435704641056000 71.3704175886009000, -156.6414611851855000 71.3706801888396900, -156.6407441251412300 71.3707598175116100, -156.6376658015355000 71.3714207373772000, -156.6345297504476000 71.3720300154728900, -156.6313133503308300 71.3725949345087000, -156.6296719113296000 71.3728449271517300, -156.6280236761517000 71.3731197473785000, -156.6264539697748400 71.3734009312080400, -156.6231632227045300 71.3739204119974600, -156.6198045435448300 71.3743934616889500, -156.6163843462605300 71.3748191764638600, -156.6160133372456800 71.3748594849773200, -156.6158082891212200 71.3748928435299500, -156.6127594821643400 71.3755597250013800, -156.6096227592829000 71.3761690030970600, -156.6064056711847500 71.3767339221328700, -156.6031143566422000 71.3772534029222400, -156.5997550983191000 71.3777264517144100, -156.5963343110795700 71.3781521664893700, -156.5945111721528300 71.3783502097944000, -156.5939091335996000 71.3784559179063600, -156.5929816807599200 71.3786022879653000, -156.5907364000647700 71.3791292403222400, -156.5876853609905800 71.3797817137551600, -156.5845479537250600 71.3803909918508500, -156.5813301623571000 71.3809559108866600, -156.5794644045586000 71.3812503264414900, -156.5777905009308300 71.3820348653168300, -156.5776036011252800 71.3821445484322200, -156.5759875472874400 71.3832062178926800, -156.5755378421976300 71.3834688298226800, -156.5755851789128600 71.3841202852230500, -156.5755960759980800 71.3866202826999400, -156.5755210635462000 71.3877931011707600, -156.5752859268040400 71.3889637585706400, -156.5748910830570000 71.3901300245810300, -156.5743372562593300 71.3912896796750300, -156.5736254725375000 71.3924405133191200, -156.5727570592908400 71.3935803347646900, -156.5717336442922000 71.3947069712497800, -156.5705571502922200 71.3958182760926000, -156.5692297941196800 71.3969121295911600, -156.5677540812857800 71.3979864489155600, -156.5661327996889200 71.3990391836114800, -156.5643690187152000 71.4000683263922200, -156.5624660793460500 71.4010719149370000, -156.5604275914601500 71.4020480345892000, -156.5582574230416200 71.4029948219535400, -156.5559596974820200 71.4039104720906700, -156.5540706283567800 71.4046058818560100, -156.5528209061598700 71.4050502944355700, -156.5508091101522700 71.4057408937273400, -156.5492581069760300 71.4062310826983500, -156.5487229051379400 71.4064096457885900, -156.5475165851222800 71.4068299835169600, -156.5457197171911600 71.4074171643707100, -156.5438674123511800 71.4079865575336600, -156.5425612415080500 71.4083759531877700, -156.5409278163656000 71.4088502385477000, -156.5392559155280600 71.4093106896367000, -156.5363902087411200 71.4100457334239400, -156.5334265118240200 71.4107401548343400, -156.5303704743179200 71.4113926273678900, -156.5272279265275600 71.4120019045643000, -156.5240048624344200 71.4125668236000600, -156.5207074334013000 71.4130863025908400, -156.5173419346825200 71.4135593522823300, -156.5139147919340700 71.4139850661579200, -156.5104325495225000 71.4143626312305200, -156.5069018615316500 71.4146913271430900, -156.5033294710782000 71.4149705243702300, -156.4997222058151200 71.4151996896140400, -156.4962728776911300 71.4153705014475100, -156.4928042860889000 71.4154955638692300, -156.4893224016075200 71.4155746610418300, -156.4858332191277300 71.4156076580670200, -156.4758753534647700 71.4156356980291200, -156.4751390002646200 71.4156367250548700, -156.4714616409419500 71.4156110988731700, -156.4677913098210500 71.4155342706901000, -156.4641350252112200 71.4154063861958000, -156.4604997730460500 71.4152276900059600, -156.4568925023870300 71.4149985247621500, -156.4533201074369800 71.4147193275350100, -156.4497894140502000 71.4143906316223800, -156.4463071671420000 71.4140130665498400, -156.4428777122366000 71.4136121262986300, -156.4422345090153500 71.4135576336779000, -156.4387524122939500 71.4131800677060400, -156.4353246750936500 71.4127622660657800, -156.4346526054333700 71.4127236356873100, -156.4311706588987600 71.4123460706147200, -156.4277438075306700 71.4119203567391300, -156.4243785947962800 71.4114473079469600, -156.4210814454523300 71.4109278280568600, -156.4178586556524000 71.4103629090211000, -156.4147163749607000 71.4097536318246900, -156.4116605973586600 71.4091011592911400, -156.4086971522517300 71.4084067378806800, -156.4058316882817500 71.4076716940934400, -156.4039547159373700 71.4071530128013600, -156.4031398887948000 71.4069140602357500, -156.4018057931028500 71.4066291658034000, -156.3988427275098400 71.4059347443930000, -156.3959776304632500 71.4051997006057500, -156.3942511389788600 71.4047236930440500, -156.3925657573038300 71.4042329285069300, -156.3909227229053200 71.4037277676224600, -156.3893232399755000 71.4032085809113300, -156.3729076745495000 71.3977313184456600, -156.3710232207450000 71.3970762675557500, -156.3705129337248800 71.3969032020212400, -156.3688235365769000 71.3963583405650300, -156.3626572414385000 71.3942733523334100, -156.3609639592193000 71.3936833467091700, -156.3593265248992000 71.3930774986276900, -156.3589197435513000 71.3929153040980400, -156.3575192095438500 71.3925061377481100, -156.3561300456650500 71.3920887156218100, -156.3543380961262000 71.3915340029918800, -156.3525985240026400 71.3909625584753400, -156.3509128554439000 71.3903748874911300, -156.3492825716333500 71.3897715071494200, -156.3469865251080000 71.3888558561129100, -156.3448179439929000 71.3879090678492500, -156.3442830155487000 71.3876527322878500, -156.3439465063261800 71.3875737933959200, -156.3410841324267400 71.3868387487093500, -156.3394019892104200 71.3863647934005600, -156.3366236299765100 71.3862674687687200, -156.3329938645751700 71.3860887734781500, -156.3293920375125000 71.3858596073350800, -156.3258250321994500 71.3855804101078800), (-156.4668585977460700 71.3148723662667400, -156.4666331772792800 71.3147253585884800, -156.4631523683870600 71.3149988091477700, -156.4595637056005200 71.3152279752909000, -156.4559480568573000 71.3154066364072000, -156.4523114907826500 71.3155345083109800, -156.4486609564379500 71.3156113490845800, -156.4450034271664000 71.3156370112391200, -156.4400525729678300 71.3156370112391200, -156.4363950436962800 71.3156113490845800, -156.4327445093516000 71.3155345083109800, -156.4291079432769300 71.3154066364072000, -156.4254922945337400 71.3152279752909000, -156.4219036317471700 71.3149988091477700, -156.4183496639058400 71.3147196110213000, -156.4148371817905000 71.3143909151086700, -156.4113728952429000 71.3140133482375000, -156.4079634223740200 71.3135876325632700, -156.4046152733761200 71.3131145819724600, -156.4013348424290000 71.3125951002837200, -156.3981283915120200 71.3120301803485900, -156.3950020396124200 71.3114209004542700, -156.3919617510339600 71.3107684252227000, -156.3890133246052300 71.3100740011143400, -156.3861623810889800 71.3093389537297600, -156.3843027665594000 71.3088225153468900, -156.3824912972355600 71.3082887856989500, -156.3807295343405000 71.3077382270375900, -156.3790189941312600 71.3071713133055000, -156.3777961445764000 71.3067539190581700, -156.3761811519386000 71.3061866069264200, -156.3746174440397900 71.3056047158850100, -156.3723313467142500 71.3046890603519000, -156.3701721590179000 71.3037422675916400, -156.3681439818592500 71.3027661416441600, -156.3662506652359800 71.3017625468041300, -156.3644958001410400 71.3007333968288300, -156.3628827104686800 71.2996806549383600, -156.3620492277896000 71.2990517833131900, -156.3614115095335000 71.2986108349221600, -156.3604453399804300 71.2979866586574100, -156.3589772066327400 71.2969123321384500, -156.3576566655226500 71.2958184687473700, -156.3566817725457300 71.2948928388335000, -156.3557852240088600 71.2944611615534400, -156.3538927158761000 71.2934575658141000, -156.3521385990171000 71.2924284149394800, -156.3510748970888000 71.2917339206839500, -156.3494124769042600 71.2920582350995500, -156.3462093229019000 71.2926231559339400, -156.3429322662110800 71.2931426376226800, -156.3415005787886400 71.2933451253773000, -156.3411821036711200 71.2933957158396700, -156.3379056854989500 71.2939206366281200, -156.3345608460062000 71.2943936872189300, -156.3311547437963600 71.2948194028932100, -156.3276938818671300 71.2951969697643900, -156.3241848720341800 71.2955256665762800, -156.3206344178440800 71.2958048647028000, -156.3170493046816300 71.2960340317452500, -156.3141839162547000 71.2961800016058200, -156.3113044606323300 71.2962940059636600, -156.3084144056003000 71.2963759063230800, -156.3055172288370000 71.2964256046580000, -156.3031810041999600 71.2964526409766700, -156.3001670001069400 71.2964700662406000, -156.2965122245594800 71.2964444409582300, -156.2928644340463800 71.2963676118758400, -156.2892306028100500 71.2962397273815900, -156.2856176754153500 71.2960610311917000, -156.2820325568570000 71.2958318641492500, -156.2784820981702600 71.2955526660227900, -156.2749730829414000 71.2952239692109000, -156.2715122165155600 71.2948464023396600, -156.2681051916012800 71.2944304739872300, -156.2672792002748600 71.2943629717738100, -156.2638184867337500 71.2939854049025700, -156.2604125302140700 71.2935596892283500, -156.2570678355121700 71.2930866386375300, -156.2537907878145800 71.2925671560494700, -156.2505876428054400 71.2920022352150200, -156.2474645149753500 71.2913929553207000, -156.2444273605342500 71.2907404791898200, -156.2414819729147000 71.2900460541820800, -156.2386339683829000 71.2893110067975600, -156.2366161819911700 71.2887486067628500, -156.2346554297042800 71.2881658092047700, -156.2327537053192300 71.2875632085752500, -156.2309129468749800 71.2869414200105800, -156.2299335258115300 71.2865998053367800, -156.2288855521265000 71.2864854259617000, -156.2272420509798400 71.2862799227803000, -156.2248739723559000 71.2860579952803200, -156.2214147390989000 71.2856804284090800, -156.2180102385816300 71.2852547127348500, -156.2146669729024500 71.2847816621440400, -156.2113913263486000 71.2842621795559800, -156.2081931995565000 71.2836718169008900, -156.2074640688117000 71.2835649297777500, -156.2040013848559900 71.2832074357746100, -156.2005973178119400 71.2827817201003300, -156.1992960024085400 71.2825975686229800, -156.1968780554778400 71.2824429032174900, -156.1933300429470800 71.2821637050909700, -156.1898234468945400 71.2818350082790700, -156.1863661741596000 71.2814420809872900, -156.1858584511066000 71.2813903699696400, -156.1823524540025000 71.2810580102190600, -156.1788941101750000 71.2806804433478200, -156.1754909982109600 71.2802492570975800, -156.1749945823340800 71.2801762879054200, -156.1740810815766200 71.2800974956030000, -156.1721023608352500 71.2799709097297400, -156.1685547997641700 71.2796917107039600, -156.1650486497753400 71.2793630138920100, -156.1615906081200400 71.2789854470208300, -156.1608334473057200 71.2788887096463100, -156.1607043721090500 71.2788745893908500, -156.1573276921192500 71.2785580172387700, -156.1538697943555000 71.2781804503675300, -156.1504666068484000 71.2777547337939800, -156.1471246316963600 71.2772816832031700, -156.1438502486900000 71.2767622006151100, -156.1406497081175000 71.2761972797807200, -156.1390475640937700 71.2758929923677400, -156.1358455630223000 71.2753362823436300, -156.1327251115746200 71.2747270015499300, -156.1296905606708000 71.2740745254190500, -156.1267476965489300 71.2733800995120500, -156.1239021318778600 71.2726450512282100, -156.1222603987983500 71.2721898413881300, -156.1206560064695000 71.2717211021471800, -156.1190900313798000 71.2712391509661000, -156.1175635266354200 71.2707443107014500, -156.1079098188830000 71.2675307875159100, -156.1069750104883300 71.2674709457276100, -156.1034297309972500 71.2671917467018300, -156.1024792024532000 71.2671025789209100, -156.1016630092404700 71.2670738114073300, -156.0980555011604200 71.2668951152174400, -156.0944757605478800 71.2666659481750500, -156.0909306267470000 71.2663867500485300, -156.0901173491363400 71.2663215132273000, -156.0866319770840400 71.2662067354525600, -156.0831671437486500 71.2660341168810300, -156.0795875614168000 71.2658049507379600, -156.0764806231822000 71.2655602515044400, -156.0760423080061000 71.2655380643302600, -156.0749726426733000 71.2655263011979000, -156.0714914533678600 71.2654006092507800, -156.0680297460759000 71.2652281192823100, -156.0644503121321800 71.2649989531392400, -156.0609054823021300 71.2647197541134000, -156.0574020311787500 71.2643910573015100, -156.0539466515167200 71.2640134895309500, -156.0505459434405000 71.2635877738567300, -156.0472064018539400 71.2631147223666000, -156.0439344029503000 71.2625952397785300, -156.0407361934205700 71.2620303180448200, -156.0376178760641000 71.2614210372511300, -156.0345853998962600 71.2607685611202400, -156.0316445484571000 71.2600741352132400, -156.0288009281203200 71.2593390860300200, -156.0270279021159500 71.2588460794830200, -156.0252986416189700 71.2583372736463000, -156.0236145046056600 71.2578130687181800, -156.0219768157774000 71.2572738783868500, -156.0182821921694000 71.2560226902949700, -156.0170286946185500 71.2555846584053300, -156.0171152273858000 71.2558266129079200, -156.0173668136275200 71.2569241383383800, -156.0174785328080000 71.2580240541668100, -156.0175306844934700 71.2596415217389000, -156.0187108657138400 71.2605008833091900, -156.0200377794199700 71.2615936540239500, -156.0212152968484500 71.2627039831023700, -156.0222411562043600 71.2638297607349500, -156.0231133789792200 71.2649688465351100, -156.0238302789442000 71.2661190731367900, -156.0243904666466800 71.2672782542880400, -156.0247928467124700 71.2684441839520000, -156.0250366259395000 71.2696146435010300, -156.0251213105999900 71.2707874062138600, -156.0250965657538700 71.2714794767964600, -156.0249940394433300 71.2728314285276400, -156.0250240803969700 71.2729756402137000, -156.0251087812452200 71.2741484029265300, -156.0250812799770600 71.2747231155793800, -156.0256279247888600 71.2750422984633500, -156.0272471001735000 71.2760937552226900, -156.0287221295226300 71.2771668874419800, -156.0300501844684200 71.2782596554587800, -156.0312287172315000 71.2793699827385600, -156.0314779355582600 71.2796432390442800, -156.0317019045192500 71.2797095253743600, -156.0338622244620700 71.2803970786623000, -156.0359435110841300 71.2811093570112500, -156.0379430151580000 71.2818454224283800, -156.0384084898599000 71.2820312556380000, -156.0386915973393200 71.2821268931416500, -156.0408957196617000 71.2827708913636100, -156.0424150756951500 71.2832602916292300, -156.0431227495152500 71.2833054295020400, -156.0466715408588800 71.2835838784932300, -156.0501792448762300 71.2839117029627700, -156.0536392083827200 71.2842882823783800, -156.0570448672268000 71.2847129008797500, -156.0603897606788700 71.2851847553722000, -156.0636675413239500 71.2857029492317900, -156.0668719876521000 71.2862665012980300, -156.0699970139510000 71.2868743413778200, -156.0730366855945300 71.2875253174395300, -156.0759852271365000 71.2882181938146600, -156.0788370358005500 71.2889516565937200, -156.0808389968222200 71.2895074286249700, -156.0827853716475600 71.2900832087731300, -156.0846742159422700 71.2906784223713400, -156.0865036438280800 71.2912924794644000, -156.0878648576770000 71.2917640362812800, -156.0905339852551800 71.2927344344466300, -156.0928248327997800 71.2936485044749600, -156.0949894829782400 71.2945937495019800, -156.0968520212037700 71.2954860739232600, -156.0978333758096000 71.2955777346248300, -156.1012954185487000 71.2959543122417500, -156.1047031251491000 71.2963789307431200, -156.1080500303845600 71.2968507834369800, -156.1113297814442300 71.2973689763972000, -156.1145361532208500 71.2979325275641700, -156.1176630591028500 71.2985403658452700, -156.1207045590681200 71.2991913410076600, -156.1236548740731400 71.2998842155841400, -156.1265083977443500 71.3006176774638900, -156.1279034800615200 71.3010034875209700, -156.1313496389746300 71.3010275785599700, -156.1349983485948800 71.3011041954023300, -156.1386332104542600 71.3012317282617100, -156.1422473348466000 71.3014099361197400, -156.1458338698372000 71.3016384808312900, -156.1493860147527400 71.3019169289231600, -156.1528970327718200 71.3022447515940600, -156.1563602653139600 71.3026213292110400, -156.1597691428316400 71.3030459468130300, -156.1631171974007000 71.3035177995068900, -156.1663980762102000 71.3040359924671000, -156.1696055505556700 71.3045995418354400, -156.1712349782116600 71.3049191896689100, -156.1727346049180500 71.3052012674246000, -156.1744414704974400 71.3054885441610500, -156.1775695949608000 71.3060963824421500, -156.1796053929744800 71.3065319358002500, -156.1808385190823600 71.3066104942789700, -156.1843915732125000 71.3068889414715300, -156.1879034914529400 71.3072167650417400, -156.1913676116259400 71.3075933426587200, -156.1947773632846600 71.3080179593614000, -156.1981250050649000 71.3085060367242800, -156.1992554996415700 71.3086109471375400, -156.2027677299467400 71.3089387698084400, -156.2062321576879000 71.3093153474254100, -156.2086543008552700 71.3096169503620000, -156.2096436369442600 71.3097246936397400, -156.2103238139928000 71.3097727722956700, -156.2137883910214000 71.3101493490133300, -156.2171985923411300 71.3105739657160000, -156.2205479194509000 71.3110493941143200, -156.2220608471303600 71.3110641061236400, -156.2252360699886000 71.3111067052103000, -156.2284040011437000 71.3111878006765200, -156.2315601098112000 71.3113072774089600, -156.2346998795957500 71.3114649645365300, -156.2382882734850000 71.3116935083488100, -156.2418422602121000 71.3119719564406900, -156.2453550984590000 71.3122997791115800, -156.2488201269472700 71.3126763558292400, -156.2522307725321000 71.3131009725319100, -156.2555805636920400 71.3135728243264600, -156.2588631440188500 71.3140910163873500, -156.2620722821101000 71.3146545648563100, -156.2652018859582500 71.3152624022381500, -156.2682460101452200 71.3159133747025200, -156.2711988711309600 71.3166062474803700, -156.2740548580452500 71.3173397066622100, -156.2752538854584300 71.3176871822177500, -156.2759550328984200 71.3178798161006900, -156.2778114818144000 71.3184158597042000, -156.2780042820719200 71.3184721024056800, -156.2790053920851400 71.3187770166460400, -156.2806496891318200 71.3192850535624500, -156.2807288888271300 71.3193106257848000, -156.2824017771203000 71.3198661783814600, -156.2831827609756200 71.3201331250437500, -156.2834233251263400 71.3202192108479400, -156.2837702583907000 71.3202216336215400, -156.2874225796882700 71.3202982504639600, -156.2910610415338200 71.3204257833232900, -156.2946787443285600 71.3206039902820000, -156.2982688307419000 71.3208325340942200, -156.3018244929060000 71.3211109803875200, -156.3053389877041000 71.3214388030583600, -156.3088056502605200 71.3218153788766900, -156.3122179038331600 71.3222399955793700, -156.3155692751019200 71.3227118464745900, -156.3188534040613100 71.3232300367368500, -156.3220640566108800 71.3237935852058600, -156.3251951362465200 71.3244014207890000, -156.3282406966508000 71.3250523923540500, -156.3311949515857300 71.3257452651319600, -156.3340522865837300 71.3264787225151000, -156.3358036371281200 71.3269619948002900, -156.3369118545983800 71.3272852255327600, -156.3371837781088500 71.3272990094417900, -156.3407751046873000 71.3275275523547000, -156.3443319953253000 71.3278059986479900, -156.3478477051074800 71.3281338213188300, -156.3513155655608700 71.3285103971371700, -156.3547289990440300 71.3289350120412600, -156.3580815286396200 71.3294068629364200, -156.3585402773119300 71.3294792223882700, -156.3609832065097600 71.3295648090687600, -156.3646026162177200 71.3297430160274100, -156.3681943960545000 71.3299715598396900, -156.3711617523130000 71.3302038259458900, -156.3737171471286200 71.3302216622000200, -156.3773713543045300 71.3302982790423800, -156.3810116939345000 71.3304258110024400, -156.3846312646211300 71.3306040179611000, -156.3882232036379200 71.3308325608740600, -156.3917807013182800 71.3311110071673000, -156.3952970109482700 71.3314388289388700, -156.3987654631555700 71.3318154047572100, -156.4021794785001000 71.3322400205605600, -156.4055325800645000 71.3327118705564100, -156.4088184051452400 71.3332300599194000, -156.4120298679840000 71.3337989791396600, -156.4138428014041400 71.3341188949710800, -156.4156708587231300 71.3343946900629400, -156.4189597414988400 71.3348970639484000, -156.4221723284901500 71.3354606106187200, -156.4253052949034000 71.3360684462018600, -156.4283526908240000 71.3367194159683300, -156.4313087273159000 71.3374122869475400, -156.4341677845156000 71.3381457434313700, -156.4350452548346200 71.3383885118204300, -156.4370414341148600 71.3387386187922600, -156.4401749320274700 71.3393464525767600, -156.4432228441589000 71.3399974232425500, -156.4433852994919500 71.3400354951420500, -156.4446568644227400 71.3394815541304900, -156.4469531420738200 71.3385674912967100, -156.4483788849775300 71.3380386899336300, -156.4498469751577500 71.3375219170029000, -156.4535695029301800 71.3362451252124300, -156.4553544935150500 71.3356513190531700, -156.4571937986548600 71.3350709730470400, -156.4581590374096200 71.3347143342991200, -156.4606945554094000 71.3338677637863200, -156.4633427377771000 71.3330573846906200, -156.4660985456113700 71.3322847330540500, -156.4689567376633000 71.3315512756709000, -156.4719118784304000 71.3308584037923800, -156.4749583525459000 71.3302074331265900, -156.4780903710737300 71.3295995975434500, -156.4813019858979100 71.3290360499738100, -156.4845870987156000 71.3285178597115000, -156.4848436321279000 71.3284817528306700, -156.4848440853862100 71.3280249799689200, -156.4844003571907000 71.3274406202884300, -156.4836909431824700 71.3262897794498400, -156.4831389554983600 71.3251301171612200, -156.4827454184662700 71.3239638439562800, -156.4825110506444300 71.3227931784624600, -156.4824590059783000 71.3219769124046400, -156.4805772267576000 71.3210720990981600, -156.4803467287185300 71.3209500341168300, -156.4788172822917100 71.3204207884886600, -156.4769876097903400 71.3197436808262600, -156.4746998469203700 71.3188280261925300, -156.4725390872090700 71.3178812334322200, -156.4705094333636200 71.3169051092834300, -156.4686147398783200 71.3159015153427200, -156.4668585977460700 71.3148723662667400), (-155.9928201016663300 71.2300126212854800, -155.9922923534093400 71.2298476964141400, -155.9913134467581400 71.2301171638760600, -155.9884740883085000 71.2308522139585400, -155.9855376453460300 71.2315466407649200, -155.9825097152511300 71.2321991177951200, -155.9793960725706700 71.2328083994880800, -155.9762026591254000 71.2333733221211700, -155.9729355669228400 71.2338928047092300, -155.9714649838219000 71.2341014285381700, -155.9742889117039000 71.2345993867523400, -155.9774056444549000 71.2352072322280500, -155.9804372473810200 71.2358582136856700, -155.9833779621232300 71.2365510963561000, -155.9862221984956200 71.2372845654304000, -155.9878834000988000 71.2377444697315200, -155.9895066323252000 71.2382182262901400, -155.9910907791161200 71.2387055086523400, -155.9926347513926400 71.2392059840689700, -155.9939678425418800 71.2396495584803800, -155.9957849937824200 71.2402755981403900, -155.9956443380157500 71.2398608730808900, -155.9954085411712000 71.2387083100405200, -155.9953267856026600 71.2375535517550700, -155.9953131968465200 71.2341925433512400, -155.9953132058397500 71.2341204456021200, -155.9953977214276800 71.2329476783926900, -155.9956410312086000 71.2317772134476900, -155.9959395036051700 71.2309107067637800, -155.9945769030016400 71.2305310768478000, -155.9928201016663300 71.2300126212854800), (-155.5040972234081000 71.1784816200308200, -155.5038689979558600 71.1783863512491700, -155.5042296341902400 71.1786217209157700, -155.5049908509470000 71.1791689628773800, -155.5047350405896200 71.1787374303881400, -155.5040972234081000 71.1784816200308200), (-155.5309980628103000 70.9711363635523800, -155.5327174352614000 70.9705791301228100, -155.5297725026988200 70.9708595998906700, -155.5262742937236500 70.9711180632480700, -155.5253478004606000 70.9711994105244300, -155.5228640357466400 70.9714748962495000, -155.5194125204714000 70.9718035966587300, -155.5159202434244600 70.9720827974831500, -155.5123938775753600 70.9723119663242400, -155.5088401597455500 70.9724906643127700, -155.5086095996532800 70.9724989137939100, -155.5074284507623800 70.9730770510651000, -155.5053053483631000 70.9740238636104600, -155.5030574668286000 70.9749395362306900, -155.5027976257098300 70.9750265294508200, -155.5007994094651500 70.9759930434442500, -155.4986759941018300 70.9769398559896000, -155.4964277816168000 70.9778555286098400, -155.4938923211736600 70.9787975963320700, -155.4888693422463200 70.9805751639127600, -155.4870086458323000 70.9814828550497600, -155.4863990664637200 70.9819959632431500, -155.4849542768184000 70.9830703158424400, -155.4833669859975800 70.9841230829139800, -155.4816401968376000 70.9851522553723300, -155.4797771828706600 70.9861558717960900, -155.4777814766338200 70.9871320175286700, -155.4766774329171700 70.9876240474119400, -155.4748138865516000 70.9886278661831500, -155.4728179303032200 70.9896040110163500, -155.4706930544409000 70.9905508226623900, -155.4684432951219400 70.9914664943832500, -155.4667011419441300 70.9921228079213000, -155.4648947951586400 70.9927604371445100, -155.4638971025692000 70.9930905404961000, -155.4631367788392400 70.9941090281092200, -155.4621339852951700 70.9952357023658500, -155.4613376518111600 70.9960034194223200, -155.4612238542974000 70.9961911609933600, -155.4603727826777500 70.9973310220091200, -155.4593698272557000 70.9984576971650700, -155.4582168730102600 70.9995690379807900, -155.4571584779813500 71.0004694733875700, -155.4560015685175400 71.0013569585568700, -155.4558411393570600 71.0014686993211000, -155.4556952774151000 71.0016640140830200, -155.4546921025584500 71.0027906883396400, -155.4535388956035100 71.0039020291553700, -155.4522378311109800 71.0049959168281400, -155.4507913633307200 71.0060702676287900, -155.4492022271010700 71.0071230320023700, -155.4474734306542700 71.0081522035614000, -155.4456082502205400 71.0091558181865100, -155.4436102219341600 71.0101319621204000, -155.4414831391355300 71.0110787728671100, -155.4392310424786000 71.0119944436887000, -155.4366137149509700 71.0129638939685600, -155.4327533301020600 71.0143261501317500, -155.4309526445488800 71.0149416731197800, -155.4290929832545500 71.0155383400224300, -155.4271762051177500 71.0161155518912900, -155.4252042256944400 71.0166727313615000, -155.4223955907838500 71.0174077886386000, -155.4194909262652000 71.0181022217402100, -155.4164944724419000 71.0187505322113600, -155.4162707409019500 71.0188072668419700, -155.4136570043672200 71.0195617233948700, -155.4108479584665000 71.0202967806719700, -155.4079428685685000 71.0209912146728500, -155.4049472726984500 71.0216436979983400, -155.4018668842492700 71.0222529841879000, -155.3987075793912400 71.0228179113175900, -155.3964968335620000 71.0231732289614100, -155.3959504558488300 71.0232711399511900, -155.3954783000834500 71.0233530376126500, -155.3953162737270200 71.0233835543076600, -155.3932057123736900 71.0237884596697300, -155.3901940114444400 71.0243170784704600, -155.3871174783889000 71.0248046171394100, -155.3839814030193000 71.0252502357098500, -155.3807911821673000 71.0256531688587000, -155.3773776047926000 71.0260307393272100, -155.3739165405159000 71.0263594388370600, -155.3704146011529000 71.0266386396615400, -155.3668784776595800 71.0268678085026300, -155.3633212506751400 71.0270462348958600, -155.3597434678867200 71.0271740294579700, -155.3561519425580900 71.0272509484725600, -155.3525535149327400 71.0272768462494900, -155.3475376910116000 71.0272768462494900, -155.3465071156108800 71.0275984941752100, -155.3449045273220600 71.0280730205535000, -155.3432641747018600 71.0285336991709600, -155.3404538508645000 71.0292687555486900, -155.3375474389631000 71.0299631886503000, -155.3345487683109800 71.0306097157658200, -155.3332427647417800 71.0309786932122000, -155.3304320928667700 71.0317137495899300, -155.3275253212365500 71.0324081826915400, -155.3255011622488000 71.0328488181185100, -155.3249163331222500 71.0330226273923700, -155.3231945819643400 71.0335066856850400, -155.3203835494612000 71.0342417429621400, -155.3184784391286300 71.0346968179038600, -155.3201146827463800 71.0350518063958100, -155.3230253880112200 71.0357447124486000, -155.3258405951673000 71.0364782067039200, -155.3276969352653200 71.0369992523137000, -155.3295050429233600 71.0375379534139000, -155.3312633290394000 71.0380938360617600, -155.3329702458801200 71.0386664137240600, -155.3366657004616800 71.0399432208030800, -155.3382276906553700 71.0404981825451500, -155.3397414070402600 71.0410671215505000, -155.3420029178004000 71.0419812275516700, -155.3441398400815400 71.0429265094509200, -155.3461480981561600 71.0439011713020800, -155.3480238573151300 71.0449033631997000, -155.3487779820182200 71.0453489071264200, -155.3489477344503500 71.0454361701432000, -155.3509619541308400 71.0464011741748900, -155.3528379525094700 71.0474033651732400, -155.3545778528855700 71.0484311832525500, -155.3561783268682700 71.0494826732867800, -155.3576363113666300 71.0505558396803300, -155.3589490121871400 71.0516486409720800, -155.3601139103286600 71.0527590015267400, -155.3611287646807300 71.0538848106355700, -155.3619916210164700 71.0550239261133400, -155.3627008119928500 71.0561741823926800, -155.3632448919382000 71.0573088920917300, -155.3636393768557300 71.0584501119831200, -155.3638835194088600 71.0595957628342500, -155.3639768492521700 71.0607437546206600, -155.3640536621467700 71.0656887245550600, -155.3640546388105000 71.0657876221011400, -155.3639807604037300 71.0669604801420900, -155.3637493720358700 71.0681311762128900, -155.3633608855963600 71.0692974790954400, -155.3628160142476400 71.0704571701623400, -155.3621157670290000 71.0716080379806400, -155.3612614515547200 71.0727478918018400, -155.3602546686180400 71.0738745588638500, -155.3590973112918600 71.0749858924850200, -155.3577915604321300 71.0760797747618700, -155.3563398792819600 71.0771541192672200, -155.3547450134715600 71.0782068782448800, -155.3530099811257000 71.0792360444079900, -155.3511380701657700 71.0802396545364600, -155.3492814791569000 71.0811434327233100, -155.3491418252350200 71.0812279510091700, -155.3489670114184000 71.0813761107189600, -155.3473718038656300 71.0824288696966300, -155.3456363992004300 71.0834580358597300, -155.3437640871429000 71.0844616450888800, -155.3417584173170700 71.0854377845261600, -155.3396231965532500 71.0863845898769600, -155.3373624816931300 71.0873002571012200, -155.3367408747915000 71.0875304601626700, -155.3362479473848300 71.0877946378123500, -155.3342419376153000 71.0887707763503200, -155.3321063553240200 71.0897175817011100, -155.3298452573527000 71.0906332480260500, -155.3278005668426500 71.0913955691502800, -155.3259195475490600 71.0920457583051800, -155.3256757890064300 71.0921466928156700, -155.3242011535603500 71.0928817662805300, -155.3220651252053400 71.0938285716313200, -155.3198035541906600 71.0947442379562600, -155.3178007720879400 71.0954913533433300, -155.3157143737193500 71.0962140377477000, -155.2969654048295400 71.1024699925961300, -155.2939834300912000 71.1034156621032000, -155.2908582509075200 71.1043114983770000, -155.2880370866422200 71.1050465520567600, -155.2851194628928800 71.1057409833597400, -155.2838498458936600 71.1060163341865000, -155.2832293010913500 71.1062197005787800, -155.2816567627493800 71.1067086376935400, -155.2800450625295800 71.1071840103338700, -155.2783953119940200 71.1076454893479300, -155.2755736683900500 71.1083805430276900, -155.2726555491142600 71.1090749734313500, -155.2706031298305600 71.1095200218316000, -155.2683181818386000 71.1101724817746700, -155.2654961758078400 71.1109075363537500, -155.2625776806154400 71.1116019667574000, -155.2595682594675800 71.1122544473848800, -155.2564736536361600 71.1128637317758600, -155.2532997653718500 71.1134286562075900, -155.2521991309850800 71.1136047398669000, -155.2502226828305300 71.1140749593919300, -155.2489041094370600 71.1143608071056400, -155.2472398096694500 71.1149186529735300, -155.2449560478832800 71.1156389676642700, -155.2441875547118600 71.1159032730177000, -155.2425688604645000 71.1165159640405600, -155.2400666758364000 71.1173641704201600, -155.2374524167955800 71.1181761853827100, -155.2354848314598000 71.1187359980679000, -155.2349811400675300 71.1190677903463200, -155.2332425023395800 71.1200969529120900, -155.2313666991138300 71.1211005603426500, -155.2293572890076500 71.1220766970819800, -155.2272180851465000 71.1230235006340800, -155.2249531515666700 71.1239391651603800, -155.2230669081113000 71.1246432920543200, -155.2211062790315200 71.1253258100381300, -155.2173845498570600 71.1265769972307000, -155.2158496157671300 71.1270795608730900, -155.2142743290969800 71.1275688793003800, -155.2126597798249500 71.1280446134682000, -155.2120086940459800 71.1282265490160600, -155.2101585961422600 71.1289079770215800, -155.2100200942519200 71.1291349452216100, -155.2091632867562500 71.1302747927475700, -155.2081535639358000 71.1314014544136600, -155.2069928242594000 71.1325127835381700, -155.2056832539789500 71.1336066604191000, -155.2042273253307800 71.1346810004278600, -155.2026277902402900 71.1357337549089300, -155.2008876767248800 71.1367629165753800, -155.1990102807998000 71.1377665222073000, -155.1987599617028500 71.1378880197164000, -155.2009042899010200 71.1382296056118500, -155.2040845885329000 71.1387931720672700, -155.2071860642854200 71.1394010274355000, -155.2102028256998000 71.1400520205843300, -155.2131291413967300 71.1407449140465900, -155.2159594490693000 71.1414783957114300, -155.2190251111199500 71.1423512426158000, -155.2219548037711500 71.1432716933340400, -155.2278009501537000 71.1452003874879300, -155.2298021755299500 71.1452427491536200, -155.2334080891120000 71.1453702856102300, -155.2369934298029000 71.1455484988641700, -155.2405513987280300 71.1457770498710100, -155.2440752509720300 71.1460555051575000, -155.2475583018741000 71.1463833386202400, -155.2509939468131700 71.1467599270290500, -155.2520930784328000 71.1469013463201300, -155.2540401610246000 71.1468601348873900, -155.2576670000320000 71.1468345788528000, -155.2607566290152000 71.1468531219740600, -155.2630864306942000 71.1468810836951200, -155.2659383050087500 71.1469311435574800, -155.2687832005842000 71.1470128037979000, -155.2699695709389000 71.1470626298365700, -155.2700348806052400 71.1470627737280700, -155.2721291003776400 71.1469886668934900, -155.2728642143120200 71.1469657845434000, -155.2742941444591600 71.1469314259446200, -155.2764840493993300 71.1468834462141300, -155.2767627573953200 71.1468793066347300, -155.2796710749601000 71.1468230495441400, -155.2825829997056500 71.1468065784608800, -155.2862098342164400 71.1468321344954700, -155.2898297925109000 71.1469087531365300, -155.2934360127617600 71.1470362895931300, -155.2970216583228500 71.1472145028470800, -155.3005799303195000 71.1474430538539200, -155.3041040820377200 71.1477215091404100, -155.3075874297160800 71.1480493426031400, -155.3110233669348200 71.1484259301126400, -155.3144053754077200 71.1488505603051600, -155.3177270384720100 71.1493224255895000, -155.3209820527794700 71.1498406320395700, -155.3241642381890000 71.1504041975957200, -155.3269598850906000 71.1509517875949800, -155.3272687077846000 71.1510039356831500, -155.3276191322171400 71.1510454304023500, -155.3308744325090300 71.1515636368524200, -155.3340568994063600 71.1521272015091900, -155.3366306988476400 71.1526270267159500, -155.3391471512200300 71.1531565250536500, -155.3406386399612400 71.1534957061619500, -155.3411280690051500 71.1534991532634000, -155.3447492611694300 71.1535757719044000, -155.3483567098942000 71.1537033092603800, -155.3519435776339600 71.1538815216150000, -155.3555030619167500 71.1541100717224700, -155.3590284133305800 71.1543885279082800, -155.3625129481140400 71.1547163604717000, -155.3659500562500600 71.1550929479812500, -155.3677365990647600 71.1553171813429200, -155.3686184760617800 71.1553419963361200, -155.3715107299362000 71.1554564476570000, -155.3743888482667000 71.1556035263817000, -155.3762529432187300 71.1557232072602800, -155.3775690614630000 71.1556361879597700, -155.3781645124822400 71.1555861110102800, -155.3810535773607000 71.1553055297264900, -155.3845790942497700 71.1550270744400000, -155.3881387458064600 71.1547985243324800, -155.3917257808201000 71.1546203110785300, -155.3953333986174200 71.1544927746219300, -155.3989547607535800 71.1544161559808700, -155.4025847428915500 71.1543906008456000, -155.4062112392572600 71.1544033784132400, -155.4101913850243800 71.1543906008456000, -155.4138222395047300 71.1544161559808700, -155.4174436016408800 71.1544927746219300, -155.4210512194382000 71.1546203110785300, -155.4246382544518500 71.1547985243324800, -155.4281979060085300 71.1550270744400000, -155.4317234228976200 71.1553055297264900, -155.4352081204583600 71.1556333622899000, -155.4386453895730500 71.1560099497994000, -155.4420287092575000 71.1564345790926000, -155.4453516601509800 71.1569064434776200, -155.4486079362072500 71.1574246499276900, -155.4517913563859700 71.1579882145844600, -155.4548958763435800 71.1585960681540500, -155.4579155983261700 71.1592470586049300, -155.4608447873570200 71.1599399502685500, -155.4636778739347000 71.1606734292354300, -155.4658792263451800 71.1612907391763100, -155.4680124596073000 71.1619325592402600, -155.4700749575932000 71.1625981043191000, -155.4720641887113000 71.1632865605263900, -155.4731484212626000 71.1636752034479500, -155.4750296599907800 71.1643732761058900, -155.4773054438910800 71.1652873641206200, -155.4794558578015500 71.1662326280334100, -155.4814767972164000 71.1672072718981200, -155.4833644067419400 71.1682094458093400, -155.4851150782982000 71.1692372450029300, -155.4867254646084700 71.1702887179500300, -155.4876989096769000 71.1710008092400100, -155.4885668984435700 71.1712898441510300, -155.4905867262963600 71.1719867180127000, -155.4925288338385800 71.1727062871654500, -155.4939326539687800 71.1732699021843000, -155.4934592301593200 71.1729589202180400, -155.4920004605528000 71.1718845829072400, -155.4906883361977300 71.1707907096235900, -155.4895253338270600 71.1696793849956700, -155.4885136441893000 71.1685527269268600, -155.4876551702498700 71.1674128829982400, -155.4869515199966000 71.1662620250724600, -155.4864334817197900 71.1651746790682300, -155.4863601923689500 71.1649637493775900, -155.4858915439595500 71.1644417342986300, -155.4850332498845400 71.1633018894706900, -155.4843297462208000 71.1621510315449100, -155.4837823459784500 71.1609913512699000, -155.4833920653914800 71.1598250582798600, -155.4831596185215400 71.1586543739002800, -155.4830854199561300 71.1574815266511700, -155.4830914885813000 71.1571916131025000, -155.4832481990451000 71.1530246781464400, -155.4833592464320600 71.1519246193257700, -155.4836094432212000 71.1508269518024600, -155.4839983460468000 71.1497335128913700, -155.4845252813166500 71.1486461354109000, -155.4852378465493500 71.1474958917220900, -155.4856300301018000 71.1469805972768100, -155.4856494788403400 71.1424000686083100, -155.4850950252152000 71.1416629240047800, -155.4843922931697800 71.1405120633811000, -155.4838454918759000 71.1393523813073900, -155.4834556366682800 71.1381860856194000, -155.4832234407092000 71.1370153985418500, -155.4831493176868400 71.1358425485947800, -155.4831483140434300 71.1357223973707800, -155.4820830652812200 71.1347074485899500, -155.4810606925968600 71.1335598147337000, -155.4808098527924500 71.1333467815288100, -155.4796490636533400 71.1322354533035700, -155.4789706222963400 71.1314784714543300, -155.4781809249097400 71.1308187854586400, -155.4770202850580700 71.1297074572334000, -155.4760106485725500 71.1285807955673000, -155.4758746306097000 71.1283998294886100, -155.4744206193161000 71.1276313120354800, -155.4732082648495200 71.1271036851869700, -155.4711983403311000 71.1261275484476400, -155.4693220568674000 71.1251239419164600, -155.4675829739750300 71.1240947793506300, -155.4659843858706800 71.1230420239703000, -155.4645293187730000 71.1219676830621700, -155.4643439747945600 71.1217887386594000, -155.4640902319786000 71.1216119553275200, -155.4636510840302600 71.1213424545906600, -155.4626236013980600 71.1207337871346100, -155.4610252866876000 71.1196810308549600, -155.4604574709355000 71.1192617147563600, -155.4601298596053000 71.1190677903463200, -155.4585316797931700 71.1180150340666200, -155.4570769850148200 71.1169406931585400, -155.4557685235984600 71.1158468144789700, -155.4546087650824000 71.1147354844550800, -155.4541183485828800 71.1141878072215800, -155.4536026656304800 71.1138480433525600, -155.4531402540194700 71.1135064646516600, -155.4526797642596700 71.1132338027978200, -155.4510820592895800 71.1121810465181200, -155.4496277952865000 71.1111067047107200, -155.4483197214779300 71.1100128260311500, -155.4471603065029200 71.1089014951079400, -155.4465727695176700 71.1082451635834900, -155.4461811381489700 71.1079870554583000, -155.4447271835126700 71.1069127127515200, -155.4434193884939600 71.1058188331726900, -155.4422602208325000 71.1047075031488000, -155.4412518640822300 71.1035808387847500, -155.4403962149133600 71.1024409876615100, -155.4397281004714300 71.1013681441245900, -155.4396812350009600 71.1013025259908300, -155.4387094707654500 71.1002478442626400, -155.4378539663874200 71.0991079931394600, -155.4371527461023300 71.0979571280191200, -155.4366216442734300 71.0968334008408100, -155.4364495374162000 71.0963270114824600, -155.4362543611498200 71.0961088521418700, -155.4353990357368800 71.0949690010186300, -155.4346979620413000 71.0938181349989700, -155.4341718667382400 71.0927064461456600, -155.4337896584659400 71.0915885942383200, -155.4335519793403400 71.0904665362017500, -155.4335062632034400 71.0899124180237400, -155.4329230816348700 71.0891350098728500, -155.4322222147833700 71.0879841438531900, -155.4316950951525000 71.0868695573842000, -155.4313125694195000 71.0857487808816000, -155.4310752850963000 71.0846237865585500, -155.4309836351865800 71.0834965547222700, -155.4309644607412500 71.0823439377226100, -155.4304538571597600 71.0816630223306400, -155.4297532547089000 71.0805121554117200, -155.4292081072683000 71.0793524661434600, -155.4288194256759300 71.0781861632609100, -155.4285879212955000 71.0770154689887500, -155.4285140078151800 71.0758426118471200, -155.4285977976502000 71.0746698239532900, -155.4288391028423000 71.0734993392231900, -155.4292374359588700 71.0723333834789000, -155.4297920118918000 71.0711741753479500, -155.4305017478573300 71.0700239208673000, -155.4313652660941300 71.0688848071881700, -155.4318645211307000 71.0683313940786500, -155.4321391839761200 71.0677571769522300, -155.4328487958352400 71.0666069215722000, -155.4337121629859000 71.0654678078930700, -155.4342034554251000 71.0649231254019500, -155.4342704243405800 71.0647339691973900, -155.4347952282171800 71.0636461789280800, -155.4355046907888300 71.0624959235481100, -155.4363678762764500 71.0613568089696000, -155.4373831191356000 71.0602310016594700, -155.4385484606429200 71.0591206420040700, -155.4398616623858000 71.0580278416116500, -155.4413202017658800 71.0569546761174700, -155.4423060565792000 71.0563228960848500, -155.4429172826065000 71.0558977478828000, -155.4437716592346700 71.0552606762393000, -155.4453726044621000 71.0542091862050100, -155.4471130165524400 71.0531813699243500, -155.4489895662155000 71.0521791789260000, -155.4509986705521700 71.0512045179741600, -155.4531364930546700 71.0502592378736000, -155.4553989561968300 71.0493451327716900, -155.4580066726697700 71.0483846451353400, -155.4607519296578000 71.0474655694805000, -155.4620568864161500 71.0470489747304400, -155.4626967558505700 71.0468526284461200, -155.4628724608953000 71.0467371824750600, -155.4633180524861000 71.0464739338250400, -155.4638345790026000 71.0460936725849600, -155.4654347768934000 71.0450421816514100, -155.4664245068854600 71.0444558389658600, -155.4680238827959300 71.0434031807122900, -155.4697633371083000 71.0423753626329200, -155.4716388552489500 71.0413731698359900, -155.4736468552181600 71.0403985070855100, -155.4757835032061000 71.0394532251862600, -155.4780447234851700 71.0385391191850300, -155.4798256734160600 71.0378729202991000, -155.4816727945638000 71.0372260730249000, -155.4878953135178700 71.0351170621028100, -155.4894765366128400 71.0345954418262400, -155.4911007787778800 71.0340880101536000, -155.4927668349214700 71.0335951412028500, -155.4944734684757500 71.0331172000987900, -155.4972881962932000 71.0323837058434200, -155.5001984042329500 71.0316907988913000, -155.5031985632630600 71.0310397940513100, -155.5062829725811000 71.0304319269918700, -155.5073455854304000 71.0302425810303400, -155.5091044597030200 71.0296958831585200, -155.5118177754699200 71.0289231928511500, -155.5146319034395500 71.0281896976964600, -155.5168556237880000 71.0276601274130100, -155.5175165220698000 71.0269260036322400, -155.5186798868672600 71.0258156394802400, -155.5199908609894200 71.0247228336919000, -155.5214469290325200 71.0236496637010600, -155.5230453004002700 71.0225981691702400, -155.5247829146997300 71.0215703483929100, -155.5258887714496200 71.0209788013306700, -155.5255337209044600 71.0207225610973900, -155.5239349988011400 71.0196812387981700, -155.5224875354713600 71.0186068897961600, -155.5211855761533900 71.0175130030227100, -155.5200315777950400 71.0164016640056300, -155.5190269406407700 71.0152736830340800, -155.5187503028841400 71.0150410077363900, -155.5175964484173200 71.0139296687193000, -155.5165927096857700 71.0128029953620000, -155.5157409752657700 71.0116631352455600, -155.5150666510051000 71.0105193648768700, -155.5150149049139000 71.0104586561421300, -155.5147697677106000 71.0102739066155700, -155.5134683560797300 71.0091800189428000, -155.5123148424560000 71.0080686790264000, -155.5113114005007200 71.0069420056690900, -155.5104599169915500 71.0058021455526500, -155.5097619873258200 71.0046512696404200, -155.5092189155205000 71.0034915722782800, -155.5088317061183100 71.0023252613018500, -155.5086010713823200 71.0011545571371700, -155.5085274205040400 70.9999816910022900, -155.5085832675037500 70.9990286110816000, -155.5087427595706800 70.9980767749232800, -155.5090056808674600 70.9971273795250100, -155.5092278035202800 70.9965534124101000, -155.5091183128598000 70.9963855584468300, -155.5085499521185600 70.9954292841342200, -155.5080071303247800 70.9942695849734400, -155.5076200998876700 70.9931032730976300, -155.5073895703723400 70.9919325680336300, -155.5073159509703400 70.9907597001001100, -155.5073615178197600 70.9899019510143000, -155.5074909995100000 70.9890451111430100, -155.5077042530488100 70.9881900537280300, -155.5080010518070700 70.9873376493131300, -155.5083657853526800 70.9864208084736100, -155.5089531262857200 70.9851742186153300, -155.5096597487983300 70.9840239515442000, -155.5105194862852300 70.9828848252745400, -155.5115306758999300 70.9817590071725100, -155.5126913706102400 70.9806486358259600, -155.5139993373994700 70.9795558237423200, -155.5154520671591500 70.9784826465569300, -155.5170467755882000 70.9774311457308600, -155.5187804103876000 70.9764033177589800, -155.5206496557569800 70.9754011150694700, -155.5226509404885000 70.9744264433257400, -155.5247804460607000 70.9734811515339700, -155.5270341084373300 70.9725670356402200, -155.5289768302165200 70.9718401109324200, -155.5309980628103000 70.9711363635523800), (-155.8420421740071000 70.8612344853832500, -155.8416338377314000 70.8603895021738600, -155.8399758943720000 70.8605862162809200, -155.8365436173940000 70.8609149175894100, -155.8330708070720600 70.8611941202125300, -155.8295640977049200 70.8614232899529400, -155.8260301910404500 70.8616019888407900, -155.8224758391886000 70.8617298751336800, -155.8189078356281000 70.8618067051153800, -155.8153329999179800 70.8618323312970800, -155.8113707560555000 70.8618008460322800, -155.8043893693738700 70.8616896970219700, -155.8018121677972700 70.8616352331795300, -155.7992414952987300 70.8615541188276000, -155.7966799149460800 70.8614464358044500, -155.7941299808139200 70.8613122902300500, -155.7906232912318700 70.8610831204897000, -155.7871504997957000 70.8608039187659000, -155.7837182426028000 70.8604752165580300, -155.7803330748115200 70.8600976442909300, -155.7770014634467700 70.8596719223214100, -155.7737297703126300 70.8591988636367200, -155.7705256297540000 70.8586697708932400, -155.7698424957345700 70.8585573196646100, -155.7683950090224000 70.8587179511725400, -155.7672787084456200 70.8593231643326400, -155.7652957033340000 70.8602993181590400, -155.7631846176759300 70.8612461378990000, -155.7609494615484000 70.8621618168144800, -155.7589153191866000 70.8629288368963400, -155.7567940864778700 70.8636700563280900, -155.7545887959361400 70.8643844112116900, -155.7523025987859000 70.8650708772192400, -155.7498020284408300 70.8657936083883400, -155.7483584339945000 70.8662011325762400, -155.7455710383727000 70.8669361952492500, -155.7426883424929800 70.8676306337467800, -155.7397158412130700 70.8682831215688800, -155.7366592038591500 70.8688924131544100, -155.7335242607360000 70.8694573429820600, -155.7303169959325800 70.8699768336640000, -155.7270435302347000 70.8704498914493700, -155.7237101130312700 70.8708756143182100, -155.7213063879793800 70.8711491341252900, -155.7188778785112500 70.8713980331927500, -155.7164269309580800 70.8716220705022100, -155.7139559159327600 70.8718210302164400, -155.7117301406334500 70.8719882492583800, -155.7076828505830700 70.8722572589653600, -155.7041470184701000 70.8724359569539000, -155.7005907303778800 70.8725638441461600, -155.6970207833824000 70.8726406732285500, -155.6934439997407700 70.8726662994102400, -155.6929924780204100 70.8726633208556200, -155.6925963185652200 70.8729595449471000, -155.6910177961343600 70.8740123201125100, -155.6893005496805800 70.8750415015641100, -155.6890792319210000 70.8751667429509100, -155.6874973190460000 70.8760563469229500, -155.6856878956798200 70.8770260714960600, -155.6837548820821300 70.8779698362390000, -155.6817017235556800 70.8788859504263100, -155.6795320830391600 70.8797727718959400, -155.6771750229089500 70.8806555617048800, -155.6747025177070000 70.8815037788763200, -155.6721192744849000 70.8823158037313900, -155.6694302098363000 70.8830900867381500, -155.6691365398194200 70.8831706066382600, -155.6660805607692500 70.8840044715291800, -155.6633570718713300 70.8847159872530600, -155.6605436975336000 70.8853889400476200, -155.6576455171269000 70.8860221140294000, -155.6546677620076000 70.8866143634621700, -155.6515300246908600 70.8871792932898200, -155.6483199000433300 70.8876987830724400, -155.6450435160454000 70.8881718408578100, -155.6417071265826000 70.8885975628273300, -155.6383171042509400 70.8889751350944800, -155.6348799241691300 70.8893038364029700, -155.6314021513881600 70.8895830381267700, -155.6289074644079200 70.8897546305718200, -155.6304609407198100 70.8897354228515200, -155.6327156202296700 70.8897049790016400, -155.6349719994581700 70.8896948292530200, -155.6385518578819000 70.8897203861869200, -155.6421249291221600 70.8897970084252600, -155.6456844394852500 70.8899245511771600, -155.6492236404586200 70.8901027725249800, -155.6527358204017700 70.8903313343236600, -155.6562143198349600 70.8906098031000000, -155.6596525422310200 70.8909376518512300, -155.6630439648071000 70.8913142573471800, -155.6669093669736700 70.8918110446440400, -155.6706933382269500 70.8923711568035000, -155.6717483518049500 70.8925379540633600, -155.6744353695966000 70.8929828145053300, -155.6770709021004000 70.8934596161684000, -155.6801340208683400 70.8940674976169600, -155.6831134685117200 70.8947185177454500, -155.6860035846976600 70.8954114408853700, -155.6887988754677000 70.8961449522278100, -155.6910970614801800 70.8967995246783900, -155.6933196864543400 70.8974815381425300, -155.6954636926952300 70.8981900564260200, -155.6975261286279000 70.8989241064624000, -155.6995546304418000 70.8996734341817000, -155.7009587473483000 70.9002059425502600, -155.7032041827268400 70.9011200692358400, -155.7053259118613000 70.9020653709201800, -155.7073198869032400 70.9030400543550700, -155.7078412580676000 70.9033206176524100, -155.7104792088483700 70.9041575492315700, -155.7144793465445800 70.9054892869011200, -155.7165609946941300 70.9062097607719000, -155.7166799741014800 70.9062432416323500, -155.7180024766329600 70.9065245414744800, -155.7208943132219500 70.9072174637150300, -155.7232287940735500 70.9078296879897600, -155.7255956963842600 70.9080923017184000, -155.7289367092617000 70.9085169498973800, -155.7322181051813700 70.9089888358661300, -155.7354336554388000 70.9095070647992400, -155.7385772581339200 70.9100706537377600, -155.7416806323552700 70.9106863844691000, -155.7436792748786200 70.9111029090720400, -155.7459145263343000 70.9115856318714500, -155.7481006298401700 70.9120919133112000, -155.7502352642460200 70.9126212173953300, -155.7523161659582600 70.9131729838462100, -155.7552986254311800 70.9140313903364500, -155.7581510923989800 70.9149359113632700, -155.7609011877396000 70.9158510425916100, -155.7631002450802000 70.9166117979961500, -155.7652072720979000 70.9173999656359800, -155.7674546563073000 70.9183140887242900, -155.7695782281526800 70.9192593886099300, -155.7715739343895200 70.9202340693468600, -155.7734379681876600 70.9212362792309800, -155.7751667673324200 70.9222641161960600, -155.7767570259160000 70.9233156251160600, -155.7782057006325500 70.9243888103953300, -155.7787634071055200 70.9248560846406200, -155.7801513344165300 70.9256811172898000, -155.7817418681926300 70.9267326262098000, -155.7831907929207200 70.9278058105897500, -155.7844953323936500 70.9288986307672600, -155.7846448671668600 70.9290454801648600, -155.7858929723827500 70.9299936003244500, -155.7870313477184800 70.9309546311513400, -155.7881823963005300 70.9320740892478600, -155.7885141499080500 70.9323338116561200, -155.7898189888552200 70.9334266309343200, -155.7909769046604000 70.9345370094754900, -155.7913106970310000 70.9349095347473000, -155.7920604186533600 70.9348143729849900, -155.7950694710792000 70.9344782369811400, -155.7981159272082400 70.9341803212648800, -155.7996420839150200 70.9340415028131600, -155.8035192078451400 70.9337217542556000, -155.8074391799741500 70.9334638970412900, -155.8097652638558000 70.9333411890447100, -155.8121011197708300 70.9332402824131800, -155.8144448393578300 70.9331612598842900, -155.8167945052621800 70.9331041862092800, -155.8195967181140000 70.9330492601153000, -155.8220612535240000 70.9330130354233000, -155.8245279994675600 70.9330009566289200, -155.8281156792951400 70.9330265135628200, -155.8316965575500600 70.9331031349017800, -155.8352638461495600 70.9332306767543600, -155.8388107794938500 70.9334088972029200, -155.8423306342513400 70.9336374572029600, -155.8458167356537800 70.9339159232812900, -155.8492624709862200 70.9342437693345600, -155.8526613057746000 70.9346203721325400, -155.8551608418993000 70.9349324386811300, -155.8576280878659200 70.9352708814460600, -155.8600604428351300 70.9356353415977900, -155.8624553392424700 70.9360254369244100, -155.8640928967697300 70.9363031017068100, -155.8672998279246800 70.9368767144888500, -155.8703696610310000 70.9374845914408000, -155.8733556404504300 70.9381356070726400, -155.8762520941588000 70.9388285248166400, -155.8790535147079200 70.9395620307631700, -155.8807846466940500 70.9400494030575700, -155.8818394417368200 70.9403634292289100, -155.8834251065833600 70.9401877853380800, -155.8868718770354700 70.9398599401841400, -155.8887649418485600 70.9397087686448300, -155.8904529378527600 70.9395217834036200, -155.8938995922923000 70.9391939382497300, -155.8973866217951400 70.9389154712720300, -155.9009074145455100 70.9386869112719900, -155.9032239656135000 70.9385695416510800, -155.9024874964008000 70.9375802550247800, -155.9017919526364700 70.9364293728173700, -155.9013379775656000 70.9354819523302900, -155.9009847085774000 70.9345324858856000, -155.9008255546556000 70.9343591307693400, -155.8999771720088500 70.9332192625589600, -155.8992817802299600 70.9320683794522300, -155.8987406770406000 70.9309086739961600, -155.8983548669834800 70.9297423540264700, -155.8981250560265000 70.9285716417679200, -155.8980517343000800 70.9273849116843800, -155.8980580403462600 70.9265197485875700, -155.8979252644393800 70.9264314333640300, -155.8964845900917200 70.9253570762680900, -155.8951887335731800 70.9242631814007600, -155.8940401401403300 70.9231518333904800, -155.8930409753607000 70.9220251510399200, -155.8921931170187000 70.9208852819302800, -155.8914981542164000 70.9197343979241700, -155.8911778237975000 70.9190474345915000, -155.8905451300536800 70.9185131923300100, -155.8893968693700000 70.9174018443197300, -155.8883979923734300 70.9162751610699000, -155.8875503777477100 70.9151352919602100, -155.8868556145949000 70.9139844061554600, -155.8863150006367300 70.9128246989008000, -155.8859295368186500 70.9116583771324800, -155.8859172116100000 70.9115955334072000, -155.8852547835813600 70.9112991960011500, -155.8832666910049600 70.9103230457719700, -155.8814107825815300 70.9093194248516200, -155.8796905782575400 70.9082902460980300, -155.8781093362768200 70.9072374736305700, -155.8766700513817200 70.9061631147359900, -155.8753754431221800 70.9050692180700300, -155.8744799422954700 70.9042019190833300, -155.8735945759289000 70.9037670618005200, -155.8717392799438000 70.9027634399808400, -155.8700196412933700 70.9017342612272000, -155.8684389209194300 70.9006814878604200, -155.8670001090677600 70.8996071280665800, -155.8657059270868500 70.8985132305012400, -155.8645588166360500 70.8974018806923100, -155.8635609405849000 70.8962751965431200, -155.8627141749192000 70.8951353238362000, -155.8620201069423400 70.8939844371321300, -155.8617944922220000 70.8935401315718500, -155.8614256487746600 70.8927741277239000, -155.8610329786890000 70.8924272664052600, -155.8608313515855700 70.8922925047953100, -155.8593931458769600 70.8912181450014600, -155.8584241983180600 70.8904024086443200, -155.8580901532379500 70.8901367677976300, -155.8569843522460300 70.8893301487673900, -155.8556908366627500 70.8882362503027800, -155.8545443179658600 70.8871248995944800, -155.8535469554276200 70.8859982136467000, -155.8527006250337800 70.8848583409397300, -155.8520069131884600 70.8837074524370200, -155.8514671140160600 70.8825477406857700, -155.8510822293613700 70.8813814153201000, -155.8508529651921600 70.8802106976656300, -155.8507797298006500 70.8790378153429400, -155.8507829997356300 70.8789201516437400, -155.8506308632237300 70.8787482255502300, -155.8497848394987000 70.8776083519439300, -155.8490913785642500 70.8764574625419100, -155.8485517745447200 70.8752977507906500, -155.8481670283856300 70.8741314245256700, -155.8479378451554000 70.8729607050725600, -155.8478646349449300 70.8717878218505500, -155.8479015251352600 70.8710168708319700, -155.8481350538896000 70.8684664672537100, -155.8470379223622000 70.8674019343518500, -155.8460415436822800 70.8662752475047500, -155.8455072708438500 70.8655549552970000, -155.8445767297322700 70.8646519397352700, -155.8435804886486000 70.8635252519888500, -155.8427351079388600 70.8623853765839200, -155.8420421740071000 70.8612344853832500), (-155.6156531535701500 70.8903593347155800, -155.6181070661881200 70.8902060614606200, -155.6152639611628400 70.8902610442118500, -155.6124169998446400 70.8902772481965300, -155.6088370460928000 70.8902516220147700, -155.6052639343830300 70.8901747920330600, -155.6017044932677300 70.8900469057401800, -155.5981655270174400 70.8898682068523300, -155.5946537976346300 70.8896390380112400, -155.5911760158604000 70.8893598362875000, -155.5877388258860800 70.8890311349789500, -155.5843487936618600 70.8886535627118000, -155.5810123952058500 70.8882278407423300, -155.5777360013153700 70.8877547829569000, -155.5745258676746200 70.8872352922749700, -155.5713881213647000 70.8866703624473200, -155.5701013893676000 70.8864141033282600, -155.5701535896164400 70.8903911320451800, -155.5702954459780200 70.8905799833796100, -155.5709987194153400 70.8917302639405900, -155.5715482339638000 70.8928894963532300, -155.5719429185308200 70.8940554772785300, -155.5721819925049000 70.8952259862903100, -155.5722649756480700 70.8963987966672000, -155.5722642795728000 70.8965517425689300, -155.5722526828150200 70.8974277272079100, -155.5727848377500200 70.8981411800714300, -155.5753658083853300 70.8973346608659700, -155.5780610163028300 70.8965619525720900, -155.5799146782198000 70.8960682706342600, -155.5818113259319000 70.8955924438362800, -155.5837493559480000 70.8951348741751400, -155.5857271288039000 70.8946959483594100, -155.5883094664087300 70.8941405765264700, -155.5903237661288800 70.8937209258800700, -155.5923743840705500 70.8933206160536400, -155.5955153337656000 70.8927570253165400, -155.5987281725671000 70.8922387945847800, -155.6020068003735200 70.8917669068173400, -155.6053449947756600 70.8913422577390400, -155.6087364227476800 70.8909656522431000, -155.6121746487410200 70.8906378043911900, -155.6156531535701500 70.8903593347155800), (-159.1782176278412400 70.7899088474154000, -159.1777912511652700 70.7898057320489300, -159.1681600462491000 70.7898316631008100, -159.1674999996252500 70.7898325426377800, -159.1639380503007400 70.7898069164560900, -159.1603829079448000 70.7897300864743800, -159.1568413678348300 70.7896022001814300, -159.1533201991678400 70.7894235003942600, -159.1498261288727200 70.7891943306539100, -159.1463658353150000 70.7889151271314700, -159.1429459285117500 70.7885864249236100, -159.1397143604293700 70.7882246825231500, -159.1403080559719900 70.7886257001160300, -159.1413200657683800 70.7892370421558300, -159.1428997024592600 70.7902885717602400, -159.1435752605897800 70.7907924052453800, -159.1437100752597500 70.7908826576086200, -159.1445764668304400 70.7914403559876700, -159.1455760129226200 70.7915240486959200, -159.1477320556898000 70.7916650569968600, -159.1496257500283200 70.7918174111446800, -159.1557681106097800 70.7918217314878000, -159.1573799196475500 70.7916920564433100, -159.1608747516684200 70.7914634901480300, -159.1642656004770500 70.7912909660053000, -159.1676754195849200 70.7911654269429400, -159.1682457048753500 70.7911523750821000, -159.1689745424411600 70.7910825283360600, -159.1724357056432700 70.7908040541638000, -159.1759303820814500 70.7905754878685200, -159.1794519446515000 70.7903972638227400, -159.1803069903752700 70.7903675673094300, -159.1782176278412400 70.7899088474154000), (-153.7348266548262400 70.6927055764013000, -153.7351958633983600 70.6927020852331200, -153.7355650989501300 70.6926989268141000, -153.7359343596829100 70.6926961002448600, -153.7363036419994600 70.6926936064248300, -153.7366729432017400 70.6926914453540000, -153.7370422614911500 70.6926896161329500, -153.7374115923710700 70.6926881196610600, -153.7377809349421500 70.6926869559383100, -153.7381502856071600 70.6926861249647200, -153.7385196416681000 70.6926856258410200, -153.7388890004270000 70.6926854594664200, -153.7392583582865800 70.6926856258410200, -153.7396277143475000 70.6926861249647200, -153.7399970650125200 70.6926869559383100, -153.7403664075836200 70.6926881196610600, -153.7407357384635400 70.6926896161329500, -153.7411050567529300 70.6926914453540000, -153.7414743579552000 70.6926936064248300, -153.7418436402717500 70.6926961002448600, -153.7422129010045400 70.6926989268141000, -153.7425821365563400 70.6927020852331200, -153.7429364307716400 70.6927054352077000, -153.7464456744283200 70.6906333207712100, -153.7466381940973600 70.6905199989988100, -153.7468317048193000 70.6904068615874600, -153.7470262038961600 70.6902939112350700, -153.7472216895293000 70.6901811470423800, -153.7482157587502300 70.6896095109702300, -153.7493709666967200 70.6885217090097000, -153.7493783573253000 70.6885147491564100, -153.7546842602703500 70.6835184288324900, -153.7548331601222200 70.6833789161041800, -153.7549834485273000 70.6832395661531300, -153.7551351236869800 70.6831003807780000, -153.7552881838026000 70.6829613626767900, -153.7553934908169000 70.6828665345629500, -153.7554994426451500 70.6827717864887900, -153.7556060374886000 70.6826771166556700, -153.7557132762466700 70.6825825268621800, -153.7558211580199800 70.6824880171083700, -153.7559296819092700 70.6823935882935100, -153.7560388479144800 70.6822992404176500, -153.7561486551363000 70.6822049743801100, -153.7562591026754100 70.6821107910802200, -153.7563701905318400 70.6820166896185900, -153.7564819178062400 70.6819226717939300, -153.7565942835992700 70.6818287367069000, -153.7567072888103000 70.6817348861561100, -153.7568209307413300 70.6816411201416500, -153.7569352102917000 70.6815474386634200, -153.7570501256627400 70.6814538426207800, -153.7571656777538000 70.6813603329130700, -153.7572818656655300 70.6812669095402800, -153.7573986875993300 70.6811735734017400, -153.7575161444544800 70.6810803244974300, -153.7576342344323500 70.6809871628273600, -153.7577529566336200 70.6808940901901800, -153.7578723128569300 70.6808011056865600, -153.7579922995050000 70.6807082111151300, -153.7581129174771200 70.6806154055765900, -153.7582341667733500 70.6805226908695700, -153.7583560455950000 70.6804300660947400, -153.7584785530427500 70.6803375330507600, -153.7586016900159500 70.6802450908383500, -153.7587254547159400 70.6801527412560500, -153.7588498462433800 70.6800604843039700, -153.7589748654976000 70.6799683199820400, -153.7591005097806700 70.6798762491895900, -153.7592267808912000 70.6797842728260000, -153.7593536752319000 70.6796923908912000, -153.7594811946014200 70.6796006033852100, -153.7596093372011000 70.6795089112073400, -153.7597381030310000 70.6794173143576400, -153.7598674911917300 70.6793258146347000, -153.7599974998847000 70.6792344111391900, -153.7601281300091500 70.6791431047705000, -153.7602593806658400 70.6790518964279500, -153.7603912500561000 70.6789607861114200, -153.7605237390792800 70.6788697738210800, -153.7606568459366700 70.6787788613554000, -153.7607905697289800 70.6786880478152300, -153.7609249113555400 70.6785973340997200, -153.7610598681184000 70.6785067211083600, -153.7611954409168200 70.6784162097403600, -153.7613316279522500 70.6783257981970800, -153.7614684292246000 70.6782354891765300, -153.7616058438346000 70.6781452826787100, -153.7617438708829000 70.6780551787035700, -153.7618825094702000 70.6779651781504900, -153.7620217595965000 70.6778752810194500, -153.7621616203624600 70.6777854873104700, -153.7623020908687600 70.6776957988221300, -153.7624431702161000 70.6776062146551600, -153.7625848575051500 70.6775167366081400, -153.7627271536352000 70.6774273646812000, -153.7628700550090000 70.6773380979748800, -153.7630135634251800 70.6772489391872200, -153.7631576770851000 70.6771598874189500, -153.7633023950894300 70.6770709426699000, -153.7705430868939200 70.6726316327437300, -153.7707880109579200 70.6724821078630600, -153.7710346437338000 70.6723328923491700, -153.7712829816242700 70.6721839871013900, -153.7715330201327500 70.6720353948176700, -153.7717847556619000 70.6718871181960300, -153.7720381855138200 70.6717391581357200, -153.7722933051918500 70.6715915173347200, -153.7725501119980400 70.6714441984910300, -153.7727356466327500 70.6713385605261800, -153.7729220482139300 70.6712330907346300, -153.7731093158422200 70.6711277882169000, -153.7732974477190200 70.6710226565704100, -153.7734864429449400 70.6709176939964400, -153.7736762988221000 70.6708129031930000, -153.7738670153504500 70.6707082832607000, -153.7740585907313600 70.6706038359982900, -153.7742510222668400 70.6704995623050000, -153.7744443099569200 70.6703954621808600, -153.7746384529022500 70.6702915374245900, -153.7748334475055600 70.6701877880360600, -153.7750292937668600 70.6700842149146500, -153.7752259907868200 70.6699808189596900, -153.7754235358674500 70.6698776001711600, -153.7756219272101500 70.6697745603477200, -153.7758211648149000 70.6696717003887300, -153.7760212459836900 70.6695690202940900, -153.7762221698172600 70.6694665209632300, -153.7764239345169400 70.6693642032954000, -153.7766265391834000 70.6692620681899400, -153.7768299820180300 70.6691601165462100, -153.7770342603228400 70.6690583483641600, -153.7772393740978000 70.6689567654424300, -153.7774453215443200 70.6688553677810800, -153.7776521008637500 70.6687541562793600, -153.7778597102574000 70.6686531309372900, -153.7780681488259800 70.6685522944528700, -153.7782774138715400 70.6684516459267800, -153.7784875053940300 70.6683511862582900, -153.7786984206955200 70.6682509172461000, -153.7789101579773800 70.6681508379908200, -153.7791227163402500 70.6680509502911600, -153.7791810023013900 70.6680237179202800, -153.7791259296179200 70.6679714879938400, -153.7782138030245600 70.6670416717358300, -153.7773631999516800 70.6661054801838300, -153.7765745178996600 70.6651633603008800, -153.7758481237918600 70.6642157617480400, -153.7751843557733800 70.6632631350856900, -153.7745835196137000 70.6623059344713600, -153.7740458932033800 70.6613446167606900, -153.7735717256546000 70.6603796397086500, -153.7731612310060000 70.6594114637681000, -153.7728145972158700 70.6584405484925900, -153.7725319789676300 70.6574673588315800, -153.7723135030656700 70.6564923561373900, -153.7721592639388500 70.6555160053594000, -153.7720693245396700 70.6545387714472200, -153.7720437190423600 70.6535611193502300, -153.7720824501449200 70.6525835149173500, -153.7721854908676800 70.6516064230980300, -153.7723527809560600 70.6506303088417600, -153.7725842331758000 70.6496556361987000, -153.7728797279171000 70.6486828701184200, -153.7732391140938000 70.6477124710537500, -153.7736622127409000 70.6467449021555500, -153.7741488134169900 70.6457806238767600, -153.7742916905090700 70.6455197458396400, -153.7743936547433300 70.6453365980056600, -153.7724194728803300 70.6411672897386900, -153.7716963118352900 70.6394141702278400, -153.7711824275269800 70.6376529451274000, -153.7708785654933800 70.6358863609668200, -153.7707851457178700 70.6341171732689800, -153.7708555158693300 70.6327668016466500, -153.7710484492265300 70.6314177466317700, -153.7717306380584700 70.6277984871105700, -153.7710852108138000 70.6234116337399800, -153.7699670702240800 70.6175775040986200, -153.7698160587640600 70.6168081511752900, -153.7697149273020300 70.6162170070093100, -153.7695830210395500 70.6153271961932200, -153.7686415963325700 70.6092734476116000, -153.7679602231857200 70.6048294180432700, -153.7675412704132600 70.6039801837385400, -153.7652792146640000 70.6014485957761000, -153.7606036969030500 70.5964806895322600, -153.7600412024395000 70.5958674751039400, -153.7550765859156700 70.5903113546853500, -153.7529666540878000 70.5879500461577400, -153.7505666666183400 70.5862429305668700, -153.7493102111972700 70.5853219897181200, -153.7481166615546600 70.5843918443082400, -153.7469866166390200 70.5834529691792300, -153.7459206457211800 70.5825058436698200, -153.7449515551701000 70.5815828397762700, -153.7440433001581500 70.5806530181223500, -153.7431963051653300 70.5797168202751100, -153.7424109649940000 70.5787746949962400, -153.7416876456683000 70.5778270892488400, -153.7410266844339000 70.5768744553918700, -153.7404283861610600 70.5759172475829900, -153.7398930278409400 70.5749559226777600, -153.7393179428687500 70.5737610825079900, -153.7388400503280400 70.5725615083070500, -153.7384596838673000 70.5713580760144600, -153.7381771015919300 70.5701516624693000, -153.7368340036862800 70.5632066614583100, -153.7366208202946000 70.5617182888680100, -153.7365563469978000 70.5602283775376700, -153.7365948658603500 70.5592507632122200, -153.7366973966675000 70.5582736606010000, -153.7368638818626300 70.5572975355528900, -153.7370942324128600 70.5563228521180000, -153.7373883305070300 70.5553500743465000, -153.7377460259583000 70.5543796644900000, -153.7381671407009700 70.5534120839005800, -153.7386514642936000 70.5524477939305800, -153.7386836213520000 70.5523913560762700, -153.7386471304606600 70.5523880375779400, -153.7382935440118000 70.5523555324819000, -153.7379402255609200 70.5523227054286000, -153.7375871778059800 70.5522895573173000, -153.7372344043442600 70.5522560881480000, -153.7368819069744000 70.5522222970214400, -153.7365296892937000 70.5521881857362100, -153.7361777531008000 70.5521537533930400, -153.7358261010936600 70.5521190008912500, -153.7354747359702600 70.5520839282307900, -153.7351236604285700 70.5520485354116400, -153.7347728771665000 70.5520128242325200, -153.7344223879828000 70.5519767928947200, -153.7340721973740000 70.5519404422976200, -153.7337223062394000 70.5519037733405400, -153.7333727181763800 70.5518667860234200, -153.7330234349835200 70.5518294803462700, -153.7326744602581000 70.5517918563092000, -153.7323257957988000 70.5517539157107200, -153.7319774443036000 70.5517156567522100, -153.7316294084703800 70.5516770812323600, -153.7312816909972000 70.5516381891511600, -153.7309342945820000 70.5515989796092500, -153.7305872219227200 70.5515594544053800, -153.7302404757173500 70.5515196135393700, -153.7298940577645000 70.5514794570114000, -153.7295479707622000 70.5514389857206700, -153.7292022183077000 70.5513981987679100, -153.7288568021996300 70.5513570970524600, -153.7285117251359700 70.5513156814735700, -153.7281669889153800 70.5512739511319800, -153.7278441961527000 70.5512345545311000, -153.7275217064615400 70.5511948827377200, -153.7271995243385400 70.5511549357517500, -153.7268776506830000 70.5511147135732100, -153.7265560881929000 70.5510742180007900, -153.7262348386668400 70.5510334472358500, -153.7259139039035200 70.5509924021776600, -153.7255932866008500 70.5509510837255800, -153.7252729885575500 70.5509094918796200, -153.7249530115722000 70.5508676266397300, -153.7246333583427700 70.5508254880059000, -153.7243140306679500 70.5507830768775600, -153.7239950303463400 70.5507403941539300, -153.7236763600759300 70.5506974389357400, -153.7233580216553400 70.5506542112229300, -153.7230400177825500 70.5506107128142000, -153.7088489479206000 70.5486617416461300, -153.7085899080977600 70.5486260466547600, -153.7083310940047600 70.5485901717990500, -153.7080725047422600 70.5485541161795600, -153.7078141430082800 70.5485178815949900, -153.7075560088027300 70.5484814662467000, -153.7072981048236500 70.5484448719333300, -153.7070404310710200 70.5484080977555500, -153.7067829884441300 70.5483711446127000, -153.7065257778423300 70.5483340125047100, -153.7062688019636000 70.5482967005323800, -153.7060120608079200 70.5482592104942200, -153.7057555552746400 70.5482215414909900, -153.7054992871623500 70.5481836944220000, -153.7052432573704000 70.5481456692872400, -153.7049874667981200 70.5481074651874000, -153.7047319163448300 70.5480690839211200, -153.7044766078091700 70.5480305245890800, -153.7042215420904700 70.5479917871912800, -153.7039667200880300 70.5479528726270400, -153.7037121436005000 70.5479137808963500, -153.7034578126279300 70.5478745119991700, -153.7032037280695500 70.5478350659356000, -153.7029498926234200 70.5477954436049100, -153.7026963062894800 70.5477556441077200, -153.7024429708663700 70.5477156683434700, -153.7021898863541500 70.5476755163121000, -153.7019370554507000 70.5476351889129200, -153.7016844772567800 70.5475946843472500, -153.7014321544703300 70.5475540053131500, -153.7011800879906500 70.5475131500119200, -153.7009282778177200 70.5474721193429000, -153.7006767266496000 70.5474309133060700, -153.7004254344862000 70.5473895328007600, -153.7001744022268500 70.5473479778269700, -153.6999236316702300 70.5473062474853800, -153.6996731237156600 70.5472643426753000, -153.6994228801617600 70.5472222633968000, -153.6991729001092300 70.5471800105490800, -153.6989231871553400 70.5471375832329400, -153.6986737404007800 70.5470949832469500, -153.6984245616441700 70.5470522087924800, -153.6981756526842000 70.5470092607688500, -153.6979270135208300 70.5469661400753700, -153.6976786450534000 70.5469228467120500, -153.6974305499798600 70.5468793797796300, -153.6971827274009300 70.5468357410766200, -153.6969351800145200 70.5467919297038300, -153.6966879078206600 70.5467479456612000, -153.6964409126180000 70.5467037898481000, -153.6961941953058500 70.5466594622644200, -153.6959477567835000 70.5466149629102700, -153.6957015979503500 70.5465702926849200, -153.6954557206050000 70.5465254506890500, -153.6952101247474300 70.5464804378220300, -153.6949648121763200 70.5464352540837500, -153.6947197837909600 70.5463898994743200, -153.6944750404907000 70.5463443739937500, -153.6942305840741800 70.5462986794405500, -153.6939864154407000 70.5462528140162100, -153.6937425345902600 70.5462067786199900, -153.6934989433215400 70.5461605741512600, -153.6932556425338400 70.5461141997105900, -153.6930126340258200 70.5460676561974100, -153.6927699177974500 70.5460209436117200, -153.6924528150453600 70.5459595747746000, -153.6921362186115800 70.5458979172551600, -153.6918201293954400 70.5458359719526100, -153.6915045500949000 70.5457737388670100, -153.6911894834079000 70.5457112179983600, -153.6908749302338000 70.5456484111453000, -153.6905608950692000 70.5455853183078700, -153.6902473797128000 70.5455219385866600, -153.6899343850638000 70.5454582746796700, -153.6896219147195700 70.5453943256876500, -153.6893099713780400 70.5453300925098000, -153.6889985559385800 70.5452655751462300, -153.6886876719984200 70.5452007744962100, -153.6883773204569400 70.5451356905597300, -153.6880675058107200 70.5450703251354400, -153.6877582280597500 70.5450046773240700, -153.6874494917006500 70.5449387480248300, -153.6871412967334200 70.5448725381371600, -153.6868336476546800 70.5448060476610400, -153.6865265453637600 70.5447392765963700, -153.6862199925586000 70.5446722267419100, -153.6859139910378400 70.5446048980976500, -153.6856085434994600 70.5445372915627900, -153.6853036526414400 70.5444694062381400, -153.6849993211617000 70.5444012439223200, -153.6846955490603000 70.5443328046153000, -153.6843923408338200 70.5442640883171000, -153.6840896982809300 70.5441950968262900, -153.6837876232002300 70.5441258301430000, -153.6834861173903700 70.5440562882671400, -153.6831851844486600 70.5439864720980800, -153.6828848252744400 70.5439163825350900, -153.6825850434649700 70.5438460186788900, -153.6822858399195600 70.5437753832274000, -153.6819872173361700 70.5437044752813400, -153.6816891784128200 70.5436332948407300, -153.6813917249481300 70.5435618446035200, -153.6810948596400400 70.5434901227710000, -153.6807985833878800 70.5434181311418900, -153.6805028997889600 70.5433458697161800, -153.6802078106419200 70.5432733393931800, -153.6799133177454000 70.5432005410721700, -153.6796194246966500 70.5431274747531900, -153.6793261314957400 70.5430541404363100, -153.6790334417399000 70.5429805399200500, -153.6787413572278400 70.5429066732044700, -153.6784498806574400 70.5428325402895700, -153.6781590129280600 70.5427581420746600, -153.6778687576370100 70.5426834794590700, -153.6775791165829300 70.5426085533421200, -153.6772900915644600 70.5425333628244900, -153.6770016843802000 70.5424579097048100, -153.6767138986275000 70.5423821948824600, -153.6764267352056400 70.5423062174580200, -153.6761401959133000 70.5422299792302300, -153.6758542834484000 70.5421534801990300, -153.6755690005089400 70.5420767212637500, -153.6752843488935700 70.5419997024243900, -153.6750003304009000 70.5419224254795800, -153.6747169468296000 70.5418448895300700, -153.6744342017769600 70.5417670954751100, -153.6741520952429600 70.5416890442140800, -153.6738706308249200 70.5416107375455700, -153.6735898103214600 70.5415321736709300, -153.6731835074129200 70.5414177295446600, -153.6727785714738600 70.5413027485231000, -153.6723750070009400 70.5411872342035600, -153.6719728220880400 70.5410711874853900, -153.6678696688501000 70.5398822090967300, -153.6651507062400700 70.5392774563895800, -153.6554225885815600 70.5373305158906300, -153.6553926231710000 70.5373245183119500, -153.6429074071510900 70.5348257852818400, -153.6426220612591000 70.5347685002661300, -153.6423371443437000 70.5347109778294300, -153.6420526573042500 70.5346532206696700, -153.6417686019394000 70.5345952278875100, -153.6414849800477500 70.5345370003823300, -153.6412017934280000 70.5344785381540800, -153.6409190438787400 70.5344198412027500, -153.6406367322993300 70.5343609104277200, -153.6403548622870400 70.5343017458289400, -153.6400734338418800 70.5342423483057800, -153.6397924496618000 70.5341827178581900, -153.6395119106461200 70.5341228553855300, -153.6392318194928400 70.5340627599884400, -153.6389521771012600 70.5340024334656200, -153.6386729852700300 70.5339418749176700, -153.6383942466971000 70.5338810861432500, -153.6381159622818000 70.5338200662431000, -153.6378381338227800 70.5337588161165200, -153.6375607631187000 70.5336973366628400, -153.6372838519681600 70.5336356269826300, -153.6370074012705200 70.5335736879753800, -153.6367314137237400 70.5335115214396000, -153.6364558911264500 70.5334491255767400, -153.6361808343779700 70.5333865021854100, -153.6359062461763000 70.5333236512655600, -153.6356321265214000 70.5332605728172600, -153.6353584790105600 70.5331972677397500, -153.6350853045431400 70.5331337360331600, -153.6348126040184400 70.5330699785967000, -153.6345403801344000 70.5330059954304100, -153.6342686346897000 70.5329417865342500, -153.6339973685836600 70.5328773537069700, -153.6337265836149000 70.5328126960491200, -153.6334562824814300 70.5327478144601500, -153.6331864651832000 70.5326827089399400, -153.6329171344182000 70.5326173803878800, -153.6326482919850500 70.5325518288038900, -153.6323799396824400 70.5324860550874200, -153.6321120775103300 70.5324200601377200, -153.6318447090660300 70.5323538421561700, -153.6315778352488600 70.5322874038406600, -153.6313114578574600 70.5322207442919800, -153.6310455777911600 70.5321538644094000, -153.6307801977479000 70.5320867650921700, -153.6305153186270300 70.5320194454411100, -153.6302509422271800 70.5319519072547800, -153.6299870712463200 70.5318841505331900, -153.6297237047851000 70.5318161752763300, -153.6294608473402000 70.5317479814842200, -153.6291984980122400 70.5316795709554800, -153.6289366603985200 70.5316109427908500, -153.6286753353983800 70.5315420987888600, -153.6284145239111200 70.5314730380503100, -153.6281542286347000 70.5314037623737700, -153.6278944513678000 70.5313342699606700, -153.6276351921104000 70.5312645635088400, -153.6273764535604600 70.5311946430184100, -153.6271182366173000 70.5311245075900000, -153.6268605439789000 70.5310541590222900, -153.6266033765445500 70.5309835973152400, -153.6263467361129600 70.5309128224688500, -153.6260906244827000 70.5308418362817500, -153.6258350425531500 70.5307706369553700, -153.6255799921229000 70.5306992271876500, -153.6252999666201300 70.5306204079055300, -153.6250205895285600 70.5305413341153600, -153.6247418617474800 70.5304620058169600, -153.6244637850756000 70.5303824248090900, -153.6241863631101400 70.5303025892931100, -153.6239095967504500 70.5302225019669300, -153.6236334886945000 70.5301421628306000, -153.6233580407409500 70.5300615727834400, -153.6230832546884200 70.5299807318253900, -153.6228091323355600 70.5298996399564500, -153.6225356763803200 70.5298182998747000, -153.6222628895207000 70.5297367097813900, -153.6219907717566900 70.5296548723745200, -153.6217193266855400 70.5295727867547800, -153.6214485561059500 70.5294904547207600, -153.6211784618165300 70.5294078753731800, -153.6209090456159500 70.5293250505107500, -153.6206403093028100 70.5292419810326700, -153.6203722555751000 70.5291586669390000, -153.6201048871308000 70.5290751082297300, -153.6198382039699200 70.5289913067035200, -153.6195722096897000 70.5289072623603500, -153.6193069051895000 70.5288229760995500, -153.6190422931672700 70.5287384479211100, -153.6187783754216700 70.5286536796236900, -153.6185151537513000 70.5285686712072700, -153.6182526299548700 70.5284834226718500, -153.6179908067303200 70.5283979358161400, -153.6177296849769500 70.5283122106400800, -153.6174692673927500 70.5282262471436600, -153.6172095557763600 70.5281400471255300, -153.6169505528257300 70.5280536114850600, -153.6166922585408700 70.5279669393228200, -153.6164346765190800 70.5278800324376200, -153.6161778076596500 70.5277928908292900, -153.6159216546606000 70.5277055162965800, -153.6156662193205300 70.5276179079401700, -153.6154115025388000 70.5275300675586400, -153.6151575079126400 70.5274419951520000, -153.6149042354420800 70.5273536916196200, -153.6146516887244200 70.5272651578608200, -153.6143999028332000 70.5271761402667000, -153.6143975178311500 70.5271755620026400, -153.6141161091710800 70.5271379289723100, -153.6137764451268000 70.5270921453862300, -153.6134371578985000 70.5270460524334300, -153.6130982501840700 70.5269996501138000, -153.6127597246815200 70.5269529393267500, -153.6124215831894700 70.5269059200721800, -153.6120838293052500 70.5268585923502100, -153.6117464657267800 70.5268109570600900, -153.6114094933534000 70.5267630142017800, -153.6110729166817400 70.5267147646747000, -153.6107367366110700 70.5266662084787900, -153.6104009567387400 70.5266173456140600, -153.6100655788633600 70.5265681778791400, -153.6097306056828700 70.5265187034754600, -153.6093960398953000 70.5264689242015400, -153.6090618841985800 70.5264188400574900, -153.6087281403913500 70.5263684519425700, -153.6083948120708800 70.5263177589574800, -153.6080619001365600 70.5262667629008300, -153.6077294090849300 70.5262154628733800, -153.6073973389160300 70.5261638606737000, -153.6070656941264500 70.5261119554024800, -153.6067344774141600 70.5260597488583600, -153.6064036887791800 70.5260072392427400, -153.6060733336174200 70.5259544292535500, -153.6057434119289000 70.5259013179915000, -153.6054139282102000 70.5258479063558600, -153.6050848842599800 70.5257941943466400, -153.6047562818769000 70.5257401819639000, -153.6044281237588800 70.5256858710062000, -153.6041004126039400 70.5256312614736200, -153.6037731511100000 70.5255763524667700, -153.6034463410757400 70.5255211457843000, -153.6031199851991300 70.5254656414262500, -153.6027940861781000 70.5254098393926400, -153.6027186321591000 70.5253968324979000, -153.6024367468583600 70.5253729644907700, -153.6021412179428300 70.5253477016351600, -153.6018458625964600 70.5253222148484200, -153.6015506826178700 70.5252965041304400, -153.6012556789064300 70.5252705685819000, -153.6009608532607400 70.5252444100015600, -153.6006662074794600 70.5252180265907200, -153.6003717424619000 70.5251914201479600, -153.6000774600067600 70.5251645897740800, -153.5997833619125900 70.5251375363682800, -153.5994894490788000 70.5251102599306100, -153.5991957242032700 70.5250827604610900, -153.5989021872861000 70.5250550370603800, -153.5986088410251700 70.5250270915271400, -153.5983156872191600 70.5249989229619700, -153.5980227258680800 70.5249705322643200, -153.5977299596698600 70.5249419185347500, -153.5974373895239000 70.5249130835720200, -153.5971450181280600 70.5248840255773600, -153.5968528454824000 70.5248547454501700, -153.5965608733855600 70.5248252440898100, -153.5962691045355000 70.5247955214961700, -153.5959775389322600 70.5247655767700000, -153.5956861792737000 70.5247354108105900, -153.5953950264592700 70.5247050236180300, -153.5951040822875500 70.5246744160915000, -153.5948133476578300 70.5246435873317500, -153.5945228252681400 70.5246125373387800, -153.5942325151184500 70.5245812670119100, -153.5939424199067000 70.5245497763511400, -153.5936525405323000 70.5245180662558400, -153.5933628778944600 70.5244861349272600, -153.5930734355905500 70.5244539841641000, -153.5927842127212000 70.5244216139663500, -153.5924952128837300 70.5243890243340800, -153.5922064360781300 70.5243562143678600, -153.5919178841030300 70.5243231858663600, -153.5916295587571000 70.5242899388296700, -153.5913414618389700 70.5242564723583900, -153.5910535942479400 70.5242227873517900, -153.5907659568834000 70.5241888838099800, -153.5904785533425400 70.5241547617329200, -153.5901913827261000 70.5241204211205900, -153.5899044477320400 70.5240858628723100, -153.5896177501590200 70.5240510869881500, -153.5893539610164600 70.5240188723731200, -153.5890903760200000 70.5239864724977700, -153.5888269951696500 70.5239538891607400, -153.5885638202640600 70.5239211205633300, -153.5883008513032200 70.5238881694035600, -153.5880380909851000 70.5238550338827400, -153.5877755402089800 70.5238217140009700, -153.5875131989749300 70.5237882115567900, -153.5872510690815300 70.5237545256508700, -153.5869891523274800 70.5237206562833300, -153.5867274487127600 70.5236866034540500, -153.5864659609353300 70.5236523680624100, -153.5862046880958500 70.5236179501083600, -153.5859436337916300 70.5235833486926300, -153.5856827962240300 70.5235485656138500, -153.5854221789903400 70.5235135999727200, -153.5709523903405200 70.5215656252534600, -153.5706784640398400 70.5215286172519300, -153.5704047841534200 70.5214914069029500, -153.5701313506812700 70.5214539960051600, -153.5698581663213000 70.5214163827599200, -153.5695852310735200 70.5213785698651300, -153.5693125467366300 70.5213405555222700, -153.5690401151092000 70.5213023406306000, -153.5687679370906000 70.5212639260893800, -153.5684960144794500 70.5212253109993400, -153.5682243472758000 70.5211864953605500, -153.5679529390768600 70.5211474800722200, -153.5676817889833500 70.5211082660337000, -153.5674108987939200 70.5210688514463900, -153.5671402703072000 70.5210292381089000, -153.5668699053218500 70.5209894260212300, -153.5665998047371700 70.5209494151834000, -153.5663299694525000 70.5209092055954400, -153.5660604003671500 70.5208687972572600, -153.5657911001791000 70.5208281901689100, -153.5655220697876500 70.5207873861290300, -153.5652533091928300 70.5207463833389700, -153.5649848210926000 70.5207051835973900, -153.5647166063862400 70.5206637860050000, -153.5644486668724400 70.5206221905617100, -153.5641810034505300 70.5205803990662000, -153.5639136170197800 70.5205384106192200, -153.5636465084795600 70.5204962252206500, -153.5633796814271400 70.5204538428706100, -153.5631131340638500 70.5204112653676700, -153.5628468699870300 70.5203684909132000, -153.5625808900959700 70.5203255213058400, -153.5623151943907000 70.5202823556462600, -153.5620497855691200 70.5202389948337900, -153.5617846645306200 70.5201954388684800, -153.5615198321745000 70.5201516877502300, -153.5612552902993900 70.5201077414791400, -153.5609910407039300 70.5200636009544700, -153.5607270824888200 70.5200192661762300, -153.5604634192513600 70.5199747380438000, -153.5602000518908600 70.5199300147584200, -153.5599369804073000 70.5198850990181500, -153.5596742074986600 70.5198399890243200, -153.5594117331649200 70.5197946856762300, -153.5591495592047700 70.5197491898732700, -153.5588876883161300 70.5197035007160500, -153.5586261195997200 70.5196576191039000, -153.5583648548541500 70.5196115450368100, -153.5581038967774000 70.5195652794141700, -153.5578432444701200 70.5195188213365900, -153.5575829006303400 70.5194721717034000, -153.5573228670566300 70.5194253305146500, -153.5570631428497300 70.5193782986696100, -153.5568037316069000 70.5193310752689500, -153.5565446333281400 70.5192836612120600, -153.5562858498121000 70.5192360564988700, -153.5560273810587500 70.5191882611293900, -153.5557692297661000 70.5191402769023000, -153.5555113968334800 70.5190921020189300, -153.5552538840594800 70.5190437373786400, -153.5549966905448000 70.5189951838806900, -153.5547398198867500 70.5189464406257700, -153.5544832729846400 70.5188975094125700, -153.5542270498384600 70.5188483884424500, -153.5539711522468500 70.5187990795139400, -153.5536544757734000 70.5187377106768700, -153.5533383038196300 70.5186760531573800, -153.5530226381842000 70.5186141078548300, -153.5527074824643000 70.5185518747692900, -153.5523928375593800 70.5184893539006300, -153.5520787070666400 70.5184265470475700, -153.5517650927847600 70.5183634533107700, -153.5514519974117300 70.5183000744888800, -153.5511394227461300 70.5182364105819500, -153.5508273714859800 70.5181724615898700, -153.5505158463292000 70.5181082275127600, -153.5502048490745000 70.5180437101491900, -153.5498943815204600 70.5179789103984300, -153.5495844463651000 70.5179138264619500, -153.5492750472056400 70.5178484610377200, -153.5489661849414600 70.5177828132262900, -153.5486578613711700 70.5177168839271100, -153.5483500800921000 70.5176506731401100, -153.5480428438021600 70.5175841826639400, -153.5477361525014100 70.5175174124986500, -153.5474300106864000 70.5174503626441800, -153.5471244201558200 70.5173830339998600, -153.5468193827083200 70.5173154265657400, -153.5465149001425000 70.5172475421404100, -153.5462195744737500 70.5171813070717200, -153.5414819900018000 70.5199238849793900, -153.5413000661451000 70.5200288457546700, -153.5411172897311200 70.5201336419540900, -153.5409336634577600 70.5202382726781700, -153.5407491864257800 70.5203427370277600, -153.5405638622324300 70.5204470341033700, -153.5403776908777000 70.5205511630058500, -153.5401906741602400 70.5206551237350300, -153.5400028129794000 70.5207589144923800, -153.5398141091338000 70.5208625352778400, -153.5396245644220700 70.5209659851921000, -153.5394341788442600 70.5210692633359000, -153.5392429550982700 70.5211723688098000, -153.5390508949827800 70.5212753016139100, -153.5388579975984800 70.5213780599495400, -153.5386642665426400 70.5214806438166900, -153.5384697027146000 70.5215830514167700, -153.5382743070136400 70.5216852836489900, -153.5380780812384400 70.5217873387147700, -153.5378810262883000 70.5218892157148000, -153.5376831448612000 70.5219909146490500, -153.5374844369571600 70.5220924337189100, -153.5372849043748100 70.5221937729243100, -153.5370845498121000 70.5222949322653700, -153.5368833732690300 70.5223959090440100, -153.5366813765442700 70.5224967041596100, -153.5364785614364400 70.5225973158135300, -153.5362749288448500 70.5226977440057100, -153.5360704814675000 70.5227979878369500, -153.5358652193043800 70.5228980473070800, -153.5356591450534700 70.5229979197182500, -153.5354522596140600 70.5230976059697800, -153.5352445638855000 70.5231971042630300, -153.5350360605657200 70.5232964154972100, -153.5348267505540600 70.5233955369745300, -153.5346166356492000 70.5234944686948200, -153.5344057176497200 70.5235932106581900, -153.5341939974550000 70.5236917619653200, -153.5339814759643000 70.5237901208174700, -153.5337681567749800 70.5238882881140500, -153.5335540398870000 70.5239862611570600, -153.5333391270990000 70.5240840408458800, -153.5331234202096500 70.5241816253817400, -153.5329069210175700 70.5242790147647700, -153.5326896304220800 70.5243762089949100, -153.5324715502218300 70.5244732053741900, -153.5322526822154700 70.5245700048019400, -153.5320330282016500 70.5246666054795200, -153.5318125890797000 70.5247630074069300, -153.5315913675475500 70.5248592105841700, -153.5313693645045400 70.5249552123132700, -153.5311465817493000 70.5250510134935100, -153.5309230201812000 70.5251466132256700, -153.5306986824981800 70.5252420097110100, -153.5304735695995400 70.5253372038489500, -153.5302476841832500 70.5254321938407400, -153.5300210262493300 70.5255269796864500, -153.5297935993950800 70.5256215595873600, -153.5295654036204400 70.5257159335435500, -153.5293364407241400 70.5258101015550100, -153.5291067134040800 70.5259040618230400, -153.5288762225596000 70.5259978143477000, -153.5286449708886800 70.5260913573303600, -153.5284129583913000 70.5261846916702700, -153.5281801877654300 70.5262778155687900, -153.5279448100049500 70.5263714637720800, -153.5277086642234400 70.5264648970374400, -153.5274717540182000 70.5265581144654400, -153.5272340811878600 70.5266511160562000, -153.5269956457324300 70.5267439009103300, -153.5267564512491800 70.5268364681285800, -153.5265164986374800 70.5269288168115000, -153.5262757896959200 70.5270209460598500, -153.5260343262231400 70.5271128567729900, -153.5257921100178500 70.5272045462528500, -153.5255491437779400 70.5272960153988600, -153.5253054284027600 70.5273872624122800, -153.5250609647916600 70.5274782863938300, -153.5248157565419000 70.5275690882429000, -153.5245698054521300 70.5276596661607300, -153.5243231115223600 70.5277500192480600, -153.5240756783498500 70.5278401475048300, -153.5238275068339500 70.5279300500318400, -153.5235785987733000 70.5280197259296500, -153.5233289568658400 70.5281091751983200, -153.5230785829102400 70.5281983960392200, -153.5228274778058300 70.5282873893515900, -153.5225756433512200 70.5283761524375400, -153.5223230822444000 70.5284646861963400, -153.5220697962840300 70.5285529897287200, -153.5218157872687400 70.5286410621353600, -153.5215610569971400 70.5287289025168900, -153.5213056081672700 70.5288165108733600, -153.5210494407790500 70.5289038854060700, -153.5207925584298000 70.5289910270143400, -153.5205349620188400 70.5290779338996000, -153.5202766533448400 70.5291646060617800, -153.5200176360050600 70.5292510417022500, -153.5197579099995300 70.5293372417203800, -153.5194974780261500 70.5294232052168000, -153.5192363427829600 70.5295089303928600, -153.5189745051692400 70.5295944172486300, -153.5187119669836600 70.5296796657839900, -153.5184487309241800 70.5297646742004100, -153.5181847987894000 70.5298494424978300, -153.5179201723780000 70.5299339706762700, -153.5176548534886600 70.5300182569370700, -153.5173888439199700 70.5301023012802400, -153.5171221463699300 70.5301861028064500, -153.5168547626371700 70.5302696615157200, -153.5165866945203000 70.5303529756093900, -153.5163179438180200 70.5304360450874700, -153.5160485132282700 70.5305188699499600, -153.5157784036504000 70.5306014492974800, -153.5155076186816200 70.5306837813315000, -153.5152361583220000 70.5307658669512400, -153.5149640261688500 70.5308477043581100, -153.5146912240207400 70.5309292944514300, -153.5144177527770400 70.5310106345332300, -153.5141436160350300 70.5310917264021100, -153.5138688146940000 70.5311725673601600, -153.5135933514520000 70.5312531574073200, -153.5133172281075500 70.5313334965437100, -153.5130404464594000 70.5314135838698300, -153.5127630092054900 70.5314934193858700, -153.5124849181444200 70.5315730003937300, -153.5122061750748800 70.5316523286920800, -153.5119267826948400 70.5317314024823100, -153.5116467419035800 70.5318102217643700, -153.5114339569115600 70.5318698198363400, -153.5112208013988500 70.5319292704195400, -153.5110072762647600 70.5319885744132200, -153.5107933824086500 70.5320477309181200, -153.5105791216291200 70.5321067381355000, -153.5103644939262300 70.5321655987634100, -153.5101495010985700 70.5322243101038600, -153.5099341422468300 70.5322828730562000, -153.5097184200690000 70.5323412867210800, -153.5095023354644000 70.5323995519978000, -153.5092858884329700 70.5324576670877300, -153.5090690798741000 70.5325156328901800, -153.5088519115864200 70.5325734485059000, -153.5086343844692500 70.5326311139348300, -153.5084164985225600 70.5326886291769600, -153.5081982546457200 70.5327459933329800, -153.4965234806740600 70.5358072954703600, -153.4962900886166600 70.5358683387528900, -153.4960562918643300 70.5359292093655800, -153.4958220913164300 70.5359899073084200, -153.4955874878722300 70.5360504334808000, -153.4953524824311000 70.5361107860839500, -153.4951170776909600 70.5361709642186800, -153.4948812736518300 70.5362309696835700, -153.4946450712130300 70.5362908015793000, -153.4944084721732300 70.5363504581072200, -153.4941714774317000 70.5364099401666600, -153.4939340878878200 70.5364692477576200, -153.4936963053402000 70.5365283808801600, -153.4934581306881400 70.5365873377355100, -153.4932195648310400 70.5366461183237400, -153.4929806086681200 70.5367047235442300, -153.4927412648974300 70.5367631524975400, -153.4925015326196000 70.5368214042844100, -153.4922614145326300 70.5368794798042100, -153.4920209106364800 70.5369373781575200, -153.4917800236291600 70.5369950984451200, -153.4915387535106400 70.5370526415662200, -153.4912971011802400 70.5371100066215600, -153.4910550684366200 70.5371671936111400, -153.4908126570784400 70.5372242016356400, -153.4905698671056500 70.5372810306950600, -153.4903267003169300 70.5373376807893900, -153.4900831576116000 70.5373941510193300, -153.4898392407883000 70.5374504422841300, -153.4895949498470300 70.5375065527852600, -153.4893502874857600 70.5375624834219400, -153.4891052537044500 70.5376182341942100, -153.4888598503018200 70.5376738033034500, -153.4886140790764600 70.5377291916489000, -153.4883679391290600 70.5377843983313800, -153.4881214340569000 70.5378394242500800, -153.4878745638600000 70.5378942676064200, -153.4876273294377000 70.5379489284004000, -153.4873797325885500 70.5380034075312800, -153.4871317742119700 70.5380577040998000, -153.4868834561066000 70.5381118172066400, -153.4866347791716800 70.5381657468518000, -153.4863857443066300 70.5382194939345500, -153.4861363533100300 70.5382730566563000, -153.4858866061819000 70.5383264359163600, -153.4856365056202200 70.5383796299160500, -153.4853860525242600 70.5384326404540600, -153.4851352477934000 70.5384854657317000, -153.4848840923269800 70.5385381057490100, -153.4846325879235600 70.5385905605060100, -153.4843807354825200 70.5386428300026900, -153.4841285359031800 70.5386949142389300, -153.4838759918834800 70.5387468114162700, -153.4836231025241200 70.5387985224339200, -153.4833698705230600 70.5388500472919300, -153.4831162976789800 70.5389013850909200, -153.4828623830924800 70.5389525358309000, -153.4826081303609000 70.5390034995119200, -153.4823535385849000 70.5390542752346600, -153.4820986104625000 70.5391048629990700, -153.4818433468929000 70.5391552628052000, -153.4815877487755500 70.5392054746529900, -153.4813318179090500 70.5392554976431800, -153.4810755551927000 70.5393053317757200, -153.4808189624251300 70.5393549770506000, -153.4803935444265000 70.5394367299211900, -153.4799672307031000 70.5395179638829900, -153.4795400257515600 70.5395986762379700, -153.4791119358671000 70.5396788669861500, -153.4786829673450400 70.5397585352282600, -153.4782531246819400 70.5398376791656000, -153.4778224150723800 70.5399162978989100, -153.4773908430129600 70.5399943905287600, -153.4634826863768400 70.5424992452440200, -153.4632143781410000 70.5425474201273900, -153.4629457416526200 70.5425953917640000, -153.4626767787103500 70.5426431601537700, -153.4624074893141600 70.5426907243974600, -153.4621378770613400 70.5427380844950600, -153.4618679419519400 70.5427852404465600, -153.4615976848852200 70.5428321922519200, -153.4613271085591700 70.5428789390118700, -153.4610562138731500 70.5429254807264100, -153.4607850017264000 70.5429718173955400, -153.4605134739176700 70.5430179481198800, -153.4602416322455000 70.5430638737988100, -153.4599694776092600 70.5431095935329600, -153.4596970118076000 70.5431551064230600, -153.4594242357398500 70.5432004133684200, -153.4591511512046200 70.5432455134697400, -153.4588777591012800 70.5432904067269500, -153.4586040612284000 70.5433350931401200, -153.4583300593847000 70.5433795718098500, -153.4580557535701400 70.5434238427362200, -153.4577811473820000 70.5434679068184800, -153.4575062408203200 70.5435117622581000, -153.4572310347844000 70.5435554090549300, -153.4569555319722000 70.5435988481083900, -153.4566797332830400 70.5436420776198400, -153.4564036405155600 70.5436850984885400, -153.4561272536698000 70.5437279107145500, -153.4558505763429800 70.5437705133985600, -153.4555736085352000 70.5438129065404400, -153.4552963520449700 70.5438550892410500, -153.4550188077717200 70.5438970623996000, -153.4547409775140600 70.5439388251167500, -153.4544628639699800 70.5439803773925900, -153.4541844662401000 70.5440217192270300, -153.4539057870224200 70.5440628497207700, -153.4536268281156000 70.5441037697731900, -153.4533475904189300 70.5441444784849500, -153.4530680757310700 70.5441849749566900, -153.4527882849513700 70.5442252600877300, -153.4525082198784000 70.5442653329788000, -153.4522278814115700 70.5443051945291600, -153.4519472722488000 70.5443448429402300, -153.4516663932894000 70.5443842791112300, -153.4513852445333800 70.5444235021429900, -153.4511038295780500 70.5444625120353500, -153.4508221484233800 70.5445013096877500, -153.4505402037673600 70.5445398933014800, -153.4502579956099700 70.5445782637759200, -153.4499755266492000 70.5446164202117000, -153.4496927977843700 70.5446543626088100, -153.4494098108140700 70.5446920909672600, -153.4491265666377200 70.5447296043877800, -153.4488430670538700 70.5447669037696400, -153.4485593129619000 70.5448039882135200, -153.4482753070597300 70.5448408586187800, -153.4479910502467400 70.5448775122874300, -153.4477065434222000 70.5449139519174100, -153.4474217883848000 70.5449501757100800, -153.4471367869331300 70.5449861836655100, -153.4468515399665600 70.5450219757835800, -153.4465660501830400 70.5450575520644000, -153.4462803175825600 70.5450929116086600, -153.4459943439637800 70.5451280553155600, -153.4457081311253100 70.5451629822858900, -153.4453438004760000 70.5452070868376500, -153.4449790876147700 70.5452508397544900, -153.4446139961389700 70.5452942419357800, -153.4442485296459000 70.5453372924821500, -153.4438826908334800 70.5453799913935300, -153.4435164823997000 70.5454223368714100, -153.4431499079418600 70.5454643298150500, -153.4427829701579000 70.5455059702243800, -153.4424156726451500 70.5455472563008900, -153.4420480181015300 70.5455881889438400, -153.4416800092250200 70.5456287672538500, -153.4413116496129000 70.5456689912310300, -153.4409429419631600 70.5457088608752700, -153.4405738889737700 70.5457483743880400, -153.4402044951413000 70.5457875326685600, -153.4398347622644400 70.5458263357168700, -153.4394646939404400 70.5458647817343400, -153.4390942937666000 70.5459028716202900, -153.4387235644409200 70.5459406044753900, -153.4383525077620000 70.5459779802996000, -153.4379811291257700 70.5460149990930200, -153.4376094294316000 70.5460516599562200, -153.4372374140753800 70.5460879619898800, -153.4368650839564300 70.5461239060934400, -153.4364924435713800 70.5461594922668400, -153.4361194956182000 70.5461947187113800, -153.4357462427948300 70.5462295863263800, -153.4353726895979300 70.5462640942126300, -153.4349988369267500 70.5462982423700300, -153.4346246901773000 70.5463320298993000, -153.4342502511481400 70.5463654568004600, -153.4340959733504500 70.5463790707376000, -153.4340067920797700 70.5463951668035600, -153.4336536112251400 70.5464584574919000, -153.4332998637976600 70.5465213956459300, -153.4329455533945500 70.5465839812657700, -153.4325906809151500 70.5466462143513700, -153.4322352517554300 70.5467080931040900, -153.4318792686133300 70.5467696175238600, -153.4315227341868000 70.5468307876108200, -153.4311656511738400 70.5468916024655600, -153.4308080240710000 70.5469520611887300, -153.4304498555763400 70.5470121628810600, -153.4300911483877600 70.5470719084418600, -153.4297319070018700 70.5471312960725100, -153.4293721323180400 70.5471903257729900, -153.4284890592226700 70.5473346210959600, -153.4279880271257400 70.5474659562889300, -153.4163529582224000 70.5505168532702100, -153.4074588673328200 70.5528484598886000, -153.4073189130374000 70.5529234327702900, -153.4071251774849100 70.5530265895055800, -153.4069306001670400 70.5531295699737500, -153.4067351819830400 70.5532323741748000, -153.4065389247315600 70.5533350012094000, -153.4063418302112600 70.5534374492789300, -153.4061438993214800 70.5535397192827000, -153.4059451329614800 70.5536418094220000, -153.4057455338293000 70.5537437187976500, -153.4055451028242200 70.5538454474095100, -153.4053438417448700 70.5539469934590200, -153.4051417514906200 70.5540483578454900, -153.4049388347593800 70.5541495378709600, -153.4047350906518800 70.5542505344346900, -153.4045305227653800 70.5543513457381000, -153.4043251328985500 70.5544519708818100, -153.4041189201520000 70.5545524098658900, -153.4039118881231000 70.5546526626902700, -153.4037040377111500 70.5547527266570600, -153.4034953707147500 70.5548526017662400, -153.4032858880332800 70.5549522880177200, -153.4030755914653500 70.5550517845123300, -153.4028644828096000 70.5551510894512700, -153.4026525638647000 70.5552502028346600, -153.4024398355299500 70.5553491246624300, -153.4022262996040200 70.5554478531359500, -153.4020119578855200 70.5555463873559500, -153.4017968112737800 70.5556447273223700, -153.4015808624668000 70.5557428721359100, -153.4013641123638600 70.5558408208972300, -153.4011465618643200 70.5559385727070200, -153.4009282136661000 70.5560361275652800, -153.4007090695678800 70.5561334845726800, -153.4004891295696500 70.5562306419306500, -153.4002683972687000 70.5563275996390800, -153.4000468726650000 70.5564243576980000, -153.3998245584565700 70.5565209143088000, -153.3996014564420400 70.5566172694714700, -153.3993775666213800 70.5567134222866900, -153.3991528925919000 70.5568093718550800, -153.3989274352529200 70.5569051172773800, -153.3987011955037500 70.5570006585535900, -153.3984741760423600 70.5570959947843900, -153.3982463777681000 70.5571911241710800, -153.3980178033789000 70.5572860476130500, -153.3977884537741000 70.5573807633116400, -153.3975583307523300 70.5574752712668100, -153.3973274361122500 70.5575695696799700, -153.3970957707532000 70.5576636594503800, -153.3968633382724200 70.5577575387794700, -153.3966301386699300 70.5578512067678500, -153.3963961746437000 70.5579446634155300, -153.3961604281612000 70.5580383116188200, -153.3959239145570000 70.5581317448841800, -153.3956866347303700 70.5582249623122400, -153.3954485904800400 70.5583179639030000, -153.3952097827052800 70.5584107487571300, -153.3949702150033800 70.5585033150760000, -153.3947298873743800 70.5585956637589200, -153.3944888034155300 70.5586877939066400, -153.3942469631268200 70.5587797037204000, -153.3940043683069200 70.5588713932003200, -153.3937610225531200 70.5589628623462800, -153.3935169267647300 70.5590541093596900, -153.3932720818410800 70.5591451333413000, -153.3930264904801000 70.5592359351903200, -153.3927801553798200 70.5593265131081500, -153.3925330765402200 70.5594168661954800, -153.3922852566592500 70.5595069944523000, -153.3920366975355300 70.5595968969792600, -153.3917874009677600 70.5596865728770700, -153.3915373696538600 70.5597760212464200, -153.3912866035938400 70.5598652420873100, -153.3910351063850300 70.5599542353996900, -153.3907828798260200 70.5600429984856400, -153.3905299239168300 70.5601315322445000, -153.3902762422547400 70.5602198357768800, -153.3900218366384300 70.5603079081834600, -153.3897667088665000 70.5603957485649900, -153.3895108598382800 70.5604833560221300, -153.3892542931510800 70.5605707314541600, -153.3889970088049000 70.5606578721631200, -153.3887390103970000 70.5607447790483800, -153.3884802988267000 70.5608314512105600, -153.3882208767920000 70.5609178877503500, -153.3879607451922000 70.5610040868691600, -153.3876999067253000 70.5610900503655800, -153.3874383631899000 70.5611757755416400, -153.3871761163846400 70.5612612623974100, -153.3869131681081800 70.5613465109327600, -153.3866495210585300 70.5614315193491800, -153.3863851761349500 70.5615162876466100, -153.3861201360354300 70.5616008149257300, -153.3858544034579300 70.5616851011865300, -153.3855879784024400 70.5617691455297000, -153.3853208644662800 70.5618529470559100, -153.3850530625487600 70.5619365057651700, -153.3847845762471700 70.5620198198588500, -153.3845154055615000 70.5621028893369300, -153.3842455531897000 70.5621857141994200, -153.3839750218297700 70.5622682935469900, -153.3837038132803300 70.5623506255809600, -153.3834319293400500 70.5624327112007000, -153.3831593718075200 70.5625145486075700, -153.3828861433807700 70.5625961378015600, -153.3826122449591200 70.5626774787826900, -153.3823376801397800 70.5627585697522500, -153.3820624489228500 70.5628394107103000, -153.3817865558048700 70.5629200016568300, -153.3815100007858800 70.5630003407931700, -153.3812327865638300 70.5630804281192900, -153.3809549158366700 70.5631602627360000, -153.3806763904030700 70.5632398446431900, -153.3803972111623500 70.5633191720422100, -153.3801173817117600 70.5633982458324500, -153.3798369038500000 70.5634770651145100, -153.3795557793757000 70.5635556289891500, -153.3792740100874700 70.5636339365569800, -153.3789915977840000 70.5637119869186900, -153.3787085460625000 70.5637897809736500, -153.3784248558224000 70.5638673169231700, -153.3781405297616200 70.5639445938679700, -153.3778555696787600 70.5640216127073400, -153.3775699773725300 70.5640983716426100, -153.3772837555408400 70.5641748706738100, -153.3769969068817100 70.5642511089016000, -153.3767094313951000 70.5643270863260500, -153.3764213335776400 70.5644028011483900, -153.3761326143286700 70.5644782542680700, -153.3758432763461000 70.5645534447857000, -153.3755533214286000 70.5646283709026500, -153.3752627513748300 70.5647030335182400, -153.3749715688827600 70.5647774308338300, -153.3746797766503400 70.5648515637487300, -153.3743873755769000 70.5649254313636300, -153.3740943692597000 70.5649990318798900, -153.3738007585981000 70.5650723652974500, -153.3735065462900600 70.5651454325157500, -153.3732117341342000 70.5652182308367600, -153.3729163257278300 70.5652907611597600, -153.3726203210709400 70.5653630216861500, -153.3723237246601300 70.5654350133152700, -153.3720265373947600 70.5655067351477800, -153.3717287619727500 70.5655781862843100, -153.3714303992934700 70.5656493658256000, -153.3711314538534800 70.5657202737716600, -153.3708319265521400 70.5657909101224700, -153.3705318191880700 70.5658612730793500, -153.3702311344592600 70.5659313626423500, -153.3699298750636600 70.5660011788114000, -153.3696280436992400 70.5660707206872600, -153.3693256403660000 70.5661399882699200, -153.3690226695605400 70.5662089797606900, -153.3687191330815000 70.5662776951595600, -153.3684150327275400 70.5663461344665800, -153.3681103702973300 70.5664142967824500, -153.3678051493881200 70.5664821821070500, -153.3674993708992200 70.5665497895412300, -153.3671930384279600 70.5666171181854900, -153.3668861528736300 70.5666841680399600, -153.3665787178335300 70.5667509382053000, -153.3662707351063000 70.5668174286814200, -153.3659622064906200 70.5668836385691000, -153.3656531346843800 70.5669495678683300, -153.3653435223856100 70.5670152156797000, -153.3650333713929400 70.5670805811040000, -153.3647226844043400 70.5671456650404700, -153.3644114632184300 70.5672104656905000, -153.3640997105332000 70.5672749830540600, -153.3637874281472500 70.5673392162319100, -153.3634746196579500 70.5674031652239400, -153.3631612859645400 70.5674668291309200, -153.3628474297650500 70.5675302088521300, -153.3625330546567200 70.5675933016895600, -153.3622181615389000 70.5676561085426200, -153.3619027522102300 70.5677186294112700, -153.3615868311673000 70.5677808624968700, -153.3612703993094600 70.5678428077994200, -153.3609534593346400 70.5679044653188600, -153.3606360139408500 70.5679658341559800, -153.3603180640274000 70.5680269143106800, -153.3599996140909000 70.5680877048837400, -153.3596806650306200 70.5681482058750500, -153.3593612195446000 70.5682084154860300, -153.3590412812301000 70.5682683355153100, -153.3587208500871400 70.5683279632649500, -153.3583999306122800 70.5683872996342500, -153.3580785237048800 70.5684463437238500, -153.3577566329622000 70.5685050955338000, -153.3574342610822600 70.5685635541647700, -153.3571114089643300 70.5686217196167100, -153.3567880793064000 70.5686795900910500, -153.3564642757057200 70.5687371673864200, -153.3561399990616700 70.5687944497041700, -153.3558152529715200 70.5688514361449400, -153.3554900401332200 70.5689081276080400, -153.3551643614461000 70.5689645231942700, -153.3548382205074500 70.5690206211048100, -153.3545116191159000 70.5690764231384800, -153.3541845599694400 70.5691319274965300, -153.3538570466653500 70.5691871350782700, -153.3535290792036000 70.5692420431858000, -153.3532006620808700 70.5692966536177000, -153.3528717970957300 70.5693509645753900, -153.3525424869462000 70.5694049760588800, -153.3522127334308600 70.5694586880680400, -153.3518825392477500 70.5695121006029900, -153.3515519079941200 70.5695652118651000, -153.3512208396700000 70.5696180218543000, -153.3508893396712600 70.5696705305705900, -153.3505574079979400 70.5697227380139800, -153.3502250491466700 70.5697746432852000, -153.3498922640167500 70.5698262454848800, -153.3495590553061200 70.5698775446130600, -153.3492254266121200 70.5699285415689700, -153.3488913797333500 70.5699792336547500, -153.3485569164684800 70.5700296226689800, -153.3482220413141300 70.5700797068130900, -153.3478867542702600 70.5701294860869600, -153.3475510598335000 70.5701789595913700, -153.3472149589032000 70.5702281282256100, -153.3468784550766200 70.5702769910903400, -153.3465415510517000 70.5703255472862500, -153.3462042486271500 70.5703737968133300, -153.3458665505009000 70.5704217396715900, -153.3455284593708800 70.5704693749617600, -153.3451899779351000 70.5705167017844100, -153.3448511079922000 70.5705637210389200, -153.3445118531395000 70.5706104327253500, -153.3441722151755500 70.5706568341456100, -153.3438321958991000 70.5707029270984700, -153.3434917998066900 70.5707487106844800, -153.3431510277976600 70.5707941849037800, -153.3428098834693300 70.5708393479575900, -153.3424683686202700 70.5708842016446700, -153.3421264859485400 70.5709287432669600, -153.3417842381520300 70.5709729746231500, -153.3414416288280800 70.5710168939145900, -153.3410986579766600 70.5710605020406100, -153.3407553309937000 70.5711037972025100, -153.3404116478792200 70.5711467802997300, -153.3400676131298000 70.5711894504328300, -153.3397232285441300 70.5712318076019200, -153.3393784968201300 70.5712738518069000, -153.3389963425071600 70.5713200445844700, -153.3386137691101400 70.5713658515528600, -153.3382307793269800 70.5714112736114300, -153.3378473776543300 70.5714563098608800, -153.3374635685888000 70.5715009594018200, -153.3370793530296800 70.5715452213349300, -153.3366947372722700 70.5715890974589100, -153.3363097231152000 70.5716325850758000, -153.3359243141557300 70.5716756841855500, -153.3355385139912000 70.5717183956874700, -153.3351523271181800 70.5717607177829800, -153.3347657562346500 70.5718026513713400, -153.3343788058372000 70.5718441946539200, -153.3339914777244800 70.5718853485300900, -153.3336037772924700 70.5719261112011500, -153.3332157063397600 70.5719664835664300, -153.3170739044371000 70.5736360012005500, -153.3165674988909200 70.5736879865114000, -153.3160604791078000 70.5737393072233200, -153.3155528549802400 70.5737899615375600, -153.3150446328035300 70.5738399485548500, -153.3145358206715500 70.5738892691745100, -153.3140264266782300 70.5739379206985400, -153.3135164589174000 70.5739859031269800, -153.3130059254830500 70.5740332155605200, -153.3124948344690000 70.5740798570997800, -153.3119831930698600 70.5741258286441300, -153.3114710102788600 70.5741711265963000, -153.3109582932905800 70.5742157527548700, -153.3104450501988700 70.5742597053212000, -153.3099312890976800 70.5743029833960200, -153.3094170180809000 70.5743455869792900, -153.3089022452424000 70.5743875151717400, -153.3083869777767600 70.5744287670739800, -153.3078712246772600 70.5744693426860900, -153.3073549940377200 70.5745092402093500, -153.3068382939520700 70.5745484596437800, -153.3063211316149000 70.5745870009893700, -153.3058035151201000 70.5746248633468000, -153.3052854534608700 70.5746620449174900, -153.3047669538318300 70.5746985466007000, -153.3042480252261400 70.5747343674971100, -153.3037286748384500 70.5747695067074100, -153.3032089116619300 70.5748039633322700, -153.3026887428911500 70.5748377382710700, -153.3021681775193500 70.5748708297250600, -153.3016472227411000 70.5749032367950200, -153.3011258866503000 70.5749349603801800, -153.3006041782402000 70.5749659995812500, -153.3003291547666400 70.5749820776608200, -153.3000540314683300 70.5749979650841000, -153.2997788092446300 70.5750136627504000, -153.2995034889948000 70.5750291697604600, -153.2992280725175000 70.5750444861142200, -153.2989525607120800 70.5750596127110200, -153.2986769544778300 70.5750745477522500, -153.2984012556134000 70.5750892930365100, -153.2981254659174800 70.5751038467651600, -153.2978495844907000 70.5751182098375700, -153.2975736140310200 70.5751323831530000, -153.2972975563371300 70.5751463640135600, -153.2970214114090000 70.5751601551171500, -153.2967451801459000 70.5751737546651200, -153.2964688652459000 70.5751871626574700, -153.2961924658096000 70.5752003799935900, -153.2959159854343600 70.5752134057741000, -153.2956394232207600 70.5752262408983600, -153.2953627818668600 70.5752388844670100, -153.2950860622719300 70.5752513364800500, -153.2948092644359700 70.5752635969375300, -153.2945323910569800 70.5752756658393400, -153.2942554430342500 70.5752875440849700, -153.2939784212671000 70.5752992298756100, -153.2937013266548800 70.5753107241107000, -153.2934241600969000 70.5753220267901600, -153.2931469242911000 70.5753331379140100, -153.2928696192375000 70.5753440574823100, -153.2925922467347600 70.5753547845956700, -153.2923148067828800 70.5753653201534800, -153.2920373020798000 70.5753756641556200, -153.2917597335248600 70.5753858157028700, -153.2914821020173700 70.5753957747952500, -153.2912044084566500 70.5754055423319600, -153.2909266546413700 70.5754151174138000, -153.2906488414708400 70.5754245009400200, -153.2903709698443600 70.5754336920113600, -153.2900930415606000 70.5754426915270300, -153.2898150575188700 70.5754514976885000, -153.2895370186185000 70.5754601122944200, -153.2892589266581000 70.5754685344453500, -153.2889807825370700 70.5754767641414000, -153.2887025880539800 70.5754848013825200, -153.2884243432088500 70.5754926461687500, -153.2881460498003300 70.5755002976006800, -153.2878677096270800 70.5755077574770600, -153.2875893235883800 70.5755150248985500, -153.2873108916842900 70.5755220998650500, -153.2870324166127000 70.5755289814773600, -153.2867538992730000 70.5755356715340600, -153.2864753405645000 70.5755421682365500, -153.2861967422858000 70.5755484724840600, -153.2859181044369400 70.5755545833773700, -153.2856394288165500 70.5755605018157400, -153.2853607172232800 70.5755662277992400, -153.2850819705564600 70.5755717613277500, -153.2848031897154000 70.5755771015020600, -153.2845243755994300 70.5755822483221800, -153.2842455300071800 70.5755872035866200, -153.2839666538379800 70.5755919645975500, -153.2836877488904600 70.5755965340528600, -153.2834088160639700 70.5756009092546000, -153.2831298562578300 70.5756050920014700, -153.2828508712706500 70.5756090822934000, -153.2806751450418700 70.5756393246951500, -153.2804577150514800 70.5756614633059500, -153.2799732304801800 70.5757101292191500, -153.2794881964231000 70.5757581871906200, -153.2790026218734700 70.5758056381197300, -153.2785165113279000 70.5758524793085400, -153.2780298737796200 70.5758987107569700, -153.2775427155238800 70.5759443315657200, -153.2770550437552400 70.5759893417347800, -153.2765668647689700 70.5760337412642100, -153.2760781848603200 70.5760775274560000, -153.2755890130225000 70.5761207012094500, -153.2750993537521500 70.5761632616252500, -153.2746092160424500 70.5762052078041500, -153.2741186061887000 70.5762465388467600, -153.2736275313854400 70.5762872556524000, -153.2731359979279400 70.5763273564224400, -153.2726440130107600 70.5763668402575500, -153.2721515838285000 70.5764057071577300, -153.2716587166764000 70.5764439571229900, -153.2711654205477000 70.5764815892540000, -153.2706716999389600 70.5765186017521300, -153.2701775638434800 70.5765549964160100, -153.2696830185564400 70.5765907705476800, -153.2691880703731300 70.5766259250464700, -153.2686927273874200 70.5766604581136800, -153.2681969958946000 70.5766943706487400, -153.2677008839885700 70.5767276617522700, -153.2672043970652600 70.5767603305249000, -153.2667075441178500 70.5767923769667000, -153.2662103305423000 70.5768238001783200, -153.2483949739488500 70.5779372148306800, -153.2480456628770200 70.5779588678075800, -153.2476961809339900 70.5779802141156600, -153.2473465299184000 70.5780012528555900, -153.2469967125282400 70.5780219840273700, -153.2466906984169600 70.5780398589523700, -153.2463845592999400 70.5780574982550200, -153.2460782996737700 70.5780749019352200, -153.2457719186391000 70.5780920699930900, -153.2454654188939300 70.5781090024285600, -153.2451588022369200 70.5781256992417000, -153.2448520704666600 70.5781421595331200, -153.2445452244825000 70.5781583842021400, -153.2442382660830700 70.5781743723494500, -153.2439311979664000 70.5781901248744200, -153.2436240210317000 70.5782056408776800, -153.2433167361784000 70.5782209203592300, -153.2430093461044000 70.5782359633191200, -153.2427018517090600 70.5782507697572900, -153.2423942556903300 70.5782653396737500, -153.2420865589475000 70.5782796730685000, -153.2270137200071400 70.5789751116121800, -153.2119190877956500 70.5799039610989800, -153.2114037070154500 70.5799353024722800, -153.2108879620098200 70.5799659747500000, -153.2105261809384700 70.5799870782411200, -153.2101642271973000 70.5800078534796900, -153.2098021034842600 70.5800282995664400, -153.2094398133966400 70.5800484156019400, -153.2090773587330800 70.5800682033849400, -153.2087147430909000 70.5800876602173700, -153.2083519682687000 70.5801067878979900, -153.2079890378637700 70.5801255855274100, -153.2076259527754600 70.5801440522063200, -153.2072627183997000 70.5801621897333000, -153.2068993356358000 70.5801799963098200, -153.2065358071817200 70.5801974728351500, -153.2061721366347600 70.5802146175106500, -153.2058083266929000 70.5802314330342700, -153.2054443791547600 70.5802479167080600, -153.2050802976176000 70.5802640694313400, -153.2047160838801300 70.5802798912041000, -153.2043517415396000 70.5802953811269700, -153.2039872732940000 70.5803105400993900, -153.2036226818412700 70.5803253681213000, -153.2032579689800700 70.5803398633940400, -153.2028931383076400 70.5803540277162800, -153.2025281925220400 70.5803678601886300, -153.2021631343211500 70.5803813608112000, -153.2017979664030000 70.5803945286846200, -153.2014326914655000 70.5804073656074700, -153.2010673122066700 70.5804198697812200, -153.2007018313244400 70.5804320412057700, -153.2003362515167700 70.5804438807805400, -153.1999705754816400 70.5804553876061000, -153.1996048068163500 70.5804665616825600, -153.1992389464202200 70.5804774030098100, -153.1988729987898200 70.5804879115879100, -153.1985069666231700 70.5804980883161800, -153.1981408508195800 70.5805079313959700, -153.1977746558756300 70.5805174408273000, -153.1974083844893400 70.5805266184087800, -153.1970420384592700 70.5805354623417400, -153.1966756204834600 70.5805439726262900, -153.1963091350585000 70.5805521501616800, -153.1959425830837000 70.5805599949478600, -153.1955759672570400 70.5805675060855700, -153.1952092920751300 70.5805746826755500, -153.1948425584373000 70.5805815274156300, -153.1944757699408000 70.5805880376079200, -153.1941089292836300 70.5805942141517400, -153.1937420391637400 70.5806000579463600, -153.1933751022791000 70.5806055671932300, -153.1930081213277000 70.5806107427915800, -153.1926410999068000 70.5806155847415100, -153.1922740389157400 70.5806200939422300, -153.1919069428511000 70.5806242676958400, -153.1915398135115500 70.5806281087003000, -153.1911726535950600 70.5806316151569600, -153.1908054666989000 70.5806347879651500, -153.1904382546217000 70.5806376271248700, -153.1900710209608300 70.5806401326360600, -153.1897037684141500 70.5806423035994600, -153.1893364987803600 70.5806441409144400, -153.1889692156567500 70.5806456436815800, -153.1886019208419300 70.5806468128002400, -153.1882346188325500 70.5806476473711100, -153.1878673105279300 70.5806481491927700, -153.1875000004246500 70.5806483155673700, -153.1869985042775000 70.5806480044019500, -153.1864970153249600 70.5806470709056300, -153.1859955407615800 70.5806455141792000, -153.1854940868825800 70.5806433342225400, -153.1849926608825600 70.5806405328343700, -153.1844912699561000 70.5806371082160200, -153.1839899212978000 70.5806330612668400, -153.1834886221022000 70.5806283919867500, -153.1829873777652400 70.5806231003758200, -153.1824861972801600 70.5806171864340400, -153.1819850860428600 70.5806106501614200, -153.1814840521472500 70.5806034915579500, -153.1809831018886100 70.5805957115229000, -153.1804822433608000 70.5805873091570700, -153.1799814819598000 70.5805782853596500, -153.1794808257794500 70.5805686392313900, -153.1789802820143800 70.5805583716715400, -153.1784798560604800 70.5805474826802300, -153.1779795569110000 70.5805359731567100, -153.1774793899618600 70.5805238422016100, -153.1769793633069400 70.5805110898149900, -153.1764794832415400 70.5804977168961600, -153.1759797569601700 70.5804837243444500, -153.1754801916575000 70.5804691103612100, -153.1749807945280000 70.5804538767450800, -153.1744815709676900 70.5804380225967000, -153.1739825299697500 70.5804215488154800, -153.1734836769301200 70.5804044563007000, -153.1729850199427000 70.5803867441529700, -153.1724865662020200 70.5803684123723700, -153.1719883211041000 70.5803494627575700, -153.1714902918434700 70.5803298944091500, -153.1625245375773300 70.5799716161972100, -153.1491396505744000 70.5797686491039300, -153.1488685958090000 70.5797644330821800, -153.1485975680233200 70.5797600362967000, -153.1483265672172800 70.5797554569488200, -153.1480555942902000 70.5797506950386300, -153.1477846519401000 70.5797457514653400, -153.1475137392676200 70.5797406262289500, -153.1472428589707400 70.5797353193295900, -153.1469720110494300 70.5797298289684800, -153.1467011973023800 70.5797241578436600, -153.1464304186288800 70.5797183041564700, -153.1461596759282600 70.5797122688061900, -153.1458889700998600 70.5797060517929300, -153.1456183029423000 70.5796996531165600, -153.1453476753549000 70.5796930718778400, -153.1450770891363200 70.5796863089760200, -153.1448065433872300 70.5796793644112200, -153.1445360408056000 70.5796722381833200, -153.1442655822907600 70.5796649302923800, -153.1439951687420000 70.5796574407383400, -153.1437248010586800 70.5796497695213200, -153.1434544810394400 70.5796419166412100, -153.1431842086842600 70.5796338820980500, -153.1429139866911000 70.5796256658918000, -153.1426438141606600 70.5796172680225600, -153.1423736937909200 70.5796086893895400, -153.1421036264811400 70.5795999281941700, -153.1418336122313800 70.5795909862350800, -153.1415636537396000 70.5795818626129400, -153.1412937501064600 70.5795725582270300, -153.1410239049292300 70.5795630721780800, -153.1407541173086300 70.5795534044660800, -153.1404843890432800 70.5795435559903700, -153.1402147210325200 70.5795335258516200, -153.1399451150749700 70.5795233149490900, -153.1396755711706400 70.5795129223835100, -153.1394060920175000 70.5795023490542200, -153.1391366767162200 70.5794915949612100, -153.1388673279648000 70.5794806601044200, -153.1388585703667000 70.5794802985769800, -153.1387970072760300 70.5795108071780500, -153.1385914321488400 70.5796120852296000, -153.1383850251487500 70.5797131762221900, -153.1381777889737600 70.5798140792564400, -153.1379697236238300 70.5799147934330300, -153.1377608326962400 70.5800153178527100, -153.1375511152917000 70.5801156525154200, -153.1373405750075000 70.5802157965218300, -153.1371292127429300 70.5803157489726800, -153.1369170302966700 70.5804155080692800, -153.1367040276687000 70.5805150747110000, -153.1364902084563400 70.5806144479984100, -153.1362755735588300 70.5807136261329900, -153.1360601247749000 70.5808126082153500, -153.1358438630038600 70.5809113951448200, -153.1356267900442800 70.5810099851227600, -153.1354089076949000 70.5811083772498500, -153.1351902177543000 70.5812065706267600, -153.1349707220211700 70.5813045652535600, -153.1347504213948000 70.5814023602308100, -153.1345293176738400 70.5814999546592500, -153.1343074126569400 70.5815973476395600, -153.1340847090420700 70.5816945391716800, -153.1338612068292000 70.5817915274570900, -153.1336369078170200 70.5818883124956600, -153.1334118147034600 70.5819848933881500, -153.1331859283878600 70.5820812701345500, -153.1329592515681700 70.5821774400369000, -153.1327317842444000 70.5822734048937800, -153.1325035291145600 70.5823691620073000, -153.1322744879772000 70.5824647113773800, -153.1320446626310500 70.5825600521047800, -153.1318140539753800 70.5826551841894300, -153.1315826647082000 70.5827501058327600, -153.1313504957287500 70.5828448170347500, -153.1311175488358000 70.5829393168959900, -153.1308838267272000 70.5830336054166300, -153.1306493294030000 70.5831276807978700, -153.1304140604604800 70.5832215421405000, -153.1302155270249200 70.5833003443355000, -153.1300164486002000 70.5833789945450000, -153.1298168269849500 70.5834574927691300, -153.1296166630785000 70.5835358372091800, -153.1294159577802000 70.5836140296638000, -153.1292147119893300 70.5836920674350400, -153.1290129266052400 70.5837699514222000, -153.1288106034266000 70.5838476816252900, -153.1243790753340200 70.5855458426665300, -153.1251857303371700 70.5859092730945600, -153.1254619876805500 70.5860341574504600, -153.1257369473022400 70.5861593592670700, -153.1260106074035700 70.5862848758463900, -153.1262829625886200 70.5864107071884600, -153.1265540110587400 70.5865368496959000, -153.1268237492166000 70.5866633033688200, -153.1270921743643200 70.5867900664084700, -153.1273592820052400 70.5869171370163100, -153.1276250703406800 70.5870445142929800, -153.1278895357734200 70.5871721955404600, -153.1281526738068200 70.5873001807588000, -153.1284144835415500 70.5874284672499900, -153.1286749595817000 70.5875570541148200, -153.1289341001286000 70.5876859386552300, -153.1291919015849600 70.5878151208712000, -153.1294483621521700 70.5879445989641000, -153.1297034764342600 70.5880743711353500, -153.1299572426326000 70.5882044355863000, -153.1302096580492400 70.5883347905182200, -153.1304607190869000 70.5884654350318800, -153.1307104230475600 70.5885963673285300, -153.1309587672333000 70.5887275856096600, -153.1312057471474800 70.5888590889758200, -153.1314513618908000 70.5889908756284400, -153.1316956060673200 70.5891229428695500, -153.1319384787777600 70.5892552906991600, -153.1321799773240600 70.5893879164192400, -153.1324200972097000 70.5895208191305400, -153.1326588357366600 70.5896539970344200, -153.1328961911063000 70.5897874492314400, -153.1331321597213600 70.5899211730237500, -153.1333667388838600 70.5900551666127300, -153.1335462822351000 70.5901584474544300, -153.1337249991094000 70.5902618874761700, -153.1339028895067100 70.5903654839799500, -153.1340799525277700 70.5904692378650800, -153.1342561854745600 70.5905731482322400, -153.1344315883471000 70.5906772141821600, -153.1346061584474000 70.5907814348154300, -153.1347798966748700 70.5908858092327600, -153.1349528003314300 70.5909903365348400, -153.1351248676185200 70.5910950167216800, -153.1352960994354000 70.5911998488939500, -153.1354664921848300 70.5913048321523300, -153.1356360458668000 70.5914099655975000, -153.1358047595819600 70.5915152483301000, -153.1359726315317000 70.5916206803501600, -153.1361396608166700 70.5917262607583800, -153.1363058456382500 70.5918319877561100, -153.1364711850971000 70.5919378613433000, -153.1366356782938900 70.5920438815200000, -153.1367993243293300 70.5921500455882000, -153.1369621214047400 70.5922563553465900, -153.1371240686208400 70.5923628080971600, -153.1372851650782800 70.5924694029406500, -153.1374454089784000 70.5925761407763200, -153.1376047994219200 70.5926830198055800, -153.1377633355095000 70.5927900391290600, -153.1379210163418000 70.5928971987467500, -153.1380778401202000 70.5930044968600900, -153.1382338059453600 70.5931119334690000, -153.1383889129179700 70.5932195085735000, -153.1385431601387000 70.5933272194756700, -153.1386965449095800 70.5934350661754000, -153.1453847714899700 70.5981526164501400, -153.1455681009870500 70.5982824317888500, -153.1457501822251000 70.5984124413811300, -153.1474283540352700 70.5996153772479100, -153.1484631391625200 70.6000970874106900, -153.1486460558707600 70.6001824276769400, -153.1554809277026300 70.6033783277476900, -153.1558030567656200 70.6034522088523900, -153.1561768123100000 70.6035385491648000, -153.1565496910153900 70.6036253067625800, -153.1569216901838200 70.6037124816457400, -153.1572928044193700 70.6038000729150800, -153.1576630310240400 70.6038880787718900, -153.1580323637026000 70.6039764992161200, -153.1584008006564000 70.6040653324491800, -153.1587683355902000 70.6041545784710800, -153.1591349658060000 70.6042442345838000, -153.1595006868072300 70.6043343016867200, -153.1598654931979000 70.6044247770818700, -153.1602293822801400 70.6045156607692100, -153.1605923495572500 70.6046069509500900, -153.1609543905326800 70.6046986476245600, -153.1613155016091000 70.6047907489939300, -153.1616756791892200 70.6048832550582100, -153.1620349169778000 70.6049761631194900, -153.1623932131762200 70.6050694722783900, -153.1627505623885000 70.6051631834342300, -153.1631069619167200 70.6052572938890500, -153.1634624054656200 70.6053518018442200, -153.1638168912365000 70.6054467081990500, -153.1641704147328400 70.6055420111549700, -153.1645229705586000 70.6056377089132000, -153.1648745560159200 70.6057338014738300, -153.1652251666081000 70.6058302870381500, -153.1655747987379400 70.6059271647069400, -153.1659797032007200 70.6060401897030400, -153.1663832748682200 70.6061537408025400, -153.1667855083445000 70.6062678162068100, -153.1671863973343500 70.6063824141171500, -153.1674301756620500 70.6064526529676200, -153.1775416868993000 70.6067592921077100, -153.1778919962186200 70.6067700506973200, -153.1782422210016800 70.6067811123585300, -153.1785923567518400 70.6067924761918600, -153.1789424034691000 70.6068041430967800, -153.1792923575562200 70.6068161130732000, -153.1796422172145400 70.6068283852218300, -153.1799919797460300 70.6068409604420100, -153.1803416424528200 70.6068538369351000, -153.1806912035361800 70.6068670173990000, -153.1810406602982000 70.6068804991358000, -153.1813900109402200 70.6068942830447700, -153.1817392518649400 70.6069083691260200, -153.1820883821730800 70.6069227573793800, -153.1824373982673000 70.6069374478050200, -153.1827862992482800 70.6069524404028400, -153.1831350815187700 70.6069677333742300, -153.1834837423808000 70.6069833294171800, -153.1838322809349800 70.6069992258336500, -153.1841806935841200 70.6070154244223400, -153.1845289794288200 70.6070319233846200, -153.1848771339725200 70.6070487245190700, -153.1852251563158800 70.6070658260271100, -153.1855730446602600 70.6070832288080000, -153.1859207945090300 70.6071009319625200, -153.1862684058622200 70.6071189363898400, -153.1866158751225000 70.6071372411908000, -153.1869631995919600 70.6071558463652900, -153.1873103783712200 70.6071747528126300, -153.1876574069637200 70.6071939578349700, -153.1880042853694600 70.6072134641301000, -153.1883510099911000 70.6072332698995500, -153.1886975781307000 70.6072533760425400, -153.1890597234274800 70.6072747151560500, -153.1894216933564200 70.6072963825220700, -153.1897834843203200 70.6073183763420500, -153.1901450945204600 70.6073406975152100, -153.1905065212589200 70.6073633460416700, -153.1908677609383700 70.6073863201226600, -153.1912288126595500 70.6074096215568300, -153.1915896719257800 70.6074332494449700, -153.1919503360391600 70.6074572037869600, -153.1923108041003000 70.6074814836835600, -153.1926710725119600 70.6075060891347400, -153.1930311376768300 70.6075310210398500, -153.1933909986956000 70.6075562776001700, -153.1937506519710000 70.6075818597150800, -153.1941100939057000 70.6076077673846000, -153.1944693236003700 70.6076339997093800, -153.1948283374577800 70.6076605566893800, -153.1951871327799200 70.6076874383246600, -153.1955457077681600 70.6077146437159000, -153.1959040579259000 70.6077421737623500, -153.1962621832531000 70.6077700275647500, -153.1966200783539000 70.6077982051231200, -153.1969777423289300 70.6078267064374400, -153.1973351724802000 70.6078555306083300, -153.1976923652104600 70.6078846776358100, -153.1980493187210500 70.6079141484193000, -153.1984060303140300 70.6079439411599900, -153.1987624963920800 70.6079740567573700, -153.1991187160558600 70.6080044943120100, -153.1994746848088200 70.6080352538239700, -153.1998304008522800 70.6080663343938700, -153.2001858623876000 70.6080977378204000, -153.2005410658175000 70.6081294614055500, -153.2008960075446900 70.6081615069480200, -153.2012506875691400 70.6081938726491700, -153.2016051004949600 70.6082265594082500, -153.2019592463221300 70.6082595663259600, -153.2023131196547200 70.6082928934023900, -153.2026667204927200 70.6083265397380700, -153.2030200443395500 70.6083605062324300, -153.2033730902958600 70.6083947919861400, -153.2037258538650200 70.6084293969991600, -153.2040783332484500 70.6084643203721500, -153.2044305257481400 70.6084995630045000, -153.2047824295654600 70.6085351239968300, -153.2051340411031000 70.6085710024498800, -153.2054853585624000 70.6086071983635900, -153.2058363783461600 70.6086437126372700, -153.2061870986556500 70.6086805443716800, -153.2065375167929300 70.6087176917681000, -153.2068876300600400 70.6087551575245700, -153.2072374357590300 70.6087929380437300, -153.2075869311918800 70.6088310360235600, -153.2079361136606800 70.6088694496654000, -153.2082849813667700 70.6089081780700100, -153.2086335316121500 70.6089472221366300, -153.2089817607996000 70.6089865818653400, -153.2093296671304000 70.6090262554573700, -153.2096772479066300 70.6090662438121500, -153.2100245013296600 70.6091065469296400, -153.2103714229028200 70.6091471630112400, -153.2107180117268400 70.6091880929561700, -153.2110642651037200 70.6092293358652200, -153.2114101794362000 70.6092708926376500, -153.2117006604571000 70.6093060624248800, -153.2119908995603300 70.6093414534453800, -153.2122808940479800 70.6093770647997300, -153.2125706439200600 70.6094128964880400, -153.2128601464785600 70.6094489476108700, -153.2131493999248400 70.6094852190676600, -153.2134384042589000 70.6095217108583000, -153.2137271567828200 70.6095584220835800, -153.2140156565972400 70.6095953518440600, -153.2143039019035200 70.6096325010391300, -153.2145918918023400 70.6096698696687800, -153.2148796235957200 70.6097074568337500, -153.2151670963843600 70.6097452625339200, -153.2154543083696000 70.6097832867693000, -153.2157412586521400 70.6098215286406800, -153.2160279454333000 70.6098599890473200, -153.2304470941580500 70.6117999957732500, -153.2307167837525400 70.6118363796452400, -153.2309862377246600 70.6118729550729000, -153.2312554542757500 70.6119097238547500, -153.2315244325065200 70.6119466850914800, -153.2317931706183000 70.6119838387832000, -153.2320616677117800 70.6120211849298000, -153.2323299228876000 70.6120587226320100, -153.2325979352464700 70.6120964518897800, -153.2328657020904400 70.6121343727031700, -153.2331332234195000 70.6121724859714800, -153.2334004974349900 70.6122107898961000, -153.2336675223382700 70.6122492844769500, -153.2339342981293300 70.6122879706134100, -153.2342008239088800 70.6123268474061700, -153.2344670969789000 70.6123659148551600, -153.2347331164401400 70.6124051720610700, -153.2349988813932400 70.6124446199233400, -153.2352643909388500 70.6124842575425200, -153.2355296432784000 70.6125240858179400, -153.2357946366131500 70.6125641029510700, -153.2360593709432000 70.6126043098410600, -153.2363238453691300 70.6126447064880800, -153.2365880571930500 70.6126852910933800, -153.2368520055156000 70.6127260654556000, -153.2371156894375000 70.6127670286754800, -153.2373791089587000 70.6128081798536900, -153.2376422604819200 70.6128495198895000, -153.2379051440071600 70.6128910478836400, -153.2381677586351100 70.6129327638360600, -153.2384301025671500 70.6129746668474400, -153.2386921749039200 70.6130167587165300, -153.2389539747461000 70.6130590367452000, -153.2392154993957500 70.6131015027322000, -153.2394767497521600 70.6131441557782300, -153.2397377231174000 70.6131869949838900, -153.2399984185921000 70.6132300212485100, -153.2402588352770000 70.6132732336728300, -153.2405189713734000 70.6133166322568400, -153.2407788268813200 70.6133602170004900, -153.2410383991028200 70.6134039879037800, -153.2412976880378300 70.6134479440674500, -153.2415566918877800 70.6134920854914300, -153.2418154088540000 70.6135364121757300, -153.2420738398358000 70.6135809241204100, -153.2423319812359000 70.6136256204260900, -153.2425898330543200 70.6136705010928300, -153.2428473934923800 70.6137155661205600, -153.2428990019873300 70.6137246429779600, -153.2430251705751200 70.6136730407782800, -153.2432578971342000 70.6135783853342800, -153.2434913971102600 70.6134839394323400, -153.2437256696039500 70.6133897066697000, -153.2439607137159500 70.6132956852477500, -153.2441965258489600 70.6132018769650900, -153.2444331042043800 70.6131082818217800, -153.2446704487821600 70.6130149016164500, -153.2449085568843500 70.6129217363491100, -153.2451474267123500 70.6128287869190100, -153.2453870564674500 70.6127360542255900, -153.2456274443510400 70.6126435382687400, -153.2458685885645000 70.6125512399478300, -153.2461104873091200 70.6124591601621900, -153.2463531387863000 70.6123672998110700, -153.2465965411974000 70.6122756588945900, -153.2468406927437500 70.6121842383120100, -153.2470855916267300 70.6120930398619700, -153.2473312360476700 70.6120020626451000, -153.2475776251072800 70.6119113084601500, -153.2478247552082600 70.6118207773070600, -153.2480726245519500 70.6117304691858900, -153.2483212331383700 70.6116403867944800, -153.2485705782695500 70.6115505292335700, -153.2488206572475000 70.6114608974025400, -153.2490714682736000 70.6113714922006500, -153.2493230113478500 70.6112823145272700, -153.2495752819736500 70.6111933643823000, -153.2498282810503000 70.6111046426651700, -153.2500820040812000 70.6110161502751900, -153.2503364510663500 70.6109278881115800, -153.2505916184084400 70.6108398561745000, -153.2508475061075000 70.6107520544637700, -153.2511041105662200 70.6106644856775500, -153.2513614317846300 70.6105771489163200, -153.2516194652661000 70.6104900459789000, -153.2518782119099000 70.6104031759658700, -153.2521376672195300 70.6103165406758500, -153.2523978311949000 70.6102301401089100, -153.2526587011381300 70.6101439760636800, -153.2529202752504600 70.6100580476408500, -153.2531825508340300 70.6099723557396700, -153.2534455269894500 70.6098869021588500, -153.2537092010187800 70.6098016868983800, -153.2539735720227000 70.6097167099582600, -153.2542386364039300 70.6096319722377600, -153.2545043932631200 70.6095474755356300, -153.2547708408016300 70.6094632189524400, -153.2550379772208400 70.6093792033875600, -153.2553057989234400 70.6092954306396900, -153.2555743059094500 70.6092118998094000, -153.2558434945815700 70.6091286126953700, -153.2561133640405000 70.6090455683983000, -153.2563839115882200 70.6089627696162000, -153.2566551354261400 70.6088802154496300, -153.2569270337555700 70.6087979067980300, -153.2571996047779000 70.6087158445606000, -153.2574728457951800 70.6086340296367900, -153.2577467550087000 70.6085524620265800, -153.2580213306198700 70.6084711417298600, -153.2582965699307400 70.6083900705454000, -153.2585724720419200 70.6083092493724400, -153.2588490342555000 70.6082286773116700, -153.2591262538735000 70.6081483561617900, -153.2594041299965700 70.6080682850233600, -153.2596826599268000 70.6079884665945200, -153.2599618418654800 70.6079088999758300, -153.2602416731147000 70.6078295869659200, -153.2605221527751000 70.6077505266655400, -153.2608032772494000 70.6076717208732700, -153.2610850456383000 70.6075931686898500, -153.2613674561431500 70.6075148728131700, -153.2616505051666400 70.6074368323439800, -153.2619341918094700 70.6073590481815900, -153.2622185133736500 70.6072815203259600, -153.2625034680605700 70.6072042505757600, -153.2627890531722400 70.6071272389310100, -153.2630752678093400 70.6070504862909700, -153.2633621083745700 70.6069739917563800, -153.2636495739686200 70.6068977580251800, -153.2639376618935500 70.6068217841980200, -153.2642263703506800 70.6067460711743100, -153.2645156966420600 70.6066706198532800, -153.2648056389690200 70.6065954302349600, -153.2650961946336600 70.6065205032186900, -153.2653873627365600 70.6064458388044600, -153.2656791396805100 70.6063714387909200, -153.2659715245661700 70.6062973031780500, -153.2662645137962400 70.6062234319658700, -153.2665581064714000 70.6061498260537000, -153.2668523007930000 70.6060764863408400, -153.2671470922644800 70.6060034128273000, -153.2674424808857600 70.6059306055131000, -153.2677384639589200 70.6058580670961600, -153.2680350387859700 70.6057857957779300, -153.2683322035683200 70.6057137933569300, -153.2686299565072500 70.6056420598332600, -153.2689282940055500 70.6055705952068700, -153.2692272151638200 70.6054994021757200, -153.2695267181834700 70.6054284789411800, -153.2698267985678600 70.6053578273019300, -153.2701274563170300 70.6052874472579200, -153.2704286878336600 70.6052173388092100, -153.2707304922184000 70.6051475037543200, -153.2710328658740200 70.6050779420934300, -153.2713358079011800 70.6050086538263600, -153.2716393147025800 70.6049396398525500, -153.2719433844795800 70.6048709010713100, -153.2722480154335500 70.6048024374825300, -153.2725532048664800 70.6047342499857100, -153.2728589500804600 70.6046663376814100, -153.2731652501761300 70.6045987032675800, -153.2734721024555400 70.6045313458449800, -153.2737795033213800 70.6044642663129000, -153.2740874518743800 70.6043974655706300, -153.2743959454165300 70.6043309427188900, -153.2747049812498700 70.6042647004556400, -153.2750145584750800 70.6041987369822000, -153.2753246725955300 70.6041330540972500, -153.2756353236112500 70.6040676518007300, -153.2759465070256500 70.6040025309920900, -153.2762582228387000 70.6039376916712000, -153.2765704665537500 70.6038731347374600, -153.2768832372715600 70.6038088601907800, -153.2771965322941000 70.6037448698299400, -153.2775103489234400 70.6036811618561700, -153.2778246853609000 70.6036177389675600, -153.2781395389085600 70.6035546002646600, -153.2784549077677500 70.6034917466468500, -153.2787707892405000 70.6034291781141400, -153.2790871806288600 70.6033668964651600, -153.2794040801341600 70.6033049008006000, -153.2797214850584500 70.6032431920197600, -153.2800393936031000 70.6031817701226600, -153.2803578030701300 70.6031206369079300, -153.2806767107615500 70.6030597914762600, -153.2809961139794600 70.6029992347269500, -153.2813160118244600 70.6029389666600200, -153.2816364006993000 70.6028789890741600, -153.2819572788053500 70.6028193010699300, -153.2822786434446000 70.6027599044460900, -153.2826004928184600 70.6027007974039400, -153.2829228233296000 70.6026419826414400, -153.2832456340787200 70.6025834592592800, -153.2835689214685100 70.6025252281568200, -153.2838926837003700 70.6024672902333400, -153.2842169180762800 70.6024096445895000, -153.2845416227976300 70.6023522930239600, -153.2848667942671200 70.6022952355367600, -153.2851924315854100 70.6022384721278500, -153.2855185320545700 70.6021820036965600, -153.2858450920773000 70.6021258302429300, -153.2861721098549600 70.6020699517669100, -153.2864995835889000 70.6020143700672000, -153.2868275096817900 70.6019590851437300, -153.2871558863350600 70.6019040960972000, -153.2874847117500000 70.6018494056256100, -153.2878139832287200 70.6017950119303400, -153.2881436971738700 70.6017409159106300, -153.2884738517868000 70.6016871193651200, -153.2888044452689000 70.6016336213945700, -153.2891354749222000 70.6015804219989600, -153.2894669380487200 70.6015275229768800, -153.2897988319505000 70.6014749234290100, -153.2901311548289000 70.6014226251541000, -153.2904639030866200 70.6013706272527200, -153.2907970758243700 70.6013189306241900, -153.2911306694448000 70.6012675352686200, -153.2914646821493200 70.6012164420852200, -153.2917991103406300 70.6011656510739800, -153.2921339531194200 70.6011151631343500, -153.2924692068883700 70.6010649782662100, -153.2928048689495000 70.6010150964696100, -153.2931409384035500 70.6009655186438200, -153.2934774107538700 70.6009162447889500, -153.2938142851011500 70.6008672758042000, -153.2941515578481000 70.6008186116896500, -153.2944892271960400 70.6007702533445900, -153.2948272904470700 70.6007221998696700, -153.2951657458025000 70.6006744530636200, -153.2955045887657400 70.6006270120270200, -153.2958438193367700 70.6005798776593000, -153.2961834330190000 70.6005330508596700, -153.2965234280137600 70.6004865307288600, -153.2968638016231200 70.6004403190655100, -153.2972045520484000 70.6003944149703100, -153.2975456765916800 70.6003488193425700, -153.2978871716556200 70.6003035330816100, -153.2982290354416000 70.6002585552881800, -153.2985712661510000 70.6002138877607900, -153.2989138601864700 70.6001695287008600, -153.2992568148500800 70.6001254808063500, -153.2996001292425500 70.6000817422786300, -153.2999437988672000 70.6000383158156500, -153.3002878219254200 70.5999951996188300, -153.3006321966185500 70.5999523945873800, -153.3009769193493200 70.5999099016207200, -153.3013219874197500 70.5998677207188000, -153.3016673999305200 70.5998258518816300, -153.3020131523850600 70.5997842951092000, -153.3023592438839600 70.5997430522001500, -153.3027056699307000 70.5997021222551700, -153.3030524296259000 70.5996615052743000, -153.3033995202716300 70.5996212030561300, -153.3037469382705600 70.5995812147013500, -153.3040946818240700 70.5995415402099400, -153.3044427482342000 70.5995021813806100, -153.3047911357023200 70.5994631364146700, -153.3051398397318000 70.5994244080100700, -153.3054888594233000 70.5993859943682200, -153.3058381911795600 70.5993478963883400, -153.3061878332019000 70.5993101149699100, -153.3065377827924200 70.5992726501127700, -153.3068880363537700 70.5992355018170200, -153.3072385929866400 70.5991986709819300, -153.3075894481944500 70.5991621567082500, -153.3079406010778600 70.5991259598951600, -153.3082920480395600 70.5990900814421700, -153.3086437872809400 70.5990545204498400, -153.3089958152046700 70.5990192778174900, -153.3093481300121500 70.5989843544444400, -153.3097007290054000 70.5989497494314300, -153.3100536094864600 70.5989154636777700, -153.3104067678580000 70.5988814971834100, -153.3107602032207800 70.5988478499483600, -153.3111139110781000 70.5988145228719800, -153.3114678905307000 70.5987815159542700, -153.3118221388806000 70.5987488291951900, -153.3121766516311500 70.5987164634940400, -153.3125314287824000 70.5986844179515700, -153.3128864658377000 70.5986526943664200, -153.3132417600991200 70.5986212909398900, -153.3135973106673200 70.5985902103699900, -153.3139531130457000 70.5985594499587100, -153.3143091654356200 70.5985290124040700, -153.3146654651391000 70.5984988977060100, -153.3150220094581500 70.5984691040659400, -153.3153787956948400 70.5984396341818300, -153.3157358220505300 70.5984104862549800, -153.3160930840285800 70.5983816620840800, -153.3164505816290000 70.5983531607698200, -153.3168083094559000 70.5983249832114600, -153.3171662666099000 70.5982971294090500, -153.3175244494937300 70.5982695993626000, -153.3178828563087600 70.5982423939713600, -153.3182414843569700 70.5982155123360800, -153.3186003300411600 70.5981889553560800, -153.3189593915626300 70.5981627230313000, -153.3193186662234400 70.5981368153617800, -153.3196781504262800 70.5981112332468700, -153.3200378432718200 70.5980859757872300, -153.3203977402634700 70.5980610447814500, -153.3207578396025800 70.5980364384309400, -153.3211181385912000 70.5980121585343500, -153.3214786354306500 70.5979882050916700, -153.3218393256243500 70.5979645772035300, -153.3222002073736400 70.5979412757693000, -153.3225612788798700 70.5979183007889900, -153.3229225365458000 70.5978956522626000, -153.3232839767741000 70.5978733310894300, -153.3236455995647400 70.5978513372694500, -153.3240073995218300 70.5978296699033800, -153.3243693757460700 70.5978083307899200, -153.3247315246401300 70.5977873181302600, -153.3250938435060400 70.5977666337232100, -153.3254563305452000 70.5977462775687200, -153.3258189821602600 70.5977262487674000, -153.3261817956533300 70.5977065482187000, -153.3265447692256800 70.5976871759224900, -153.3269079001794000 70.5976681327781500, -153.3272711840179000 70.5976494169870500, -153.3276346207411200 70.5976310303478300, -153.3279982049531600 70.5976129728604700, -153.3283619357547000 70.5975952445250000, -153.3287258104477600 70.5975778444420100, -153.3290898254350600 70.5975607744102800, -153.3294539789179700 70.5975440335303700, -153.3298182672991700 70.5975276218023900, -153.3301826887800400 70.5975115401255400, -153.3305472406626000 70.5974957876005600, -153.3309119193495700 70.5974803651267800, -153.3312767221429700 70.5974652727042600, -153.3316416472442000 70.5974505112321800, -153.3320066919552300 70.5974360789119800, -153.3323718526788200 70.5974219766429800, -153.3327371276163300 70.5974082053244800, -153.3331025131704200 70.5973947640571900, -153.3334680075424800 70.5973816537404000, -153.3338336071352300 70.5973688743741300, -153.3341993101500000 70.5973564250590500, -153.3345651138888600 70.5973443066944800, -153.3349310147545000 70.5973325201796900, -153.3352970100489500 70.5973210637161500, -153.3356630979735700 70.5973099391024400, -153.3360292758303800 70.5972991454392500, -153.3363955400221200 70.5972886827265700, -153.3367618887501500 70.5972785518637200, -153.3371283184171400 70.5972687519513900, -153.3374948263251600 70.5972592838888900, -153.3378614106755400 70.5972501467769000, -153.3382280687703200 70.5972413424140700, -153.3385947970122300 70.5972328690017400, -153.3389615927033000 70.5972247274392500, -153.3393284540448700 70.5972169177266600, -153.3396953774396800 70.5972094407631500, -153.3400623610890500 70.5972022947501600, -153.3404294013957400 70.5971954805870000, -153.3407964956617200 70.5971889991730600, -153.3411636420884000 70.5971828496088800, -153.3415308370784400 70.5971770327938700, -153.3418980788332500 70.5971715469294200, -153.3422653628561800 70.5971663947133800, -153.3426326882479300 70.5971615734479200, -153.3430000523105400 70.5971570849315500, -153.3433674505473600 70.5971529291644000, -153.3437348820591200 70.5971491052470700, -153.3441023432485200 70.5971456140789000, -153.3444698314175700 70.5971424556598800, -153.3448373438683000 70.5971396290906900, -153.3452048788021000 70.5971371352706600, -153.3455724317223000 70.5971349733004600, -153.3459400017296700 70.5971331449787300, -153.3463075852268400 70.5971316485068300, -153.3466751795159000 70.5971304838847700, -153.3470427818988400 70.5971296529112400, -153.3474103896777200 70.5971291537874800, -153.3477780001545600 70.5971289874128700, -153.3481456106314000 70.5971291537874800, -153.3485132184102600 70.5971296529112400, -153.3488808207932300 70.5971304838847700, -153.3492484150822600 70.5971316485068300, -153.3496159985794500 70.5971331449787300, -153.3499835676874700 70.5971349733004600, -153.3503511215070300 70.5971371352706600, -153.3507186555415000 70.5971396290906900, -153.3510861688915600 70.5971424556598800, -153.3514536570606000 70.5971456140789000, -153.3518211182499700 70.5971491052470700, -153.3521885488624200 70.5971529291644000, -153.3525559479985800 70.5971570849315500, -153.3529233111618500 70.5971615734479200, -153.3532906365536000 70.5971663947133800, -153.3536579214758700 70.5971715469294200, -153.3540251623313400 70.5971770327938700, -153.3543923573214200 70.5971828496088800, -153.3547595037480600 70.5971889991730600, -153.3551265989134000 70.5971954805870000, -153.3554936392200400 70.5972022947501600, -153.3558606219701000 70.5972094407631500, -153.3562275462642200 70.5972169177266600, -153.3565944067064800 70.5972247274392500, -153.3569612032968600 70.5972328690017400, -153.3573279315387800 70.5972413424140700, -153.3576945887342600 70.5972501467769000, -153.3580611730846500 70.5972592838888900, -153.3584276818919800 70.5972687519513900, -153.3587941115589800 70.5972785518637200, -153.3591604602869700 70.5972886827265700, -153.3595267244787000 70.5972991454392500, -153.3598929014362000 70.5973099391024400, -153.3602589902601500 70.5973210637161500, -153.3606249855546000 70.5973325201796900, -153.3609908864202400 70.5973443066944800, -153.3613566901590800 70.5973564250590500, -153.3617223931738600 70.5973688743741300, -153.3620879927666200 70.5973816537404000, -153.3624534871386800 70.5973947640571900, -153.3628188726928000 70.5974082053244800, -153.3631841476302800 70.5974219766429800, -153.3635493083538700 70.5974360789119800, -153.3639143530649000 70.5974505112321800, -153.3642792781661200 70.5974652727042600, -153.3646440809595500 70.5974803651267800, -153.3650087596465000 70.5974957876005600, -153.3653733106297600 70.5975115401255400, -153.3657377321106300 70.5975276218023900, -153.3661020204918000 70.5975440335303700, -153.3664661739747100 70.5975607744102800, -153.3668301889620000 70.5975778444420100, -153.3671940636551000 70.5975952445250000, -153.3675577944566200 70.5976129728604700, -153.3679213795679700 70.5976310303478300, -153.3682848153919000 70.5976494169870500, -153.3686481001297000 70.5976681327781500, -153.3690112301841000 70.5976871759224900, -153.3693742037564800 70.5977065482187000, -153.3697370181488400 70.5977262487674000, -153.3700996697639300 70.5977462775687200, -153.3704621568030600 70.5977666337232100, -153.3708244756690000 70.5977873181302600, -153.3711866245630500 70.5978083307899200, -153.3715486007872600 70.5978296699033800, -153.3719104007443800 70.5978513372694500, -153.3722720226357000 70.5978733310894300, -153.3726334637633200 70.5978956522626000, -153.3729947214292200 70.5979183007889900, -153.3733557920361400 70.5979412757693000, -153.3737166746847700 70.5979645772035300, -153.3740773648784500 70.5979882050916700, -153.3744378608186000 70.5980121585343500, -153.3747981607065200 70.5980364384309400, -153.3751582600456200 70.5980610447814500, -153.3755181570372800 70.5980859757872300, -153.3758778498828400 70.5981112332468700, -153.3762373340856600 70.5981368153617800, -153.3765966087464700 70.5981627230313000, -153.3769556702679300 70.5981889553560800, -153.3773145159521200 70.5982155123360800, -153.3776731431010500 70.5982423939713600, -153.3780315499160700 70.5982695993626000, -153.3783897336992000 70.5982971294090500, -153.3787476908532300 70.5983249832114600, -153.3791054186801000 70.5983531607698200, -153.3794629153812000 70.5983816620840800, -153.3798201782586000 70.5984104862549800, -153.3801772037149400 70.5984396341818300, -153.3805339908509800 70.5984691040659400, -153.3808905351700400 70.5984988977060100, -153.3812468348735000 70.5985290124040700, -153.3816028872634000 70.5985594499587100, -153.3819586896417800 70.5985902103699900, -153.3823142393106600 70.5986212909398900, -153.3826695344714000 70.5986526943664200, -153.3830245715267300 70.5986844179515700, -153.3833793477786600 70.5987164634940400, -153.3837338614285400 70.5987488291951900, -153.3840881088791000 70.5987815159542700, -153.3844420883317000 70.5988145228719800, -153.3847957970883400 70.5988478499483600, -153.3851492324510800 70.5988814971834100, -153.3855023908226400 70.5989154636777700, -153.3858552713037000 70.5989497494314300, -153.3862078693976200 70.5989843544444400, -153.3865601842051000 70.5990192778174900, -153.3869122130281800 70.5990545204498400, -153.3872639513702400 70.5990900814421700, -153.3876153983319500 70.5991259598951600, -153.3879665512153300 70.5991621567082500, -153.3883174073224600 70.5991986709819300, -153.3886679630560000 70.5992355018170200, -153.3890182175167000 70.5992726501127700, -153.3893681671072000 70.5993101149699100, -153.3897178091295600 70.5993478963883400, -153.3900671408858000 70.5993859943682200, -153.3904161605773300 70.5994244080100700, -153.3907648646067800 70.5994631364146700, -153.3911132511755700 70.5995021813806100, -153.3914613175857000 70.5995415402099400, -153.3918090611392400 70.5995812147013500, -153.3921564800375000 70.5996212030561300, -153.3925035697838800 70.5996615052743000, -153.3928503294791000 70.5997021222551700, -153.3931967564251400 70.5997430522001500, -153.3935428470247500 70.5997842951092000, -153.3938886003785700 70.5998258518816300, -153.3941790670103000 70.5998610369573500, -153.3944692917244000 70.5998964423669700, -153.3947592727222400 70.5999320690098100, -153.3950490082051500 70.5999679159866100, -153.3953384963744800 70.6000039832972600, -153.3956277363309400 70.6000402709418000, -153.3959167253765400 70.6000767780209300, -153.3962054635113000 70.6001135054339700, -153.3964939489365500 70.6001504522815800, -153.3967821789543700 70.6001876176644600, -153.3970701535647000 70.6002250033812400, -153.3973578709689300 70.6002626067339600, -153.3976453284691000 70.6003004295212700, -153.3979325251658800 70.6003384708438400, -153.3982194601599400 70.6003767307016100, -153.3985061316526200 70.6004152090947000, -153.4129252938671800 70.6023562158667300, -153.4131948260803400 70.6023925961414400, -153.4134641217717700 70.6024291697704000, -153.4137331800422000 70.6024659358543000, -153.4140020008916000 70.6025028943931300, -153.4142705816220200 70.6025400453868300, -153.4145389222334500 70.6025773879361500, -153.4148070200279200 70.6026149229404000, -153.4150748750054400 70.6026526495002100, -153.4153424853673800 70.6026905676156400, -153.4156098502144000 70.6027286772866800, -153.4158769677478300 70.6027669785133300, -153.4161438370684000 70.6028054703962200, -153.4164104563774300 70.6028441529353500, -153.4166768256749300 70.6028830261308300, -153.4169429431622700 70.6029220908818600, -153.4172088070408000 70.6029613444905000, -153.4174744173104700 70.6030007896548000, -153.4177397712734000 70.6030404236766500, -153.4180048680302000 70.6030802483548400, -153.4182697066816000 70.6031202618906400, -153.4185342872275400 70.6031604660827300, -153.4187986060708000 70.6032008582331000, -153.4190626632113200 70.6032414401403800, -153.4193264577498000 70.6032822109053800, -153.4195899878876000 70.6033231696286500, -153.4198532527254000 70.6033643172095300, -153.4201162513638800 70.6034056536480500, -153.4203789811050700 70.6034471780448600, -153.4206414428482800 70.6034888895006800, -153.4209036338955600 70.6035307898141600, -153.4211655533475800 70.6035728771866000, -153.4214271994057000 70.6036151516179900, -153.4216885720699000 70.6036576131084000, -153.4219496695416000 70.6037002625571400, -153.4222104909214000 70.6037430972662000, -153.4224710344106800 70.6037861199335500, -153.4227312991101300 70.6038293278612600, -153.4229912841204300 70.6038727228479400, -153.4232509876429400 70.6039163030949900, -153.4235104087783300 70.6039600695016800, -153.4237695466272600 70.6040040211686900, -153.4240283993911000 70.6040481580960800, -153.4242869661705000 70.6040924802837800, -153.4245452460662300 70.6041369877318600, -153.4248032372795500 70.6041816795409400, -153.4250609389111700 70.6042265557110200, -153.4253183500618000 70.6042716171414800, -153.4255754689327200 70.6043168611343000, -153.4258322946246600 70.6043622903874300, -153.4260888253389800 70.6044079031023000, -153.4263450610756600 70.6044536983795300, -153.4266010009354200 70.6044996780177600, -153.4268566413209000 70.6045458402184000, -153.4271119840308000 70.6045921849814100, -153.4273670254678200 70.6046387123067800, -153.4276217656319500 70.6046854230938800, -153.4278762036238700 70.6047323146446500, -153.4281303367456200 70.6047793887578300, -153.4283841658965200 70.6048266454333800, -153.4286376883786000 70.6048740828727000, -153.4288909032925000 70.6049217010756800, -153.4291438106383200 70.6049695009417600, -153.4293964068186800 70.6050174824708800, -153.4296486936323000 70.6050656438644000, -153.4299671327769400 70.6051267770791400, -153.4302850718985000 70.6051881989762400, -153.4306025073997500 70.6052499077570700, -153.4309194374820300 70.6053119034216400, -153.4312358594473300 70.6053741850706200, -153.4315517714970300 70.6054367536033300, -153.4318671709331700 70.6054996072211300, -153.4321820550577500 70.6055627459240300, -153.4324964211728600 70.6056261688127000, -153.4328102683791400 70.6056898758871000, -153.4331235939786500 70.6057538671473100, -153.4334363943740700 70.6058181416939300, -153.4337486686660800 70.6058826986276800, -153.4340604141567600 70.6059475370492500, -153.4343716281480900 70.6060126587572700, -153.4346823088414500 70.6060780601544000, -153.4349924535388800 70.6061437430393500, -153.4353020595423800 70.6062097065128000, -153.4356111259526800 70.6062759496754200, -153.4359196491724300 70.6063424716278400, -153.4362276274030400 70.6064092732693800, -153.4365350579465400 70.6064763528015100, -153.4368419390042400 70.6065437102241200, -153.4371482687775500 70.6066113446378800, -153.4374540436691600 70.6066792560428700, -153.4377592627797400 70.6067474435397500, -153.4380639234113000 70.6068159071284600, -153.4383680228659400 70.6068846459097600, -153.4386715584456300 70.6069536598835700, -153.4389745292510800 70.6070229481505900, -153.4392769325843300 70.6070925098115400, -153.4395787657474000 70.6071623448663700, -153.4398800260423500 70.6072324533151300, -153.4401807125698000 70.6073028333591400, -153.4404808226318300 70.6073734849983900, -153.4407803535304700 70.6074444082329400, -153.4410793043663800 70.6075156012640300, -153.4413776706429600 70.6075870658904100, -153.4416754514609000 70.6076587985148200, -153.4419726450215000 70.6077308018350900, -153.4422692486269000 70.6078030722540600, -153.4425652604783500 70.6078756115702500, -153.4428606778779500 70.6079484179851400, -153.4431554981277000 70.6080214914986800, -153.4434497203283000 70.6080948321108500, -153.4437433408824300 70.6081684380230300, -153.4440363588908300 70.6082423083358900, -153.4443287716554500 70.6083164448481300, -153.4446205773777200 70.6083908448616700, -153.4449117733596200 70.6084655083765800, -153.4452023578025400 70.6085404353928500, -153.4454923280085000 70.6086156250111700, -153.4457816821788500 70.6086910763321500, -153.4460704176156600 70.6087667893559100, -153.4463585334195600 70.6088427631830200, -153.4466460268926000 70.6089189969142100, -153.4469328953368300 70.6089954914488100, -153.4472191378529000 70.6090722440888500, -153.4475047508435400 70.6091492557336000, -153.4477897325101300 70.6092265254838500, -153.4480740819532800 70.6093040533394300, -153.4483577955758000 70.6093818375018700, -153.4486408715789300 70.6094598779710600, -153.4489233090634500 70.6095381738476800, -153.4493285588658600 70.6096512761855000, -153.4497324749737000 70.6097649046267300, -153.4501350501924000 70.6098790573726700, -153.4505362791259400 70.6099937335240500, -153.4509361545798400 70.6101089312821800, -153.4513346720574400 70.6102246488485400, -153.4517318234648500 70.6103408835250000, -153.4521276043054700 70.6104576344123400, -153.4525220073847200 70.6105748988125600, -153.4529150273066300 70.6106926767257000, -153.4533066577760000 70.6108109645544500, -153.4536968924975600 70.6109297613994000, -153.4540857260753600 70.6110490654620500, -153.4544731522141800 70.6111688740443800, -153.4548591646187000 70.6112891862470000, -153.4552437578930700 70.6114100002713500, -153.4657981150909000 70.6147376447265700, -153.4661398583677400 70.6148457414378800, -153.4664804640022000 70.6149542329515600, -153.4668199292962600 70.6150631192675700, -153.4671582497534000 70.6151723985873900, -153.4674954208769300 70.6152820700115700, -153.4678314390696400 70.6153921317415400, -153.4681662998348500 70.6155025828779800, -153.4684999986759800 70.6156134216221900, -153.4688325328950500 70.6157246461755200, -153.4691638961968200 70.6158362556387300, -153.4694940867826500 70.6159482500118000, -153.4698230992566000 70.6160606256974000, -153.4701509300213600 70.6161733826955400, -153.4704775754797000 70.6162865192075600, -153.4708030302356300 70.6164000334348400, -153.4711272924905400 70.6165139253774300, -153.4714503559491400 70.6166281923372600, -153.4717722179135000 70.6167428334150600, -153.4720928747863000 70.6168578468122500, -153.4724123220709700 70.6169732316294000, -153.4727305561702000 70.6170889860679300, -153.4730475725873800 70.6172051092284500, -153.4733633677252000 70.6173215993123900, -153.4736779370871000 70.6174384554204300, -153.4739912788744000 70.6175556748545400, -153.4743033867918300 70.6176732576148000, -153.4746142590408000 70.6177912010031700, -153.4749238902253000 70.6179095050197200, -153.4752322776474800 70.6180281678657000, -153.4755394168106200 70.6181471868432600, -153.4758453041174600 70.6182665610530200, -153.4761499359707400 70.6183862904949800, -153.4763865772787000 70.6184798847389200, -153.4766224514649500 70.6185736930215700, -153.4768575558315100 70.6186677144435200, -153.4770918903784000 70.6187619481054900, -153.4773254524076800 70.6188563931081000, -153.4775582401206600 70.6189510485521000, -153.4777902508194000 70.6190459144374400, -153.4780214854032000 70.6191409907641500, -153.4782519393754700 70.6192362748343000, -153.4784816127362000 70.6193317675470700, -153.4787105027874400 70.6194274671040000, -153.4789386095291700 70.6195233735049300, -153.4791659284648000 70.6196194858506500, -153.4793924604936000 70.6197158032417700, -153.4796182020183700 70.6198123256783700, -153.4798431530390400 70.6199090513616700, -153.4800673108577000 70.6200059802918100, -153.4802906736756300 70.6201031115693900, -153.4805132405935500 70.6202004442951100, -153.4807350089135000 70.6202979784690100, -153.4809559786354800 70.6203957122923500, -153.4811761461622000 70.6204936457651800, -153.4813955105943000 70.6205917779882400, -153.4816140710325000 70.6206901089614100, -153.4818318247788500 70.6207886359868000, -153.4820487709340000 70.6208873608631000, -153.4822649076993000 70.6209862808922300, -153.4824802332761000 70.6210853960742500, -153.4826947458657900 70.6211847055097900, -153.4829084445690300 70.6212842082996400, -153.4831213275871600 70.6213839044436900, -153.4833333931215700 70.6214837930426700, -153.4835446393735800 70.6215838722979500, -153.4837550645445700 70.6216841431087800, -153.4839646686345000 70.6217846027772700, -153.4841734480461600 70.6218852522026700, -153.4843814027795000 70.6219860904857300, -153.4845885301365300 70.6220871158278100, -153.4847948292179800 70.6221883282288400, -153.4850002982251500 70.6222897267895200, -153.4852049362587800 70.6223913106105700, -153.4854087406208400 70.6224930796919400, -153.4856117104121000 70.6225950322349800, -153.4858138447331200 70.6226971682397700, -153.4860151408860200 70.6227994868069100, -153.4862155988707600 70.6229019870371500, -153.4864152150900600 70.6230046680310600, -153.4866139895439400 70.6231075288894200, -153.4868119213330700 70.6232105696121300, -153.4870090068601500 70.6233137884006500, -153.4872052470245000 70.6234171852549400, -153.4874006382288500 70.6235207592756600, -153.4875951804731600 70.6236245095635100, -153.4877888719588600 70.6237284361184800, -153.4879817108872300 70.6238325362426200, -153.4881736963589800 70.6239368117345500, -153.4883648265754600 70.6240412589969500, -153.4885550997380200 70.6241458798285700, -153.4887445149473700 70.6242506715313400, -153.4889330704048400 70.6243556350046300, -153.4891207652111000 70.6244607684497500, -153.4893075984668700 70.6245660709674300, -153.4894935674741400 70.6246715416583600, -153.4896786704342700 70.6247771805225300, -153.4898599215980800 70.6248812653581700, -153.4900403318957800 70.6249855120717600, -153.4902199013273500 70.6250899179654000, -153.4903986280941700 70.6251944839383400, -153.4905765112969200 70.6252992081919600, -153.4907535491369400 70.6254040898269300, -153.4909297407149300 70.6255091288433000, -153.4911050851315500 70.6256143252409700, -153.4912795796888400 70.6257196763220300, -153.4914532252860800 70.6258251820865400, -153.4916260183260600 70.6259308425343900, -153.4917979597080400 70.6260366558670400, -153.4919690467340800 70.6261426220843900, -153.4921392785048800 70.6262487402871700, -153.4923086541210800 70.6263550086767400, -153.4924771717840300 70.6264614281524200, -153.4926448314937500 70.6265679978149000, -153.4928116305522700 70.6266747149661600, -153.4929775680603000 70.6267815805055600, -153.4931426431184600 70.6268885935338000, -153.4933068548274700 70.6269957531515600, -153.4934702013886500 70.6271030584594500, -153.4936326828020300 70.6272105085581600, -153.4937942963696600 70.6273181025484300, -153.4939550411921800 70.6274258404302500, -153.4941149163702800 70.6275337204049300, -153.4942739219039500 70.6276417424725200, -153.4944320541959300 70.6277499057336000, -153.4945893141455100 70.6278582092890000, -153.4947456999540500 70.6279666522392500, -153.4949012107222800 70.6280752336851400, -153.4950558446515000 70.6281839536266000, -153.5017441809491700 70.6329015021027000, -153.5017570430530600 70.6329105744635000, -153.5079931219849500 70.6373093870186600, -153.5144913496960200 70.6417095899257100, -153.5146849467528500 70.6418411904186300, -153.5148772487859800 70.6419729995543500, -153.5150682539967000 70.6421050164333900, -153.5152579605863800 70.6422372392572700, -153.5154463658570600 70.6423696662271800, -153.5156334680101200 70.6425022973431900, -153.5158192643475600 70.6426351299073800, -153.5160037548693600 70.6427681630203800, -153.5161869359782800 70.6429013957828700, -153.5163688058756600 70.6430348254968400, -153.5165493627628500 70.6431684512630800, -153.5167286057405200 70.6433022721821500, -153.5169065303121000 70.6434362873548600, -153.5170831373768600 70.6435704931837400, -153.5172584233375500 70.6437048896689800, -153.5174323863954800 70.6438394759111400, -153.5176050256514000 70.6439742492123000, -153.5177763375079400 70.6441092095724300, -153.5179463219651600 70.6442443533942400, -153.5181149763250800 70.6443796815771000, -153.5182822987890200 70.6445151914230100, -153.5184482884577000 70.6446508820326400, -153.5186129417338300 70.6447867507080200, -153.5187762577181000 70.6449227974492300, -153.5189382355111400 70.6450590204575000, -153.5190988715156700 70.6451954188335700, -153.5192581657317400 70.6453319889801600, -153.5194161154613300 70.6454687317966000, -153.5195727198051500 70.6456056445848600, -153.5197279760652000 70.6457427264457500, -153.5198818833422000 70.6458799755804400, -153.5200344389381800 70.6460173910898000, -153.5201423917579600 70.6461154738501000, -153.5202496556970300 70.6462136393480500, -153.5203562307554300 70.6463118875835800, -153.5204621169331200 70.6464102176574900, -153.5205673124315000 70.6465086295696700, -153.5206718172505300 70.6466071224208500, -153.5207756313902500 70.6467056953116500, -153.5208787530520000 70.6468043491414600, -153.5209811831350600 70.6469030812122600, -153.5210829198408400 70.6470018924234800, -153.5211839631693400 70.6471007818756200, -153.5212843122212000 70.6471997495688700, -153.5213839669964400 70.6472987937044100, -153.5214829265957500 70.6473979151816700, -153.5215811910191200 70.6474971122020200, -153.5216787584678900 70.6475963856647100, -153.5217756289421000 70.6476957328718500, -153.5218718024417000 70.6477951556219600, -153.5219672789667000 70.6478946521165800, -153.5220620558192000 70.6479942223555200, -153.5221561347977400 70.6480938645402700, -153.5222495141037800 70.6481935804694100, -153.5223421928379000 70.6482933674450400, -153.5224341718994800 70.6483932254670300, -153.5225254494898800 70.6484931545355200, -153.5226160265084000 70.6485931537511100, -153.5227059002570500 70.6486932231138100, -153.5227950725345400 70.6487933608249800, -153.5228835415421700 70.6488935677840000, -153.5229713072800000 70.6489938421921100, -153.5230583688486000 70.6490941840494300, -153.5231447262481000 70.6491945933558400, -153.5278997521718000 70.6547462342513800, -153.5280146009930000 70.6548810857935300, -153.5281281781728600 70.6550160560461800, -153.5282404846106500 70.6551511432107300, -153.5283515167091000 70.6552863454884900, -153.5284612744682000 70.6554216628795200, -153.5285697578880000 70.6555570926857400, -153.5286769633711400 70.6556926349072100, -153.5287828927163000 70.6558282868460300, -153.5288875423261700 70.6559640476027700, -153.5289909131001300 70.6560999171774700, -153.5290930023401500 70.6562358928721900, -153.5291938100462800 70.6563719728882800, -153.5292933353191500 70.6565081572257400, -153.5293915772594500 70.6566444440858800, -153.5294885340685800 70.6567808316701200, -153.5295842048471400 70.6569173190790700, -153.5296785895952000 70.6570539054134800, -153.5297716865141000 70.6571905888746400, -153.5298634947045000 70.6573273676639200, -153.5299540132670600 70.6574642408820600, -153.5300432422018300 70.6576012067303600, -153.5301311788108200 70.6577382652088200, -153.5302178239933500 70.6578754136194800, -153.5303031759508000 70.6580126510630700, -153.5303872346831000 70.6581499766401700, -153.5304699974923600 70.6582873885522000, -153.5305514652778800 70.6584248858998200, -153.5306316371403200 70.6585624659850900, -153.5307105112810300 70.6587001288079400, -153.5307880877000500 70.6588378734691700, -153.5308643654980500 70.6589756972706500, -153.5309393428763400 70.6591135993132300, -153.5310011361934500 70.6592291505049300, -153.5310620166986800 70.6593447547566600, -153.5311219843920300 70.6594604111691000, -153.5311810383742000 70.6595761197422100, -153.5342754400594700 70.6656858843961100, -153.5343293966842900 70.6657931843080900, -153.5343825682009300 70.6659005264881400, -153.5344349537101000 70.6660079118357200, -153.5344865523125000 70.6661153385520600, -153.5345373649074400 70.6662228066372800, -153.5345873896962400 70.6663303160912600, -153.5346366275782700 70.6664378642161000, -153.5346850785535000 70.6665454519111300, -153.5364670033495000 70.6705340980702200, -153.5367292321683000 70.6705763877901000, -153.5370605181283800 70.6706301843356100, -153.5373913625213300 70.6706842785566800, -153.5377217617498800 70.6707386713526400, -153.5380517131160300 70.6707933618242200, -153.5383812157205000 70.6708483490721200, -153.5387102650666400 70.6709036339955800, -153.5390388611545000 70.6709592147959700, -153.5393669994874000 70.6710150914733500, -153.5396946782667600 70.6710712640276600, -153.5400218956939000 70.6711277324589600, -153.5403486490708600 70.6711844949685400, -153.5406749348003600 70.6712415515564200, -153.5410007519831000 70.6712989022225900, -153.5413260979210600 70.6713565469671000, -153.5416509699163000 70.6714144839913300, -153.5419753652708700 70.6714727141944600, -153.5422992812867700 70.6715312366773100, -153.5426227170647200 70.6715900505404300, -153.5429456690074000 70.6716491566833200, -153.5432681353161700 70.6717085524078400, -153.5435901123937300 70.6717682395126900, -153.5439115993408200 70.6718282170986100, -153.5442325934593800 70.6718884833668400, -153.5445530920515300 70.6719490392168300, -153.5448730924192400 70.6720098837491800, -153.5451932105981700 70.6720711347750800, -153.5455128251567200 70.6721326753827300, -153.5458319315983400 70.6721945037733700, -153.5461505290236600 70.6722566208464400, -153.5589125689598700 70.6747518339300300, -153.5592106330642300 70.6748102628834000, -153.5595082448096200 70.6748689436469100, -153.5598054050953500 70.6749278771199000, -153.5601021094247800 70.6749870606044000, -153.5603983577979400 70.6750464958991000, -153.5606941475168700 70.6751061812053600, -153.5609894767829000 70.6751661165230900, -153.5612843437974000 70.6752263018523800, -153.5615787467617000 70.6752867362939100, -153.5618726820786000 70.6753474198475800, -153.5621661506473000 70.6754083507148600, -153.5624591479712800 70.6754695306943300, -153.5627516740504700 70.6755309588867200, -153.5630437261869800 70.6755926334933000, -153.5633353016828000 70.6756545545141500, -153.5636263996386000 70.6757167228485600, -153.5639170182557500 70.6757791375972000, -153.5642071557356300 70.6758417969614400, -153.5644968093802200 70.6759047027399000, -153.5647859773909300 70.6759678522346300, -153.5650746579690600 70.6760312472443400, -153.5653628502153400 70.6760948850709400, -153.5656505505324400 70.6761587675131900, -153.5659377589204000 70.6762228927723300, -153.5662244717819000 70.6762872608484800, -153.5665106882176500 70.6763518717415300, -153.5667964064289800 70.6764167236529500, -153.5670816246172600 70.6764818174819400, -153.5673663400845000 70.6765471523292500, -153.5676505510320700 70.6766127281949300, -153.5679342565606800 70.6766785441795400, -153.5682174539723000 70.6767446002831400, -153.5685001423676400 70.6768108956064200, -153.5687823190487500 70.6768774292500000, -153.5690639822170000 70.6769442021133000, -153.5693451300736600 70.6770112123975900, -153.5696257608201700 70.6770784610022200, -153.5699058735572000 70.6771459461285800, -153.5701854646874300 70.6772136686759000, -153.5704645333115400 70.6772816268456800, -153.5707430785302300 70.6773498215370600, -153.5710210967462000 70.6774182518509000, -153.5712985870601000 70.6774869168877400, -153.5715755476733500 70.6775558157483500, -153.5718519767872600 70.6776249493320300, -153.5721278726032000 70.6776943167394000, -153.5724032333225200 70.6777639170711600, -153.5726780571466000 70.6778337503273500, -153.5729523413774300 70.6779038156086600, -153.5732260860150400 70.6779741129150200, -153.5734992874621000 70.6780446413471900, -153.5737719448193600 70.6781154009050900, -153.5740440562881300 70.6781863915887800, -153.5743156200697700 70.6782576107002600, -153.5745866352649800 70.6783290609374700, -153.5748570982764200 70.6784007396025200, -153.5751270082048400 70.6784726466953500, -153.5753963632515400 70.6785447813166500, -153.5756651616178800 70.6786171443657700, -153.5759334024045600 70.6786897349433600, -153.5762010829136300 70.6787625512507700, -153.5764682013464000 70.6788355941873800, -153.5767347559042300 70.6789088628538000, -153.5770007456878300 70.6789823572500500, -153.5772103236974400 70.6790405343932100, -153.5774195482735000 70.6790988509312700, -153.5776284167180300 70.6791573068642800, -153.5778369299303600 70.6792159030915200, -153.5780450861118000 70.6792746378143300, -153.5782528852624300 70.6793335110327800, -153.5784603246842200 70.6793925236461300, -153.5786674061758400 70.6794516747550600, -153.5788741261400000 70.6795109634602500, -153.5790804863753200 70.6795703906610700, -153.5792864841838800 70.6796299554581500, -153.5794921186663000 70.6796896578515000, -153.5796973898226600 70.6797494969417800, -153.5799022976529000 70.6798094736283800, -153.5801068394590300 70.6798695861125500, -153.5803110152411400 70.6799298361930300, -153.5805148240998200 70.6799902220711300, -153.5807182651358000 70.6800507437469000, -153.5809213374497200 70.6801114012202400, -153.5811240410416200 70.6801721944912600, -153.5813263741128500 70.6802331226605200, -153.5815283357640600 70.6802941857281400, -153.5817299259952600 70.6803553836940600, -153.5819311439071300 70.6804167165582800, -153.5821319877010500 70.6804781834214900, -153.5823324573769600 70.6805397842836700, -153.5825325520356200 70.6806015191448300, -153.5827322698783300 70.6806633871057100, -153.5829316118044000 70.6807253890655100, -153.5831305760152400 70.6807875232256600, -153.5833291616115000 70.6808497904855200, -153.5835273685931700 70.6809121899456700, -153.5940818382062500 70.6842408218565200, -153.5940969881854000 70.6842455999545200, -153.6040269613751300 70.6873766364227000, -153.6142266781186800 70.6905103726556400, -153.6145571465950200 70.6906122181793500, -153.6148865916428600 70.6907144261299400, -153.6152150069669600 70.6908169974065600, -153.6155423907687000 70.6909199293113500, -153.6260968756702400 70.6942485594235600, -153.6261073968388800 70.6942518770225700, -153.6360213018415700 70.6973775463367200, -153.6365643286808000 70.6974860765212700, -153.6365946340351000 70.6974921334552300, -153.6442369846491000 70.6990195411189600, -153.6444162069423700 70.6989912286623500, -153.6447036077852300 70.6989461015813800, -153.6449913260887900 70.6989011966329600, -153.6452793609537000 70.6988565147164500, -153.6455677105813600 70.6988120567310700, -153.6458563749717000 70.6987678217776100, -153.6461453505274600 70.6987238116546500, -153.6464346363493700 70.6986800245635400, -153.6467242306387000 70.6986364623029400, -153.6470141333955200 70.6985931248728400, -153.6473043410225000 70.6985500122733000, -153.6475948526203300 70.6985071245042600, -153.6478856663903500 70.6984644624650400, -153.6481767814332800 70.6984220252563200, -153.6484681950511200 70.6983798137774200, -153.6487599063445700 70.6983378289277200, -153.6490519144143000 70.6982960698078400, -153.6493442165623300 70.6982545373171000, -153.6496368118893400 70.6982132323548200, -153.6499296976973600 70.6981721531224100, -153.6502228730871000 70.6981313014184700, -153.6505163371592000 70.6980906772430400, -153.6508100872157200 70.6980502805960200, -153.6511041223573400 70.6980101114775200, -153.6513984398860700 70.6979701707867900, -153.6516930398019300 70.6979304585239000, -153.6519879194069300 70.6978909737894700, -153.6522830769024500 70.6978517183821400, -153.6525785113891500 70.6978126923019700, -153.6528742210684300 70.6977738946495700, -153.6531702041416000 70.6977353263243300, -153.6534664597093000 70.6976969882254600, -153.6537629841743600 70.6976588794538000, -153.6540597784360000 70.6976210000091800, -153.6543568388969700 70.6975833516904100, -153.6546541646579600 70.6975459326986900, -153.6549517548196000 70.6975087457320800, -153.6552496057846600 70.6974717880926300, -153.6555477184524200 70.6974350624782300, -153.6558460892256000 70.6973985670902600, -153.6561447172049000 70.6973623037274000, -153.6564436005916700 70.6973262723896000, -153.6567910320804300 70.6972847165164900, -153.6571388035129400 70.6972434745068200, -153.6574869121912200 70.6972025454611500, -153.6578353554173000 70.6971619293796000, -153.6581841304932000 70.6971216280607600, -153.6585332356203000 70.6970816406052900, -153.6588826672013000 70.6970419670132000, -153.6592324234375700 70.6970026090832000, -153.6595825016311200 70.6969635650165700, -153.6599328990840000 70.6969248375112900, -153.6602836130982400 70.6968864247687600, -153.6606346409758700 70.6968483276882000, -153.6609859800189200 70.6968105471691000, -153.6613376284287800 70.6967730832112700, -153.6616895826081200 70.6967359358148400, -153.6620418407583200 70.6966991049797600, -153.6623943992820800 70.6966625916053900, -153.6627472572800700 70.6966263956916800, -153.6631004102557000 70.6965905181379500, -153.6634538564103000 70.6965549580449400, -153.6638075939452800 70.6965197163119100, -153.6641616183639800 70.6964847938382400, -153.6645159287670600 70.6964501897245400, -153.6648705224566200 70.6964159048701500, -153.6652253949360000 70.6963819383758000, -153.6655805462052000 70.6963482929394300, -153.6659359717676500 70.6963149658630500, -153.6662916689253400 70.6962819598446100, -153.6666476367789800 70.6962492739848500, -153.6670038708319300 70.6962169091830800, -153.6673603692855700 70.6961848645399300, -153.6677171294419400 70.6961531409547200, -153.6680741495023600 70.6961217384275600, -153.6684314249702700 70.6960906578576100, -153.6687889540469600 70.6960598992450300, -153.6691467349338300 70.6960294625897000, -153.6695047640336000 70.6959993478916400, -153.6698630395476000 70.6959695551509000, -153.6702215578785600 70.6959400852667800, -153.6705803163285000 70.6959109391385700, -153.6709393130987800 70.6958821149676700, -153.6712985454914500 70.6958536145527300, -153.6716580099092000 70.6958254378936900, -153.6720177045533800 70.6957975840912800, -153.6723776258267500 70.6957700549441500, -153.6727377728299200 70.6957428495529100, -153.6730981410663300 70.6957159688169600, -153.6734587287373000 70.6956894127362700, -153.6738195322455700 70.6956631804114900, -153.6741805506918300 70.6956372736413000, -153.6745417804787600 70.6956116924257000, -153.6749032180090600 70.6955864358653800, -153.6752648623834700 70.6955615048596000, -153.6756267100046200 70.6955368994084100, -153.6759887572753000 70.6955126204111400, -153.6763510032961300 70.6954886669684600, -153.6767134444698700 70.6954650390803200, -153.6770760780985000 70.6954417385454700, -153.6774389014841000 70.6954187644644800, -153.6778019128280000 70.6953961168374000, -153.6781651076336000 70.6953737956641800, -153.6785284850015500 70.6953518018442500, -153.6788920413346200 70.6953301353775000, -153.6792557739347800 70.6953087962639900, -153.6795545098327400 70.6952915229854300, -153.6798533617432300 70.6952744700408300, -153.6801523269682800 70.6952576383294000, -153.6804514055079400 70.6952410269518600, -153.6807505946641800 70.6952246377069300, -153.6810498935377300 70.6952084687958400, -153.6813493012292300 70.6951925220173500, -153.6816488150407500 70.6951767955727000, -153.6819484349722700 70.6951612912606600, -153.6822481574265000 70.6951460081817800, -153.6825479824034300 70.6951309463361800, -153.6828479090037500 70.6951161057237400, -153.6831479336302000 70.6951014881432200, -153.6834480562827400 70.6950870908966000, -153.6837482760620600 70.6950729166818000, -153.6840485893708600 70.6950589637002600, -153.6990378875884200 70.6943674318116000, -153.7140515376483200 70.6934436958699200, -153.7143806949131000 70.6934235654452400, -153.7147100005660400 70.6934037039178500, -153.7150394528084700 70.6933841112877400, -153.7153690507410600 70.6933647866556500, -153.7157329218368300 70.6933437757946900, -153.7160969638038000 70.6933230913876400, -153.7164611748433200 70.6933027352330900, -153.7168255513580800 70.6932827073311500, -153.7171900906501200 70.6932630067823900, -153.7175547909208400 70.6932436353855000, -153.7179196476735700 70.6932245922412200, -153.7182846600090300 70.6932058773494400, -153.7186498252292200 70.6931874916094800, -153.7190151388375600 70.6931694341221300, -153.7193805999347000 70.6931517057866500, -153.7197462049233800 70.6931343066030400, -153.7201119511056200 70.6931172365712500, -153.7204778366828000 70.6931004956914000, -153.7208438571582600 70.6930840848626800, -153.7212100116327000 70.6930680031858300, -153.7215762974081800 70.6930522515602300, -153.7219427099880400 70.6930368290864500, -153.7223092484730000 70.6930217375631900, -153.7226759083664500 70.6930069751917900, -153.7230426896683800 70.6929925437709100, -153.7234095869828300 70.6929784415019100, -153.7237765985112000 70.6929646710827300, -153.7241437224548000 70.6929512298154300, -153.7245109543170500 70.6929381194986500, -153.7248782931986600 70.6929253401323800, -153.7252457355022600 70.6929128917166200, -153.7256132785299500 70.6929007742513700, -153.7259809195837500 70.6928889868373200, -153.7263486559656700 70.6928775312731000, -153.7267164849777700 70.6928664066593900, -153.7270844039220800 70.6928556129962000, -153.7274524092013000 70.6928451511828400, -153.7278204999161000 70.6928350203199900, -153.7281886724692300 70.6928252204076600, -153.7285569241627000 70.6928157523451500, -153.7289252522985200 70.6928066161324900, -153.7292936532794600 70.6927978117696500, -153.7296621253068200 70.6927893383573300, -153.7300306656826500 70.6927811976941600, -153.7303992717090000 70.6927733879815000, -153.7307679406878800 70.6927659101187400, -153.7311366690220200 70.6927587650050700, -153.7315054549128000 70.6927519508419100, -153.7318742947628600 70.6927454694279000, -153.7322431876729400 70.6927393207631100, -153.7326121282471000 70.6927335030487700, -153.7329811164853200 70.6927280180836400, -153.7333501478909700 70.6927228649682900, -153.7337192197661600 70.6927180446021500, -153.7340883303121800 70.6927135560857800, -153.7344574759317500 70.6927094003186200, -153.7348266548262400 70.6927055764013000), (-161.6081928829951300 70.2740416131300100, -161.6076780409088400 70.2736879169638700, -161.6056318970943600 70.2738896447913200, -161.6022584168924000 70.2741688537096800, -161.6006140218196000 70.2742794847105200, -161.6012553157801800 70.2743762400714900, -161.6043713794355800 70.2748945265611800, -161.6059760352658000 70.2751914305401300, -161.6062837122235000 70.2752427071852700, -161.6073900222317300 70.2754499505548400, -161.6078810044048000 70.2755272724657000, -161.6079769719596600 70.2755085054132600, -161.6082768715803300 70.2755377315811000, -161.6089241028650200 70.2756019782487400, -161.6110700246618700 70.2757460235602000, -161.6098600399088800 70.2750708404469700, -161.6081928829951300 70.2740416131300100), (-161.5266599973609500 70.2692708265874400, -161.5259399884397000 70.2690752573173500, -161.5248092276637000 70.2691688686484200, -161.5214036506579300 70.2693980428854300, -161.5190286724352700 70.2695225279423400, -161.5197533497372700 70.2695937938185600, -161.5207441822981600 70.2696325159279200, -161.5238489189924000 70.2697959758036700, -161.5272549447598700 70.2700245636827400, -161.5300190380481500 70.2702527648533000, -161.5308074224245700 70.2702701991104800, -161.5294588116748000 70.2699652857693900, -161.5266599973609500 70.2692708265874400), (-162.3555717219573800 70.1338934562180600, -162.3557872067141800 70.1337729875334000, -162.3551229134916400 70.1339241788578000, -162.3535331531324700 70.1342527506639600, -162.3533239033754000 70.1343052404944800, -162.3506369656234400 70.1350491956639000, -162.3481192946697000 70.1356779737595300, -162.3466542855667900 70.1363589035406100, -162.3444974136247000 70.1372746256235500, -162.3418276412326400 70.1383040651805300, -162.3390065992751000 70.1392858001995600, -162.3327002716002300 70.1413707353712000, -162.3306135269926400 70.1420359638887000, -162.3284572566970200 70.1426750805905500, -162.3257674015443000 70.1434101720418500, -162.3242474105895000 70.1437896301873100, -162.3240380933832800 70.1438868846720400, -162.3218804372323500 70.1448026067549800, -162.3205366306609400 70.1453338317909400, -162.3191524957910300 70.1458529672407300, -162.3177289706154600 70.1463596587713000, -162.3162670228048200 70.1468535610430900, -162.3121406472730300 70.1482114959638400, -162.3110941682612300 70.1487450061771400, -162.3090556920665000 70.1496918717825200, -162.3068974324705000 70.1506075929660800, -162.3043888806423000 70.1515772069226400, -162.3017460258584000 70.1525047514931500, -162.2705500558403700 70.1629313806787400, -162.2683068633710000 70.1636518392610400, -162.2673066697669800 70.1639488331721900, -162.2662485040651700 70.1643406668883400, -162.2645911425671600 70.1649185343629300, -162.2628833920548700 70.1654792445715400, -162.2616612511657800 70.1658686132459500, -162.2600670337665700 70.1663627907102500, -162.2584336670800600 70.1668420151469300, -162.2557406714947800 70.1675771056989100, -162.2529556159089200 70.1682715693774500, -162.2500838108191800 70.1689240796826000, -162.2471307312981700 70.1695333910532200, -162.2441020115985300 70.1700983397666400, -162.2410034298643800 70.1706178466363900, -162.2400376937845000 70.1707623083339000, -162.2391314847302000 70.1709313368118000, -162.2390273531298000 70.1709487944513600, -162.2383254367694600 70.1716536057293800, -162.2374132373310000 70.1724527424002000, -162.2368855313421800 70.1730701809441400, -162.2357785387485500 70.1741816009002300, -162.2345296466258700 70.1752755650154000, -162.2331412129965400 70.1763499877618000, -162.2316158638810000 70.1774028204838500, -162.2312926115647500 70.1776033189380500, -162.2307580050778300 70.1780169845962400, -162.2292325327551600 70.1790698164189700, -162.2275730218774200 70.1800990518298100, -162.2257826173738500 70.1811027267095300, -162.2253447401676000 70.1813256029942600, -162.2246093582352600 70.1819695517534700, -162.2232204758442400 70.1830439736005500, -162.2216946339002000 70.1840968054232800, -162.2200347201262000 70.1851260408341800, -162.2182438803507700 70.1861297148145700, -162.2163255122126000 70.1871059145063900, -162.2145271037428200 70.1879397209414200, -162.2148285394055400 70.1878458128340400, -162.2166548961065500 70.1873106253851200, -162.2193539890952800 70.1865770268083800, -162.2221446582493600 70.1858840200315500, -162.2250215975686600 70.1852329207627600, -162.2279793418731000 70.1846249637711100, -162.2310122721985700 70.1840613028869000, -162.2341146301860000 70.1835430074039000, -162.2372805243766700 70.1830710602812400, -162.2405039463999700 70.1826463572436400, -162.2437787790673800 70.1822697031843200, -162.2470988089628500 70.1819418130642700, -162.2496252411119700 70.1817386939856100, -162.2497144421677400 70.1817249379555500, -162.2524970497990000 70.1810787193075000, -162.2644144572613500 70.1770781139638300, -162.2649012413991400 70.1769217524369500, -162.2655776062215000 70.1763335904229300, -162.2669735716729600 70.1752602927284100, -162.2685059948557600 70.1742086695944600, -162.2701719439800000 70.1731807211134500, -162.2719682336470400 70.1721783988140800, -162.2738914329432600 70.1712036074606000, -162.2759378708360300 70.1702581987569300, -162.2781036442677300 70.1693439677499700, -162.2804187869974000 70.1684500254483500, -162.2828479880441800 70.1675917133869100, -162.2865419650396200 70.1663428617337100, -162.2890073449130200 70.1655443662795600, -162.2915714010992500 70.1647825820505800, -162.2942675524055900 70.1640489807758700, -162.2970551791531800 70.1633559713010900, -162.2999289834358200 70.1627048693343300, -162.3004074965087400 70.1626064043621200, -162.3015311868148000 70.1620365975110200, -162.3035767163923000 70.1610911870087100, -162.3057415284487500 70.1601769551024300, -162.3065043172204300 70.1598653831809400, -162.3067427364880800 70.1596956559298500, -162.3070564308096000 70.1594542850872400, -162.3085876803771200 70.1584026601547000, -162.3102523533633800 70.1573747089756800, -162.3120472679670200 70.1563723848777300, -162.3139689950730300 70.1553975908262300, -162.3160138672461400 70.1544521794246000, -162.3181779841266300 70.1535379466190000, -162.3206314731639300 70.1525923472590900, -162.3222568125018800 70.1520221078340600, -162.3238701324006600 70.1512035862765500, -162.3257299294926000 70.1503435664025100, -162.3260878524724000 70.1500976539836100, -162.3277518563630500 70.1490697019052600, -162.3281135942669400 70.1488795141783000, -162.3282312957376800 70.1488018631155200, -162.3295127684994300 70.1478152780526900, -162.3310431556171200 70.1467636522208400, -162.3327068906105000 70.1457356992431800, -162.3345007943761400 70.1447333724472600, -162.3364214395977300 70.1437585774963800, -162.3384651597393100 70.1428131642961700, -162.3406280589377400 70.1418989296919300, -162.3429811161855400 70.1409898374111000, -162.3441599403289500 70.1405737228990300, -162.3445669276215700 70.1402602749917600, -162.3460967544616300 70.1392086473612200, -162.3477598815133000 70.1381806934842900, -162.3481729374311000 70.1379498177299800, -162.3486852101543000 70.1375976459147000, -162.3503482077036000 70.1365696911383900, -162.3521413155692400 70.1355673643424200, -162.3540611091328600 70.1345925675929600, -162.3553527109588000 70.1340051655060400, -162.3555717219573800 70.1338934562180600), (-162.4263401489786500 70.0917366165516600, -162.4265675740343000 70.0915967135175600, -162.4244548956768600 70.0920336131607700, -162.4226104688980000 70.0923789447325600, -162.4222567556447200 70.0925992471575800, -162.4204738820640000 70.0936029283325300, -162.4185640493913400 70.0945791343196400, -162.4165308845926200 70.0955260035223100, -162.4143782475580600 70.0964417283031500, -162.4129666959562100 70.0970002702463300, -162.4115106665839800 70.0975454095930100, -162.4100112539162000 70.0980767371517600, -162.4084695839041500 70.0985938518248300, -162.4046352829918800 70.0998450192323000, -162.4027896870943600 70.1004279310042800, -162.4028510820118000 70.1057936964219800, -162.4027805230027200 70.1069885581754900, -162.4026703821324000 70.1075723422898100, -162.4029444882974600 70.1074026680987000, -162.4047350699674700 70.1064003368061300, -162.4066521601690200 70.1054255355600700, -162.4086920995607000 70.1044801169638800, -162.4108509967760500 70.1035658769637300, -162.4131253795326000 70.1026862140975600, -162.4133469473037500 70.1026040484381400, -162.4155099751052400 70.1018406193491600, -162.4159746817861000 70.1016835140829900, -162.4179369809069200 70.1010360139009700, -162.4180658366690000 70.1006399551698700, -162.4185941290158200 70.0994806103419700, -162.4192703013832800 70.0983302155670500, -162.4200930434591600 70.0971909606943200, -162.4210607652421000 70.0960650103919500, -162.4221716051354500 70.0949545068450600, -162.4234234272493300 70.0938615616618100, -162.4248138294946000 70.0927882513767600, -162.4263401489786500 70.0917366165516600), (-162.6590193947292600 69.9396749093696100, -162.6603120406681200 69.9391231393214500, -162.6592699287641600 69.9394107362165900, -162.6565152252973700 69.9401052088883300, -162.6536747202121400 69.9407577272873500, -162.6507538310244500 69.9413670458525300, -162.6477581299337200 69.9419320017605000, -162.6446933312322200 69.9424515140262300, -162.6415652859092000 69.9429245924960100, -162.6387850911590000 69.9432910779209500, -162.6383799411813000 69.9433501894597500, -162.6377259047267000 69.9434399930613000, -162.6347741013436800 69.9438953422962900, -162.6317701732548600 69.9442953292660800, -162.6285335114124000 69.9446729168217300, -162.6252518331055800 69.9450016307207500, -162.6224329756013300 69.9452386668310700, -162.6212748286703800 69.9458279323133000, -162.6204372936461500 69.9462423309188900, -162.6197800205315000 69.9466545720509300, -162.6180297473749200 69.9476473588386000, -162.6161561259044700 69.9486132918700000, -162.6157714408992400 69.9487941581239700, -162.6154648395307000 69.9489543669505500, -162.6142993784135600 69.9496024669803100, -162.6130764101481800 69.9502259300826400, -162.6125421894704500 69.9504824733874700, -162.6117212496359300 69.9510893305082400, -162.6104928926328600 69.9519205693788400, -162.6090780764920000 69.9528381197834500, -162.6077188150712200 69.9536825562050800, -162.6059477603808100 69.9546862481718700, -162.6050611187755800 69.9551335862460600, -162.6039442156530000 69.9557688745339900, -162.6027792608541600 69.9564003299113300, -162.6015635330306000 69.9570204295492300, -162.6002979674772000 69.9576286941090200, -162.5956413435731000 69.9597974847661700, -162.5946094272832200 69.9605702964820500, -162.5935077595754000 69.9613349027836200, -162.5928418484725000 69.9617791633777400, -162.5910547507761000 69.9629045363153600, -162.5892829163734600 69.9639082282821500, -162.5873849124836900 69.9648844432625200, -162.5858077390358900 69.9656141441775000, -162.5853607319122300 69.9658236169664200, -162.5840547085579100 69.9663980472321300, -162.5839438149550600 69.9664704642406200, -162.5837064209145500 69.9667379900662400, -162.5824698845774800 69.9678319739665000, -162.5810951952870000 69.9689064155986700, -162.5795849520838500 69.9699592663071700, -162.5779420139127800 69.9709885179058200, -162.5763664151779000 69.9718854567485100, -162.5746900078375700 69.9727606769637300, -162.5744677817626800 69.9728719033157600, -162.5736197921196700 69.9736219181170900, -162.5734325208941000 69.9742149688457900, -162.5729064777517300 69.9753934116766900, -162.5725106123748300 69.9761622034230300, -162.5718481501719700 69.9773035977828500, -162.5710421094058000 69.9784340977554400, -162.5700939793536300 69.9795515845380600, -162.5690055136934700 69.9806539636096000, -162.5677681571747000 69.9817479457111600, -162.5663925541730000 69.9828223864440100, -162.5648813073264300 69.9838752353538800, -162.5632372782777400 69.9849044869525900, -162.5618419981096800 69.9857021757148900, -162.5603669228951600 69.9864828520021000, -162.5587293464821200 69.9873174507398000, -162.5575535089872000 69.9878999542195900, -162.5563332278961200 69.9884716442510400, -162.5550693476722300 69.9890321215352200, -162.5537627424565700 69.9895809966657200, -162.5534940178346200 69.9896902984685300, -162.5508838713935200 69.9907461753957100, -162.5486848716095000 69.9915984017449100, -162.5463824309044300 69.9924179988916000, -162.5439806654753200 69.9932034964442700, -162.5428182854355000 69.9935526537320200, -162.5422379718049200 69.9942374982620100, -162.5411404292873700 69.9953489362045000, -162.5408344871218600 69.9956306605266100, -162.5412724290793000 69.9960370048040100, -162.5422354905754000 69.9971629694954900, -162.5430542657417400 69.9983022396567100, -162.5437271726708600 69.9994526488207500, -162.5442529091444000 70.0006120080378200, -162.5446304490359600 70.0017781121702000, -162.5448590495055000 70.0029487434897500, -162.5449382501001300 70.0041216716778600, -162.5449377230974000 70.0042607392417700, -162.5449045614962800 70.0071822201833800, -162.5451831561777000 70.0074264886416100, -162.5462893150997800 70.0085370047789900, -162.5472529566585800 70.0096629685712000, -162.5479050128060700 70.0105697127221400, -162.5479379100065000 70.0105239678069300, -162.5489015911355000 70.0093980058133500, -162.5500077950237000 70.0082874887766600, -162.5512543974724300 70.0071945301035600, -162.5526390044864500 70.0061212072279800, -162.5541589657636300 70.0050695589130800, -162.5558113710978600 70.0040415843516800, -162.5575930629694600 70.0030392368713600, -162.5595006365451200 70.0020644203368100, -162.5615304531678500 70.0011189873514500, -162.5636786394576000 70.0002047320628000, -162.5651465102032500 69.9996291938322800, -162.5659417609035000 69.9993251582295100, -162.5666598506715600 69.9990629285114200, -162.5678831606793000 69.9986226069478300, -162.5683114358240900 69.9984706988637400, -162.5694884972962800 69.9980491263661400, -162.5707305941415700 69.9976362611046200, -162.5712341821118000 69.9971945267061000, -162.5726181245268000 69.9961212020319300, -162.5741373555544800 69.9950695519183300, -162.5751241177838000 69.9944546962273100, -162.5753656145314500 69.9942930197071300, -162.5761544791458600 69.9924522495717300, -162.5765236472485000 69.9916746516639100, -162.5771963023674400 69.9905242416005500, -162.5780147699656200 69.9893849705400200, -162.5789774717329000 69.9882590040498400, -162.5800825514685400 69.9871484843151300, -162.5811905647927000 69.9861694301751000, -162.5824092199095500 69.9852059298098700, -162.5837431249452400 69.9842558851010500, -162.5840990226517400 69.9839524025814000, -162.5840309988315000 69.9827886915449500, -162.5841101130912000 69.9816157606588800, -162.5843384752404000 69.9804451266413100, -162.5847156248262000 69.9792790189116500, -162.5852408190085600 69.9781196569966300, -162.5857495951676400 69.9772262839658800, -162.5862508440012300 69.9764811713690200, -162.5862980053486500 69.9757817650165000, -162.5865263027466500 69.9746111300996200, -162.5869033453131200 69.9734450223699600, -162.5874283911073200 69.9722856586562900, -162.5881004184995000 69.9711352458949100, -162.5889181225732600 69.9699959712371500, -162.5898824871870000 69.9688679704805200, -162.5902782041757500 69.9681912468286100, -162.5910957931363000 69.9670519721708500, -162.5920574606832400 69.9659260020833900, -162.5931613560117300 69.9648154796507200, -162.5940439983318400 69.9640258407200100, -162.5949985486440700 69.9632461033250500, -162.5960240563650800 69.9624770363861900, -162.5971194998650000 69.9617194016291300, -162.5982042684122200 69.9609978251895100, -162.6000381758211400 69.9598475482258100, -162.6018160941374000 69.9588451935508700, -162.6037196306564000 69.9578703707210800, -162.6057451503184000 69.9569249305411600, -162.6078887914345600 69.9560106689572800, -162.6101464683847800 69.9551293225602500, -162.6125138788124200 69.9542825631897900, -162.6149865162147000 69.9534719997330400, -162.6175596744394000 69.9526991709300300, -162.6202284593758800 69.9519655435750600, -162.6229877961498600 69.9512725089192000, -162.6258324399151400 69.9506213835700200, -162.6287569839476200 69.9500134013974300, -162.6317558749336500 69.9494497180301100, -162.6348234165674000 69.9489314009634300, -162.6379537848392800 69.9484594340556800, -162.6411410379285200 69.9480347130316300, -162.6417157209037600 69.9479678637259800, -162.6423513410415200 69.9477891360598400, -162.6435622574921600 69.9474639528991700, -162.6450176699295000 69.9470485335630200, -162.6469139219399300 69.9465721590779600, -162.6474216647779700 69.9462814586224800, -162.6497009722220600 69.9450202745660500, -162.6503599918201200 69.9445273030926300, -162.6512949701866800 69.9438749834437800, -162.6522809239254700 69.9432315706805000, -162.6533171308808500 69.9425975342488800, -162.6550935815035600 69.9415951777753000, -162.6569955460076000 69.9406203522474900, -162.6590193947292600 69.9396749093696100), (-161.8999665615075700 67.0149041434115700, -161.9028832049958700 67.0146254794823300, -161.9058281096794800 67.0143967576043500, -161.9087956871712000 67.0142184112507400, -161.9117803068156700 67.0140907785666400, -161.9147763055820000 67.0140141014696800, -161.9177779997548600 67.0139885265493300, -161.9184449909435600 67.0139897891974700, -161.9258807600889700 67.0140177581130800, -161.9287172245202600 67.0140512092959300, -161.9315477660165600 67.0141302947773200, -161.9343675848961000 67.0142548814576500, -161.9371719039601800 67.0144247579962700, -161.9390190835638400 67.0145621186469000, -161.9408559965070000 67.0147191348802400, -161.9422133846399600 67.0148504305030300, -161.9458121279273300 67.0148764811647200, -161.9464175362403000 67.0147468151134800, -161.9491110165601200 67.0142282318474800, -161.9518596909719300 67.0137560212234600, -161.9546583407098400 67.0133310789661900, -161.9575016525791700 67.0129542126668400, -161.9603842297483700 67.0126261363871500, -161.9626055300211600 67.0124004209427500, -161.9654474560352400 67.0120102096035500, -161.9683299207892000 67.0116821324245400, -161.9712461775690100 67.0114034684953000, -161.9741906919468600 67.0111747466173100, -161.9745541880253400 67.0111794590648600, -161.9746797576646600 67.0111589913943800, -161.9756170841611000 67.0108765143397100, -161.9781141642372700 67.0102250616373600, -161.9806814193120200 67.0096167709972400, -161.9833139723619000 67.0090527989475500, -161.9860068222570200 67.0085342147822300, -161.9887548536535500 67.0080620041582000, -161.9915528486850000 67.0076370619009400, -161.9943954950560000 67.0072601947022700, -161.9972773968343600 67.0069321175232600, -162.0001930843433500 67.0066534535940800, -162.0018219742047200 67.0065269009957700, -162.0027852263570800 67.0063991918692600, -162.0056670265120400 67.0060711146902600, -162.0085826105989800 67.0057924507610800, -162.0115264459886600 67.0055637279837100, -162.0144929469918800 67.0053853816301000, -162.0174764829533000 67.0052577480466900, -162.0199884405140800 67.0051934366278500, -162.0218610871194500 67.0050144481583000, -162.0229812071170000 67.0049274171666400, -162.0244536428213300 67.0047321869409400, -162.0273348359339000 67.0044019864625400, -162.0276508325198700 67.0043392029919000, -162.0303983899737000 67.0038669914685600, -162.0331959029685200 67.0034420483119100, -162.0360380592090300 67.0030651811133000, -162.0389194645616200 67.0027371039342400, -162.0418346502489000 67.0024584400050600, -162.0444834504508500 67.0022564064081000, -162.0447779100724700 67.0022282099639600, -162.0473650536542600 67.0019321009857500, -162.0502801422147700 67.0016534370565200, -162.0532234775813800 67.0014247142792100, -162.0559444726592600 67.0012591436946000, -162.0586786176240800 67.0011223334290100, -162.0590046839190000 67.0010710990520100, -162.0619196690574600 67.0007924342235100, -162.0636413959336400 67.0006586366868100, -162.0643461838293000 67.0005651728445200, -162.0672272933049000 67.0002370956655100, -162.0701421786186200 66.9999584308369500, -162.0728184908806200 66.9997553225501300, -162.0730853152351000 66.9997297683142400, -162.0756998818440300 66.9994320936162900, -162.0786146718296300 66.9991534287877400, -162.0803376190858000 66.9990195278289800, -162.0810415760079000 66.9989261674087400, -162.0839224912299700 66.9985980902297300, -162.0868371813908000 66.9983194254012300, -162.0882043532482700 66.9982131696021400, -162.0893203066867700 66.9980651645757300, -162.0922011202854400 66.9977370873967300, -162.0951157070242300 66.9974584225682300, -162.0960535821071000 66.9973855289191000, -162.0980514503141600 66.9968640255543700, -162.1006172961512600 66.9962557340150000, -162.1032484039906200 66.9956917601666600, -162.1059397754003000 66.9951731760013400, -162.1086862986337600 66.9947009635786800, -162.1110242607609800 66.9943423957850000, -162.1114814410156600 66.9942683644935100, -162.1137702003344400 66.9938669610914400, -162.1160516868358500 66.9935272952485500, -162.1165669354157000 66.9934441772071000, -162.1173174034753700 66.9933253147115700, -162.1189830036626600 66.9929217250576100, -162.1198636908566200 66.9927504905427300, -162.1206502882801600 66.9925571587859300, -162.1231461200973500 66.9919054120052200, -162.1239833484527500 66.9916863506446100, -162.1264773006868400 66.9910300101269000, -162.1290425322870000 66.9904217176881500, -162.1316730097016100 66.9898577438398800, -162.1343637353980400 66.9893391578759200, -162.1371096012270800 66.9888669454532500, -162.1393906506580000 66.9885272778116700, -162.1399057085815500 66.9884438522020700, -162.1407052994100000 66.9883300825673000, -162.1409950690671500 66.9882720547116200, -162.1422941235749000 66.9879424477857700, -162.1432043552967200 66.9876970012156800, -162.1439853517425700 66.9875275365666300, -162.1457678700911000 66.9870834810178600, -162.1464835775550500 66.9868909991203600, -162.1490483729840000 66.9862827066816000, -162.1516784025362200 66.9857187328333300, -162.1543686722763800 66.9852001468693200, -162.1566221044265600 66.9848212660886000, -162.1569558392405700 66.9847544815341400, -162.1571088417995800 66.9847144715956200, -162.1592097372395600 66.9839698194516600, -162.1594638784552000 66.9838958843876100, -162.1595879435287500 66.9838511817866900, -162.1615408591233300 66.9830539831548300, -162.1637084806618200 66.9822430239964300, -162.1659642699350700 66.9814698129815200, -162.1683039344789600 66.9807358196024400, -162.1707230262466300 66.9800424360096800, -162.1732190100492500 66.9793981877762100, -162.1740050220141100 66.9791924138988300, -162.1764962484031000 66.9785299759776600, -162.1772770613872600 66.9783610131502800, -162.1777008525123200 66.9782635383317000, -162.1794590810717000 66.9773365981055800, -162.1813375067205200 66.9764219048470900, -162.1833159117998700 66.9755401357687100, -162.1853905281503200 66.9746929663074300, -162.1875574059495000 66.9738820062496500, -162.1898124209064600 66.9731087943354700, -162.1912789768432800 66.9726409202423300, -162.1927778202402000 66.9721890208067000, -162.1943078143541200 66.9717534377709900, -162.1958678017576300 66.9713345002870100, -162.1977838226652600 66.9708349574673900, -162.1996448842040200 66.9703664637413600, -162.2015434366802300 66.9699216608560200, -162.2041717017626000 66.9693576843097300, -162.2068601647647800 66.9688390974464500, -162.2096037211347800 66.9683668823258200, -162.2123971593014500 66.9679419373706000, -162.2152351768618800 66.9675650674739100, -162.2181123859778000 66.9672369884962700, -162.2210233268650000 66.9669583218691300, -162.2239624731895400 66.9667295981924400, -162.2269242482554100 66.9665512500402000, -162.2299030330984800 66.9664236164567800, -162.2328931745803000 66.9663469393598200, -162.2358889997775000 66.9663213635401500, -162.2391831318960000 66.9663522894266500, -162.2554981729023200 66.9666579537016600, -162.2576711561988800 66.9667120713051000, -162.2598386806105900 66.9667931101140000, -162.2619985751741000 66.9669009891893600, -162.2641486770198000 66.9670355997132000, -162.2651590779290700 66.9671142283390300, -162.2662732893807600 66.9670158982651700, -162.2672992269777000 66.9669329879670800, -162.2692674454362400 66.9667855989762900, -162.2722292276966700 66.9666072508240400, -162.2752080188349700 66.9664796172406200, -162.2759437326171500 66.9664607512627300, -162.2716783048098800 66.9645765078995500, -162.2704203070515000 66.9640047441237100, -162.2702633852470000 66.9639280193626400, -162.2681109820361800 66.9633639070187300, -162.2656959255265000 66.9626692868581600, -162.2633606532715000 66.9619340272336100, -162.2611096169152600 66.9611595310875600, -162.2589471017273300 66.9603472760060200, -162.2568772257033600 66.9594988115209700, -162.2549082680021400 66.9586031452190600, -162.2533375328008600 66.9580485405077800, -162.2511752937048200 66.9572362845269700, -162.2491056811822100 66.9563878209412500, -162.2471326351629600 66.9555047658323600, -162.2452599085179400 66.9545888063283900, -162.2434910625624700 66.9536416880135300, -162.2418294580630200 66.9526652176257400, -162.2415204528066000 66.9524652254898500, -162.2358429994548300 66.9497893251173100, -162.2340178379528200 66.9488904662221100, -162.2322923860847000 66.9479618640488600, -162.2306697833837700 66.9470052165176000, -162.2291529832235700 66.9460222710110300, -162.2277154484091900 66.9449927343272900, -162.2263939549170600 66.9439395859432100, -162.2251910064597400 66.9428648331455600, -162.2241088810200200 66.9417705236907600, -162.2237689984405000 66.9413796819268300, -162.2232241270917500 66.9408928366351600, -162.2221420879869500 66.9397985271803600, -162.2211910315408500 66.9386788190723200, -162.2210832441963400 66.9385521351729800, -162.2205917089402000 66.9380485301156200, -162.2196325972665200 66.9369367495314100, -162.2187919487893700 66.9358157446009700, -162.2186529414800300 66.9356875345521300, -162.2176939224365500 66.9345757530686000, -162.2173917241487000 66.9341675193156200, -162.2164936638514800 66.9333648510071300, -162.2154119583951200 66.9322705406530100, -162.2144530724513000 66.9311587591694800, -162.2136188181539200 66.9300316253592800, -162.2129107675178800 66.9288912868034900, -162.2123302506405200 66.9277399153648400, -162.2118783548022000 66.9265797053891400, -162.2115559244663200 66.9254128656112900, -162.2113635531854000 66.9242416182561300, -162.2113236763465500 66.9236687869849900, -162.2107336815141700 66.9225179227639700, -162.2102818819032800 66.9213577118889600, -162.2099595190165600 66.9201908712117900, -162.2097673563783600 66.9190184142684600, -162.2091815595812800 66.9185506382014500, -162.2079798575843200 66.9174758818065800, -162.2068988526998500 66.9163815696537700, -162.2066882512617700 66.9161372283504600, -162.2061772169050200 66.9157707968848300, -162.2048572999244000 66.9147176449034200, -162.2039930055727300 66.9139645742058000, -162.2034080829166700 66.9135136136624200, -162.2027936714907200 66.9131307452877300, -162.2018734231199600 66.9125223458296400, -162.2004378542235700 66.9114928064479400, -162.1991181674694400 66.9104396544665300, -162.1979168629728200 66.9093648971723400, -162.1972750671905600 66.9086983655371900, -162.1971319733618500 66.9085700817439600, -162.1963143016636800 66.9079215842138000, -162.1960806667893000 66.9077203878856600, -162.1956078266398700 66.9074113574482700, -162.1941725572177000 66.9063818171671900, -162.1935646038233800 66.9058965492863500, -162.1927473206323200 66.9054153292540800, -162.1911991044550800 66.9044113638933600, -162.1897640104007200 66.9033818245116500, -162.1884447607171200 66.9023286707316000, -162.1872438537208400 66.9012539134374200, -162.1864277441450500 66.9004272089486000, -162.1860613288672000 66.9001346747754700, -162.1848605288902500 66.8990599165819600, -162.1844716611382200 66.8986450170539200, -162.1837701719558400 66.8979769565713700, -162.1832814084102400 66.8975599202542000, -162.1822012803647800 66.8964656045041000, -162.1812437937660400 66.8953538185239700, -162.1804107544527400 66.8942266802171700, -162.1797037344397600 66.8930863371647900, -162.1791240611265000 66.8919349612295400, -162.1786959721413800 66.8908601158017900, -162.1785713368976500 66.8906693408174500, -162.1779917211409800 66.8895179648822000, -162.1777636045067000 66.8889641821513700, -162.1774942836342500 66.8887708548911000, -162.1761758190587800 66.8877177002117400, -162.1749756270235400 66.8866429411189100, -162.1738959792160400 66.8855486244695000, -162.1729389179966500 66.8844368375900400, -162.1724683549306000 66.8837998612746100, -162.1721210304611700 66.8836439548047100, -162.1702019149863600 66.8826732023064800, -162.1701163498896000 66.8826433628009900, -162.1679538095206700 66.8819097570297500, -162.1657982892596000 66.8810974956529700, -162.1637351077889700 66.8802490257720000, -162.1617681915487600 66.8793659652671400, -162.1598175674267600 66.8784069453243400, -162.1578153680847500 66.8773748545659100, -162.1569820346931300 66.8770859698416900, -162.1546407801478400 66.8761927442997700, -162.1531128211997000 66.8755812754555400, -162.1512540142613300 66.8748072901244100, -162.1494746660230000 66.8740049797460800, -162.1478014665644000 66.8731877640041700, -162.1462106944679500 66.8723455039419200, -162.1428920693135200 66.8705145436113600, -162.1393910202793300 66.8688736675857700, -162.1375085485806300 66.8679500251735700, -162.1357459502154000 66.8670028987648400, -162.1340902128929700 66.8660264202831000, -162.1325444815425700 66.8650224522244200, -162.1311116897526600 66.8639929074468000, -162.1309066353329300 66.8638289493466100, -162.1291959926009600 66.8628598749833100, -162.1273268344658000 66.8619500407618300, -162.1265494523953000 66.8615322148398800, -162.1210799744612200 66.8590430973611100, -162.1203963350228000 66.8587270189368000, -162.1185681967648400 66.8578301412480900, -162.1168392618224300 66.8569033341216300, -162.1146560550329000 66.8556787785528300, -162.1136537165457400 66.8552425767835500, -162.1119604145414700 66.8544770297911600, -162.1101986570423600 66.8536139729066000, -162.1085287526997500 66.8527231089843200, -162.1069535244855300 66.8518059470868600, -162.1054756325943300 66.8508640457391700, -162.1043937625620700 66.8501416446212600, -162.1040529824591400 66.8499114865259100, -162.1030186424963200 66.8491677939586000, -162.1020928381139500 66.8486699436630300, -162.1004383364600300 66.8476934633827100, -162.0988937589398000 66.8466894935253900, -162.0974620355444800 66.8456599469490700, -162.0961458831259800 66.8446067877731000, -162.0955507495674200 66.8440729133343400, -162.0950177456724000 66.8437425024146100, -162.0940134718442200 66.8430785023710400, -162.0929696467317700 66.8423277816019100, -162.0925610190757300 66.8420709954801300, -162.0910104673591500 66.8411811307046800, -162.0895763041031300 66.8402455084235500, -162.0881449566244300 66.8392159609479100, -162.0868291486462700 66.8381628008726200, -162.0856313748880000 66.8370880354845000, -162.0845539007419000 66.8359937134391700, -162.0837688645414400 66.8350799195027300, -162.0825423502492400 66.8344199789988800, -162.0808888072726000 66.8334434969199300, -162.0793451245778000 66.8324395252639100, -162.0779142312567300 66.8314099777883300, -162.0773562037258000 66.8309631954951400, -162.0762943472063300 66.8302725305529200, -162.0748635797903600 66.8292429821779600, -162.0735483060094900 66.8281898212033500, -162.0723510160865000 66.8271150549159100, -162.0712739790109000 66.8260207310719400, -162.0703192299484700 66.8249089369978700, -162.0694885720399400 66.8237817896978800, -162.0687835701056400 66.8226414367529700, -162.0684825877012300 66.8220318492904500, -162.0681912945925400 66.8218745983340900, -162.0671332215209200 66.8212184646604900, -162.0661237631011600 66.8205505525659800, -162.0649460487211400 66.8197107242705800, -162.0638451706181000 66.8188548718549100, -162.0628221639117000 66.8179865746207600, -162.0627454355533800 66.8179745911545000, -162.0614019473419800 66.8171608683794000, -162.0601339266393700 66.8163285611142300, -162.0587039695125500 66.8152990118399500, -162.0573894403703400 66.8142458490667700, -162.0568056868329400 66.8137215353206700, -162.0564188110792300 66.8134675685735100, -162.0561673543399000 66.8132865026700000, -162.0552528373485500 66.8129419696962300, -162.0532375402802400 66.8121150619605800, -162.0524061125520300 66.8117433991386000, -162.0517250065038300 66.8116776317173700, -162.0488653242752500 66.8113649176568700, -162.0482843847165700 66.8113358272866500, -162.0455831540393000 66.8110799395876100, -162.0449152356495700 66.8110051987309800, -162.0400684545954800 66.8110120992290600, -162.0398329994933000 66.8110122593083700, -162.0368561284075800 66.8109866277307600, -162.0338849428358000 66.8109097806619200, -162.0309251166008300 66.8107818646913600, -162.0279823028409700 66.8106031253340100, -162.0250621196210800 66.8103739034329500, -162.0226772866274400 66.8101436086406600, -162.0136438098139400 66.8101227713488600, -162.0107704192194500 66.8100920334206900, -162.0079028769162000 66.8100135729680500, -162.0050462856575300 66.8098875302853200, -162.0022057320089000 66.8097141293037000, -161.9992856549090200 66.8094849065033100, -161.9963937832464800 66.8092056400283200, -161.9935356406572600 66.8088768613781100, -161.9907166815296000 66.8084991982794300, -161.9889318780037400 66.8082315879174800, -161.9871668083015400 66.8079443750329500, -161.9854228573789500 66.8076377853555500, -161.9837013940041000 66.8073120608030400, -161.9821442466596300 66.8070067625520800, -161.9802479820587000 66.8066202411312700, -161.9783833753924400 66.8062105019132000, -161.9758392113105300 66.8056010511476800, -161.9733650252756500 66.8049483888571000, -161.9709655360306300 66.8042537597033300, -161.9686453157287000 66.8035184892868900, -161.9664087845377500 66.8027439823489400, -161.9642602034456000 66.8019317155762500, -161.9622036625689500 66.8010832394000400, -161.9602430748580000 66.8002001725999400, -161.9583821715999000 66.7992841987068600, -161.9566244907276500 66.7983370669021500, -161.9549733714239300 66.7973605821252400, -161.9534319496247600 66.7963566059726200, -161.9532067054251000 66.7962012004251200, -161.9508483835460300 66.7945613181503900, -161.9494891895744200 66.7935680781043900, -161.9482369240947400 66.7925532129604600, -161.9470937805535000 66.7915185105708800, -161.9460617608415600 66.7904657947606800, -161.9451083868425500 66.7893539961900200, -161.9442789241330200 66.7882268443934200, -161.9435749357346600 66.7870864869518600, -161.9429977463488800 66.7859350975267600, -161.9425484351621400 66.7847748677659800, -161.9422278421411600 66.7836080073037700, -161.9420365581406100 66.7824367401634600, -161.9419749285001200 66.7812632939658800, -161.9420430530444400 66.7800899035262900, -161.9422407833854200 66.7789188027605900, -161.9425677238213600 66.7777522192895400, -161.9430232349343200 66.7765923744385600, -161.9434236544780400 66.7757752522261400, -161.9436929780484600 66.7753042646801300, -161.9436841952693600 66.7751369898802500, -161.9432760433547000 66.7744755052404500, -161.9426991471479000 66.7733241140167000, -161.9422500643889300 66.7721638824572800, -161.9422009470160600 66.7719850189934600, -161.9417116699575800 66.7712232176774000, -161.9411572711911000 66.7701345352806500, -161.9409391226423600 66.7698378732193300, -161.9402356576494500 66.7686975130798100, -161.9396588954416500 66.7675461209567500, -161.9393769966510500 66.7668585622728900, -161.9391402842966600 66.7661683523875800, -161.9390024874748000 66.7657232940948100, -161.9387806723901000 66.7649024738701100, -161.9386227442442000 66.7640793522803600, -161.9385288469287000 66.7632547045410500, -161.9384990613825400 66.7624293067671600, -161.9385671310682300 66.7612559136295500, -161.9387647067258000 66.7600848101658900, -161.9390913953516000 66.7589182239968900, -161.9395465548296000 66.7577583764479500, -161.9401293029249600 66.7566074726568100, -161.9408385127871000 66.7554677024725700, -161.9416728174465400 66.7543412350600000, -161.9426306134120600 66.7532302117049900, -161.9430403922003200 66.7528140828037500, -161.9432054303862900 66.7525912343979800, -161.9441631580033000 66.7514802110429700, -161.9452425315175800 66.7503867442529200, -161.9464414806897400 66.7493129132603800, -161.9471291113194000 66.7487632440285700, -161.9475885947378200 66.7482302095566000, -161.9486678243605700 66.7471367418672200, -161.9498666161513800 66.7460629108746800, -161.9504779896674600 66.7455741329399600, -161.9510130997747000 66.7449532077244000, -161.9520659208055800 66.7438847672682400, -161.9532328801932400 66.7428350210194600, -161.9545238246148000 66.7418147410575100, -161.9551800841935000 66.7409532301075500, -161.9561587363366000 66.7398216842233900, -161.9562125059023900 66.7397172783298000, -161.9562629731576600 66.7395923777860400, -161.9568452886791000 66.7384414712969400, -161.9575539733371800 66.7373016993140000, -161.9583876610617000 66.7361752283042000, -161.9587678854295500 66.7357338482385700, -161.9588039698273300 66.7347795947026200, -161.9588996783774300 66.7336997184672800, -161.9591049666208800 66.7326222335293000, -161.9594194910166600 66.7315488764795100, -161.9598427281593400 66.7304813785128800, -161.9604248278435000 66.7293304711244000, -161.9611332490002300 66.7281906964435600, -161.9619454348339200 66.7270715243314500, -161.9625508053753400 66.7260460318989300, -161.9630808109306500 66.7252402519361600, -161.9639740913312000 66.7240040798244500, -161.9641244229037800 66.7238488028800100, -161.9642278602275400 66.7237073251329800, -161.9648428229379000 66.7227176958650100, -161.9656760151359500 66.7215912230565800, -161.9666325358628000 66.7204801943056000, -161.9677105487028300 66.7193867221195700, -161.9685991652192700 66.7185898310559100, -161.9688236998538300 66.7182862208324500, -161.9697800919776400 66.7171751920815300, -161.9708579600268200 66.7160817198955000, -161.9720552391579200 66.7150078826077800, -161.9733696369991000 66.7139557243772300, -161.9747986408445700 66.7129272425982000, -161.9763395212518700 66.7119243923968400, -161.9779893356393000 66.7109490803358700, -161.9797449363797000 66.7100031590186400, -161.9802289658940400 66.7097618484306200, -161.9811324311167800 66.7090740433324600, -161.9820864355405400 66.7083992370352200, -161.9834430277735000 66.7075111232397800, -161.9848850511042000 66.7066443710409700, -161.9864103543543500 66.7058002664691700, -161.9880166640378000 66.7049800649780900, -162.0018488846183000 66.6981899002437300, -162.0028034951851300 66.6974732619814900, -162.0038091656604400 66.6967602228061200, -162.0050066246559800 66.6959720218913500, -162.0061389070848700 66.6952684220001400, -162.0052173205229000 66.6945240927127500, -162.0040264949267600 66.6934493111368700, -162.0029413405703700 66.6923359216655200, -162.0027132086476300 66.6921381949218200, -162.0018141276198700 66.6912939068883500, -162.0009882190310600 66.6904379753323700, -162.0000386914324200 66.6893261641711800, -161.9992125733015800 66.6881989997840500, -161.9985114204656600 66.6870586297520200, -161.9979365522300700 66.6859072259378000, -161.9977031574747200 66.6853444679728700, -161.9975094830761600 66.6848443846606600, -161.9971641515043600 66.6838223600139500, -161.9969179504030600 66.6827958414549500, -161.9967712269105700 66.6817663389454700, -161.9967241869716200 66.6807353642457200, -161.9967920183369500 66.6795619594169600, -161.9969889284962200 66.6783908424634400, -161.9973145244457300 66.6772242437039600, -161.9977681685661000 66.6760643826651700, -161.9981066832767700 66.6753625103716000, -161.9986091875639100 66.6743907218543700, -161.9991586580456200 66.6734196941636100, -161.9997983098441000 66.6724573845007700, -162.0005272580265000 66.6715051076746500, -162.0013444953521600 66.6705641659036100, -162.0024203255375700 66.6694706856237100, -162.0036153419744400 66.6683968420406900, -162.0047160860784700 66.6675140369433200, -162.0049803392712000 66.6671416447711600, -162.0055977004734600 66.6663630135423100, -162.0057459348270000 66.6661941316539200, -162.0052147106903200 66.6651292525130500, -162.0047675767622200 66.6639690056651400, -162.0044485305752000 66.6628021281158000, -162.0043560739736000 66.6622332691500800, -162.0017365646906700 66.6615963989547100, -161.9988508039214400 66.6608107026518700, -161.9944039477839200 66.6595315807179500, -161.9924737724466000 66.6589552088158800, -161.9905966697005200 66.6583519148090900, -161.9886630805367000 66.6576822814122400, -161.9867948648910700 66.6569840837485100, -161.9849946991460300 66.6562583254614100, -161.9832651625572000 66.6555060479657900, -161.9809886448100800 66.6544773134772900, -161.9799688441867700 66.6540055570109200, -161.9781189225502000 66.6530895705273000, -161.9763716108611200 66.6521424252328000, -161.9747302312151800 66.6511659260667100, -161.9731978997632200 66.6501619355249800, -161.9717775249128200 66.6491323682642500, -161.9704718019321000 66.6480791875045500, -161.9692832030573600 66.6470044005327000, -161.9682139801910000 66.6459100551049900, -161.9674843008597800 66.6450585455155000, -161.9672558793553200 66.6448082767806200, -161.9664129807744000 66.6439660589865000, -161.9654652284375200 66.6428542424294000, -161.9646406535432800 66.6417270717470300, -161.9640364692076600 66.6407433393337100, -161.9623557415242200 66.6398693997530200, -161.9613979977194000 66.6394916844936900, -161.9597080951524500 66.6387746505297400, -161.9580853359694600 66.6380335983719200, -161.9562366059345800 66.6371176109890400, -161.9544904192973700 66.6361704638958400, -161.9528500954555200 66.6351939629311100, -161.9525037809247300 66.6349669092954900, -161.9513294650827200 66.6344955305443700, -161.9498099507685800 66.6338438557094200, -161.9483455199297700 66.6331726107274600, -161.9464971514223600 66.6322566233445700, -161.9447513074268600 66.6313094753520500, -161.9431113046429700 66.6303329743873300, -161.9415802592215500 66.6293289820469600, -161.9401667749766600 66.6282884295674200, -161.9367425577228200 66.6264977876428500, -161.9354285025233400 66.6257923000746400, -161.9341731577650000 66.6250701561628500, -161.9329778562430400 66.6243321257270500, -161.9318438660016000 66.6235789947748500, -161.9306288954071800 66.6227041297918300, -161.9294966354613300 66.6218119393695400, -161.9290253709241000 66.6214227568548300, -161.9276313686927000 66.6201935356032200, -161.9269441139796600 66.6194960933700600, -161.9266040515357200 66.6192730048453500, -161.9253829700480000 66.6183867922167700, -161.9248033803716900 66.6180800451580200, -161.9208056915294000 66.6158836534079300, -161.9197992845093400 66.6153153232436400, -161.9188302038508000 66.6147368478273200, -161.9178990970656600 66.6141486156661200, -161.9170065810888300 66.6135510179651600, -161.9155882989608000 66.6125214462078400, -161.9148032114990000 66.6118872685826200, -161.9141779470545800 66.6115267186832000, -161.9129968997870600 66.6107962587403800, -161.9118786207017400 66.6100449291302500, -161.9118218159240400 66.6100117927101100, -161.9106450979928400 66.6094776736557600, -161.9091702826823700 66.6087528074961000, -161.9077596304025800 66.6080080573260600, -161.9064148309796300 66.6072443170716000, -161.9051374959986200 66.6064625076387000, -161.9045270415896600 66.6060742855998500, -161.9032762051327300 66.6052460360757600, -161.9018583969474300 66.6042164643184300, -161.9005550310898000 66.6031632781628100, -161.8993685788967700 66.6020884857950400, -161.8983012850762300 66.6009941358707400, -161.8973551677068000 66.5998823139177000, -161.8969330996827700 66.5992986682989600, -161.8959328853943300 66.5983934934649800, -161.8948657498544300 66.5972991435406800, -161.8940429448260300 66.5963301195394600, -161.8939124388079700 66.5961954154860800, -161.8928577894553800 66.5952544997953700, -161.8917907888138400 66.5941601489717500, -161.8908449313484800 66.5930483252200800, -161.8900220040122500 66.5919211482424800, -161.8893235563370200 66.5907807656199100, -161.8887509040309600 66.5896293492151600, -161.8884137221155600 66.5887853282803200, -161.8882120122745200 66.5881509528043100, -161.8878762953547200 66.5876027332796000, -161.8875381376748800 66.5873293105992700, -161.8863524391137500 66.5862545164328600, -161.8852827198216500 66.5851644706638700, -161.8844524594134400 66.5845724640480500, -161.8833301927341800 66.5836877946560400, -161.8823876573644600 66.5829094305258300, -161.8809860495665000 66.5816730740531900, -161.8797429742588200 66.5804101731910100, -161.8787976384002700 66.5792983485400200, -161.8779751643223500 66.5781711697637200, -161.8776350874892700 66.5776156054758400, -161.8772471883070500 66.5771593515229400, -161.8768380372456000 66.5766034769689600, -161.8764047115082000 66.5760543185520000, -161.8762906522917400 66.5759640392091100, -161.8755406689666600 66.5753573349730900, -161.8743555396763700 66.5742825399073600, -161.8732894365582200 66.5731881863857200, -161.8726477756742700 66.5724332990575400, -161.8724007624851700 66.5722780293076500, -161.8714293292001400 66.5716260289181600, -161.8708076782317300 66.5713397738115900, -161.8689639034613500 66.5704237810327300, -161.8672223968960700 66.5694766276442900, -161.8655864680410400 66.5685001203843300, -161.8644249441558100 66.5677365429072000, -161.8633565666522100 66.5673678802235700, -161.8622942667669800 66.5669779476742200, -161.8615296946396700 66.5667544715416900, -161.8595198960263400 66.5661133565462300, -161.8592300517255000 66.5660246402250100, -161.8571429024230000 66.5654204747751200, -161.8548449763145800 66.5646851899696200, -161.8526299335245800 66.5639106659445500, -161.8505019918734000 66.5630983820847200, -161.8499681345217600 66.5628759851386500, -161.8494594213152000 66.5627131952578000, -161.8472445529937000 66.5619386712327200, -161.8451167804150500 66.5611263873729500, -161.8430828826688800 66.5602654124189100, -161.8408607891940400 66.5597662823880700, -161.8384826057876000 66.5591924771511600, -161.8361658478755500 66.5585801494543700, -161.8324421311993700 66.5575512386987500, -161.8299269873405700 66.5568214253685300, -161.8274990624317700 66.5560462151607300, -161.8252847885621000 66.5552716902364000, -161.8240838842638000 66.5547963077035000, -161.8231542550648000 66.5544697728618100, -161.8219744560562700 66.5541022208408900, -161.8213459081870800 66.5538823455938200, -161.8207172874728000 66.5536985097784900, -161.8184204432488400 66.5529632240736100, -161.8167350040172000 66.5523798698351900, -161.8155688216437800 66.5519625358423900, -161.8138208768319800 66.5513143566722600, -161.8121316451592700 66.5506419461689200, -161.8111500909039400 66.5502278560308000, -161.8098989207985300 66.5498242331019600, -161.8076852000119500 66.5490497081775600, -161.8068981826050000 66.5487664181357600, -161.8045960224884300 66.5480462392425800, -161.8023824590832000 66.5472717143182400, -161.8002559392601500 66.5464594286597700, -161.7982205117671700 66.5456109326984200, -161.7962800490849700 66.5447278443146000, -161.7948630880610500 66.5440305225906200, -161.7935053527897700 66.5433147485768500, -161.7925888635851700 66.5428144305415700, -161.7915360290644700 66.5422230759342600, -161.7905520394450300 66.5416334741056000, -161.7900628163458800 66.5413372086453000, -161.7896078259403800 66.5411154682043400, -161.7881261326149000 66.5404945465861000, -161.7862626105310300 66.5396448572244600, -161.7849495832566300 66.5390001953028300, -161.7836871680283700 66.5383396801322000, -161.7824765645417800 66.5376639430365900, -161.7817722982529500 66.5372439803255100, -161.7803214516736100 66.5366389569223900, -161.7783816877646600 66.5357558676392400, -161.7765405453099000 66.5348398712631000, -161.7748015244707500 66.5338927151767000, -161.7744230555795200 66.5336664781255000, -161.7727414645469300 66.5330777540351600, -161.7706171516602000 66.5322623576217900, -161.7702854816896000 66.5321360712227400, -161.7700487630399700 66.5320530458115000, -161.7699011788962500 66.5320254042490500, -161.7694056056841000 66.5318932236933700, -161.7670324395953700 66.5311985774524700, -161.7647376701073700 66.5304632899489500, -161.7625256688245400 66.5296887641252400, -161.7604006490706800 66.5288764775674500, -161.7596489903086200 66.5285538385888300, -161.7595721081662200 66.5285099534716600, -161.7594249170262800 66.5284826068868300, -161.7572361191515400 66.5281302947773300, -161.7545422341367800 66.5276571083889000, -161.7519027859847500 66.5271374756140400, -161.7493228099996500 66.5265723875057200, -161.7468072263723700 66.5259629223510300, -161.7443608338853400 66.5253102438727000, -161.7434175125081600 66.5250240058532500, -161.7430223243207800 66.5249215254081000, -161.7405036119521000 66.5243239277071400, -161.7380573804437300 66.5236712492288100, -161.7356849976645000 66.5229766029879100, -161.7333909845063100 66.5222413145850700, -161.7309669113938000 66.5213899093169000, -161.7308033624851800 66.5213348456266500, -161.7286717399088300 66.5206583189263400, -161.7271415254610000 66.5201296335757800, -161.7256485708248600 66.5195940405325800, -161.7253017193988000 66.5195046128476400, -161.7230080263992700 66.5187693253441200, -161.7211199932930300 66.5181122392884800, -161.7192945547998300 66.5174276114951200, -161.7182945176778300 66.5170383120685100, -161.7159364062401300 66.5160730841055900, -161.7137026224780200 66.5150619223698500, -161.7131188347664000 66.5147731986242500, -161.7125270529810700 66.5145846656498600, -161.7107556898232000 66.5140596297481500, -161.7089343081717600 66.5134759670423300, -161.7084606406460200 66.5133306788678200, -161.7065627950369400 66.5127816337654300, -161.7042697198716300 66.5120463453625900, -161.7026061656420000 66.5114698394616000, -161.7009907889937000 66.5108719368904500, -161.6994253175243400 66.5102532779664600, -161.6979114212750500 66.5096145236913700, -161.6951068144279000 66.5083916354656700, -161.6945963331542400 66.5081590024360600, -161.6940885030819300 66.5080998702129000, -161.6913035886896400 66.5077221981210300, -161.6898792109568000 66.5075009010458300, -161.6891418469186600 66.5074635908720800, -161.6869876306746000 66.5073261636715600, -161.6841030111450300 66.5070969354752600, -161.6812462535117700 66.5068176618057100, -161.6784228121630300 66.5064888759609400, -161.6756380776351400 66.5061112038690100, -161.6728973649214300 66.5056853685849200, -161.6709441237722700 66.5053380288270000, -161.6702053567917400 66.5052157048409600, -161.6682041691870200 66.5049083705249600, -161.6659889888007600 66.5045189065223800, -161.6654796712498000 66.5044392967362200, -161.6627050891685000 66.5040193735952700, -161.6600138076910300 66.5035461872068400, -161.6573769109156700 66.5030265535326600, -161.6547994296499300 66.5024614636257000, -161.6522862777894700 66.5018519975716900, -161.6512715286581000 66.5015765900876100, -161.6498423845184000 66.5011979152516200, -161.6494150455678800 66.5010905397966200, -161.6487640344326200 66.5009438252973300, -161.6480234049561500 66.5007663971515500, -161.6455107396289000 66.5001570030432800, -161.6430600232014900 66.4995021383130600, -161.6419840689096400 66.4992410057678900, -161.6395402961477100 66.4985883254908600, -161.6371702974712200 66.4978936783506400, -161.6348785910740800 66.4971583881491600, -161.6327368619166000 66.4964084902596800, -161.6309866346254600 66.4957689841513700, -161.6293686688290000 66.4951578327678000, -161.6278022584674300 66.4945256498389200, -161.6262891158500000 66.4938731278426200, -161.6248308921319400 66.4932009799413200, -161.6229928865124600 66.4922849799679000, -161.6212568280401500 66.4913378193849100, -161.6196260163275700 66.4903613040310100, -161.6181035486398200 66.4893572973014700, -161.6166923144987000 66.4883277138529800, -161.6156288922595400 66.4874644015609400, -161.6078667510497000 66.4836886564064000, -161.6061532547688600 66.4828189391427600, -161.6045308795963800 66.4819217889594300, -161.6030023675651800 66.4809987275093000, -161.6015702979308600 66.4800513187134400, -161.6001595889938200 66.4790217334662500, -161.5999489479855200 66.4788506662253000, -161.5979796305554700 66.4778677360072800, -161.5966545361778800 66.4775460727930700, -161.5942128867153300 66.4768933916167800, -161.5938857718109000 66.4767813513782900, -161.5932544953986000 66.4766122419614500, -161.5913795492268000 66.4761570779868400, -161.5903767934542300 66.4758890143666000, -161.5894283054719000 66.4757414670950800, -161.5867400726961600 66.4752682798073200, -161.5841061616700000 66.4747486443345100, -161.5815315978049700 66.4741835535282300, -161.5790690867689200 66.4735862571001200, -161.5766728935391800 66.4729473760206700, -161.5743474131026000 66.4722680830057000, -161.5720969082457000 66.4715496254149200, -161.5705965306053700 66.4710492138502200, -161.5704239794830200 66.4709914656836500, -161.5702358988676200 66.4709109107100200, -161.5673773246038300 66.4703424285602900, -161.5670545588208100 66.4702768967614500, -161.5653909290481000 66.4702914370003000, -161.5618040712009000 66.4702914370003000, -161.5588683485953800 66.4702657784429800, -161.5559382350614600 66.4701889214816200, -161.5530193225836500 66.4700610109069900, -161.5523257141603600 66.4700182976064300, -161.5509220145393000 66.4701817997503200, -161.5488360010805600 66.4704050312672600, -161.5459983972082200 66.4706824172598100, -161.5431332956650300 66.4709102883791700, -161.5402305601921600 66.4710890322331200, -161.5373110451685600 66.4712169509016300, -161.5361802565136000 66.4712466024487900, -161.5347893092791800 66.4714914815467000, -161.5342158736636000 66.4715807005889000, -161.5340187116941600 66.4716195656904500, -161.5314456559922000 66.4721926523690700, -161.5288120147626500 66.4727122878418900, -161.5270540389127200 66.4730217616450400, -161.5261425913075200 66.4732120168211500, -161.5235866613952900 66.4738036475203600, -161.5209528501938500 66.4743232829931700, -161.5182647181422000 66.4747964711802400, -161.5172562435807600 66.4749547950278300, -161.5147202741213200 66.4755725492337900, -161.5121455672641000 66.4761376400401200, -161.5095115096484300 66.4766572755129300, -161.5072324288335000 66.4770422869720000, -161.5068208837767300 66.4771190917727500, -161.5045955230649200 66.4775462724425700, -161.5019070447742700 66.4780194597303200, -161.4991693690711000 66.4784452959137300, -161.4963877201171600 66.4788229680056000, -161.4948600048852800 66.4790010670456600, -161.4946012231678800 66.4790388979268400, -161.4918643163850600 66.4794722929120200, -161.4890825532172300 66.4798499659032700, -161.4862621254966700 66.4801787526473600, -161.4834366345929800 66.4804358832095100, -161.4826392201238700 66.4805347420847300, -161.4807265725732500 66.4808342882718600, -161.4803334950947000 66.4808909554532800, -161.4779984296837700 66.4812242927669700, -161.4753132671934800 66.4815953683316300, -161.4751872353026300 66.4816164799166800, -161.4724507008391500 66.4820562843700600, -161.4696686498882600 66.4824339564619900, -161.4668479298880200 66.4827627432060800, -161.4647901524435600 66.4829641041101800, -161.4626851731821700 66.4833792527503500, -161.4606251789088600 66.4837423090603500, -161.4599974997847500 66.4838597038623200, -161.4579641874972300 66.4842682505793600, -161.4552749852523400 66.4847414378671100, -161.4534539309541000 66.4850246208895900, -161.4531670768990600 66.4850780747933600, -161.4527785643792000 66.4851946269305400, -161.4518093362318600 66.4855047149706600, -161.4506928153211300 66.4858321302487000, -161.4491297009748800 66.4863804208198400, -161.4468389838320000 66.4871157110213200, -161.4444700085840000 66.4878103590608600, -161.4441176524077000 66.4879045063879000, -161.4439083621811300 66.4880059930822000, -161.4419723061769500 66.4888890859626300, -161.4399415020986000 66.4897375873198400, -161.4378198134336000 66.4905498765755900, -161.4356112799365800 66.4913244050972600, -161.4333008379632600 66.4920427223937600, -161.4326861756265000 66.4922455446961700, -161.4317204332513700 66.4926020602369500, -161.4301144635116400 66.4931583997404200, -161.4278231240379300 66.4938936899419000, -161.4254535048753200 66.4945883379814400, -161.4230101242178300 66.4952410182584700, -161.4204976387550000 66.4958504843124800, -161.4184750580774300 66.4962940344422000, -161.4179223158621700 66.4964216644283400, -161.4174383933671200 66.4965227221459800, -161.4167236715601600 66.4966668753760400, -161.4148650031173700 66.4971066771315100, -161.4141912355370600 66.4972547262247000, -161.4131310310722000 66.4974994758202300, -161.4132742373161600 66.4975134503855000, -161.4160971588567600 66.4978415572421100, -161.4171240776140600 66.4979805591555600, -161.4188856849263800 66.4981524519741400, -161.4217086784127600 66.4984805588308000, -161.4232722037491800 66.4986921899926500, -161.4241827637235400 66.4985324380216400, -161.4269234764372500 66.4981074570935100, -161.4297079303766500 66.4977305557206400, -161.4325308393267400 66.4974024497632900, -161.4353868451267700 66.4971237597537800, -161.4382705266634400 66.4968950162920000, -161.4411764124614300 66.4967166537506400, -161.4440989869786400 66.4965890084760100, -161.4470327049953000 66.4965123250838100, -161.4491336534953000 66.4964940427659000, -161.4494485007476800 66.4964574466538900, -161.4523043986290500 66.4961787575437000, -161.4551879704484300 66.4959500140819300, -161.4580937456298400 66.4957716506412500, -161.4610162095304000 66.4956440062659300, -161.4639498160311500 66.4955673219743600, -161.4668890001272200 66.4955417452554200, -161.4698281842233000 66.4955673219743600, -161.4727617907240400 66.4956440062659300, -161.4756842546246000 66.4957716506412500, -161.4785900298060000 66.4959500140819300, -161.4809301628966700 66.4961316483569400, -161.4832527771938800 66.4963461825303700, -161.4855549741827000 66.4965933495035400, -161.4875072080911600 66.4968327760118400, -161.4878344893701600 66.4968622854661400, -161.4882479661706600 66.4968755954324100, -161.4902845250108000 66.4970060178135300, -161.4931682191379700 66.4972347612752500, -161.4960242375285000 66.4975134503855000, -161.4988471590691000 66.4978415572421100, -161.5016316255990000 66.4982184586150400, -161.5043723509032500 66.4986434386438500, -161.5070641315044500 66.4991156924353400, -161.5097018547567700 66.4996343224660800, -161.5122805123357400 66.5001983448777900, -161.5147952038355500 66.5008066885778800, -161.5166407961358200 66.5012895264905000, -161.5172448113989000 66.5014429993949500, -161.5184375390611500 66.5017221390655200, -161.5194827329417500 66.5019403298823600, -161.5220616288410700 66.5025043513947500, -161.5245765532653000 66.5031126950948400, -161.5270227272170600 66.5037642044545100, -161.5293955012013800 66.5044576447045900, -161.5316903642189200 66.5051916974389300, -161.5339029518597200 66.5059649696077000, -161.5360290543973200 66.5067759935173500, -161.5380646257818300 66.5076232277298200, -161.5400057908345600 66.5085050633580300, -161.5409899198489000 66.5089833381106200, -161.5544399726266000 66.5156728327351000, -161.5560028324647000 66.5164807530843500, -161.5574878550804000 66.5173117239569400, -161.5588928982886000 66.5181645501539300, -161.5602159368160000 66.5190380085972500, -161.5616337899674000 66.5200665209532100, -161.5629379283426800 66.5211187106600000, -161.5641258572225000 66.5221925785247100, -161.5651953049193700 66.5232860821869800, -161.5654475926322700 66.5235814798015200, -161.5655351038619200 66.5235916403419800, -161.5683224482223700 66.5239685399162700, -161.5710660072903700 66.5243935181463800, -161.5737605703939700 66.5248657692399100, -161.5764010212900800 66.5253843974720100, -161.5789823453589200 66.5259484171857600, -161.5814996367987800 66.5265567581879000, -161.5839481148136000 66.5272082648496000, -161.5863231236132300 66.5279017024017200, -161.5886201477016200 66.5286357524381000, -161.5908348190716000 66.5294090219088600, -161.5929629252987400 66.5302200422212300, -161.5949955774838700 66.5310824129230700, -161.5954524150968400 66.5312583886637900, -161.5974109586488000 66.5319250893714400, -161.5992975852153700 66.5326327838759500, -161.6011147958111600 66.5333688034276000, -161.6028599113558000 66.5341320643433400, -161.6034710438535700 66.5344098676213800, -161.6043934065304500 66.5348381112898400, -161.6058963031718200 66.5355769753971300, -161.6073328190543400 66.5363365436965600, -161.6087011555338800 66.5371158674034300, -161.6099995976033200 66.5379139743504900, -161.6113898496618000 66.5388024685591400, -161.6125411032892600 66.5395660343450600, -161.6139601273579600 66.5405945431037400, -161.6152653431210500 66.5416467301125700, -161.6164542549598800 66.5427205943800000, -161.6175245866903000 66.5438140944449400, -161.6184742887574000 66.5449251510748900, -161.6193015373360400 66.5460516526616700, -161.6200047433242200 66.5471914561208600, -161.6205825514435600 66.5483423931869400, -161.6210338465347700 66.5495022740108200, -161.6213577508595000 66.5506688925554000, -161.6215536303957000 66.5518400292940000, -161.6215672677152000 66.5520772245843100, -161.6218804737048600 66.5523970990469100, -161.6228305040245000 66.5535081547776000, -161.6236580394869000 66.5546346554650100, -161.6243614891913600 66.5557744571255500, -161.6249394987588300 66.5569253923930000, -161.6253909503320800 66.5580852723175000, -161.6257149679713600 66.5592518899628100, -161.6259109158560500 66.5604230249027200, -161.6259784045796800 66.5615964486172500, -161.6259172866534200 66.5627699271904600, -161.6258588559014400 66.5631331480763600, -161.6263136673418300 66.5632482235267300, -161.6279085313536000 66.5635712123416300, -161.6294778546192700 66.5639205243127800, -161.6317253269622500 66.5644599026025000, -161.6339186007628000 66.5650335900282400, -161.6345303115246300 66.5652004412474400, -161.6371843017141100 66.5659625339438300, -161.6397426741850400 66.5667748429846700, -161.6401896876039600 66.5669252716840000, -161.6416613579852400 66.5674248612683600, -161.6437557162532800 66.5681661778269200, -161.6457711886893700 66.5689413979272300, -161.6477043111050600 66.5697491932707000, -161.6488433159662200 66.5702553928721300, -161.6496101786668000 66.5704968518483000, -161.6518285822232600 66.5712701159231400, -161.6539602749467000 66.5720811308395900, -161.6560011990960400 66.5729283560588700, -161.6579474687006800 66.5738101817945000, -161.6597953767552000 66.5747249353075900, -161.6615414024137700 66.5756708764099000, -161.6631822163861600 66.5766462091552900, -161.6647146881323400 66.5776490800410600, -161.6659039084386000 66.5785022497790400, -161.6670146817821200 66.5793720084115000, -161.6680455422679200 66.5802572146987500, -161.6683318504345300 66.5805284196508800, -161.6690749026845700 66.5807913040754900, -161.6708785649937600 66.5814530684044100, -161.6726207928153000 66.5821404130496700, -161.6742992910794000 66.5828524350918700, -161.6759118510510700 66.5835881992360900, -161.6775042437258500 66.5843761555352100, -161.6796288129193600 66.5846627325991000, -161.6823790755338700 66.5850877063326200, -161.6850802234735000 66.5855599529295400, -161.6860129103674800 66.5857579287854300, -161.6864298369673600 66.5858306812410200, -161.6877800458124500 66.5859808419423300, -161.6905743922943400 66.5863577379193400, -161.6933248419678600 66.5867827116528600, -161.6960261742685000 66.5872549573504700, -161.6986732585640000 66.5877735792873300, -161.7012610676441400 66.5883375927057800, -161.7037846849152300 66.5889459274126800, -161.7062393151922200 66.5895974277791000, -161.7086202927922600 66.5902908572373300, -161.7109230905281800 66.5910249000791000, -161.7124676536592700 66.5915628385542400, -161.7142471107155500 66.5918377271294700, -161.7169489925019800 66.5923099728270200, -161.7195966163907000 66.5928285947638900, -161.7221849524735500 66.5933926072830800, -161.7247090832575500 66.5940009410906000, -161.7271642135576000 66.5946524414570700, -161.7295456758922000 66.5953458700159300, -161.7318489430742300 66.5960799119584400, -161.7336526116786500 66.5967027140590600, -161.7353999521460500 66.5973504273803800, -161.7370887863184000 66.5980222452304800, -161.7387170106814800 66.5987173330385600, -161.7454961848010600 66.6017151664218500, -161.7469790994058800 66.6023932336608500, -161.7488291388536400 66.6033079826773400, -161.7505771780942600 66.6042539192830000, -161.7516167062459500 66.6048711213052800, -161.7526145094520300 66.6052152783624400, -161.7545896140194400 66.6059239891008600, -161.7564932215849000 66.6066629881064500, -161.7583223886672700 66.6074311350389000, -161.7600742886974400 66.6082272445917200, -161.7608437666265000 66.6085977517848800, -161.7623723137312800 66.6093472413821200, -161.7640013771618000 66.6101787293649200, -161.7655473549264700 66.6110349190263400, -161.7670078719157200 66.6119144991548600, -161.7683806816231400 66.6128161225660700, -161.7698039037271400 66.6138446205328600, -161.7711129820784200 66.6148967949511600, -161.7717720583338000 66.6154903304144500, -161.7718802503732100 66.6155738234732600, -161.7733105636315800 66.6165946232433200, -161.7746197867737000 66.6176467976616200, -161.7758123507593400 66.6187206493385700, -161.7763249409432500 66.6192427246720600, -161.7773205920716500 66.6196337427031200, -161.7788533677886600 66.6202766347589700, -161.7811586935188800 66.6212759029606300, -161.7830753898173600 66.6221432693964200, -161.7849269041532800 66.6230580148155700, -161.7866763382424000 66.6240039487233300, -161.7883203555999000 66.6249792742741500, -161.7898558193905000 66.6259821379653700, -161.7910695723029000 66.6268519190808800, -161.7922016343978800 66.6277389132203000, -161.7926753684734500 66.6281277306103400, -161.7931713814540700 66.6285623558681000, -161.7946492814391500 66.6289180368380000, -161.7971078714310800 66.6295695327078200, -161.7994926900355800 66.6302629576694000, -161.8017992046695200 66.6309969951153100, -161.8040230266413500 66.6317702510962700, -161.8061599264394200 66.6325812579187900, -161.8082058364301800 66.6334284741448100, -161.8101568625491500 66.6343102917866200, -161.8103959284293300 66.6344238473827200, -161.8129517989863200 66.6356444108609500, -161.8140277388890200 66.6360142876293400, -161.8156448197526000 66.6366077250665400, -161.8172125530168700 66.6372216922273400, -161.8187292821306500 66.6378555424993200, -161.8256742228870500 66.6408533444063700, -161.8276724634134200 66.6417553050633300, -161.8295254454429300 66.6426700477845200, -161.8312454159431600 66.6436079165721400, -161.8333498151418200 66.6444142819935900, -161.8353967035949700 66.6452614973202900, -161.8373486623109000 66.6461433131634000, -161.8384645258172000 66.6466842382870400, -161.8461065059104800 66.6504876699700600, -161.8476406710801000 66.6512808423370900, -161.8490995863767800 66.6520960705772700, -161.8504812346212400 66.6529322314373800, -161.8516809221368000 66.6537206284043600, -161.8517862174599300 66.6537835125990900, -161.8527722512383800 66.6543099946106300, -161.8544182848759200 66.6552853156648600, -161.8550855701429300 66.6557206064209100, -161.8569530060763400 66.6562630208218300, -161.8592619434839000 66.6569970555697200, -161.8614881036930000 66.6577703079534000, -161.8636272499975600 66.6585813111786400, -161.8656753111666500 66.6594285238073800, -161.8676283886392000 66.6603103387511700, -161.8690385804660800 66.6609984271357800, -161.8703810065781600 66.6616996833937500, -161.8721599977856400 66.6625053428473400, -161.8735109305849600 66.6631716829268700, -161.8753283866956600 66.6636526205720700, -161.8777164923222400 66.6643460419363700, -161.8800261851603000 66.6650800748856200, -161.8801508015182500 66.6651215794973400, -161.8810665802584500 66.6654273256106600, -161.8832590698501700 66.6661918302887700, -161.8853667120041300 66.6669930003267800, -161.8873856045619800 66.6678293572391000, -161.8893120081426400 66.6686993532926000, -161.8914703306912000 66.6697717246854000, -161.8934881323713700 66.6708862985638600, -161.8959628975696300 66.6723294190674700, -161.8973100541156800 66.6731463955897500, -161.8985816478247600 66.6739821958217400, -161.9000083961705000 66.6750106838960000, -161.9010558590406400 66.6758504951043300, -161.9020315901857100 66.6764821986945400, -161.9034584833223000 66.6775106858694900, -161.9047709395272000 66.6785628512946000, -161.9055686282895300 66.6792793591551500, -161.9068530562235300 66.6796520795798500, -161.9091641798829600 66.6803861107304700, -161.9111776612200500 66.6810818181714400, -161.9131206258162000 66.6818083543721000, -161.9149900663384800 66.6825645960793200, -161.9167830869698700 66.6833493750736500, -161.9230625339088000 66.6862083378445600, -161.9238225662584000 66.6865603855534300, -161.9256789108530400 66.6874751219793300, -161.9274329099008300 66.6884210459945200, -161.9290812179238500 66.6893963616528300, -161.9306206899928200 66.6903992154514600, -161.9320483889219700 66.6914277008277700, -161.9333615861682500 66.6924798626556000, -161.9345577699251000 66.6935537026413400, -161.9352880553994000 66.6943070503301700, -161.9356390994648500 66.6946422258581000, -161.9364784259386000 66.6953867044329000, -161.9375553883704400 66.6964801802162100, -161.9378650537292000 66.6968402184014000, -161.9385484557466000 66.6971751295286600, -161.9401186576499000 66.6980084898999600, -161.9416755963516700 66.6988689459451500, -161.9435337350937800 66.6999503537259100, -161.9452570888435300 66.7010662280240500, -161.9466854056069600 66.7020947116017200, -161.9479991712247500 66.7031468725302300, -161.9491958729911000 66.7042207107172700, -161.9502732221314700 66.7053141847019300, -161.9509223824619500 66.7060509857644200, -161.9515173235656000 66.7067949265446600, -161.9520575418220600 66.7075453838124900, -161.9525425767784600 66.7083017262437500, -161.9531280327325000 66.7092734814860400, -161.9535609303926000 66.7100415897476200, -161.9539369018665000 66.7108143798797600, -161.9543911899014600 66.7119742355226300, -161.9547172490018200 66.7131408288862000, -161.9549144415482000 66.7143119395444200, -161.9549823745369400 66.7154853398765800, -161.9549714765523700 66.7159972079048800, -161.9548140367383800 66.7194692771854500, -161.9547152588021000 66.7205142903023300, -161.9545138844082100 66.7215569939601800, -161.9542102049369700 66.7225958134461000, -161.9538046664521600 66.7236291767451900, -161.9532289249748700 66.7247805751634900, -161.9525267064423000 66.7259209406989300, -161.9516993301599300 66.7270481005894000, -161.9507483555521500 66.7281599072540000, -161.9496755794643800 66.7292542418898000, -161.9486607152198000 66.7301688820883200, -161.9484330860180700 66.7304825395376000, -161.9478698091443500 66.7311854064813600, -161.9472580012557300 66.7318819017284600, -161.9461850632900200 66.7329762354649500, -161.9449923338291000 66.7340510134435500, -161.9436820701713800 66.7351041843107300, -161.9422567562443000 66.7361337425782000, -161.9419244243726700 66.7363515682703200, -161.9411609026535000 66.7372438917922200, -161.9400877326627000 66.7383382255287600, -161.9388947441970600 66.7394130026080500, -161.9378926170506000 66.7402064600601600, -161.9371788611155000 66.7413659173033100, -161.9363509695215800 66.7424930744958300, -161.9360676021381000 66.7428244117172700, -161.9357203028496600 66.7437401517866500, -161.9351440946242300 66.7448915475070000, -161.9344413059215000 66.7460319103444700, -161.9336132578455400 66.7471590675369800, -161.9326615107201200 66.7482708715035600, -161.9319845973113000 66.7489608259813800, -161.9316751136155700 66.7493820630318200, -161.9307232810545500 66.7504938669984000, -161.9299482012484600 66.7512976873384800, -161.9289383129527400 66.7522965868180900, -161.9284067003089500 66.7530200581292100, -161.9274547274537000 66.7541318611964700, -161.9267028519550000 66.7548796204981200, -161.9264104841565000 66.7551927248644000, -161.9259039841815000 66.7557708585383700, -161.9254207487685200 66.7562632544456800, -161.9253700413942700 66.7563645315979100, -161.9246669262376200 66.7575048926367500, -161.9238384941511700 66.7586320480306200, -161.9228863054586000 66.7597438510978800, -161.9218121579047200 66.7608381821364700, -161.9212361466308300 66.7613358525675800, -161.9220352842009700 66.7617252446244200, -161.9237945775577000 66.7626711578477000, -161.9254478615295600 66.7636464627141200, -161.9269919830935300 66.7646493039222800, -161.9284239942719000 66.7656777776073800, -161.9297411593270200 66.7667299286433700, -161.9307356530279400 66.7676217899137300, -161.9309449297646800 66.7677987863849600, -161.9320520365722000 66.7686749302039300, -161.9332519318311700 66.7697487575991300, -161.9343321561041000 66.7708422216912300, -161.9349657356801200 66.7715584903321000, -161.9355479387863300 66.7722815254720700, -161.9360782986745200 66.7730107533436700, -161.9365563872674400 66.7737455947834000, -161.9368626549875200 66.7742454676542800, -161.9373254721927500 66.7750552963648800, -161.9377247954629000 66.7758703753176000, -161.9381802930860200 66.7770302201685700, -161.9385072245287600 66.7781968036396200, -161.9387049485745000 66.7793679044053200, -161.9387730713201600 66.7805412948449100, -161.9387430321651800 66.7813697979778500, -161.9386483506408500 66.7821975429822600, -161.9384891085854600 66.7830237447501000, -161.9382654507898800 66.7838476181730700, -161.9379630825302200 66.7848197484327100, -161.9374479355737400 66.7861850973644100, -161.9368707398927000 66.7873364876888300, -161.9361667442997800 66.7884768451303300, -161.9353372734963400 66.7896039969269900, -161.9346557933301700 66.7903987125305900, -161.9346260563473800 66.7909647323365900, -161.9344347075956400 66.7921359994768400, -161.9341140039581000 66.7933028581404600, -161.9338163652330400 66.7940711687495000, -161.9342216510083600 66.7948703728694700, -161.9346775038637000 66.7960302150224800, -161.9350046907138700 66.7971967948962500, -161.9352025703423000 66.7983678938632600, -161.9352707488459700 66.7995412807055700, -161.9352433069330500 66.8003342435305900, -161.9351566023952700 66.8011265435552000, -161.9350238948368600 66.8018459805076600, -161.9350229550453000 66.8019154342499600, -161.9351593552200400 66.8026530851718100, -161.9352266191131700 66.8038182782909800, -161.9351649364126600 66.8049917208912800, -161.9349734806416000 66.8061629853335700, -161.9346525962402800 66.8073298421985000, -161.9342028767613300 66.8084900692613200, -161.9336251603728300 66.8096414559884700, -161.9329205298585400 66.8107818098326900, -161.9320903090205000 66.8119089589313800, -161.9311360626791200 66.8130207548040300, -161.9301338411038700 66.8140439422741700, -161.9290265427407300 66.8150501703291300, -161.9278159986094200 66.8160377626326700, -161.9265042106008000 66.8170050779220900, -161.9240900219369300 66.8187009834636600, -161.9237054250653000 66.8189675560079800, -161.9221625877332000 66.8199715294625800, -161.9205099512732000 66.8209480115415300, -161.9187506534199000 66.8218951424469200, -161.9180074491844200 66.8222606251278000, -161.9171886020723000 66.8229958325916300, -161.9158736052826300 66.8240489935662400, -161.9144431400388600 66.8250785428405200, -161.9133999354586000 66.8257679199535900, -161.9123049335258300 66.8264447227458000, -161.9111591046089700 66.8271083495707200, -161.9099634685392200 66.8277582059764700, -161.9062703719800400 66.8297034782330000, -161.9051221580611200 66.8302911339287700, -161.9039332030548600 66.8308660920965300, -161.9020943592672400 66.8316955476115000, -161.8967621691387500 66.8340032439546100, -161.8951996456471000 66.8346571041420800, -161.8935824991330000 66.8352900496960800, -161.8919125309385300 66.8359013737494400, -161.8901916017610000 66.8364903937167600, -161.8878622272599400 66.8372084376193800, -161.8875568588619300 66.8373051327257600, -161.8852306301894000 66.8380306580884300, -161.8828278395331500 66.8387252854436200, -161.8803502504636600 66.8393779468348200, -161.8778025853210400 66.8399873958017600, -161.8751897031422700 66.8405524695209000, -161.8725165861714900 66.8410720897052200, -161.8714497276228000 66.8412571198202800, -161.8711278512692800 66.8416317036402500, -161.8700501307089300 66.8427260247862600, -161.8688520817581500 66.8438007901743800, -161.8675359725070800 66.8448539493503500, -161.8661042967758600 66.8458834959266700, -161.8647462107689700 66.8467713875895100, -161.8634133984096000 66.8476058730127000, -161.8631484239605800 66.8477656681511100, -161.8627845924349600 66.8483268298193700, -161.8622863041695700 66.8490210353925200, -161.8615676757076500 66.8499568096590900, -161.8607630711587700 66.8508816868404100, -161.8600270102383000 66.8516289155420500, -161.8598670748056300 66.8518411366591700, -161.8589902394080000 66.8528546833969700, -161.8579120278178000 66.8539490036436600, -161.8567134320792000 66.8550237663338300, -161.8553967211817000 66.8560769246104200, -161.8539643916433300 66.8571064702874200, -161.8533902086911400 66.8574769217226000, -161.8533783016672500 66.8586154076749600, -161.8533393565260500 66.8592292543266900, -161.8537248383306000 66.8595360085800000, -161.8549291915289200 66.8606098224854000, -161.8560134312748200 66.8617032712890000, -161.8569754801342800 66.8628142775569400, -161.8578134926985000 66.8639407278823200, -161.8585258555837400 66.8650804800801700, -161.8590461538569000 66.8661034759946900, -161.8591228363498000 66.8662227081115400, -161.8594678153873500 66.8666702035670800, -161.8595464584023000 66.8667559404343600, -161.8606405322347500 66.8678422747012700, -161.8615672530262700 66.8689092096923300, -161.8623795494766000 66.8699904735815400, -161.8630759799724800 66.8710841687994300, -161.8636553079461000 66.8721883761926400, -161.8646328359366000 66.8742709632344400, -161.8647168083340000 66.8744533655304300, -161.8651741540639400 66.8756131950929100, -161.8655024165033000 66.8767797632755200, -161.8657009517375000 66.8779508487527300, -161.8657693631655500 66.8791242248032000, -161.8657305951908000 66.8800595844823000, -161.8656091048762600 66.8809938487871700, -161.8654050289189300 66.8819258872699200, -161.8651186047398000 66.8828545730801200, -161.8642641669577200 66.8852719381494600, -161.8638881756987200 66.8862129689534300, -161.8633086381830700 66.8873643448886800, -161.8626017818467300 66.8885046888403800, -161.8621487564599000 66.8891177953500500, -161.8618152347852400 66.8897803420891800, -161.8611083092011000 66.8909206860408900, -161.8602753832023500 66.8920478252470000, -161.8593180252066800 66.8931596112271300, -161.8582926640751500 66.8942018202578800, -161.8571549155668700 66.8952241362849200, -161.8566468498722000 66.8958950332292400, -161.8557449602617000 66.8969376037874200, -161.8546648115318000 66.8980319195375200, -161.8544042365662400 66.8982305536971500, -161.8543092501717200 66.8983341780798900, -161.8539604741965000 66.8988258131607800, -161.8530028518001400 66.8999375982416500, -161.8521320706385300 66.9008304011022100, -161.8511809917093800 66.9017104812537600, -161.8501508093123700 66.9025767271343200, -161.8490428193706000 66.9034280424702400, -161.8480990447351000 66.9041224009280900, -161.8470240401273000 66.9048833622774200, -161.8454757942724600 66.9058873267388200, -161.8438173634805300 66.9068638016232200, -161.8420518962779500 66.9078109244346700, -161.8401827480353700 66.9087268875358600, -161.8382134728734300 66.9096099462420900, -161.8361478173678400 66.9104584143244100, -161.8339897115559200 66.9112706730032300, -161.8318444282777200 66.9119931964289100, -161.8317392588596700 66.9120369988085000, -161.8299696934465700 66.9128938773506000, -161.8283627668282000 66.9135911352227600, -161.8279945690940700 66.9137658672010500, -161.8221621841374500 66.9166577685412600, -161.8208681199677400 66.9172828666110600, -161.8188981559251300 66.9181659235185900, -161.8168317773646000 66.9190143907016500, -161.8146729170214800 66.9198266493804100, -161.8124256847975000 66.9206011482244800, -161.8107882783563400 66.9211107967259400, -161.8100953947866000 66.9213394088867000, -161.8085389893828400 66.9218791442072000, -161.8062444168463400 66.9226032810166800, -161.8038725808549000 66.9232880527015400, -161.8014278611068700 66.9239321912177200, -161.7989147739975800 66.9245345067621400, -161.7938005543520600 66.9257016127393200, -161.7936444428367500 66.9257371260675900, -161.7910223965663200 66.9263021961894500, -161.7883399041632200 66.9268218127765000, -161.7879978425263800 66.9268809306105400, -161.7877799062176800 66.9274349165882000, -161.7873417277385200 66.9283270773328200, -161.7868269629939300 66.9292129239373700, -161.7863568828638300 66.9299631204017400, -161.7858953355013000 66.9306593566440700, -161.7853864622154300 66.9313505009249000, -161.7852974077491400 66.9314603387237000, -161.7853053460648300 66.9315961876140500, -161.7852919596561800 66.9321581110080500, -161.7850816540950200 66.9363252033455200, -161.7849789326316200 66.9373576088665900, -161.7847751768329000 66.9383877058280000, -161.7844706735827000 66.9394139743755000, -161.7840658590521300 66.9404348991513400, -161.7834850427005300 66.9415862687913500, -161.7827766251411000 66.9427266055484400, -161.7819419391691200 66.9438537375600000, -161.7809825567995300 66.9449655172449000, -161.7804495124350000 66.9455044935376100, -161.7802530753191400 66.9457697341859400, -161.7792936183058100 66.9468815138708400, -161.7782112671362400 66.9479758233256300, -161.7770080677681000 66.9490505761232300, -161.7756862981841000 66.9501037236080400, -161.7742484629961600 66.9511332593924600, -161.7730976806134300 66.9518873876928600, -161.7718845923000700 66.9526263741079200, -161.7706104912811300 66.9533494299323000, -161.7692767337342400 66.9540557808496700, -161.7643340642656300 66.9565854703432100, -161.7624641039352300 66.9575003497614000, -161.7573517314971800 66.9598923962171900, -161.7553754263348400 66.9607768084030700, -161.7551712523513700 66.9608604975139800, -161.7550917504838700 66.9609588599634500, -161.7544706885714000 66.9616594875953400, -161.7538898182605000 66.9622464193368500, -161.7538707975992000 66.9625413268208300, -161.7537700681341200 66.9631241621504000, -161.7541485613070300 66.9633085753305300, -161.7559224056944300 66.9642544579768900, -161.7575893674553200 66.9652297313670600, -161.7591462674862200 66.9662325419983000, -161.7597660109926000 66.9666610455708500, -161.7602385813454200 66.9669948676191200, -161.7614933307526000 66.9679234733896500, -161.7626546316059300 66.9688705521343200, -161.7637207059458000 66.9698346604412800, -161.7646899170060200 66.9708143306169200, -161.7656562853093000 66.9719253188984000, -161.7664980624356000 66.9730517521367100, -161.7669582536205000 66.9737847310805100, -161.7675281000417400 66.9740884726049900, -161.7691957353948500 66.9750637441965200, -161.7707532640518800 66.9760665530290600, -161.7713368161411200 66.9764693566755200, -161.7722819514508800 66.9771350006797700, -161.7730887539428000 66.9777459056491000, -161.7741823493359200 66.9782820463793800, -161.7803517768130300 66.9813069691413700, -161.7819150746209700 66.9821033547860300, -161.7834014354278600 66.9829220139398600, -161.7848087853971000 66.9837618053630900, -161.7861351577113300 66.9846215626350800, -161.7875801146305400 66.9856500021459200, -161.7889091903068700 66.9867021181083300, -161.7901198450548000 66.9877759113293200, -161.7912097604220800 66.9888693394485100, -161.7920553785528500 66.9898316320242800, -161.7924455179462800 66.9903044721737000, -161.7931291025260200 66.9911840460069900, -161.7937355207776300 66.9920722434393400, -161.7940970284550700 66.9926849407574400, -161.7949261728046000 66.9933411238938000, -161.7961371585030300 66.9944149162154800, -161.7972273715459400 66.9955083434353500, -161.7981422635545800 66.9965547630919200, -161.7989465065760000 66.9976150035296300, -161.7995316081971300 66.9984487605019600, -161.8003009988919700 66.9996532566925100, -161.8006815047476200 67.0003923977909600, -161.8010743807780300 67.0007863458132500, -161.8020419433809400 67.0018973295981400, -161.8026439297735200 67.0027018873822700, -161.8029005612119000 67.0028385150854400, -161.8045701696775600 67.0038137830796900, -161.8058921847764700 67.0046814858619700, -161.8059663104968000 67.0047116167477800, -161.8073390635469200 67.0050057580093600, -161.8094435697649000 67.0055000442917000, -161.8115017222266700 67.0060233543943600, -161.8135109048044000 67.0065750210204700, -161.8154685616247800 67.0071543462960900, -161.8165522006235300 67.0074870576816000, -161.8182509300363600 67.0080258747943300, -161.8205091816534000 67.0087990822119100, -161.8226791711068400 67.0096100377730900, -161.8247567669112400 67.0104572018384500, -161.8267380138482300 67.0113389655209000, -161.8285015798839800 67.0121790177475400, -161.8307670899292200 67.0129380914198100, -161.8329374481047300 67.0137490460816700, -161.8350153973427000 67.0145962101470300, -161.8369969824247800 67.0154779729301700, -161.8384489135864600 67.0161765501077300, -161.8397098611211800 67.0168264649694300, -161.8398443817128200 67.0168781588999400, -161.8413932813748200 67.0172655301801100, -161.8438160756513500 67.0179589101756000, -161.8461593230942700 67.0186928990581200, -161.8484185666635000 67.0194661046770600, -161.8505895075996600 67.0202770593388700, -161.8519135110996400 67.0208166993312500, -161.8534690729393300 67.0213039052511000, -161.8545083034154300 67.0216595340602900, -161.8565410931968500 67.0217464364489500, -161.8595095888963700 67.0219247828025600, -161.8604187486263300 67.0219946673200900, -161.8622368549468700 67.0218854365637100, -161.8628158798489400 67.0218606836236900, -161.8650423602167300 67.0212800903040000, -161.8661561714701000 67.0210163020607300, -161.8675182630573800 67.0206265394832600, -161.8700163449783000 67.0199750867809000, -161.8725846297768000 67.0193667979394300, -161.8752182386308000 67.0188028267890600, -161.8779121668130200 67.0182842444223800, -161.8806612998790500 67.0178120337983500, -161.8834604172644200 67.0173870924404000, -161.8860002484127000 67.0170375520414700, -161.8863001462347300 67.0169896676391100, -161.8886922934145800 67.0165062388719000, -161.8914412250324800 67.0160340282478700, -161.8942401373724000 67.0156090859906000, -161.8970837154410800 67.0152322196912600, -161.8999665615075700 67.0149041434115700), (-160.9605660692686500 66.6137468246562900, -160.9633635013245000 66.6133699313772900, -160.9661995655574700 66.6130418308159200, -160.9690688813237800 66.6127631471015900, -160.9719660005304700 66.6125344090357900, -160.9748854265211800 66.6123560491923900, -160.9778216194721400 66.6122284075150300, -160.9807690080832300 66.6121517250221600, -160.9837219994706700 66.6121261483031600, -160.9861092723250200 66.6121428613040500, -160.9881071072571800 66.6121708311190400, -160.9904612616778600 66.6122200761956300, -160.9928096874171200 66.6123018263682500, -160.9951495471138700 66.6124159836107900, -160.9974780124003400 66.6125624085283900, -161.0003751352043000 66.6127911465941900, -161.0032444536685700 66.6130698303084600, -161.0060805214988300 66.6133979308699000, -161.0073634934304600 66.6135707832651200, -161.0080304099754200 66.6134809311001300, -161.0108664876982200 66.6131528314380700, -161.0132566060075300 66.6129206912369800, -161.0148421782239200 66.6126437917776000, -161.0175954958354200 66.6122188198427200, -161.0203927552214500 66.6118419256644100, -161.0232286449859500 66.6115138260023500, -161.0260977835858000 66.6112351422880200, -161.0289947247267400 66.6110064033229000, -161.0298924585701000 66.6109651478233800, -161.0310873464039000 66.6108580979229100, -161.0327292539518900 66.6106528231692900, -161.0355982927270000 66.6103741385557000, -161.0384951331438400 66.6101454004899000, -161.0414142785460900 66.6099670406464400, -161.0443501882106000 66.6098393989691400, -161.0472972926359300 66.6097627164762100, -161.0502499998376000 66.6097371397572700, -161.0512223513304000 66.6097399123671000, -161.0809680638250500 66.6099067321100600, -161.0836849561957500 66.6099433830807500, -161.0863959696982000 66.6100233085289200, -161.0890967471171700 66.6101463807509000, -161.0917829456264200 66.6103124009965800, -161.0946798058283500 66.6105411399617000, -161.0975488643885600 66.6108198236759700, -161.1003846750127200 66.6111479242373400, -161.1021807641309400 66.6114087941805900, -161.1025420793534400 66.6114378260948600, -161.1033024030834000 66.6114438731363000, -161.1037073713980300 66.6113029475730500, -161.1053666466533800 66.6107621546497600, -161.1055402706669200 66.6106932629837700, -161.1067339156376800 66.6101276640604900, -161.1097344613762600 66.6087946250719400, -161.1102389846414000 66.6085784019717300, -161.1109858814932000 66.6081051643219600, -161.1121410966342800 66.6073979977194900, -161.1133514348208300 66.6067055575155100, -161.1141789603907000 66.6062624066847800, -161.1143023788516800 66.6061366400939000, -161.1154943357949200 66.6050627857190400, -161.1168060914279500 66.6040141582269000, -161.1168751206902500 66.6039583939647700, -161.1174984542902000 66.6033967844341000, -161.1188069246997800 66.6023446073178300, -161.1202294867014200 66.6013161084517300, -161.1215425616398700 66.6004517187718600, -161.1229362167330000 66.5996075179726300, -161.1244084824654700 66.5987846922598100, -161.1259572814033700 66.5979843990608000, -161.1261187133079300 66.5979041300715800, -161.1253905358445300 66.5970483190247400, -161.1245674754086400 66.5959211429464500, -161.1238689171168000 66.5947807603238900, -161.1232961721805700 66.5936293439191300, -161.1228503152897800 66.5924690871787000, -161.1225321774180400 66.5913021997367900, -161.1224071203922700 66.5905305733273300, -161.1220832331546500 66.5898793481534300, -161.1217623631425200 66.5890805442317600, -161.1215020399871200 66.5882782626317700, -161.1211443769114500 66.5870281096595700, -161.1209532161180000 66.5862626049353100, -161.1208171657795600 66.5854952386144400, -161.1207363338147300 66.5847266375243400, -161.1207107795788000 66.5839574320898500, -161.1207783321543000 66.5827840119726500, -161.1209744608027000 66.5816128806300200, -161.1212987725203000 66.5804462665819900, -161.1217506341844000 66.5792863902547700, -161.1221870913611600 66.5783952385494900, -161.1229135520188000 66.5770345436093300, -161.1234488707687500 66.5761119579006000, -161.1240654000981200 66.5751974373119400, -161.1247623683885600 66.5742921149891900, -161.1255389032977200 66.5733971114875700, -161.1266105129647600 66.5723036159191700, -161.1278008430344600 66.5712297561484000, -161.1291076155240200 66.5701775745354800, -161.1305283330161200 66.5691490693741300, -161.1320602795582300 66.5681461975889900, -161.1337005305550200 66.5671708639442800, -161.1354459590637300 66.5662249210433300, -161.1372932348948600 66.5653101666309200, -161.1394582861709400 66.5643335991163700, -161.1409207960578600 66.5637349366180600, -161.1407198956066800 66.5629972272403200, -161.1405302762512000 66.5618259277244400, -161.1404691601236200 66.5606524482519100, -161.1405201211066800 66.5597750408854800, -161.1382643309341000 66.5591154942847000, -161.1359669875864000 66.5583802085798200, -161.1340052118710000 66.5576975709861900, -161.1321110966497700 66.5569852935365100, -161.1285549920192500 66.5555952240404200, -161.1262658963540000 66.5546556600307300, -161.1240944517974800 66.5536728206442400, -161.1229573256200600 66.5531172383699100, -161.1218578162851700 66.5525497787493200, -161.1207967026057000 66.5519708437794900, -161.1197747364149400 66.5513808462491200, -161.1190252881864600 66.5509355793136000, -161.1177804466102800 66.5501680744971000, -161.1166018302102700 66.5493841624492000, -161.1151871993297700 66.5483545843966300, -161.1138867535708000 66.5473013928450400, -161.1127029579751000 66.5462265941820300, -161.1116380527539000 66.5451322370631700, -161.1106940523885700 66.5440204070162000, -161.1098727393354300 66.5428932246426800, -161.1091756622270000 66.5417528348255000, -161.1088996971632500 66.5411968685406800, -161.1082136502397500 66.5402552279964500, -161.1075166459764000 66.5391148381792700, -161.1069451744802000 66.5379634145799600, -161.1067223530541200 66.5373949126451400, -161.1064989452701000 66.5370882321362800, -161.1058020291403000 66.5359478423191000, -161.1052306295898700 66.5347964178204700, -161.1047858177113000 66.5336361529861000, -161.1044684226795300 66.5324692574503200, -161.1042790317518700 66.5312979525385200, -161.1042181008846200 66.5301010160491200, -161.1042951808778700 66.5192024640225600, -161.1034425426392100 66.5192548657195200, -161.1005173852691000 66.5193827843880300, -161.0975810016618700 66.5194596332555100, -161.0946389999898300 66.5194852657325000, -161.0941449178536400 66.5194845426775600, -161.0849960535250300 66.5194575144527700, -161.0821804470699600 66.5194256280903500, -161.0793706493359700 66.5193468285933100, -161.0765715760174000 66.5192212535580400, -161.0737881248220700 66.5190491233184400, -161.0709021473162200 66.5188198960214500, -161.0680440460958200 66.5185406223519000, -161.0652192764484300 66.5182118365070800, -161.0624332325076600 66.5178341653145300, -161.0596912301661200 66.5174083300304300, -161.0569985043774500 66.5169351436420000, -161.0543601911698500 66.5164155108672000, -161.0517813249481700 66.5158504218595100, -161.0507783803179800 66.5156087578379800, -161.0493941501199000 66.5152898105763500, -161.0481994142715200 66.5150444242608500, -161.0456849943669800 66.5144349582068300, -161.0432397332270700 66.5137822788291800, -161.0408682911387000 66.5130876325882200, -161.0385751880944300 66.5123523441853900, -161.0363647930007600 66.5115778165630300, -161.0342413164835300 66.5107655282066000, -161.0322088000960200 66.5099170295473500, -161.0317675153585200 66.5096991966606800, -161.0314627027415200 66.5095769994790100, -161.0304682531073600 66.5092306696597600, -161.0298505348742400 66.5090414828781600, -161.0274590657832300 66.5083656468571600, -161.0251663971115200 66.5076303575550000, -161.0229564202026000 66.5068558299326500, -161.0208333456823200 66.5060435415762200, -161.0188012142046400 66.5051950420176500, -161.0168638613780800 66.5043120435660200, -161.0158779301223400 66.5039694549264500, -161.0146608847919700 66.5036156616335500, -161.0123686522914300 66.5028803723313900, -161.0101590962652600 66.5021058438097200, -161.0080364255405800 66.5012935554532900, -161.0060046807713800 66.5004450549953400, -161.0040677290424500 66.4995619630142300, -161.0022292548761700 66.4986459639401300, -161.0007155672696000 66.4978203350405000, -160.9993907678696000 66.4973558567874100, -160.9972685009405500 66.4965435675316600, -160.9952371428798000 66.4956950679730900, -160.9933005598729200 66.4948119750926600, -160.9920438211654000 66.4941946543598900, -160.9881310642971600 66.4921975649656900, -160.9859286156131000 66.4914108740126700, -160.9838068532036700 66.4905985847569200, -160.9817759789782200 66.4897500842990300, -160.9798398564242000 66.4888669914185500, -160.9783536862735800 66.4881326553978000, -160.9771601950869000 66.4875212513047700, -160.9757493269698300 66.4867718624315700, -160.9744047829543400 66.4860032820258800, -160.9731281944106000 66.4852164444834000, -160.9719211081725800 66.4844123084813000, -160.9705054412730800 66.4833921733102200, -160.9695968759950000 66.4829510027865900, -160.9678614659338800 66.4820038413042800, -160.9662312630623000 66.4810273259503800, -160.9647093637461200 66.4800233183215100, -160.9632986557083700 66.4789937330743900, -160.9620018162308000 66.4779405325296000, -160.9608213004626000 66.4768657257726500, -160.9605304327332600 66.4765659808354000, -160.9599671054975000 66.4761234928050200, -160.9589802695237800 66.4752767667095000, -160.9580676554978700 66.4744168574520700, -160.9574103527055800 66.4737662330252900, -160.9567376661103700 66.4732872208286400, -160.9554424714928300 66.4723190826595700, -160.9542472931780000 66.4713306243089000, -160.9539279277316600 66.4710363976117300, -160.9536791212943900 66.4708547507461800, -160.9523827035988600 66.4698015502014500, -160.9518677410034000 66.4693325474591500, -160.9507956322126200 66.4685497559665400, -160.9494993323283000 66.4674965545224300, -160.9483193102879000 66.4664217468661600, -160.9477533102670200 66.4658382289511600, -160.9475038779016200 66.4656355577348600, -160.9463239430954800 66.4645607500785900, -160.9452625092573600 66.4634663830671600, -160.9445376925604300 66.4626277238904200, -160.9432357791078800 66.4615795658443200, -160.9420560349580300 66.4605047572887900, -160.9410864623703200 66.4595048190921600, -160.9409948349436400 66.4594103309220800, -160.9408678443754800 66.4592576494210300, -160.9407688380114500 66.4591551815664200, -160.9404999335250700 66.4588998478497500, -160.9397008391224000 66.4581717621171600, -160.9386396759802300 66.4570773951057300, -160.9376989914153000 66.4559655542669800, -160.9368805606893000 66.4548383593028700, -160.9365908656758700 66.4543633526866400, -160.9363216023600400 66.4542313870688900, -160.9336268899689600 66.4529507659651100, -160.9318589451342000 66.4520596799103500, -160.9313897382458000 66.4518014557726200, -160.9287298440070800 66.4515408493308000, -160.9259126475506000 66.4512120616873300, -160.9231340715801000 66.4508343886961400, -160.9203994184983300 66.4504085507140900, -160.9177139097691000 66.4499353625270100, -160.9150826670314400 66.4494157261548800, -160.9125107112003300 66.4488506344492900, -160.9100029480775600 66.4482411647979900, -160.9075641584591000 66.4475884818230600, -160.9051989927393000 66.4468938310855000, -160.9029119583202000 66.4461585381860700, -160.9007074124171200 66.4453840060670600, -160.8985895530654000 66.4445717132140300, -160.8971720578441600 66.4439783890914600, -160.8958677396044800 66.4437207441171200, -160.8932963692320200 66.4431556524114600, -160.8911268312382400 66.4426184810581000, -160.8905064042471300 66.4424689058154200, -160.8897135268577500 66.4422946549743800, -160.8872064202400600 66.4416851853230800, -160.8854578962648800 66.4412334801410800, -160.8828826920825500 66.4406836598231000, -160.8815040898418500 66.4403485049795700, -160.8807828065812400 66.4402504240179000, -160.8780493109269400 66.4398245860358500, -160.8753649380414300 66.4393513969494600, -160.8727348086644600 66.4388317605773300, -160.8701639410130300 66.4382666679724100, -160.8676572381909600 66.4376571983211200, -160.8652194809942300 66.4370045144468100, -160.8646455669393400 66.4368252256037400, -160.8631942922827400 66.4365166736056400, -160.8606877648284700 66.4359072039543400, -160.8582501776036000 66.4352545200801000, -160.8558861774051300 66.4345598693425400, -160.8536002698365600 66.4338245755437800, -160.8513959802402600 66.4330533565272400, -160.8513172697761600 66.4330285523258800, -160.8493433424213000 66.4325237358817700, -160.8474185117548800 66.4319837523483400, -160.8455421149766000 66.4314171362918800, -160.8437164498542400 66.4308245837875700, -160.8415187082217700 66.4300311883886800, -160.8413058611765200 66.4299589305602500, -160.8409382030356200 66.4298293571391700, -160.8390242307836000 66.4292135886362900, -160.8368211768558000 66.4284390556179600, -160.8360990113602600 66.4281618854627100, -160.8343728175514700 66.4276995430995000, -160.8320095305154000 66.4270048914626200, -160.8297243118275000 66.4262695967645400, -160.8275215169044500 66.4254950637462700, -160.8254021484903300 66.4246926859187900, -160.8250881888688000 66.4246026017287400, -160.8228855405352200 66.4238280678111400, -160.8207695041093000 66.4230157731594800, -160.8187441085537400 66.4221672673056100, -160.8168167040276400 66.4212733079168600, -160.8164722753752000 66.4211355308801200, -160.8153727561477500 66.4207966132731300, -160.8131704414627000 66.4200220802548500, -160.8110547260947000 66.4192097847038700, -160.8090296390066000 66.4183612788500000, -160.8070990319947000 66.4174781796743300, -160.8056936200645000 66.4167830774770800, -160.7852291727880600 66.4063041662043400, -160.7838047635789600 66.4055472518043100, -160.7824478781670000 66.4047706863181600, -160.7811601982844800 66.4039754374165300, -160.7799433193287000 66.4031624916557300, -160.7790388450666200 66.4025003415176200, -160.7777437673609600 66.4018635234828600, -160.7760801366889300 66.4010108025065600, -160.7745035576930000 66.4001319346411400, -160.7730165763538800 66.3992283462112600, -160.7716215965594000 66.3983015022126300, -160.7702154804600200 66.3972719088715700, -160.7700471921242000 66.3971347901385200, -160.7614696455077000 66.3924930149407300, -160.7603463473060700 66.3918663610438100, -160.7598501931318800 66.3915720974743500, -160.7585798863526300 66.3910838330525000, -160.7414003414525600 66.3911076309124700, -160.7403929487755400 66.3912380712800400, -160.7376222679532700 66.3916282628341000, -160.7348117678487800 66.3919570522762100, -160.7319681043445000 66.3922363286437200, -160.7290967066476500 66.3924655577393400, -160.7270055292817000 66.3925861963958800, -160.7260076118617700 66.3927505834727200, -160.7232354750371100 66.3931282582625500, -160.7204248067593800 66.3934570477046600, -160.7175809732832800 66.3937363240721700, -160.7163556020293800 66.3938341424317900, -160.7144022574581800 66.3941002554225300, -160.7115914803625000 66.3944290448645800, -160.7087475362697500 66.3947083203327700, -160.7058758552864500 66.3949375503277700, -160.7029819196798100 66.3951162950809800, -160.7000712566831200 66.3952442146488700, -160.6971494232073000 66.3953210644156700, -160.6942219995456200 66.3953466968926000, -160.6934672651021900 66.3953449944759800, -160.6813713008448300 66.3952899352823400, -160.6786364607040700 66.3952549957215300, -160.6759074616600000 66.3951753508617900, -160.6731888533828400 66.3950511338028400, -160.6704851702543800 66.3948825504893400, -160.6676134955663400 66.3946533213937200, -160.6647695577688400 66.3943740450262100, -160.6619587869684300 66.3940452555841600, -160.6591865476210600 66.3936675807942700, -160.6584575158016700 66.3935537967703300, -160.6571872126197300 66.3934290473127400, -160.6543765470400000 66.3931002578706900, -160.6516044129133000 66.3927225830808000, -160.6488761000519500 66.3922967433001100, -160.6461968164299000 66.3918235533144000, -160.6435716728943500 66.3913039142443000, -160.6410056786691000 66.3907388189413700, -160.6385070850339200 66.3901140985868200, -160.6375088186770200 66.3898704092920300, -160.6350049649071800 66.3892683491550300, -160.6325719102654300 66.3886156634821400, -160.6302123059531400 66.3879210091473000, -160.6289379675131700 66.3875103355335900, -160.6280768396743800 66.3877413542801400, -160.6255751262910000 66.3883508266293900, -160.6230093757820300 66.3889159210330000, -160.6203844831573500 66.3894355601031000, -160.6194497485070700 66.3896006603422400, -160.6186494391203000 66.3897769184700900, -160.6160244556640700 66.3902965575401800, -160.6144570929204700 66.3905635024037800, -160.6133457071386500 66.3907716289076000, -160.6118303351018400 66.3910735547008200, -160.6091511306201500 66.3915467455859100, -160.6064228995971000 66.3919725853666000, -160.6036508482080500 66.3923502601564300, -160.6008402671645600 66.3926790495985400, -160.5979965218219800 66.3929583259660500, -160.5951250413875200 66.3931875550616700, -160.5922313081283300 66.3933663007142600, -160.5893208483784300 66.3934942202821000, -160.5863992190487000 66.3935710700488900, -160.5834728484931300 66.3936104549586000, -160.5831484054745000 66.3936443000444600, -160.5802379133489800 66.3937722196122900, -160.5773162516436800 66.3938490693790900, -160.5743889997525000 66.3938747018560800, -160.5714617478613500 66.3938490693790900, -160.5685400861560200 66.3937722196122900, -160.5656295940305300 66.3936443000444600, -160.5627358283957400 66.3934655543918700, -160.5598643164849800 66.3932363252962400, -160.5570205396661500 66.3929570489287400, -160.5542099271464000 66.3926282594866300, -160.5514378451803700 66.3922505846968000, -160.5494096518339400 66.3919340143433500, -160.5484830416590000 66.3922891665118900, -160.5463294342559700 66.3930466951489400, -160.5440472435854000 66.3937819916456500, -160.5416870879887000 66.3944766459804900, -160.5392534649754000 66.3951293316533800, -160.5383052521856000 66.3953602694609200, -160.5378560516154500 66.3955049865659200, -160.5355849846593000 66.3961733726031300, -160.5354965399333500 66.3962019323733400, -160.5353891303040800 66.3962349599754600, -160.5330726188062700 66.3969726729505400, -160.5325072609013500 66.3971539052286000, -160.5308375157387400 66.3977416814335000, -160.5289033411162600 66.3983689369769100, -160.5269124012862700 66.3989670050233400, -160.5256618777934000 66.3993283184472000, -160.5228808322845600 66.4000900154418900, -160.5200077852311000 66.4007947871497800, -160.5174407612820700 66.4013598815533300, -160.5148145646404000 66.4018795197241000, -160.5121342054292200 66.4023527097098200, -160.5094047980929300 66.4027785494905000, -160.5066315515048800 66.4031562242804000, -160.5038197581752700 66.4034850128231300, -160.5009747870567500 66.4037642891906300, -160.4981020682558000 66.4039935182863100, -160.4952070867376200 66.4041722630395800, -160.4922953715341400 66.4043001826074100, -160.4893724822542300 66.4043770323742100, -160.4864440000905000 66.4044026648511500, -160.4832658238586600 66.4043724719121000, -160.4823920362634300 66.4043519502823200, -160.4795193390462200 66.4045765163931500, -160.4766966153564700 66.4047514255379400, -160.4714691548775500 66.4050297207450600, -160.4692700579667800 66.4051319862522300, -160.4670637278087500 66.4052051128257400, -160.4648525709893400 66.4052490213253500, -160.4626389994902000 66.4052636622882300, -160.4597104166024000 66.4052380298113000, -160.4567874265984200 66.4051611800445000, -160.4538756115702000 66.4050332604766700, -160.4509805311266000 66.4048545157234000, -160.4480703357773500 66.4046219573375000, -160.4451886930037600 66.4043380431662000, -160.4445446399231500 66.4042684949951100, -160.4438233710517000 66.4043001826074100, -160.4409004817718000 66.4043770323742100, -160.4379719996080700 66.4044026648511500, -160.4360558231177300 66.4043916940215100, -160.4226009202962200 66.4042367516248600, -160.4217794966264400 66.4042727397951500, -160.4188645222798500 66.4043491722765100, -160.4159440000155700 66.4043746653586000, -160.4154112919975000 66.4043738181972000, -160.3810628267880000 66.4042590143420700, -160.3808733009620400 66.4042965115747800, -160.3781926836454000 66.4047697024598700, -160.3754630128077600 66.4051955413412400, -160.3738376231078000 66.4054168734899700, -160.3729435090356800 66.4055747000124400, -160.3704017335531400 66.4059809768406800, -160.3702157546533200 66.4060118910359700, -160.3677229634439800 66.4064661619838700, -160.3675850596028000 66.4064920777472600, -160.3649593845679200 66.4070185031014800, -160.3636156391504000 66.4072522180155100, -160.3624078154683000 66.4074726247618500, -160.3622796234058700 66.4074976394046000, -160.3619283931807600 66.4075589587789600, -160.3614951169061000 66.4076641938475500, -160.3609908643368800 66.4077793996995600, -160.3584909828725200 66.4084057631155200, -160.3559231792113200 66.4089708566198200, -160.3532961857703200 66.4094904947905300, -160.3506150117733600 66.4099636847763000, -160.3478847752621400 66.4103895236576700, -160.3451106860093200 66.4107671984475000, -160.3422980383237800 66.4110959869902900, -160.3394522029567800 66.4113752633578000, -160.3365786109141300 66.4116044924534200, -160.3336827498589800 66.4117832372066900, -160.3307701497226000 66.4119111567745200, -160.3278463719125000 66.4119880056420000, -160.3249170003193000 66.4120136390182600, -160.3226266177242000 66.4119979719289400, -160.3203389088135700 66.4119509895466000, -160.3173076791060800 66.4118679002834300, -160.3155296088043800 66.4118096197182100, -160.3137560405088200 66.4117324192158100, -160.3119882296730300 66.4116363545342100, -160.3102274281532700 66.4115214922231300, -160.3073538460031700 66.4112922631275000, -160.3045080196293700 66.4110129876593200, -160.3016953809370500 66.4106841982172100, -160.2989213006774500 66.4103065243267000, -160.2961910731594600 66.4098806854453300, -160.2943450806609200 66.4095548916449700, -160.2943744345325000 66.4100685529214200, -160.2943172781198500 66.4112075352995800, -160.2941281830691800 66.4130416162776100, -160.2939999757182600 66.4139290924537100, -160.2937986247067400 66.4148143877738400, -160.2935243422745400 66.4156965336681500, -160.2931774207013700 66.4165745678620900, -160.2926087038286000 66.4177260085485300, -160.2919150630297000 66.4188664145534600, -160.2910978032210200 66.4199936140141200, -160.2901584658405000 66.4211054584502000, -160.2895438817447200 66.4217342770153300, -160.2894124979883700 66.4219058982386600, -160.2891715831020500 66.4223236962816400, -160.2892619119077000 66.4232950989896800, -160.2894398679555000 66.4273780237768400, -160.2894500608716000 66.4278185395940000, -160.2894239355661300 66.4285980854333500, -160.2893413939901000 66.4293770008479800, -160.2890410357152000 66.4314881305728000, -160.2889011857411000 66.4322700910918800, -160.2887044617414700 66.4330500892902500, -160.2884510237957000 66.4338274605689200, -160.2881410832443700 66.4346015457248300, -160.2875719589787000 66.4357529837132600, -160.2868667888711800 66.4368898787649300, -160.2867861790389000 66.4371051683688700, -160.2864559066147800 66.4379355411923000, -160.2858700279793700 66.4391143770269500, -160.2859758359160800 66.4395849355963700, -160.2861708287207400 66.4407560885227300, -160.2862379757020000 66.4419295302237200, -160.2861940024512300 66.4429316879471200, -160.2860567452226000 66.4439324939894500, -160.2858263847798000 66.4449305588982500, -160.2855032295903500 66.4459244977174400, -160.2853373865111500 66.4463695686007400, -160.2850630303345600 66.4470465296736800, -160.2844936245810700 66.4481979658634700, -160.2841785551961500 66.4487153395413700, -160.2842158320949600 66.4494038542045500, -160.2842315675328000 66.4499575245201900, -160.2841707059133000 66.4511310201804700, -160.2839819094375300 66.4523023367834800, -160.2836655207471500 66.4534692440104800, -160.2832221244015000 66.4546295205360000, -160.2828651277234300 66.4553512102901900, -160.2828232238127000 66.4561590155262300, -160.2826343904647200 66.4573303321291700, -160.2824342787189700 66.4580682375591900, -160.2824928083963700 66.4581634478848900, -160.2830685444777100 66.4593143984407700, -160.2834884775112000 66.4603858426326000, -160.2838000899022000 66.4614631818803900, -160.2840028600439300 66.4625446670028200, -160.2840964452947000 66.4636285398253200, -160.2841861787491000 66.4661285022286300, -160.2841930675560000 66.4664855141952000, -160.2841321672656800 66.4676590071575200, -160.2839322632633200 66.4688309505879700, -160.2839507767069400 66.4693465112325700, -160.2838898710207000 66.4705200041949000, -160.2837145284027300 66.4716070273424900, -160.2844825080612700 66.4725081210530100, -160.2853073473561700 66.4736346343309500, -160.2860085028900700 66.4747744494812900, -160.2865846247805700 66.4759253973392700, -160.2870138684952000 66.4770234380812300, -160.2873292706293000 66.4781276247900900, -160.2875302807978000 66.4792360724868000, -160.2876165383725300 66.4803468916957700, -160.2877081819869700 66.4838812183435800, -160.2880627909650000 66.4852549102859600, -160.2883273265448500 66.4866184012183200, -160.2884180501528700 66.4879854984320700, -160.2883528241235000 66.4891984221695200, -160.2881507167821300 66.4904089384218100, -160.2880234006594000 66.4909778423535700, -160.2882266375492600 66.4918474382087700, -160.2884435594227000 66.4930816273152900, -160.2885181509918500 66.4943184937035900, -160.2884549889065800 66.4955124147662100, -160.2881563969001800 66.4982625442810300, -160.2880258333255200 66.4991361825888100, -160.2878241396722700 66.5000076616243500, -160.2875515209859000 66.5008760613811800, -160.2872082587541000 66.5017404600542400, -160.2866376119362100 66.5028918890495200, -160.2859416149135800 66.5040322833632400, -160.2855387842874400 66.5045859968463400, -160.2853839102392300 66.5049904561447000, -160.2848131896769200 66.5061418851399300, -160.2841171027221000 66.5072822794537000, -160.2837441080041600 66.5077949146036600, -160.2842319983080600 66.5081700056413200, -160.2852927945268000 66.5090644821402200, -160.2860985951740000 66.5098140113076400, -160.2862756716848800 66.5099675138897000, -160.2867164267216800 66.5103127006706800, -160.2879004012824600 66.5113922846263100, -160.2889737619295500 66.5120459046947900, -160.2903957447677800 66.5129820018179900, -160.2918132525795200 66.5140105150732700, -160.2931170725947800 66.5150627056793800, -160.2943047127922400 66.5161365744434100, -160.2953672824740700 66.5172373967884600, -160.2959478110426200 66.5177755753825300, -160.2970170680832000 66.5188690799441200, -160.2979658150702800 66.5199801410707300, -160.2987922317760500 66.5211066462548000, -160.2990866482302000 66.5215843391459900, -160.2991563717691000 66.5216799613612000, -160.2999906647373500 66.5228016470783800, -160.3002959207201500 66.5232679761362500, -160.3017269300537500 66.5242885258948000, -160.3030312896622700 66.5253407147022800, -160.3042194208895200 66.5264145816676700, -160.3052890502494300 66.5275080844306200, -160.3058256010706000 66.5281362105177400, -160.3065425145254000 66.5288690851402300, -160.3071941291057400 66.5296143874940600, -160.3077906620094000 66.5303669869469400, -160.3083315961262400 66.5311262386850300, -160.3088164602114300 66.5318914880018000, -160.3092588592089700 66.5326451396615000, -160.3094574834760500 66.5328315862087700, -160.3105273889278200 66.5339250880724100, -160.3113038977566600 66.5348338907715000, -160.3116419133436000 66.5350351527501400, -160.3131718184246500 66.5360380299312000, -160.3145906419445300 66.5370665395892000, -160.3155575165661200 66.5378460863278700, -160.3162392044756600 66.5382232664906000, -160.3190471648947300 66.5398612709809100, -160.3204339932341600 66.5407036074855700, -160.3217407998979800 66.5415660357439800, -160.3231599381805700 66.5425945445026600, -160.3244652591643600 66.5436467315115000, -160.3251152333813000 66.5442473275521700, -160.3254440129308300 66.5443732991884600, -160.3273880468209000 66.5452551303200700, -160.3292338315760300 66.5461698874304400, -160.3309778508471200 66.5471158330293500, -160.3326167780418500 66.5480911693720100, -160.3341474880161300 66.5490940447544400, -160.3355670570740000 66.5501225526137400, -160.3362366679878000 66.5506621449420700, -160.3364214687757400 66.5507967347815600, -160.3378481352832000 66.5518165542906100, -160.3391363556582700 66.5528505848866400, -160.3394768596693000 66.5529948199550200, -160.3407663714708300 66.5535881449769700, -160.3426127758589000 66.5545029011880200, -160.3433101803205400 66.5548871680084600, -160.3443548157221400 66.5554535763215500, -160.3450468890027000 66.5558468489529700, -160.3460022154298800 66.5564151755199900, -160.3466917481256400 66.5568131821826800, -160.3482229958945000 66.5578160557664100, -160.3496430640761000 66.5588445618271300, -160.3502480227280400 66.5593318837594600, -160.3536224957815400 66.5608712955738600, -160.3544483234313400 66.5612551594980500, -160.3562952979896000 66.5621699139104500, -160.3580404405139000 66.5631158577107300, -160.3596804244120300 66.5640911922547500, -160.3612121209426000 66.5650940649392200, -160.3613500976288700 66.5651894551293100, -160.3622681093857200 66.5658271122314900, -160.3636464517223300 66.5668335588217100, -160.3637181276894200 66.5669231978473600, -160.3638559146187400 66.5670079202793700, -160.3652124510937300 66.5675673453567400, -160.3671583007149800 66.5684491728910600, -160.3686032495403000 66.5691575418870800, -160.3699870984258000 66.5698849989935900, -160.3713082519742300 66.5706307078409600, -160.3725651885326000 66.5713938122746600, -160.3743717664438300 66.5725321552348500, -160.3757317419263300 66.5734270742002000, -160.3771527040340500 66.5744555784622200, -160.3774680351217000 66.5747094309954800, -160.3786233482888700 66.5753962072692000, -160.3801557426933500 66.5763990781549600, -160.3815768747729200 66.5774275815177200, -160.3828840294743500 66.5784797622313200, -160.3840747084810000 66.5795536211027800, -160.3851466320114400 66.5806471148725300, -160.3860977460141400 66.5817581661065100, -160.3865096121288600 66.5823341944675300, -160.3872615892509300 66.5830019437847200, -160.3885264344473600 66.5833069119844400, -160.3909805071446600 66.5839584132502300, -160.3933609442521500 66.5846518436077300, -160.3942151365193000 66.5849241889002300, -160.3943430731742700 66.5849615395434900, -160.3967246011593800 66.5856518465555500, -160.3990269690194000 66.5863858893973200, -160.4008433594334500 66.5870134992736100, -160.4025995141562400 66.5876779121060200, -160.4038208420582000 66.5880144240264800, -160.4062016676728000 66.5887078534847200, -160.4085043188192400 66.5894418963264900, -160.4106056675175000 66.5901731036058800, -160.4106781942432500 66.5901884865094800, -160.4113898232817000 66.5902350722908000, -160.4142565355106700 66.5905137569043900, -160.4170900267832800 66.5908418583651400, -160.4198849191536700 66.5912187534427700, -160.4226359084204000 66.5916437271763500, -160.4253377695224300 66.5921159728739000, -160.4257712076750700 66.5922008760696300, -160.4274151117180000 66.5920410773339300, -160.4303098126477200 66.5918123383687500, -160.4326375270002500 66.5916658460020600, -160.4349766375617300 66.5915516545852600, -160.4369374303181200 66.5914833753575400, -160.4376056391888600 66.5907031208524200, -160.4384381335130200 66.5898423635343300, -160.4389673260812000 66.5893430527397600, -160.4399169687930600 66.5882301192247000, -160.4409892205760300 66.5871366263542700, -160.4411688034974500 66.5869747124131100, -160.4412793004993000 66.5863384825349800, -160.4413543462260600 66.5860721555056300, -160.4412294672660800 66.5857470946527300, -160.4409114139306000 66.5845802063115000, -160.4407216335965000 66.5834089085943200, -160.4406604671068500 66.5822354336184500, -160.4407280151857300 66.5810620126018800, -160.4409241294450000 66.5798908812592500, -160.4412484186795500 66.5787242672112100, -160.4417002488673600 66.5775643899846700, -160.4422787413707900 66.5764134583145000, -160.4429827783325200 66.5752736593519800, -160.4438110035749200 66.5741471631611100, -160.4447618261973000 66.5730361101284400, -160.4453882327807000 66.5723985600455400, -160.4462074252324700 66.5712861616270900, -160.4471581372382000 66.5701751094937900, -160.4482296075103400 66.5690816130260700, -160.4494197828966300 66.5680077532552400, -160.4507263863136500 66.5669555707430600, -160.4521469185454200 66.5659270655816600, -160.4536786663373400 66.5649241928972500, -160.4553187050941300 66.5639488583531700, -160.4570639060743800 66.5630029154522200, -160.4589109426858300 66.5620881610398700, -160.4602633566685500 66.5614669777189100, -160.4616627395437500 66.5608625271839300, -160.4625238089266200 66.5605017956214000, -160.4638631000020400 66.5599563873774400, -160.4652406266535800 66.5594263080777200, -160.4666552827151000 66.5589119822022900, -160.4681059296449000 66.5584138225399300, -160.4704057056587500 66.5576797761008300, -160.4727835590140000 66.5569863430453700, -160.4752349688187400 66.5563348390816100, -160.4777552756853800 66.5557265007774400, -160.4803396907241200 66.5551624846609700, -160.4829833027372000 66.5546438591268300, -160.4856810926083000 66.5541716107313200, -160.4884279360004200 66.5537466342997800, -160.4912217204060300 66.5533870250911800, -160.4914585640614500 66.5533538383090200, -160.4920755916152200 66.5532703533442000, -160.4942066835915600 66.5529406322044700, -160.4969972745046000 66.5525637344288700, -160.4998264049645800 66.5522356311694800, -160.5026887051196200 66.5519569438579300, -160.5055787412658800 66.5517282030941700, -160.5076091451459000 66.5516038520361800, -160.5098270297935700 66.5513466270452300, -160.5126892265265600 66.5510679406330000, -160.5155791601500800 66.5508391998692400, -160.5184913447996800 66.5506608382271500, -160.5214202550407000 66.5505331947512100, -160.5243603330629000 66.5504565122582800, -160.5273059994722800 66.5504309346399600, -160.5284486996477500 66.5504347819397100, -160.5326101964034300 66.5504627526539700, -160.5352702911909500 66.5505014747632800, -160.5379245026136600 66.5505818849461000, -160.5405687216691300 66.5507038554985700, -160.5431988528447700 66.5508672002611700, -160.5460887891662500 66.5510959410249300, -160.5482244290141700 66.5513107324044300, -160.5511639485573600 66.5513941975842200, -160.5540929595224200 66.5515218410601500, -160.5570052448961200 66.5517002027022500, -160.5598952783443800 66.5519289434660100, -160.5622730777403100 66.5521604577389800, -160.5702087961989500 66.5522861209078100, -160.5724815017199000 66.5523373220098600, -160.5747485981692400 66.5524189705590700, -160.5770075188818600 66.5525309739253400, -160.5792557034879000 66.5526732062035600, -160.5821458502507500 66.5529019469673200, -160.5850082583244200 66.5531806333795500, -160.5878374967031000 66.5535087366389500, -160.5906281937361400 66.5538856344145400, -160.5933750524167200 66.5543106108460700, -160.5960728566769500 66.5547828601409600, -160.5987164839785400 66.5553014847757800, -160.6004334003811000 66.5556692517346300, -160.6031818985257800 66.5560876163504500, -160.6058798961402700 66.5565598656453400, -160.6085237122994400 66.5570784902801600, -160.6111083260883600 66.5576425063966300, -160.6113960075197200 66.5577119403538400, -160.6127570576920200 66.5578697515878200, -160.6145628262134400 66.5581135865728000, -160.6158168111968500 66.5582356506548100, -160.6186466242422700 66.5585637539141400, -160.6214379229217900 66.5589414376972300, -160.6218902693204300 66.5589222236817500, -160.6248313392948400 66.5588455411888200, -160.6277786982283300 66.5588199635705000, -160.6303603010870000 66.5588199635705000, -160.6333076600204800 66.5588455411888200, -160.6362487299948600 66.5589222236817500, -160.6391786276914800 66.5590498671576800, -160.6420917953000800 66.5592282279004600, -160.6449827028894000 66.5594569686642200, -160.6478458663936000 66.5597356550764500, -160.6506758494109000 66.5600637583358400, -160.6534672829887000 66.5604406552121200, -160.6562148656235300 66.5608656316436500, -160.6585153224241700 66.5612682185535000, -160.6589144361523000 66.5613300640312700, -160.6593851610962800 66.5613856592208300, -160.6621328480524700 66.5618106347530400, -160.6648314661992000 66.5622828831486100, -160.6668424456223400 66.5626817792407900, -160.6681214587383000 66.5627562404082500, -160.6710127773178000 66.5629849802726900, -160.6738763464162200 66.5632636666849200, -160.6767067323298000 66.5635917699443100, -160.6794985607100000 66.5639686668205900, -160.6822465336505800 66.5643936423527400, -160.6849454323857700 66.5648658898489900, -160.6875901325785200 66.5653845144838100, -160.6891243912776000 66.5657192088744400, -160.6909702093077000 66.5660046473966000, -160.6936692834106900 66.5664768957921600, -160.6963141544746300 66.5669955195276700, -160.6967336207599700 66.5670870192506100, -160.6975015563517000 66.5671906769083000, -160.7002498845245000 66.5676156524404500, -160.7029491339953000 66.5680878999367000, -160.7055941759304600 66.5686065236722000, -160.7081799894149600 66.5691705388893000, -160.7103731912697200 66.5696962124103500, -160.7141475928371200 66.5706472418767700, -160.7158765196856000 66.5710315446701200, -160.7183983787821300 66.5716398811756600, -160.7206555925815000 66.5722400644274900, -160.7208520818580600 66.5722878364146000, -160.7226017479722500 66.5726705492065200, -160.7251237734433600 66.5732788857120600, -160.7275768550877600 66.5739303878771700, -160.7299563308200000 66.5746238191339900, -160.7322576761508000 66.5753578637744600, -160.7343161460732400 66.5760729210285300, -160.7363004417120000 66.5768204734861200, -160.7373656203271000 66.5772555250225100, -160.7387337580564700 66.5776918688847000, -160.7405501403766600 66.5783197044908100, -160.7423093231167300 66.5789728416234000, -160.7440090804546700 66.5796504529061500, -160.7456472585141400 66.5803516839831100, -160.7466474359303800 66.5807953645145300, -160.7480743902209000 66.5814491959237100, -160.7499228675462700 66.5823639476381000, -160.7516694309994000 66.5833098878411000, -160.7520673828034300 66.5835592482607700, -160.7536821209331000 66.5844369290211400, -160.7549432276478000 66.5851758902551900, -160.7552190317329000 66.5853183329747400, -160.7568890062226200 66.5860602044149300, -160.7581173991986000 66.5866588003634100, -160.7644809408427300 66.5898516571283500, -160.7659782320097600 66.5906315590992200, -160.7674031061684000 66.5914326472989200, -160.7687536648497300 66.5922538569300300, -160.7700281058124000 66.5930940989135800, -160.7714501956699600 66.5941225995783800, -160.7727582317070000 66.5951747775939700, -160.7739497129089000 66.5962486328682000, -160.7750223594942700 66.5973421248392600, -160.7754966709346000 66.5978958203359000, -160.7765942629148700 66.5985693558911300, -160.7777658574083500 66.5993441056460300, -160.7791883060954200 66.6003726054114500, -160.7804966721836600 66.6014247825277700, -160.7816884537591000 66.6024986369026200, -160.7827613719397300 66.6035921279743700, -160.7837133681773600 66.6047031756111200, -160.7845426177475800 66.6058296673053300, -160.7849856309820500 66.6065459917042000, -160.7855247997297000 66.6071751771927400, -160.7857911168665300 66.6075369177945600, -160.7864294709433000 66.6082139202362700, -160.7873710440384200 66.6090816419043100, -160.7884442464048200 66.6101751320767300, -160.7890647066708400 66.6108990593441500, -160.7896037171378000 66.6112886177755300, -160.7909126596914600 66.6123407930932100, -160.7921049682696500 66.6134146456694200, -160.7926328945923700 66.6139524564407600, -160.7936910153280800 66.6146491243576400, -160.7951143426527700 66.6156776223244800, -160.7953075314174200 66.6158328866784500, -160.7956878556100300 66.6159652156222800, -160.7978233920359000 66.6167762242434400, -160.7998679971103400 66.6176234431674200, -160.8018177785676000 66.6185052626078100, -160.8037574894165700 66.6194658311832200, -160.8051129844766400 66.6202038310420300, -160.8065000241567500 66.6207002199392400, -160.8076600254897500 66.6209406761713000, -160.8102512969597600 66.6215046859925300, -160.8127782911851700 66.6221130171021000, -160.8152362057862500 66.6227645138712900, -160.8176203705836000 66.6234579397321900, -160.8199262502962000 66.6241919780773600, -160.8221291810168600 66.6249578677114900, -160.8233510206330500 66.6254015140687000, -160.8245972543597600 66.6258691318549800, -160.8267785267076000 66.6261628639250600, -160.8298914364406200 66.6266471407530000, -160.8308607500235600 66.6268076607449900, -160.8327725090440200 66.6269571946189100, -160.8356434669723900 66.6272358774338600, -160.8384811562803200 66.6275639770959200, -160.8412790326012500 66.6279555284249300, -160.8414692724889000 66.6279777066059200, -160.8443391943983000 66.6282638807735500, -160.8471770006180500 66.6285919795362800, -160.8499761503790000 66.6289688719159600, -160.8527313286878400 66.6293938429515700, -160.8540520748433400 66.6296242699441400, -160.8556386426092500 66.6297781934089800, -160.8588694282814500 66.6297942822803900, -160.8616134478023400 66.6298298702523700, -160.8643515983475500 66.6299095295012200, -160.8670793967967000 66.6300331296253000, -160.8697923780158000 66.6302004682770500, -160.8726915629652300 66.6304292063428500, -160.8743915145567200 66.6305950970861400, -160.8772535026470000 66.6303182066200200, -160.8801526750059200 66.6300894685541600, -160.8830741685380300 66.6299111096100800, -160.8840508871387000 66.6298686795959200, -160.8853852013659200 66.6296628751416000, -160.8881844293679000 66.6292859827619300, -160.8910223156273400 66.6289578830998700, -160.8918981770592000 66.6288694599576800, -160.8946037172877000 66.6283938400037500, -160.8973587849799000 66.6279688689682000, -160.9001578214263000 66.6275919765885200, -160.9029955134321600 66.6272638769264000, -160.9033036472455000 66.6272402724206900, -160.9035185222619800 66.6271938188397100, -160.9038680473724700 66.6270695253383600, -160.9063263891515000 66.6264180294685400, -160.9088538222460700 66.6258096992583000, -160.9114455433770800 66.6252456894370700, -160.9140966296557200 66.6247270710974800, -160.9168020457777600 66.6242548280978900, -160.9185225873475000 66.6239771795033000, -160.9193303044499700 66.6237510215924500, -160.9218574650499500 66.6231426913821600, -160.9224290192837800 66.6230182962574400, -160.9232087512828300 66.6227915142170600, -160.9248766771169000 66.6223494128951200, -160.9266890916282500 66.6217189719530400, -160.9289947420137000 66.6209849336078700, -160.9313786684907400 66.6202915077469100, -160.9338363375768800 66.6196400109777800, -160.9363659731111500 66.6190425949398600, -160.9370886188446500 66.6188682523680300, -160.9380164062321200 66.6186641988937300, -160.9382192591115000 66.6186186887015900, -160.9396145437761400 66.6182562025617800, -160.9396829641974000 66.6182396955056200, -160.9404777013848000 66.6180290068332400, -160.9430042792240800 66.6174206757236800, -160.9440951649598600 66.6171884977510400, -160.9448848452593700 66.6169914185192000, -160.9466124258227600 66.6165444770460300, -160.9473411860468600 66.6163350024584700, -160.9498675912163300 66.6157266704495300, -160.9524582583419200 66.6151626597290400, -160.9551082663333800 66.6146440404901300, -160.9578125816852600 66.6141717965912200, -160.9605660692686500 66.6137468246562900), (-159.8819459890161500 66.4851848899707500, -159.8820001434918000 66.4850732013671900, -159.8816316381895300 66.4851110916036400, -159.8812420419866000 66.4851505556536600, -159.8808520932494700 66.4851894621240300, -159.8804617964747000 66.4852278092161000, -159.8800711579575600 66.4852655969298200, -159.8796801821946200 66.4853028243659300, -159.8792888736825500 66.4853394924236900, -159.8788972378172600 66.4853755984052000, -159.8785052790953200 66.4854111441091000, -159.8781130038120500 66.4854461277366800, -159.8777204164640300 66.4854805492879600, -159.8773275224471600 66.4855144078636600, -159.8769343253588000 66.4855477034638000, -159.8765408314941400 66.4855804360883000, -159.8761470462491400 66.4856126048379100, -159.8757529741204200 66.4856442088132600, -159.8753586196045800 66.4856752480143300, -159.8749639889968500 66.4857057215418800, -159.8745690858945600 66.4857356302951500, -159.8741739174922700 66.4857649733749000, -159.8737784864879400 66.4857937498816800, -159.8733828000761400 66.4858219589163500, -159.8730812528974600 66.4858430651054300, -159.8727795618273000 66.4858638421426300, -159.8724777295635400 66.4858842891287000, -159.8721757588042000 66.4859044069628500, -159.8718736504485800 66.4859241956451700, -159.8715714080939800 66.4859436542763000, -159.8712690335390500 66.4859627837555000, -159.8709665294817300 66.4859815822842400, -159.8706638968213600 66.4860000507617900, -159.8703611391552200 66.4860181891881400, -159.8700582591813000 66.4860359975633000, -159.8697552568995700 66.4860534749879500, -159.8694521368066400 66.4860706214620900, -159.8691489007012000 66.4860874378850300, -159.8688455494825000 66.4861039233574000, -159.8685420867478800 66.4861200769800000, -159.8682385151953000 66.4861358996520800, -159.8679348357240700 66.4861513913736500, -159.8676310510321600 66.4861665512453900, -159.8673271638175200 66.4861813801666100, -159.8670231767781600 66.4861958772380000, -159.8667190908133500 66.4862100424595600, -159.8664149086211000 66.4862238758312900, -159.8661106337986800 66.4862373773531200, -159.8658062672454000 66.4862505461258600, -159.8655018107599200 66.4862633839480800, -159.8651972679395200 66.4862758890211000, -159.8648926405828700 66.4862880613450200, -159.8645879313879000 66.4862999018190500, -159.8642831421532500 66.4863114095439900, -159.8639782746776000 66.4863225845197100, -159.8636733316589000 66.4863334267462800, -159.8633683157951000 66.4863439362237600, -159.8630632297842000 66.4863541129520300, -159.8627580745255000 66.4863639569311400, -159.8624528527169600 66.4863734672617900, -159.8621475670565500 66.4863826457425400, -159.8618422193429200 66.4863914896755500, -159.8615368122740400 66.4864000017587400, -159.8612313485478800 66.4864081792940700, -159.8609258299630700 66.4864160240803100, -159.8606202583182500 66.4864235361173400, -159.8603146363114000 66.4864307136065800, -159.8600089666404600 66.4864375583467200, -159.8597032502048000 66.4864440694383300, -159.8593974915010000 66.4864502459821000, -159.8590916914283800 66.4864560897767700, -159.8587858517856000 66.4864615999229600, -159.8584799761699500 66.4864667764206300, -159.8581740654807000 66.4864716183705600, -159.8578681233152000 66.4864761275712800, -159.8575621514720800 66.4864803022242100, -159.8572561517499700 66.4864841432286700, -159.8569501277461600 66.4864876505846500, -159.8566440803599800 66.4864908233928400, -159.8563380122894000 66.4864936625525600, -159.8560319253330700 66.4864961680637500, -159.8557258230882500 66.4864983390272100, -159.8554197064542600 66.4865001763421300, -159.8551135790284300 66.4865016791092700, -159.8548074426093700 66.4865028482279300, -159.8545012989957300 66.4865036836981200, -159.8541951508855000 66.4865041846204600, -159.8538890000772600 66.4865043518943800, -159.8535828492690600 66.4865041846204600, -159.8532767011588000 66.4865036836981200, -159.8529705575451800 66.4865028482279300, -159.8526644211261000 66.4865016791092700, -159.8523582928009400 66.4865001763421300, -159.8520521770663000 66.4864983390272100, -159.8517460748214800 66.4864961680637500, -159.8514399878651200 66.4864936625525600, -159.8511339197945300 66.4864908233928400, -159.8508278724083600 66.4864876505846500, -159.8505218475052300 66.4864841432286700, -159.8502158486824400 66.4864803022242100, -159.8499098768393200 66.4864761275712800, -159.8496039346738000 66.4864716183705600, -159.8492980239846000 66.4864667764206300, -159.8489921483689200 66.4864615999229600, -159.8486863087261400 66.4864560897767700, -159.8483805086535200 66.4864502459821000, -159.8480747490504000 66.4864440694383300, -159.8477690335140600 66.4864375583467200, -159.8474633638431300 66.4864307136065800, -159.8471577418363000 66.4864235361173400, -159.8468521701914800 66.4864160240803100, -159.8465466516066400 66.4864081792940700, -159.8462411869811600 66.4864000017587400, -159.8459357808116000 66.4863914896755500, -159.8456304330979700 66.4863826457425400, -159.8453251474375600 66.4863734672617900, -159.8450199256290300 66.4863639569311400, -159.8447147703703300 66.4863541129520300, -159.8444096834601000 66.4863439362237600, -159.8441046675963000 66.4863334267462800, -159.8437997254769000 66.4863225845197100, -159.8434948580012600 66.4863114095439900, -159.8431900687666300 66.4862999018190500, -159.8428853586723300 66.4862880613450200, -159.8425807322150000 66.4862758890211000, -159.8422761893946000 66.4862633839480800, -159.8419717329091200 66.4862505461258600, -159.8416673663558400 66.4862373773531200, -159.8413630906341000 66.4862238758312900, -159.8410589093411700 66.4862100424595600, -159.8407548233763600 66.4861958772380000, -159.8404508354376800 66.4861813801666100, -159.8401469491223800 66.4861665512453900, -159.8398431644304800 66.4861513913736500, -159.8395394849592300 66.4861358996520800, -159.8392359125073200 66.4861200769800000, -159.8389324506720200 66.4861039233574000, -159.8386290994533600 66.4860874378850300, -159.8383258633478800 66.4860706214620900, -159.8380227432549800 66.4860534749879500, -159.8377197409732300 66.4860359975633000, -159.8374168600999800 66.4860181891881400, -159.8371141033331600 66.4860000507617900, -159.8368114706728000 66.4859815822842400, -159.8365089666155000 66.4859627837555000, -159.8362065920605300 66.4859436542763000, -159.8359043497059400 66.4859241956451700, -159.8356022413503300 66.4859044069628500, -159.8353002705909800 66.4858842891287000, -159.8349984383272300 66.4858638421426300, -159.8346967472570600 66.4858430651054300, -159.8343952000784000 66.4858219589163500, -159.8340937985899000 66.4858005244746600, -159.8337925445902400 66.4857787608811500, -159.8334914407773500 66.4857566690350800, -159.8331904898492000 66.4857342480371500, -159.8328896936044400 66.4857114987867100, -159.8325890547410500 66.4856884221829900, -159.8322885750576700 66.4856650173267700, -159.8319882563529300 66.4856412842179300, -159.8316881013248000 66.4856172237559200, -159.8313881126712200 66.4855928359406800, -159.8310882921909000 66.4855681207722000, -159.8307886425817500 66.4855430791498600, -159.8304891647431400 66.4855177101742400, -159.8301898622723000 66.4854920147447500, -159.8298907369679000 66.4854659928613500, -159.8295917915279200 66.4854396436247200, -159.8292930277510000 66.4854129697328000, -159.8289944474357800 66.4853859693870400, -159.8286960532802000 66.4853586434866800, -159.8283978470829500 66.4853309911324000, -159.8280998315419800 66.4853030150221700, -159.8278020093552200 66.4852747124580800, -159.8275043823213700 66.4852460861380300, -159.8272069513397000 66.4852171342634000, -159.8269097209068500 66.4851878586328000, -159.8266126919221800 66.4851582592463000, -159.8263158670835700 66.4851283352045400, -159.8260192481897400 66.4850980874068700, -159.8257228370392800 66.4850675158532500, -159.8254266372295000 66.4850366214429900, -159.8251306496597000 66.4850054032767700, -159.8248348779272600 66.4849738631533000, -159.8245393229313700 66.4849419992739300, -159.8242439864707800 66.4849098143365000, -159.8239488730420400 66.4848773065425000, -159.8236539826451400 66.4848444767912400, -159.8233593179781200 66.4848113259819800, -159.8230648826382000 66.4847778532154000, -159.8227706766254000 66.4847440593908900, -159.8224767035370000 66.4847099445083800, -159.8221829660710000 66.4846755094672500, -159.8218894642273500 66.4846407542674500, -159.8215962025027200 66.4846056780097000, -159.8213031817963700 66.4845702824926000, -159.8210104057056400 66.4845345677162000, -159.8207178742305000 66.4844985327811200, -159.8204255909682300 66.4844621794860600, -159.8201335577175000 66.4844255069316400, -159.8198417771762400 66.4843885160172500, -159.8195502511431400 66.4843512067428700, -159.8192589814168200 66.4843135800077800, -159.8189679706952700 66.4842756349126500, -159.8186772216764000 66.4842373732562400, -159.8183867352596000 66.4841987941391000, -159.8180965141427800 66.4841598975612600, -159.8178065601246000 66.4841206853214400, -159.8175168768024000 66.4840811565202300, -159.8172274650754300 66.4840413120569500, -159.8169383267423600 66.4840011519317000, -159.8166494654004700 66.4839606761443600, -159.8163608819491200 66.4839198846949600, -159.8160725790862400 66.4838787793822200, -159.8157845595097800 66.4838373593067300, -159.8154968241191200 66.4837956253678600, -159.8152093756121700 66.4837535775656100, -159.8149222166869000 66.4837112167992900, -159.8146353491420000 66.4836685421695400, -159.8143487738768000 66.4836255545757200, -159.8140624953878200 66.4835822549171700, -159.8137765136751500 66.4835386431938700, -159.8134908323360200 66.4834947194058300, -159.8132054531691000 66.4834504835530400, -159.8129203770737000 66.4834059365347800, -159.8126356085464600 66.4833610792504700, -159.8123511475873500 66.4833159108006800, -159.8120669968943700 66.4832704329841700, -159.8117831591654300 66.4832246449015000, -159.8114996361992200 66.4831785465527200, -159.8112164297943700 66.4831321397365400, -159.8109335417495300 66.4830854244528400, -159.8106509756619600 66.4830383998023500, -159.8103687324310200 66.4829910675837800, -159.8100868147546700 66.4829434268976900, -159.8098052244315300 66.4828954795427800, -159.8095239632602600 66.4828472246197700, -159.8092430339388300 66.4827986630279500, -159.8089624373665700 66.4827497956666200, -159.8086821780400400 66.4827006216364100, -159.8084022550600000 66.4826511427361300, -159.8081226729230000 66.4826013580662900, -159.8078434325283600 66.4825512685262700, -159.8075645365740600 66.4825008741161100, -159.8072859868587700 66.4824501766344200, -159.8070077851811000 66.4823991742825300, -159.8067299342390600 66.4823478688591100, -159.8064524349318800 66.4822962612635100, -159.8061752908569700 66.4822443496970500, -159.8058985029135500 66.4821921368576900, -159.8056220746989600 66.4821396218461000, -159.8053460062132000 66.4820868055616600, -159.8050703001542000 66.4820336889037000, -159.8047949592199800 66.4819802709727700, -159.8045199852091000 66.4819265526683100, -159.8042453808196500 66.4818725348896500, -159.8039711469508300 66.4818182167374000, -159.8036972854013700 66.4817636009095200, -159.8036102652015400 66.4817461270821500, -159.8041221206393300 66.4820728588753700, -159.8042489960942600 66.4821540217907300, -159.8043754389753000 66.4822352935240100, -159.8045014474837700 66.4823166713773600, -159.8046270216197200 66.4823981571493000, -159.8047521613831000 66.4824797490412600, -159.8048768658746300 66.4825614479524900, -159.8050011341949500 66.4826432529837900, -159.8051249663441000 66.4827251632357300, -159.8052483605234000 66.4828071787084100, -159.8053713176321700 66.4828892994016800, -159.8054938367711200 66.4829715244163700, -159.8056159170409000 66.4830538537523800, -159.8057375575422200 66.4831362865104400, -159.8058587591743600 66.4832188226905600, -159.8059795192394000 66.4833014622927300, -159.8060998386366000 66.4833842044175800, -159.8062529464163200 66.4834900851993200, -159.8064053320404000 66.4835961323556700, -159.8065130951032400 66.4836716007638400, -159.8065897074490000 66.4836941818410900, -159.8068355299357400 66.4837670494098300, -159.8070808550973500 66.4838401840772800, -159.8073256820345600 66.4839135858433700, -159.8075700071500800 66.4839872529094600, -159.8078138304439000 66.4840611852755500, -159.8080571501173500 66.4841353829416400, -159.8082999634725000 66.4842098450084200, -159.8085422687107000 66.4842845705765000, -159.8087840640333000 66.4843595596460100, -159.8090253485409800 66.4844348113175600, -159.8092661195357500 66.4845103255910900, -159.8095063752190000 66.4845861015674000, -159.8097461146914200 66.4846621383470600, -159.8099853352550000 66.4847384350308000, -159.8102240360104200 66.4848149925179500, -159.8104622142597600 66.4848918090098100, -159.8106998682043200 66.4849688845064900, -159.8109369969448300 66.4850462172092300, -159.8111735977833000 66.4851238089166800, -159.8114096698203600 66.4852016569310000, -159.8116452112574600 66.4852797612520600, -159.8118802193965800 66.4853581218798700, -159.8121026100474000 66.4854326756774900, -159.8123245186615700 66.4855074588022600, -159.8125459434405000 66.4855824703547600, -159.8127668825855200 66.4856577103351500, -159.8129873351973300 66.4857331778439400, -159.8132073003765800 66.4858088728812500, -159.8134267754253000 66.4858847936483800, -159.8136457594442300 66.4859609410446500, -159.8138642515339400 66.4860373150700600, -159.8140822489965600 66.4861139130267100, -159.8142997518320700 66.4861907358138600, -159.8145167573424600 66.4862677825322000, -159.8147332637291000 66.4863450540810300, -159.8149492718913500 66.4864225477624000, -159.8151647773325700 66.4865002635763700, -159.8153797809521000 66.4865782024221500, -159.8155942800519500 66.4866563625012100, -159.8158082746321300 66.4867347429141100, -159.8160217610953600 66.4868133445602300, -159.8162347394416500 66.4868921656410000, -159.8164472087716500 66.4869712070556000, -159.8166591663873800 66.4870504661061500, -159.8168706113896000 66.4871299445913500, -159.8170815419795500 66.4872096407124200, -159.8172919572580000 66.4872895544694400, -159.8175018554262600 66.4873696840637100, -159.8177112355850200 66.4874500303946500, -159.8179200959356500 66.4875305925628500, -159.8181284355788000 66.4876113705683500, -159.8183362527158500 66.4876923626125000, -159.8185435455481500 66.4877735686952700, -159.8187503140757100 66.4878549879173900, -159.8189565547012000 66.4879366211781600, -159.8191622683240000 66.4880184657796500, -159.8193674522461000 66.4881005235204200, -159.8195721055682000 66.4881827917025100, -159.8197762264916300 66.4882652712253200, -159.8199798141171000 66.4883479611895000, -159.8201828666459500 66.4884308606957000, -159.8203853831788600 66.4885139688446400, -159.8205873619171800 66.4885972865356000, -159.8207888019616000 66.4886808119699700, -159.8209897015135000 66.4887645442484000, -159.8211900596734800 66.4888484842701900, -159.8213898746429600 66.4889326302367700, -159.8215891455226000 66.4890169830474000, -159.8217878705138000 66.4891015400041300, -159.8219860496164700 66.4891863020062600, -159.8221836792333800 66.4892712681545400, -159.8223807593645300 66.4893564384489100, -159.8225772891105700 66.4894418110907800, -159.8227732666729000 66.4895273869793800, -159.8229686902528200 66.4896131643161500, -159.8231635589510500 66.4896991422016900, -159.8233578718682700 66.4897853215354100, -159.8235516272058000 66.4898717014179400, -159.8237448231650100 66.4899582800506400, -159.8239374597459300 66.4900450583328400, -159.8241295351499000 66.4901320353652000, -159.8243210475782500 66.4902192093491000, -159.8245119961317000 66.4903065811838000, -159.8245348452069000 66.4903170906612800, -159.8329027472639400 66.4927063860909000, -159.8331206727808000 66.4927687531754800, -159.8333382250790000 66.4928313280034300, -159.8335554041585500 66.4928941096754900, -159.8337722082208000 66.4929570981916000, -159.8339886354671400 66.4930202926524300, -159.8342046858975000 66.4930836930580500, -159.8344203577133000 66.4931472994084000, -159.8346356500152000 66.4932111099048500, -159.8348505601052200 66.4932751254467600, -159.8350650888827100 66.4933393460340200, -159.8352792336497000 66.4934037698681700, -159.8354929935068200 66.4934683978483500, -159.8357063684541000 66.4935332290753000, -159.8359193548943000 66.4935982635490700, -159.8361319537266600 66.4936635003703000, -159.8363441622532500 66.4937289395389800, -159.8365559804741000 66.4937945801558000, -159.8367674065905200 66.4938604222207900, -159.8369784397032000 66.4939264657338600, -159.8371890780135200 66.4939927097957500, -159.8373993206221300 66.4940591544065000, -159.8376091666297000 66.4941257986667400, -159.8378186151369400 66.4941926425764200, -159.8380276634458700 66.4942596852363300, -159.8382363115565000 66.4943269275457300, -159.8384445585695000 66.4943943677059800, -159.8386524026862000 66.4944620066163500, -159.8388598430073300 66.4945298424783000, -159.8390668777341800 66.4945978761911100, -159.8392735059675000 66.4946661068553900, -159.8394797268079200 66.4947345335719400, -159.8396855393561400 66.4948031563406500, -159.8399083463930300 66.4948778216542000, -159.8401306686953700 66.4949527162949000, -159.8403525062631200 66.4950278411619700, -159.8405738572976400 66.4951031944569300, -159.8407947191009800 66.4951787761796100, -159.8410150925724300 66.4952545854308100, -159.8412349732154200 66.4953306222104700, -159.8414543628285600 66.4954068856193300, -159.8416732569152400 66.4954833756573300, -159.8418916554754800 66.4955600914251500, -159.8421095576099700 66.4956370320234700, -159.8423269606207000 66.4957141983516000, -159.8425438645077200 66.4957915877116600, -159.8427602656737000 66.4958692019022200, -159.8429761650179700 66.4959470391245900, -159.8431915589432600 66.4960250984795500, -159.8434064483488700 66.4961033808663700, -159.8436208296375600 66.4961818844864200, -159.8438347019099400 66.4962606093396900, -159.8440480642667300 66.4963395545268600, -159.8442609158085800 66.4964187200479300, -159.8444732538375800 66.4964981050035800, -159.8446850774543300 66.4965777084945000, -159.8448963848602500 66.4966575314200000, -159.8451071751560000 66.4967375719814400, -159.8453174474422300 66.4968178301787700, -159.8455271990209800 66.4968983051127200, -159.8457364289929800 66.4969789958840400, -159.8459451364588500 66.4970599024925400, -159.8461533196200000 66.4971410249384000, -159.8463609766777200 66.4972223623221900, -159.8465681076320400 66.4973039128453800, -159.8467747088856800 66.4973856783064400, -159.8469807813379500 66.4974676560075900, -159.8471863222909200 66.4975498459487000, -159.8473913299458800 66.4976322490291500, -159.8475958043029000 66.4977148625509400, -159.8477997435633000 66.4977976874134200, -159.8480031450290800 66.4978807227172400, -159.8482060095996400 66.4979639675631200, -159.8484083336776400 66.4980474219510100, -159.8486101181623800 66.4981310840823300, -159.8488113594566500 66.4982149557556600, -159.8490120575603700 66.4982990342730900, -159.8492122106749500 66.4983833196345700, -159.8494118179010600 66.4984678109407800, -159.8496108765406800 66.4985525090911000, -159.8498093874932200 66.4986374122868300, -159.8500073480606400 66.4987225196286400, -159.8502047564443300 66.4988078320158700, -159.8504016126442800 66.4988933476499300, -159.8505979139625300 66.4989790656314300, -159.8507936603991000 66.4990649868597100, -159.8509888501553000 66.4991511095361100, -159.8511834814324900 66.4992374336607100, -159.8513775524320700 66.4993239583340600, -159.8515710640533300 66.4994106835562800, -159.8517640126990000 66.4994976084279300, -159.8519563983690500 66.4995847320498100, -159.8521482192648800 66.4996720535224900, -159.8523394744871400 66.4997595737454000, -159.8523880126966000 66.4997819012138500, -159.8616988799993000 66.5025185975553100, -159.8620513117186300 66.5026225870627700, -159.8624027272040600 66.5027271233581100, -159.8627531210596500 66.5028322055418900, -159.8631024878894800 66.5029378318155300, -159.8634508231969000 66.5030440003803800, -159.8637981206866800 66.5031507094377600, -159.8641443749629000 66.5032579580883400, -159.8644895815289400 66.5033657445335400, -159.8648337349888500 66.5034740669746600, -159.8651768299467000 66.5035829236130700, -159.8655188610066000 66.5036923126501700, -159.8658598227725600 66.5038022331865500, -159.8661997107480200 66.5039126825243400, -159.8665385195370200 66.5040236597641300, -159.8668762437436300 66.5041351631073200, -159.8672128788712400 66.5042471907552800, -159.8673865730319000 66.5043053418181100, -159.8675599740135700 66.5043636322758400, -159.8677330800176000 66.5044220621285300, -159.8679058919433400 66.5044806313761100, -159.8680784070927800 66.5045393400186000, -159.8682506263653000 66.5045981862573400, -159.8684225488615000 66.5046571718910400, -159.8685941727828200 66.5047162951210000, -159.8687654990285400 66.5047755559472200, -159.8689365258000000 66.5048349543697000, -159.8691072521979000 66.5048944912878100, -159.8692776791215500 66.5049541640035500, -159.8694478038730200 66.5050139752148700, -159.8696176264522800 66.5050739222238000, -159.8697871468593200 66.5051340059296800, -159.8699563641948200 66.5051942254332300, -159.8701252775594800 66.5052545807343400, -159.8702938851546400 66.5053150727324600, -159.8704621878796400 66.5053756996288700, -159.8706301848351400 66.5054364623229600, -159.8707978751218000 66.5054973590159800, -159.8709652578403400 66.5055583915066100, -159.8711323320914300 66.5056195579962800, -159.8711508967964200 66.5056263820519600, -159.8712688743590300 66.5055089611696500, -159.8713916668919000 66.5053877703293800, -159.8715153425589800 66.5052667233806600, -159.8716399013603400 66.5051458203233800, -159.8717653414972800 66.5050250629563500, -159.8718916620705000 66.5049044521787800, -159.8720188612814000 66.5047839888900400, -159.8721469391299200 66.5046636730900800, -159.8722758947167500 66.5045435074769700, -159.8724057253439200 66.5044234920505900, -159.8725364319108000 66.5043036277103300, -159.8726680117193300 66.5041839162547600, -159.8728004638702800 66.5040643585833200, -159.8729337883636000 66.5039449555952700, -159.8730679825013700 66.5038257072906200, -159.8732030462835200 66.5037066154679900, -159.8733389779114600 66.5035876819260400, -159.8734757764858600 66.5034689066647500, -159.8736134411073800 66.5033502914828300, -159.8737519699774000 66.5032318363802200, -159.8738913630959000 66.5031135422562400, -159.8740316177649300 66.5029954118088500, -159.8793226315342000 66.4985548275433300, -159.8794455418782300 66.4984519900673400, -159.8795691042307400 66.4983492766978100, -159.8796933203904000 66.4982466892333800, -159.8798181867598800 66.4981442276740000, -159.8799437051378600 66.4980418929191000, -159.8800698728263400 66.4979396858678900, -159.8801966898253400 66.4978376074196800, -159.8803241552355400 66.4977356575746000, -159.8803829295285400 66.4976889458881700, -159.8803784661932400 66.4976694162106700, -159.8803539066074700 66.4975589291013300, -159.8803300323051200 66.4974484177103600, -159.8803068432861500 66.4973378829370200, -159.8802843386512800 66.4972273256805700, -159.8802625201991200 66.4971167459411300, -159.8802413870303700 66.4970061455172800, -159.8802209391450000 66.4968955244089600, -159.8802011774423600 66.4967848835156000, -159.8801821010231000 66.4966742237364800, -159.8801637107866000 66.4965635450715800, -159.8801460067328000 66.4964528493196100, -159.8801289888617000 66.4963421355811300, -159.8801126571733600 66.4962314056549000, -159.8800970116677100 66.4961206595408500, -159.8800820532441400 66.4960098990376900, -159.8800677801039300 66.4958991232459800, -159.8800541949451000 66.4957883339644700, -159.8800412950696700 66.4956775320924900, -159.8800290831756300 66.4955667176299700, -159.8800175574642700 66.4954558914762400, -159.8800067179356600 66.4953450536313500, -159.8799965663884000 66.4952342058939500, -159.8799871010238600 66.4951233491633000, -159.8799783236407000 66.4950124825401200, -159.8799702324402600 66.4949016078230100, -159.8799628283218500 66.4947907250120200, -159.8799561121848000 66.4946798359057400, -159.8799500822305000 66.4945689405042800, -159.8799447402575400 66.4944580388075200, -159.8799400844673000 66.4943471326141100, -159.8799361166584300 66.4942362219241500, -159.8799328359316000 66.4941253076369200, -159.8799302431861500 66.4940143906516700, -159.8799283366234000 66.4939034718677800, -159.8799271180420500 66.4937925512852500, -159.8799265865427000 66.4936816289040800, -159.8799267421254300 66.4935707074223000, -159.8799277097959400 66.4934484337982200, -159.8799295129366600 66.4933261610735300, -159.8799321515475400 66.4932038919461100, -159.8799356247292600 66.4930816255166500, -159.8799399324818800 66.4929593626844700, -159.8799450757046500 66.4928371052482700, -159.8799510534983000 66.4927148541073000, -159.8799578667621000 66.4925926101609000, -159.8799655145968000 66.4924703743083700, -159.8799739970023400 66.4923481465497700, -159.8799833139787300 66.4922259286837000, -159.8799934655259800 66.4921037216095100, -159.8800044516441000 66.4919815262264800, -159.8800162723330800 66.4918593425346700, -159.8800289275929200 66.4917371723327000, -159.8800424165242800 66.4916150165198600, -159.8800567391271800 66.4914928759955000, -159.8800718963009300 66.4913707516589000, -159.8800878871462600 66.4912486444095000, -159.8801047116630800 66.4911265542471600, -159.8801223698514500 66.4910044838699200, -159.8801408617113700 66.4908824323783800, -159.8801601863435000 66.4907604015713200, -159.8801803446471600 66.4906383923479900, -159.8802013348237000 66.4905164056077000, -159.8802231586718000 66.4903944422497400, -159.8802458152921000 66.4902725031735100, -159.8802693037853300 66.4901505883789800, -159.8802936250507400 66.4900287005641500, -159.8803187772897200 66.4899068397289200, -159.8803447623009200 66.4897850058733900, -159.8803715791850000 66.4896632016954600, -159.8803992270426600 66.4895414262958300, -159.8804277058739000 66.4894196823725000, -159.8804570156787000 66.4892979690261000, -159.8804871564570600 66.4891762889546400, -159.8805181282090200 66.4890546412587500, -159.8805499300352200 66.4889330277371200, -159.8805825610363300 66.4888114501883400, -159.8806160230110200 66.4886899077131400, -159.8806503132613300 66.4885684030094200, -159.8806854335858500 66.4884469351779900, -159.8807213830853300 66.4883255069166800, -159.8807581608604000 66.4882041173262300, -159.8807957669111000 66.4880827691045500, -159.8808342012373800 66.4879614613524300, -159.8808734638392700 66.4878401967677000, -159.8809135529181200 66.4877189753505000, -159.8809544702725700 66.4875977971007000, -159.8809962141039600 66.4874766647163800, -159.8810387844123400 66.4873555781974200, -159.8810821811976800 66.4872345384432600, -159.8811264035606400 66.4871135463531600, -159.8811714515012500 66.4869926028264300, -159.8812173250195000 66.4868717078630900, -159.8812640223167400 66.4867508641610800, -159.8813115451916400 66.4866300717204700, -159.8813598918455000 66.4865093323398900, -159.8814090622783800 66.4863886451199200, -159.8814590564902300 66.4862680118593000, -159.8815098735817600 66.4861474334573500, -159.8815615135529800 66.4860269108133400, -159.8816139746052200 66.4859064448266400, -159.8816672585371400 66.4857860363965200, -159.8817213635500700 66.4856656873216700, -159.8817762896440200 66.4855453967027800, -159.8818320359197000 66.4854251663384200, -159.8818886032764000 66.4853049971279700, -159.8819459890161500 66.4851848899707500), (-163.6432700028083500 66.5261025897627900, -163.6434961616185400 66.5262147604029200, -163.6501490124669300 66.5261596958133600, -163.6515560000093800 66.5261538511193700, -163.6544987957827600 66.5261794278383700, -163.6574360076655800 66.5262561112306200, -163.6603620625591000 66.5263837556058800, -163.6624443986900000 66.5265114161690000, -163.6622399405208000 66.5262704365314900, -163.6614192102283300 66.5251432514599500, -163.6607290003430500 66.5239974531200500, -163.6606917657124000 66.5239406429463400, -163.6605244675301400 66.5237434405074200, -163.6602036694637500 66.5233028140736500, -163.6598958639029600 66.5233773975489300, -163.6573162179690500 66.5239424865565600, -163.6546771079621300 66.5244621193314200, -163.6519835682870200 66.5249353048205300, -163.6492407385692000 66.5253611401045600, -163.6464538519636600 66.5257388112971700, -163.6436282297589700 66.5260675971419500, -163.6432700028083500 66.5261025897627900), (-163.2327607267261300 64.5705068931786200, -163.2324082014772800 64.5701773447087200, -163.2310559997345600 64.5701872336539400, -163.2288735231945200 64.5701708525028800, -163.2266937086477000 64.5701217288347500, -163.2248298861902600 64.5700656740916700, -163.2231965635705300 64.5700072838091600, -163.2215673652417000 64.5699305068874300, -163.2199434126583500 64.5698353981851500, -163.2183258218791500 64.5697220224534500, -163.2156477325568000 64.5694927564856000, -163.2129955050385000 64.5692134360513100, -163.2103741998094500 64.5688845944485500, -163.2090389439920600 64.5687022667962100, -163.2063849663930500 64.5684354388444600, -163.2037637367070600 64.5681065972417500, -163.2019425304234200 64.5678405031367800, -163.2005863599725000 64.5679730443205800, -163.1985895475695300 64.5681390276940300, -163.1958908673696000 64.5683178012255900, -163.1931765911267600 64.5684457405785100, -163.1904519016339300 64.5685226020365200, -163.1877219996705200 64.5685482390100600, -163.1849920977071200 64.5685226020365200, -163.1822674082143000 64.5684457405785100, -163.1795531319714300 64.5683178012255900, -163.1768544517715000 64.5681390276940300, -163.1741765180318600 64.5679097626255000, -163.1715244442976300 64.5676304421912200, -163.1689032910540200 64.5673015996891300, -163.1663180612295000 64.5669238637453900, -163.1637736894042200 64.5664979556162300, -163.1612750283198600 64.5660246873894700, -163.1588268452826500 64.5655049628837800, -163.1564338104719500 64.5649397731520500, -163.1541004870478000 64.5643301982800600, -163.1518313230570800 64.5636774010912400, -163.1496306451381300 64.5629826262472800, -163.1475026468296500 64.5622472002481200, -163.1456906738854700 64.5615664665192500, -163.1411350879139400 64.5597871731395700, -163.1395849651739800 64.5591606388524600, -163.1380853285750200 64.5585117860901000, -163.1366379138086400 64.5578413666858000, -163.1352443918152000 64.5571501567544000, -163.1335376530402400 64.5562339742185700, -163.1319255562194100 64.5552866211807000, -163.1304111662423000 64.5543099052779900, -163.1289973591407800 64.5533056881070600, -163.1276868193912000 64.5522758852239900, -163.1264820327196000 64.5512224580500600, -163.1253852843034000 64.5501474156707800, -163.1243986497778500 64.5490528058424000, -163.1235239979341400 64.5479407158914000, -163.1231219164432700 64.5473450310484000, -163.1228082509000200 64.5470285146543000, -163.1219879864564000 64.5461088112726900, -163.1211134281421700 64.5449967204223800, -163.1203524919739000 64.5438692682522000, -163.1199760456579500 64.5432044363357100, -163.1196889209069500 64.5428858173266900, -163.1189389663602000 64.5419422909040500, -163.1182708042542000 64.5409874501107800, -163.1180921764127700 64.5406930687302000, -163.1158980464576600 64.5411090438473700, -163.1151204809254000 64.5412330999277000, -163.1144854147700600 64.5413588098612600, -163.1145218355142700 64.5416913171006900, -163.1145530006204500 64.5425147435606200, -163.1144961751583400 64.5436885341985700, -163.1143204233488300 64.5448601412825300, -163.1140260644512800 64.5460273335946200, -163.1136136434548400 64.5471878880106800, -163.1130839301792200 64.5483395948964500, -163.1124379201738500 64.5494802608054700, -163.1116768284228700 64.5506077120763300, -163.1108020911435700 64.5517198020273200, -163.1100468261001000 64.5525699923113600, -163.1096038299527600 64.5530221525503400, -163.1089456970862300 64.5538587981450900, -163.1082308700585800 64.5546471537431900, -163.1075122793681700 64.5554326548931400, -163.1072350849312000 64.5557280129375000, -163.1066471963110300 64.5563168431478400, -163.1061380487319400 64.5568027423527200, -163.1057102960932600 64.5571883059955700, -163.1049339104715700 64.5578569645273300, -163.1047023026691000 64.5580457538085300, -163.1036247224030000 64.5588886757718100, -163.1022106266191000 64.5598928920433700, -163.1006959272751800 64.5608696079461300, -163.0990835013025200 64.5618169600846800, -163.0973764135905800 64.5627331426205200, -163.0968813988574500 64.5629791251865300, -163.0955819990100200 64.5636245722162700, -163.0953225203180400 64.5637478512823600, -163.0936355918091000 64.5645753849461200, -163.0930088245975500 64.5648530587217200, -163.0939257535706300 64.5657469740436900, -163.0949176662173000 64.5668407987639000, -163.0957524385242000 64.5678949597846100, -163.0960048314577800 64.5679426598259700, -163.0984542861363600 64.5684614661238400, -163.1008488758749000 64.5690256782924600, -163.1031840510031300 64.5696342261387000, -163.1040055007532300 64.5698699312523600, -163.1050940221713600 64.5701004706602400, -163.1069833556972800 64.5705652016228000, -163.1074862359010400 64.5706765799602600, -163.1094290817866600 64.5711004736080000, -163.1118239035503000 64.5716646857766800, -163.1141593044083300 64.5722732336228700, -163.1164308453072400 64.5729249606184800, -163.1186342086018000 64.5736186292963300, -163.1195470456596000 64.5739331725778800, -163.1201145574408400 64.5739598644562400, -163.1228139382126600 64.5741382890508400, -163.1247762202463300 64.5743007884506700, -163.1267254621103600 64.5744901038352700, -163.1286596825982500 64.5747060436490300, -163.1305769166913300 64.5749483884574100, -163.1328529784821300 64.5752531021490200, -163.1356327919198000 64.5756561477131200, -163.1381787267668000 64.5760812734320700, -163.1398295843678000 64.5763997755293000, -163.1406798771745600 64.5765494272143300, -163.1414676644011800 64.5766735642336600, -163.1430889163204000 64.5769605882605900, -163.1446908669899000 64.5772669980735800, -163.1462722636540300 64.5775925535535900, -163.1496590052588500 64.5783149168999600, -163.1513991619417500 64.5787007233597600, -163.1531104485883000 64.5791097089459600, -163.1554464870657000 64.5797182558928300, -163.1577186484968000 64.5803699819891200, -163.1599226143371500 64.5810636506669800, -163.1620541928466800 64.5817979435203100, -163.1636484462188000 64.5823920167782100, -163.1651952846346500 64.5830088213001000, -163.1664722149207600 64.5835354472031900, -163.1676667987837000 64.5840414651415800, -163.1688294585126800 64.5845610412591200, -163.1692263392241400 64.5847481757877500, -163.1697000526153000 64.5848597267950000, -163.1718289052797400 64.5854141822188100, -163.1720379391995000 64.5854610953533100, -163.1727159452846000 64.5855817160234600, -163.1751669863673000 64.5861005205226800, -163.1775631256377000 64.5866647317919800, -163.1798998125263000 64.5872732769402100, -163.1821726034828300 64.5879250030365000, -163.1843771808621900 64.5886186699157200, -163.1865093511256400 64.5893529627690600, -163.1885650583307400 64.5901264849494000, -163.1905403931246200 64.5909377687630700, -163.1924315945424300 64.5917852718728800, -163.1942350634973600 64.5926673853915600, -163.1959473636798600 64.5935824338822600, -163.1975652323495800 64.5945286762574800, -163.1981905210756500 64.5949299366673100, -163.1990238949367700 64.5953484460739600, -163.1993791019639600 64.5955283923215100, -163.2010915820108600 64.5964434390135700, -163.2027096206524600 64.5973896822880500, -163.2042301341133700 64.5983653226016400, -163.2056502220800700 64.5993685055521500, -163.2069671730965300 64.6003973254762500, -163.2081784726583500 64.6014498263484700, -163.2092622366628500 64.6025049550397000, -163.2097905901635800 64.6021153273605400, -163.2113113131665300 64.6011396879462700, -163.2129295757393000 64.6001934455711100, -163.2146422914085800 64.5992783988790500, -163.2164461983333600 64.5983962862596900, -163.2183378593047400 64.5975487840492000, -163.2203136734372600 64.5967375011348400, -163.2223698806654400 64.5959639798538200, -163.2245025680390400 64.5952296878998600, -163.2267076805150000 64.5945360210205900, -163.2269423586029400 64.5944687427383400, -163.2277138123425300 64.5939736758445000, -163.2293316486366500 64.5930274325700100, -163.2310439137456000 64.5921123849786300, -163.2328473449289800 64.5912302714598900, -163.2337716357523600 64.5908137018909100, -163.2347831311365700 64.5902045092307700, -163.2354504595710000 64.5898157368068800, -163.2366561140883600 64.5891361677000200, -163.2379113203511200 64.5884733772446100, -163.2397145114155400 64.5875912628265500, -163.2416054214530200 64.5867437588174800, -163.2435804522760300 64.5859324750038000, -163.2456358429198000 64.5851589519241400, -163.2477676849307000 64.5844246590708000, -163.2499719223662900 64.5837309912922700, -163.2522443643859000 64.5830792651959800, -163.2544008019554300 64.5825175738270300, -163.2554410099946000 64.5817822962160300, -163.2555479726608000 64.5817136212866700, -163.2550022091845700 64.5815251422715700, -163.2529466296831800 64.5807597850361000, -163.2527052822229600 64.5806944492894700, -163.2507568488494800 64.5800703233867900, -163.2488663255204800 64.5794141483443100, -163.2468137686405000 64.5786394759311400, -163.2448419034310800 64.5778270328913200, -163.2429544836624600 64.5769783705554200, -163.2411551003276000 64.5760951059044700, -163.2394471771454800 64.5751789251673400, -163.2378339624673600 64.5742315739280500, -163.2363185220821000 64.5732548607233000, -163.2349037347195500 64.5722506453510600, -163.2337950253201500 64.5713872161471700, -163.2327607267261300 64.5705068931786200), (-164.2087041558720600 60.8414266908891360, -164.2105821651347800 60.8406919195964500, -164.2125239759007500 60.8399977967609400, -164.2145258973522500 60.8393456416880550, -164.2165841226591000 60.8387366918449300, -164.2179808525342800 60.8383630685008800, -164.2190809806027400 60.8379697904734940, -164.2210827752498400 60.8373176354006100, -164.2231408692556700 60.8367086855574260, -164.2252513514686700 60.8361440983715060, -164.2274102100131500 60.8356249467339600, -164.2296133430813000 60.8351522154025000, -164.2318565634296300 60.8347268036990840, -164.2341356100703300 60.8343495192149800, -164.2364461545663500 60.8340210769112000, -164.2387838073268300 60.8337421018166000, -164.2411441301974300 60.8335131245311200, -164.2433679647597300 60.8333446176600300, -164.2456040112161300 60.8332204959292000, -164.2478485571651600 60.8331409652833500, -164.2500978740176500 60.8331061579228840, -164.2551496240559000 60.8330781809133900, -164.2557780001545500 60.8330764344299840, -164.2581838727874700 60.8331020381286300, -164.2605851777637200 60.8331788015605100, -164.2629773546212000 60.8333065772367800, -164.2636610057507800 60.8333578961500600, -164.2647176515983200 60.8332785777442400, -164.2671098257578000 60.8331508011685860, -164.2695111289354200 60.8330740386360300, -164.2719169997697000 60.8330484349373800, -164.2743228706039500 60.8330740386360300, -164.2767241737815600 60.8331508011685860, -164.2791163479410800 60.8332785777442400, -164.2814948533048200 60.8334571237473400, -164.2838551707794700 60.8336861019321300, -164.2861928199426700 60.8339650770267300, -164.2885033599420700 60.8342935184311950, -164.2907824029854900 60.8346708038146200, -164.2930256197365400 60.8350962155179800, -164.2952287492073800 60.8355689468494900, -164.2973876032552600 60.8360880984869800, -164.2994980818709500 60.8366526856729600, -164.3010147822064000 60.8370956062772700, -164.3025016727140000 60.8375620000862800, -164.3039572317408000 60.8380513868620500, -164.3053799646136500 60.8385632665815600, -164.3075453576321000 60.8393687299829400, -164.3095444282327500 60.8401486877118000, -164.3101416266347300 60.8404028235315200, -164.3107736980477000 60.8404641285167700, -164.3128881921363400 60.8407164180283100, -164.3131122033654800 60.8407344503346500, -164.3135953173699600 60.8407459751467200, -164.3154688273244800 60.8408558678041200, -164.3179398054776000 60.8410217306683900, -164.3183487775740000 60.8410530243776300, -164.3186991651343500 60.8410254997270950, -164.3203184493369500 60.8409221694226400, -164.3219432823565600 60.8408422547663000, -164.3235722441637000 60.8407858241065500, -164.3306772912240000 60.8405909868845900, -164.3322270344500600 60.8405590978241550, -164.3332097767098000 60.8405523610027200, -164.3336140354593300 60.8405131514608100, -164.3350884460749000 60.8403963969761900, -164.3355162994376400 60.8403752458210100, -164.3357503614899700 60.8403413224941100, -164.3379925197389800 60.8398928233951300, -164.3402719342023800 60.8395155380117100, -164.3420093452550600 60.8392538299003700, -164.3441321418848000 60.8388378188103600, -164.3464114817044800 60.8384605343262600, -164.3487223220774600 60.8381320929217960, -164.3510602752115000 60.8378531178271940, -164.3534209002543200 60.8376241405417200, -164.3557997149848400 60.8374455936393000, -164.3581922012090800 60.8373178179629700, -164.3605938164514300 60.8372410554304100, -164.3630000002497700 60.8372154517317650, -164.3655764149196000 60.8372448083013100, -164.3729032689706500 60.8374116694130860, -164.3746639059145000 60.8374654875422600, -164.3749467678790000 60.8374785735773600, -164.3756107283524000 60.8374393874178740, -164.3775929087857000 60.8373576336479100, -164.3795798322434200 60.8373107852646060, -164.3851861195437600 60.8372278542821050, -164.3868609998352500 60.8372154517317650, -164.3892671836336000 60.8372410554304100, -164.3898837885060000 60.8372799654980550, -164.3900622769524800 60.8372579806713250, -164.3904069664083400 60.8372095746622100, -164.3911187726132300 60.8370917490850050, -164.3904248296421400 60.8366291693007500, -164.3890891520427100 60.8356520109316000, -164.3878421511943000 60.8346473333078300, -164.3866861950118600 60.8336170519854140, -164.3863900743424200 60.8333233819685700, -164.3858558293830000 60.8333752989309460, -164.3834774103541700 60.8335541426096700, -164.3810852532817800 60.8336821323246100, -164.3786839222252000 60.8337590234602300, -164.3762780001296000 60.8337846703263400, -164.3749280385980900 60.8337765989109600, -164.3587754870990200 60.8335824370798800, -164.3567118029073400 60.8335386041233600, -164.3546529363838700 60.8334570518015300, -164.3526017833456000 60.8333378943283950, -164.3505612288176400 60.8331812998771400, -164.3482011019992200 60.8329519439770900, -164.3458637550082500 60.8326725138255140, -164.3435536484820700 60.8323435409217300, -164.3412751890986700 60.8319656547911900, -164.3390327232815200 60.8315395757908300, -164.3368305273069700 60.8310661169078340, -164.3346728028075700 60.8305461819607560, -164.3325636623830800 60.8299807620026060, -164.3321534977856700 60.8298638897068140, -164.3310510431710700 60.8295331226555600, -164.3295248999541500 60.8292170451305800, -164.3288130289980700 60.8290903927074850, -164.3286369606272000 60.8290568794714660, -164.3272490387121300 60.8288266674168200, -164.3250067923295600 60.8284005884164600, -164.3228048121923000 60.8279271286341440, -164.3206472981342800 60.8274071936870660, -164.3185402243518400 60.8268336132806550, -164.3178525037900000 60.8266534655850250, -164.3161319550256700 60.8262397972289360, -164.3147422164800800 60.8258785305698100, -164.3130675835021500 60.8254247785307600, -164.3110113412004000 60.8248149518486200, -164.3090116167926500 60.8241618830645050, -164.3070722207064000 60.8234668168401500, -164.3051968491552400 60.8227310805749540, -164.3040198011728700 60.8222342716943560, -164.3028719649691700 60.8217214341968900, -164.3017542542554000 60.8211929781734850, -164.3006675593603300 60.8206493236074300, -164.2971464482499500 60.8188370305045960, -164.2970214712638600 60.8188585989452100, -164.2948639473133000 60.8192066554628350, -164.2926788456521800 60.8195109662581200, -164.2904698849771700 60.8197710133216560, -164.2882408271524400 60.8199863532876200, -164.2858636365975300 60.8201651816778500, -164.2834727151936200 60.8202931659968700, -164.2810726252014600 60.8203700634277300, -164.2786679450695700 60.8203957255823300, -164.2764160543573800 60.8203957255823300, -164.2740113742255200 60.8203700634277300, -164.2716112842333600 60.8202931659968700, -164.2692203628294600 60.8201651816778500, -164.2668431722745500 60.8199863532876200, -164.2644840176233000 60.8197569964882500, -164.2621476329069000 60.8194775654373500, -164.2598384778634400 60.8191485934328850, -164.2575609564729300 60.8187707064030300, -164.2553194133602000 60.8183446265033500, -164.2531181248016000 60.8178711667210340, -164.2509615775147700 60.8173485338078300, -164.2508260820580000 60.8173203967189700, -164.2494800865367500 60.8170667923985800, -164.2475814765039000 60.8167198105708700, -164.2457132698515000 60.8163289840953800, -164.2438758775696800 60.8159047666916900, -164.2420718024716800 60.8154477339258500, -164.2411273101772000 60.8151975506265200, -164.2398266872518000 60.8148418165966400, -164.2377711230388700 60.8142319899144500, -164.2357720587335000 60.8135789202310660, -164.2338333029645400 60.8128838531073940, -164.2319585501469400 60.8121481150435560, -164.2301513705892500 60.8113731098811740, -164.2284152077955600 60.8105603134077900, -164.2267533649758000 60.8097112778532400, -164.2251690059448500 60.8088276219972400, -164.2240609791308500 60.8081603439247800, -164.2229971477001700 60.8074761253229800, -164.2188598975662000 60.8047247646362600, -164.2179746103399800 60.8041185541280240, -164.2171240099650600 60.8035006083664500, -164.2163087475506400 60.8028713994955300, -164.2155294436289000 60.8022314104512700, -164.2142812934469000 60.8011129353137700, -164.2126999750238000 60.7996123607219400, -164.2119228600519000 60.7988451373932400, -164.2111960882288600 60.7980662264752140, -164.2110411629193200 60.7978851371893800, -164.2101183478834200 60.7973244629536700, -164.2088179830634300 60.7965023153296300, -164.2075835700257200 60.7956562466385400, -164.2064169442865300 60.7947875195284840, -164.2053198406381000 60.7938974299224800, -164.2041653512499400 60.7928671423048300, -164.2031039821630100 60.7918132151078200, -164.2021377469594400 60.7907376556183860, -164.2012684784574800 60.7896425124920400, -164.2005671637435900 60.7886368986739850, -164.1991533422529000 60.7864703482280200, -164.1986182771117600 60.7855998404603500, -164.1981436527074000 60.7847209968765600, -164.1977300041363600 60.7838348211201400, -164.1973777999454900 60.7829423222304400, -164.1970142705921000 60.7817811661679460, -164.1967547028672200 60.7806133614175200, -164.1965995797068000 60.7794411320027200, -164.1965491861959700 60.7782667091413500, -164.1966036050722800 60.7770923294475000, -164.1967627221219000 60.7759202286357000, -164.1969748623000400 60.7749802158643300, -164.1963286112763600 60.7749315328640000, -164.1939727670295500 60.7747021751653200, -164.1916396621406600 60.7744227423157800, -164.1893337473545400 60.7740937685126700, -164.1870594221546000 60.7737158796841750, -164.1848210248703600 60.7732897970865340, -164.1826228254829800 60.7728163355055240, -164.1804690148331400 60.7722963960619040, -164.1783637001246300 60.7717309725064200, -164.1773539467272400 60.7714385021851600, -164.1748248013235000 60.7706879675757250, -164.1730439889888700 60.7701363657007500, -164.1713077218738300 60.7695518000755900, -164.1696185495564000 60.7689351295526300, -164.1679789505680800 60.7682872597492860, -164.1661742387501000 60.7675122491909860, -164.1644404447707000 60.7666994491203240, -164.1627808709404200 60.7658504090691740, -164.1611986738796800 60.7649667478172000, -164.1598929041341800 60.7641745485166800, -164.1586493297027700 60.7633587653947400, -164.1574697249478200 60.7625205639728850, -164.1573318516835800 60.7624141939599550, -164.1557161126084700 60.7626447891257700, -164.1533838629748600 60.7629242219753100, -164.1510288829765300 60.7631535796740000, -164.1489629369899300 60.7632976034017250, -164.1468573021227500 60.7638514275014360, -164.1447040571465000 60.7643713669450560, -164.1425064351238600 60.7648448294253850, -164.1402686259962700 60.7652709120230300, -164.1379948988454800 60.7656488008515200, -164.1356895911017000 60.7659777755539500, -164.1333570995504700 60.7662572084034900, -164.1310018749365400 60.7664865661021740, -164.1291422181388400 60.7666310889536600, -164.1272735303491300 60.7667443855449960, -164.1253980023159300 60.7668263236759600, -164.1235178355796300 60.7668768080183100, -164.1189590264379000 60.7669608784418640, -164.1168890002271600 60.7669799413712300, -164.1144880837580300 60.7669542936058100, -164.1120917493347200 60.7668774015708660, -164.1097045700098800 60.7667494109566060, -164.1073310999502700 60.7665705663786200, -164.1049758699404000 60.7663412086798760, -164.1026433720939200 60.7660617758303400, -164.1003380580549200 60.7657328011279100, -164.0980643246088600 60.7653549122994150, -164.0958265100853500 60.7649288297017700, -164.0940179869405100 60.7645391966266860, -164.0935541606959300 60.7649534981055100, -164.0932065412488600 60.7652342079923640, -164.0930256453172500 60.7655968910837000, -164.0923555109980000 60.7667249098267900, -164.0915853747652000 60.7678375519615200, -164.0907166944198800 60.7689326977858300, -164.0897511139227400 60.7700082608726000, -164.0886904642934800 60.7710621916668860, -164.0875367573154600 60.7720924810831800, -164.0862921828379500 60.7730971677002000, -164.0849591051785400 60.7740743341632300, -164.0835400559288000 60.7750221188757700, -164.0830312024280300 60.7753325810338650, -164.0824630800071000 60.7757911606336200, -164.0811298899324400 60.7767683270966500, -164.0797107219722200 60.7777161118091840, -164.0782082740925600 60.7786327080331150, -164.0767662516611600 60.7794408307298100, -164.0723777732156300 60.7818031563905950, -164.0711086877157400 60.7824635366629300, -164.0697948159779600 60.7831026515661960, -164.0684376472795800 60.7837197753474360, -164.0670387176626500 60.7843142065354400, -164.0657761657374200 60.7848173061738100, -164.0644836933677200 60.7853019202474900, -164.0631624336993200 60.7857676242765000, -164.0618135414617300 60.7862140090693400, -164.0604239854785000 60.7866593191723150, -164.0591178074408300 60.7870651751177900, -164.0577887839252200 60.7874529151200140, -164.0557007137169300 60.7880136810865700, -164.0535649182863300 60.7885297480494840, -164.0528410224951600 60.7886859845705800, -164.0515681670372600 60.7890639093719760, -164.0499179506528800 60.7895117996299060, -164.0482372634389200 60.7899317677369600, -164.0465280821052800 60.7903233199652960, -164.0452057900151600 60.7905996186775040, -164.0447780067995300 60.7907084492355800, -164.0426570366928700 60.7912963261645700, -164.0405019517036700 60.7918162647089300, -164.0383024500979700 60.7922897253905600, -164.0373911283978400 60.7924630939966700, -164.0372356994679400 60.7925004149622600, -164.0351304459133200 60.7930733199777900, -164.0329752404150000 60.7935932576227740, -164.0325019577991000 60.7936951301261960, -164.0318223158471700 60.7938968930272400, -164.0297155478342300 60.7944623147840300, -164.0275602488064000 60.7949822524290650, -164.0253605304640700 60.7954557140100750, -164.0231198641903600 60.7958795770808800, -164.0225083144071600 60.7960765079245700, -164.0204907006852600 60.7966748817404440, -164.0183837501099600 60.7972403043966100, -164.0162257036532800 60.7977506975367400, -164.0151903672416200 60.7980183016034060, -164.0130348298934600 60.7985382392483900, -164.0108348678348600 60.7990116999300800, -164.0085946764031600 60.7994377807290800, -164.0063185273781000 60.7998156677589350, -164.0040107635858500 60.8001446415619850, -164.0035933495534000 60.8001817475896500, -164.0032864613011200 60.8002337346991340, -164.0019702837016000 60.8004876537822300, -164.0010857420133400 60.8007046997621500, -163.9998146249449500 60.8010102291388000, -163.9976144929145000 60.8014836898204860, -163.9953741288129500 60.8019097706194900, -163.9930978044201000 60.8022876585486640, -163.9907898634614000 60.8026166314524500, -163.9884547072189200 60.8028960634026700, -163.9860967927327800 60.8031254202020360, -163.9839900418069500 60.8032924755673300, -163.9829292338970000 60.8034496284976200, -163.9805940173999700 60.8037290604478360, -163.9796773006668500 60.8038182282286900, -163.9794235488576500 60.8038574953271800, -163.9773195165823800 60.8042707616863800, -163.9750430249156400 60.8046486487162400, -163.9743507555829000 60.8047473178344800, -163.9735851708189500 60.8049062010603600, -163.9717920872350000 60.8052427588463050, -163.9707552714386000 60.8054148603076200, -163.9692078529600000 60.8057903272618300, -163.9683315724440700 60.8061069452793400, -163.9663329739875300 60.8067600158620960, -163.9642778891132800 60.8073698434435500, -163.9628835325489700 60.8077439083547200, -163.9621885067941200 60.8080186692262700, -163.9605732749366500 60.8086106803386900, -163.9586836581243000 60.8092771319341500, -163.9563816445972000 60.8100464389920000, -163.9540028010883600 60.8107578315087950, -163.9518893385221400 60.8113044268578700, -163.9514218385470000 60.8114308976178700, -163.9497425956442400 60.8118584802846840, -163.9493124553055500 60.8119902507495450, -163.9478145588947500 60.8123325318209140, -163.9471533647359500 60.8125004397435300, -163.9457021611258000 60.8128792467798600, -163.9435456246308400 60.8133991835255760, -163.9413446427410300 60.8138726433078900, -163.9391034125924000 60.8142987232075700, -163.9390096789534800 60.8143153543701400, -163.9380650310763000 60.8144824861778400, -163.9358103830427000 60.8148546670093400, -163.9335248981555000 60.8151789310628600, -163.9312128436977500 60.8154546703967750, -163.9288785409119000 60.8156813705988400, -163.9265014357926000 60.8158602142775100, -163.9241105989249800 60.8159882039924500, -163.9217105934690700 60.8160650960273900, -163.9193059996721300 60.8160907428935500, -163.9189621960484800 60.8160902185887800, -163.9098705681721500 60.8160621948144900, -163.9075541124323000 60.8160311682038900, -163.9052423826298400 60.8159525818462040, -163.9029394742772800 60.8158265742370650, -163.9006494666995000 60.8156533702069200, -163.8982906313075600 60.8154240143068700, -163.8959545622532200 60.8151445823566500, -163.8936457192745000 60.8148156094528640, -163.8913685054521400 60.8144377224230100, -163.8891272654109300 60.8140116425233260, -163.8869262745279200 60.8135381827410100, -163.8847697290397300 60.8130182459952950, -163.8826617415461200 60.8124528251378250, -163.8803641922536400 60.8117671379430900, -163.8781380365411200 60.8110274284730960, -163.8764714821731400 60.8104440328658600, -163.8747752034128700 60.8098257669456640, -163.8731288343282000 60.8091761245785300, -163.8716025984811000 60.8085215395374800, -163.8676357959551800 60.8083892177882000, -163.8661749543106500 60.8083309138406800, -163.8647178088797600 60.8082536377951900, -163.8632549572504600 60.8081473828954700, -163.8618181077194700 60.8080555144504700, -163.8615703741734000 60.8080392906807700, -163.8598984967182200 60.8079509736585350, -163.8582358058377500 60.8078204019900000, -163.8558775460119000 60.8075910451906340, -163.8535420480270700 60.8073116141397350, -163.8514324867198600 60.8070089850766600, -163.8512337338497000 60.8069829353142950, -163.8490973079943300 60.8067276159867450, -163.8467890711586700 60.8063986430829600, -163.8445124544861600 60.8060207551537800, -163.8431102585315700 60.8057605749905860, -163.8417230983423000 60.8054818319210400, -163.8403520036420400 60.8051847354872200, -163.8389979933626800 60.8048695051236340, -163.8381925344578700 60.8046753594803100, -163.8365838172893000 60.8042714056009600, -163.8353217671857700 60.8039420145124150, -163.8330418913701600 60.8035767647559200, -163.8319596085490600 60.8033778140349450, -163.8309309253219200 60.8031826629496100, -163.8295648758183300 60.8028902330978550, -163.8289759268974700 60.8027813323926100, -163.8286541593619500 60.8027188061280400, -163.8272925282275600 60.8024927687263240, -163.8250521227572300 60.8020666888267000, -163.8240434440496600 60.8018522580753140, -163.8218014710610000 60.8014362119117200, -163.8216831283736500 60.8014150958300660, -163.8194043776099000 60.8010487749810400, -163.8175107174456300 60.8006655037100900, -163.8171666683070700 60.8006070603676100, -163.8165108556914000 60.8004821202537200, -163.8152378338589300 60.8002707777742440, -163.8126602230908000 60.7997757099810800, -163.8101368639251000 60.7992179279650600, -163.8081357059980000 60.7987455734495400, -163.8063178577829000 60.7982960059559900, -163.8045353205485800 60.7978138785077250, -163.8024808481126200 60.7972040500269500, -163.8004828441079300 60.7965509785448700, -163.7985451171634000 60.7958559105218800, -163.7966713589959800 60.7951201706594000, -163.7952924860593700 60.7945347569735200, -163.7939541311782000 60.7939273107967900, -163.7926577647440000 60.7932985030235500, -163.7914048130816400 60.7926490252323800, -163.7878782143081000 60.7907589623562800, -163.7863609006350300 60.7899106759369940, -163.7848579257526500 60.7889940815117000, -163.7834382595680000 60.7880462976985400, -163.7821046018458700 60.7870691330340950, -163.7808594859764600 60.7860644491150900, -163.7797052780761000 60.7850341605981160, -163.7789803957286400 60.7843141849517100, -163.7782990783397600 60.7842892215703600, -163.7767373390569200 60.7842100371635200, -163.7751808617073800 60.7841091017537000, -163.7736309143352000 60.7839864971791700, -163.7712744054894000 60.7837571394804850, -163.7689406422967700 60.7834777075302100, -163.7666340773008000 60.7831487328278400, -163.7643591108842400 60.7827708448986100, -163.7621200822759400 60.7823447632003400, -163.7599212614570000 60.7818713016193300, -163.7577668437648000 60.7813513630749750, -163.7556609355037600 60.7807859395195460, -163.7536075530461000 60.7801761101394500, -163.7516106084428000 60.7795230377580540, -163.7496739085240400 60.7788279679364200, -163.7478011441074800 60.7780922271746250, -163.7465671186775500 60.7775698883397100, -163.7453653375402800 60.7770298841219300, -163.7438652422871000 60.7763354627114700, -163.7427293697645600 60.7757942354156740, -163.7416258854262300 60.7752372250179750, -163.7405643940315400 60.7746468713560800, -163.7402814745104300 60.7744979993832400, -163.7395179384021200 60.7740810898704350, -163.7389907225437800 60.7738082679372840, -163.7377439860960600 60.7731057238501100, -163.7362417972211400 60.7721891267268600, -163.7348228738765000 60.7712413411150600, -163.7334899131289500 60.7702641746519700, -163.7322454474694000 60.7692594880350040, -163.7310918421148000 60.7682291977193360, -163.7300312860150200 60.7671752660257900, -163.7290657909534600 60.7660997029390160, -163.7281971870505000 60.7650045562153300, -163.7274271182668600 60.7638919140806000, -163.7267570433028800 60.7627638953375700, -163.7261882266053600 60.7616226484665300, -163.7257217410654600 60.7604703480282100, -163.7254794664042000 60.7597352745633000, -163.7252788393469400 60.7589972045573750, -163.7249749341458800 60.7577470803635150, -163.7249030180598200 60.7574082517894600, -163.7247367522992600 60.7571985712571060, -163.7239668714739200 60.7560859273237400, -163.7232969583879000 60.7549579076813300, -163.7227282792866300 60.7538166599109700, -163.7222619061620000 60.7526643576740100, -163.7221165775180200 60.7522018147619750, -163.7220009507832000 60.7520133222570850, -163.7214793269094000 60.7510294927169500, -163.7210339817328300 60.7500367266137000, -163.7205917266268500 60.7489535498664850, -163.7203532102324500 60.7483313620028300, -163.7199900702855000 60.7471702005443600, -163.7197307795518000 60.7460023894987560, -163.7197032009419500 60.7457937629718600, -163.7196040192101000 60.7455946701579700, -163.7192795734934800 60.7447928337223300, -163.7190977368710200 60.7445299457004900, -163.7184280639039900 60.7434019242594450, -163.7178595889488400 60.7422606737911200, -163.7173933830981000 60.7411083706548400, -163.7169880433634700 60.7397851477663800, -163.7166840374383400 60.7385910243563700, -163.7164983921870200 60.7377557781067000, -163.7163660758337200 60.7369181027882500, -163.7162872124848400 60.7360788140860560, -163.7162618749855200 60.7352387285845340, -163.7162733647239700 60.7347104371370400, -163.7164474851633000 60.7305435075768400, -163.7165322453668000 60.7295016816573250, -163.7166993025307700 60.7284622443371500, -163.7169483994490500 60.7274267541414500, -163.7172791530104800 60.7263967624007250, -163.7177489912229500 60.7252448315837800, -163.7183209339639000 60.7241040325751000, -163.7189938822618300 60.7229765354388200, -163.7197665455895800 60.7218644850580060, -163.7206374436630700 60.7207699957387500, -163.7216049100385400 60.7196951503110000, -163.7226670966092000 60.7186419920343500, -163.7232544699178300 60.7180985461110940, -163.7241154035030500 60.7169929915334000, -163.7250827565639500 60.7159181452062740, -163.7261448181288300 60.7148649860303600, -163.7272995593271800 60.7138355167957100, -163.7282566088554000 60.7130553953902560, -163.7292668820609300 60.7122915634049600, -163.7303292233149800 60.7115448904843900, -163.7314424158348000 60.7108162309843350, -163.7319705966656600 60.7104824017415000, -163.7333271313420000 60.7096589249194950, -163.7349088337756200 60.7087762313380500, -163.7365675163777600 60.7079281661519900, -163.7383000189307000 60.7071163409464100, -163.7401030454191800 60.7063422989579600, -163.7422636117762200 60.7054991485669000, -163.7425659134861000 60.7053875409023360, -163.7427169654155800 60.7051155211644300, -163.7434891979680700 60.7040034671863400, -163.7438894898080800 60.7035001247310200, -163.7441239007973500 60.7027577559657060, -163.7445933918715200 60.7016058215514800, -163.7451649128304300 60.7004650180462000, -163.7452234434071600 60.7003668786285860, -163.7452779279340000 60.6998300220379300, -163.7454465346298500 60.6988669344615350, -163.7456855474500200 60.6979074324820540, -163.7459946516318300 60.6969527544661100, -163.7461579631195000 60.6965519823881440, -163.7453353658344500 60.6959411844381400, -163.7441801300089700 60.6950219783816500, -163.7434852418504000 60.6945745431806900, -163.7421554503137600 60.6935973668250900, -163.7409139434237200 60.6925926703155500, -163.7397630792027000 60.6915623692080400, -163.7387050430033000 60.6905084267225450, -163.7377418412129700 60.6894328519446160, -163.7368752985561600 60.6883376944290940, -163.7361070580942300 60.6872250397038900, -163.7354385722322800 60.6860970092696450, -163.7348711036185000 60.6849557498080700, -163.7344057224461000 60.6838034367792150, -163.7342041861742200 60.6831821455396600, -163.7340547836013500 60.6829300134094200, -163.7334873707455400 60.6817887539479000, -163.7330220345392300 60.6806364400197250, -163.7329748641985800 60.6804887902255250, -163.7322207044219300 60.6797084610767000, -163.7311674220388800 60.6785486243196000, -163.7302268624797000 60.6773657136568000, -163.7294588828211500 60.6762530571329500, -163.7287906226890500 60.6751250249000100, -163.7282233465302000 60.6739837636398500, -163.7280839309286500 60.6736384446585360, -163.7274915214165400 60.6727800633493100, -163.7268233332302100 60.6716520293177300, -163.7262561182252500 60.6705107680575700, -163.7257909438969300 60.6693584523307550, -163.7254286870842200 60.6681972764831700, -163.7251700249766500 60.6670294528470300, -163.7250154396108100 60.6658572036470800, -163.7249652142732000 60.6646827610006800, -163.7250028311157500 60.6637081441156200, -163.7250887631359000 60.6625701797700600, -163.7251917867715200 60.6616405083028700, -163.7253602369853200 60.6607131399994700, -163.7255939087318700 60.6597891837238900, -163.7258925169260800 60.6588697447429600, -163.7263613658843000 60.6577178022348560, -163.7269321053323700 60.6565769915349600, -163.7276036398960500 60.6554494818082050, -163.7283746799475000 60.6543374188368600, -163.7288942281860500 60.6536663420280900, -163.7294500173044300 60.6530022997164340, -163.7300416516009000 60.6523457658444700, -163.7306687083941500 60.6516972053618100, -163.7314746430403100 60.6508915000427460, -163.7323233692280800 60.6500781522849500, -163.7332277877321800 60.6492794077185500, -163.7344705087069800 60.6482755745581700, -163.7358011537002700 60.6472992966253060, -163.7372171857245200 60.6463524301206000, -163.7387159050149700 60.6454367754868700, -163.7398136121085000 60.6448148124536600, -163.7409494783357200 60.6442096037902160, -163.7449777297384000 60.6421277955613500, -163.7460647528860000 60.6415816759536600, -163.7471828422143600 60.6410509059745660, -163.7483310984014500 60.6405359119028700, -163.7495085969441700 60.6400371056279800, -163.7513748727521400 60.6393023082549700, -163.7533045534623600 60.6386081611377700, -163.7552939698408000 60.6379559817831900, -163.7573393393390000 60.6373470103562800, -163.7583400275702000 60.6370776355245200, -163.7586527973886600 60.6364520662099300, -163.7587510285371200 60.6357252431255350, -163.7588574156371800 60.6352517437730400, -163.7577518142947800 60.6346838003171900, -163.7561760428900500 60.6338001237767200, -163.7546803309325000 60.6328835113650400, -163.7532675247764200 60.6319357086660500, -163.7519403106967700 60.6309585233172500, -163.7507012085938800 60.6299538187138300, -163.7495525737922200 60.6289235086130700, -163.7484965853491000 60.6278695571344300, -163.7475352469540400 60.6267939733632500, -163.7466703815328500 60.6256988059552100, -163.7459036267509600 60.6245861422367500, -163.7452364323154700 60.6234581010106100, -163.7448221542190000 60.6226233125159400, -163.7442411651976000 60.6217801459370660, -163.7435740292180500 60.6206521047109300, -163.7430077045419000 60.6195108353568340, -163.7425432613623900 60.6183585106368240, -163.7421815720219000 60.6171973266953050, -163.7419233146092700 60.6160294940659700, -163.7417689693624300 60.6148572358728200, -163.7417188186685200 60.6136827842331600, -163.7417193231882000 60.6135874713847300, -163.7417483227269000 60.6103278408572240, -163.7408317831602500 60.6096525759057300, -163.7395934967424600 60.6086478686042940, -163.7391979731079300 60.6083047610559300, -163.7387263965059700 60.6078885934838350, -163.7376996216402000 60.6069382241198000, -163.7367509762765000 60.6059684374934600, -163.7358819685779600 60.6049807849353200, -163.7350939835005200 60.6039768447556640, -163.7343277413321800 60.6028641774398700, -163.7342418560767800 60.6027188712789700, -163.7331109999726400 60.6027306056329850, -163.7306370072920200 60.6027030935729840, -163.7238424538661300 60.6025628308100300, -163.7237651454450700 60.6025711612301700, -163.7217545122609000 60.6028599928944200, -163.7197239608920500 60.6030957213905000, -163.7176765939995800 60.6032932197063600, -163.7166404149231800 60.6033661754087200, -163.7165632476957000 60.6033811581140200, -163.7157278044945500 60.6035861342927000, -163.7135886779750800 60.6041219683542100, -163.7114019548363000 60.6045954398277300, -163.7091752451414000 60.6050215305192500, -163.7069127954891000 60.6053994265423600, -163.7046189226251400 60.6057284075400300, -163.7039225442899500 60.6058122513343850, -163.7038423751254800 60.6058247357230500, -163.7017587124945500 60.6061756089172800, -163.7015811503497700 60.6062097867522900, -163.7014859175410200 60.6062267686505150, -163.6992601944024300 60.6066605242638160, -163.6969976305362000 60.6070384202869260, -163.6948993278416800 60.6073393379401750, -163.6937315986343400 60.6078005462582600, -163.6918051491882700 60.6084956304690100, -163.6898187752162800 60.6091487172395800, -163.6877762619649000 60.6097585592102060, -163.6856815025992400 60.6103239944568500, -163.6835384910085300 60.6108439437930400, -163.6813513137121300 60.6113174143672500, -163.6802455208141000 60.6115289681873700, -163.6786358458675700 60.6119993414964700, -163.6776139030591500 60.6123576170104460, -163.6756272916661600 60.6130107028816950, -163.6735845346984800 60.6136205448523240, -163.6720492903424400 60.6140218924963960, -163.6703666021369400 60.6146758156364200, -163.6686350474694500 60.6153088169484100, -163.6668540435792000 60.6159077870148050, -163.6660212533781200 60.6161544179920500, -163.6647977545127300 60.6166940283068240, -163.6632705527937600 60.6173604412314260, -163.6621341937380000 60.6178427539400100, -163.6602707193182200 60.6185785099903000, -163.6583368936327000 60.6192613085626100, -163.6570276354170200 60.6199629497303900, -163.6554875643995500 60.6207414478595900, -163.6538847998436000 60.6214887835805600, -163.6522219479845000 60.6222037401105900, -163.6513866109033300 60.6225361502232000, -163.6467425820045200 60.6250494882433500, -163.6454779535446800 60.6257110124533400, -163.6441686125913600 60.6263512083416460, -163.6428160466232400 60.6269693456588360, -163.6414474358504700 60.6275562045552760, -163.6409790779220800 60.6278627366760360, -163.6398451317474000 60.6285501388778700, -163.6382696157501500 60.6294338154182800, -163.6366170494372600 60.6302828707579240, -163.6348905786372500 60.6310956852177600, -163.6337232514269000 60.6315991140079400, -163.6326765925506700 60.6321450762343400, -163.6311688971268800 60.6328730612428300, -163.6296051046918000 60.6335719280021400, -163.6278528800063700 60.6343251021218100, -163.6260169590154300 60.6352345658226000, -163.6243551350814000 60.6362441168725500, -163.6227792440668300 60.6371277925136950, -163.6211262847502000 60.6379768469539600, -163.6201295202611200 60.6384460061783000, -163.6193124178337800 60.6389042053648400, -163.6176625908558400 60.6397518065007260, -163.6159390950132000 60.6405633052523850, -163.6141451993414400 60.6413371592825600, -163.6123887433458000 60.6420621459513400, -163.6105177442984200 60.6428004272979140, -163.6085892075258800 60.6434955088107600, -163.6075516938555600 60.6438362547394260, -163.6073359518926500 60.6439451374581600, -163.6062074223346500 60.6444829113573300, -163.6050479129308100 60.6450045631101500, -163.6038583778618300 60.6455096628407100, -163.6019933062460700 60.6462454161930400, -163.6000645635287500 60.6469404968065650, -163.5980758252391000 60.6475935799798000, -163.5960308802209200 60.6482034192524700, -163.5939336270352300 60.6487688518011500, -163.5917880631685600 60.6492887984393300, -163.5914658369787600 60.6493584689182500, -163.5913076561234000 60.6494266501198350, -163.5904210334039400 60.6497763721818600, -163.5900637588353800 60.6499588796986000, -163.5888687504924200 60.6505422231451200, -163.5872051836722700 60.6513208948434800, -163.5854765374122300 60.6520646413701460, -163.5836110871819000 60.6528003938231560, -163.5816819532595000 60.6534954744366250, -163.5796870905867300 60.6541340533439700, -163.5784469569614700 60.6546063880744000, -163.5765177142211000 60.6553014686878700, -163.5756399426292000 60.6555904505389100, -163.5742656301546800 60.6562688145542100, -163.5736889506845000 60.6565332925774200, -163.5727262722996000 60.6570903785182050, -163.5711943869114000 60.6579397917880100, -163.5695908831127400 60.6587567602163600, -163.5679186054592500 60.6595398322974700, -163.5661805244116400 60.6602876149814850, -163.5643089237178200 60.6610255060223300, -163.5623732526234700 60.6617224770107550, -163.5615669708390000 60.6619996642531300, -163.5595832588602700 60.6626505036179000, -163.5589222427672700 60.6628475073066500, -163.5587350821582800 60.6629154420940040, -163.5568723316927200 60.6636623569322640, -163.5549425484598200 60.6643574366464100, -163.5546745289063600 60.6644454038323600, -163.5460406991189500 60.6686916499996900, -163.5443042845150800 60.6695086921724850, -163.5424964601435000 60.6702875815067300, -163.5408657860271800 60.6709303719391640, -163.5397329972799700 60.6716894042426700, -163.5382354884769700 60.6726060121578140, -163.5378177722723500 60.6728476483003760, -163.5372348856814000 60.6731808291320360, -163.5357463907833000 60.6739973991607260, -163.5341913442551000 60.6747835712049000, -163.5325708864372400 60.6755352983154240, -163.5320591452133400 60.6757986386962800, -163.5313931621646800 60.6761328330638300, -163.5298909795850200 60.6768351793001560, -163.5294631154304200 60.6770470946477760, -163.5282300127048800 60.6776717241708100, -163.5269729538387000 60.6782626704859350, -163.5265251049496000 60.6785032643142600, -163.5249712482245000 60.6794056656390240, -163.5233161233403800 60.6802547155826900, -163.5215869788559600 60.6810675246466100, -163.5197871062899000 60.6818425432987850, -163.5179199338578300 60.6825782930538400, -163.5159890183784600 60.6832733709693460, -163.5145249751474500 60.6837536053446900, -163.5137098413361000 60.6841717037611940, -163.5123609733802000 60.6848056808375400, -163.5113911148080800 60.6855185671282100, -163.5099759623207700 60.6864663626325860, -163.5084777673350800 60.6873829696484100, -163.5068993780038500 60.6882666398935840, -163.5052437980628000 60.6891156889379300, -163.5035141778370200 60.6899284971025300, -163.5030283226989000 60.6901376461355000, -163.5027639220173500 60.6902631096548360, -163.5008791939196400 60.6912174819013300, -163.5005821280627500 60.6913485293112560, -163.5001579727122300 60.6918134239504100, -163.4990998933453700 60.6928673655365300, -163.4979489823596200 60.6938976666440340, -163.4967074260068800 60.6949023631535740, -163.4953775805109000 60.6958795404085000, -163.4939619738659600 60.6968273350135500, -163.4933626179904000 60.6971939067734100, -163.4929332213910000 60.6975413562486200, -163.4916032670771000 60.6985185326042260, -163.4901875444196000 60.6994663272092800, -163.4886887450895000 60.7003829324264640, -163.4884683167594000 60.7005080721898500, -163.4880489763791300 60.7008473486262700, -163.4868335201508000 60.7017243926666200, -163.4867194663302700 60.7018250744676500, -163.4860154977170000 60.7025680161011100, -163.4851445834557400 60.7034075539155540, -163.4847141220590500 60.7037693358861900, -163.4842179570930200 60.7042353699664000, -163.4836459630907000 60.7048123390183040, -163.4824946267256000 60.7058426383271700, -163.4815685705330800 60.7065830528656500, -163.4809995281057000 60.7071242324973900, -163.4799139510679700 60.7080926332684500, -163.4786718479274200 60.7090973279793500, -163.4773414169728000 60.7100745025363150, -163.4759251870977000 60.7110222953427300, -163.4751640638704000 60.7114824082865400, -163.4747178103786200 60.7121156515161700, -163.4738506301024800 60.7132108054343600, -163.4732730378204000 60.7138553054780350, -163.4736266944164000 60.7140365080784360, -163.4748276292916400 60.7146719312646600, -163.4759862798429000 60.7153259380416440, -163.4774882564778000 60.7162415827828600, -163.4789073659821400 60.7171884375963500, -163.4802460635050000 60.7181546665046900, -163.4808058761902000 60.7184297421389400, -163.4819745173101000 60.7190495333093740, -163.4831029857142000 60.7196869484939160, -163.4846051655959000 60.7206025923358100, -163.4851248487327700 60.7209492872798360, -163.4854879149353000 60.7210795567762000, -163.4873589337677500 60.7218143433573200, -163.4891628281020000 60.7225883835471340, -163.4908961652258200 60.7234002060547500, -163.4925499006573700 60.7242616558507960, -163.4934702335644000 60.7246723897190460, -163.4952036822041400 60.7254842122266600, -163.4968632704235700 60.7263322756140840, -163.4984458371056600 60.7272149664975700, -163.4994377119808000 60.7278154905924900, -163.5020892245380500 60.7290208375416700, -163.5033199854289600 60.7295978632508300, -163.5045136870569700 60.7301932782972360, -163.5056691836858500 60.7308065116112600, -163.5067853655521600 60.7314369759357650, -163.5082880949196000 60.7323526170796400, -163.5097079166869800 60.7332994700945500, -163.5110421229955500 60.7342757336382400, -163.5122881714619000 60.7352795524094500, -163.5128534511258400 60.7357831691579700, -163.5132948069097800 60.7360774758948300, -163.5146291292309000 60.7370537394385800, -163.5158752856159200 60.7380575573104700, -163.5170308982573300 60.7390870229477850, -163.5180937611181700 60.7401401776271540, -163.5190618444285600 60.7412150203569500, -163.5199332982830600 60.7423095051795500, -163.5203659045628200 60.7429317326134400, -163.5215835488416800 60.7437434912691860, -163.5229181895228000 60.7447197530142400, -163.5241646435834200 60.7457235708861300, -163.5253205323167000 60.7467530347248040, -163.5263836487863200 60.7478061885048500, -163.5273519641218000 60.7488810285366900, -163.5282236257197300 60.7499755124599700, -163.5289969671363000 60.7510875583441800, -163.5291213937373000 60.7513356201428100, -163.5292419721392600 60.7515128063709540, -163.5296488344261300 60.7519981363050200, -163.5300430585403000 60.7524220236575160, -163.5309077476943900 60.7535011903277100, -163.5314918294843000 60.7542789663012850, -163.5315356426557700 60.7543375166631000, -163.5323024289139400 60.7554548667487800, -163.5329277257339400 60.7562535186850140, -163.5337012182366200 60.7573655636699100, -163.5343748895894600 60.7584930545108900, -163.5349474465673700 60.7596338472243360, -163.5354177901988400 60.7607857708467240, -163.5356164495394800 60.7613718922990500, -163.5362306649132300 60.7633166447474200, -163.5365114440478700 60.7643336538751000, -163.5367128049519500 60.7653551587136460, -163.5368344490505600 60.7663796753817560, -163.5368761919826600 60.7674057146020900, -163.5368448002473000 60.7681375271252500, -163.5372778085240000 60.7683810626359700, -163.5389764255215800 60.7694210332541600, -163.5402268932565000 60.7702266261579200, -163.5412464141906200 60.7709051736349000, -163.5422220940743600 60.7715989754124200, -163.5431529769283300 60.7723073534016860, -163.5440381499406300 60.7730296151247000, -163.5451850940168600 60.7740485640900400, -163.5462345983480000 60.7746857094779800, -163.5476562934031800 60.7756325552982160, -163.5489922623829700 60.7766088116474100, -163.5502399557093700 60.7776126232240600, -163.5508163348059700 60.7781229956797800, -163.5524323481743000 60.7784300080384700, -163.5546315853793300 60.7789027438665800, -163.5567866281003800 60.7794219009000500, -163.5588933781268700 60.7799864943812600, -163.5609478334757000 60.7805954496203640, -163.5629460883912400 60.7812476118878100, -163.5648843423385000 60.7819417419179300, -163.5666826356950600 60.7826466233430550, -163.5667599036466000 60.7826731704305400, -163.5677242583678000 60.7829704584199800, -163.5684503098339000 60.7831860448001750, -163.5705067778655000 60.7837894602154700, -163.5719604348261700 60.7842738593511740, -163.5725067235064500 60.7844360556794640, -163.5740645480404400 60.7848475099046940, -163.5761193145547000 60.7854564651437950, -163.5781178725417500 60.7861086265119750, -163.5791796993836000 60.7864888319940600, -163.5807708375041300 60.7867910383757800, -163.5829680413420000 60.7872775014556050, -163.5841298125408000 60.7875275732389500, -163.5849575134784300 60.7876901562757440, -163.5869211256094200 60.7878809231661400, -163.5892554373885000 60.7881599000593840, -163.5915626777753300 60.7884883441618060, -163.5938384661722600 60.7888656322431900, -163.5960784795381600 60.7892910484432040, -163.5982784622811700 60.7897637824726200, -163.6004342334531000 60.7902829386067650, -163.6025416975412800 60.7908475302893400, -163.6045954163453500 60.7914618310986700, -163.6051757668481300 60.7916442118109900, -163.6055524029210300 60.7917461005021660, -163.6067192319070000 60.7919570571725100, -163.6089193972124000 60.7924297921013000, -163.6110753473493800 60.7929489482354500, -163.6131805640317800 60.7935236006337050, -163.6135202298747000 60.7936147568156600, -163.6138686569129600 60.7937210189099350, -163.6156298559330700 60.7941710063868750, -163.6160203829343000 60.7942549527039660, -163.6179397610111400 60.7947690915204360, -163.6181492400953300 60.7948198465587100, -163.6203272425082000 60.7953379558820200, -163.6210418276182300 60.7955293630897100, -163.6213207424582700 60.7955615759060500, -163.6233635596805000 60.7958384277013100, -163.6253831087434500 60.7961534512208460, -163.6260496403785700 60.7962643637095000, -163.6271209199944400 60.7964486608770500, -163.6283159616123200 60.7966755652252000, -163.6297340090172800 60.7968773766896200, -163.6320100132515000 60.7972578501697300, -163.6320925485322600 60.7972706043549350, -163.6332396499898300 60.7974384727074300, -163.6350156167772500 60.7975815548449500, -163.6358731599183600 60.7976519825530200, -163.6382308432787600 60.7978809616371340, -163.6405658817100500 60.7981599385303750, -163.6428738424538400 60.7984883826328000, -163.6451503404158500 60.7988656698148600, -163.6472706558160700 60.7992668187087600, -163.6493553526673600 60.7997103409595100, -163.6514008885401400 60.8001954838345600, -163.6524035372934000 60.8004764743099000, -163.6531499557058600 60.8005759474220900, -163.6554580900188000 60.8009043915245100, -163.6572493848512000 60.8012012433427460, -163.6577360808554100 60.8012706107501200, -163.6580672768833000 60.8012989501864350, -163.6603612504713000 60.8016394461035900, -163.6607752866501400 60.8016936509412740, -163.6627043306403000 60.8018809779248400, -163.6650396604519500 60.8021599539188200, -163.6673479089788000 60.8024883980211800, -163.6686039300273300 60.8026965344175800, -163.6699266807716800 60.8028249809881340, -163.6722620798310900 60.8031039569820560, -163.6745703958070800 60.8034324010844800, -163.6768472445047000 60.8038096882665400, -163.6790883019835000 60.8042351026679200, -163.6812893099536600 60.8047078357980100, -163.6815070897803500 60.8047602572801200, -163.6823207469049000 60.8047689240466400, -163.6847199303804500 60.8048456874785760, -163.6871099929318000 60.8049734640541700, -163.6894863983785600 60.8051520118559100, -163.6918446321240300 60.8053809909400200, -163.6941802173431300 60.8056599669340000, -163.6964887176801500 60.8059884101370500, -163.6987657480408000 60.8063656973191100, -163.7010069835854000 60.8067911117204860, -163.7032081669233300 60.8072638448506400, -163.7053651153077900 60.8077829991861450, -163.7061392337386000 60.8079902722333260, -163.7063731716845000 60.8080466705175100, -163.7085317316540600 60.8085600017427600, -163.7091641969700800 60.8087293422853460, -163.7105869235476500 60.8088959425937200, -163.7123120147876000 60.8091270845473560, -163.7140208696673700 60.8093854309929040, -163.7157116913414500 60.8096707103350700, -163.7179531580118000 60.8100961238371300, -163.7201545679789000 60.8105688569672200, -163.7223117384959000 60.8110880113027300, -163.7244205704529300 60.8116526011866650, -163.7264770555716200 60.8122615537277500, -163.7284769697363300 60.8129163492101840, -163.7286226266329000 60.8129504892737000, -163.7309364788354000 60.8132654381495300, -163.7332140263062300 60.8136427253315900, -163.7353309602556000 60.8140429982858000, -163.7364960895229000 60.8143018294659300, -163.7374135958607400 60.8144821075632650, -163.7385420633655100 60.8146030268083000, -163.7408783203781600 60.8148820028022200, -163.7429856001053300 60.8151697615753050, -163.7431891625497800 60.8151963922997000, -163.7453235667291800 60.8154370050138500, -163.7476327712353700 60.8157654482168940, -163.7499104967719700 60.8161427344996350, -163.7519619124123000 60.8165298476743600, -163.7532111031099000 60.8167796541577560, -163.7549164011709600 60.8171371283758050, -163.7565961360028600 60.8175224105309000, -163.7582484091367400 60.8179350644517200, -163.7592015969760800 60.8181932265362100, -163.7603001080635200 60.8183494576613840, -163.7610623761277400 60.8184757107854900, -163.7618732039851500 60.8185525911292200, -163.7637422317186000 60.8187629704348200, -163.7655951696813200 60.8190049456217700, -163.7674297812593800 60.8192782271085550, -163.7684840268163700 60.8194450945155700, -163.7703286217684400 60.8197547481831300, -163.7715236067290300 60.8199850321835240, -163.7725722576035700 60.8201713267453700, -163.7738009815300600 60.8203657502792200, -163.7747659414949600 60.8205488306640500, -163.7764769007883000 60.8202654650792200, -163.7787864290504300 60.8199370227754340, -163.7811230547851300 60.8196580467815100, -163.7834823389387700 60.8194290685967200, -163.7851230027243600 60.8193003207532600, -163.7867708547911000 60.8191957583775900, -163.7884244022643300 60.8191154740999300, -163.7900821468735400 60.8190595425638800, -163.7918818134948800 60.8190120421720600, -163.7930411385377000 60.8187631556951400, -163.7952830566677000 60.8183371000771440, -163.7963949811434400 60.8180688835721500, -163.7985969064220600 60.8175961513413800, -163.8008388982965000 60.8171707378393200, -163.8031166966782000 60.8167934515565800, -163.8054259749287700 60.8164650092528500, -163.8077623470546500 60.8161860332588700, -163.8101213767001500 60.8159570541747600, -163.8115869829528600 60.8158408554711500, -163.8130584554833100 60.8157439598159600, -163.8163337611941000 60.8155501208414650, -163.8179880380175200 60.8154645359596200, -163.8196468411288000 60.8154033469869550, -163.8213086650628200 60.8153666123793100, -163.8229719998578800 60.8153543636130400, -163.8248903248286000 60.8153706566305350, -163.8330784515093000 60.8155095407327600, -163.8350030951167200 60.8155585771666550, -163.8369230613501800 60.8156404145735200, -163.8388360092744000 60.8157549540279660, -163.8407396069472700 60.8159020543363900, -163.8430986320961700 60.8161310334205040, -163.8454350006247500 60.8164100085151600, -163.8477442752780500 60.8167384517182100, -163.8500220691631500 60.8171157380009500, -163.8522640574402700 60.8175411515030100, -163.8544659791216000 60.8180138837337840, -163.8566236505610000 60.8185330371699700, -163.8575904064720400 60.8187918026995900, -163.8577157287978000 60.8188220055311600, -163.8583473586436700 60.8189785388285600, -163.8591999330304500 60.8188097441744160, -163.8614778483240000 60.8184324578916740, -163.8637872443858000 60.8181040155878900, -163.8661237370208000 60.8178250395939700, -163.8684828862761500 60.8175960605098600, -163.8705164962392800 60.8174401315569100, -163.8725605913981600 60.8173213580942600, -163.8746123298951000 60.8172399055972050, -163.8766688572819000 60.8171958882796840, -163.8811371037943000 60.8171409343067350, -163.8825279997673500 60.8171323709622100, -163.8849326754026000 60.8171579746608600, -163.8873327860791800 60.8172347371934200, -163.8897237731336000 60.8173625137690700, -163.8921010967881700 60.8175410606714900, -163.8944602424462000 60.8177700397556000, -163.8967967296853000 60.8180490148502000, -163.8991061221498000 60.8183774580533050, -163.9013840338460600 60.8187547443360500, -163.9036261363371000 60.8191801569387300, -163.9056102988761600 60.8196061163292800, -163.9058293917130400 60.8196426548846600, -163.9069914965603000 60.8197710223149100, -163.9093010131312300 60.8200994646186360, -163.9115790462359700 60.8204767509013800, -163.9138212692361700 60.8209021635041150, -163.9160217735859500 60.8213836740174000, -163.9165790699680700 60.8215029618922360, -163.9184423384431300 60.8218861774051900, -163.9202739067154000 60.8223077984661700, -163.9220725858811000 60.8227619498042000, -163.9240715386705500 60.8232895613642200, -163.9254028914302800 60.8236526419559000, -163.9274601463686500 60.8242615926984060, -163.9294611253306500 60.8249137504692500, -163.9314013910613000 60.8256275954372540, -163.9314916200422000 60.8256429459652300, -163.9326120521045000 60.8256787713582400, -163.9350036686843500 60.8258065479338940, -163.9373816191663600 60.8259850939369900, -163.9397413862559500 60.8262140730211060, -163.9420784904299600 60.8264930481157100, -163.9443884917354800 60.8268214904194900, -163.9466667424761700 60.8272111819505300, -163.9470495856698200 60.8272316298359200, -163.9480487486508000 60.8272596068454160, -163.9496603427505800 60.8273162920133360, -163.9512678512303000 60.8273959845371340, -163.9528698972279400 60.8274986169676600, -163.9544651092773500 60.8276241011714100, -163.9568249968760700 60.8278530793562000, -163.9591622206599200 60.8281320544508050, -163.9614723397766300 60.8284604967545900, -163.9637509682325700 60.8288377821380100, -163.9659937757921000 60.8292631938413700, -163.9681965032659700 60.8297359251728800, -163.9703549652094500 60.8302550777097500, -163.9724650589153000 60.8308196657949900, -163.9745227752058800 60.8314286156381740, -163.9756817944792100 60.8318062778375300, -163.9769179782820500 60.8318457967461650, -163.9793100553147800 60.8319735724225000, -163.9816884635517300 60.8321521193249200, -163.9840486856982700 60.8323810975097100, -163.9863862386339700 60.8326600717049900, -163.9886966851039200 60.8329885140087750, -163.9909756355171500 60.8333657993922000, -163.9932166840027300 60.8338043187143850, -163.9932853013755200 60.8338220092783800, -163.9944003887669000 60.8340559634120300, -163.9945153437081200 60.8340711169885250, -163.9962609376920900 60.8339950820075050, -163.9965620100287300 60.8339371278962060, -163.9979754061400600 60.8335600898263350, -164.0001340902160500 60.8330409381887900, -164.0023370452184400 60.8325682068573300, -164.0045800848030500 60.8321427942545940, -164.0068589479820400 60.8317655097704900, -164.0091693063184000 60.8314370674667660, -164.0115067702212500 60.8311580923721100, -164.0138669024355800 60.8309291141873100, -164.0156767853553400 60.8307885375610340, -164.0174952226264000 60.8306773687656350, -164.0193202132572000 60.8305957301089400, -164.0211497445650400 60.8305437115231500, -164.0252303203230000 60.8304607805406500, -164.0275280000171600 60.8304374242478050, -164.0299336747992200 60.8304630288457700, -164.0323347819246200 60.8305397913783300, -164.0327465931807000 60.8305617896949100, -164.0329896322657000 60.8299678774156400, -164.0335634509924300 60.8288270972927900, -164.0342386062266700 60.8276996190422200, -164.0350138011459600 60.8265875875471800, -164.0358875518690000 60.8254931171136950, -164.0368581865560300 60.8244182896723940, -164.0379238499057200 60.8233651493822000, -164.0390825058529500 60.8223356981340000, -164.0401148304350400 60.8214994077715100, -164.0412085247535900 60.8206819366221200, -164.0423621462960000 60.8198843611743900, -164.0435741770066300 60.8191077273398260, -164.0449830783064000 60.8182402278043240, -164.0454660304329200 60.8179450559196650, -164.0464908115017000 60.8173261757624460, -164.0480778298279500 60.8164434983688100, -164.0497420855288000 60.8155954493705600, -164.0514804093933500 60.8147836394534800, -164.0532894928158200 60.8140096118541460, -164.0551658940907200 60.8132748369641800, -164.0571060438088600 60.8125807105313900, -164.0591062520518600 60.8119285518612300, -164.0611627155868200 60.8113195993200860, -164.0630373371034000 60.8108163539915840, -164.0632718101459000 60.8107561704609340, -164.0649504010401400 60.8103485104754200, -164.0654285211093400 60.8102352021928700, -164.0666182720156000 60.8099686845072260, -164.0676271665604700 60.8097499028357900, -164.0690523222069000 60.8094239867276660, -164.0715387327263000 60.8089487076168200, -164.0738151002866200 60.8085688240919900, -164.0747486388385700 60.8082615401380050, -164.0768048676504800 60.8076525875969200, -164.0789134361061800 60.8070879977129800, -164.0810703377259000 60.8065688424781600, -164.0832714733997500 60.8060961093480050, -164.0855126603809400 60.8056706949466840, -164.0877896421782200 60.8052934086639400, -164.0900980921532000 60.8049649645615200, -164.0924336261109300 60.8046859885676000, -164.0947918094943800 60.8044570094834300, -164.0972560499267300 60.8042728481135000, -164.1003095477474000 60.8040790091390000, -164.1020799153557700 60.8039807833865200, -164.1038558479690000 60.8039105490326500, -164.1056354947822300 60.8038683789226300, -164.1074169995948200 60.8038543171230700, -164.1098206796805800 60.8038799208217700, -164.1122197966063000 60.8039566842536500, -164.1146097926078000 60.8040844608292450, -164.1169861324040700 60.8042630086309800, -164.1179289519595300 60.8043482976359000, -164.1196775649676200 60.8045141605001600, -164.1217943891996600 60.8047360835034850, -164.1238917718877400 60.8049984265362000, -164.1259664808683600 60.8053007858026700, -164.1280153226490000 60.8056426945547600, -164.1302565087308700 60.8060681089561400, -164.1324576417067600 60.8065408420862350, -164.1346145415278400 60.8070599964217400, -164.1367231081848700 60.8076245872050000, -164.1387793351981400 60.8082335397461400, -164.1407793132147000 60.8088856984163040, -164.1427192390016500 60.8095798248490950, -164.1445954235399300 60.8103146006383800, -164.1464042983196800 60.8110886282376550, -164.1481424216354000 60.8119004390540600, -164.1498064848813400 60.8127484889516840, -164.1513933206452000 60.8136311672446400, -164.1527819035619600 60.8144720594380600, -164.1541003735334000 60.8153394699406250, -164.1553466054614300 60.8162320039039060, -164.1565185893613800 60.8171482269091800, -164.1574353024972000 60.8178979053640800, -164.1578273673391000 60.8182236919698800, -164.1589858748981800 60.8192531432180200, -164.1600514006515800 60.8203062844075360, -164.1610219103328600 60.8213811118488900, -164.1618955486406200 60.8224755831817000, -164.1626706446345200 60.8235876155760600, -164.1633457126345000 60.8247150947258900, -164.1639194576168600 60.8258558757481200, -164.1643907788113700 60.8270077876792900, -164.1647061170936000 60.8279797821413100, -164.1649485023714600 60.8289567525521300, -164.1653688922605500 60.8309565821805900, -164.1655837897600600 60.8323178490895200, -164.1656570557285000 60.8336826836090300, -164.1656349216143300 60.8344683007715050, -164.1655658320974600 60.8352532677241700, -164.1653079353129400 60.8374134437754600, -164.1652584285336300 60.8378086256676060, -164.1651492328507800 60.8385872613930600, -164.1649816342949500 60.8393658206761640, -164.1648868097784000 60.8397523753718600, -164.1647731579548400 60.8401403653855940, -164.1645253632548800 60.8409142553886100, -164.1640577130929400 60.8420665432364560, -164.1634874736679400 60.8432077766176460, -164.1628157223676700 60.8443357827702000, -164.1621102428933600 60.8453298789708000, -164.1620388061459700 60.8454459535679460, -164.1615208847809700 60.8464577727081060, -164.1608490642329000 60.8475857779613400, -164.1604265645343000 60.8481946387716450, -164.1610479591959400 60.8484845352331800, -164.1627139254073000 60.8493325797348350, -164.1629771533729000 60.8494788319825400, -164.1640563838949700 60.8493741868692840, -164.1661685118673000 60.8492131371766050, -164.1674111608963400 60.8491422930824200, -164.1688726221737500 60.8487909936095000, -164.1710766608591700 60.8483182640766800, -164.1733208039119300 60.8478928532726400, -164.1756007885455200 60.8475155687885400, -164.1779122827256300 60.8471871282833940, -164.1788513224305500 60.8470638860895300, -164.1808523652444200 60.8464006648588340, -164.1829110438095800 60.8457917159150300, -164.1850221249710600 60.8452271296283700, -164.1871815959538600 60.8447079788901400, -164.1893853540508000 60.8442352484580060, -164.1916292111191600 60.8438098376539640, -164.1939089043724200 60.8434325531698600, -164.1962201044742000 60.8431041117654000, -164.1985584209343500 60.8428251375701200, -164.1997701377816000 60.8427090926505800, -164.1998354969106200 60.8427012820386040, -164.2020814269163000 60.8423821090471500, -164.2044196903164300 60.8421031348518700, -164.2067799367446500 60.8418699748195300, -164.2072157536041200 60.8417935468347650, -164.2081598474989300 60.8416593760794060, -164.2087041558720600 60.8414266908891360), (-164.1551973063106000 60.6989730409731000, -164.1568973424383800 60.6991011943646900, -164.1565812523229000 60.6987864091655100, -164.1558296079500000 60.6979472895358200, -164.1549941260780400 60.6985019023409800, -164.1543333563992600 60.6989266989081100, -164.1551973063106000 60.6989730409731000), (-162.4002694476768300 60.2030308307083150, -162.4000251495410000 60.2026124067372200, -162.3982284578770000 60.2031035049228650, -162.3961120491317400 60.2036234794400700, -162.3952648868650200 60.2038091840466340, -162.3953657296446800 60.2043549807978000, -162.3954710969135500 60.2052542857567200, -162.3954809031211500 60.2054094448900500, -162.3960356274422200 60.2065219611196800, -162.3970896922354800 60.2075554593170640, -162.3980420068331200 60.2086303955763360, -162.3988992594932000 60.2097249766264300, -162.3996566181583600 60.2108301660793500, -162.4010389462903000 60.2116844770570200, -162.4024361788865200 60.2126314137088340, -162.4037491548995400 60.2136077635874500, -162.4049753715161400 60.2146116704922750, -162.4061124878010400 60.2156412260617900, -162.4071583354887600 60.2166944724720000, -162.4077262672534000 60.2173359615854340, -162.4081222963069000 60.2177581060518040, -162.4087718658289200 60.2183894750942300, -162.4090928635448000 60.2187516842428750, -162.4096457658394000 60.2192522316052500, -162.4097955200472000 60.2194030281273200, -162.4110956366542700 60.2199248732343900, -162.4130740264451400 60.2207915022261200, -162.4149653582646500 60.2217049966882900, -162.4203429003045800 60.2244313598194500, -162.4206311878790000 60.2245466484091600, -162.4214889036899200 60.2248968884806600, -162.4232654127685600 60.2256709961196200, -162.4249724312326700 60.2264828896736600, -162.4266067116304000 60.2273310259061500, -162.4281651423074500 60.2282137941313640, -162.4297419991938800 60.2291926531185000, -162.4310204556295000 60.2300252409721700, -162.4320495183705500 60.2307180723811940, -162.4330335394662400 60.2314269117226800, -162.4335529582024300 60.2318446782893500, -162.4345044409271800 60.2324078040769560, -162.4359842429784000 60.2333235243612000, -162.4373823973797000 60.2342704574157300, -162.4384510311901000 60.2350645830641160, -162.4391473034053000 60.2354638110061300, -162.4406272430528000 60.2363795303910500, -162.4420255287551200 60.2373264634455840, -162.4433394940224000 60.2383028088276000, -162.4436919491241200 60.2385838334772100, -162.4446688529851600 60.2388571968022600, -162.4456044617764700 60.2390992367404600, -162.4467840737259800 60.2393920065359200, -162.4488560505662600 60.2399566539764350, -162.4508765915814200 60.2405656694701300, -162.4528409492503700 60.2412212275776260, -162.4539963568463700 60.2415396595277460, -162.4560169958876000 60.2421486750213800, -162.4579823563006800 60.2428009002414340, -162.4598887014024000 60.2434950968213340, -162.4617324060257000 60.2442299454556860, -162.4635099619151800 60.2450040503966900, -162.4652179867207000 60.2458159412527150, -162.4668532311916400 60.2466640756866240, -162.4684125809758000 60.2475468403145000, -162.4685658272511000 60.2476407987838900, -162.4701407451992200 60.2480676817781400, -162.4721617862374200 60.2486766963725100, -162.4730532886783000 60.2489724914873360, -162.4737043555715300 60.2490563334830540, -162.4742528350003000 60.2490974603795700, -162.4755737592216000 60.2492047953650740, -162.4778919110828000 60.2494337978315600, -162.4801877984281200 60.2497128026038240, -162.4824570595456200 60.2500412799811300, -162.4846953848840800 60.2504186058340600, -162.4860722883054200 60.2506780521504200, -162.4874345183882800 60.2509559903267600, -162.4916259274945400 60.2518443217580850, -162.4931140428787400 60.2521728926649300, -162.4945816483243800 60.2525235266394900, -162.4950772476168500 60.2526645969936100, -162.4960114597610400 60.2516115196559700, -162.4970584226081000 60.2505582795409960, -162.4981967520784300 60.2495287293674000, -162.4994242745106300 60.2485248287579200, -162.5007386498687700 60.2475484842751700, -162.5020611613934400 60.2466531471250700, -162.5008475856475300 60.2459661136452950, -162.5000350140046500 60.2454952421118150, -162.4985570213894000 60.2445785829353300, -162.4971609489186300 60.2436307325722850, -162.4958494504917300 60.2426534968614650, -162.4946250190293700 60.2416487400973300, -162.4939306272965800 60.2410068363964200, -162.4932930466367500 60.2406849798280200, -162.4922461017761500 60.2400779662252150, -162.4921725786015800 60.2400489576933200, -162.4901328064838000 60.2395483689621200, -162.4880617532472800 60.2389829085344700, -162.4866745426959700 60.2385704497664850, -162.4853127415897200 60.2381375772874300, -162.4839775658119800 60.2376846760070600, -162.4826702051658200 60.2372121515196600, -162.4810307338812300 60.2366007537218600, -162.4798493979313300 60.2361473973845140, -162.4786936665794300 60.2356780178263300, -162.4779233711666000 60.2353417343336450, -162.4762022918023000 60.2350509664290140, -162.4742762767287700 60.2346927997329540, -162.4739983754246600 60.2346387963434040, -162.4720383228103300 60.2343156303621200, -162.4716566649231300 60.2342556132060200, -162.4707638512707000 60.2341468806740750, -162.4684959930956000 60.2338178852872400, -162.4662592002019000 60.2334399721770500, -162.4640577416714000 60.2330138625997600, -162.4618958146401200 60.2325403695424500, -162.4597775416002300 60.2320203968238840, -162.4577069632057700 60.2314549354969100, -162.4556880247825000 60.2308450647479960, -162.4537245763281000 60.2301919482998200, -162.4518194731901000 60.2294997635033300, -162.4510346465317000 60.2292659460666200, -162.4490828101235700 60.2286172246052700, -162.4471862406524600 60.2279423022954460, -162.4466994987828000 60.2278567192123000, -162.4451310856310600 60.2274998376474300, -162.4435863606220200 60.2271182687931060, -162.4426128400105300 60.2268680881917900, -162.4403772459131400 60.2262599549330300, -162.4383586267492000 60.2256500841841100, -162.4363954885609200 60.2249969668366100, -162.4344915725280300 60.2243018493509200, -162.4326505056163200 60.2235660582270500, -162.4314883180314300 60.2230662608992600, -162.4303551479716800 60.2225502496943360, -162.4297738801604000 60.2222700533203600, -162.4290372994318000 60.2220249772709600, -162.4271335551694000 60.2213298597852700, -162.4252926546322700 60.2205940677620800, -162.4237064187162200 60.2199045413615300, -162.4221753831873500 60.2191848130287300, -162.4160922573517800 60.2162110841742300, -162.4142729351478000 60.2152775276358600, -162.4125464229790000 60.2143013333399040, -162.4110698324068000 60.2133846696668200, -162.4096750837381000 60.2124368148072300, -162.4083648290735800 60.2114595754990800, -162.4071415586360000 60.2104548142383460, -162.4061655648888800 60.2095745758060700, -162.4052563332131700 60.2086768122850900, -162.4050009059670000 60.2084032484112300, -162.4048602942671400 60.2082668779141300, -162.4038715984954400 60.2073684506934800, -162.4028291592382800 60.2063144389602500, -162.4018801523471300 60.2052387922365140, -162.4010263764660600 60.2041435609766040, -162.4002694476768300 60.2030308307083150))))', 'repairs': [{'report': 'Unconnected shapes: Convex-halled each INDIVIDUAL shape to merge them together.', 'type': 'CONVEX_HULL_INDIVIDUAL'}, {'report': 'Reversed polygon winding order', 'type': 'REVERSE'}], 'wkt': {'unwrapped': 'POLYGON ((-151.7783878654076000 59.9999999998002000, -149.9999999996003000 59.9999999998002000, -149.9999999996003000 60.9552532383463000, -150.1875822324497000 61.0141693051540600, -149.9999999996003000 61.0952733911541400, -149.9999999996003000 70.5033374600557700, -150.0660644351982900 70.5140561044140700, -150.0645016160567000 70.5147165054623900, -150.0626194825031000 70.5155880897186200, -150.0608430022028000 70.5164840599914600, -150.0591750197113000 70.5174029872581000, -150.0574807635264000 70.5184308844777700, -150.0559222914805000 70.5194824545516800, -150.0545025866250000 70.5205557000855400, -150.0532243694091000 70.5216485814169700, -150.0520900922839000 70.5227590211120000, -150.0511019352061000 70.5238849075624900, -150.0502618011412000 70.5250241003819800, -150.0495713142647000 70.5261744331036800, -150.0490932310677000 70.5271829148596800, -150.0487302152272000 70.5281967250988400, -150.0484828054371000 70.5292144006241400, -150.0483513767146000 70.5302344755406800, -150.0481756608780000 70.5326794003341300, -150.0481525743818000 70.5332881631183000, -150.0482246496478000 70.5344610886084000, -150.0484500890004000 70.5356318494303900, -150.0488284895431000 70.5367982161648100, -150.0493591569995000 70.5379579665869300, -150.0568034804962000 70.5521519457557200, -150.0574859040512000 70.5533028702313300, -150.0583184415428000 70.5544427780118300, -150.0592995317480000 70.5555694972345600, -150.0604273301571000 70.5566808803184200, -150.0616997107730000 70.5577748084606900, -150.0631142706071000 70.5588491970328800, -150.0646683359749000 70.5599019982786300, -150.0663589651941000 70.5609312031126000, -150.0788051389460000 70.5684031861581500, -150.0806297995256000 70.5694068322595700, -150.0825844085436000 70.5703830049717500, -150.0846652544979000 70.5713298426981600, -150.0868683866667000 70.5722455387007100, -150.0888799470519000 70.5730149905494400, -150.0909778864203000 70.5737584717761000, -150.0947277167107000 70.5750376557632500, -150.0975786134622000 70.5759632470063100, -150.1005633617097000 70.5768409079815900, -150.1033108571103000 70.5775759814464400, -150.1061522840007000 70.5782704298365500, -150.1090822239654000 70.5789229266517900, -150.1167457032516000 70.5805619221949900, -150.1197588143178000 70.5811712209751400, -150.1228491096986000 70.5817361588966600, -150.1260106934387000 70.5822556558739000, -150.1292375310872000 70.5827287190551800, -150.1325234622879000 70.5831544464206200, -150.1399112840785000 70.5840154438577100, -150.1432501754552000 70.5843930206214600, -150.1466355105204000 70.5847217255272900, -150.1500608222491000 70.5850009308483100, -150.1535195662749000 70.5852301023873600, -150.1570051352788000 70.5854088030738500, -150.1605108679821000 70.5855366911654300, -150.1640300644359000 70.5856135211471400, -150.1675559995097000 70.5856391482281500, -150.1689114684895000 70.5856353620823700, -150.1739181184264000 70.5856073257175500, -150.1771022814451000 70.5855685307631100, -150.1802793524102000 70.5854879676956000, -150.1834443751578000 70.5853657615207300, -150.2031776727114000 70.5845434322336600, -150.2065638351528000 70.5843691049502700, -150.2100224325892000 70.5841399334112800, -150.2134475977284000 70.5838607280902000, -150.2168327889021000 70.5835320231843800, -150.2201715372866000 70.5831544464206200, -150.2234574684873000 70.5827287190551800, -150.2266843061358000 70.5822556558739000, -150.2317109911693000 70.5814776577677200, -150.2348724535009000 70.5809581607905400, -150.2379626301712000 70.5803932237683400, -150.2409756243256000 70.5797839240888700, -150.2439056892961000 70.5791314272735800, -150.2467472366956000 70.5784369797828500, -150.2494948499074000 70.5777019054186800, -150.2513165607107000 70.5771766914512000, -150.2530902917835000 70.5766336106526600, -150.2548144639163000 70.5760731495562400, -150.2564875428658000 70.5754958081850500, -150.2577373846725000 70.5750514054980200, -150.2592381598132000 70.5745027614933000, -150.2606928006322000 70.5739405341283800, -150.2628961162627000 70.5730248381258300, -150.2649771375848000 70.5720780012987900, -150.2669319093801000 70.5711018285865600, -150.2687567228444000 70.5700981824852000, -150.2704481164874000 70.5690689785506000, -150.2720028842257000 70.5680161782041200, -150.2744408527631000 70.5663491813696700, -150.2758559360026000 70.5652747936968000, -150.2771287860646000 70.5641808655545300, -150.2782570008599000 70.5630694833700400, -150.2792384525925000 70.5619427650466400, -150.2800712976522000 70.5608028581654000, -150.2807539721181000 70.5596519345891700, -150.2812852025500000 70.5584921859656900, -150.2816640032911000 70.5573258219291700, -150.2818896782660000 70.5561550638051900, -150.2819618263771000 70.5549821410130600, -150.2819559277239000 70.5546908218240100, -150.2819244946197000 70.5538298351788200, -150.2818167711271000 70.5527300641412000, -150.2815741124553000 70.5516326808036000, -150.2811969457824000 70.5505395242796600, -150.2806859240162000 70.5494524228910800, -150.2803030557641400 70.5488153142804600, -152.2247355710897000 70.8642903565148000, -152.2329136001825000 70.8656158456947800, -152.3778478734805000 70.8872547841809800, -152.3811241855327000 70.8877278419664100, -152.4411390087582000 70.8960608179524500, -156.4277438075307000 71.4119203567391300, -156.4311706588988000 71.4123460706147200, -156.4463071671420000 71.4140130665498400, -156.4497894140502000 71.4143906316223800, -156.4533201074370000 71.4147193275350100, -156.4568925023870000 71.4149985247621500, -156.4604997730461000 71.4152276900059600, -156.4641350252112000 71.4154063861958000, -156.4677913098211000 71.4155342706901000, -156.4714616409420000 71.4156110988731700, -156.4751390002646000 71.4156367250548700, -156.4758753534648000 71.4156356980291200, -156.4858332191277000 71.4156076580670200, -156.4893224016075000 71.4155746610418300, -156.4928042860889000 71.4154955638692300, -156.4962728776911000 71.4153705014475100, -156.4997222058151000 71.4151996896140400, -156.5033294710782000 71.4149705243702300, -156.5069018615316000 71.4146913271430900, -156.5104325495225000 71.4143626312305200, -156.5139147919341000 71.4139850661579200, -156.5173419346825000 71.4135593522823300, -156.5207074334013000 71.4130863025908400, -156.5240048624344000 71.4125668236000600, -156.5272279265276000 71.4120019045643000, -159.6009351539342000 70.8411704900261700, -159.6610223087325000 70.8295595220543500, -159.6640729170315000 70.8289502304688200, -161.9254664469190000 70.3530905604810600, -161.9283640589541000 70.3524380564711600, -161.9311741381759000 70.3517435999872300, -161.9338913273229000 70.3510085175291200, -162.0813699472652000 70.3093136299201500, -162.0988024606650000 70.3043136430602500, -162.1188149014865000 70.2984806591551300, -162.3211407214671000 70.2393138192774100, -162.3234654833454000 70.2386261122054000, -162.3257093754873000 70.2379083380993700, -162.3470150683907000 70.2308187602776000, -162.3732134626312000 70.2220878064072200, -162.4044643749309000 70.2116611511412400, -162.4070983920771000 70.2107385843182800, -162.4095992340174000 70.2097744445350700, -162.4296577713890000 70.2014684652974700, -162.4318213405824000 70.2005527477111900, -162.4338648295982000 70.1996058857031400, -162.5335486088812000 70.1520789980473900, -162.5436998656562000 70.1470510098962400, -165.0000000001998000 68.9097889226207500, -165.0000000001998000 60.3178730005386100, -164.4271618708237000 60.0562815186772200, -164.4253944781726000 60.0555073876558900, -164.3769557678943000 60.0347573264894500, -164.3751237544577000 60.0340224499761300, -164.3732294953449000 60.0333282273159100, -164.3712765941395000 60.0326759778141600, -164.3692687641421000 60.0320669398374800, -164.3671313355427000 60.0314818867797200, -164.3649432472330000 60.0309458036060200, -164.3594184591945000 60.0296687438175200, -164.2282721319533000 59.9999999998002000, -152.5332118075788000 59.9999999998002000, -151.6082737654653800 60.3999112993556200, -151.7733764274801000 60.0166506255259800, -151.7738324350188000 60.0154982000819400, -151.7772041129794000 60.0046652122298400, -151.7775591293503000 60.0035039230676300, -151.7781361523615000 60.0011167365482300, -151.7783784396133000 60.0000626573657900, -151.7783878654076000 59.9999999998002000))', 'wrapped': 'POLYGON ((-151.7783878654076000 59.9999999998002000, -149.9999999996003000 59.9999999998002000, -149.9999999996003000 60.9552532383463000, -150.1875822324497000 61.0141693051540600, -149.9999999996003000 61.0952733911541400, -149.9999999996003000 70.5033374600557700, -150.0660644351982900 70.5140561044140700, -150.0645016160567000 70.5147165054623900, -150.0626194825031000 70.5155880897186200, -150.0608430022028000 70.5164840599914600, -150.0591750197113000 70.5174029872581000, -150.0574807635264000 70.5184308844777700, -150.0559222914805000 70.5194824545516800, -150.0545025866250000 70.5205557000855400, -150.0532243694091000 70.5216485814169700, -150.0520900922839000 70.5227590211120000, -150.0511019352061000 70.5238849075624900, -150.0502618011412000 70.5250241003819800, -150.0495713142647000 70.5261744331036800, -150.0490932310677000 70.5271829148596800, -150.0487302152272000 70.5281967250988400, -150.0484828054371000 70.5292144006241400, -150.0483513767146000 70.5302344755406800, -150.0481756608780000 70.5326794003341300, -150.0481525743818000 70.5332881631183000, -150.0482246496478000 70.5344610886084000, -150.0484500890004000 70.5356318494303900, -150.0488284895431000 70.5367982161648100, -150.0493591569995000 70.5379579665869300, -150.0568034804962000 70.5521519457557200, -150.0574859040512000 70.5533028702313300, -150.0583184415428000 70.5544427780118300, -150.0592995317480000 70.5555694972345600, -150.0604273301571000 70.5566808803184200, -150.0616997107730000 70.5577748084606900, -150.0631142706071000 70.5588491970328800, -150.0646683359749000 70.5599019982786300, -150.0663589651941000 70.5609312031126000, -150.0788051389460000 70.5684031861581500, -150.0806297995256000 70.5694068322595700, -150.0825844085436000 70.5703830049717500, -150.0846652544979000 70.5713298426981600, -150.0868683866667000 70.5722455387007100, -150.0888799470519000 70.5730149905494400, -150.0909778864203000 70.5737584717761000, -150.0947277167107000 70.5750376557632500, -150.0975786134622000 70.5759632470063100, -150.1005633617097000 70.5768409079815900, -150.1033108571103000 70.5775759814464400, -150.1061522840007000 70.5782704298365500, -150.1090822239654000 70.5789229266517900, -150.1167457032516000 70.5805619221949900, -150.1197588143178000 70.5811712209751400, -150.1228491096986000 70.5817361588966600, -150.1260106934387000 70.5822556558739000, -150.1292375310872000 70.5827287190551800, -150.1325234622879000 70.5831544464206200, -150.1399112840785000 70.5840154438577100, -150.1432501754552000 70.5843930206214600, -150.1466355105204000 70.5847217255272900, -150.1500608222491000 70.5850009308483100, -150.1535195662749000 70.5852301023873600, -150.1570051352788000 70.5854088030738500, -150.1605108679821000 70.5855366911654300, -150.1640300644359000 70.5856135211471400, -150.1675559995097000 70.5856391482281500, -150.1689114684895000 70.5856353620823700, -150.1739181184264000 70.5856073257175500, -150.1771022814451000 70.5855685307631100, -150.1802793524102000 70.5854879676956000, -150.1834443751578000 70.5853657615207300, -150.2031776727114000 70.5845434322336600, -150.2065638351528000 70.5843691049502700, -150.2100224325892000 70.5841399334112800, -150.2134475977284000 70.5838607280902000, -150.2168327889021000 70.5835320231843800, -150.2201715372866000 70.5831544464206200, -150.2234574684873000 70.5827287190551800, -150.2266843061358000 70.5822556558739000, -150.2317109911693000 70.5814776577677200, -150.2348724535009000 70.5809581607905400, -150.2379626301712000 70.5803932237683400, -150.2409756243256000 70.5797839240888700, -150.2439056892961000 70.5791314272735800, -150.2467472366956000 70.5784369797828500, -150.2494948499074000 70.5777019054186800, -150.2513165607107000 70.5771766914512000, -150.2530902917835000 70.5766336106526600, -150.2548144639163000 70.5760731495562400, -150.2564875428658000 70.5754958081850500, -150.2577373846725000 70.5750514054980200, -150.2592381598132000 70.5745027614933000, -150.2606928006322000 70.5739405341283800, -150.2628961162627000 70.5730248381258300, -150.2649771375848000 70.5720780012987900, -150.2669319093801000 70.5711018285865600, -150.2687567228444000 70.5700981824852000, -150.2704481164874000 70.5690689785506000, -150.2720028842257000 70.5680161782041200, -150.2744408527631000 70.5663491813696700, -150.2758559360026000 70.5652747936968000, -150.2771287860646000 70.5641808655545300, -150.2782570008599000 70.5630694833700400, -150.2792384525925000 70.5619427650466400, -150.2800712976522000 70.5608028581654000, -150.2807539721181000 70.5596519345891700, -150.2812852025500000 70.5584921859656900, -150.2816640032911000 70.5573258219291700, -150.2818896782660000 70.5561550638051900, -150.2819618263771000 70.5549821410130600, -150.2819559277239000 70.5546908218240100, -150.2819244946197000 70.5538298351788200, -150.2818167711271000 70.5527300641412000, -150.2815741124553000 70.5516326808036000, -150.2811969457824000 70.5505395242796600, -150.2806859240162000 70.5494524228910800, -150.2803030557641400 70.5488153142804600, -152.2247355710897000 70.8642903565148000, -152.2329136001825000 70.8656158456947800, -152.3778478734805000 70.8872547841809800, -152.3811241855327000 70.8877278419664100, -152.4411390087582000 70.8960608179524500, -156.4277438075307000 71.4119203567391300, -156.4311706588988000 71.4123460706147200, -156.4463071671420000 71.4140130665498400, -156.4497894140502000 71.4143906316223800, -156.4533201074370000 71.4147193275350100, -156.4568925023870000 71.4149985247621500, -156.4604997730461000 71.4152276900059600, -156.4641350252112000 71.4154063861958000, -156.4677913098211000 71.4155342706901000, -156.4714616409420000 71.4156110988731700, -156.4751390002646000 71.4156367250548700, -156.4758753534648000 71.4156356980291200, -156.4858332191277000 71.4156076580670200, -156.4893224016075000 71.4155746610418300, -156.4928042860889000 71.4154955638692300, -156.4962728776911000 71.4153705014475100, -156.4997222058151000 71.4151996896140400, -156.5033294710782000 71.4149705243702300, -156.5069018615316000 71.4146913271430900, -156.5104325495225000 71.4143626312305200, -156.5139147919341000 71.4139850661579200, -156.5173419346825000 71.4135593522823300, -156.5207074334013000 71.4130863025908400, -156.5240048624344000 71.4125668236000600, -156.5272279265276000 71.4120019045643000, -159.6009351539342000 70.8411704900261700, -159.6610223087325000 70.8295595220543500, -159.6640729170315000 70.8289502304688200, -161.9254664469190000 70.3530905604810600, -161.9283640589541000 70.3524380564711600, -161.9311741381759000 70.3517435999872300, -161.9338913273229000 70.3510085175291200, -162.0813699472652000 70.3093136299201500, -162.0988024606650000 70.3043136430602500, -162.1188149014865000 70.2984806591551300, -162.3211407214671000 70.2393138192774100, -162.3234654833454000 70.2386261122054000, -162.3257093754873000 70.2379083380993700, -162.3470150683907000 70.2308187602776000, -162.3732134626312000 70.2220878064072200, -162.4044643749309000 70.2116611511412400, -162.4070983920771000 70.2107385843182800, -162.4095992340174000 70.2097744445350700, -162.4296577713890000 70.2014684652974700, -162.4318213405824000 70.2005527477111900, -162.4338648295982000 70.1996058857031400, -162.5335486088812000 70.1520789980473900, -162.5436998656562000 70.1470510098962400, -165.0000000001998000 68.9097889226207500, -165.0000000001998000 60.3178730005386100, -164.4271618708237000 60.0562815186772200, -164.4253944781726000 60.0555073876558900, -164.3769557678943000 60.0347573264894500, -164.3751237544577000 60.0340224499761300, -164.3732294953449000 60.0333282273159100, -164.3712765941395000 60.0326759778141600, -164.3692687641421000 60.0320669398374800, -164.3671313355427000 60.0314818867797200, -164.3649432472330000 60.0309458036060200, -164.3594184591945000 60.0296687438175200, -164.2282721319533000 59.9999999998002000, -152.5332118075788000 59.9999999998002000, -151.6082737654653800 60.3999112993556200, -151.7733764274801000 60.0166506255259800, -151.7738324350188000 60.0154982000819400, -151.7772041129794000 60.0046652122298400, -151.7775591293503000 60.0035039230676300, -151.7781361523615000 60.0011167365482300, -151.7783784396133000 60.0000626573657900, -151.7783878654076000 59.9999999998002000))" + +# FILE large example: +- FILE returns multiple errors, along with a parsed wkt: + file wkt: + - kmls_invalid/Blowup.kml + - kmls_invalid/BillionLaughs.kml + - geojsons_valid/Basic_FC_GC_1.geojson + parsed wkt: POLYGON ((59.9414062499999900 50.6529433672570900, 42.9876543210000000 -42.1234567890000000, -22.2222222222222000 222.2220000000000000, 59.9414062499999900 50.6529433672570900)) + errors: + - "Could not parse kml: DTDForbidden(name='bomb', system_id=None, public_id=None) (Cannot load file: 'Blowup.kml')" + - "Could not parse kml: DTDForbidden(name='xmlbomb', system_id=None, public_id=None) (Cannot load file: 'BillionLaughs.kml')" diff --git a/tests/yml_tests/test_baseline_manager.py b/tests/yml_tests/test_baseline_manager.py new file mode 100644 index 0000000..45b6400 --- /dev/null +++ b/tests/yml_tests/test_baseline_manager.py @@ -0,0 +1,284 @@ +import logging +import requests, urllib # For talking w/ API +import json, csv # File stuff +import re # Opening/Reading the file stuff +from io import StringIO # Opening/Reading the file stuff +from copy import deepcopy # For making duplicate dicts + +from SearchAPI.application.asf_opts import string_to_obj_map +import asf_search + +class test_baseline(): + def __init__(self, **args): + + test_info = args["test_info"] + api_info = args["config"].getoption("--api") + test_api = api_info["this_api"] + + + url_parts = [test_api, args["test_type_vars"]["endpoint"]+"?"] + full_url = '/'.join(s.strip('/') for s in url_parts) # If both/neither have '/' between them, this still joins them correctly + + # If the test itself stated the maturity, it's testing it: + if "use_maturity" in test_info: + use_cmr_maturity = test_info["use_maturity"] + # If the CLI option is declared, override everything else to it: + elif args["config"].getoption("--flex") is not None: + use_cmr_maturity = args["config"].getoption("--flex") + # Default use it, if you're not running against a prod api: + else: + use_cmr_maturity = api_info["flexible_maturity"] + + # Get the url string and (bool)if assert was used: + keywords, assert_used = self.getKeywords(test_info) + if use_cmr_maturity: + keywords.append("maturity=" + args["test_type_vars"]["maturity"]) + self.query = full_url + "&".join(keywords) + # I replace '{0}' with itself, so that you can format that in later, and everything else is populated already: + self.error_msg = "Reason: {0}\n - URL: '{1}'".format("{0}",self.query) + + # Figure out if you should print stuff: + if "print" not in test_info: + test_info["print"] = not assert_used + + status_code, content_type, file_content = self.runQuery() + + if test_info["print"]: + print() + print("Test: " + str(test_info["title"])) + print("API code returned: " + str(status_code)) + print("API file type returned: " + str(content_type)) + print("URL: " + str(self.query)) + print() + + if assert_used: + self.runAssertTests(test_info, status_code, content_type, file_content) + + + + def getKeywords(self, test_info): + # DONT add these to url. (Used for tester). Add ALL others to allow testing keywords that don't exist + reserved_keywords = ["title", "print", "skip_file_check", "maturity", "use_maturity"] + asserts_keywords = ["expected file","expected code"] + + assert_used = 0 != len([k for k,_ in test_info.items() if k in asserts_keywords]) + keywords = [] + for key,val in test_info.items(): + # If it's reserved, move on: + if key in reserved_keywords or key in asserts_keywords: + continue + # IF val is None, just add the key. Else add "key=val" + if val == None: + keywords.append(str(key)) + # If you're testing multiple SAME params, add each key-val pair: + elif isinstance(val, type([])): + keywords.append(str(key)+"="+",".join(val)) + else: + keywords.append(str(key)+"="+str(val)) + return keywords, assert_used + + def runQuery(self): + def countToDict(html): + try: + count = int(html.rstrip()) + except ValueError: + assert False, self.error_msg.format("API returned html that was not a count. (Error page?) HTML Page: \n{0}\n".format(file_content)) + return { "count": count } + + def csvToDict(file_content): + file_content = csv.reader(StringIO(file_content), delimiter=',') + file_content = [a for a in file_content] + # Rotate it counter-clockwise, so that row[0] == key of csv. (based on https://stackoverflow.com/questions/8421337/rotating-a-two-dimensional-array-in-python) + rotated_content = list(map(type([]), zip(*file_content))) + file_content = {} + for column in rotated_content: + file_content[column[0]] = column[1:] + file_content["count"] = len(file_content["Platform"]) + return file_content + + def downloadToDict(bulk_download_file): + # Grab everything in the self.files field of the download script: + files = re.search(r'self.files\s*=\s*\[.*?\]', bulk_download_file, re.DOTALL) + if files == None: + assert False, "Problem reading download script! URL: {0}. File: {1}.".format(self.query, bulk_download_file) + # Parse out each file-names, and make each one a str in a list: + files = re.findall('"(.*?)"', files.group(0)) + # add the fields and return: + file_content = {} + file_content["count"] = len(files) + file_content["files"] = files + return file_content + + def jsonToDict(json_data): + # Combine all matching key-value pairs, to-> key: [list of vals] + file_content = {} + count = 0 + for result in json_data: + count += 1 + for key,val in result.items(): + # Break apart nested lists if needed, (alows to forloop val): + val = [val] if not isinstance(val, type([])) else val + if key in file_content: + for inner_val in val: + file_content[key].append(inner_val) + else: + file_content[key] = [] + for inner_val in val: + file_content[key].append(inner_val) + file_content["count"] = count + return file_content + + h = requests.head(self.query) + content_header = h.headers.get('content-type') + file_content = requests.get(self.query).content.decode("utf-8") + + # text/csv; charset=utf-8 + try: + content_type = content_header.split('/')[1] + except AttributeError: + assert False, self.error_msg.format("Header is not formatted as expected. Header: {0}. File Content: \n{1}\n".format(content_header, file_content)) + # Take out the "csv; charset=utf-8", without crahsing on things without charset + content_type = content_type.split(';')[0] if ';' in content_type else content_type + logging.warning(content_header) + ## COUNT / HTML: + if content_type == "html": + # They return a number in the html. Convert to a real int: + file_content = countToDict(file_content) + if file_content["count"] == 0: + content_type = "blank count" + else: + content_type = "count" + ## CSV + elif content_type == "csv": + file_content = csvToDict(file_content) + if file_content["count"] == 0: + content_type = "blank csv" + ## DOWNLOAD / PLAIN + elif content_type == "plain": + file_content = downloadToDict(file_content) + # how many granules are in the script: + if file_content["count"] == 0: + content_type = "blank download" + else: + content_type = "download" + ## GEOJSON + elif content_type == "geo+json": + content_type = "geojson" + if file_content == '{\n "features": [],\n "type": "FeatureCollection"\n}': + content_type = "empty geojson" + + ## JSON / JSONLITE / ERROR + elif content_type == "json": + file_content = json.loads(file_content) + ## ERROR + if "error" in file_content: + content_type = "error json" + ## JSONLITE + elif "results" in file_content: + file_content = file_content["results"] + if len(file_content) == 0: + content_type = "blank jsonlite" + else: + content_type = "jsonlite" + file_content = jsonToDict(file_content) + ## JSON + else: + json_data = file_content[0] + if json_data == []: + content_type = "blank json" + else: + # dictonary-ify file_content to expected format: + file_content = jsonToDict(json_data) + + ## KML + elif content_type == "vnd.google-earth.kml+xml": + content_type = "kml" + blank_kml = '\n\n\nASF Datapool Search Results\nSearch Performed: \n\n\n'.replace(" ", "") + if file_content.replace(" ", "") == blank_kml: + content_type = "blank kml" + ## METALINK + elif content_type == "metalink+xml": + content_type = "metalink" + blank_metalink = '\n\nAlaska Satellite Facilityhttp://www.asf.alaska.edu/\n\n\n'.replace(" ","") + if file_content.replace(" ","") == blank_metalink: + content_type = "blank metalink" + return h.status_code, content_type, file_content + + def runAssertTests(self, test_info, status_code, content_type, file_content): + if "expected code" in test_info: + assert test_info["expected code"] == status_code, self.error_msg.format("Status codes is different than expected.") + if "expected file" in test_info: + assert test_info["expected file"] == content_type, self.error_msg.format("Different file type returned than expected.") + # If the tester added the override, don't check its contents: + if "skip_file_check" in test_info and test_info["skip_file_check"] == True: + return + # If it's not a valid file, don't check its contents: + if not isinstance(file_content, type({})) or content_type[0:5] in ["error", "blank"]: + return + ### BEGIN TESTING FILE CONTENTS: + test_info = self.parseTestValues(test_info) + file_content = self.renameKeysToStandard(file_content) + # print(json.dumps(test_info, indent=4, default=str)) + # IF used in url, IF contained in file's content, check if they match + + def checkFileContainsExpected(key, test_info, file_dict): + # print(test_info) + # print("CHECKING FILE HERE") + # print(file_dict) + # print(json.dumps(file_dict, indent=4, default=str)) + if key in test_info and key in file_dict: + found_in_list = False + for found_param in file_dict[key]: + # poss_list is either single "i", or range "[i,j]": + for poss_list in test_info[key]: + # If it's a list, then it is a range of numbers: + if isinstance(poss_list, type([])): + expect_type = type(poss_list[0]) + # "found_param" is always a string. Convert it to match + if expect_type(found_param) >= poss_list[0] and expect_type(found_param) <= poss_list[1]: + found_in_list = True + break + # This part gets hit for single numbers, and strings. (ie "Platform"): + else: + expect_type = type(poss_list) + if expect_type(found_param) == poss_list: + found_in_list = True + break + # If inner for-loop found it, break out of this one too: + if found_in_list == True: + break + assert found_in_list, self.error_msg.format(key + " declared, but not found in file.") + + checkFileContainsExpected("processinglevel", test_info, file_content) + + def parseTestValues(self, test_info): + # Turn string values to lists: + mutatable_dict = deepcopy(test_info) + try: + # Dictionary changes sizes, so check one dict, and make thechanges to other + for key, val in test_info.items(): + # The Input.parse* methods all expect a string. API automatically decodes it too: + val = urllib.parse.unquote_plus(str(val)) + if key.lower() == "processinglevel": + del mutatable_dict[key] + mutatable_dict["processinglevel"] = string_to_obj_map[asf_search.validators.parse_date_range](val) + + except ValueError as e: + assert False, "Test: '{0}'. Incorrect parameter: {1}. URL: {2}.".format(test_info["title"], str(e), self.query) + + # If skip_file_check not declared, default to False: + if "skip_file_check" not in mutatable_dict: + mutatable_dict["skip_file_check"] = False + test_info = mutatable_dict + # Make each possible value line up with what the files returns: + test_info = self.renameKeysToStandard(test_info) + return test_info + + def renameKeysToStandard(self, json_dict): + ### processingLevel: + for key in ["Processing Level", "processingLevel"]: + if key in json_dict: + json_dict["processinglevel"] = json_dict.pop(key) + return json_dict + + diff --git a/tests/yml_tests/test_dateParser_manager.py b/tests/yml_tests/test_dateParser_manager.py new file mode 100644 index 0000000..047c165 --- /dev/null +++ b/tests/yml_tests/test_dateParser_manager.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import datetime + +class test_date_parser(): + def __init__(self, **args): + self.error_msg = "Reason: {0}" + test_info = args["test_info"] + test_api = args["config"].getoption("--api")["this_api"] + + + url_parts = [test_api, args["test_type_vars"]["endpoint"]] + self.full_url = '/'.join(s.strip('/') for s in url_parts) # If both/neither have '/' between them, this still joins them correctly + if "date" in test_info: + self.full_url += "?date=" + test_info["date"] + self.error_msg += "\n - URL: '{0}'.".format(self.full_url) + + self.test_info = test_info + + (status_code, content_type, content) = self.makeRequest() + self.applyDefaultValues() + self.runAssertTests(status_code, content_type, content) + + def makeRequest(self): + r = requests.get(self.full_url) + h = requests.head(self.full_url) + content = r.content.decode("utf-8") + content_header = h.headers.get('content-type') + try: + content_type = content_header.split("/")[1] + except AttributeError: + assert False, self.error_msg.format("Header is not formatted as expected. Header: {0}.\nFile Content (First 500 char): \n{1}\n".format(content_header, content[:500])) + + + if content_type == "json": + try: + content = json.loads(content) + except json.decoder.JSONDecodeError: + assert False, self.error_msg.format("API did not return a json, but content_type said it did.\nReturned content (First 500 char): \n{0}\n".format(content[:500])) + if "errors" in content: + content_type = "error json" + return r.status_code, content_type, content + + def applyDefaultValues(self): + if "expected date" in self.test_info: + if "expected file" not in self.test_info: + self.test_info["expected file"] = "json" + if "expected code" not in self.test_info: + self.test_info["expected code"] = 200 + if "expected error" in self.test_info: + if "expected file" not in self.test_info: + self.test_info["expected file"] = "error json" + if "expected code" not in self.test_info: + self.test_info["expected code"] = 200 + + def runAssertTests(self, status_code, content_type, content): + if content_type == "html" or status_code >= 500: + assert False, self.error_msg.format("API returned error page. \nHTML (First 500 char):\n{0}\n".format(content[:500])) + if "expected error" in self.test_info: + if "error" in content: + assert self.test_info["expected error"].lower() in str(content).lower(), self.error_msg.format("API returned a different error than expected.") + else: + assert False, self.error_msg.format("API parsed value when validation error expected.") + if "expected date" in self.test_info: + if "date" in content: + try: + datetime.strptime(content["date"]["parsed"], "%Y-%m-%dT%H:%M:%SZ") + except (ValueError, TypeError) as e: + assert False, self.error_msg.format("API did not return a date. Error Message: '{0}'.\n - API Returned: {1}.\n".format(str(e), content)) + else: + assert False, self.error_msg.format("API did not return a date. Returned (First 500 char):\n{0}\n".format(content[:500])) + if "expected code" in self.test_info: + assert self.test_info["expected code"] == status_code, self.error_msg.format("API returned different error code than expected. Code returned: {0}, Expected: {1}.".format(status_code, self.test_info["expected code"])) diff --git a/tests/yml_tests/test_known_bugs.yml b/tests/yml_tests/test_known_bugs.yml new file mode 100644 index 0000000..a824c04 --- /dev/null +++ b/tests/yml_tests/test_known_bugs.yml @@ -0,0 +1,92 @@ + +## This file contains test cases with known bugs. Bug is listed above each group. These will fail if run, and will block the AWS pipeline + +tests: +#DS-2766 / DS-3194 open bug for absoluteOrbit - GRFN scenes search correct range, but file returns different value for absoluteOrbit +#Note: This will fail on prod only, due to GRFN data differences in api-test +#Note: This is because OrbitCalculatedSpatialDomains has 2 OrbitNumber fields for GRFN products. This can be ignored +- absoluteOrbit range: + absoluteOrbit: 5000-6000 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +#WEB2-1956 open bug for asfframe - for R1, frame in file will not match frame in query +#tests that will fail: asfframe R1 single, asfframe R1 list, asfframe R1 range +# Need to grab FRAME_NUMBER instead of ESA_FRAME for radatasat products to pass these 3 asfframe tests +- asfframe R1 single: + asfframe: 307 + platform: R1 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- asfframe R1 list: + asfframe: 304,305,306,307 + platform: R1 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +- asfframe R1 range: + asfframe: 300-310 + platform: R1 + maxresults: 10 + output: csv + + expected file: csv + expected code: 200 + +#DS-1945 open bug for this +# this is still an issue (FARADAY_ROTATION is labeled as a string type which makes searching via float ranges impossible) +# https://cmr.earthdata.nasa.gov/search/collections.umm_json?attribute[]=FARADAY_ROTATION +- maxFaradayRotation: + maxFaradayRotation: 3 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- minFaradayRotation: + minFaradayRotation: 3 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +- min and max FaradayRotation: + minFaradayRotation: 2 + maxFaradayRotation: 3 + maxResults: 10 + output: csv + + expected file: csv + expected code: 200 + +# Failes on AWS, but not locally. Happens around 10-11am AK time at +# least, (Maybe longer?). Maybe a timezone conversion bug in test manager? +- start now end yesterday reversed: + start: now + end: yesterday + output: csv + maxResults: 10 + + expected file: csv + expected code: 200 + +# tests: +# - Known bug - Inject urls: +# account: FullAccess +# inject_output: HACKED +# products: http://IHopeThisURLDoesntExist.com/rando1.png%22%20]%0A%20%20%20%20%20%20%20%20print(%22HACKED%22)%0A%20%20%20%20%20%20%20%20[%20%221 +# expected_outcome: success +# skip_file_check: True +# # print: True \ No newline at end of file diff --git a/tests/yml_tests/test_missionList_manager.py b/tests/yml_tests/test_missionList_manager.py new file mode 100644 index 0000000..8a1b5e9 --- /dev/null +++ b/tests/yml_tests/test_missionList_manager.py @@ -0,0 +1,32 @@ +import requests +import json + +class test_mission_list(): + def __init__(self, **args): + self.test_info = args["test_info"] + test_api = args["config"].getoption("--api")["this_api"] + + # Craft the url, combining api's and entrypoint to test against: + url_parts = [ test_api, args["test_type_vars"]["endpoint"], ] + self.full_url = '/'.join(s.strip('/') for s in url_parts) # If both/neither have '/' between them, this still joins them correctly + if "platform" in self.test_info: + self.full_url += "?platform=" + self.test_info["platform"] + + response_json = self.makeRequest() + + self.runAssertTests(response_json) + + def makeRequest(self): + r = requests.get(self.full_url) + assert r.status_code == 200, "API returned code: {0}. Test: {1}. URL: {2}.".format(r.status_code, self.test_info["title"], self.full_url) + content = r.content.decode("utf-8") + try: + json_content = json.loads(content) + except json.JSONDecodeError as e: + assert False, "API did not return JSON. Test: {0} URL: {1}. Error: '{2}'\nReturned:\n{3}\n".format(self.test_info["title"], self.full_url, str(e), content) + return json_content + + def runAssertTests(self, response_json): + assert "result" in response_json, "'result' key not found in JSON. Test: {0} URL: {1}.\nReturned:\n{2}\n".format(self.test_info["title"], self.full_url, response_json) + if "misson_list_size_min" in self.test_info: + assert int(self.test_info["misson_list_size_min"]) <= len(response_json["result"]), "Too few results returned. Test: {0} URL: {1}.".format(self.test_info["title"], self.full_url) diff --git a/tests/yml_tests/test_run_on_prod_only.yml b/tests/yml_tests/test_run_on_prod_only.yml new file mode 100644 index 0000000..d073146 --- /dev/null +++ b/tests/yml_tests/test_run_on_prod_only.yml @@ -0,0 +1,21 @@ + +#This file contains test cases that are known failures on api-test. These will fail if run, and will block the AWS pipeline. +#Run this file on api-prod & api-prod-private ONLY + +tests: +- Use maturity param on api-prod: + reference: S1B_IW_SLC__1SDV_20190610T143518_20190610T143545_016635_01F4F7_6EA1 + use_maturity: True + output: csv + + expected file: error json + expected code: 400 + +- Maturity param on search endpoint api-prod: + platform: SA,SB + maxResults: 100 + output: csv + use_maturity: True + + expected file: error json + expected code: 400 diff --git a/tests/yml_tests/test_url_manager.py b/tests/yml_tests/test_url_manager.py new file mode 100644 index 0000000..4465bbd --- /dev/null +++ b/tests/yml_tests/test_url_manager.py @@ -0,0 +1,739 @@ +import ast +import requests, urllib # For talking w/ API +import json, csv # File stuff +import re # Opening/Reading the file stuff +from io import StringIO # Opening/Reading the file stuff +from copy import deepcopy # For making duplicate dicts +# from error_msg import error_msg + +# For timezone/timestamp verification: +from datetime import datetime, timezone +from tzlocal import get_localzone +from zoneinfo import ZoneInfo +# from pytz import timezone + +# from SearchAPI.CMR import Input as test_input +from SearchAPI.application.asf_opts import string_to_obj_map +import asf_search + +class test_URL_Manager(): + def __init__(self, **args): + self.error_msg = "Reason: {0}\n" + test_info = args["test_info"] + test_vars = args["test_type_vars"] + + api_info = args["config"].getoption("--api") + test_api = api_info["this_api"] + + url_parts = [test_api, test_vars["endpoint"]+"?"] + full_url = '/'.join(s.strip('/') for s in url_parts) # If both/neither have '/' between them, this still joins them correctly + + # If the test itself stated the maturity, it's testing it: + if "use_maturity" in test_info: + use_cmr_maturity = test_info["use_maturity"] + # If the CLI option is declared, override everything else to it: + elif args["config"].getoption("--flex") is not None: + use_cmr_maturity = args["config"].getoption("--flex") + # Default use it, if you're not running against a prod api: + else: + use_cmr_maturity = api_info["flexible_maturity"] + + # Get the url string and (bool)if assert was used: + keywords, assert_used = self.getKeywords(test_info) + if use_cmr_maturity: + keywords.append("maturity=" + test_vars["maturity"]) + self.query = full_url + "&".join(keywords) + self.error_msg = "Reason: {0}\n - URL: '{1}'".format("{0}",self.query) + + # Figure out if you should print stuff: + if "print" not in test_info: + test_info["print"] = False if assert_used else True + + status_code, content_type, file_content = self.runQuery() + + if test_info["print"]: + print() + print("Test: " + str(test_info["title"])) + print("API code returned: " + str(status_code)) + print("API file type returned: " + str(content_type)) + print("URL: " + str(self.query)) + print() + + if assert_used: + self.runAssertTests(test_info, status_code, content_type, file_content) + + + + def getKeywords(self, test_info): + # DONT add these to url. (Used for tester). Add ALL others to allow testing keywords that don't exist + reserved_keywords = ["title", "print", "api", "skip_file_check", "maturity", "use_maturity"] + asserts_keywords = ["expected file","expected code"] + + + assert_used = 0 != len([k for k,_ in test_info.items() if k in asserts_keywords]) + keywords = [] + for key,val in test_info.items(): + # If it's reserved, move on: + if key in reserved_keywords or key in asserts_keywords: + continue + # IF val is None, just add the key. Else add "key=val" + if val == None: + keywords.append(str(key)) + # If you're testing multiple SAME params, add each key-val pair: + elif isinstance(val, type([])): + keywords.append(str(key)+"="+",".join(val)) + else: + keywords.append(str(key)+"="+str(val)) + return keywords, assert_used + + def runQuery(self): + def countToDict(html): + try: + count = int(html.rstrip()) + except ValueError: + assert False, self.error_msg.format("API returned html that was not a count. (Error page?) \nHTML Page (First 500 chars): \n{0}\n".format(file_content[:500])) + return {"count": count} + + def csvToDict(file_content): + file_content = csv.reader(StringIO(file_content), delimiter=',') + file_content = [a for a in file_content] + # Rotate it counter-clockwise, so that row[0] == key of csv. (based on https://stackoverflow.com/questions/8421337/rotating-a-two-dimensional-array-in-python) + rotated_content = list(map(type([]), zip(*file_content))) + assert len(rotated_content) > 1, self.error_msg.format("API did not return a CSV.\nReturned content: (First 500 chars): \n{0}\n".format(file_content[:500])) + file_content = {} + for column in rotated_content: + file_content[column[0]] = column[1:] + file_content["count"] = len(file_content["Platform"]) + return file_content + + def downloadToDict(bulk_download_file): + # Grab everything in the self.files field of the download script: + files = re.search(r'self.files\s*=\s*\[.*?\]', bulk_download_file, re.DOTALL) + if files == None: + assert False, self.error_msg.format("Problem reading download script! \nReturned content: (First 500 chars): \n{0}\n".format(bulk_download_file[:500])) + # Parse out each file-names, and make each one a str in a list: + files = re.findall('"(.*?)"', files.group(0)) + # add the fields and return: + file_content = {} + file_content["count"] = len(files) + file_content["files"] = files + return file_content + + def jsonToDict(json_data): + # Combine all matching key-value pairs, to-> key: [list of vals] + file_content = {} + count = 0 + for result in json_data: + count += 1 + for key,val in result.items(): + # Break apart nested lists if needed, (alows to forloop val): + val = [val] if not isinstance(val, type([])) else val + if key in file_content: + for inner_val in val: + file_content[key].append(inner_val) + else: + file_content[key] = [] + for inner_val in val: + file_content[key].append(inner_val) + file_content["count"] = count + return file_content + + h = requests.head(self.query) + content_header = h.headers.get('content-type') + try: + file_content = requests.get(self.query).content.decode("utf-8") + except requests.exceptions.ChunkedEncodingError: + assert False, self.error_msg.format("Server returned no info. Normally means it's overloaded.") + # text/csv; charset=utf-8 + try: + content_type = content_header.split('/')[1] + print(f" - HIT CONTENT TYPE BEFORE 1: {content_type}") + except AttributeError: + assert False, self.error_msg.format("Header is not formatted as expected. Header: {0}.\nFile Content (First 500 char): \n{1}\n".format(content_header, file_content[:500])) + # Take out the "csv; charset=utf-8", without crahsing on things that don't have a charset + print(f" - HIT CONTENT TYPE BEFORE 2: {content_type}") + content_type = content_type.split(';')[0] if ';' in content_type else content_type + print(f" - HIT CONTENT TYPE AFTER: {content_type}") + ## COUNT / HTML: + if content_type == "html": + # They return a number in the html. Convert to a real int: + file_content = countToDict(file_content) + if file_content["count"] == 0: + content_type = "blank count" + else: + content_type = "count" + ## CSV + elif content_type == "csv": + file_content = csvToDict(file_content) + if file_content["count"] == 0: + content_type = "blank csv" + ## DOWNLOAD / PLAIN + elif content_type == "plain" or content_type == "x-python": + file_content = downloadToDict(file_content) + # how many granules are in the script: + if file_content["count"] == 0: + content_type = "blank download" + else: + content_type = "x-python" + ## GEOJSON + elif content_type == "geo+json": + content_type = "geojson" + if file_content == '{\n "features": [],\n "type": "FeatureCollection"\n}': + content_type = "empty geojson" + + ## JSON / JSONLITE / ERROR + elif content_type == "json": + try: + file_content = json.loads(file_content) + except json.decoder.JSONDecodeError: + self.error_msg.format("Test returned json header, but content failed to load.\nContent (First 500 char):\n{0}\n".format(file_content)) + ## ERROR + if "error" in file_content: + content_type = "error json" + ## JSONLITE + elif "results" in file_content: + file_content = file_content["results"] + if len(file_content) == 0: + content_type = "blank jsonlite" + else: + content_type = "jsonlite" + file_content = jsonToDict(file_content) + ## JSON + else: + assert isinstance(file_content, type([])), self.error_msg.format("Response did not contain a list of results.\nContent (First 500 char):\n{0}\n".format(file_content)) + json_data = file_content[0] + if json_data == []: + content_type = "blank json" + else: + # dictonary-ify file_content to expected format: + file_content = jsonToDict(json_data) + + ## KML + elif content_type == "vnd.google-earth.kml+xml": + content_type = "kml" + blank_kml = '\n\n\nASF Datapool Search Results\nSearch Performed: \n\n\n'.replace(" ", "") + if file_content.replace(" ", "") == blank_kml: + content_type = "blank kml" + ## METALINK + elif content_type == "metalink+xml": + content_type = "metalink" + blank_metalink = '\n\nAlaska Satellite Facilityhttp://www.asf.alaska.edu/\n\n\n'.replace(" ","") + if file_content.replace(" ","") == blank_metalink: + content_type = "blank metalink" + return h.status_code, content_type, file_content + + def runAssertTests(self, test_info, status_code, content_type, file_content): + if "expected code" in test_info: + assert test_info["expected code"] == status_code, self.error_msg.format("Status codes is different than expected.") + if "count" in file_content and "maxResults" in test_info: + assert test_info["maxResults"] >= file_content["count"], self.error_msg.format("API returned too many results.") + if "expected file" in test_info: + assert test_info["expected file"] == content_type, self.error_msg.format("Different file type returned than expected.") + # If the tester added the override, don't check its contents: + if "skip_file_check" in test_info and test_info["skip_file_check"] == True: + return + # If it's not a valid file, don't check its contents: + if not isinstance(file_content, type({})) or content_type[0:5] in ["error", "blank"]: + return + ### BEGIN TESTING FILE CONTENTS: + test_info = self.parseTestValues(test_info) + file_content = self.renameKeysToStandard(file_content) + file_content = self.renameValsToStandard(file_content) + # print(json.dumps(test_info, indent=4, default=str)) + # IF used in url, IF contained in file's content, check if they match + + def checkFileContainsExpected(key, test_info, file_dict): + # print(test_info) + # print("CHECKING FILE HERE") + # print(file_dict) + # print(json.dumps(file_dict, indent=4, default=str)) + if key in test_info and key in file_dict: + found_in_list = False + for found_param in file_dict[key]: + # poss_list is either single "i", or range "[i,j]": + for poss_list in test_info[key]: + # If it's a list, then it is a range of numbers: + if isinstance(poss_list, type([])): + expect_type = type(poss_list[0]) + # "found_param" is always a string. Convert it to match + if found_param.startswith('[') and found_param.endswith(']'): + found_param = ast.literal_eval(found_param) + for param in found_param: + if param >= poss_list[0] and param <= poss_list[1]: + found_in_list = True + break + elif expect_type(found_param) >= poss_list[0] and expect_type(found_param) <= poss_list[1]: + found_in_list = True + break + # This part gets hit for single numbers, and strings. (ie "Platform"): + else: + expect_type = type(poss_list) + if isinstance(found_param, str) and found_param.startswith('[') and found_param.endswith(']'): + # expect_type = type(poss_list) + found_param = ast.literal_eval(found_param) + for param in found_param: + if param == poss_list: + # if expect_type(param) >= poss_list[0] and expect_type(param) <= poss_list[1]: + found_in_list = True + break + elif isinstance(found_param, list) or isinstance(found_param, tuple): + for param in found_param: + if param == poss_list: + found_in_list = True + break + elif expect_type(found_param) == poss_list: + found_in_list = True + break + elif isinstance(poss_list, tuple): + if isinstance(found_param, str): + r = range(int(poss_list[0]), int(poss_list[1]) + 1) + try: + if int(found_param) in r: + found_in_list = True + break + except: + if float(poss_list[0]) <= float(found_param) and float(found_param) <= float(poss_list[1]) + 1: + found_in_list = True + break + # If inner for-loop found it, break out of this one too: + if found_in_list == True: + break + assert found_in_list, self.error_msg.format(key + " declared, but not found in file. File contents for key:\n{0}\n".format(file_dict[key])) + + def checkMinMax(key, test_info, file_dict): + if "min"+key in test_info and key in file_dict: + for value in file_dict[key]: + number_type = type(test_info["min"+key]) + assert number_type(value) >= test_info["min"+key], self.error_msg.format("Value found smaller than min key.") + if "max"+key in test_info and key in file_dict: + for value in file_dict[key]: + number_type = type(test_info["max"+key]) + assert number_type(value) <= test_info["max"+key], self.error_msg.format("Value found greater than max key.") + + # FOR tz_orig: The timezone the string came from. + # Alaska = "US/Alaska", UTC = "UTC", Blank = whatever timezone you're in now + def convertTimezoneUTC(time, tz_orig=None): + # Assume if tz_orig is overriden, it's a string of what timezone they want. Else, get whatever timezone you're in + tz_orig = get_localzone() if tz_orig == None else ZoneInfo(tz_orig) + + # If it's a string, convert it to datetime and localize it. + # Else it's already datetime, just localize to the timezone: + if isinstance(time, type("")): + # Strip down a string, so it can be used in the format: "%Y-%m-%dT%H:%M:%S" + time = time.split(".")[0] # take of any milliseconds. Normally sec.000000 + time = time[:-1] if time.endswith("Z") else time # take off the 'Z' if it's on the end + time = time[:-3] if time.endswith("UTC") else time # take off the 'UTC' if it's on the end + # Convert to a datetime object: + time = datetime.strptime(time, "%Y-%m-%dT%H:%M:%S") + + # Set the timezone to where the timestamp came from: + time = time.astimezone(tz_orig) + # time = tz_orig.localize(time) + # Change it to UTC and return it: + return time.astimezone(timezone.utc) + + def checkDate(later_date=None, earlier_date=None): + # Figure out which is the list of dates: + # (assuming whichever is the list, is loaded from downloads. The other is from yml file) + if isinstance(later_date, type([])): + earlier_date = convertTimezoneUTC(earlier_date) + for theDate in later_date: + theDate = convertTimezoneUTC(theDate, tz_orig="UTC") + assert theDate >= earlier_date, self.error_msg.format("File has too small of a date. File: {0}, earlier than test date: {1}.".format(theDate, earlier_date)) + elif isinstance(earlier_date, type([])): + later_date = convertTimezoneUTC(later_date) + for theDate in earlier_date: + theDate = convertTimezoneUTC(theDate, tz_orig="UTC") + assert later_date >= theDate, self.error_msg.format("File has too large of a date. File: {0}, later than test date: {1}.".format(theDate, later_date)) + else: # Else they both are a single date. Not sure if this is needed, but... + earlier_date = convertTimezoneUTC(earlier_date) + later_date = convertTimezoneUTC(later_date) + assert later_date >= earlier_date, self.error_msg.format("Date: {0} is earlier than date {1}.".format(later_date, earlier_date)) + + def checkSeason(file_start_dates, file_end_dates, season_list): + def date_to_nth_day(date): + start_of_year = datetime(year=date.year, month=1, day=1) + start_of_year = convertTimezoneUTC(start_of_year, tz_orig="UTC") + return (date - start_of_year).days + 1 + + if len(file_start_dates) == len(file_end_dates): + file_dates = zip(file_start_dates, file_end_dates) + else: + assert False, self.error_msg.format("Error running test! Not same number of start and end dates.") + + # If it's [300,5], turn it into [[300,365],[1,5]]. Else make it [[x,y]] + if season_list[0] > season_list[1]: + season_list = [ [season_list[0],365],[1,season_list[1]] ] + else: + season_list = [season_list] + + for date in file_dates: + # Each year's range is in a different element. 'season=300,5' on a dataset 2017-2019 will add [300-365,1-365,1-5]: + days_ranges = [] + start_season = convertTimezoneUTC(date[0], tz_orig="UTC") + end_season = convertTimezoneUTC(date[1], tz_orig="UTC") + year_diff = abs(start_season.year - end_season.year) + # First check if the product's date takes up an entire year: + if year_diff >= 2 or start_season.month <= end_season.month and year_diff >= 1: + days_ranges = [[1,365]] + else: + # Convert start/end points to ints: + start = date_to_nth_day(start_season) + end = date_to_nth_day(end_season) + # Check if both dates exist in the same calendar year: + if year_diff == 0: + days_ranges.append([start,end]) + # append both halfs of the range: + else: + days_ranges.append([start, 365]) + days_ranges.append([1, end]) + + # days_ranges is populated. Make sure it lines up with what you asked for: + season_range_hit = False + for season in season_list: + for the_range in days_ranges: + # If either boundry in the file is in what you ask for in the season list, you pass: + if (season[0] <= the_range[0] <= season[1]) or (season[0] <= the_range[1] <= season[1]): + season_range_hit = True + break + + assert season_range_hit, self.error_msg.format("Seasons not found in file. file ranges: {0}. yml range: {1}.".format(days_ranges, season_list)) + + + checkFileContainsExpected("Platform", test_info, file_content) + checkFileContainsExpected("absoluteOrbit", test_info, file_content) + checkFileContainsExpected("asfframe", test_info, file_content) + checkFileContainsExpected("granule_list", test_info, file_content) + checkFileContainsExpected("groupid", test_info, file_content) + checkFileContainsExpected("flightdirection", test_info, file_content) + checkFileContainsExpected("offnadirangle", test_info, file_content) + checkFileContainsExpected("polarization", test_info, file_content) + checkFileContainsExpected("relativeorbit", test_info, file_content) + checkFileContainsExpected("collectionname", test_info, file_content) + checkFileContainsExpected("beammode", test_info, file_content) + checkFileContainsExpected("processinglevel", test_info, file_content) + checkFileContainsExpected("flightline", test_info, file_content) + checkFileContainsExpected("lookdirection", test_info, file_content) + checkFileContainsExpected("instrument", test_info, file_content) + + # Processing Date (can not validate because it uses a field from CMR not in the API): + # if "processingdate" in file_content and "processingdate" in test_info: + # checkDate(later_date=file_content["processingdate"], earlier_date=test_info["processingdate"]) + # Start & End: + if "starttime" in file_content and "start" in test_info: + checkDate(later_date=file_content["starttime"], earlier_date=test_info["start"]) + if "starttime" in file_content and "end" in test_info: + checkDate(later_date=test_info["end"], earlier_date=file_content["starttime"]) + + if "starttime" in file_content and "endtime" in file_content and "season" in test_info: + checkSeason(file_content["starttime"], file_content["endtime"], test_info["season"]) + + checkMinMax("baselineperp", test_info, file_content) + checkMinMax("doppler", test_info, file_content) + checkMinMax("insarstacksize", test_info, file_content) + checkMinMax("faradayrotation", test_info, file_content) + + + + def parseTestValues(self, test_info): + # Turn string values to lists: + mutatable_dict = deepcopy(test_info) + try: + # Dictionary changes sizes, so check one dict, and make thechanges to other + for key, val in test_info.items(): + # The Input.parse* methods all expect a string. API automatically decodes it too: + val = urllib.parse.unquote_plus(str(val)) + if key.lower() == "absoluteorbit": + del mutatable_dict[key] + mutatable_dict["absoluteOrbit"] = string_to_obj_map[asf_search.validators.parse_int_or_range_list](val) + elif key.lower() == "platform": + del mutatable_dict[key] + mutatable_dict["Platform"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() in ["frame", "asfframe"]: + del mutatable_dict[key] + mutatable_dict["asfframe"] = string_to_obj_map[asf_search.validators.parse_int_or_range_list](val) + elif key.lower() == "granule_list": + del mutatable_dict[key] + mutatable_dict["granule_list"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "groupid": + del mutatable_dict[key] + mutatable_dict["groupid"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "flightdirection": + del mutatable_dict[key] + mutatable_dict["flightdirection"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "offnadirangle": + del mutatable_dict[key] + mutatable_dict["offnadirangle"] = string_to_obj_map[asf_search.validators.parse_float_or_range_list](val) + elif key.lower() == "polarization": + del mutatable_dict[key] + mutatable_dict["polarization"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "relativeorbit": + del mutatable_dict[key] + mutatable_dict["relativeorbit"] = string_to_obj_map[asf_search.validators.parse_int_or_range_list](val) + elif key.lower() == "collectionname": + del mutatable_dict[key] + mutatable_dict["collectionname"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() in ["beammode", "beamswath"]: + del mutatable_dict[key] + mutatable_dict["beammode"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "processinglevel": + del mutatable_dict[key] + mutatable_dict["processinglevel"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "flightline": + del mutatable_dict[key] + mutatable_dict["flightline"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "lookdirection": + del mutatable_dict[key] + mutatable_dict["lookdirection"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + elif key.lower() == "instrument": + del mutatable_dict[key] + mutatable_dict["instrument"] = string_to_obj_map[asf_search.validators.parse_string_list](val) + # elif key.lower() == "processingdate": + # del mutatable_dict[key] + # mutatable_dict["processingdate"] = asf_search.validators.parse_date(val.replace("+", " ")) + elif key.lower() == "start": + del mutatable_dict[key] + mutatable_dict["start"] = asf_search.validators.parse_date(val.replace("+", " ")) + elif key.lower() == "end": + del mutatable_dict[key] + mutatable_dict["end"] = asf_search.validators.parse_date(val.replace("+", " ")) + elif key.lower() == "season": + del mutatable_dict[key] + mutatable_dict["season"] = asf_search.validators.parse_int_list(string_to_obj_map[asf_search.validators.parse_int_list](val)) + # MIN/MAX variants + # min/max BaselinePerp + elif key.lower()[3:] == "baselineperp": + del mutatable_dict[key] + # Save the min/max key, all lower + mutatable_dict[key.lower()[0:3]+"baselineperp"] = string_to_obj_map[asf_search.validators.parse_float_or_range_list](val) + # min/max Doppler: + elif key.lower()[3:] == "doppler": + del mutatable_dict[key] + mutatable_dict[key.lower()[0:3]+"doppler"] = asf_search.validators.parse_float(val) + # min/max InsarStackSize: + elif key.lower()[3:] == "insarstacksize": + del mutatable_dict[key] + mutatable_dict[key.lower()[0:3]+"insarstacksize"] = asf_search.validators.parse_int(val) + #min/max FaradayRotation: + elif key.lower()[3:] == "faradayrotation": + del mutatable_dict[key] + mutatable_dict[key.lower()[0:3]+"faradayrotation"] = asf_search.validators.parse_float(val) + + except ValueError as e: + assert False, self.error_msg.format("ValueError: {0}.".format(str(e))) + + # If start is larger than end, swap them: + if "start" in mutatable_dict and "end" in mutatable_dict: + start = datetime.strptime(mutatable_dict["start"], "%Y-%m-%dT%H:%M:%SZ") + end = datetime.strptime(mutatable_dict["end"], "%Y-%m-%dT%H:%M:%SZ") + if start > end: + tmp = mutatable_dict["start"] + mutatable_dict["start"] = mutatable_dict["end"] + mutatable_dict["end"] = tmp + # If skip_file_check not declared, default to False: + if "skip_file_check" not in mutatable_dict: + mutatable_dict["skip_file_check"] = False + test_info = mutatable_dict + # Make each possible value line up with what the files returns: + test_info = self.renameValsToStandard(test_info) + return test_info + + def renameKeysToStandard(self, json_dict): + ### absoluteOrbit: + if "Orbit" in json_dict: + json_dict["absoluteOrbit"] = json_dict.pop("Orbit") + ### asfframe: + for key in ["frame", "frameNumber", "Frame Number"]: + if key in json_dict: + json_dict["asfframe"] = json_dict.pop(key) + ### granule_list: + for key in ["granuleName", "Granule Name"]: + if key in json_dict: + json_dict["granule_list"] = json_dict.pop(key) + ### groupid: + if "groupID" in json_dict: + json_dict["groupid"] = json_dict.pop("groupID") + ### flightDirection + for key in ["Ascending or Descending?", "flightDirection"]: + if key in json_dict: + json_dict["flightdirection"] = json_dict.pop(key) + ### offNadirAngle: + for key in ["Off Nadir Angle", "offNadirAngle"]: + if key in json_dict: + json_dict["offnadirangle"] = json_dict.pop(key) + ### polarization: + if "polarization" in json_dict: + json_dict["polarization"] = json_dict.pop("polarization") + ### relativeOrbit: + for key in ["relativeOrbit", "Path Number"]: + if key in json_dict: + json_dict["relativeorbit"] = json_dict.pop(key) + ### collectionName: + if "collectionName" in json_dict: + json_dict["collectionname"] = json_dict.pop("collectionName") + ### beamMode: + for key in ["beamswath", "beamMode", "Beam Mode"]: + if key in json_dict: + json_dict["beammode"] = json_dict.pop(key) + ### min/max BaselinePerp: + for key in ["Baseline Perp.", "baselinePerp"]: + if key in json_dict: + json_dict["baselineperp"] = json_dict.pop(key) + ### min/max Doppler: + for key in ["doppler", "Doppler"]: + if key in json_dict: + json_dict["doppler"] = json_dict.pop(key) + ### min/max InsarStackSize: + for key in ["insarStackSize", "Stack Size"]: + if key in json_dict: + json_dict["insarstacksize"] = json_dict.pop(key) + ### min/max FaradayRotation: + for key in ["faradayRotation", "Faraday Rotation"]: + if key in json_dict: + json_dict["faradayrotation"] = json_dict.pop(key) + ### processingLevel: + for key in ["Processing Level", "processingLevel"]: + if key in json_dict: + json_dict["processinglevel"] = json_dict.pop(key) + ### flightLine: + if "flightLine" in json_dict: + json_dict["flightline"] = json_dict.pop("flightLine") + ### lookDirection: + if "lookDirection" in json_dict: + json_dict["lookdirection"] = json_dict.pop("lookDirection") + ### instrument: + for key in ["sensor", "Sensor", "instrument"]: + if key in json_dict: + json_dict["sensor"] = json_dict.pop(key) + ### processingDate: + # for key in ["Processing Date", "processingDate"]: + # if key in json_dict: + # json_dict["processingdate"] = json_dict.pop(key) + ### start & end + for key in ["Start Time", "startTime"]: + if key in json_dict: + json_dict["starttime"] = json_dict.pop(key) + for key in ["End Time", "stopTime"]: + if key in json_dict: + json_dict["endtime"] = json_dict.pop(key) + return json_dict + + + # assumes values are in the form of {key: [value1,value2]} + def renameValsToStandard(self, json_dict): + if "Platform" in json_dict: + itter_copy = deepcopy(json_dict) + for i, platform in enumerate(itter_copy["Platform"]): + if platform == None: + continue + ##### + # NOTE: UPPER for when adding platforms in future: + platform = platform.upper() + # ALOS + if platform in ["ALOS", "A3"]: + json_dict["Platform"][i] = "ALOS" + # AIRSAR + elif platform in ["AIRSAR", "AS"]: + json_dict["Platform"][i] = "AIRSAR" + # ERS + elif platform in ["ERS"]: + json_dict["Platform"][i] = "ERS" + # ERS-1 + elif platform in ["ERS-1", "E1"]: + json_dict["Platform"][i] = "ERS-1" + # ERS-2 + elif platform in ["ERS-2", "E2"]: + json_dict["Platform"][i] = "ERS-2" + # JERS-1 + elif platform in ["JERS-1", "J1"]: + json_dict["Platform"][i] = "JERS-1" + # RADARSAT-1 + elif platform in ["RADARSAT-1", "R1"]: + json_dict["Platform"][i] = "RADARSAT-1" + # SEASAT + elif platform in ["SEASAT", "SS"]: + json_dict["Platform"][i] = "SEASAT" + # Sentinel-1: + elif platform in ["S1", "SENTINEL-1", "SENTINEL"]: + del json_dict["Platform"][i] + json_dict["Platform"].append("Sentinel-1A") + json_dict["Platform"].append("Sentinel-1B") + json_dict["Platform"].append("Sentinel-1 Interferogram (BETA)") + # Sentinel-1A + elif platform in ["SENTINEL-1A", "SA"]: + json_dict["Platform"][i] = "Sentinel-1A" + json_dict["Platform"].append("Sentinel-1 Interferogram (BETA)") + # Sentinel-1B + elif platform in ["SENTINEL-1B", "SB"]: + json_dict["Platform"][i] = "Sentinel-1B" + json_dict["Platform"].append("Sentinel-1 Interferogram (BETA)") + # Sir-C + elif platform in ["SIR-C"]: + del json_dict["Platform"][i] + json_dict["Platform"].append("STS-59") + json_dict["Platform"].append("STS-68") + # SMAP + elif platform in ["SMAP", "SP"]: + json_dict["Platform"][i] = "SMAP" + # UAVSAR + elif platform in ["UAVSAR", "UA", "AIRMOSS"]: + json_dict["Platform"][i] = "UAVSAR" + if "flightdirection" in json_dict: + for i, flightdirection in enumerate(json_dict["flightdirection"]): + if flightdirection == None: + continue + # flightdirection in UPPER + flightdirection = flightdirection.upper() + # DESCENDING + if flightdirection in ["D", "DESC", "DESCENDING"]: + json_dict["flightdirection"][i] = "DESCENDING" + #ASCENDING + elif flightdirection in ["A", "ASC", "ASCENDING"]: + json_dict["flightdirection"][i] = "ASCENDING" + if "lookdirection" in json_dict: + for i, lookdirection in enumerate(json_dict["lookdirection"]): + if lookdirection == None: + continue + lookdirection = lookdirection.upper() + #LEFT + if lookdirection in ["L", "LEFT"]: + json_dict["lookdirection"][i] = "LEFT" + #RIGHT + elif lookdirection in ["R", "RIGHT"]: + json_dict["lookdirection"][i] = "RIGHT" + if "polarization" in json_dict: + for i, polarization in enumerate(json_dict["polarization"]): + if polarization == None: + continue + # making all results UPPER case, except Dual + if polarization[0:4].upper() == "DUAL": + polarization = "Dual" + polarization[4:].upper() + else: + polarization = polarization.upper() + json_dict["polarization"][i] = polarization + if "collectionname" in json_dict: + for i, collectionname in enumerate(json_dict["collectionname"]): + if collectionname == None: + continue + # Note: in test_info, string is separated by comma: 'Big Island', ' HI' + # Using the below to match the url string to file string + # Big Island, HI + if collectionname in ["Big Island", " HI"]: + json_dict["collectionname"][i] = "Big Island, HI" + # Cascade Volcanoes, CA/OR/WA + elif collectionname in ["Cascade Volcanoes", " CA/OR/WA"]: + json_dict["collectionname"][i] = "Cascade Volcanoes, CA/OR/WA" + # Permafrost Sites, AK + elif collectionname in ["Permafrost Sites", "AK"]: + json_dict["collectionname"][i] = "Permafrost Sites, AK" + if "beammode" in json_dict: + for i, beammode in enumerate(json_dict["beammode"]): + if beammode == None: + continue + # beammode in UPPER case + beammode = beammode.upper() + # STANDARD + if beammode[0:2] == "ST": + json_dict["beammode"][i] = "STD" + return json_dict +