From 0c88f9104b5e2594f87eee1664eb9155f5f67ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20M=C3=A4kinen?= Date: Mon, 24 Feb 2025 11:45:30 +0200 Subject: [PATCH 01/18] Add basic script to import stop places from jore3 --- importer.py | 419 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 419 insertions(+) create mode 100644 importer.py diff --git a/importer.py b/importer.py new file mode 100644 index 00000000..b0026c70 --- /dev/null +++ b/importer.py @@ -0,0 +1,419 @@ +import psycopg +import pymssql +import requests +import simplejson as json + +# Replace these to use different target +graphql = 'http://localhost:3201/v1/graphql' +secret = 'hasura' + +def get_jore3(stopletter, stopid): + tulos = [] + + with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: + + with conn.cursor(as_dict=True) as cursor: + + cursor.execute(f"""select * from jr_pysakki p + inner join jr_solmu s on (p.soltunnus = s.soltunnus) + inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) + inner join jr_esteettomyys e on (p.soltunnus = e.tunnus) + inner join jr_varustelutiedot_uusi vt on (p.soltunnus = vt.tunnus) + where s.solkirjain = '{stopletter}' and s.sollistunnus = '{stopid}' + order by p.pysviimpvm asc;""") + + + for row in cursor: + tulos.append(row) + + if (tulos): + return tulos[0] + + return '' + +def get_jore3_stop_areas(): + tulos = [] + + with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: + + with conn.cursor(as_dict=True) as cursor: + + cursor.execute(f"""select pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain from jr_pysakki p + inner join jr_solmu s on (s.soltunnus = p.soltunnus) + inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) + where p.pysalueid in ( + select jp.pysalueid from jr_pysakki jp + inner join jr_lij_pysakkialue jlp on (jp.pysalueid = jlp.pysalueid) + where jlp.verkko = 1 + group by jp.pysalueid + having count(*) > 1); + """) + + + for row in cursor: + tulos.append(row) + + return tulos + + +def get_jore3_info_spots(stopletter, stopid): + tulos = [] + with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: + + with conn.cursor(as_dict=True) as cursor: + + cursor.execute(f"""select ip.* from jr_pysakki p + inner join jr_solmu s on (p.soltunnus = s.soltunnus) + inner join jr_infopaikka ip on (ip.tunnus = p.soltunnus) + where s.solkirjain = '{stopletter}' and s.sollistunnus = '{stopid}' + order by p.pysviimpvm asc;""") + + + for row in cursor: + tulos.append(row) + + if (tulos): + return tulos + + return '' + + +def get_stop_points(): + query = """query { + service_pattern_scheduled_stop_point { + label + measured_location + priority + validity_start + validity_end + } + } + """ + headers = {'content-type': 'application/json; charset=UTF-8', + 'x-hasura-admin-secret': secret} + response = requests.post(graphql, headers=headers, json={"query": query}) + print(response) + if (json.loads(response.content)['data']): + stop_points = json.loads(response.content)['data']['service_pattern_scheduled_stop_point'] + v = [{ + 'label': x['label'], + 'lat': x['measured_location']['coordinates'][1], + 'lon': x['measured_location']['coordinates'][0], + 'priority': str(x['priority']), + 'validity_start': x['validity_start'], + 'validity_end': x['validity_end'] + } for x in stop_points] + return v + return '' + + +def get_stop_points2(): + with psycopg.connect("host=localhost port=6432 dbname=jore4e2e user=dbadmin password=adminpassword") as conn: + with conn.cursor() as cur: + cur.execute(""" + select label, ST_Y(measured_location::geometry) as lat, ST_X(measured_location::geometry) as lon from service_pattern.scheduled_stop_point; + """) + return cur.fetchall() + +def update_stop_point(label, netexid): + mutation = """mutation UpdateStopRef( + $netexid: String, + $label: String) { + update_service_pattern_scheduled_stop_point(where: {label: {_eq: $label}}, _set: {stop_place_ref: $netexid}) { + affected_rows + } + } + """ + variables = { + "label": label, + "netexid": netexid + } + headers = {'content-type': 'application/json; charset=UTF-8', + 'x-hasura-admin-secret': secret} + response = requests.post(graphql, headers=headers, json={"query": mutation, "variables": variables}) + print(response.content) + + +def update_stop_point2(label, netexid): + with psycopg.connect("host=localhost port=6432 dbname=jore4e2e user=dbadmin password=adminpassword") as conn: + with conn.cursor() as cur: + cur.execute(f""" + update service_pattern.scheduled_stop_point set stop_place_ref = '{netexid}' where label = '{label}'; + """) + + +def mapStopModel(jore3model): + match jore3model: + case '1': + return 'pullOut' + case '2': + return 'busBulb' + case '4': + return 'inLane' + case _: + return 'other' + +def mapStopType(jore3type): + match jore3type: + case '01': + return 'glass' + case '02': + return 'steel' + case '04': + return 'post' + case '05': + return 'urban' + case '06': + return 'concrete' + case '07': + return 'wooden' + case _: + return 'virtual' + +def mapStopElectricity(jore3elec): + match jore3elec: + case '01': + return 'none' + case '02': + return 'continuous' + case _: + return 'light' + +def mapStopCondition(jore3condition): + match jore3condition: + case '01': + return 'good' + case '02': + return 'mediocre' + case _: + return 'bad' + +def mapBoolean(jore3value): + match jore3value: + case 1: + return True + case _: + return False + +def toFloat(value): + jsonval = json.dumps(value) + if jsonval != 'null': + return float(jsonval) + return None + + +def update_stop_area(label, name, stopIds): + stopAreaMutation = """ + mutation AddStopArea( + $label: String!, + $name: String, + $members: [stop_registry_VersionLessEntityRefInput] + ) { + stop_registry { + mutateGroupOfStopPlaces( + GroupOfStopPlaces: { + name: { lang: "fin", value: $label }, + description: { lang: "fin", value: $name } + members: $members + validBetween: { + fromDate: "2019-12-31T23:00:00.001+0100" + toDate: null + } + } + ) { + id + } + } + } + """ + + variables = { + "label": label, + "name": name, + "members": [ { "ref": netexId } for netexId in stopIds ] + } + + headers = {'content-type': 'application/json; charset=UTF-8', + 'x-hasura-admin-secret': secret} + response = requests.post(graphql, headers=headers, json={"query": stopAreaMutation, "variables": variables}) + print(response.content) + + +def update_stop_place(label, lat, lon, priority, validityStart, validityEnd, jore3result): + stopMutation = """ + mutation AddStop( + $label: String!, + $idNumber: String!, + $elyCode: String!, + $stopName: String!, + $shortName: String, + $longName: String, + $location: String, + $stopNameSwe: String, + $shortNameSwe: String, + $longNameSwe: String, + $locationSwe: String, + $postalCode: String, + $streetAddress: String, + $functionalArea: String, + $priority: String, + $validityStart: String, + $validityEnd: String, + $coordinates: stop_registry_Coordinates, + $hslAccessibilityProperties: stop_registry_HslAccessibilityPropertiesInput, + $shelterEquipment: [stop_registry_ShelterEquipmentInput], + $generalSign: [stop_registry_GeneralSignInput] + ) { + stop_registry { + mutateStopPlace( + StopPlace: { + accessibilityAssessment: { + hslAccessibilityProperties: $hslAccessibilityProperties + limitations: { + audibleSignalsAvailable: FALSE, + escalatorFreeAccess: FALSE, + liftFreeAccess: FALSE, + stepFreeAccess: FALSE, + wheelchairAccess: FALSE + } + }, + geometry: { type: Point, coordinates: $coordinates }, + description: {lang: "fin", value: $location}, + alternativeNames: [ + { name: {lang: "fin", value: $longName}, nameType: alias }, + { name: {lang: "swe", value: $longNameSwe}, nameType: alias }, + { name: {lang: "swe", value: $locationSwe}, nameType: other }, + { name: {lang: "swe", value: $stopNameSwe}, nameType: translation } + ], + name: {lang: "fin", value: $stopName}, + publicCode: $idNumber, + privateCode: {value: $elyCode, type: "ELY"}, + keyValues: [ + { key: "stopState", values: "InOperation" }, + { key: "mainLine", values: "false" }, + { key: "virtual", values: "false" }, + { key: "postalCode", values: [$postalCode] }, + { key: "functionalArea", values: [$functionalArea] }, + { key: "streetAddress", values: [$streetAddress] }, + { key: "priority", values: [$priority] }, + { key: "validityStart", values: [$validityStart] }, + { key: "validityEnd", values: [$validityEnd] } + ], + weighting: interchangeAllowed, + submode: railReplacementBus, + quays: [ + { + publicCode: $label, + placeEquipments: { + shelterEquipment: $shelterEquipment, + generalSign: $generalSign + } + } + ], + transportMode: bus + }) { + id + } + } + } + """ + + + variables = { + "label": label, + "idNumber": jore3result['soltunnus'], + "elyCode": jore3result['elynumero'], + "stopName": jore3result['pysnimi'], + "longName": jore3result['pysnimipitka'], + "location": jore3result['pyspaikannimi'], + "stopNameSwe": jore3result['pysnimir'], + "longNameSwe": jore3result['pysnimipitkar'], + "locationSwe": jore3result['pyspaikannimir'], + "postalCode": jore3result['postinro'], + "streetAddress": jore3result['pysosoite'], + "functionalArea": str(jore3result['pyssade']), + "coordinates": [lon, lat], + "priority": priority, + "validityStart": validityStart, + "validityEnd": validityEnd, + "hslAccessibilityProperties": { + "curbBackOfRailDistance": toFloat(jore3result['korotus_ajorataan']), + "lowerCleatHeight": toFloat(jore3result['alapiena_korkeus']), + "platformEdgeWarningArea": mapBoolean(jore3result['varoitusalue']), + "stopAreaLengthwiseSlope": toFloat(jore3result['pituuskaltevuus']), + "stopAreaSideSlope": toFloat(jore3result['sivukaltevuus']), + "stopAreaSurroundingsAccessible": mapBoolean(jore3result['esteeton_kulku']), + "stopElevationFromSidewalk": toFloat(jore3result['korotus_kaytavaan']), + "stopType": mapStopModel(jore3result['pysakin_malli']) + }, + "generalSign": { + "numberOfFrames": toFloat(jore3result['kpl_kilvet']) + }, + "shelterEquipment": ([ + { + "enclosed": jore3result['pysakkityyppi'] == '01' or jore3result['pysakkityyppi'] == '02', + "shelterType": mapStopType(jore3result['pysakkityyppi']), + "shelterElectricity": mapStopElectricity(jore3result['sahko']), + "shelterLighting": True, + "shelterCondition": mapStopCondition(jore3result['katos_kunto']), + "timetableCabinets": toFloat(jore3result['kpl_lisavarusteet']) if jore3result['lisavarusteet'] == '01' else 0, + "trashCan": mapBoolean(jore3result['roska_astia']), + "shelterHasDisplay": mapBoolean(jore3result['nayttolaitteet']), + "bicycleParking": jore3result['lisavarusteet'] == '03' or jore3result['lisavarusteet'] == '04', + "leaningRail": False, + "outsideBench": False, + "shelterFasciaBoardTaping": False + } + ] * jore3result['kpl_pysakkityyppi']) if jore3result['kpl_pysakkityyppi'] else None + + } + headers = {'content-type': 'application/json; charset=UTF-8', + 'x-hasura-admin-secret': secret} + response = requests.post(graphql, headers=headers, json={"query": stopMutation, "variables": variables}) + print(response) + print(response.content) + if (json.loads(response.content)['data']): + return json.loads(response.content)['data']['stop_registry']['mutateStopPlace'][0]['id'] + return '' + +stops = get_stop_points() +print(f"Found {len(stops)} stop points") +added = 0 + +labelAssociation = {} + +for stop in stops: + jore3stop = get_jore3(stop['label'][0], stop['label'][1:]) + if (jore3stop): + netexId = update_stop_place(stop['label'], stop['lat'], stop['lon'], stop['priority'], stop['validity_start'], stop['validity_end'], jore3stop) + if (netexId): + update_stop_point(stop['label'], netexId) + labelAssociation[stop['label']] = netexId + # TODO: Infospots + #infospots = get_jore3_info_spots(stop[0][0], stop[0][1:]) + #for infospot in infospots: + # update_info_spot(stop[0]) + added += 1 + +print(f"Added {added} stop place definitions") + +addedAreas = 0 + +stopAreas = get_jore3_stop_areas() + +collectedAreas = {} +areaNames = {} + +for area in stopAreas: + if (area['sollistunnus']): + label = area['solkirjain'] + area['sollistunnus'] + if (label in labelAssociation): + collectedAreas.setdefault(area['pysalueid'], []).append(labelAssociation.get(label)) + areaNames[area['pysalueid']] = area['nimi'] + +for area, stops in collectedAreas.items(): + if (stops): + update_stop_area(area, areaNames.get(area), stops) + addedAreas += 1 + +print(f"Added {addedAreas} stop area definitions") From ced8a9b124438175895ee9d062bd2550ae291f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20M=C3=A4kinen?= Date: Wed, 8 Apr 2026 15:56:44 +0300 Subject: [PATCH 02/18] Update importer script for new data model - Save stop details in the stop_place - quay model - Use requirements.txt to define libraries - Update README - Update docker setup --- .gitignore | 5 +- README.md | 55 ++++ development.sh | 4 +- docker/docker-compose.custom.yml | 16 +- importer.py | 443 +++++++++++++++---------------- requirements.txt | 9 + 6 files changed, 294 insertions(+), 238 deletions(-) create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index 93a31dab..4adc8fd3 100644 --- a/.gitignore +++ b/.gitignore @@ -45,4 +45,7 @@ digiroad_stops*.csv #possible jore3 backup file jore3dump/* -!jore3dump/put-bak-file-here.txt \ No newline at end of file +!jore3dump/put-bak-file-here.txt + +#stop place import script environment file +.env diff --git a/README.md b/README.md index 90facb82..9591cd64 100644 --- a/README.md +++ b/README.md @@ -529,3 +529,58 @@ If a test case fails because the `com.microsoft.sqlserver.jdbc.SQLServerExceptio the error message says that it cannot find a database object, the problem is that the script which creates the source MSSQL database (_docker/mssql_init/populate.sql_) was changed. You can solve this problem by running the command: `./development.sh recreate` at command prompt. + +--- + +## Jore3 stop import script + +### Requirements + +You need to have Python 3 installed on your system to run the script + +#### Virtual environment + +To run Python scripts with required libraries you should setup a virtual environment which contains the requirements for the script. To setup an environment, run: + +`python3 -m venv LOCATION/OF/ENVIRONMENT/HERE` + +Where you should replace the location with one you want to use. For example a directory under your home directory. +To use the environment you can either source the virtual environment by running: + +`source LOCATION/OF/ENVIRONMENT/HERE/bin/activate` + +Which allows you to use the binaries directly as `python importer.py` + +Or you can use the virtual environment python directly: `LOCATION/OF/ENVIRONMENT/HERE/bin/python importer.py` + +#### Script setup + +You need to run the `import.py` script using Python 3 and it requires the following libraries: + +- pymssql +- requests +- simplejson + +They can be installed by running `pip install -r requirements.txt` + +### How to use + +To run the stop registry importer script you need to have a Jore3 database, a populated Jore4 routes database, Jore4 Hasura and Jore4 Tiamat running. + +By default the script runs from the local jore3 test database and uses the base local Jore4 Hasura instance as the target. +You can change the source database and target Hasura instance by creating a `.env` file in the same directory as the script. + +Set the values for variables you want to set: + +``` +GRAPHQL_URL= +GRAPHQL_SECRET= +JORE3_USERNAME= +JORE3_PASSWORD= +JORE3_DATABASE_URL= +JORE3_DATABASE_NAME= +``` + +You should have run the base Jore3 importer first which ensures the Jore4 database has the required scheduled stop points. Then run the stop registry import script which will match scheduled stop points in the Jore4 routes database with stops in the Jore3 database and generate GraphQL mutations to Hasura/Tiamat according to the data. The script will also link the generated stop registry stops with the scheduled stop points by their NeTEx ID using Hasura for the mutation. + +Running the script will produce multiple errors as there are many stops in the Jore3 database with overlapping validity. These can be ingored as only the most recent one is the one which ends up being imported. diff --git a/development.sh b/development.sh index a8fef110..8456dbd1 100755 --- a/development.sh +++ b/development.sh @@ -202,7 +202,7 @@ seed_tram_infra_links() { } start_all() { - $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-jore3importer jore4-mapmatchingdb jore4-mapmatching + $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-jore3importer jore4-mapmatchingdb jore4-mapmatching jore4-tiamat } start_deps() { @@ -212,7 +212,7 @@ start_deps() { # jore4-mssqltestdb - The Jore 3 MSSQL database which contains the source data which is read by the importer # jore4-hasura - Hasura. We have to start Hasura because it ensures that db migrations are run to the Jore 4 database. # jore4-testdb - Jore 4 database. This is the destination database of the import process. - $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-mapmatchingdb jore4-mapmatching + $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-mapmatchingdb jore4-mapmatching jore4-tiamat } stop() { diff --git a/docker/docker-compose.custom.yml b/docker/docker-compose.custom.yml index 221f04be..db3fa58e 100644 --- a/docker/docker-compose.custom.yml +++ b/docker/docker-compose.custom.yml @@ -35,5 +35,19 @@ services: # volume to easily use jore3 database dump volumes: - ../jore3dump:/mnt/jore3dump + + jore4-tiamat: + # Pin tiamat to a compatible version. + image: "hsldevcom/jore4-tiamat:main--20250317-1136ff34a5b6030b0e9c85b0373f5ddc02946267" + + jore4-hasura: + # pin compatible version of jore4 data model + image: "hsldevcom/jore4-hasura:hsl-main--20250317-60eaf1217447890591ca3bbe262c96f2cc68ba57" + depends_on: + jore4-testdb: + condition: service_healthy + jore4-tiamat: + condition: service_healthy + networks: - jore4: + jore4: diff --git a/importer.py b/importer.py index b0026c70..e0100926 100644 --- a/importer.py +++ b/importer.py @@ -1,17 +1,35 @@ -import psycopg +#!/usr/bin/env python3 + import pymssql import requests import simplejson as json +import environ +import os + +env = environ.Env( + GRAPHQL_URL=(str,'http://localhost:3201/v1/graphql'), + GRAPHQL_SECRET=(str,'hasura'), + JORE3_USERNAME=(str,'sa'), + JORE3_PASSWORD=(str,'P@ssw0rd'), + JORE3_DATABASE_URL=(str,'localhost:1433'), + JORE3_DATABASE_NAME=(str,'jore3testdb') +) + +environ.Env.read_env(os.path.dirname(os.path.join(os.path.dirname(os.path.abspath(__file__)), '.env'))) + +graphql = env('GRAPHQL_URL') +secret = env('GRAPHQL_SECRET') + +jore3Username = env('JORE3_USERNAME') +jore3Password = env('JORE3_PASSWORD') +jore3DatabaseUrl = env('JORE3_DATABASE_URL') +jore3DatabaseName = env('JORE3_DATABASE_NAME') # Replace these to use different target -graphql = 'http://localhost:3201/v1/graphql' -secret = 'hasura' -def get_jore3(stopletter, stopid): - tulos = [] +def get_jore3_stops_for_area(pysakki_alue): + with pymssql.connect(jore3DatabaseUrl, jore3Username, jore3Password, jore3DatabaseName) as conn: - with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: - with conn.cursor(as_dict=True) as cursor: cursor.execute(f"""select * from jr_pysakki p @@ -19,26 +37,18 @@ def get_jore3(stopletter, stopid): inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) inner join jr_esteettomyys e on (p.soltunnus = e.tunnus) inner join jr_varustelutiedot_uusi vt on (p.soltunnus = vt.tunnus) - where s.solkirjain = '{stopletter}' and s.sollistunnus = '{stopid}' - order by p.pysviimpvm asc;""") - + where p.pysalueid = %s + order by p.pysviimpvm asc;""", params=pysakki_alue) for row in cursor: - tulos.append(row) - - if (tulos): - return tulos[0] - - return '' + yield row def get_jore3_stop_areas(): - tulos = [] - - with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: + with pymssql.connect(jore3DatabaseUrl, jore3Username, jore3Password, jore3DatabaseName) as conn: with conn.cursor(as_dict=True) as cursor: - cursor.execute(f"""select pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain from jr_pysakki p + cursor.execute("""select pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain from jr_pysakki p inner join jr_solmu s on (s.soltunnus = p.soltunnus) inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) where p.pysalueid in ( @@ -48,35 +58,9 @@ def get_jore3_stop_areas(): group by jp.pysalueid having count(*) > 1); """) - for row in cursor: - tulos.append(row) - - return tulos - - -def get_jore3_info_spots(stopletter, stopid): - tulos = [] - with pymssql.connect("localhost:1433", "sa", "P@ssw0rd", "jore3testdb") as conn: - - with conn.cursor(as_dict=True) as cursor: - - cursor.execute(f"""select ip.* from jr_pysakki p - inner join jr_solmu s on (p.soltunnus = s.soltunnus) - inner join jr_infopaikka ip on (ip.tunnus = p.soltunnus) - where s.solkirjain = '{stopletter}' and s.sollistunnus = '{stopid}' - order by p.pysviimpvm asc;""") - - - for row in cursor: - tulos.append(row) - - if (tulos): - return tulos - - return '' - + yield row def get_stop_points(): query = """query { @@ -93,27 +77,24 @@ def get_stop_points(): 'x-hasura-admin-secret': secret} response = requests.post(graphql, headers=headers, json={"query": query}) print(response) - if (json.loads(response.content)['data']): - stop_points = json.loads(response.content)['data']['service_pattern_scheduled_stop_point'] - v = [{ + json_data = response.json() + if not json_data['data']: + return {} + + stop_points = json.loads(response.content)['data']['service_pattern_scheduled_stop_point'] + result_dict = {} + + for x in stop_points: + result_dict.setdefault(x['label'], []).append({ 'label': x['label'], 'lat': x['measured_location']['coordinates'][1], 'lon': x['measured_location']['coordinates'][0], 'priority': str(x['priority']), 'validity_start': x['validity_start'], 'validity_end': x['validity_end'] - } for x in stop_points] - return v - return '' - + }) -def get_stop_points2(): - with psycopg.connect("host=localhost port=6432 dbname=jore4e2e user=dbadmin password=adminpassword") as conn: - with conn.cursor() as cur: - cur.execute(""" - select label, ST_Y(measured_location::geometry) as lat, ST_X(measured_location::geometry) as lon from service_pattern.scheduled_stop_point; - """) - return cur.fetchall() + return result_dict def update_stop_point(label, netexid): mutation = """mutation UpdateStopRef( @@ -134,14 +115,6 @@ def update_stop_point(label, netexid): print(response.content) -def update_stop_point2(label, netexid): - with psycopg.connect("host=localhost port=6432 dbname=jore4e2e user=dbadmin password=adminpassword") as conn: - with conn.cursor() as cur: - cur.execute(f""" - update service_pattern.scheduled_stop_point set stop_place_ref = '{netexid}' where label = '{label}'; - """) - - def mapStopModel(jore3model): match jore3model: case '1': @@ -201,219 +174,221 @@ def toFloat(value): return float(jsonval) return None - -def update_stop_area(label, name, stopIds): - stopAreaMutation = """ - mutation AddStopArea( - $label: String!, - $name: String, - $members: [stop_registry_VersionLessEntityRefInput] - ) { - stop_registry { - mutateGroupOfStopPlaces( - GroupOfStopPlaces: { - name: { lang: "fin", value: $label }, - description: { lang: "fin", value: $name } - members: $members - validBetween: { - fromDate: "2019-12-31T23:00:00.001+0100" - toDate: null - } - } - ) { - id - } - } +def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat): + return { + "publicCode": label, + "privateCode": { + "value": jore3row['soltunnus'], + "type": 'HSL' + }, + "description": { + "lang": "fin", + "value": jore3row['pyspaikannimi'] + }, + "geometry": { + "type": "Point", + "coordinates": [lon, lat] + }, + "alternativeNames": [ + { + "name": { + "value": jore3row['pyspaikannimir'], + "lang": 'swe' + }, + "nameType": "other" } - """ - - variables = { - "label": label, - "name": name, - "members": [ { "ref": netexId } for netexId in stopIds ] + ], + "keyValues": [ + { + "key": "stopState", + "values": "InOperation" + }, + { + "key": "mainLine", + "values": "false" + }, + { + "key": "virtual", + "values": "false" + }, + { + "key": "postalCode", + "values": [jore3row['postinro']] + }, + { + "key": "functionalArea", + "values": [str(jore3row['pyssade'])] + }, + { + "key": "streetAddress", + "values": [jore3row['pysosoite']] + }, + { + "key": "priority", + "values": ['10'] + }, + { + "key": "validityStart", + "values": [validityStart] + }, + { + "key": "validityEnd", + "values": [validityEnd] + } + ], + "accessibilityAssessment": { + "hslAccessibilityProperties": { + "curbBackOfRailDistance": toFloat(jore3row['korotus_ajorataan']), + "lowerCleatHeight": toFloat(jore3row['alapiena_korkeus']), + "platformEdgeWarningArea": mapBoolean(jore3row['varoitusalue']), + "stopAreaLengthwiseSlope": toFloat(jore3row['pituuskaltevuus']), + "stopAreaSideSlope": toFloat(jore3row['sivukaltevuus']), + "stopAreaSurroundingsAccessible": mapBoolean(jore3row['esteeton_kulku']), + "stopElevationFromSidewalk": toFloat(jore3row['korotus_kaytavaan']), + "stopType": mapStopModel(jore3row['pysakin_malli']) + }, + "limitations": { + "audibleSignalsAvailable": "FALSE", + "escalatorFreeAccess": "FALSE", + "liftFreeAccess": "FALSE", + "stepFreeAccess": "FALSE", + "wheelchairAccess": "FALSE" + } + }, + "placeEquipments": { + "shelterEquipment": ([ + { + "enclosed": jore3row['pysakkityyppi'] == '01' or jore3row['pysakkityyppi'] == '02', + "shelterType": mapStopType(jore3row['pysakkityyppi']), + "shelterElectricity": mapStopElectricity(jore3row['sahko']), + "shelterLighting": True, + "shelterCondition": mapStopCondition(jore3row['katos_kunto']), + "timetableCabinets": toFloat(jore3row['kpl_lisavarusteet']) if jore3row['lisavarusteet'] == '01' else 0, + "trashCan": mapBoolean(jore3row['roska_astia']), + "shelterHasDisplay": mapBoolean(jore3row['nayttolaitteet']), + "bicycleParking": jore3row['lisavarusteet'] == '03' or jore3row['lisavarusteet'] == '04', + "leaningRail": False, + "outsideBench": False, + "shelterFasciaBoardTaping": False + } + ] * jore3row['kpl_pysakkityyppi']) if jore3row['kpl_pysakkityyppi'] else None, + "generalSign": { + "numberOfFrames": toFloat(jore3row['kpl_kilvet']) + } + } } - headers = {'content-type': 'application/json; charset=UTF-8', - 'x-hasura-admin-secret': secret} - response = requests.post(graphql, headers=headers, json={"query": stopAreaMutation, "variables": variables}) - print(response.content) - - -def update_stop_place(label, lat, lon, priority, validityStart, validityEnd, jore3result): - stopMutation = """ - mutation AddStop( - $label: String!, - $idNumber: String!, - $elyCode: String!, +def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInput): + stopMutation2 = """ + mutation AddStopPlace( + $privateCode: String!, $stopName: String!, $shortName: String, $longName: String, - $location: String, $stopNameSwe: String, $shortNameSwe: String, $longNameSwe: String, - $locationSwe: String, - $postalCode: String, - $streetAddress: String, - $functionalArea: String, - $priority: String, $validityStart: String, $validityEnd: String, $coordinates: stop_registry_Coordinates, - $hslAccessibilityProperties: stop_registry_HslAccessibilityPropertiesInput, - $shelterEquipment: [stop_registry_ShelterEquipmentInput], - $generalSign: [stop_registry_GeneralSignInput] + $quays: [stop_registry_QuayInput] ) { stop_registry { mutateStopPlace( StopPlace: { - accessibilityAssessment: { - hslAccessibilityProperties: $hslAccessibilityProperties - limitations: { - audibleSignalsAvailable: FALSE, - escalatorFreeAccess: FALSE, - liftFreeAccess: FALSE, - stepFreeAccess: FALSE, - wheelchairAccess: FALSE - } - }, geometry: { type: Point, coordinates: $coordinates }, - description: {lang: "fin", value: $location}, alternativeNames: [ { name: {lang: "fin", value: $longName}, nameType: alias }, { name: {lang: "swe", value: $longNameSwe}, nameType: alias }, - { name: {lang: "swe", value: $locationSwe}, nameType: other }, { name: {lang: "swe", value: $stopNameSwe}, nameType: translation } ], name: {lang: "fin", value: $stopName}, - publicCode: $idNumber, - privateCode: {value: $elyCode, type: "ELY"}, + privateCode: {value: $privateCode, type: "HSL"}, keyValues: [ - { key: "stopState", values: "InOperation" }, - { key: "mainLine", values: "false" }, - { key: "virtual", values: "false" }, - { key: "postalCode", values: [$postalCode] }, - { key: "functionalArea", values: [$functionalArea] }, - { key: "streetAddress", values: [$streetAddress] }, - { key: "priority", values: [$priority] }, { key: "validityStart", values: [$validityStart] }, { key: "validityEnd", values: [$validityEnd] } ], - weighting: interchangeAllowed, - submode: railReplacementBus, - quays: [ - { - publicCode: $label, - placeEquipments: { - shelterEquipment: $shelterEquipment, - generalSign: $generalSign - } - } - ], + quays: $quays, transportMode: bus }) { id + quays { + publicCode + id + } } } } """ - - variables = { - "label": label, - "idNumber": jore3result['soltunnus'], - "elyCode": jore3result['elynumero'], + variables2 = { + "privateCode": jore3result['pysalueid'], "stopName": jore3result['pysnimi'], "longName": jore3result['pysnimipitka'], - "location": jore3result['pyspaikannimi'], "stopNameSwe": jore3result['pysnimir'], "longNameSwe": jore3result['pysnimipitkar'], - "locationSwe": jore3result['pyspaikannimir'], - "postalCode": jore3result['postinro'], - "streetAddress": jore3result['pysosoite'], - "functionalArea": str(jore3result['pyssade']), "coordinates": [lon, lat], - "priority": priority, "validityStart": validityStart, "validityEnd": validityEnd, - "hslAccessibilityProperties": { - "curbBackOfRailDistance": toFloat(jore3result['korotus_ajorataan']), - "lowerCleatHeight": toFloat(jore3result['alapiena_korkeus']), - "platformEdgeWarningArea": mapBoolean(jore3result['varoitusalue']), - "stopAreaLengthwiseSlope": toFloat(jore3result['pituuskaltevuus']), - "stopAreaSideSlope": toFloat(jore3result['sivukaltevuus']), - "stopAreaSurroundingsAccessible": mapBoolean(jore3result['esteeton_kulku']), - "stopElevationFromSidewalk": toFloat(jore3result['korotus_kaytavaan']), - "stopType": mapStopModel(jore3result['pysakin_malli']) - }, - "generalSign": { - "numberOfFrames": toFloat(jore3result['kpl_kilvet']) - }, - "shelterEquipment": ([ - { - "enclosed": jore3result['pysakkityyppi'] == '01' or jore3result['pysakkityyppi'] == '02', - "shelterType": mapStopType(jore3result['pysakkityyppi']), - "shelterElectricity": mapStopElectricity(jore3result['sahko']), - "shelterLighting": True, - "shelterCondition": mapStopCondition(jore3result['katos_kunto']), - "timetableCabinets": toFloat(jore3result['kpl_lisavarusteet']) if jore3result['lisavarusteet'] == '01' else 0, - "trashCan": mapBoolean(jore3result['roska_astia']), - "shelterHasDisplay": mapBoolean(jore3result['nayttolaitteet']), - "bicycleParking": jore3result['lisavarusteet'] == '03' or jore3result['lisavarusteet'] == '04', - "leaningRail": False, - "outsideBench": False, - "shelterFasciaBoardTaping": False - } - ] * jore3result['kpl_pysakkityyppi']) if jore3result['kpl_pysakkityyppi'] else None - + "quays": quayInput } + headers = {'content-type': 'application/json; charset=UTF-8', - 'x-hasura-admin-secret': secret} - response = requests.post(graphql, headers=headers, json={"query": stopMutation, "variables": variables}) + 'x-hasura-admin-secret': secret} + response = requests.post(graphql, headers=headers, json={"query": stopMutation2, "variables": variables2}) + print(response) print(response.content) + if (json.loads(response.content)['data']): - return json.loads(response.content)['data']['stop_registry']['mutateStopPlace'][0]['id'] - return '' + return json.loads(response.content)['data']['stop_registry']['mutateStopPlace'][0]['quays'] -stops = get_stop_points() -print(f"Found {len(stops)} stop points") + return {} + +stopPoints = get_stop_points() +print(f"Found {len(stopPoints)} stop points") added = 0 -labelAssociation = {} - -for stop in stops: - jore3stop = get_jore3(stop['label'][0], stop['label'][1:]) - if (jore3stop): - netexId = update_stop_place(stop['label'], stop['lat'], stop['lon'], stop['priority'], stop['validity_start'], stop['validity_end'], jore3stop) - if (netexId): - update_stop_point(stop['label'], netexId) - labelAssociation[stop['label']] = netexId - # TODO: Infospots - #infospots = get_jore3_info_spots(stop[0][0], stop[0][1:]) - #for infospot in infospots: - # update_info_spot(stop[0]) - added += 1 - -print(f"Added {added} stop place definitions") - -addedAreas = 0 - -stopAreas = get_jore3_stop_areas() - -collectedAreas = {} -areaNames = {} - -for area in stopAreas: - if (area['sollistunnus']): - label = area['solkirjain'] + area['sollistunnus'] - if (label in labelAssociation): - collectedAreas.setdefault(area['pysalueid'], []).append(labelAssociation.get(label)) - areaNames[area['pysalueid']] = area['nimi'] - -for area, stops in collectedAreas.items(): - if (stops): - update_stop_area(area, areaNames.get(area), stops) - addedAreas += 1 +for stopArea in get_jore3_stop_areas(): + quayInput = [] + latCoords = [] + lonCoords = [] + validityStarts = [] + validityEnds = [] + lastStop = None + for stop in get_jore3_stops_for_area(stopArea['pysalueid']): + try: + stopLabel = stop['solkirjain'] + stop['sollistunnus'] + if not stopLabel in stopPoints: + continue + stopPoint = stopPoints[stopLabel][0] + lat = stopPoint['lat'] + lon = stopPoint['lon'] + validityStart = stopPoint['validity_start'] + validityEnd = stopPoint['validity_end'] + quayInput.append(quayInputForJore3Stop(stop, stopPoint['label'], validityStart, validityEnd , lon, lat)) + latCoords.append(lat) + lonCoords.append(lon) + validityStarts.append(validityStart) + validityEnds.append(validityEnd) + lastStop = stop + except: + print(f"Failed to handle stop {stop}") + if (len(lonCoords) > 0 and len(latCoords) > 0 and len(validityStarts) > 0 and len(validityEnds) > 0): + + # Average coordinates of quays for the stop place + stopPlaceLon = sum(lonCoords) / len(lonCoords) + stopPlaceLat = sum(latCoords) / len(latCoords) + + # Use min / max validity period of the stop points for the stop place + stopPlaceValidityStart = min(validityStarts) + stopPlaceValidityEnd = max(validityEnds) + + netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastStop, quayInput) + if (netexIds): + added += 1 + for netexAssociation in netexIds: + update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) + -print(f"Added {addedAreas} stop area definitions") +print(f"Added {added} stop places") diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..8195cd39 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +certifi==2024.8.30 +charset-normalizer==3.4.0 +django-environ==0.12.0 +idna==3.10 +pymssql==2.3.2 +requests==2.32.3 +simplejson==3.19.3 +typing_extensions==4.12.2 +urllib3==2.2.3 From 9ccc2654eff989feeffef444526ccb8d201a8edc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20M=C3=A4kinen?= Date: Wed, 26 Mar 2025 18:02:01 +0200 Subject: [PATCH 03/18] Dockerize the stop import script --- README.md | 39 ++++--------------- stop-registry-importer/Dockerfile | 11 ++++++ .../importer.py | 2 +- .../requirements.txt | 0 .../run-stop-registry-importer.sh | 4 ++ 5 files changed, 24 insertions(+), 32 deletions(-) create mode 100644 stop-registry-importer/Dockerfile rename importer.py => stop-registry-importer/importer.py (99%) rename requirements.txt => stop-registry-importer/requirements.txt (100%) create mode 100755 stop-registry-importer/run-stop-registry-importer.sh diff --git a/README.md b/README.md index 9591cd64..b1fd2cb7 100644 --- a/README.md +++ b/README.md @@ -532,42 +532,17 @@ creates the source MSSQL database (_docker/mssql_init/populate.sql_) was changed --- -## Jore3 stop import script +## Jore 3 stop import script ### Requirements -You need to have Python 3 installed on your system to run the script - -#### Virtual environment - -To run Python scripts with required libraries you should setup a virtual environment which contains the requirements for the script. To setup an environment, run: - -`python3 -m venv LOCATION/OF/ENVIRONMENT/HERE` - -Where you should replace the location with one you want to use. For example a directory under your home directory. -To use the environment you can either source the virtual environment by running: - -`source LOCATION/OF/ENVIRONMENT/HERE/bin/activate` - -Which allows you to use the binaries directly as `python importer.py` - -Or you can use the virtual environment python directly: `LOCATION/OF/ENVIRONMENT/HERE/bin/python importer.py` - -#### Script setup - -You need to run the `import.py` script using Python 3 and it requires the following libraries: - -- pymssql -- requests -- simplejson - -They can be installed by running `pip install -r requirements.txt` +You need to have Docker installed on your system to run the script ### How to use -To run the stop registry importer script you need to have a Jore3 database, a populated Jore4 routes database, Jore4 Hasura and Jore4 Tiamat running. +To run the stop registry importer script you need to have a Jore 3 database, a populated Jore 4 routes database and the `jore4-hasura` and `jore4-tiamat` microservices running. -By default the script runs from the local jore3 test database and uses the base local Jore4 Hasura instance as the target. +By default the script runs from the local Jore 3 `mssqltestdb` database and uses the base local `jore4-hasura` service as the target. You can change the source database and target Hasura instance by creating a `.env` file in the same directory as the script. Set the values for variables you want to set: @@ -581,6 +556,8 @@ JORE3_DATABASE_URL= JORE3_DATABASE_NAME= ``` -You should have run the base Jore3 importer first which ensures the Jore4 database has the required scheduled stop points. Then run the stop registry import script which will match scheduled stop points in the Jore4 routes database with stops in the Jore3 database and generate GraphQL mutations to Hasura/Tiamat according to the data. The script will also link the generated stop registry stops with the scheduled stop points by their NeTEx ID using Hasura for the mutation. +You should have run the base Jore 3 importer first which ensures the Jore 4 database has the required scheduled stop points. Then run the stop registry import script which will match scheduled stop points in the Jore 4 routes database with stops in the Jore 3 database and generate GraphQL mutations to Hasura/Tiamat according to the data. The script will also link the generated stop registry stops with the scheduled stop points by their NeTEx ID using Hasura for the mutation. + +Running the script will produce multiple errors as there are many stops in the Jore 3 database with overlapping validity. These can be ingored as only the most recent one is the one which ends up being imported. -Running the script will produce multiple errors as there are many stops in the Jore3 database with overlapping validity. These can be ingored as only the most recent one is the one which ends up being imported. +To run the script simply run `run-stop-registry-importer.sh` in the stop-registry-importer directory, this will create and run a Docker container with the environment set up. diff --git a/stop-registry-importer/Dockerfile b/stop-registry-importer/Dockerfile new file mode 100644 index 00000000..1598c2a8 --- /dev/null +++ b/stop-registry-importer/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.12 + +WORKDIR /app +COPY requirements.txt . + +RUN pip install --no-cache-dir -r requirements.txt + +COPY importer.py . +COPY .env . + +CMD ["python", "importer.py"] diff --git a/importer.py b/stop-registry-importer/importer.py similarity index 99% rename from importer.py rename to stop-registry-importer/importer.py index e0100926..5227c9d0 100644 --- a/importer.py +++ b/stop-registry-importer/importer.py @@ -15,7 +15,7 @@ JORE3_DATABASE_NAME=(str,'jore3testdb') ) -environ.Env.read_env(os.path.dirname(os.path.join(os.path.dirname(os.path.abspath(__file__)), '.env'))) +environ.Env.read_env('.env') graphql = env('GRAPHQL_URL') secret = env('GRAPHQL_SECRET') diff --git a/requirements.txt b/stop-registry-importer/requirements.txt similarity index 100% rename from requirements.txt rename to stop-registry-importer/requirements.txt diff --git a/stop-registry-importer/run-stop-registry-importer.sh b/stop-registry-importer/run-stop-registry-importer.sh new file mode 100755 index 00000000..5b03cec2 --- /dev/null +++ b/stop-registry-importer/run-stop-registry-importer.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +docker build -t stop-registry-importer . +docker run --network="host" stop-registry-importer From d82ac7a481177122c1dc06bb658dc2860273044f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20M=C3=A4kinen?= Date: Tue, 1 Apr 2025 08:18:06 +0300 Subject: [PATCH 04/18] Fetch all stop data at once in stop registry importer --- stop-registry-importer/importer.py | 154 +++++++++++++++++------------ 1 file changed, 91 insertions(+), 63 deletions(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 5227c9d0..0a559956 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -1,10 +1,10 @@ #!/usr/bin/env python3 +import datetime import pymssql import requests import simplejson as json import environ -import os env = environ.Env( GRAPHQL_URL=(str,'http://localhost:3201/v1/graphql'), @@ -25,38 +25,45 @@ jore3DatabaseUrl = env('JORE3_DATABASE_URL') jore3DatabaseName = env('JORE3_DATABASE_NAME') -# Replace these to use different target +def get_jore3_stops(): -def get_jore3_stops_for_area(pysakki_alue): + stopPlaces = [] with pymssql.connect(jore3DatabaseUrl, jore3Username, jore3Password, jore3DatabaseName) as conn: with conn.cursor(as_dict=True) as cursor: - cursor.execute(f"""select * from jr_pysakki p - inner join jr_solmu s on (p.soltunnus = s.soltunnus) - inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) - inner join jr_esteettomyys e on (p.soltunnus = e.tunnus) - inner join jr_varustelutiedot_uusi vt on (p.soltunnus = vt.tunnus) - where p.pysalueid = %s - order by p.pysviimpvm asc;""", params=pysakki_alue) + cursor.execute(f"""SELECT * FROM jr_pysakki p + INNER JOIN jr_solmu s ON (p.soltunnus = s.soltunnus) + INNER JOIN jr_lij_pysakkialue pa ON (p.pysalueid = pa.pysalueid) + INNER JOIN jr_varustelutiedot_uusi vt ON (p.soltunnus = vt.tunnus) + LEFT JOIN jr_esteettomyys e ON (p.soltunnus = e.tunnus) + ORDER BY p.pysviimpvm ASC;""") - for row in cursor: - yield row + stopPlaces = cursor.fetchall() + + print(f"Found {len(stopPlaces)} stop places") + + stopPlacesByArea = {} + + for x in stopPlaces: + stopPlacesByArea.setdefault(x['pysalueid'], []).append(x) + + return stopPlacesByArea def get_jore3_stop_areas(): with pymssql.connect(jore3DatabaseUrl, jore3Username, jore3Password, jore3DatabaseName) as conn: with conn.cursor(as_dict=True) as cursor: - cursor.execute("""select pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain from jr_pysakki p - inner join jr_solmu s on (s.soltunnus = p.soltunnus) - inner join jr_lij_pysakkialue pa on (p.pysalueid = pa.pysalueid) - where p.pysalueid in ( - select jp.pysalueid from jr_pysakki jp - inner join jr_lij_pysakkialue jlp on (jp.pysalueid = jlp.pysalueid) - where jlp.verkko = 1 - group by jp.pysalueid - having count(*) > 1); + cursor.execute("""SELECT pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain FROM jr_pysakki p + INNER JOIN jr_solmu s ON (s.soltunnus = p.soltunnus) + INNER JOIN jr_lij_pysakkialue pa ON (p.pysalueid = pa.pysalueid) + WHERE p.pysalueid IN ( + SELECT jp.pysalueid FROM jr_pysakki jp + INNER JOIN jr_lij_pysakkialue jlp ON (jp.pysalueid = jlp.pysalueid) + WHERE jlp.verkko = 1 + GROUP BY jp.pysalueid + HAVING COUNT(*) > 1); """) for row in cursor: @@ -76,7 +83,6 @@ def get_stop_points(): headers = {'content-type': 'application/json; charset=UTF-8', 'x-hasura-admin-secret': secret} response = requests.post(graphql, headers=headers, json={"query": query}) - print(response) json_data = response.json() if not json_data['data']: return {} @@ -112,8 +118,11 @@ def update_stop_point(label, netexid): headers = {'content-type': 'application/json; charset=UTF-8', 'x-hasura-admin-secret': secret} response = requests.post(graphql, headers=headers, json={"query": mutation, "variables": variables}) - print(response.content) - + formatted = response.json() + if formatted['data']: + print(f"Scheduled stop point {label} reference updated") + else: + print(f"Scheduled stop point {label} reference update failed") def mapStopModel(jore3model): match jore3model: @@ -337,58 +346,77 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp 'x-hasura-admin-secret': secret} response = requests.post(graphql, headers=headers, json={"query": stopMutation2, "variables": variables2}) - print(response) - print(response.content) + formatted = response.json() - if (json.loads(response.content)['data']): - return json.loads(response.content)['data']['stop_registry']['mutateStopPlace'][0]['quays'] + if formatted['data']: + return formatted['data']['stop_registry']['mutateStopPlace'][0]['quays'] + if formatted['errors']: + if formatted['errors'][0]['message']: + print(formatted['errors'][0]['message']) + else: + print(f"Stop place {jore3result['pysalueid']} update failed!") return {} +startTime = datetime.datetime.now() + stopPoints = get_stop_points() print(f"Found {len(stopPoints)} stop points") added = 0 +stopPlaces = get_jore3_stops() +index = 0 + for stopArea in get_jore3_stop_areas(): + index += 1 + print(f"Handling stop area {index}") quayInput = [] latCoords = [] lonCoords = [] validityStarts = [] validityEnds = [] lastStop = None - for stop in get_jore3_stops_for_area(stopArea['pysalueid']): - try: - stopLabel = stop['solkirjain'] + stop['sollistunnus'] - if not stopLabel in stopPoints: - continue - stopPoint = stopPoints[stopLabel][0] - lat = stopPoint['lat'] - lon = stopPoint['lon'] - validityStart = stopPoint['validity_start'] - validityEnd = stopPoint['validity_end'] - quayInput.append(quayInputForJore3Stop(stop, stopPoint['label'], validityStart, validityEnd , lon, lat)) - latCoords.append(lat) - lonCoords.append(lon) - validityStarts.append(validityStart) - validityEnds.append(validityEnd) - lastStop = stop - except: - print(f"Failed to handle stop {stop}") - if (len(lonCoords) > 0 and len(latCoords) > 0 and len(validityStarts) > 0 and len(validityEnds) > 0): - - # Average coordinates of quays for the stop place - stopPlaceLon = sum(lonCoords) / len(lonCoords) - stopPlaceLat = sum(latCoords) / len(latCoords) - - # Use min / max validity period of the stop points for the stop place - stopPlaceValidityStart = min(validityStarts) - stopPlaceValidityEnd = max(validityEnds) - - netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastStop, quayInput) - if (netexIds): - added += 1 - for netexAssociation in netexIds: - update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) - - + try: + for stop in stopPlaces[stopArea['pysalueid']]: + try: + stopLabel = stop['solkirjain'] + stop['sollistunnus'] + if not stopLabel in stopPoints: + continue + stopPoint = stopPoints[stopLabel][0] + lat = stopPoint['lat'] + lon = stopPoint['lon'] + validityStart = stopPoint['validity_start'] + validityEnd = stopPoint['validity_end'] + quayInput.append(quayInputForJore3Stop(stop, stopPoint['label'], validityStart, validityEnd , lon, lat)) + latCoords.append(lat) + lonCoords.append(lon) + validityStarts.append(validityStart) + validityEnds.append(validityEnd) + lastStop = stop + except: + print(f"Failed to handle stop {stop['soltunnus']}: {stop['pysnimi']}") + if (len(lonCoords) > 0 and len(latCoords) > 0 and len(validityStarts) > 0 and len(validityEnds) > 0): + + # Average coordinates of quays for the stop place + stopPlaceLon = sum(lonCoords) / len(lonCoords) + stopPlaceLat = sum(latCoords) / len(latCoords) + + # Use min / max validity period of the stop points for the stop place + stopPlaceValidityStart = min(validityStarts) + stopPlaceValidityEnd = max(validityEnds) + + netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastStop, quayInput) + if (netexIds): + added += 1 + for netexAssociation in netexIds: + update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) + + except Exception as e: + print(f"Failed to handle stop area {stopArea['pysalueid']}") + print(e) + +endTime = datetime.datetime.now() +duration = endTime - startTime print(f"Added {added} stop places") +minutes = duration.seconds // 60 +print(f"Import took {minutes} minutes {duration.seconds - (minutes * 60)} seconds") From e067d805009e32cbdbb71a4020467ad4f8a5df38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20M=C3=A4kinen?= Date: Tue, 1 Apr 2025 08:22:33 +0300 Subject: [PATCH 05/18] Insert HSL zones in startup script --- development.sh | 9 ++ netex/hsl-zones-netex.xml | 289 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 298 insertions(+) create mode 100644 netex/hsl-zones-netex.xml diff --git a/development.sh b/development.sh index 8456dbd1..5e52fe01 100755 --- a/development.sh +++ b/development.sh @@ -245,6 +245,12 @@ generate_jooq() { mvn clean generate-sources -Pci } +upload_zones() { + echo "Uploading municipality and fare zones to Tiamat" + + curl --silent --output /dev/null --show-error --fail -X POST -H"Content-Type: application/xml" -d @netex/hsl-zones-netex.xml localhost:3010/services/stop_places/netex +} + ### Control flow COMMAND=${1:-} @@ -258,11 +264,13 @@ case $COMMAND in start) download_docker_compose_bundle start_all + upload_zones ;; start:deps) download_docker_compose_bundle start_deps + upload_zones ;; generate:jooq) @@ -281,6 +289,7 @@ case $COMMAND in recreate) remove start_deps + upload_zones ;; list) diff --git a/netex/hsl-zones-netex.xml b/netex/hsl-zones-netex.xml new file mode 100644 index 00000000..bfd41618 --- /dev/null +++ b/netex/hsl-zones-netex.xml @@ -0,0 +1,289 @@ + + + + + 2024-01-01T12:00:00.0Z + HSL + + + + + + + Europe/Helsinki + fin + + + + + + A + A + implicitSpatialProjection + + + + 60.2079910036819 24.8484820045409 60.2112900029313 24.8704320050331 60.2093899485873 24.8795321773682 60.2098540239441 24.8810043954365 60.2108942877413 24.8815716176361 60.2109773158505 24.8821583200505 60.211470575107 24.8833952251096 60.2115037205203 24.884287960521 60.2113536137783 24.8853916148312 60.2112289011929 24.8865384123179 60.2114406429714 24.8874570410097 60.2116457387599 24.8882657077962 60.2122922299025 24.8885359387826 60.2124185720595 24.8888915909742 60.2127023621244 24.8885788580279 60.2147710033792 24.8889570049619 60.2163727822781 24.8914526092506 60.2170281227497 24.8928225150471 60.2177444597391 24.8939633311429 60.2191431222573 24.896004723839 60.2192490147303 24.8964310933204 60.219743003337 24.8963940052791 60.2200320841134 24.8963462602717 60.2205154454315 24.8969303897258 60.2229307879256 24.898625850103 60.2235820814479 24.8997923814133 60.2238900048199 24.899096860132 60.224308906331 24.8996938858642 60.2246482223376 24.9003183705964 60.2244651833216 24.9008535913202 60.2254341587595 24.9010775521874 60.2258119261795 24.902344453234 60.2261891468117 24.905214430002 60.226205958738 24.905733253387 60.2263436017759 24.9057158047406 60.2269940031708 24.909350004699 60.2269244891739 24.9157361517021 60.2239610035975 24.922923004693 60.2236070034605 24.931483004637 60.2252459477423 24.9337112296896 60.2290800031397 24.9437590050741 60.2304864663774 24.9506179868307 60.2301610386011 24.9510358595173 60.2305731268484 24.9525719402429 60.2304614958014 24.9532663967269 60.2301993542169 24.9535181412493 60.2308808298865 24.9560672291194 60.2306327707858 24.956898705411 60.2292653992788 24.9598523452096 60.2267760030102 24.9636150052283 60.2232527838889 24.9631239654987 60.2227348562287 24.9674810989736 60.2231415233626 24.9680991292714 60.2223490030041 24.9708930045086 60.2191949447909 24.9740872516254 60.2189441922208 24.9761057367904 60.2187018564056 24.9793735466519 60.2176457942181 24.9803034042787 60.216948293529 24.9823199262237 60.2166902411618 24.9834888973948 60.215620520071 24.9849737644278 60.214531429382 24.9837323465706 60.2128700029483 24.9847240047091 60.2080930029898 24.9858390048663 60.2030730035164 24.9880530044426 60.1952850032004 24.9968550047547 60.1908730029867 25.0158060045435 60.1864470030268 25.0216220047517 60.1784383054834 25.0209777187468 60.1685210028421 24.9994090047218 60.1598680031059 24.9936520045364 60.1532760030851 25.002369004526 60.1384830034879 25.0260230044581 60.1331830036927 25.0286110050939 60.1247214741168 24.9748865816505 60.1234668497154 24.9217441796502 60.1304140037034 24.8356710046132 60.136518003703 24.8368280049086 60.1428410030099 24.8380220051115 60.1441630037197 24.8382720049491 60.1486720030106 24.839143004646 60.149962003144 24.8393780046912 60.1502630035349 24.8394350046218 60.1510700029783 24.8408590046394 60.15518900317 24.84091600457 60.1570290034858 24.8409420048697 60.1580110029055 24.8413410052832 60.1590160033859 24.8417490052125 60.1625810032108 24.8431790046074 60.1652450028546 24.8442800050183 60.1654220029232 24.8443490046029 60.1655850032454 24.8444120048102 60.1657190031295 24.8444050044874 60.1660200035204 24.8443910047411 60.1705050035031 24.8442350047417 60.1723200035653 24.8441730045806 60.1725430030572 24.844166005157 60.1731350033778 24.8441460051341 60.1732530034234 24.8441410049035 60.1732770036309 24.8441400048574 60.1735660034684 24.8441200048344 60.1794280030999 24.8437230045131 60.1807870037173 24.8436500047439 60.1810210037164 24.8436370050438 60.1854250035611 24.8433860051601 60.1951330033855 24.8428340048854 60.1957610035675 24.8427970049779 60.1960230030592 24.842931004862 60.1963690028273 24.8431070048844 60.1980520030975 24.8439670049734 60.1992170028624 24.8445620045329 60.2019230035438 24.8459430052656 60.2024760029652 24.8462260048263 60.2028800036093 24.8464320044335 60.2029670031247 24.8464760046639 60.2037350034677 24.8468690048008 60.2040000030977 24.8468440045472 60.20405400289 24.8468390052159 60.2044460029807 24.8468010052623 60.2079910036819 24.8484820045409 + + + + + + B + B + implicitSpatialProjection + + + + 60.2454690034918 25.1470510045003 60.2380500031052 25.1598480046817 60.2327849464681 25.1627718760213 60.231751557988 25.1670552902695 60.2288320033943 25.1819340051503 60.2245600033415 25.2031270049074 60.2210640031013 25.2021900048649 60.2182050034582 25.2014240046142 60.215075003009 25.2046420046249 60.2106160033259 25.2092260046765 60.19973700346 25.220404004841 60.1979750031439 25.2195380044754 60.1545040030574 25.1980550048347 60.1466560035718 25.1942180050569 60.1401515966189 25.1343565171396 60.1331830036927 25.0286110050939 60.1384830034879 25.0260230044581 60.1532760030851 25.002369004526 60.1598680031059 24.9936520045364 60.1685210028421 24.9994090047218 60.1784383054834 25.0209777187468 60.1864470030268 25.0216220047517 60.1908730029867 25.0158060045435 60.1952850032004 24.9968550047547 60.2030730035164 24.9880530044426 60.2080930029898 24.9858390048663 60.2128700029483 24.9847240047091 60.214531429382 24.9837323465706 60.215620520071 24.9849737644278 60.2166902411618 24.9834888973948 60.216948293529 24.9823199262237 60.2176457942181 24.9803034042787 60.2187018564056 24.9793735466519 60.2189441922208 24.9761057367904 60.2191949447909 24.9740872516254 60.2223490030041 24.9708930045086 60.2231415233626 24.9680991292714 60.2227453998804 24.9674860560367 60.2232527838889 24.9631239654987 60.2267760030102 24.9636150052283 60.2292653992788 24.9598523452096 60.2306327707858 24.956898705411 60.2308808298865 24.9560672291194 60.2301993542169 24.9535181412493 60.2304614958014 24.9532663967269 60.2305731268484 24.9525719402429 60.2301610386011 24.9510358595173 60.2304864663774 24.9506179868307 60.2290800031397 24.9437590050741 60.2252459477423 24.9337112296896 60.2236070034605 24.931483004637 60.2239610035975 24.922923004693 60.2269244891739 24.9157361517021 60.2269940031708 24.909350004699 60.2263436017759 24.9057158047406 60.226205958738 24.905733253387 60.2261891468117 24.905214430002 60.2258119261795 24.902344453234 60.2254341587595 24.9010775521874 60.2244651833216 24.9008535913202 60.2246482223376 24.9003183705964 60.224308906331 24.8996938858642 60.2238900048199 24.899096860132 60.2235820814479 24.8997923814133 60.2229307879256 24.898625850103 60.2205154454315 24.8969303897258 60.2200320841134 24.8963462602717 60.219743003337 24.8963940052791 60.2192490147303 24.8964310933204 60.2191431222573 24.896004723839 60.2177444597391 24.8939633311429 60.2170281227497 24.8928225150471 60.2163727822781 24.8914526092506 60.2147710033792 24.8889570049619 60.2127023621244 24.8885788580279 60.2124185720595 24.8888915909742 60.2122922299025 24.8885359387826 60.2116457387599 24.8882657077962 60.2114406429714 24.8874570410097 60.2112289011929 24.8865384123179 60.2113536137783 24.8853916148312 60.2115037205203 24.884287960521 60.211470575107 24.8833952251096 60.2109773158505 24.8821583200505 60.2108942877413 24.8815716176361 60.2098540239441 24.8810043954365 60.2093899485873 24.8795321773682 60.2112900029313 24.8704320050331 60.2079910036819 24.8484820045409 60.2044460029807 24.8468010052623 60.20405400289 24.8468390052159 60.2040000030977 24.8468440045472 60.2037350034677 24.8468690048008 60.2029670031247 24.8464760046639 60.2028800036093 24.8464320044335 60.2024760029652 24.8462260048263 60.2019230035438 24.8459430052656 60.1992170028624 24.8445620045329 60.1980520030975 24.8439670049734 60.1963690028273 24.8431070048844 60.1960230030592 24.842931004862 60.1957610035675 24.8427970049779 60.1951330033855 24.8428340048854 60.1854250035611 24.8433860051601 60.1810210037164 24.8436370050438 60.1807870037173 24.8436500047439 60.1794280030999 24.8437230045131 60.1735660034684 24.8441200048344 60.1732770036309 24.8441400048574 60.1732530034234 24.8441410049035 60.1731350033778 24.8441460051341 60.1725430030572 24.844166005157 60.1723200035653 24.8441730045806 60.1705050035031 24.8442350047417 60.1660200035204 24.8443910047411 60.1657190031295 24.8444050044874 60.1655850032454 24.8444120048102 60.1654220029232 24.8443490046029 60.1652450028546 24.8442800050183 60.1625810032108 24.8431790046074 60.1590160033859 24.8417490052125 60.1580110029055 24.8413410052832 60.1570290034858 24.8409420048697 60.15518900317 24.84091600457 60.1510700029783 24.8408590046394 60.1502630035349 24.8394350046218 60.149962003144 24.8393780046912 60.1486720030106 24.839143004646 60.1441630037197 24.8382720049491 60.1428410030099 24.8380220051115 60.136518003703 24.8368280049086 60.1304140037034 24.8356710046132 60.1247630209967 24.8157595405704 60.117356564354 24.7981111062426 60.1096684535364 24.7768513363202 60.1150490029092 24.7708280046088 60.1183500031502 24.7666300052706 60.1215730033915 24.7636280053283 60.1272950028621 24.7558830051966 60.13098900324 24.7514560051906 60.1358750037285 24.747145005138 60.1426070030108 24.734749004563 60.1467640031563 24.7293920048372 60.1493700037228 24.7250300051307 60.1517290036906 24.7236060051131 60.1548770031712 24.7219270050273 60.1558190034443 24.7208660046624 60.1568960036477 24.7199950049655 60.1584000028579 24.7189610049465 60.1605220035876 24.7172200046995 60.162341002935 24.7152340048455 60.163697003414 24.7132810047146 60.1654740035225 24.7107660047474 60.1673850035152 24.7083750051025 60.1693250030465 24.7057160047898 60.1718290034058 24.7031490051226 60.1741730035813 24.7008600047855 60.1765170028575 24.6993590048143 60.1791230034239 24.6979650052808 60.1813620032539 24.6977210048206 60.1846380032413 24.6975780045213 60.1909820035167 24.6976540053282 60.1989920032784 24.6992590046993 60.2003400033885 24.6998580053427 60.2029040029175 24.7009790048772 60.2041020033049 24.7003750049026 60.2065290037106 24.6986160047249 60.2076210037064 24.6976260049362 60.2082790034733 24.6935010053672 60.2100530034434 24.6917280045438 60.2205810033107 24.6972260053759 60.2329340037014 24.7059880047427 60.2347110029105 24.7089870045467 60.2382680032658 24.717590004675 60.2408980031404 24.7250430048309 60.2432010032238 24.7310450046233 60.2446590030106 24.7330270051922 60.2470750029091 24.7380670046886 60.2629270036783 24.7620680053342 60.2648730034864 24.7658310052967 60.2693040036769 24.7744000047564 60.2729260034324 24.7845770046251 60.2739170032671 24.7871160047998 60.2799474836895 24.7970765927107 60.2816734535671 24.8008224515949 60.2837533021732 24.8055105229923 60.2847879766838 24.8083947207398 60.2858582391665 24.8117311245918 60.2868871769018 24.814275264392 60.2873722424351 24.8180487027855 60.2877652443706 24.8213739424535 60.2862725496385 24.8301070726833 60.290866412555 24.8396012452014 60.2917895720312 24.8404092267045 60.2924595876399 24.8411912043107 60.2925908859607 24.8416869016293 60.2928456468092 24.8430391654252 60.2917198637808 24.8439811719936 60.2917598818132 24.8446541346806 60.2924812037446 24.8494252944419 60.2942541362195 24.8501560736439 60.2946952887566 24.8546812913086 60.295424510333 24.8542627890965 60.296485039453 24.8580857081889 60.2957419116599 24.8592729302016 60.2971325774066 24.8623860090071 60.2972790023242 24.8671080028321 60.2979750029441 24.8708600049853 60.298552578139 24.8802478506578 60.2990820944631 24.8840858163074 60.2989152342507 24.890869134503 60.2989738295786 24.8978828158394 60.2984514691601 24.9080848798134 60.2987369967151 24.9093668076321 60.2990736911979 24.910878560797 60.3003385984476 24.9127574621872 60.3005000555332 24.9138329272478 60.2990552191231 24.9172351515811 60.2983870156483 24.918204493043 60.2976104114913 24.9214844167724 60.2974891235243 24.9313954565351 60.2966978082573 24.934933265358 60.2965074937259 24.9373008142812 60.2965096125287 24.9390630969844 60.2966971004909 24.9397630384335 60.2970484305407 24.9412661122414 60.2969874942775 24.942218952043 60.2963887868131 24.9426633079653 60.2961148344321 24.9436093902612 60.296090301826 24.949674437925 60.2958393172308 24.9529999069202 60.2958993892454 24.9551938228367 60.2968415424033 24.9574915600875 60.2968340033866 24.9594750049675 60.2960891363047 24.959842114522 60.2955221002647 24.9607184714803 60.2949465971078 24.9616078749036 60.2944063707575 24.9632301241709 60.2939174273474 24.9647697005613 60.2925803531008 24.9684269924118 60.2913886155922 24.9712807499067 60.2904331497701 24.9741196739838 60.2897846756223 24.9764099999216 60.2898276074582 24.9783663392352 60.2902760031351 24.9798050044974 60.2901080034816 24.9829440044623 60.2891982025351 24.9836467320112 60.2879390689329 24.9846772507545 60.2874808400688 24.9856584120062 60.2872536038708 24.9875909912313 60.2872770033311 24.9907980051239 60.288077941344 24.9968984671905 60.2870029160518 25.0079152638784 60.2874610028231 25.0082890050336 60.2876270032836 25.0084390047563 60.2876670033296 25.0084910044563 60.2877070033755 25.0085650051709 60.2877440032832 25.0086570049169 60.287774002868 25.0087640044553 60.2877880035136 25.008842004455 60.2878010032138 25.0089670048235 60.2878290036057 25.0095290046599 60.2878010032138 25.0104480047717 60.2877950029371 25.0105550052094 60.2877750029141 25.0107090051166 60.2877460033754 25.0108390048163 60.2877180029835 25.0109300045161 60.2876900034909 25.0110060044236 60.2876580029146 25.0110740048615 60.2874040028925 25.011536004583 60.2873760033999 25.0115920044675 60.2873560033769 25.0116520045364 60.2873400035384 25.0117250052049 60.2873300030772 25.0118050043975 60.2873290030311 25.0118820052504 60.2873330032156 25.0119430044662 60.2873500031002 25.0120860047654 60.2873730032616 25.0122090050416 60.2874010036534 25.0123280051334 60.2874350034227 25.0124410049485 60.2874630029153 25.012517004856 60.2878740029829 25.0135970051977 60.2879770032362 25.0137570044822 60.2881310031433 25.0139310044124 60.2882150034197 25.014037004804 60.2885440033032 25.0145580045483 60.288623003349 25.0147490052624 60.2887350031179 25.0151210044309 60.2888410035096 25.0155290052595 60.2889000035324 25.015810004728 60.2889690031171 25.0162550045649 60.2889820028172 25.0165360049327 60.2889590035552 25.0172190049532 60.2889360033939 25.017543004606 60.2889040028175 25.0178910044663 60.2888730031866 25.0181160049497 60.2888630036248 25.0183410045338 60.288868002956 25.0184970045332 60.2888900030712 25.0186490052474 60.2889220036476 25.018789004509 60.2890150034397 25.0190460046694 60.289089003255 25.0192390045764 60.2891730035313 25.0195120045754 60.2892170028625 25.0197270045977 60.2893100035539 25.0205760050786 60.2893180030235 25.0209060050082 60.2892900035309 25.0212240043844 60.2892630031851 25.0214090048217 60.2891990029317 25.0216870050513 60.2891070031857 25.0219720047043 60.2888830036478 25.0225280051633 60.2887730030717 25.0227620051625 60.2886180031184 25.0230340051153 60.288462003119 25.0232720043995 60.2883070031657 25.0234590049292 60.2881900031662 25.0236520048362 60.2880940032357 25.0238600045356 60.2880060027749 25.0241040049959 60.2879650035821 25.0242320046034 60.2879190032594 25.0244140049024 60.287855003006 25.0247420047398 60.2876990030067 25.0257680043899 60.2876640031913 25.0259770050348 60.2876290033759 25.0261410045038 60.2875440030534 25.0264170046411 60.2874790036532 25.0265790049172 60.2874020028003 25.0267120047553 60.2872890029852 25.0268560051006 60.2871930030547 25.0269120049851 60.2870670035394 25.0269620045929 60.2868510034711 25.0270850048692 60.2868040031023 25.027113005261 60.2867270031487 25.0271410047536 60.2865830028034 25.0271870050763 60.2865340032417 25.0272150045689 60.2864400034035 25.0272880052373 60.2863870036574 25.0273240050988 60.2863320029197 25.0274030051446 60.2863130029428 25.0275370050288 60.2862760030351 25.0276520049362 60.2860970028744 25.0280590048193 60.2859750035436 25.0283780051409 60.2858920033133 25.0285900050247 60.285869003152 25.0286870050013 60.28582800306 25.0287930044936 60.2857750033138 25.028886005185 60.2857150032448 25.0290340048155 60.2856780033372 25.0291490047229 60.2855650035222 25.0296250050899 60.2855240034301 25.0298420052044 60.2854680035456 25.0302310051568 60.2854520028077 25.030365005041 60.2854330028309 25.0310590046694 60.2854190030846 25.0312340046456 60.2853990030616 25.0313640052447 60.2853690034768 25.0314840044833 60.2852860032465 25.0316730051052 60.2852440031083 25.0319180047122 60.2851610028781 25.0321400050572 60.2851110032702 25.0322420052644 60.2850320032244 25.0324590044795 60.2850000035474 25.0325790046174 60.2849630036397 25.0328380048701 60.2849580034092 25.0331250046153 60.2849630036397 25.0333100050527 60.2849810035705 25.0335550046598 60.2850380035011 25.0338140049125 60.2851000036623 25.0340040046811 60.2851710033392 25.0341890051185 60.285221002947 25.0342960046569 60.2853040031773 25.0344250052099 60.2853640032462 25.0344900046101 60.2854260034074 25.0345370049789 60.2855660035682 25.0345650044714 60.285708002922 25.0345560049557 60.2858460029907 25.0345110046792 60.2859750035436 25.0344560048408 60.2861170028974 25.0344330046795 60.2862780031274 25.0344430051406 60.2863990033114 25.0344800050482 60.2864450036341 25.0345040052557 60.286508002942 25.0345580050479 60.2866910032872 25.0347450046783 60.2868320034942 25.0348980045393 60.2870460034703 25.0351130045615 60.2871430034469 25.0351900045151 60.2872050036081 25.0352610050913 60.2872710030544 25.035390004745 60.2873090030081 25.0354890048138 60.2873510031463 25.0356530051821 60.2873640028465 25.0357400046975 60.2873890031001 25.0360420051345 60.2873930032845 25.0361920048572 60.2873910031923 25.0363380043954 60.2873660029388 25.0366950046708 60.2873710031693 25.0367820050855 60.2873990035612 25.0369960050616 60.2874480031229 25.0371840047381 60.2875000028229 25.0373390046914 60.2875580027996 25.0374670051982 60.2876050031684 25.0375520046214 60.2876280033298 25.0375960048518 60.2877290034908 25.0377270045976 60.2878270035135 25.0378120049202 60.2878990032365 25.0378560051506 60.2879770032362 25.0378830045971 60.2878480035826 25.0380010046427 60.2878310027986 25.0380160044351 60.2872920031235 25.0385090046869 60.2872430035618 25.0385540049634 60.2868260032175 25.0389340045007 60.2864780033572 25.0392560049607 60.2864330030807 25.0392980050989 60.286407002781 25.0393230044531 60.2863980032653 25.0393310048221 60.2858820028522 25.0398110044743 60.2856540031298 25.0400230052575 60.2854270034535 25.0402340050953 60.2853120035462 25.0403420046798 60.2851940035005 25.0404660050022 60.2847360030642 25.040879005162 60.2841370033201 25.040646005209 60.2840570032282 25.0407320046783 60.283621002907 25.0411990046304 60.2835850030455 25.0412370045842 60.283287002793 25.0415560049058 60.2831900028164 25.0420690051805 60.2831570030933 25.0422560048108 60.2830680034857 25.0422240051338 60.2829470033016 25.0423630052485 60.2828100032791 25.0425180052018 60.2827790036482 25.0425550051094 60.2826350033028 25.0427230047629 60.2825970033491 25.0427700051317 60.2823520028427 25.0430650052459 60.282222003143 25.0431520047613 60.282182003097 25.043179005107 60.2820440030284 25.0432920049221 60.2819050029136 25.0434070048295 60.281888003029 25.0433570052217 60.2813160036307 25.0437920045974 60.2806991343576 25.0465361895936 60.2802986122912 25.050126876754 60.2794975528698 25.0611383161804 60.2784414475149 25.0738423840189 60.2772780035771 25.0784020052484 60.2719860032515 25.0922430050107 60.2717381339078 25.0939033324728 60.2720942465523 25.09447185779 60.2720942465523 25.0953994518233 60.2704917068269 25.0984814581528 60.2711594417549 25.1001870341044 60.270773640691 25.1015634644824 60.2694975000097 25.1047651597843 60.2673754336294 25.1060219002905 60.2665990030416 25.1084880050175 60.2630708349511 25.1183726316917 60.260550462434 25.1228453532305 60.2572551944717 25.1254519041821 60.2546070031108 25.1296740044518 60.2542629971397 25.1309486711443 60.2525140028191 25.1335280050135 60.2454690034918 25.1470510045003 + + + + + + C + C + implicitSpatialProjection + + + + 60.2952250020323 25.2544970023349 60.2948990022872 25.2528070026411 60.2944960016892 25.2507030027414 60.2935110021311 25.2455570019541 60.2921670022054 25.247933002706 60.2902740021435 25.2512880027392 60.2901150020058 25.2515680021616 60.2896440018692 25.2512930020704 60.2896310021691 25.2538900022219 60.2858130023682 25.2458290028063 60.2853200021165 25.2447770019571 60.2848830017492 25.2438660022143 60.2837260023532 25.2459720022062 60.2829840023099 25.2473270026391 60.2818260019685 25.2471140027091 60.281336001855 25.2471200020865 60.2785110019812 25.2470850022711 60.2789610020487 25.2447840022799 60.2783400021894 25.2441280026053 60.2776030023767 25.2461240020211 60.277718002284 25.2466940022265 60.2757500023608 25.2522920022741 60.2754670019007 25.2521130021134 60.2748940024563 25.2517610020686 60.2748690022028 25.251744002184 60.2741980018364 25.2513340021625 60.2735190020004 25.2509030020719 60.2727170018882 25.2456720027608 60.2722970023049 25.2429860021024 60.2718360017302 25.2432770020321 60.2718360017302 25.241613002638 60.2718700023988 25.240600002688 60.2718790019144 25.24030600262 60.2718900024217 25.239650002046 60.2719220020988 25.2376100023997 60.2719620021447 25.234847002687 60.2713980022161 25.2344740025732 60.2672330017017 25.2318780024679 60.2656950018229 25.2320780026977 60.2653050018244 25.2318870019836 60.2625490024346 25.2325600024422 60.262515001766 25.231577002077 60.2621560022977 25.2307000021034 60.2616910024379 25.2306560027724 60.2614190015857 25.2306110024958 60.2614310021391 25.2302340021975 60.2614140022545 25.2299410021756 60.2614120021622 25.22978400213 60.2613920021392 25.2285740020886 60.2613820016781 25.2282090023436 60.2612320019554 25.2276290025765 60.2611030023018 25.2273410027851 60.2599230018451 25.2288570025487 60.2599970016603 25.2290980019712 60.2598490020299 25.2292850025009 60.2590110020561 25.2303660019895 60.2565500018811 25.233531002254 60.2562690024126 25.2374520023081 60.2543390024431 25.2385900026266 60.2531530017097 25.2392900025316 60.2505490021348 25.2408250022721 60.2492300024627 25.2407560026874 60.2472670018707 25.2408630022258 60.2463180021741 25.2409150019258 60.2459900023368 25.2370870025632 60.2451300022478 25.2270680027862 60.2444510024119 25.2258930025601 60.2438300016533 25.224819002495 60.2428370017263 25.2231010024094 60.2393650016935 25.2266310024189 60.2298950020528 25.2043890019509 60.2278350023835 25.2039870022984 60.226555001812 25.2036880019998 60.2245600024422 25.2031270022094 60.2288320015957 25.1819340024523 60.231751557988 25.1670552902695 60.2327849464681 25.1627718760213 60.2380500022059 25.1598480019837 60.2454690016932 25.1470510027017 60.2525140019197 25.1335280023155 60.2542629971397 25.1309486711443 60.2546070022115 25.1296740026531 60.2572551944717 25.1254519041821 60.260550462434 25.1228453532305 60.2630708349511 25.1183726316917 60.2665990021423 25.1084880023195 60.2673754336294 25.1060219002905 60.2694975000097 25.1047651597843 60.270773640691 25.1015634644824 60.2711594417549 25.1001870341044 60.2704917068269 25.0984814581528 60.2720942465523 25.0953994518233 60.2720942465523 25.09447185779 60.2717381339078 25.0939033324728 60.2719860023522 25.0922430023128 60.2772780017784 25.0784020025504 60.2784414475149 25.0738423840189 60.2794975528698 25.0611383161804 60.2802986122912 25.050126876754 60.2806991343576 25.0465361895936 60.2813160018321 25.0437920027987 60.2818880021297 25.0433570025237 60.2819050020143 25.0434070021315 60.2820440021291 25.0432920022242 60.2821820021977 25.0431790024091 60.2822220022437 25.0431520020633 60.2823520019434 25.0430650025479 60.2825970024497 25.0427700024337 60.2826350024035 25.0427230020649 60.2827790018495 25.0425550024115 60.2828100023797 25.0425180025039 60.2829470024023 25.0423630025506 60.283068001687 25.0422240024358 60.2831570021939 25.0422560021129 60.2831900019171 25.0420690024825 60.2832870018937 25.0415560022078 60.2835850021462 25.0412370027855 60.2836210020077 25.0411990028318 60.2840570023288 25.0407320019804 60.2841370024208 25.040646002511 60.2847360021648 25.0408790024641 60.2851940017019 25.0404660023042 60.2853120017475 25.0403420019819 60.2854270016549 25.0402340023974 60.2856540022305 25.0400230025596 60.2858820019529 25.0398110026757 60.286398002366 25.0393310021241 60.2864070018817 25.0393230026545 60.2864330021814 25.0392980024009 60.2864780024579 25.0392560022627 60.2868260023182 25.0389340027021 60.2872430017632 25.0385540022655 60.2872920022242 25.0385090019889 60.2878310018993 25.0380160026365 60.2878480017839 25.0380010028441 60.2879770023368 25.0378830027984 60.2878990023372 25.0378560024526 60.2878270017148 25.0378120022222 60.2877290016921 25.037727002799 60.2876280024304 25.0375960021538 60.2876050022691 25.0375520028227 60.2875580019003 25.0374670025002 60.2875000019236 25.0373390019934 60.2874480022236 25.0371840020401 60.2873990017626 25.0369960023637 60.28737100227 25.0367820023876 60.2873660020394 25.0366950019728 60.287391002293 25.0363380025968 60.2873930023852 25.0361920021592 60.2873890022008 25.0360420024365 60.2873640019472 25.0357400019996 60.287351002247 25.0356530024841 60.2873090021088 25.0354890021158 60.2872710021551 25.035390002047 60.2872050018095 25.0352610023934 60.2871430016482 25.0351900027165 60.2870460016717 25.0351130027629 60.2868320016956 25.0348980027407 60.2866910023879 25.0347450019803 60.2865080020427 25.03455800235 60.2864450018354 25.0345040025577 60.2863990024121 25.0344800023503 60.2862780022281 25.0344430024427 60.2861170019981 25.0344330019815 60.285975001745 25.0344560021429 60.2858460020914 25.0345110019812 60.2857080020227 25.0345560022578 60.2855660017696 25.0345650026728 60.2854260016088 25.0345370022809 60.2853640023469 25.0344900028114 60.2853040022779 25.0344250025119 60.2852210020476 25.034296001959 60.2851710024399 25.0341890024206 60.2851000018637 25.0340040019831 60.2850380017024 25.0338140022145 60.2849810017719 25.0335550019618 60.2849630018411 25.0333100023548 60.2849580016106 25.0331250028167 60.2849630018411 25.0328380021721 60.2850000017488 25.0325790028188 60.2850320023251 25.0324590026809 60.2851110023709 25.0322420025664 60.2851610019787 25.0321400023593 60.285244002209 25.0319180020142 60.2852860023472 25.0316730024072 60.2853690016781 25.0314840026846 60.2853990021623 25.0313640025468 60.2854190021853 25.031234002847 60.2854330019316 25.0310590019714 60.2854520019084 25.030365002343 60.2854680017469 25.0302310024588 60.2855240016314 25.0298420025065 60.2855650017235 25.029625002392 60.2856780024379 25.0291490020249 60.2857150023455 25.0290340021176 60.2857750024145 25.0288860024871 60.2858280021606 25.028793002695 60.2858690022527 25.0286870023033 60.285892002414 25.0285900023268 60.285975001745 25.0283780024429 60.2860970019751 25.0280590021213 60.2862760021358 25.0276520022381 60.2863130020435 25.0275370023309 60.2863320020203 25.0274030024466 60.2863870018587 25.0273240024009 60.2864400016048 25.0272880025394 60.2865340023424 25.0272150027702 60.2865830019041 25.0271870023783 60.2867270022494 25.0271410020557 60.286804002203 25.0271130025631 60.2868510016725 25.0270850021712 60.2870670017408 25.0269620027942 60.2871930021554 25.0269120022871 60.2872890020859 25.0268560024027 60.2874020019009 25.0267120020573 60.2874790018545 25.0265790022193 60.2875440021541 25.0264170028424 60.2876290015772 25.0261410027052 60.2876640022919 25.0259770023368 60.2876990021073 25.0257680025913 60.2878550021067 25.0247420020418 60.2879190023601 25.0244140022045 60.2879650017834 25.0242320028048 60.2880060018755 25.0241040022979 60.2880940023364 25.023860002737 60.2881900022668 25.0236520021382 60.2883070022664 25.0234590022312 60.2884620022197 25.0232720026009 60.2886180022191 25.0230340024173 60.2887730021724 25.0227620024645 60.2888830018491 25.0225280024654 60.2891070022864 25.0219720020064 60.2891990020324 25.0216870023533 60.2892630022858 25.0214090021238 60.2892900017322 25.0212240025857 60.2893180021242 25.0209060023102 60.2893100017552 25.0205760023807 60.2892170019632 25.019727002799 60.2891730017327 25.0195120027768 60.2890890023556 25.0192390027778 60.2890150016411 25.0190460019714 60.288922001849 25.0187890027104 60.2888900021719 25.0186490025495 60.2888680020567 25.0184970027345 60.2888630018261 25.0183410027352 60.2888730022873 25.0181160022518 60.2889040019182 25.0178910026677 60.2889360015952 25.0175430028074 60.2889590017566 25.0172190022552 60.2889820019179 25.0165360022348 60.2889690022178 25.0162550027662 60.2889000017337 25.01581000203 60.2888410017109 25.0155290025615 60.2887350022186 25.0151210026322 60.2886230024496 25.0147490025645 60.2885440024039 25.0145580027497 60.2882150016211 25.014037002106 60.288131002244 25.0139310026137 60.2879770023368 25.0137570026836 60.2878740020836 25.0135970024997 60.287463002016 25.0125170021579 60.2874350016241 25.0124410022505 60.2874010018548 25.0123280024354 60.2873730023622 25.0122090023436 60.2873500022009 25.0120860020674 60.2873330023162 25.0119430026675 60.2873290021318 25.0118820025525 60.2873300021779 25.0118050025989 60.2873400017397 25.0117250025069 60.2873560015782 25.0116520027378 60.2873760016013 25.0115920026689 60.2874040019931 25.0115360027843 60.2876580020152 25.0110740021635 60.2876900016923 25.011006002625 60.2877180020842 25.0109300027175 60.2877460015768 25.0108390021183 60.2877750020148 25.0107090024186 60.2877950020378 25.0105550025114 60.2878010023144 25.0104480020737 60.287829001807 25.0095290028613 60.2878010023144 25.0089670021255 60.2877880017149 25.0088420026564 60.2877740019687 25.0087640026567 60.2877440023839 25.0086570022189 60.2877070015769 25.0085650024729 60.2876670024303 25.0084910026577 60.2876270023843 25.0084390020584 60.2874610019238 25.0082890023356 60.2870029160518 25.0079152638784 60.288077941344 24.9968984671905 60.2872770024318 24.9907980024259 60.2872536038708 24.9875909912313 60.2874808400688 24.9856584120062 60.2879390689329 24.9846772507545 60.2891982025351 24.9836467320112 60.290108001683 24.9829440026637 60.2902760022358 24.9798050026988 60.2898276074582 24.9783663392352 60.2897846756223 24.9764099999216 60.2904331497701 24.9741196739838 60.2913886155922 24.9712807499067 60.2925803531008 24.9684269924118 60.2939174273474 24.9647697005613 60.2944063707575 24.9632301241709 60.2949465971078 24.9616078749036 60.2955221002647 24.9607184714803 60.2960891363047 24.959842114522 60.296834001588 24.9594750022696 60.2968415424033 24.9574915600875 60.2958993892454 24.9551938228367 60.2958393172308 24.9529999069202 60.296090301826 24.949674437925 60.2961148344321 24.9436093902612 60.2963887868131 24.9426633079653 60.2969874942775 24.942218952043 60.2970484305407 24.9412661122414 60.2966971004909 24.9397630384335 60.2965096125287 24.9390630969844 60.2965074937259 24.9373008142812 60.2966978082573 24.934933265358 60.2974891235243 24.9313954565351 60.2976104114913 24.9214844167724 60.2983870156483 24.918204493043 60.2990552191231 24.9172351515811 60.3005000555332 24.9138329272478 60.3003385984476 24.9127574621872 60.2990736911979 24.910878560797 60.298791107124 24.9096097549863 60.2984514691601 24.9080848798134 60.2989738295786 24.8978828158394 60.2989152342507 24.890869134503 60.2990820944631 24.8840858163074 60.298552578139 24.8802478506578 60.2979750020448 24.8708600022873 60.2972790023242 24.8671080028321 60.2971325774066 24.8623860090071 60.2957419116599 24.8592729302016 60.296485039453 24.8580857081889 60.295424510333 24.8542627890965 60.2946952887566 24.8546812913086 60.2942541362195 24.8501560736439 60.2924812037446 24.8494252944419 60.2917598818132 24.8446541346806 60.2917198637808 24.8439811719936 60.2928456468092 24.8430391654252 60.2925908859607 24.8416869016293 60.2924595876399 24.8411912043107 60.2917895720312 24.8404092267045 60.290866412555 24.8396012452014 60.2862725496385 24.8301070726833 60.2877652443706 24.8213739424535 60.2873722424351 24.8180487027855 60.2868871769018 24.814275264392 60.2858582391665 24.8117311245918 60.2847879766838 24.8083947207398 60.2837533021732 24.8055105229923 60.2816734535671 24.8008224515949 60.2799474836895 24.7970765927107 60.2739170023678 24.7871160021019 60.2729260016337 24.7845770028265 60.2693040018783 24.7744000020585 60.2648730016878 24.7658310025988 60.2629270018797 24.7620680026363 60.2470750020098 24.7380670028899 60.2446590021113 24.7330270024942 60.2432010023244 24.7310450028247 60.2408980022411 24.7250430021329 60.2382680023665 24.7175900028764 60.2347110020112 24.708987002748 60.2329340019027 24.7059880020447 60.2205810024114 24.697226002678 60.2100530016448 24.6917280027452 60.2082790016747 24.6935010026692 60.2076210019077 24.6976260022383 60.206529001912 24.6986160020269 60.2041020024055 24.7003750022046 60.2029040020182 24.7009790021793 60.2003400024892 24.6998580026448 60.198992002379 24.6992590029007 60.1909820017181 24.6976540026301 60.184638002342 24.6975780027227 60.1813620023546 24.6977210021226 60.1791230016253 24.6979650025829 60.1765170019581 24.6993590021163 60.1741730017827 24.7008600020875 60.1718290016072 24.7031490024246 60.1693250021472 24.7057160020919 60.1673850017165 24.7083750024045 60.1654740017239 24.7107660020494 60.1636970016154 24.7132810020167 60.1623410020356 24.7152340021476 60.160522001789 24.7172200029009 60.1584000019586 24.7189610022485 60.1568960018491 24.7199950022676 60.1558190016457 24.7208660028638 60.1548770022719 24.7219270023293 60.151729001892 24.7236060024151 60.1493700019241 24.7250300024327 60.1467640022569 24.7293920021393 60.1426070021115 24.7347490027643 60.1358750019298 24.7471450024399 60.1309890023406 24.7514560024925 60.1272950019628 24.7558830024986 60.1215730024921 24.7636280026302 60.1183500022509 24.7666300025726 60.1150490020099 24.7708280028101 60.1096684535364 24.7768513363202 60.0903138236241 24.7968557479944 60.0645708811413 24.6693643267024 60.0756080025074 24.6598960024986 60.0756390021383 24.6598680021066 60.0757090017691 24.6598030027064 60.0757880018149 24.659730002038 60.0758190023452 24.6597020025454 60.0758250017225 24.6596960022687 60.0759290020219 24.6596000023383 60.0759560023677 24.6595760021308 60.0759830018142 24.6595510027766 60.0760010017449 24.6595350020388 60.0761040019981 24.6594400021544 60.0761360016752 24.6594110026157 60.0761620019749 24.6593870024083 60.0762610020437 24.6592960027084 60.0764320018355 24.6591390026629 60.0764690017431 24.6591050028936 60.0765640016274 24.6590180024789 60.0765940021116 24.658990002087 60.0766400024342 24.6589480028481 60.0766590024111 24.6589300029174 60.0766880019498 24.6589030025715 60.0766950022726 24.6588970022949 60.0767290020419 24.6588650026178 60.0767600016728 24.6588370022259 60.0768080020877 24.6587930028948 60.0768170025027 24.6587850025259 60.0768270020645 24.6587760021109 60.0797440016844 24.6560960026285 60.0800370017063 24.6558260027679 60.0811540019557 24.6547950028871 60.0814200016318 24.6545540025652 60.0849930018256 24.651271002255 60.0851130019635 24.6511610025782 60.0852750022396 24.6510130020484 60.0853940023314 24.6509030023717 60.0855450021002 24.6507600020725 60.0859250016376 24.6504090020738 60.0865140018198 24.6498660022143 60.0912490016402 24.6454750020698 60.0913270016399 24.6454030023467 60.092137002121 24.6446530028339 60.0922670018207 24.644766002649 60.092350002051 24.6448480028331 60.1007760021109 24.6530880024094 60.1061690016981 24.6547480025184 60.1149730021024 24.6494190022852 60.1173790024391 24.6479620025444 60.1179290017221 24.6476680024764 60.1263380018974 24.6431680027012 60.1277030018921 24.642438002312 60.1276880020997 24.6422160028663 60.1300400017448 24.6411550025014 60.1304830023887 24.6409490028942 60.1312100017403 24.6400560021828 60.1312450024549 24.6400130028978 60.131309001809 24.6399350028981 60.132725002357 24.6381970027895 60.1334660023542 24.6393290028313 60.13423600189 24.640504002158 60.1345930021654 24.6410500021559 60.1362880020897 24.6404240020661 60.1367040023878 24.6387410026952 60.1376960022687 24.6347310021341 60.1421960020439 24.6316560024226 60.1460630023058 24.6290150020408 60.1494040016934 24.6267310028335 60.1526530022343 24.619830002053 60.1531340019327 24.6188090026334 60.1550900022019 24.614652002488 60.1557970024298 24.6131490024246 60.1565510021271 24.6106020027802 60.15666200185 24.6102260025281 60.1568690024026 24.6095250025768 60.156936001895 24.6093010021396 60.1570400021944 24.6089540023254 60.1598860021373 24.5994150022007 60.1598770017223 24.5925540023654 60.1639120016376 24.5890060024251 60.1653020018859 24.5877830026835 60.1637700022839 24.5770110023559 60.1679260023832 24.5673820025774 60.1726190020653 24.5722930024202 60.1740850022211 24.5701160027514 60.1752230016403 24.568472002481 60.1753480020087 24.568291002228 60.1754530023542 24.5682040027126 60.1757630022608 24.5679990022522 60.1759390022832 24.567954002875 60.1761550023516 24.5679500026905 60.1762860020974 24.5679290026214 60.1763730016128 24.5679010022295 60.176657002119 24.5678160028064 60.1767360021648 24.5677890024605 60.1770040019332 24.5676890023456 60.1772010020247 24.567600002738 60.177356001978 24.5676020028302 60.1775870018387 24.5677030020919 60.1778930024602 24.5678910026677 60.1781530018596 24.5681500029203 60.1784220016741 24.5684900024118 60.1786050020193 24.5687390022032 60.1787510024569 24.5688900028714 60.1789580021102 24.5689960023637 60.1791400024092 24.5690240027556 60.1792930022703 24.5690760024556 60.1793350024085 24.5689410025253 60.1794740016239 24.5685160027114 60.1808810017569 24.5637180026837 60.1809200017567 24.5635630027305 60.1809360024945 24.563499002477 60.18102300201 24.5631540027551 60.1810480022635 24.563053002594 60.1816840019152 24.5604480020737 60.1818020019609 24.5599720026059 60.1820840023749 24.5588150023106 60.1820760020059 24.5575970027995 60.1822920020743 24.5570270025942 60.1825360016352 24.5563210024124 60.182877002072 24.5547610024184 60.1832550024165 24.553379002539 60.1840540023903 24.5538400022144 60.1844810022965 24.5529200020565 60.1847980016265 24.5522260024281 60.1849870022484 24.5518140023144 60.1851050022941 24.5515450024999 60.1856960016692 24.5501950022976 60.1861380022671 24.5492130028778 60.1863160023817 24.5488220028332 60.1877790023991 24.545539002523 60.1894920022542 24.5416900021919 60.1897780019533 24.5410460021713 60.1910980016715 24.5380800020905 60.1921160018521 24.5358450024449 60.1935780018234 24.5325970028495 60.1941410017059 24.5313720021163 60.194677002142 24.5302090024435 60.1953830023238 24.5286770028414 60.1956080019078 24.5287530027489 60.1960360018601 24.5280840024748 60.1953930018856 24.5266960023187 60.1954160020469 24.5248310026487 60.1954620023696 24.5210360021098 60.1955190023002 24.5163880027042 60.1957100021149 24.5203950022276 60.1958540024603 24.5234130029078 60.1960530017447 24.5275940023614 60.1960730017677 24.5279930027749 60.1963030024816 24.5327100026645 60.1963370022509 24.5334370029154 60.196369001928 24.5341190028897 60.1964677996493 24.5362056998332 60.1982387455217 24.534485377698 60.1990035712579 24.5336060053129 60.2003729311659 24.5339577544469 60.2019971499486 24.5346172839605 60.2045595001209 24.5364067999339 60.2047150000972 24.5359573997143 60.2048301996541 24.535562600034 60.2049709003868 24.5352193000307 60.2050860999436 24.5350304001329 60.2053169882884 24.534830857658 60.205542399762 24.5347042996638 60.205622899877 24.5344988999043 60.2056655996877 24.5338466000406 60.2060129997002 24.5339599002293 60.2063392998189 24.5282794997991 60.2061616999026 24.5280926998183 60.2062194004051 24.527711499686 60.2053490023546 24.5247470023723 60.2128630017262 24.5032010025243 60.2153630019011 24.5025980025958 60.2164020021507 24.506692002534 60.2165630023807 24.5068620022796 60.2173900018472 24.507714002899 60.2198760022757 24.5102630026355 60.2199030017222 24.5106020020808 60.2209070021565 24.5115910027226 60.2211140018098 24.5115720027458 60.2245050017045 24.5151210027321 60.2264860022273 24.5170630023557 60.2280130015988 24.5199420029211 60.228884002195 24.5215150026153 60.2300060017756 24.523567002815 60.2305840023499 24.5246470022574 60.230962001795 24.5253020027852 60.2310220018639 24.5254060021853 60.2335390019235 24.5253440029234 60.2414520017086 24.5251470028319 60.2444410019507 24.5250730021174 60.2463410023354 24.525026002648 60.2465810017119 24.5250190023252 60.2466810018268 24.5247860023721 60.2467620019649 24.5245850020962 60.2472670018707 24.5234190022852 60.2477330017767 24.5223320025199 60.2484210020277 24.5207330025261 60.2485610021886 24.520407002781 60.2492880024394 24.5187130029028 60.2496970024148 24.5177600021224 60.2501140018597 24.5167760026105 60.2506570017193 24.5154910027077 60.2506800018807 24.5154360028693 60.2510067876332 24.513431727892 60.2518249260795 24.5105920870552 60.2532225318944 24.5076379445356 60.2546260021883 24.5062030024666 60.254845002395 24.505691002238 60.2554310024389 24.5043340026122 60.2555140017698 24.5043370027505 60.2559200016069 24.5043420020818 60.2559580024599 24.504341002935 60.2565810024114 24.5043470023123 60.257035001764 24.504353002589 60.2575350023386 24.5043630021509 60.2588210022875 24.5043690024276 60.259274001594 24.5043650022431 60.2597220024685 24.5043720025659 60.2601710024898 24.5043800029349 60.2607570016344 24.5043920025889 60.2610680024864 24.5043860023122 60.2619380021371 24.5044030021969 60.2620520019984 24.504405002289 60.262078002298 24.504405002289 60.2630460019715 24.5044070023813 60.2659740020986 24.5044120026119 60.2680460023212 24.5044160027963 60.2686410018808 24.5044210021276 60.2691340021325 24.5044280024504 60.2695620020848 24.5044300025426 60.2700750023595 24.5044310025888 60.2739219558337 24.4982649088985 60.2750566817205 24.4954206716267 60.2760292724331 24.4953879794717 60.2763048346005 24.4972841379526 60.278302927638 24.4999243999911 60.2792071743717 24.4983350146493 60.2799575659889 24.4987246800999 60.2803014757326 24.5004749415654 60.2796924377558 24.5014360704184 60.2809566201519 24.5046726162483 60.2815400733158 24.5049995395971 60.2822073280058 24.5054732394984 60.2814972871701 24.5133230196417 60.2812910024778 24.5155690027074 60.2814910018083 24.5155000022233 60.2820260021983 24.5153180028236 60.2835130024232 24.5148100027794 60.2839470017528 24.5146620022497 60.2849960024636 24.5143070020665 60.2854920019544 24.5114580028846 60.285641001631 24.5105980027956 60.2857880021147 24.5097480022686 60.285935001699 24.5088970025947 60.2861240023209 24.5078020024605 60.2875920016696 24.4993020025854 60.2894590023312 24.5050390027478 60.2901340019827 24.507127002809 60.2905760016812 24.5084810022965 60.2913140024393 24.5107480025184 60.2916400021844 24.5117400023992 60.2917340020226 24.5120360025595 60.2926000023883 24.5117240025607 60.293683001969 24.5113580027697 60.2956400022844 24.5106810021266 60.2965360022347 24.5103800026351 60.2979520018835 24.5094730021773 60.3208684003565 24.5020366997339 60.3279720022062 24.4903280024354 60.3281450020903 24.4995070021465 60.3161240017213 24.552398002266 60.3160140020446 24.5529520026329 60.3157370018612 24.5543640020971 60.3156470022074 24.5548240026257 60.3155370016314 24.5553760029003 60.3153360022548 24.5563830025736 60.3149130016338 24.5585040023579 60.3148940016569 24.5586040024728 60.3143040023279 24.5617280026453 60.3141600019825 24.5624870025732 60.3154840018852 24.566832002395 60.3195700023538 24.5800970025746 60.3221060023902 24.5886130022883 60.3241850020362 24.5956540023304 60.3259870023983 24.5976190021153 60.3274180018394 24.5991800021554 60.3290070022714 24.6009140020796 60.3295780016235 24.6015380020772 60.329631002269 24.601594002861 60.3298070022914 24.6017800024452 60.3299830023138 24.6019660029287 60.3327800017957 24.6050000025481 60.3328350016341 24.6050600026171 60.333482001793 24.6058180024989 60.3336620019999 24.6060090023137 60.334391002343 24.6069090024486 60.3352420020169 24.6079010023295 60.3353520016936 24.6079750021447 60.344068001637 24.6138220028832 60.3460600017677 24.6151920022092 60.3480420023366 24.6165600023423 60.3501690023976 24.6180250024519 60.3503610022585 24.6181570022439 60.3523750016051 24.6203720027657 60.3525450022501 24.6205590023961 60.3535430024077 24.6215670021155 60.3582130019286 24.6265720026958 60.359311002201 24.6275340020925 60.3582820024125 24.6360190021753 60.3583210024124 24.6362660027739 60.3588710016954 24.6397590028757 60.3589940019717 24.6405130025731 60.3590220023636 24.6406900026416 60.3590590022712 24.6409240026406 60.3592720022012 24.642297002105 60.3593350024085 24.6427320023801 60.3603530016898 24.6492410021706 60.360485002381 24.6500930027899 60.360505002404 24.6502220024435 60.3608020017111 24.6520920023441 60.3609780017334 24.6532120027318 60.3627690015882 24.6647090023187 60.3631150022556 24.6651270027091 60.3635120016776 24.6656080024075 60.3638040016534 24.6659610024983 60.3636640023918 24.6661380025668 60.3634930017007 24.6664590020814 60.3633690022777 24.6668870020335 60.3633280021856 24.6672980021012 60.3632850020013 24.6680000020985 60.3632090020938 24.6689020023256 60.3631640018173 24.6691560023477 60.363058002325 24.669461002923 60.3628700017492 24.6698080027372 60.3625500022808 24.670284002205 60.3620340018678 24.6708620027792 60.3615620016851 24.6713700028234 60.3614180022391 24.671490002062 60.3613960021239 24.6714980024309 60.3613090017091 24.6715140022694 60.3611780019633 24.6715470028919 60.3611080023325 24.6716590026609 60.3610070021714 24.6719030022218 60.36081000208 24.6721180022441 60.3606350021037 24.672431002289 60.3604170019431 24.6729990024021 60.3602670022204 24.6732050029086 60.3600330022213 24.6734090024236 60.3596180019693 24.6735430023078 60.3595140016699 24.6736410023304 60.3594590018315 24.6737570022839 60.3594500023158 24.6739500021909 60.3594480022236 24.6741880023745 60.3594590018315 24.6745130020734 60.3594930016008 24.6747590026259 60.3595870023383 24.6750160027864 60.3596430022228 24.6752010023245 60.3596420021767 24.6753330021164 60.3596110016464 24.6754550023466 60.3595490023846 24.6755420027613 60.3594450020852 24.6755390026229 60.3592670019706 24.6755710023 60.3591360022248 24.675612002392 60.3590400022943 24.6757150026453 60.3589870016489 24.6758370028754 60.3589810022715 24.676179002459 60.3590040024328 24.6768470026871 60.3589900017872 24.6770750024095 60.3589270015799 24.6773540026851 60.358844002249 24.6775630024306 60.3587340016729 24.6777010024993 60.3585840019502 24.6781990020824 60.3584370023658 24.6788630021259 60.3583510019972 24.6795100022848 60.3583310019742 24.6800010024444 60.3583900019971 24.6804320025349 60.3585730023422 24.6812000028779 60.3586320023651 24.6814820023926 60.358683002019 24.6817810026912 60.3586900023418 24.6820010020447 60.3586850021112 24.6822640024818 60.3586390017886 24.6826930024801 60.3585680021117 24.6830430024327 60.3583920020893 24.6833900022469 60.3583040016284 24.6836690025225 60.3582530019745 24.6841770025667 60.3582040024128 24.6844920027038 60.3580570019291 24.6849790026789 60.3580190019754 24.6853100026545 60.3580370019062 24.6857820028372 60.3581010021596 24.6861730028818 60.3582270016748 24.6864530023043 60.3583020024355 24.6866800028799 60.3583470018127 24.6868860024871 60.3583420015822 24.6870070026711 60.3582910019283 24.6872320022551 60.3582230023897 24.6874400028539 60.3579990019524 24.6879740022984 60.3577930023453 24.688618002319 60.3576510020922 24.6891660024091 60.3574940020466 24.6898470023373 60.357417002093 24.6903570024737 60.3573860024621 24.6908100026795 60.3573950019778 24.6913160026315 60.3574270016549 24.6917590023761 60.3574650016086 24.6921800029049 60.3574550020468 24.6923860025121 60.357417002093 24.6925350021887 60.3573630023008 24.6926540022804 60.3571510024169 24.6928910024179 60.3569760024406 24.6931060024401 60.3568520021183 24.6932820024625 60.3567060016807 24.6935150024155 60.3567040015885 24.6935190025999 60.356697002165 24.6935290021618 60.356657002119 24.6935930024152 60.3564100024198 24.6940940021365 60.3561480020287 24.6947090026184 60.3560630017062 24.6950120022022 60.3560160022367 24.6953900025466 60.3559970022599 24.6957460027759 60.3559360021449 24.6960490023596 60.3558630023757 24.6962830023587 60.3557270023993 24.6964010024044 60.3552520020783 24.6967170025877 60.3547420019419 24.6971900028165 60.3543050015746 24.6977310025837 60.3542590021513 24.6978110026757 60.3540740017139 24.6981310021441 60.3539150015761 24.698505002304 60.3536140020846 24.6991450021402 60.3534570020391 24.6995230024846 60.3534340018778 24.6995790023691 60.3533500016014 24.6997800026451 60.3530570015794 24.7003920020893 60.3529390024331 24.7007040020881 60.3528680018568 24.7009670025252 60.3528560022028 24.7032730027469 60.3528520020183 24.7035220025384 60.3527030023417 24.7043900020969 60.3509510015875 24.7113960023237 60.3488560021029 24.7200080028671 60.348241001621 24.7224230027194 60.3476710023149 24.7248840028944 60.3474590024311 24.7257400027989 60.3473080017629 24.7263740023584 60.3467880020647 24.7285370022809 60.3460960016292 24.7314120026618 60.3459440018143 24.732044002129 60.3458840017453 24.7322950029121 60.3454800020006 24.7339670026751 60.3433010022395 24.7429690023176 60.3428340022874 24.7449550021717 60.3417910018533 24.749221002847 60.3417840024298 24.7492880023395 60.3424350018739 24.7503480026583 60.3445000017737 24.7536760023457 60.3449020023256 24.7543250025968 60.3450690019329 24.7545900022268 60.345222001794 24.7548360027794 60.3458600024372 24.7558680027062 60.3459170023678 24.7559610024983 60.3461300022978 24.7563050021741 60.3463350018589 24.7566340020576 60.3463490016052 24.7566570022189 60.3464660016048 24.7568460028408 60.3464800022504 24.7568690021028 60.3467870020186 24.7573640024468 60.3468290021568 24.7574320028847 60.3469760017412 24.7576690021228 60.3470010019947 24.7577120023071 60.3475380015776 24.7585770026266 60.3500880022596 24.7627080024724 60.3521060017906 24.7659550020218 60.3555930016158 24.7710520023481 60.3593650019933 24.7767560027874 60.3629540020256 24.7815140027691 60.3633110283813 24.7819945662962 60.3638500091706 24.7814018501153 60.3643524891761 24.7813497388994 60.3645328644002 24.781975070793 60.365228588029 24.7815842380222 60.3655120273583 24.7825743466288 60.3643180019743 24.7833500029004 60.3658530017147 24.786611002196 60.3665150016661 24.7876250021922 60.3679940024213 24.7898930024601 60.3708420024565 24.7942040025127 60.3708710019952 24.7942530020744 60.3723330019665 24.7965040024578 60.372855001757 24.79725400287 60.3731060016407 24.7976570025687 60.3735120023771 24.7982850027507 60.3738350019838 24.798777002057 60.3741510021671 24.7992970026546 60.3741890021208 24.7993660022393 60.3743510023969 24.7996080026073 60.3746900018422 24.800121002882 60.3747230015653 24.8001890024206 60.3752870023933 24.8010700025786 60.3757740023684 24.8017920025989 60.3761710017903 24.8024100023198 60.3765060019505 24.8029390024331 60.3786540020806 24.8062330023512 60.3791790020094 24.8070430028324 60.3806330016118 24.8093060028698 60.3807120016576 24.8094270021545 60.383277002132 24.8133950025774 60.3836090021538 24.8138980023909 60.3838080023375 24.8141990027818 60.385021001618 24.8160360020599 60.385528001616 24.8168020023106 60.3874440018392 24.8197370027605 60.3891950016481 24.8223950021277 60.3900060021753 24.8236250021922 60.3913560023777 24.8256600025072 60.3916700015694 24.8261860024821 60.3924750018199 24.8274340024773 60.3931540016559 24.8284900026116 60.3944720021812 24.8305170025577 60.3944800016508 24.8305340024423 60.3945280020657 24.8308310026487 60.3945400017197 24.8309120027868 60.3953960016242 24.8357620025145 60.3977150024455 24.848917002118 60.3987700016343 24.854901002879 60.3995180019543 24.859146002586 60.4011090015792 24.8681860021823 60.4012550020168 24.8689390027328 60.4012180021091 24.8689500023408 60.4012020022706 24.8689530024791 60.4011670015559 24.8689600028019 60.4011490016252 24.8689650021332 60.4011130017637 24.8689750025944 60.401096001879 24.8689820020178 60.4010920016946 24.86898400211 60.4010750018099 24.868992002479 60.4010580019253 24.8690020020408 60.4009900023868 24.8690480023635 60.4009760017411 24.8690580028246 60.4009090022487 24.8691050022941 60.400891002318 24.8691150027552 60.4008740024333 24.869125002317 60.4008560016032 24.869133002686 60.4008390017186 24.8691390020633 60.4008210017878 24.8691430022478 60.4008130023183 24.8691440022939 60.4007950023875 24.8691460023862 60.4007770015575 24.8691460023862 60.4007590016267 24.86914500234 60.4007410016959 24.8691410021556 60.4007230017652 24.8691360028243 60.4006880019498 24.8691220021787 60.4006530021344 24.8691050022941 60.4006190023651 24.8690850022711 60.4006020015811 24.869073002617 60.4005960022038 24.8690700024787 60.4003940018818 24.8689170026177 60.4003780020432 24.8689050020643 60.4003430022278 24.8688830028483 60.4003260023432 24.8688730023872 60.4003200020665 24.8688700022489 60.4001970017903 24.8688160024566 60.4001800019056 24.8688090021338 60.4001450020903 24.8687900021569 60.4001280022056 24.8687800025951 60.400111002321 24.8687690020878 60.4000940024363 24.8687560023877 60.4000770016523 24.8687420026413 60.4000610018138 24.868727002849 60.4000530023442 24.8687180024339 60.4000380016525 24.8687000025031 60.400022001814 24.8686810025263 60.4000080020677 24.8686600024572 60.3999930022753 24.868638002342 60.3999800016758 24.8686150021807 60.3999530022293 24.868566002619 60.3998770023218 24.8684120027118 60.3998730021374 24.8684040023429 60.3996470016079 24.867939002483 60.3994540017009 24.8675540027151 60.3994370018162 24.8675200020465 60.3994330016318 24.8675120025769 60.3994260022083 24.8674990028767 60.3993020018859 24.8672370024858 60.3992890021858 24.8672120022322 60.3992630018861 24.8671620026244 60.3992500021859 24.8671380024169 60.399222001794 24.8670930021404 60.3992060019555 24.8670690028322 60.3991610016789 24.8670080027172 60.3991560023477 24.8670020024405 60.3990510020022 24.8668630023258 60.3990360022098 24.8668420022566 60.399029001887 24.8668310026487 60.3990140020946 24.8668100025796 60.3988330018416 24.8665130023732 60.3988180020492 24.8664920023041 60.3987720017266 24.8664270020046 60.3987420021417 24.8663880020047 60.3987260023032 24.866370002074 60.3986940017269 24.8663360023047 60.3986620020498 24.8663050026738 60.3986450021652 24.8662910020282 60.3986290023266 24.866278002328 60.398612002442 24.8662670027201 60.3985970017503 24.866258002305 60.3985800018656 24.8662480027432 60.3985620019349 24.8662400023742 60.3985270021195 24.8662250025819 60.3985090021887 24.8662200023513 60.3984920023041 24.8662150021207 60.3984380016125 24.8662020024206 60.3984200016818 24.8661990022822 60.3984110021661 24.866198002236 60.3983750023046 24.8661930020055 60.3983570023738 24.8661910028126 60.3983220016591 24.8661900027665 60.3983040017284 24.8661910028126 60.3982860017976 24.8661920028587 60.3982680018668 24.8661940020516 60.3982500019361 24.866198002236 60.3982320020053 24.8662040025127 60.3982150021207 24.8662110028355 60.3981970021899 24.8662210023974 60.3981800023053 24.8662320020053 60.3981640015675 24.8662460026509 60.3981500018212 24.866258002305 60.3981340019827 24.8662750021896 60.3981180021441 24.8662940021665 60.3981040023979 24.8663140021895 60.3980890017061 24.8663360023047 60.3980750019599 24.866359002466 60.3980620022597 24.8663830026735 60.3980490016601 24.8664070028809 60.39803600196 24.8664330022813 60.3980230022598 24.8664580025348 60.3980110017064 24.8664850028806 60.3980020021907 24.8665050020043 60.3979900016373 24.8665320023501 60.3978670022604 24.8668430023027 60.3978560017532 24.8668680025563 60.3977840020301 24.8670300028324 60.3977080021227 24.8671840027396 60.3976950024225 24.8672090020938 60.3976850019613 24.8672280020707 60.3976720022612 24.8672520022781 60.3976180015696 24.8673470021625 60.3975890020309 24.8673910023929 60.3975750022846 24.867412002462 60.3975590024461 24.8674310024389 60.3975440017543 24.8674500024158 60.3975280019158 24.8674670023004 60.3975270018697 24.8674690023926 60.3975190024001 24.8674770027615 60.3975030016622 24.8674940026461 60.3974540021006 24.8675400020695 60.397438002262 24.8675550027612 60.3974050016396 24.8675820022077 60.3973880017549 24.8675950028072 60.3973520018934 24.8676200021614 60.3973180021242 24.8676410022305 60.3973010022395 24.8676500026456 60.3972310017094 24.8676840024148 60.3970900024017 24.8677380022071 60.3970720015716 24.8677440024838 60.3970690023327 24.8677450025299 60.3968580015955 24.8678260026679 60.3968400016648 24.8678320020453 60.3966800023803 24.8678820025524 60.3966450016655 24.867890002022 60.3966270017348 24.8678940022065 60.3965740019887 24.8679050027138 60.3965560020579 24.8679080028521 60.3965380021272 24.8679080028521 60.3965020022657 24.867907002806 60.3964840023349 24.867910002045 60.3964770020121 24.8679120021372 60.396465002358 24.8679170023678 60.396395001828 24.8679450027597 60.3963600020126 24.8679560023677 60.3963460022662 24.867959002506 60.3963280023355 24.8679620026443 60.3963100024047 24.8679650027827 60.3962740016439 24.8679680020217 60.396131002244 24.8679620026443 60.3961280021057 24.8679620026443 60.3960020016911 24.8679540022754 60.3959130020834 24.8679410025753 60.3958950021527 24.8679370023908 60.395857002199 24.867927002829 60.3957860016228 24.8679040026676 60.395768001692 24.8678970023448 60.3955760018311 24.8678100028294 60.3955670023154 24.867806002645 60.3954620019699 24.8677620024145 60.3954440020391 24.8677560021379 60.3954260021084 24.8677500027605 60.3954200018317 24.8677490027143 60.3952420017171 24.8677050024839 60.3952240017863 24.8677000022533 60.3952080019478 24.8676950020228 60.3950310018793 24.8676340028071 60.3950130019485 24.8676290025765 60.394977002087 24.8676210022076 60.3949600022024 24.8676180020692 60.3949220022487 24.8676140027841 60.3948860023872 24.8676150028302 60.3948680015571 24.8676160028763 60.394864002272 24.8676170020231 60.3948280024105 24.8676220022537 60.3948100015804 24.8676260024381 60.3947740017189 24.8676360019999 60.3947570018343 24.8676420022766 60.3947390019035 24.8676490025994 60.3947220020189 24.8676570020691 60.3947070022264 24.8676640023918 60.3946900023418 24.8676720027607 60.3946730015578 24.8676820023226 60.3946380017425 24.8677040024378 60.3946210018578 24.8677160020919 60.3946050020193 24.8677290026914 60.3945880021346 24.8677430024376 60.3945720022961 24.867757002184 60.3945230018351 24.8678040025527 60.3944910021581 24.867838002322 60.3944760023657 24.8678560022528 60.3944450018354 24.8678930021604 60.394430002043 24.8679120021372 60.3943850017665 24.8679740022984 60.3943790023891 24.8679830027135 60.3943640016974 24.8680040027825 60.3943220015592 24.8680720023211 60.3942950021127 24.8681190026899 60.3942810023664 24.868143001998 60.3942420023666 24.8682190028048 60.3942060016058 24.8682990019974 60.3941830023438 24.8683540027351 60.3941610022285 24.8684120027118 60.3941510017674 24.8684410022505 60.3941410022055 24.8684710027346 60.3941310017444 24.8685020023656 60.3941220022287 24.8685330019965 60.3941150019058 24.8685560021578 60.3940980020212 24.8686200024112 60.3940200020215 24.8689470022024 60.3940130016987 24.8689800028249 60.3939870022984 24.8690760027554 60.3939790019294 24.8691080024324 60.3939690023676 24.8691390020633 60.3939600019526 24.8691690025475 60.3939500023907 24.8691990021323 60.3939400019296 24.8692270025242 60.3939290023217 24.8692560020629 60.3939050021142 24.8693110028006 60.3938930015609 24.869338002247 60.3938810019068 24.8693640025467 60.3938550016071 24.8694140021545 60.3938280021606 24.8694620025694 60.3938140024143 24.8694860027769 60.3937440018842 24.8695980025458 60.3937400016998 24.8696040028225 60.393578002323 24.8698330025911 60.3935630016313 24.8698540026601 60.3934910019083 24.8699620022447 60.393477002162 24.869985002406 60.3934360020699 24.8700540019906 60.3934230023697 24.8700790022442 60.3933840023699 24.8701540021056 60.3933710017704 24.8701800024052 60.3933590021163 24.870207002751 60.3933510017474 24.8702240026357 60.3933400021394 24.8702520021283 60.3933170019781 24.8703090020588 60.3933060023702 24.8703370024508 60.3932750018399 24.8704260020584 60.3932650022781 24.8704560025425 60.3931520015637 24.8708260025181 60.393143002048 24.8708540020106 60.3931140016099 24.8709450026099 60.3931040020481 24.8709750021947 60.3930200017717 24.871211002286 60.3929520022332 24.8713800028848 60.3929410017259 24.8714080023775 60.3928680019568 24.8715690026074 60.3928560023027 24.8715950020078 60.3928490019799 24.8716080026073 60.3927850017265 24.8717340021225 60.3927710019802 24.8717590023761 60.3926900018421 24.8719010026292 60.3926040023729 24.8720330024212 60.3926010022345 24.8720380026518 60.3925570020041 24.8721000028129 60.3924810020966 24.8721980028356 60.3924660023042 24.8722170028125 60.3923880023045 24.8723060024201 60.3923720015667 24.8723230023048 60.3923070021665 24.872386002512 60.392291002328 24.8724010023045 60.3922080020977 24.8724710028346 60.3921960024436 24.8724800023503 60.3920440017293 24.8725910020731 60.3920270018447 24.8726050027187 60.3919780022831 24.8726490020499 60.3919460017067 24.8726820026723 60.3919150020757 24.8727180025338 60.3919000022833 24.8727380025568 60.3918840024448 24.8727610027182 60.3918690017531 24.8727830028334 60.3918550020068 24.8728050020492 60.3918420023066 24.8728290022567 60.3918150019608 24.8728780027177 60.3917900017073 24.8729290023716 60.3917660023992 24.8729830021639 60.3917550018919 24.8730110025558 60.3916320016156 24.8733240026007 60.3916220020538 24.873350002001 60.3913280019858 24.8740330020215 60.3912940022165 24.874118002344 60.3912840017553 24.8741440026437 60.3910540019407 24.8747930019955 60.3910440023789 24.8748220024335 60.3909880015951 24.8749640026866 60.3909770019871 24.8749920021792 60.390965002333 24.8750200025711 60.3909530017797 24.8750470020176 60.390904002218 24.8751520023631 60.3908910016185 24.8751780026627 60.3908000019186 24.875353002639 60.3905130021734 24.8758450028446 60.3904990024271 24.8758680021066 60.3904930021504 24.8758790026139 60.3903450016206 24.8761420021517 60.3903020023356 24.8762080024974 60.39028800169 24.8762290025664 60.3902730018976 24.8762500026356 60.3902420022666 24.8762880025893 60.3902270015749 24.87630600252 60.3902110017364 24.8763230024047 60.3901950018979 24.8763400022893 60.3901790020594 24.8763550020817 60.3901620021747 24.8763700027735 60.3901460023362 24.8763840025197 60.3901410021056 24.8763880027042 60.390124002221 24.8764010024044 60.3901080023825 24.8764130020584 60.3899740015989 24.8765210025423 60.3899580017604 24.8765350022886 60.3899530024292 24.876539002473 60.3896880018998 24.8767640020571 60.3896720020613 24.8767780027027 60.3896620016001 24.8767860021723 60.389629001877 24.8768140025642 60.3895460016467 24.8768820021028 60.3894950019928 24.8769180028636 60.3894610022235 24.8769380028866 60.3894260024081 24.8769550027712 60.389416001947 24.8769600021025 60.3893980020162 24.8769660023792 60.3893810021316 24.8769720026559 60.3893630022009 24.8769780020332 60.3893450022701 24.8769820022177 60.3893270023393 24.8769860024021 60.3892740016939 24.8769920026788 60.3891840020401 24.8769960028633 60.3891660021094 24.8769950028172 60.3891520023631 24.8769950028172 60.3889910021331 24.8769900025866 60.3889730022024 24.8769900025866 60.38890100158 24.8769940027711 60.3888830016493 24.8769960028633 60.3888790023641 24.8769970020101 60.3888610024334 24.8770000021484 60.3887900018572 24.8770160028863 60.3885770019272 24.8770880026093 60.3885590019964 24.8770950020328 60.3885430021579 24.8771000022633 60.3884360017202 24.8771310027936 60.3882930023203 24.8771600023323 60.3882750023895 24.8771630024706 60.3881680019518 24.8771700027934 60.388150002021 24.8771700027934 60.388141001606 24.8771700027934 60.3881230016752 24.8771700027934 60.3879980022061 24.8771600023323 60.3877120016077 24.8771050024939 60.3876960017691 24.8771010023095 60.3875170016084 24.8770660024941 60.3872660017246 24.8770330027709 60.3872310019092 24.8770310026787 60.3872130019785 24.8770300026326 60.3872060016557 24.8770300026326 60.3871700017942 24.8770290025864 60.3871520018635 24.8770290025864 60.3870260023482 24.87703600201 60.3870090015643 24.8770380021022 60.3869190019105 24.8770550028862 60.3868660021643 24.8770710027246 60.3868480022336 24.877077002102 60.3868130024182 24.8770910027476 60.3865680019118 24.8772090027933 60.386561001589 24.8772120020323 60.3864720019814 24.8772460027009 60.3864550020967 24.8772520020783 60.3863660015897 24.8772750022396 60.3862940018668 24.8772840026547 60.3862400020745 24.8772850027008 60.386204002213 24.8772830026085 60.3861860022822 24.8772810025163 60.3861500024207 24.8772740021935 60.3860780017984 24.8772710020551 60.3860690022827 24.877270002009 60.3859800017757 24.8772570023089 60.3859760015912 24.8772560022628 60.3858870019836 24.8772430025626 60.3858720021912 24.8772410024703 60.3858000015689 24.8772300028624 60.3857650017535 24.8772210024474 60.3857440016844 24.8772150021707 60.385657002169 24.8771760021708 60.3856430024227 24.8771710028395 60.3855550019618 24.8771420024015 60.3855450024 24.8771390022632 60.3854570019391 24.8771030024017 60.3854520017086 24.8771010023095 60.385364002147 24.8770660024941 60.3853450021701 24.877057002079 60.3852930015708 24.8770270024942 60.3852820019629 24.8770200021714 60.3851950024475 24.8769750027942 60.3851860020324 24.8769710026097 60.3850640018023 24.8769110025408 60.3850470019177 24.8769030021718 60.384909001849 24.8768260022183 60.3849030015723 24.87682300208 60.3847810022415 24.8767590027259 60.3847640023569 24.8767490022647 60.3847300016883 24.8767250020572 60.3846970019652 24.8766980026108 60.3846800020805 24.8766830028184 60.3846660023342 24.8766700022189 60.3846340017578 24.8766370024957 60.3846030021269 24.8766010026342 60.3846000019885 24.8765980024959 60.3845220019888 24.8765020025654 60.3844600018277 24.8764290027963 60.3844440019892 24.8764120020123 60.3843980016665 24.8763560021279 60.3843680020817 24.8763160020819 60.3843640018972 24.8763100027045 60.3843060019205 24.8762240023359 60.3842940022665 24.8762080024974 60.3842790015747 24.8761880024744 60.3842480019438 24.8761520026129 60.3842330021514 24.8761350027282 60.3842280019208 24.8761300024977 60.3841320019903 24.8760330025211 60.3841270017598 24.8760280022905 60.3840350020138 24.8759150024754 60.3840240024059 24.8759020027753 60.383976001991 24.8758520022681 60.3839720018065 24.8758480020837 60.3839410021756 24.8758110021761 60.3839260023831 24.8757940022914 60.3839100016453 24.8757780024529 60.383896001899 24.8757660027989 60.3838790020144 24.875750002061 60.3838670023603 24.8757380024069 60.3838490024296 24.8757190024301 60.3838290024066 24.8756940021765 60.3838270023144 24.875690001992 60.3838110015765 24.8756710020152 60.3837990019225 24.875658002315 60.3837660021993 24.8756280027302 60.3837520015537 24.8756120019924 60.3837360017151 24.8755960021538 60.3837240020611 24.8755870026381 60.3837070021764 24.8755760021309 60.383691002338 24.8755620023845 60.3836750016001 24.8755470025922 60.3836560016233 24.8755320027997 60.3836390017386 24.8755210022925 60.3836250019923 24.8755110027307 60.3836080021077 24.8755000022234 60.3836030018771 24.875497002085 60.3835690021078 24.8754710026847 60.383550002131 24.875456001993 60.3835330022463 24.875445002385 60.3835260019235 24.8754420022466 60.3835080019928 24.8754360028693 60.383490002062 24.8754270024543 60.3834840017853 24.8754260024081 60.3834660018546 24.8754240023159 60.3834530021544 24.8754230022698 60.3834350022236 24.8754200021314 60.3834170022929 24.8754170019931 60.3834060017856 24.8754150028002 60.3833880018549 24.8754130027079 60.3833770022469 24.8754160028463 60.3833590023162 24.8754210021776 60.3833560021778 24.8754220022237 60.3833200023163 24.8754280025004 60.383309001809 24.8754320026848 60.3832920019244 24.8754420022466 60.3832760020859 24.8754590021313 60.3832610022935 24.8754780021081 60.3832460016017 24.8754980021312 60.3832310018093 24.8755180021541 60.3832020022707 24.8755610023384 60.3831980020862 24.8755670026151 60.3831840023399 24.8755890027304 60.3831700016943 24.8756130020384 60.3831570019941 24.8756360021998 60.3829960017641 24.8759270021295 60.3829870022484 24.8759450020602 60.3829730016028 24.8759680022216 60.3829590018565 24.875992002429 60.3828750015801 24.8761260023132 60.3828010017648 24.8762300026126 60.3827940023414 24.8762400021744 60.3827330022263 24.876317002128 60.3827170023878 24.8763350020587 60.3826390023881 24.8764220024735 60.3826230016502 24.8764390023581 60.3826070018117 24.8764550021966 60.3825090017891 24.8765480019887 60.3824960020889 24.8765600025421 60.3824630023657 24.8765890020808 60.3824620023196 24.876631002219 60.3824580021351 24.8767160025415 60.3824660016048 24.8768600028869 60.3824750020198 24.8770220022636 60.380603002027 24.8800300024827 60.3789720023561 24.8826290027263 60.3773660020394 24.8852230027395 60.3754330019315 24.8883450028197 60.3745780020732 24.8897150021457 60.3716130020385 24.8944390023581 60.3709560023177 24.895572002446 60.3690600021175 24.8989480025483 60.3665170017583 24.9034720025309 60.3663330022663 24.9037870026681 60.3650410020406 24.9060840024748 60.3648070020416 24.9065040020581 60.3562157002944 24.9179691998187 60.3503530018896 24.9376830027684 60.3482744285221 24.9463192778124 60.3496360020999 24.9625290028113 60.3564974183212 24.9992737053173 60.3589230022948 25.0079480027981 60.364831002249 25.0258180021991 60.3678600016378 25.0211610023784 60.3679190016607 25.0213200025162 60.3693740022085 25.0252620026394 60.3694120021622 25.0253580025698 60.3705290024116 25.0283680019817 60.3715780022231 25.0312820023626 60.369450002116 25.0346060027649 60.370809001834 25.0383020023356 60.3693430016783 25.040686002557 60.3679390016836 25.0429810022715 60.3684150020508 25.0441270020596 60.3685120020273 25.0443620021048 60.3692670017708 25.0461840024898 60.3698260023681 25.0475350027382 60.3709370023408 25.0502190024051 60.3711050019943 25.0502800025201 60.3721980020362 25.0507790021493 60.3728470022874 25.0518230026295 60.3728560018031 25.0519300021679 60.3728690024026 25.0520770026516 60.3734500022159 25.05288000281 60.3733810017319 25.0536950026223 60.3737340018228 25.0543460020664 60.3715470016928 25.059578002323 60.3705590019964 25.0619740021985 60.3735460021463 25.0725230021349 60.3738430023527 25.0736990024071 60.3739840016604 25.074559002496 60.3729030021719 25.076231002259 60.3735990018925 25.0773520026928 60.3732730021474 25.0781600021824 60.3739090017991 25.0787680023415 60.3744750018199 25.0790200022714 60.3734570016394 25.081527002769 60.372985002356 25.0826900024417 60.3729390020334 25.082805002349 60.3727930015958 25.0831670019556 60.3726330023113 25.0835610021386 60.3724850017815 25.0839260027828 60.3722930019206 25.0844000021584 60.3722120017825 25.0845990023421 60.3715580022001 25.0839580024599 60.3709490019949 25.0833780026927 60.3706900017422 25.0831450027397 60.3704370017663 25.0828960020489 60.3702840019052 25.0843670024353 60.3702460019515 25.0847430026875 60.3702020017211 25.0851750028241 60.3697620021148 25.0852310027087 60.3697380019073 25.0853850026159 60.3696930016308 25.0856790026839 60.3694380015626 25.0873380027467 60.36924900184 25.08855800235 60.369217002163 25.0885050026038 60.3691980021861 25.0884740020736 60.3689730017027 25.088144002144 60.3686790016347 25.0877140020996 60.3682790020744 25.0871260019635 60.3671060019405 25.0854050026388 60.3665710015505 25.0887070020266 60.3665270022194 25.0889790019794 60.3665130015738 25.089065002348 60.366495001643 25.089177002117 60.3664130023582 25.0896900023918 60.3663830018741 25.0898630022758 60.3662990015977 25.0903790026888 60.3662970024048 25.0904700023888 60.3662770023818 25.0913480024084 60.3662620016901 25.091963001991 60.3662320021053 25.09326700277 60.3661610024284 25.0960170027825 60.3661420015522 25.0967260022033 60.3661260017137 25.0972970024548 60.3661210023824 25.0974810028461 60.3660950020827 25.0985210022425 60.3660860016677 25.0987890020109 60.3660630024057 25.0996210026073 60.3660110018063 25.1014880023695 60.3659210021526 25.1052770026316 60.3658740017838 25.1069890024406 60.3657460021763 25.1124560027424 60.3657180017844 25.1134040023928 60.3656980017614 25.1142610023434 60.3656900022918 25.1146250020423 60.3652310018093 25.1148290024565 60.3645320019504 25.1151480027781 60.3646000023883 25.1157520027528 60.3610970018252 25.1173270025392 60.3608573855599 25.1328628556363 60.359129557683 25.1328446434655 60.3592790016247 25.1517330027759 60.3583480018589 25.1502520028277 60.3581540019057 25.1499510024369 60.3579640021371 25.1496460027608 60.3577690021378 25.1493330027159 60.3575150021157 25.1489280020257 60.3572700016093 25.148533002696 60.3568020016111 25.1477840023299 60.3567830016343 25.1477560028373 60.3567360021648 25.1476810020766 60.3567150020957 25.1476430021229 60.3566950020727 25.1476110024458 60.3557950019379 25.1461690024975 60.355704002238 25.1460250021522 60.3553170023778 25.1454060023851 60.3549580020102 25.1448320019953 60.3546770016424 25.1443820028272 60.3543880018049 25.1439190021603 60.3540680023365 25.1434110021161 60.3503420022817 25.13742300207 60.3500910023979 25.1370130020484 60.3500090022137 25.1368790021643 60.3492300022629 25.1356220026533 60.3488010022645 25.134931002264 60.3484930024501 25.1344350027732 60.3478840022449 25.1346760021958 60.3474200024312 25.1348600025871 60.3473960022238 25.1348690021028 60.3473330020165 25.1348930023103 60.3471920018095 25.1349470021025 60.3471900017173 25.1352480024934 60.3471880016251 25.136451002212 60.3471940019017 25.137147002832 60.347196001994 25.1376800022304 60.3471990021323 25.1382070022514 60.3472040023629 25.1384300026426 60.3472030023167 25.1394730021773 60.3472030023167 25.1403940023814 60.3472000021784 25.1419440028135 60.3459460019065 25.1420950025824 60.3459490020448 25.1422640022819 60.3459630017912 25.1430470024173 60.3459800016758 25.1439830024137 60.3459820017681 25.1442090020439 60.3459820017681 25.1442450028047 60.3459980016065 25.1451140024093 60.3460100021599 25.1457310020841 60.3460250019523 25.1466270020346 60.3460400017447 25.1474790026539 60.3460450019753 25.1477490025145 60.3460600017677 25.1486850025109 60.3460650019983 25.1489580025099 60.3461060020904 25.1511330020865 60.3461290022517 25.1523400019896 60.3461280022056 25.1524080024274 60.3458620016301 25.1524840023349 60.3458300019531 25.1524950019428 60.3453870022084 25.1527090028183 60.3453360016552 25.1527280027951 60.3452850020013 25.152738002357 60.3452330023013 25.1527370023109 60.3446770018422 25.152678002288 60.3445640020271 25.1526700028184 60.3444500021659 25.1526690027723 60.3443360023047 25.1526750021497 60.3440540018908 25.1526730020574 60.3437730024222 25.1526210023574 60.3434960022388 25.1525180021042 60.3432240022859 25.1523650022431 60.3427450017805 25.1520480020137 60.3426360021498 25.1519730021524 60.3425460015968 25.1519060026599 60.3425100017353 25.1518780022681 60.3424430022428 25.1518300027525 60.3423660022892 25.1517940019917 60.3422870022434 25.1517590021763 60.342212002382 25.1517370020611 60.3421230018751 25.1517210022225 60.3420590016217 25.1517230023148 60.3419870018987 25.1517310026837 60.3418780022681 25.1517540019457 60.3415970019002 25.1519070027061 60.3412840018552 25.1519950022676 60.3409200021565 25.1520200025212 60.340562001835 25.1520700021289 60.3404630017662 25.1520690020828 60.3403640016974 25.1520530022443 60.3402660016747 25.1520220026134 60.340208001698 25.151987002798 60.3401500017213 25.151947002752 60.3400940018367 25.1519000023832 60.339964002137 25.15179700213 60.3398120023221 25.1516250022921 60.3397470020226 25.1515340025922 60.3397070019766 25.1514780027077 60.3396070018617 25.1513190025699 60.3395260017236 25.1511890019709 60.3394440024388 25.1510600023173 60.3388630017262 25.1503130020434 60.3336510023919 25.1467460021263 60.3222930020205 25.1461760028203 60.31610100156 25.1522470021974 60.315563001931 25.1542120019823 60.3146450018654 25.1578390019684 60.3128410023104 25.1646230027494 60.3123520022432 25.1664490024196 60.3118750018299 25.1682780022281 60.3114860018775 25.1696140026841 60.2967560015883 25.1995850025459 60.2978390020684 25.2295210025923 60.2972860017476 25.2316160020769 60.2969630021409 25.2328370026256 60.2968220019339 25.2327950024874 60.296328001636 25.234616001927 60.2955140018697 25.2375240020311 60.2953320015707 25.238179002559 60.295689001846 25.2404200024812 60.2961880023745 25.2434510019622 60.296368001682 25.2447070023263 60.297004002233 25.2494720026309 60.2972270017248 25.2511510027167 60.2974580015855 25.2528940021566 60.2952250020323 25.2544970023349 + + + + + + D + D + implicitSpatialProjection + + + + 59.8981942143915 24.3229527149958 59.9550089844771 24.2720629699302 60.0089521320353 24.2899360755895 60.022495091975 24.3162819784306 60.0400551328382 24.2957201031003 60.0580829003056 24.2793449999718 60.0631398996867 24.2652388998554 60.0697721003023 24.2607806996696 60.0698809128739 24.2597369617914 60.0715492002354 24.2596166999508 60.0735012003202 24.2582803001957 60.0802853000266 24.2568559998046 60.0882878983679 24.2465901172401 60.0929204995815 24.2389679995736 60.0930687995855 24.2396451000414 60.0959093001741 24.2341959998456 60.0958848997684 24.2340819999844 60.1001359465168 24.2270208803095 60.1038817001804 24.2311309996959 60.104835899757 24.2317691999887 60.1054150002021 24.232371199871 60.1053909999947 24.2327443996344 60.1057609199306 24.233073279908 60.1085894001807 24.2299690998941 60.1105551014368 24.2289741547335 60.1174219837376 24.2200409703146 60.117706799929 24.2196612001043 60.1261013003348 24.205506200251 60.1263189002971 24.2056231004258 60.1265895000055 24.2054766997899 60.1265513048988 24.2046314126097 60.1282952000635 24.2017096996429 60.1284393002336 24.2005229003116 60.127845199996 24.2001331997874 60.1278422996824 24.1980902998275 60.1269364998197 24.1955926999432 60.1275306000572 24.1940812003871 60.1290678004387 24.1957224999935 60.1311874998033 24.1791321998912 60.1305645996766 24.1740943003118 60.1245287997643 24.1632747995924 60.1214575996885 24.1596496998738 60.1169889637697 24.1507348238531 60.1136712001658 24.141687500178 60.1135927999678 24.1417864004221 60.1114031180595 24.1362320849428 60.1135188001526 24.1357734999471 60.1135757002584 24.1356795999337 60.1137060003317 24.1355779999248 60.1138919999159 24.1354840999113 60.1140361999107 24.1354154996257 60.1141728995597 24.1353952001284 60.1145246001303 24.1354511001882 60.1147472003231 24.1355348999157 60.1148825995524 24.1355652996989 60.1150243003312 24.1355399999711 60.116089399806 24.1351438998711 60.1161995002068 24.1350652001989 60.1163133004185 24.1349457999088 60.116461300049 24.1347377003846 60.1166522998638 24.1349864996273 60.1208260004196 24.1339902000877 60.121257100335 24.133228899694 60.1216303000983 24.1337870998948 60.1307380995837 24.1315907000508 60.1342514000821 24.1172070997279 60.1382661076948 24.1085989257998 60.1427483998189 24.098978900356 60.1441794001593 24.083003699661 60.1461269000365 24.0692329000783 60.150116949138 24.0458059843588 60.1515611083585 24.019014292076 60.1572409997724 24.0160083045397 60.1666631294 24.0197817905972 60.169534010886 24.0166988849456 60.1759041310709 24.0180188468923 60.1808907998706 24.017388000356 60.1810195998747 24.0175646002262 60.1810580000267 24.0175329000234 60.1809663995797 24.0169175002425 60.1809297998704 24.0162982001019 60.1809487998473 24.0156130003397 60.1809425000964 24.0151663997096 60.1812377996848 24.0151917003367 60.1820492004103 24.0125777003007 60.1818611998345 24.0115879999863 60.1822864001973 24.0095246998051 60.1825019389134 24.00826314253 60.1885485001133 24.0188919995662 60.1885521999241 24.0189491002208 60.1885674002654 24.0190125995519 60.1886159996287 24.0190887001834 60.1886721002373 24.0191330997129 60.1887163001172 24.0191267999619 60.188738999905 24.0191179002709 60.1887743000939 24.0191471003585 60.1887893997111 24.0191750000263 60.1887837996327 24.0192499000629 60.1887553999418 24.0193526997674 60.1887522001539 24.0194071995826 60.1887944997664 24.0195417003892 60.1888071001676 24.0196051997202 60.1888102999554 24.0196914995631 60.1887610000202 24.0198031000331 60.1887610000202 24.01993890036 60.1888733001628 24.0201279999073 60.188931999812 24.0201736998564 60.1889647998856 24.0202130002298 60.1889755000194 24.0202573997593 60.1889667001531 24.0203069002433 60.1889440003654 24.0203779997449 60.1889206998305 24.0204148000031 60.188808399688 24.0205023004409 60.1887762003614 24.0205213004177 60.1887213003478 24.0204782004087 60.1886412004311 24.0204832995647 60.1886373998962 24.0205239003578 60.1887137001772 24.0208829996508 60.1887143998497 24.0210250997286 60.188786299748 24.0211989000093 60.1889458997335 24.0213677000594 60.1890227998624 24.0214071002575 60.1890530998207 24.0214602996531 60.1890556997608 24.02154410028 60.1890038997103 24.0217027002195 60.1890046002821 24.0217370003624 60.1890184003789 24.0217725002008 60.1890569003557 24.021792799698 60.1890702004295 24.0218283004357 60.1890847001988 24.0219044999927 60.1891022999313 24.0219438003662 60.1891243998712 24.021965400283 60.189184999788 24.0219564996927 60.1892070997279 24.0219183999143 60.1892290998431 24.0218409997624 60.1893224998336 24.0216913004132 60.1893962999993 24.0213918000916 60.1894183999393 24.0213461001425 60.189444900262 24.021328399686 60.1894783001835 24.0213296002809 60.1895931004413 24.0214729998791 60.1896076002107 24.0215390002247 60.1896170997494 24.0216202000123 60.1896076002107 24.0216874998783 60.1895760996573 24.0217915001776 60.1895836998279 24.0218295999561 60.1896764001458 24.0219424999465 60.1896996997814 24.0219920004305 60.1897104997398 24.0220719996231 60.1897067001042 24.0222991000235 60.1897160998182 24.0223510997236 60.1897375999104 24.0223663998895 60.1897697003115 24.0223612998342 60.1897879997165 24.0223359002816 60.1898125997717 24.0223181000003 60.1898227000576 24.0223257999957 60.1898461004172 24.0223536996635 60.1898719001681 24.0223549002585 60.1898920998406 24.0222953003878 60.1899464000064 24.0220693996831 60.1899760002922 24.0220250001537 60.1900063002506 24.0220035000615 60.1900315001537 24.0220046997571 60.1900958997061 24.0220605998169 60.1901306000472 24.0220528998215 60.1901317997428 24.0219044999927 60.1901489003515 24.0218639000989 60.1901841996412 24.0218701998499 60.1902024999455 24.0218880001311 60.1903116003002 24.0220478995909 60.1903413004108 24.0221126004162 60.1904181996402 24.0221557004253 60.1904327003089 24.0222154001207 60.1904409003274 24.0223004004432 60.1904277000784 24.0223510997236 60.1903640001985 24.0224094998986 60.1903374998758 24.022447599677 60.1903179000511 24.0224957997414 60.1903167003555 24.0225579995521 60.1903349997605 24.0226162999024 60.1903702999495 24.0226633002711 60.1905646002762 24.0226608001558 60.1906629995978 24.0226962999943 60.1907342996483 24.0227152999711 60.1907531998004 24.022745799579 60.1907746000678 24.02281430004 60.1907828000862 24.0229272000303 60.1907772000078 24.0230123001776 60.1907708004322 24.0230426999607 60.1907431004138 24.0231201001126 60.1906824995978 24.0232457003289 60.1906642001927 24.0232965003333 60.190646599561 24.0233700999502 60.1906453000406 24.0234347998762 60.1906566998469 24.0234855998806 60.1907103003401 24.0236073995619 60.1907469000495 24.023648000355 60.1907726998003 24.0236531004103 60.1908629000029 24.0236137002121 60.190890699846 24.0236353001291 60.1909070998828 24.0236619002765 60.1909191004362 24.0237215999719 60.1909152999012 24.0237570998104 60.1908748996569 24.023943600317 60.1908742998091 24.0239829996158 60.1909027003994 24.0241264001133 60.1909058003624 24.0242012003252 60.190903900095 24.0243116002002 60.1908793000397 24.0243927999878 60.190843400003 24.0244004999831 60.1907847003537 24.0243902998725 60.1907576001831 24.0244081001538 60.1907424996667 24.0244449004119 60.1907424996667 24.0245590999226 60.1907406002985 24.0246416001298 60.1907197998789 24.0248648999952 60.1907146998236 24.0249613001239 60.1907253999573 24.0250070000731 60.1907664000494 24.0250907998006 60.1907783997034 24.025136399925 60.1907758995882 24.025185900409 60.1907513004322 24.0252583003303 60.1907480997451 24.0253230002563 60.1908004996434 24.0253965998733 60.1908218999108 24.0254612997992 60.1908666996385 24.0255323003754 60.1908742998091 24.025616100103 60.1908680000582 24.0256669001074 60.190846499966 24.0256960003701 60.1908136998924 24.0257137997521 60.190758200031 24.0257176002871 60.190729199593 24.0257011004255 60.1907084000727 24.0256694002227 60.190675599999 24.0255590003476 60.190628300156 24.0254802997761 60.1905822000086 24.0254802997761 60.1905595002208 24.0254967996377 60.1905482002393 24.0255627999833 60.1905425003362 24.0256515999415 60.1905513002024 24.025726499978 60.1905720997227 24.0258090001852 60.1906536997085 24.0258925004386 60.1906977997637 24.0260022995665 60.1907530999757 24.0260831000551 60.1908716998691 24.0261530996859 60.1909091997998 24.0262140998009 60.1909513995874 24.0263797998879 60.1909599998042 24.0264941001226 60.1909528996566 24.0266393999884 60.1909260998597 24.0267416996697 60.1908637003995 24.0268600999137 60.1908396003673 24.0269695995674 60.1908377999246 24.0270377996548 60.190859200192 24.0271078001849 60.1908707996478 24.0271884999494 60.1908681997077 24.027254899594 60.1908440996755 24.0272998000458 60.1907289999435 24.0276263996387 60.1907236004139 24.027678400238 60.19080130004 24.0278309999008 60.1908048002014 24.0278991999882 60.1908048002014 24.0279710000617 60.1907931998463 24.0280643002273 60.1907709002569 24.0281289003285 60.1907414996206 24.0281557999502 60.1906853000866 24.0281038002502 60.1906344002574 24.0280966002779 60.1906058998425 24.0280894003056 60.1905879997365 24.0281019998075 60.1905540997919 24.0282149996226 60.1905139999212 24.0282903996822 60.1905225003132 24.0283644003968 60.1905595002208 24.0284070003828 60.1906648000406 24.0284609003503 60.1907726998003 24.0284824004425 60.1908074999662 24.0285110996076 60.1908297995557 24.0285505996305 60.1908227003074 24.0286206001606 60.19080389998 24.0286780002895 60.1907816003906 24.028722899842 60.1906504999207 24.0287963996342 60.1906094998286 24.028814399565 60.1905640004283 24.0287910999294 60.1905407997182 24.0287893003859 60.1905211000688 24.0288090000354 60.1905194003501 24.0289095001734 60.190563100207 24.0291247996698 60.1906085996072 24.0292451001813 60.1906468999346 24.029289899909 60.1906764003956 24.0293401998904 60.1906834996439 24.0293885996043 60.1906673999806 24.029433500056 60.1906459997132 24.0294497004434 60.1905228996122 24.029507099673 60.1904569001659 24.0295268002217 60.1904275004289 24.0295699002307 60.1904123000876 24.0296309003458 60.1904345996771 24.0297135003778 60.1904381996632 24.0297959996857 60.1904390998846 24.0298696002019 60.1904159000738 24.029887500308 60.1903829003506 24.0298732001881 60.1903584001201 24.029876899999 60.190337400051 24.0299091002249 60.1903471999634 24.0299754998695 60.1903793003645 24.0300060003767 60.1904025001753 24.0300400999707 60.1904113998663 24.0300760000075 60.1904006997326 24.0301334001364 60.1903631998019 24.030226700302 60.1903302000787 24.030278700002 60.1903044003279 24.0302877004171 60.1902820998391 24.0302571999099 60.1902445999084 24.0301889998225 60.1902034999916 24.0301549002285 60.1901722998118 24.0301513002424 60.190149100001 24.0301853998364 60.190137499646 24.0302375002605 60.1901402003101 24.030361300034 60.1901010995861 24.0305773999271 60.1901142998351 24.0306861000835 60.1901357001025 24.0307344997974 60.1901713995905 24.0307847997788 60.1902250000837 24.0308852999167 60.1902285002452 24.0309302003685 60.1902195996549 24.0309606999764 60.1901937000792 24.0309858000547 60.1901429000748 24.0309463000318 60.190101800158 24.0309553004468 60.1900688004349 24.0309803996258 60.1900076995957 24.0312727997999 60.1898957996515 24.0314774998868 60.1898699000759 24.0315636000801 60.1898671013857 24.0315862144323 60.1898610003849 24.0316390001398 60.1898787997669 24.0317268998766 60.1898832999744 24.0317914999778 60.1898591999422 24.0318328004435 60.1898511995732 24.0318973996453 60.1898627999283 24.0319674001754 60.1898894999006 24.0320193998755 60.1899233998451 24.0320284002905 60.1900233001352 24.0319351001248 60.1900589996232 24.0319494002447 60.1900866996415 24.0319870998248 60.1901276997336 24.0320768998291 60.1901660998856 24.0322276001237 60.190196399844 24.03226889969 60.190269600162 24.032295800211 60.1902918997514 24.0323460003677 60.1903008003417 24.0324052998648 60.1902944996914 24.0324591000075 60.1902811996177 24.0325273000949 60.1902195996549 24.0326709002419 60.1901732000332 24.0327587999787 60.1900787001719 24.0328557001305 60.1900661995955 24.0329399998811 60.1900768997292 24.0330225999131 60.1901142998351 24.0330764000558 60.1901241995722 24.0331303000234 60.1901331001625 24.0332576997831 60.1901481997796 24.0333384004469 60.1901839001669 24.0334280997271 60.1902178001114 24.0334802001512 60.1902204998762 24.0335340002939 60.1900947000104 24.033638100418 60.1900653002734 24.0336954996476 60.1900572000798 24.0337763001362 60.1900705999782 24.0338194001453 60.1900947000104 24.0338318998224 60.1901927998579 24.0337529996013 60.190223199641 24.0337816996658 60.1902373999361 24.0338139997164 60.1902366004388 24.0338749998314 60.1902285002452 24.0339503998911 60.1902125004066 24.0339970000616 60.1901920003606 24.034016800435 60.1900563996832 24.0340329000983 60.1899742996742 24.0340490995864 60.1899599995544 24.0340688001351 60.1899591002323 24.0341298002501 60.1899920999555 24.0343254000972 60.1900018998679 24.0345408003178 60.1900216004166 24.0346878997269 60.1900839998767 24.0348774003718 60.1901161002779 24.0349463001317 60.1901214998074 24.0350325001498 60.1901099003517 24.0350629997577 60.1899751998956 24.035222699568 60.1899359004215 24.0352245000107 60.1899055995638 24.0352029000938 60.1898610003849 24.0351311998451 60.1898369003527 24.0350772998775 60.1897985002007 24.0350827003064 60.1897842999056 24.0351203998866 60.1897780001547 24.0352082996234 60.1897360998412 24.035222699568 60.1897217997213 24.0352513996324 60.1897298000903 24.0353913997933 60.1897253997075 24.0354542003511 60.189685200012 24.0355493000602 60.1896869995554 24.0357017998982 60.1897066002794 24.0357754004144 60.1897057000581 24.0358274001145 60.1896665004087 24.0359890001923 60.1896754000997 24.0361307000718 60.1896833995693 24.0362061001315 60.1897083998228 24.0362329997532 60.1897414004453 24.0362384001821 60.1898100996564 24.0362563002881 60.1898422000576 24.0362832997345 60.1898627999283 24.0363191997713 60.1898663000897 24.0363729999141 60.1898503002512 24.0364232000707 60.1898475995871 24.0364699000659 60.1898637001497 24.0365111996322 60.1898894999006 24.0365201002225 60.1899145001541 24.0364931997015 60.1899734003522 24.0363245003754 60.1900001003244 24.0362851001773 60.1900224997386 24.0362599002742 60.1900510001536 24.0362437997117 60.1900768997292 24.0362509996839 60.1901107996737 24.0362851001773 60.1901340003839 24.0363442998496 60.1901472995583 24.0363926995635 60.1901536002085 24.0365776001761 60.190175899798 24.0366278003328 60.190204400213 24.0366582999407 60.1902767003095 24.0366529004111 60.1903399999911 24.0367463004015 60.1903650002446 24.036800099645 60.1903863996127 24.0369096001979 60.1903863996127 24.0369651998841 60.1903686002308 24.037022600013 60.1903516003462 24.0370997996161 60.1903615000832 24.0371715996896 60.1903918000416 24.0372164003167 60.1904068996587 24.0372325998047 60.1904239004427 24.0372882003902 60.1904149998524 24.0373510000487 60.1904068996587 24.0374317996379 60.1904087001015 24.0374891997668 60.1904301003689 24.0375412003661 60.1904595999306 24.0375520003246 60.1904862999029 24.0375322997759 60.1905122003778 24.037501800168 60.190537199732 24.0374515001866 60.190604100299 24.0374209996795 60.1906273001099 24.0374300000945 60.1906557996255 24.0374802002511 60.1906664997592 24.0375465998957 60.1906638998192 24.0376597004349 60.190630900096 24.0378014003144 60.1906424995518 24.0378462998669 60.1906700997454 24.037867799959 60.1906969004417 24.0378570998254 60.1907351998696 24.0377816997657 60.1907647003307 24.0376686001259 60.1907931998463 24.037620200412 60.1908227003074 24.0375932998909 60.1908547998092 24.0376004998632 60.1908850997676 24.0376524995633 60.1908993998874 24.0377242996368 60.1908798000628 24.0378211997886 60.1908699003257 24.0379001000097 60.190869099929 24.0380346997417 60.1908905001965 24.0381083002579 60.1909208001549 24.0381370003224 60.1909635997903 24.0381423998519 60.1909947999701 24.0381083002579 60.1910224999884 24.0380669997923 60.1910466000206 24.038068800235 60.1910680002881 24.0380832001796 60.1910778002004 24.0381208997597 60.1910787004218 24.0382016004236 60.1910902998775 24.0383092996345 60.1911107999235 24.0384061997863 60.1911465003108 24.0384188001875 60.191226799877 24.0384403002797 60.1912723001766 24.0384420998231 60.1913026001349 24.0384547002243 60.1913141995907 24.0385227995876 60.1913141995907 24.0385586996243 60.1912821000889 24.0385945996611 60.1912580000567 24.0386108000484 60.1912375000107 24.0386663997346 60.1912446001582 24.0387292002924 60.19127409972 24.0388369004027 60.1913043996784 24.0388925000889 60.191361500333 24.0389751001208 60.1914006999824 24.0390234998347 60.1914319999869 24.039057600328 60.1914436003419 24.0391079003094 60.1914293002221 24.0391778999402 60.1914123003374 24.0392066000047 60.1913749002315 24.0392604001474 60.1913427000056 24.0393071001426 60.1913276003885 24.0393573002992 60.1913267001671 24.039411100442 60.1913329000933 24.0394631999667 60.1913525997427 24.0395314000541 60.1913642000978 24.0395565001324 60.1913489997566 24.0397647003807 60.1913713002454 24.0398543996608 60.191379299715 24.039958499785 60.1913856003652 24.0400086999416 60.1914123003374 24.0400786995724 60.1914400003558 24.0402042997886 60.191438199913 24.0404232999953 60.1914622999452 24.0404771001381 60.1914997998759 24.0405202001472 60.1915818000601 24.040525499852 60.1916388998154 24.0405398997966 60.1916603000828 24.0405649998749 60.191684400115 24.0406439999207 60.191684400115 24.0407246996852 60.1916558997 24.0408574998738 60.1916451995664 24.0409096002979 60.1916486997278 24.0409634004406 60.1916834998937 24.0410207996702 60.1917378998842 24.0410585001497 60.1917915003775 24.0410944001865 60.1918182003497 24.0411231002509 60.1918218003358 24.0411679998034 60.1918190996718 24.0413259000703 60.1918154996856 24.0414085001023 60.1917994998471 24.0414479003004 60.1917522000041 24.0414137998071 60.1917254002071 24.0414336001805 60.1917102996906 24.0415825000324 60.1916861996584 24.0418103999301 60.191702300221 24.0420581002012 60.1917192002809 24.0421586003392 60.1917102996906 24.0422374996609 60.1916923995846 24.0422877996423 60.1916584996401 24.0422788001266 60.1916183997694 24.0422752001404 60.1915737996912 24.0422932000712 60.1915255996268 24.0423255001218 60.1914916996823 24.0424296002459 60.1914525000329 24.0425821000839 60.1914150001022 24.0426467001851 60.1913579003469 24.0428368996033 60.1913355998581 24.0428890000274 60.1913026001349 24.043021800216 60.1912990001488 24.0431563001232 60.1912687001904 24.0431958001461 60.1912625002643 24.0432927002979 60.19127409972 24.0434129999101 60.1912463997016 24.0435099000619 60.1912544000705 24.0436300998493 60.191294599766 24.0437305999873 60.1913784003929 24.0438543997608 60.1914911996592 24.0441534000594 60.1916326000645 24.0443186999481 60.191762800313 24.0443941000078 60.1918555995563 24.0444855997307 60.1921071003624 24.0445537998181 60.1923229997067 24.0446884004494 60.1923943995819 24.0447153000711 60.192578999821 24.0448426998308 60.1926825000974 24.0448677999091 60.1927395998527 24.0449199003332 60.1928385999215 24.0449611000748 60.192919799709 24.0449809004483 60.1930010003959 24.0450329001483 60.1930545001651 24.0450382996779 60.193154399556 24.0451226003278 60.1934826997668 24.0452644000321 60.1941115003455 24.0455622995605 60.1942247996349 24.0456448995925 60.1943755997542 24.0457794003991 60.1944621001459 24.0458369003527 60.1945406001686 24.0459014995546 60.1946226003528 24.0460181002552 60.1963849001431 24.0430377002297 60.196944999712 24.0425783004483 60.1975872001892 24.0425173003332 60.1978408845492 24.0428421048793 60.2036388848267 24.0373410472516 60.2053510240306 24.0443877687806 60.2100729620976 24.0494172120348 60.2142219160087 24.0642337990506 60.2223110758955 24.0820271789112 60.227490023346 24.0769662953583 60.2302989990996 24.0855059049736 60.2297198995538 24.0863939998832 60.229309100035 24.0872518002304 60.2287887001385 24.0875461995975 60.2286917001619 24.0878660003157 60.2285203001718 24.087868500431 60.2281939002283 24.0873735999118 60.2277604000225 24.0880056002783 60.2252378745283 24.0889138885652 60.2267495998142 24.0938972001957 60.2282687004403 24.0992711998061 60.2307709003568 24.120594299987 60.2317441997351 24.1286565998223 60.2319339261098 24.1306962172567 60.2280134998232 24.1387189999819 60.2238008001668 24.1471594998111 60.2237634998856 24.1474756996438 60.2237263003286 24.1477330001779 60.2236756999736 24.1478990995639 60.223569300283 24.148070600278 60.2237449001071 24.1482956996869 60.2238672996362 24.1485047003317 60.2239950995942 24.1487886999386 60.2242107003636 24.1494424998715 60.2242505996855 24.1497533001747 60.2243118003494 24.1500534003442 60.2243356998328 24.1502839001819 60.2243411002616 24.1506267999869 60.2243437002016 24.1510234001099 60.224322399759 24.1515699999556 60.2243251004231 24.1518648004202 60.224322399759 24.1521755998241 60.2243197998189 24.152432799634 60.224277199833 24.1527973002553 60.2242664996992 24.1530812998622 60.2242692003634 24.1535206996206 60.2243197998189 24.1538690996792 60.2243489999065 24.1540726998952 60.2244023000262 24.1542441997101 60.2244767998645 24.1544157004243 60.2247934997203 24.1549569996658 60.2248840002964 24.1550856000205 60.2250382996779 24.1551767004444 60.22517140024 24.1552785001027 60.2259165002463 24.1559752003952 60.2261268004116 24.156125200118 60.2262705003834 24.1562431003389 60.2263555996313 24.15640390002 60.2264247997647 24.1565860999686 60.2270768001542 24.1592227997924 60.2271912002138 24.1590620001112 60.2271886002737 24.1592012997003 60.2271698997711 24.1594371001421 60.2271698997711 24.1597158000442 60.2274306995672 24.160653599584 60.2274838998621 24.1607662001001 60.2275530999956 24.1608089997356 60.2276382999676 24.1611520002647 60.2278352002344 24.1615004003233 60.2278271998654 24.1615324998251 60.2278911002941 24.1617361998658 60.2279815999709 24.1618165003313 60.2280560998092 24.1619237004185 60.2281971000162 24.1619343996529 60.2280188004274 24.1613825001023 60.2280320996018 24.160884100321 60.2282130998547 24.1601391999641 60.2286495003742 24.159072700245 60.2288251001983 24.1586653999883 60.2290618997869 24.158049099986 60.2292454999799 24.1573953000531 60.229958700134 24.1542603002727 60.2299958996911 24.1540351999645 60.2300517997508 24.1538475995871 60.2302087997963 24.1534938998237 60.2303124997221 24.1531080996591 60.2304216000769 24.152743699762 60.2305494000348 24.152234599847 60.2305919001961 24.1520631000321 60.2306823998729 24.1517521999041 60.2307170003893 24.1515217998912 60.230727599799 24.151275300215 60.2307941999924 24.1502302996886 60.2308048003014 24.1500105998094 60.2308500002274 24.1498498001282 60.2309166004208 24.1497211997736 60.2309830998902 24.149538999825 60.2310203003466 24.1492549003934 60.231086799816 24.1486010995611 60.2376965452594 24.1567972194162 60.243568899685 24.1659215997021 60.2436061001414 24.1660341003935 60.2429756996689 24.167202399771 60.2426538997577 24.1679365999942 60.2419676999494 24.1691101999758 60.2418746003326 24.1692119996341 60.2416962998444 24.1695978996234 60.2415473999926 24.1697747000424 60.2413637997996 24.1699086999266 60.241204199814 24.1699409001525 60.2410819001096 24.1699461998573 60.2409249998889 24.1699354997236 60.2407865996219 24.1698819001296 60.240648300079 24.1698766004248 60.2404806997246 24.1699086999266 60.2403476998865 24.169956899991 60.240233299827 24.169956899991 60.2401402002101 24.1698926002633 60.2400763996062 24.169817600402 60.2399726996804 24.169726499978 60.2398848997684 24.1695657002969 60.2398156996349 24.1694800003018 60.2396693997231 24.1693353002839 60.239493799899 24.1692496002889 60.2393688004299 24.1692227995926 60.2392411002966 24.169104900271 60.2390043996334 24.1689922997549 60.2388661000905 24.1688905000966 60.2388049003259 24.1687403996498 60.238786299648 24.1684938999736 60.2387809001185 24.1682099003667 60.2387835998833 24.1679687003952 60.2387464003262 24.1677918999762 60.2385894002807 24.1672988997245 60.2385309002809 24.166998799555 60.2384377997647 24.1670576997531 60.2314520001098 24.1680627002335 60.2396542731262 24.1818603607671 60.2469789265363 24.182814541458 60.249946208151 24.1904479860858 60.2503881206154 24.2005622996105 60.2607239803275 24.2185520131649 60.2604767998645 24.2250334999961 60.2604325001598 24.2276202002121 60.2603439996759 24.2284155003751 60.2611929839691 24.2482542461366 60.2691291089213 24.2598391445609 60.2882228904741 24.2893342043101 60.2946451020898 24.3056958940503 60.2817936002945 24.3174807000743 60.2764385997616 24.3226189999669 60.2646671378782 24.3334987525654 60.2461979552715 24.3424858351532 60.2565928878515 24.3705840139411 60.2663883998048 24.3790524997731 60.274871080536 24.3871629843842 60.2835041351078 24.4081768248006 60.2941409646339 24.4177781308561 60.2977039814537 24.4426799913886 60.2920650721454 24.4755229600166 60.2847189537168 24.4776980054586 60.2822073280058 24.5054732394984 60.2815400733158 24.5049995395971 60.2809566201519 24.5046726162483 60.2796924377558 24.5014360704184 60.2803014757326 24.5004749415654 60.2799575659889 24.4987246800999 60.2792071743717 24.4983350146493 60.278302927638 24.4999243999911 60.2763048346005 24.4972841379526 60.2760292724331 24.4953879794717 60.2750566817205 24.4954206716267 60.2739219558337 24.4982649088985 60.2700749448029 24.5044307453826 60.2695620749299 24.5044301842057 60.269134120843 24.5044279385986 60.2686410063774 24.5044212008777 60.2680459735429 24.5044161484865 60.2659739931054 24.5044122175498 60.2630460972996 24.5044071651586 60.262078058056 24.5044049195515 60.2620518796905 24.5044049195515 60.2619379742582 24.5044032351212 60.2610679359365 24.5043858296424 60.2607571221435 24.5043920061862 60.2601711364888 24.5043802151748 60.2597218927512 24.5043717939232 60.2592740348689 24.5043650562025 60.2588208790804 24.5043689862398 60.2575349070104 24.5043628105953 60.2570349325162 24.5043532660904 60.2565809106806 24.5043470904459 60.2559580816002 24.5043409139021 60.2559199206679 24.5043420371554 60.2555140719169 24.5043369838648 60.2554310635928 24.5043341770806 60.2548449826099 24.5056911946929 60.2546260354632 24.5062032335924 60.2532225318944 24.5076379445356 60.2518249260795 24.5105920870552 60.2510067876332 24.513431727892 60.2506799955854 24.5154362303978 60.2506571510067 24.5154912527192 60.2501138894445 24.5167758434305 60.2496971031388 24.5177600596791 60.249288113056 24.5187128356289 60.2485609455313 24.5204072833695 60.2484210820674 24.5207329224864 60.2477329010526 24.5223319233796 60.2472670477361 24.5234188853733 60.2467619012408 24.5245850101901 60.2466810989536 24.5247860086674 60.2465810718591 24.5250190086204 60.2463408935175 24.5250257463412 60.2444411359497 24.5250729076886 60.2414519576418 24.5251470190198 60.2335389461655 24.5253440865604 60.2310221124806 24.5254058457033 60.2309619001716 24.5253019785035 60.2305838971292 24.524646769333 60.2300060134668 24.5235671071363 60.2288839473363 24.5215150179038 60.2280130303771 24.5199418437412 60.2264860822669 24.5170633045279 60.2245048749001 24.5151212590389 60.221114016199 24.5115717905058 60.2209071118738 24.5115908795156 60.2199029693466 24.5106021720526 60.2198759204375 24.5102630574942 60.2173901079672 24.5077140883346 60.2165629493207 24.5068618116234 60.216402033627 24.5066922543441 60.2153628912845 24.5025981824602 60.2128630691753 24.5032011769928 60.2053490707031 24.5247472685716 60.2062194004051 24.527711499686 60.2061616999026 24.5280926998183 60.2063392998189 24.5282794997991 60.2060129997002 24.5339599002293 60.2057870648213 24.533884258252 60.2056655996877 24.5338466000406 60.205622899877 24.5344988999043 60.205542399762 24.5347042996638 60.2053420002332 24.5348416000598 60.2050860999436 24.5350304001329 60.2049709003868 24.5352193000307 60.2048301996541 24.535562600034 60.2047150000972 24.5359573997143 60.2045595001209 24.5364067999339 60.2019971499486 24.5346172839605 60.2003729311659 24.5339577544469 60.1990035712579 24.5336060053129 60.1982387455217 24.534485377698 60.1964677996493 24.5362056998332 60.1963689003045 24.5341189426351 60.1963370876865 24.5334367843802 60.1963030429511 24.5327102724611 60.1960730997938 24.5279929937817 60.1960530080399 24.5275938054098 60.1958540384332 24.5234132709058 60.1957100434838 24.5203949311812 60.1955188862876 24.5163878830944 60.1954619574034 24.5210361037333 60.1954159121147 24.5248309244077 60.1953930288652 24.5266960517814 60.1960359856723 24.5280839485155 60.195607907479 24.5287531934052 60.1953829825387 24.5286768364669 60.194676943686 24.5302090258259 60.194141124913 24.5313717826817 60.1935779478641 24.5325968598572 60.1921160989788 24.5358448306744 60.1910979567054 24.5380799517284 60.1897780649059 24.5410460768151 60.1894919743752 24.5416900561512 60.187779007795 24.5455387758938 60.1863160626363 24.5488221179464 60.1861379707908 24.5492128850667 60.1856960853061 24.5501948566074 60.1851051272998 24.5515451364989 60.1849870463152 24.5518140697636 60.1847980591832 24.5522261715006 60.1844809393439 24.5529201198677 60.1840541058124 24.5538397701893 60.1832551400128 24.5533788226746 60.1828771459636 24.5547611049411 60.1825359980379 24.5563208054609 60.1822920002757 24.5570271051168 60.1820759174697 24.5575969740212 60.182084014066 24.5588147531984 60.181802044229 24.5599718955866 60.1816839506538 24.5604480020737 60.1810479716866 24.563053116808 60.1810231243178 24.5631541772236 60.1809360186824 24.5634989053502 60.1809201051788 24.5635629109996 60.180881018844 24.5637178695841 60.1794738856114 24.5685159964161 60.1793351229176 24.5689410115185 60.1792929635994 24.5690757587393 60.1791399619398 24.5690241061776 60.1789579211712 24.5689960338399 60.1787510312352 24.5688899201338 60.1786050065159 24.5687388906873 60.1784221257805 24.5684901696856 60.1781529676854 24.5681499327732 60.1778930222453 24.5678911060897 60.1775870036374 24.5677030209777 60.1773560919102 24.5676019605621 60.1772011261311 24.5676002761319 60.1770039974366 24.5676889852585 60.1767359446082 24.5677889224209 60.1766569247773 24.5678158724047 60.1763729539487 24.5679012117716 60.1762861145126 24.5679292841092 60.1761548782451 24.5679500575492 60.1759390346588 24.5679539875865 60.175763120072 24.5679989033268 60.1754528935363 24.5682038318414 60.1753479012847 24.5682908565378 60.1752230834786 24.5684722039291 60.1740849005977 24.5701161205625 60.1726191117826 24.5722928504347 60.1679261354828 24.567381873075 60.1637699294387 24.5770112514682 60.1653020333622 24.5877831753533 60.1639121095563 24.5890060069218 60.159876919884 24.5925537901254 60.1598861397336 24.599415235125 60.1570401191063 24.6089542199613 60.1569359065669 24.6093011945945 60.156869131905 24.6095252121189 60.156662102574 24.6102258982067 60.156550904101 24.6106020675314 60.1557970905633 24.6131487910839 60.1550899203636 24.614651784852 60.1531340172212 24.618809300309 60.1526531272401 24.6198300110462 60.1494040682432 24.6267307573186 60.1460630175943 24.6290152853272 60.1421961414388 24.6316557703975 60.1376959060413 24.6347308159744 60.1367040329648 24.6387412320223 60.1362880416598 24.6404238887515 60.1345929877762 24.6410499023312 60.1342359614205 24.6405041757272 60.1334659798711 24.6393290675825 60.1327250572157 24.6381971898485 60.1313091501972 24.6399348688991 60.1312451202662 24.6400129093683 60.131209889325 24.6400561415777 60.130482897168 24.6409488419156 60.130039982859 24.6411548927841 60.1276880218848 24.6422160280473 60.1277031224012 24.6424377999646 60.1263378957773 24.6431682419209 60.1179291231306 24.6476682398974 60.1173789053123 24.6479618775386 60.1149728869892 24.6494188323133 60.1061689027727 24.6547480879539 60.1007760102048 24.6530878890949 60.0923500703995 24.644848091866 60.0922669280763 24.6447661204601 60.0921370353959 24.6446532699325 60.0913268757348 24.6454028017979 60.0912490502035 24.6454752277996 60.08651393527 24.6498657441089 60.0859251131535 24.6504092251057 60.0855448797925 24.6507601288769 60.0853939609626 24.6509032982487 60.0852749608708 24.6510127808152 60.085113120674 24.6511610025782 60.084993000027 24.6512710463218 60.0814199818468 24.6545538271974 60.081153949795 24.6547952493013 60.0800371536918 24.6558260657204 60.0797439459264 24.6560961222383 60.0768271324662 24.6587759085814 60.0768170501668 24.6587848919093 60.0768080875233 24.658792751984 60.0767599153379 24.6588371065473 60.0767291072626 24.6588651788849 60.0766949384207 24.6588971812599 60.0766879362993 24.6589027957275 60.0766590896453 24.6589297457112 60.076640043803 24.6589482726447 60.0765941118289 24.6589898204239 60.0765641446196 24.6590178927616 60.0764689190054 24.6591049165587 60.0764319496748 24.6591391654402 60.076261103667 24.6592958084548 60.0761619561094 24.6593867631886 60.076135909045 24.6594109054889 60.0761039804144 24.6594401010798 60.0760009118127 24.6595349849516 60.0759829865257 24.6595512671773 60.0759560994945 24.6595759706546 60.0759289318748 24.6596001129549 60.0758250224069 24.6596961200799 60.0758191408407 24.6597022966237 60.0757880512776 24.6597298068851 60.0757090692182 24.6598027958624 60.075639048903 24.6598679229663 60.0756079593399 24.659895995304 60.0645708928325 24.6693643491854 59.9017909108219 24.4823883926103 59.8981942143915 24.3229527149958 + + + + + + + + + + + 2024-01-01T00:00:00 + + + + + + 59.851467 22.443696 59.849514 22.427745 59.852932 22.416026 59.861233 22.413829 59.865668 22.421886 59.865912 22.427745 59.866767 22.433767 59.872992 22.457042 59.874335 22.480154 59.876654 22.488129 59.877631 22.498546 59.876288 22.510265 59.873725 22.512869 59.86872 22.505056 59.851467 22.443696 59.959418 23.920421 59.953803 23.908702 59.954291 23.896007 59.951239 23.895681 59.949693 23.894216 59.947984 23.886078 59.946723 23.870779 59.953315 23.856212 59.952582 23.850434 59.954657 23.847423 59.962877 23.854015 59.972805 23.870291 59.976508 23.892263 59.973456 23.915212 59.969306 23.923513 59.96776 23.920095 59.959418 23.920421 60.011054 22.880056 60.006049 22.872244 60.01142 22.859548 60.027899 22.851085 60.041327 22.855724 60.043118 22.883311 60.048082 22.8838 60.0515 22.875173 60.051907 22.86199 60.055569 22.855154 60.062567 22.863292 60.067776 22.88738 60.068671 22.917735 60.065375 22.926606 60.058336 22.919607 60.049221 22.91684 60.041571 22.910981 60.038398 22.906586 60.037543 22.900727 60.033149 22.893403 60.019355 22.884044 60.011054 22.880056 60.066474 22.449474 60.029527 22.449718 60.012356 22.448009 59.997504 22.442638 59.997504 22.435802 60.006903 22.425629 60.009345 22.409516 60.005032 22.394542 59.994452 22.38795 59.99258 22.382823 60.004543 22.37143 60.020901 22.359711 60.032294 22.353201 60.047512 22.349457 60.063218 22.348888 60.075629 22.354828 60.080756 22.370616 60.07453 22.38266 60.061835 22.383474 60.051663 22.387218 60.052802 22.408376 60.075751 22.401866 60.085191 22.411794 60.081855 22.430431 60.066474 22.449474 60.096869 22.963145 60.088853 22.957286 60.084703 22.946788 60.083889 22.93686 60.085883 22.931977 60.089748 22.933279 60.089911 22.927908 60.084703 22.91505 60.081 22.898936 60.081529 22.870372 60.081041 22.861583 60.082221 22.84547 60.085761 22.845063 60.09162 22.856619 60.100816 22.864024 60.109849 22.873302 60.113674 22.879731 60.119086 22.891612 60.125067 22.917003 60.124335 22.937673 60.118638 22.950043 60.110785 22.95753 60.104397 22.961681 60.096869 22.963145 60.112047 21.987641 60.111396 21.971365 60.113471 21.943858 60.116278 21.939301 60.124579 21.929942 60.131293 21.93572 60.135728 21.950531 60.137885 21.962087 60.130764 21.977224 60.12995 21.991547 60.128485 21.999766 60.122748 22.01238 60.115465 22.007335 60.112047 21.987641 60.138821 21.63738 60.129096 21.613292 60.128485 21.630219 60.123684 21.636974 60.116156 21.635102 60.107367 21.626313 60.102118 21.613129 60.102729 21.599132 60.107367 21.572032 60.106594 21.561778 60.101386 21.534353 60.097805 21.524262 60.097357 21.514415 60.102973 21.503917 60.110175 21.493175 60.114814 21.48227 60.12108 21.499197 60.12287 21.518565 60.121649 21.558116 60.13345 21.549001 60.13703 21.533051 60.135321 21.496593 60.15941 21.529796 60.170356 21.571056 60.168891 21.614513 60.155829 21.654307 60.145087 21.647472 60.138821 21.63738 60.183743 21.887706 60.176337 21.887706 60.176947 21.876475 60.176418 21.865733 60.17414 21.855642 60.170111 21.846039 60.167182 21.852306 60.155829 21.867849 60.155829 21.791515 60.149604 21.826182 60.145453 21.817149 60.142524 21.80714 60.141384 21.79656 60.139716 21.801036 60.135321 21.805675 60.123236 21.783214 60.11518 21.752126 60.113715 21.720225 60.121649 21.695811 60.126899 21.704438 60.129584 21.706879 60.142157 21.702647 60.148383 21.717296 60.149604 21.722504 60.155829 21.722504 60.160712 21.705089 60.17178 21.708181 60.18358 21.723481 60.190619 21.743663 60.196601 21.799571 60.196763 21.853526 60.183743 21.887706 60.146877 22.323741 60.146877 22.298676 60.149848 22.288341 60.152045 22.292166 60.156317 22.292247 60.164618 22.290782 60.170356 22.293712 60.172553 22.298188 60.17593 22.299083 60.182196 22.299327 60.188788 22.304535 60.191962 22.313162 60.204047 22.375011 60.195258 22.38559 60.177395 22.367931 60.16885 22.344249 60.164049 22.319998 60.160102 22.319102 60.154039 22.333263 60.148505 22.336925 60.146877 22.323741 60.190863 21.394379 60.190619 21.448904 60.183743 21.448904 60.184516 21.409353 60.178656 21.394216 60.162665 21.38738 60.162665 21.380544 60.170356 21.372244 60.174465 21.357107 60.176337 21.325694 60.179389 21.310557 60.185736 21.300792 60.190863 21.289724 60.190619 21.270681 60.203843 21.285167 60.209703 21.306407 60.211086 21.353282 60.196601 21.368907 60.190863 21.394379 60.137274 22.009288 60.135484 21.977712 60.149075 21.950694 60.176337 21.935395 60.181383 21.950206 60.190619 21.997569 60.205756 22.026541 60.211412 22.041759 60.211086 22.05893 60.196763 22.072032 60.170111 22.011241 60.167304 22.017426 60.158515 22.031505 60.155829 22.037852 60.137274 22.009288 60.199774 25.852061 60.196031 25.835623 60.197211 25.820649 60.207668 25.81422 60.216295 25.822032 60.218817 25.840587 60.217231 25.876231 60.20425 25.863129 60.199774 25.852061 60.195868 22.269298 60.184963 22.23227 60.20425 22.209239 60.223863 22.222423 60.243069 22.24586 60.252997 22.271658 60.245185 22.291759 60.221259 22.296886 60.195868 22.269298 60.257025 21.597423 60.254828 21.600434 60.255194 21.615896 60.25259 21.62672 60.243109 21.621593 60.234849 21.610118 60.228258 21.606456 60.222561 21.601736 60.221747 21.592296 60.222561 21.587413 60.221625 21.577891 60.226223 21.563487 60.239936 21.562266 60.255927 21.571056 60.269355 21.586925 60.268785 21.604666 60.260688 21.606781 60.257025 21.597423 60.218329 25.6338 60.20425 25.635997 60.211249 25.611583 60.215399 25.603363 60.222398 25.608165 60.238349 25.622325 60.24258 25.592052 60.258043 25.57016 60.278266 25.564464 60.296373 25.581716 60.290717 25.598318 60.245185 25.684418 60.238349 25.677013 60.234442 25.659923 60.228095 25.643728 60.218329 25.6338 60.193061 22.833507 60.182074 22.833995 60.170111 22.840343 60.169257 22.833507 60.167141 22.828868 60.164618 22.824555 60.162665 22.819347 60.161444 22.825043 60.155829 22.840343 60.145941 22.835704 60.142157 22.833018 60.111029 22.846853 60.082099 22.813162 60.046576 22.730479 60.03974 22.730479 60.040107 22.739757 60.038479 22.745779 60.032294 22.757986 60.02619 22.74822 60.008612 22.735118 60.00495 22.729828 60.006903 22.705414 60.005113 22.694835 59.997504 22.68214 60.016303 22.6692 60.032294 22.654959 60.021918 22.646251 60.001654 22.613943 60.000149 22.608409 59.995917 22.605317 59.984524 22.606456 59.984524 22.600271 59.998481 22.601899 60.008043 22.598969 60.010932 22.591482 60.00495 22.579112 60.017035 22.57488 60.024604 22.580821 60.032782 22.58961 60.046576 22.593435 60.038642 22.581554 60.020819 22.546235 60.008246 22.529959 60.001858 22.486339 59.997504 22.4699 60.023668 22.469574 60.035631 22.47169 60.046576 22.477306 60.058987 22.471446 60.071234 22.473399 60.082221 22.476329 60.090969 22.473643 60.097561 22.461762 60.105129 22.434825 60.114814 22.42213 60.11872 22.443044 60.13231 22.480479 60.135321 22.500824 60.135321 22.600271 60.142157 22.600271 60.149604 22.415212 60.171332 22.426117 60.199408 22.43393 60.221381 22.44809 60.224677 22.477306 60.200019 22.455903 60.188544 22.45102 60.183743 22.466482 60.193305 22.56658 60.206366 22.602061 60.211086 22.620616 60.226996 22.814952 60.241767 22.843516 60.265326 22.865733 60.285549 22.890961 60.296698 22.920746 60.292955 22.956391 60.270453 22.949474 60.257229 22.930431 60.247463 22.906423 60.235297 22.884532 60.225653 22.877452 60.215522 22.873057 60.207465 22.866873 60.201117 22.839854 60.193061 22.833507 60.28498 21.983165 60.284573 21.976817 60.285346 21.972911 60.289252 21.979015 60.296129 21.996349 60.297309 22.008311 60.292141 22.006033 60.287299 21.995779 60.28498 21.983165 60.312161 21.959809 60.309312 21.973806 60.302558 21.975352 60.281399 21.956879 60.277086 21.944591 60.277289 21.925955 60.280097 21.909679 60.2897 21.896007 60.289496 21.884939 60.304877 21.875336 60.310533 21.879731 60.310614 21.895193 60.309394 21.908539 60.312649 21.925466 60.312161 21.959809 60.2862 22.33961 60.274482 22.337169 60.269436 22.331798 60.265692 22.312836 60.26675 22.305186 60.270738 22.297699 60.273139 22.289806 60.26911 22.281505 60.266303 22.277599 60.260077 22.265391 60.258857 22.260997 60.253119 22.215505 60.25434 22.200857 60.265692 22.216645 60.276313 22.203949 60.281317 22.181163 60.281724 22.156993 60.278713 22.14088 60.278713 22.181895 60.259223 22.163341 60.262397 22.136892 60.271308 22.10963 60.26911 22.089366 60.269477 22.080089 60.283515 22.076671 60.301459 22.083832 60.313463 22.106781 60.31566 22.132009 60.311469 22.249766 60.297065 22.3213 60.2862 22.33961 60.33393 22.428966 60.333238 22.443858 60.334133 22.45753 60.331529 22.469005 60.32095 22.477306 60.308905 22.454438 60.299058 22.425304 60.293158 22.394786 60.292955 22.367442 60.299221 22.374522 60.306098 22.379893 60.32095 22.38795 60.314521 22.369884 60.313666 22.350597 60.32095 22.312836 60.337348 22.329356 60.347846 22.350271 60.35342 22.373709 60.355048 22.398204 60.353095 22.401866 60.348619 22.401703 60.34398 22.400645 60.341376 22.401622 60.33393 22.428966 60.343207 22.202159 60.341742 22.191091 60.344184 22.170177 60.351874 22.157237 60.358303 22.157074 60.36164 22.164236 60.374172 22.255707 60.374986 22.284923 60.36758 22.299653 60.357978 22.289561 60.343207 22.202159 60.375556 22.20753 60.352932 22.112478 60.354153 22.104259 60.371649 22.122081 60.379096 22.137869 60.380439 22.146821 60.382554 22.206228 60.375556 22.20753 60.370429 21.352306 60.35814 21.357107 60.351793 21.355317 60.35163 21.352794 60.353827 21.345714 60.353095 21.33839 60.356024 21.333669 60.362982 21.333995 60.36518 21.331065 60.366685 21.323741 60.364244 21.303884 60.37051 21.294444 60.37759 21.296153 60.383694 21.302989 60.389594 21.307791 60.391506 21.319835 60.383368 21.338064 60.370429 21.352306 60.378363 26.548595 60.378079 26.538341 60.385159 26.526134 60.403469 26.507172 60.411282 26.513438 60.416815 26.560883 60.42178 26.574718 60.427395 26.58074 60.434638 26.580251 60.441067 26.584972 60.44595 26.593435 60.446519 26.602061 60.431871 26.644054 60.426907 26.652599 60.421536 26.649669 60.414862 26.636485 60.405341 26.57309 60.397406 26.55893 60.378363 26.548595 60.402167 21.950369 60.395982 21.950369 60.40119 21.921072 60.40176 21.906993 60.395982 21.894542 60.390448 21.90797 60.382636 21.936778 60.375556 21.950369 60.368109 21.942231 60.369452 21.974864 60.365912 21.988617 60.355048 21.997569 60.347846 21.973318 60.347602 21.96339 60.342597 21.979503 60.341254 21.987966 60.341376 21.997569 60.33393 21.997569 60.328599 21.979666 60.327541 21.960623 60.329576 21.941091 60.33393 21.921723 60.332668 21.918712 60.329413 21.913829 60.326728 21.907888 60.327094 21.901378 60.329535 21.900727 60.339016 21.901703 60.341376 21.901378 60.350898 21.879242 60.353949 21.868419 60.357571 21.837413 60.364244 21.814464 60.373969 21.794119 60.385443 21.78533 60.396959 21.792247 60.405219 21.808849 60.409613 21.828868 60.409654 21.846039 60.41649 21.846039 60.443793 21.79835 60.456773 21.801931 60.466702 21.808116 60.471991 21.817882 60.471137 21.832367 60.463813 21.848399 60.449205 21.892345 60.440375 21.901378 60.431627 21.904633 60.426459 21.912852 60.423977 21.923025 60.423326 21.931977 60.402167 21.950369 60.459703 21.700694 60.455308 21.687999 60.464911 21.681651 60.484076 21.690929 60.508612 21.714203 60.526435 21.741873 60.525784 21.764171 60.51203 21.760509 60.501654 21.750824 60.481676 21.725922 60.470893 21.715099 60.459703 21.700694 60.482082 21.32488 60.481676 21.319102 60.487738 21.300141 60.490058 21.265961 60.49844 21.250255 60.519721 21.26059 60.531399 21.25294 60.541938 21.238455 60.559882 21.229177 60.559882 21.250255 60.542304 21.278494 60.518948 21.304942 60.509589 21.307628 60.482082 21.32488 60.539374 21.461925 60.525784 21.48227 60.525214 21.477794 60.524075 21.474783 60.523749 21.470714 60.525784 21.463145 60.516099 21.458507 60.506781 21.456309 60.498521 21.45753 60.492255 21.463145 60.493354 21.446462 60.489081 21.433604 60.481147 21.430675 60.471137 21.442638 60.477688 21.417654 60.489976 21.392263 60.508368 21.371267 60.533189 21.360118 60.522895 21.346934 60.519436 21.336111 60.525336 21.328624 60.543158 21.325938 60.557359 21.333832 60.561835 21.35255 60.559882 21.394216 60.542914 21.410981 60.539374 21.461925 60.567328 21.298676 60.566352 21.281016 60.572821 21.273285 60.581692 21.269786 60.587836 21.264415 60.590806 21.244395 60.593899 21.233165 60.601467 21.222911 60.61636 21.213878 60.622626 21.219086 60.62873 21.243419 60.635688 21.249197 60.6435 21.253266 60.647528 21.259288 60.643052 21.270681 60.634467 21.271495 60.626776 21.274913 60.620307 21.281261 60.615139 21.291189 60.600898 21.283376 60.586127 21.278331 60.575629 21.281505 60.574164 21.298676 60.567328 21.298676 60.850287 21.22462 60.847113 21.226573 60.848619 21.235362 60.848212 21.242035 60.846015 21.24586 60.847113 21.251964 60.853095 21.259532 60.85106 21.267345 60.837795 21.267589 60.830268 21.263194 60.832953 21.250173 60.845282 21.209809 60.843248 21.205333 60.844916 21.202403 60.848293 21.201182 60.85224 21.195486 60.856513 21.18629 60.860541 21.189464 60.863186 21.206554 60.858954 21.221528 60.850287 21.22462 60.889472 21.325938 60.880194 21.318126 60.879136 21.297374 60.883287 21.275238 60.882025 21.264415 60.882025 21.2317 60.884101 21.216563 60.889472 21.202403 60.899726 21.227794 60.889106 21.276622 60.895697 21.298676 60.899644 21.295258 60.902981 21.293793 60.906155 21.292817 60.90998 21.291189 60.912299 21.297374 60.919338 21.306407 60.923 21.312266 60.942816 21.283214 60.949612 21.264822 60.950873 21.243419 60.967963 21.27003 60.971991 21.285004 60.971381 21.304942 60.956244 21.321951 60.946723 21.337087 60.930406 21.374278 60.919867 21.354747 60.916693 21.338552 60.910142 21.327891 60.889472 21.325938 61.192206 21.389171 61.176744 21.421886 61.173 21.429373 61.171454 21.431651 61.172105 21.423595 61.180976 21.388845 61.176093 21.369395 61.176011 21.352387 61.177558 21.34669 61.177883 21.348155 61.178046 21.349783 61.181871 21.347179 61.190619 21.342947 61.196275 21.346446 61.197455 21.353526 61.199774 21.357432 61.202582 21.356781 61.208564 21.363129 61.214016 21.380056 61.209621 21.391368 61.200995 21.385753 61.192206 21.389171 61.618069 21.507823 61.617743 21.500987 61.620836 21.478363 61.626166 21.461925 61.62934 21.459972 61.630316 21.470958 61.640448 21.484548 61.633979 21.521251 61.633124 21.523936 61.629096 21.526134 61.625434 21.521983 61.624945 21.514659 61.622219 21.510509 61.618069 21.507823 62.975165 21.215994 62.961371 21.221202 62.951361 21.221934 62.947089 21.216563 62.946234 21.208507 62.953925 21.191417 62.9501 21.182872 62.94599 21.168142 62.953274 21.146658 62.962958 21.135997 62.967231 21.136485 62.968248 21.141856 62.965522 21.148204 62.963568 21.150564 62.967597 21.154796 62.975409 21.159353 62.979682 21.15268 62.984565 21.140391 62.992825 21.131847 63.0008 21.130382 63.006578 21.136241 63.010159 21.145193 63.010321 21.151622 63.006822 21.155121 63.00434 21.159841 62.999416 21.184744 62.994371 21.195649 62.986151 21.207367 62.975165 21.215994 63.287787 21.078949 63.271959 21.120291 63.273749 21.159434 63.280707 21.199474 63.280992 21.243419 63.274807 21.243419 63.271633 21.227224 63.263861 21.21518 63.239407 21.195079 63.231594 21.197927 63.230292 21.199474 63.23017 21.198904 63.225775 21.195079 63.221381 21.209483 63.21955 21.264415 63.217108 21.272227 63.21308 21.27947 63.211371 21.286794 63.215806 21.294932 63.223049 21.297862 63.228909 21.294607 63.234198 21.290375 63.239407 21.291189 63.251939 21.315766 63.260728 21.355968 63.260688 21.396332 63.246812 21.42213 63.233466 21.415212 63.220445 21.414806 63.208686 21.419607 63.198432 21.428396 63.192532 21.404552 63.190131 21.377452 63.193671 21.363943 63.205878 21.380544 63.206244 21.362804 63.177924 21.291189 63.171129 21.291189 63.170233 21.298188 63.164944 21.318533 63.156155 21.301524 63.151923 21.283458 63.150702 21.243419 63.158393 21.23113 63.169623 21.219249 63.183336 21.207367 63.191596 21.188813 63.1883 21.175792 63.181952 21.161632 63.182196 21.147227 63.198432 21.133556 63.198432 21.154552 63.205878 21.154552 63.210679 21.141612 63.227484 21.113129 63.235989 21.102794 63.24551 21.096528 63.277289 21.081798 63.287787 21.078949 63.322089 22.033458 63.302151 22.060802 63.294867 22.058116 63.282172 22.046641 63.277411 22.029796 63.277737 22.013845 63.281073 22.007091 63.288235 22.008149 63.291164 22.004568 63.289008 21.997813 63.284735 21.995616 63.280097 21.99464 63.277574 21.989919 63.277167 21.984386 63.280015 21.978282 63.286811 21.974376 63.298651 21.977712 63.31037 21.989024 63.313422 22.002289 63.307196 22.021821 63.308417 22.029959 63.313422 22.026215 63.320299 22.011974 63.324897 22.007579 63.326117 22.012706 63.326239 22.018565 63.323432 22.022227 63.322211 22.026215 63.322089 22.033458 63.313788 22.238943 63.307074 22.246267 63.302476 22.244477 63.293158 22.234386 63.279975 22.222667 63.273261 22.208669 63.273505 22.187266 63.28856 22.156505 63.284166 22.114431 63.282213 22.114106 63.27912 22.139008 63.274075 22.158539 63.263332 22.163097 63.256537 22.157237 63.255805 22.148692 63.254136 22.144054 63.25141 22.144216 63.250556 22.136485 63.261786 22.08546 63.266303 22.079356 63.270453 22.083181 63.274482 22.078461 63.278998 22.067068 63.283881 22.068696 63.2862 22.075694 63.288031 22.083344 63.294623 22.088878 63.304185 22.082774 63.312812 22.072765 63.318549 22.069184 63.321601 22.078624 63.323065 22.092621 63.328925 22.110199 63.326361 22.123546 63.325914 22.132091 63.322211 22.139985 63.315579 22.14796 63.311021 22.158214 63.311713 22.163585 63.316718 22.164399 63.319159 22.169688 63.317857 22.178559 63.314765 22.18629 63.310533 22.190603 63.30976 22.195649 63.312812 22.202647 63.317939 22.208018 63.325385 22.210704 63.332953 22.215343 63.338568 22.22169 63.340644 22.226329 63.338813 22.231293 63.331244 22.235688 63.325507 22.237071 63.313788 22.238943 63.31566 21.358246 63.287787 21.318533 63.304023 21.315278 63.305894 21.305919 63.302191 21.292654 63.301459 21.277517 63.328803 21.229177 63.332831 21.23406 63.334377 21.23878 63.335028 21.250255 63.340766 21.276622 63.355618 21.311046 63.363756 21.345958 63.34927 21.374278 63.333401 21.373871 63.31566 21.358246 63.385199 22.069835 63.38349 22.079438 63.383938 22.089122 63.38349 22.096039 63.380316 22.096039 63.377631 22.088878 63.376858 22.079438 63.373603 22.080251 63.367011 22.085134 63.360053 22.076182 63.357856 22.059337 63.366156 22.026866 63.363715 22.012706 63.354193 22.001964 63.348456 21.997081 63.341132 21.984141 63.333157 21.966075 63.33161 21.957205 63.333808 21.948985 63.337958 21.947276 63.340033 21.948985 63.343655 21.951345 63.349311 21.956228 63.353827 21.961192 63.359809 21.966075 63.365139 21.97169 63.368883 21.978201 63.373277 21.983653 63.377875 21.986583 63.384711 21.99643 63.385403 22.014659 63.383368 22.030284 63.387519 22.045909 63.388373 22.059825 63.38703 22.064952 63.385199 22.069835 63.777655 22.795665 63.776068 22.800304 63.778225 22.804454 63.779527 22.807953 63.779242 22.823416 63.776313 22.828868 63.772854 22.825531 63.77147 22.821137 63.768866 22.820079 63.763251 22.819102 63.756496 22.815196 63.753485 22.812022 63.747138 22.809418 63.738186 22.802094 63.74022 22.793224 63.744818 22.782074 63.741767 22.777192 63.73432 22.780447 63.728176 22.776052 63.727037 22.764496 63.722724 22.756602 63.720526 22.739594 63.72663 22.719249 63.736396 22.702891 63.751125 22.692231 63.755113 22.687022 63.758612 22.683116 63.763414 22.681488 63.769761 22.702973 63.773383 22.711436 63.778876 22.719574 63.78559 22.737315 63.791449 22.763845 63.790432 22.781749 63.783759 22.789806 63.777655 22.795665 65.065834 24.873013 65.059139 24.882842 65.060482 24.906522 65.059142 24.936267 65.055104 24.993437 65.057512 25.033586 65.04348 25.061818 65.034619 25.028009 65.034779 24.962218 65.045255 24.877376 65.04328 24.819657 65.024266 24.801552 65.003467 24.722367 64.975966 24.750775 64.979194 24.812388 64.972968 24.827322 64.968085 24.816091 64.967231 24.804698 64.967719 24.792817 64.966783 24.780121 64.963853 24.771251 64.956448 24.761078 64.953111 24.752126 64.950914 24.734711 64.951728 24.713145 64.958157 24.700694 64.972968 24.710623 64.976508 24.706065 64.98664 24.69752 64.996568 24.68393 64.971991 24.658376 64.967841 24.631602 64.992518 24.597367 65.009536 24.579009 65.022915 24.5699 65.037177 24.562755 65.049384 24.585785 65.080221 24.65419 65.083272 24.740888 65.0948 24.834506 65.086904 24.883096 65.072415 24.896983 65.065834 24.873013 70.070685 27.897294 70.05327 27.927163 70.009604 27.98101 69.894339 28.167355 69.886045 28.189266 69.856202 28.381192 69.822354 28.379745 69.802252 28.40455 69.791452 28.442687 69.785716 28.480928 69.729957 28.806076 69.674198 29.131224 69.663914 29.14714 69.585986 29.203158 69.464392 29.344544 69.376852 29.229254 69.216603 28.86478 69.203529 28.852171 69.181256 28.84411 69.106842 28.826953 69.090771 28.827573 69.080281 28.839614 69.027261 28.954077 68.984473 28.833464 68.968039 28.713265 68.900137 28.456226 68.898535 28.410234 68.880086 28.413128 68.870578 28.426771 68.865823 28.444238 68.871663 28.645672 68.865048 28.728251 68.835489 28.801477 68.760145 28.747268 68.727951 28.716366 68.542432 28.459947 68.52972 28.447907 68.514889 28.447441 68.491066 28.460981 68.462592 28.480928 68.204003 28.663759 68.183178 28.690321 68.172687 28.727218 68.127238 29.012937 68.081789 29.298656 68.072694 29.33085 68.056726 29.360151 67.991148 29.442626 67.991096 29.442626 67.960452 29.480867 67.823562 29.651192 67.792504 29.713824 67.685844 30.009413 67.67246 29.987864 67.662228 29.977684 67.649309 29.973446 67.584713 29.964661 67.571587 29.959907 67.52637 29.933449 67.508129 29.916241 67.298167 29.519831 67.28809 29.508462 67.270262 29.49699 67.262976 29.490685 67.256774 29.480867 67.232771 29.429397 66.991261 29.100115 66.991235 29.100115 66.991209 29.099908 66.991132 29.099908 66.907803 29.051539 66.837549 29.089159 66.680065 29.32222 66.626553 29.362498 66.624591 29.363975 66.60529 29.392397 66.596453 29.395394 66.586634 29.396427 66.576222 29.401337 66.56847 29.40945 66.491214 29.524482 66.474031 29.534197 66.431969 29.546194 66.412795 29.551663 66.378172 29.569699 66.345926 29.593211 66.287893 29.650882 66.180871 29.792372 66.133587 29.875365 66.108059 29.900169 66.06863 29.92053 65.99127 29.948849 65.973881 29.95846 65.931532 29.997941 65.915693 30.009723 65.865386 30.039282 65.822805 30.075146 65.804615 30.083517 65.712011 30.111733 65.687206 30.11628 65.665502 30.113903 65.656381 30.098503 65.661678 30.064707 65.678137 30.003005 65.648087 29.76426 65.62938 29.702869 65.60871 29.732324 65.584861 29.806738 65.564888 29.838571 65.551969 29.825755 65.511403 29.74545 65.496921 29.731533 65.491507 29.72633 65.491249 29.72633 65.454171 29.718165 65.365365 29.730567 65.329088 29.720129 65.269402 29.615122 65.235399 29.580085 65.215219 29.626698 65.217364 29.766844 65.205013 29.833197 65.166902 29.839294 65.158608 29.829683 65.1522 29.818004 65.145224 29.809115 65.135302 29.808185 65.126517 29.820329 65.124812 29.838054 65.121504 29.850198 65.108017 29.845599 65.093651 29.820484 65.077941 29.667832 65.062231 29.627318 65.034378 29.598379 64.991435 29.588147 64.90715 29.633622 64.839144 29.698321 64.795581 29.78028 64.784832 29.877845 64.78416 30.062537 64.775479 30.101914 64.767934 30.118864 64.761578 30.120414 64.754343 30.114937 64.744421 30.111113 64.731657 30.109045 64.725611 30.106823 64.720082 30.109149 64.70892 30.120518 64.70122 30.13137 64.681686 30.17054 64.662359 30.1878 64.642774 30.180824 64.626082 30.160412 64.615385 30.136434 64.578643 29.965798 64.574871 29.95877 64.56898 29.954843 64.565983 29.958874 64.564432 29.965178 64.56283 29.968486 64.545415 29.970036 64.536217 29.973602 64.52676 29.980785 64.524021 29.978924 64.521127 29.978201 64.518337 29.978976 64.515546 29.980785 64.513221 29.991533 64.51074 29.993394 64.504178 29.9905 64.491465 30.035768 64.47188 30.070391 64.448419 30.062795 64.422942 30.041039 64.396949 30.032461 64.378087 30.052977 64.361241 30.093129 64.341914 30.164443 64.317677 30.321126 64.300831 30.370477 64.283106 30.39926 64.264657 30.421585 64.250756 30.445976 64.24378 30.50344 64.234685 30.536203 64.219699 30.558475 64.198873 30.550259 64.179184 30.532482 64.162545 30.532792 64.14637 30.544781 64.127405 30.562144 64.084668 30.586432 64.051079 30.58049 64.021726 30.552326 63.991496 30.509331 63.991444 30.509331 63.991392 30.509331 63.895998 30.328567 63.830679 30.265573 63.792645 30.201546 63.763758 30.051271 63.7471 29.998433 63.741537 29.980785 63.715337 30.001145 63.581805 30.242474 63.532454 30.38045 63.491578 30.441428 63.472871 30.461065 63.462122 30.488661 63.375668 30.82094 63.289161 30.974936 63.225238 31.177817 63.21268 31.203966 63.19604 31.22567 63.175732 31.23306 63.157231 31.234248 63.135734 31.240759 63.115477 31.250836 63.100594 31.262773 63.084729 31.288508 63.062198 31.351554 63.047936 31.380337 63.001944 31.444468 62.991557 31.468032 62.986337 31.480641 62.968199 31.505446 62.943188 31.519295 62.91952 31.535832 62.905929 31.569525 62.826089 31.480641 62.788701 31.441264 62.746533 31.410568 62.651577 31.363336 62.629331 31.347006 62.596025 31.302771 62.572978 31.284064 62.524841 31.260086 62.503344 31.243757 62.491716 31.222156 62.491716 31.221949 62.491587 31.221587 62.476007 31.168619 62.467351 31.152961 62.456525 31.141644 62.434821 31.12335 62.358805 30.98062 62.348185 30.967081 62.314595 30.941863 62.302116 30.925636 62.292891 30.90755 62.252997 30.79381 62.21039 30.703841 62.199822 30.665497 62.192768 30.647721 62.184009 30.635008 62.151272 30.607206 62.067685 30.480702 61.991773 30.339936 61.991669 30.339729 61.991669 30.339574 61.850469 30.145649 61.728171 29.977684 61.660165 29.84224 61.644585 29.82188 61.609651 29.798057 61.593115 29.779143 61.511104 29.635121 61.499193 29.60427 61.484956 29.539726 61.47506 29.51704 61.459247 29.499057 61.434778 29.480867 61.413824 29.4634 61.338428 29.318396 61.316207 29.289251 61.304599 29.277059 61.290524 29.262275 61.245901 29.203158 61.213422 29.130087 61.168102 28.980846 61.147948 28.926379 61.112679 28.855479 61.09684 28.797601 61.08697 28.781323 61.061364 28.750162 61.027387 28.688977 61.012479 28.670684 60.991885 28.653837 60.99186 28.653837 60.991756 28.653734 60.991679 28.653734 60.961939 28.614563 60.950234 28.526403 60.933465 28.480928 60.859387 28.335924 60.791588 28.24394 60.757714 28.148132 60.664226 28.003782 60.649477 27.98101 60.604261 27.892953 60.553046 27.807872 60.562201 27.791189 60.573676 27.777599 60.580146 27.762055 60.574164 27.739513 60.57095 27.743175 60.563137 27.749522 60.559882 27.753184 60.555569 27.736176 60.544257 27.733409 60.530585 27.740571 60.518948 27.753184 60.513332 27.738129 60.512112 27.732677 60.506496 27.74643 60.505845 27.753184 60.488471 27.718435 60.485419 27.705414 60.492255 27.636485 60.503567 27.645763 60.511176 27.676606 60.518948 27.691661 60.52265 27.651703 60.521674 27.632172 60.512112 27.615977 60.499945 27.608246 60.492133 27.61085 60.484076 27.619314 60.471137 27.629649 60.477362 27.592459 60.513861 27.508474 60.505845 27.472667 60.504299 27.48227 60.501939 27.486339 60.492255 27.493175 60.489447 27.487071 60.481676 27.478282 60.477973 27.472667 60.474433 27.483572 60.470201 27.493012 60.464748 27.500743 60.457465 27.506684 60.46369 27.456798 60.49787 27.369314 60.505845 27.325206 60.50788 27.24879 60.512112 27.232432 60.526313 27.230805 60.529446 27.256602 60.525784 27.308116 60.536526 27.284923 60.559882 27.211925 60.579576 27.227712 60.584947 27.21461 60.579739 27.191742 60.567328 27.177745 60.552191 27.183849 60.537055 27.197032 60.523261 27.200694 60.512112 27.177745 60.525133 27.175792 60.528632 27.169688 60.525784 27.149913 60.529039 27.137706 60.543524 27.124034 60.54682 27.112559 60.543606 27.105642 60.529202 27.095714 60.525784 27.08839 60.528632 27.078949 60.542914 27.062836 60.54682 27.054373 60.545803 27.045177 60.541815 27.033376 60.536078 27.024425 60.529486 27.023936 60.519924 27.02711 60.51435 27.020763 60.509467 27.011729 60.488023 26.99822 60.483547 26.976899 60.485419 26.931407 60.469306 26.955577 60.458482 26.965343 60.447211 26.962413 60.449408 26.9546 60.466986 26.924327 60.474555 26.914724 60.45775 26.82309 60.457465 26.79363 60.46369 26.801036 60.470526 26.806488 60.485419 26.814708 60.485907 26.797048 60.482856 26.776541 60.47663 26.756847 60.468004 26.742442 60.460883 26.739024 60.443671 26.740977 60.436957 26.739024 60.432929 26.731944 60.425849 26.710623 60.419908 26.701427 60.418158 26.687348 60.428412 26.669281 60.442084 26.65089 60.450629 26.635916 60.452948 26.617035 60.452297 26.594412 60.447333 26.577159 60.436957 26.574474 60.43301 26.553396 60.439887 26.527354 60.45307 26.501964 60.468004 26.482677 60.48725 26.474864 60.498114 26.491466 60.505805 26.517263 60.51553 26.536632 60.543362 26.56365 60.549954 26.567638 60.572577 26.564464 60.580959 26.567393 60.591376 26.579845 60.609605 26.625011 60.606431 26.666677 60.574164 26.753184 60.61286 26.731781 60.640204 26.699229 60.651801 26.65919 60.643052 26.615489 60.628567 26.591807 60.591783 26.553315 60.508124 26.465831 60.474555 26.456228 60.443793 26.485688 60.427476 26.469412 60.420885 26.460704 60.41649 26.451508 60.416327 26.42335 60.411933 26.416352 60.395982 26.424164 60.398017 26.412852 60.402655 26.402599 60.41649 26.383311 60.404853 26.384532 60.398749 26.381196 60.39643 26.374034 60.395982 26.362804 60.392808 26.35141 60.38581 26.348969 60.37873 26.348318 60.375556 26.342052 60.383002 26.323985 60.3994 26.310232 60.41592 26.299164 60.423326 26.290212 60.429145 26.278656 60.440985 26.262543 60.450873 26.245616 60.450629 26.231781 60.438422 26.22934 60.424262 26.242931 60.402167 26.273448 60.410631 26.178966 60.409654 26.170421 60.398505 26.150727 60.395982 26.142426 60.402818 26.134451 60.423326 26.094574 60.432278 26.062185 60.437486 26.049164 60.462592 26.013682 60.475775 25.980968 60.484198 25.9463 60.485419 25.917247 60.477973 25.917247 60.464911 25.971853 60.458075 25.982595 60.440497 26.003754 60.433336 26.028982 60.42475 26.036143 60.414496 26.039317 60.405951 26.04005 60.400621 26.032481 60.401679 26.017426 60.400539 26.006847 60.388577 26.012218 60.380683 26.023204 60.368109 26.060557 60.350409 26.0796 60.34394 26.088634 60.341376 26.10141 60.335924 26.108165 60.324042 26.106456 60.312079 26.099864 60.306627 26.091319 60.299791 26.04005 60.322659 26.038829 60.354926 25.997081 60.368109 26.00587 60.367825 25.9935 60.363105 25.984874 60.357733 25.977306 60.355048 25.968028 60.356024 25.956554 60.358873 25.947765 60.389146 25.888357 60.39704 25.867198 60.402167 25.842052 60.377916 25.877696 60.367255 25.899099 60.361274 25.917247 60.340969 25.907237 60.320014 25.884288 60.306627 25.883067 60.291571 25.892426 60.265286 25.921235 60.245185 25.930186 60.246161 25.909353 60.249579 25.894867 60.255927 25.88266 60.265692 25.868826 60.272528 25.876231 60.284003 25.861013 60.287746 25.841482 60.288886 25.820323 60.292955 25.800548 60.314154 25.770356 60.320746 25.753754 60.313463 25.739024 60.295803 25.745372 60.28266 25.780935 60.265692 25.848888 60.25141 25.780528 60.245185 25.780528 60.240383 25.761974 60.24726 25.735525 60.293036 25.655772 60.299791 25.649669 60.313463 25.65089 60.32274 25.658539 60.32746 25.670584 60.33393 25.649669 60.341376 25.649669 60.341376 25.704356 60.36286 25.690196 60.364651 25.66863 60.35635 25.646007 60.347602 25.629161 60.338568 25.602712 60.327094 25.526134 60.32095 25.526134 60.316352 25.54127 60.305854 25.54656 60.292304 25.545095 60.278713 25.540375 60.275702 25.535899 60.274482 25.528819 60.271389 25.522227 60.254543 25.516856 60.249213 25.510916 60.246161 25.502778 60.245185 25.361664 60.260077 25.363455 60.267239 25.350922 60.272528 25.313813 60.26789 25.316173 60.256293 25.319509 60.25141 25.3213 60.245917 25.290538 60.245185 25.19752 60.243842 25.192149 60.240058 25.19044 60.228461 25.190929 60.227769 25.190278 60.223131 25.185802 60.225409 25.174164 60.232164 25.156261 60.223782 25.15504 60.212348 25.191254 60.20425 25.203949 60.200832 25.194672 60.200507 25.181407 60.190619 25.197113 60.183295 25.177013 60.175727 25.117035 60.176337 25.094737 60.183417 25.097423 60.18651 25.098969 60.190619 25.101573 60.177314 25.058604 60.168891 25.047862 60.162665 25.067393 60.156562 25.061046 60.156806 25.045258 60.147854 25.029307 60.151353 25.010753 60.162665 24.997895 60.169867 25.010753 60.183987 25.021495 60.199449 25.02589 60.211086 25.019054 60.212836 24.99879 60.199449 24.984548 60.151557 24.961192 60.143459 24.950938 60.140123 24.865733 60.143744 24.845225 60.155829 24.834158 60.161689 24.870942 60.179755 24.868826 60.194648 24.842459 60.190619 24.806814 60.162665 24.827322 60.158271 24.812511 60.146226 24.785899 60.142157 24.772634 60.138414 24.720958 60.132514 24.687755 60.130113 24.679698 60.125434 24.67335 60.118232 24.671153 60.105536 24.674815 60.101223 24.670258 60.100979 24.656423 60.109565 24.649587 60.120917 24.646169 60.129096 24.642263 60.136298 24.630626 60.153998 24.569102 60.155951 24.554047 60.152777 24.549001 60.142157 24.560395 60.13524 24.576671 60.132229 24.590831 60.127265 24.596853 60.114814 24.587657 60.107733 24.574718 60.10456 24.560557 60.099677 24.548025 60.087551 24.540375 60.101223 24.608165 60.091783 24.602712 60.084947 24.594249 60.07392 24.573985 60.066474 24.594493 60.060248 24.594493 60.035346 24.527029 60.005805 24.487641 59.996405 24.46811 59.992255 24.445649 59.99136 24.41627 60.005072 24.424327 60.037746 24.452973 60.046576 24.464122 60.047512 24.446137 60.035468 24.420909 60.00495 24.374766 60.02204 24.367686 60.016547 24.350271 60.003363 24.329763 59.997504 24.312673 60.014146 24.319102 60.021674 24.330577 60.026801 24.344249 60.036038 24.357677 60.043118 24.360362 60.051988 24.359711 60.062405 24.36085 60.07392 24.367931 60.075832 24.319672 60.072211 24.295909 60.060248 24.278575 60.052802 24.292247 60.041571 24.261078 60.03974 24.252452 60.039374 24.239024 60.046576 24.203949 60.048041 24.176524 60.043036 24.158458 60.034491 24.15797 60.025458 24.182953 60.019436 24.164236 60.021959 24.147716 60.027981 24.131847 60.032294 24.114757 60.031928 24.105968 60.020575 24.068126 60.020413 24.05836 60.025458 24.046397 60.009345 24.028168 60.010565 24.009613 60.020982 24.002615 60.032294 24.019216 60.03974 24.019216 60.038275 24.000824 60.031562 23.990245 60.021959 23.981944 60.011786 23.970714 60.003567 23.955333 59.999335 23.940684 59.993069 23.873057 59.95661 23.79949 59.967963 23.771251 59.95661 23.607595 59.961127 23.594493 59.973334 23.583832 59.977688 23.573497 59.977607 23.56186 59.968085 23.495453 59.957261 23.452973 59.95661 23.429454 59.971829 23.440603 60.011298 23.483572 60.019273 23.498302 60.02383 23.52711 60.02912 23.540863 60.036038 23.542735 60.044989 23.536143 60.053697 23.534353 60.063056 23.537364 60.07392 23.546153 60.06745 23.509613 60.0633 23.498302 60.055487 23.490245 60.045152 23.485688 60.036119 23.47877 60.032294 23.463878 60.027981 23.453787 60.017564 23.449392 60.005113 23.446056 59.994452 23.439708 59.988674 23.430186 59.980414 23.40797 59.97427 23.398692 59.94538 23.365001 59.923041 23.326427 59.898017 23.237153 59.886217 23.222341 59.867825 23.222179 59.851996 23.233165 59.847968 23.251313 59.841132 23.251313 59.82685 23.080577 59.820787 23.068126 59.826158 23.006847 59.823717 22.983897 59.818305 22.964854 59.811225 22.905121 59.813178 22.888194 59.819648 22.906016 59.842841 22.931407 59.847968 22.946137 59.851955 22.986583 59.886379 23.127452 59.888902 23.168142 59.910224 23.161143 59.91767 23.165863 59.917426 23.177094 59.915595 23.18922 59.916083 23.222423 59.922431 23.247081 59.936225 23.268891 59.958686 23.293712 59.979438 23.309093 60.009345 23.326427 60.029853 23.332856 60.022406 23.315929 59.948472 23.249766 59.929877 23.223399 59.929877 23.203624 59.933173 23.205089 59.939765 23.207286 59.943549 23.209727 59.948188 23.199718 59.950181 23.188813 59.94892 23.178071 59.943549 23.168142 59.936428 23.171235 59.942939 23.131847 59.93358 23.120942 59.923774 23.117849 59.923285 23.110688 59.929674 23.103689 59.940416 23.100597 59.970282 23.110688 59.97427 23.111339 59.9831 23.128184 59.997504 23.203624 60.008368 23.217947 60.033108 23.241384 60.03974 23.257579 60.049709 23.205089 60.039049 23.106212 60.03974 23.059418 60.044582 23.035492 60.051581 23.013357 60.062079 22.996918 60.077338 22.990733 60.089667 22.997244 60.101752 23.012869 60.121649 23.045909 60.135321 23.025401 60.128811 23.019867 60.112006 23.0088 60.107367 23.004893 60.103705 22.996755 60.098782 22.977875 60.094387 22.969493 60.110826 22.968272 60.121568 22.958669 60.127387 22.942556 60.131781 22.907888 60.144924 22.886974 60.149604 22.874685 60.159857 22.884776 60.169338 22.88559 60.177476 22.879161 60.183743 22.867198 60.231147 22.92156 60.245185 22.942882 60.277004 23.007579 60.292955 23.025401 60.302639 23.031261 60.319159 23.038097 60.327094 23.045909 60.33869 23.07252 60.345893 23.082856 60.355048 23.080577 60.357327 23.060313 60.34394 23.03419 60.323961 23.01059 60.306627 22.998057 60.316474 22.941173 60.301093 22.877126 60.238186 22.736176 60.219957 22.611176 60.205024 22.553396 60.20425 22.525076 60.213568 22.539806 60.232164 22.593435 60.234931 22.573497 60.242662 22.572032 60.262274 22.590343 60.268215 22.601085 60.278713 22.648123 60.275784 22.598399 60.270819 22.574555 60.252143 22.527354 60.247056 22.503591 60.245185 22.449474 60.252387 22.457774 60.258734 22.459239 60.26496 22.459158 60.272528 22.463064 60.276923 22.469412 60.28498 22.487478 60.301093 22.5088 60.318996 22.540294 60.33393 22.545665 60.363674 22.596365 60.375393 22.627615 60.389553 22.631358 60.399075 22.624278 60.375922 22.580821 60.372545 22.543468 60.375556 22.463064 60.402167 22.483572 60.382392 22.326182 60.382636 22.291515 60.386461 22.280121 60.404608 22.249522 60.430487 22.181488 60.434638 22.161143 60.436957 22.11671 60.444078 22.111013 60.456855 22.108165 60.462144 22.101085 60.447211 22.082693 60.436347 22.064464 60.438788 22.047048 60.457465 22.018077 60.459906 22.017426 60.468695 22.018565 60.471137 22.018077 60.471747 22.013438 60.47012 22.00172 60.471137 21.997569 60.475165 21.989024 60.476752 21.981944 60.48078 21.979177 60.492255 21.983897 60.492255 21.935395 60.499213 21.939708 60.51203 21.945649 60.518948 21.950369 60.52497 21.931651 60.528876 21.903168 60.529527 21.874034 60.525784 21.853526 60.51553 21.843923 60.50373 21.848481 60.477973 21.874034 60.485419 21.828624 60.485989 21.806 60.477973 21.78533 60.495103 21.789561 60.525133 21.802989 60.54682 21.805675 60.561957 21.805349 60.575588 21.807872 60.585028 21.819591 60.587836 21.846039 60.596503 21.833263 60.606391 21.828461 60.617133 21.830903 60.62873 21.840505 60.603949 21.773936 60.590969 21.754242 60.581732 21.731781 60.576483 21.678966 60.567328 21.661794 60.559068 21.660167 60.545233 21.668956 60.536322 21.664806 60.530341 21.658702 60.525946 21.65561 60.519843 21.65447 60.508979 21.654307 60.495754 21.641449 60.488837 21.612071 60.48786 21.579845 60.492255 21.558116 60.505032 21.583751 60.526435 21.569672 60.567328 21.517751 60.568061 21.533458 60.559882 21.578624 60.567328 21.578624 60.57217 21.555024 60.574164 21.486095 60.567694 21.4546 60.567328 21.442638 60.569892 21.434337 60.578437 21.418468 60.58039 21.408539 60.587836 21.408539 60.588446 21.41505 60.589911 21.419444 60.594062 21.428396 60.608303 21.414806 60.6022 21.44516 60.601752 21.462657 60.608303 21.469981 60.62873 21.42156 60.634101 21.399913 60.64704 21.379649 60.662787 21.363048 60.676581 21.353282 60.681708 21.354015 60.682929 21.355805 60.684394 21.356212 60.690172 21.353282 60.679633 21.425955 60.680325 21.438975 60.692857 21.445649 60.70303 21.440929 60.712958 21.431163 60.725002 21.42213 60.725002 21.469981 60.731147 21.469981 60.732245 21.448497 60.736518 21.427094 60.743476 21.406505 60.752346 21.38738 60.758246 21.403331 60.75967 21.411632 60.759101 21.42213 60.774563 21.400238 60.779242 21.387706 60.779608 21.374278 60.793402 21.38087 60.807603 21.374278 60.81623 21.36085 60.813137 21.346446 60.817125 21.339041 60.821845 21.333263 60.827541 21.328868 60.834866 21.325938 60.844713 21.336436 60.864691 21.318533 60.868354 21.33253 60.863186 21.382335 60.864569 21.407888 60.8758 21.428396 60.880316 21.417328 60.882025 21.405935 60.882025 21.38087 60.884589 21.373709 60.902533 21.353282 60.904853 21.36378 60.914618 21.381684 60.916815 21.390798 60.914049 21.399669 60.908271 21.4074 60.903225 21.416189 60.902533 21.428396 60.912909 21.422211 60.924302 21.417817 60.933498 21.412771 60.937242 21.40447 60.939032 21.392589 60.943671 21.387869 60.950263 21.385509 60.957709 21.380544 61.004584 21.335704 61.012356 21.318533 61.023912 21.332856 61.026597 21.339041 61.037543 21.311534 61.046047 21.302094 61.060126 21.298676 61.060207 21.320323 61.044745 21.364268 61.040269 21.38738 61.04328 21.408865 61.048163 21.408132 61.050727 21.407725 61.057929 21.391368 61.060126 21.366954 61.069403 21.395274 61.054999 21.453868 61.060126 21.48227 61.06684 21.468272 61.078192 21.454845 61.090766 21.45045 61.101142 21.463145 61.12523 21.452403 61.135159 21.446056 61.142727 21.435232 61.143052 21.445079 61.149563 21.469981 61.149359 21.462657 61.150214 21.455821 61.15233 21.449067 61.155748 21.442638 61.169989 21.456309 61.169989 21.442638 61.176174 21.455821 61.178168 21.471039 61.177436 21.503429 61.187445 21.498871 61.191107 21.496593 61.199693 21.526622 61.204169 21.558116 61.225084 21.543468 61.234605 21.524099 61.245754 21.476085 61.256171 21.485606 61.261054 21.49936 61.266832 21.508311 61.279853 21.503429 61.279853 21.544444 61.287299 21.544444 61.292711 21.542003 61.310777 21.544444 61.320868 21.544444 61.32689 21.542003 61.329495 21.53419 61.334459 21.530772 61.340522 21.529959 61.349677 21.531749 61.354967 21.530772 61.375312 21.524262 61.381578 21.518403 61.389106 21.503429 61.393256 21.490082 61.398424 21.462087 61.402777 21.448904 61.411566 21.477875 61.408393 21.541677 61.416409 21.572439 61.43122 21.557872 61.442125 21.542247 61.457994 21.510265 61.475043 21.442068 61.485338 21.42213 61.475165 21.555675 61.485338 21.592133 61.514106 21.571137 61.519477 21.565603 61.521796 21.550955 61.517401 21.524262 61.519477 21.510265 61.54682 21.469981 61.557766 21.461925 61.562405 21.460134 61.564439 21.466482 61.567857 21.48227 61.570136 21.507986 61.545885 21.623383 61.524482 21.68686 61.519477 21.716319 61.526923 21.716319 61.560289 21.648123 61.585435 21.614268 61.628119 21.591807 61.635565 21.573253 61.640774 21.552501 61.649848 21.537608 61.658026 21.536143 61.672838 21.544119 61.680243 21.541026 61.705064 21.517751 61.711249 21.517751 61.708197 21.536306 61.695014 21.570323 61.697659 21.585948 61.713324 21.559337 61.736965 21.489268 61.759711 21.469981 61.771918 21.472667 61.78559 21.481944 61.79914 21.489024 61.811184 21.486095 61.81684 21.472504 61.819973 21.455577 61.826321 21.444591 61.84162 21.448904 61.862535 21.418468 61.87641 21.403168 61.88939 21.394216 61.893134 21.403575 61.900092 21.411957 61.906887 21.414073 61.913235 21.393565 61.921129 21.389496 61.930406 21.387218 61.937812 21.380544 61.939114 21.37143 61.937812 21.325694 61.939195 21.316742 61.939846 21.312511 61.94892 21.290212 61.951483 21.277517 61.97134 21.294932 61.97956 21.280528 61.985012 21.236583 62.050198 21.276215 62.074937 21.284353 62.121568 21.289073 62.130439 21.296397 62.109117 21.312266 62.138129 21.329112 62.152574 21.33253 62.163764 21.325938 62.175727 21.340343 62.186469 21.371104 62.194485 21.383962 62.208157 21.389903 62.217841 21.38087 62.232001 21.353282 62.266791 21.374278 62.266018 21.352306 62.255194 21.340017 62.241441 21.329356 62.232001 21.312266 62.248236 21.316173 62.277167 21.328461 62.294094 21.332774 62.340562 21.333507 62.355536 21.339041 62.345282 21.28533 62.349311 21.270681 62.359198 21.262462 62.371975 21.260427 62.385199 21.26531 62.39647 21.277517 62.410793 21.270681 62.359687 21.205089 62.349189 21.202403 62.335028 21.216075 62.337063 21.194347 62.352444 21.189789 62.37287 21.195079 62.390326 21.202403 62.391506 21.196544 62.39525 21.187022 62.39647 21.181326 62.408393 21.189464 62.413235 21.194591 62.417629 21.202403 62.42357 21.186046 62.421332 21.166759 62.413804 21.147797 62.403957 21.133556 62.416693 21.131358 62.447089 21.149181 62.464789 21.154552 62.457994 21.136974 62.45482 21.124278 62.46015 21.116384 62.47842 21.113048 62.495795 21.115571 62.509996 21.124278 62.520697 21.137869 62.527493 21.154552 62.535549 21.148774 62.554145 21.12672 62.562812 21.146821 62.575751 21.167328 62.584866 21.188162 62.582099 21.209239 62.600898 21.193533 62.609442 21.121593 62.623033 21.106212 62.619452 21.094086 62.612698 21.083263 62.595771 21.065196 62.620103 21.067882 62.659247 21.083181 62.67829 21.078949 62.680894 21.098888 62.690172 21.125743 62.703803 21.149669 62.719306 21.160818 62.73017 21.160167 62.731757 21.15561 62.730414 21.148611 62.732896 21.140391 62.74372 21.122813 62.749661 21.116466 62.767035 21.107921 62.781195 21.113536 62.790839 21.12908 62.794379 21.15089 62.784613 21.171072 62.782375 21.18336 62.790676 21.188813 62.792914 21.192231 62.807603 21.209646 62.814846 21.216075 62.831041 21.221934 62.845649 21.222667 62.858466 21.226736 62.869452 21.243419 62.869045 21.267426 62.855455 21.335704 62.859524 21.3567 62.865424 21.364268 62.874579 21.382823 62.880316 21.390798 62.887356 21.395518 62.900702 21.399669 62.913804 21.40919 62.934882 21.420095 62.941799 21.42213 62.944037 21.427501 62.951402 21.463145 62.987006 21.446544 63.005072 21.442719 63.027086 21.442638 63.034369 21.441742 63.037787 21.440766 63.04092 21.444102 63.047553 21.456309 63.047919 21.467052 63.043036 21.475271 63.043036 21.480479 63.058173 21.48227 63.071723 21.495128 63.063951 21.523448 63.040758 21.565196 63.034857 21.59547 63.023871 21.625743 63.01789 21.656749 63.027086 21.688487 63.055243 21.645681 63.083726 21.579112 63.09512 21.559581 63.108588 21.553233 63.123358 21.572439 63.119696 21.560069 63.117906 21.545909 63.119696 21.531993 63.126776 21.520844 63.1376 21.516775 63.148017 21.517833 63.155463 21.516124 63.157457 21.503429 63.168402 21.510509 63.172065 21.522227 63.171129 21.551931 63.177924 21.551931 63.185004 21.512869 63.19245 21.500987 63.20897 21.496593 63.217434 21.504893 63.225409 21.523774 63.231024 21.544444 63.232611 21.558116 63.203925 21.615408 63.197659 21.647227 63.21955 21.667979 63.210191 21.687999 63.202338 21.714692 63.199652 21.742361 63.205878 21.764171 63.210883 21.749034 63.215318 21.717947 63.21955 21.702647 63.225775 21.702647 63.239407 21.743663 63.241523 21.758067 63.239407 21.79835 63.24372 21.8213 63.259426 21.869884 63.260484 21.894542 63.245429 21.884451 63.235907 21.88266 63.196601 21.891449 63.188178 21.889903 63.177924 21.88087 63.175442 21.905528 63.143215 21.983897 63.164984 21.972179 63.18476 21.955903 63.19123 21.98406 63.196438 21.994395 63.205878 22.004405 63.215766 22.01002 63.224311 22.012543 63.232001 22.015961 63.239407 22.02475 63.245592 22.043142 63.240912 22.053559 63.232123 22.061371 63.225775 22.072032 63.225775 22.087576 63.236274 22.114024 63.239407 22.127208 63.237982 22.139496 63.231757 22.15919 63.232611 22.175059 63.2355 22.180186 63.240058 22.181163 63.244452 22.180837 63.246812 22.181895 63.246405 22.187266 63.244127 22.194998 63.24136 22.201427 63.239407 22.202973 63.267076 22.24464 63.285346 22.266368 63.301459 22.278087 63.301459 22.284923 63.275865 22.307628 63.28384 22.330089 63.305609 22.352224 63.321357 22.373709 63.32689 22.363943 63.334215 22.357188 63.34927 22.346934 63.359687 22.333832 63.372707 22.305349 63.40644 22.255382 63.411322 22.250499 63.411811 22.232921 63.414374 22.218272 63.420315 22.205821 63.43122 22.195567 63.458441 22.190929 63.470893 22.21339 63.469631 22.246755 63.455715 22.274669 63.435858 22.304942 63.430406 22.335216 63.42829 22.366954 63.418158 22.401622 63.460517 22.318207 63.487616 22.279959 63.513739 22.271251 63.52619 22.281423 63.529731 22.292247 63.527411 22.319347 63.523342 22.337413 63.513617 22.337087 63.502346 22.331228 63.493232 22.333344 63.487494 22.355479 63.485419 22.380219 63.476955 22.396821 63.452338 22.394786 63.456936 22.4074 63.468004 22.423676 63.472805 22.435802 63.47956 22.435802 63.488756 22.428396 63.497382 22.431488 63.506537 22.43865 63.517483 22.442638 63.518134 22.445486 63.554755 22.463064 63.561835 22.472423 63.56684 22.483735 63.573472 22.493175 63.585761 22.497244 63.587104 22.503429 63.575181 22.545665 63.587714 22.537771 63.622992 22.497244 63.635972 22.514415 63.640611 22.522227 63.64411 22.531993 63.650865 22.52947 63.653876 22.527843 63.657701 22.525076 63.653144 22.567393 63.65705 22.585704 63.674506 22.593435 63.694159 22.591075 63.703315 22.589041 63.704291 22.594086 63.699286 22.613292 63.687445 22.627778 63.683092 22.637055 63.688463 22.641124 63.698554 22.644867 63.703762 22.654063 63.704779 22.665212 63.702379 22.675304 63.693793 22.690766 63.683417 22.702322 63.671332 22.707042 63.657701 22.702647 63.649888 22.713227 63.62759 22.73406 63.622992 22.740489 63.624091 22.755219 63.627509 22.773448 63.633002 22.790538 63.640326 22.802257 63.643744 22.810232 63.644192 22.820486 63.646226 22.829275 63.654364 22.833018 63.661811 22.833018 63.667304 22.833507 63.672105 22.835704 63.677639 22.840343 63.687161 22.855479 63.695217 22.886974 63.705512 22.901866 63.712307 22.885265 63.72602 22.833018 63.72602 22.901866 63.742133 22.882091 63.746527 22.874685 63.740058 22.900401 63.739203 22.914724 63.743394 22.925792 63.748765 22.928477 63.756903 22.929861 63.76435 22.92921 63.767564 22.925792 63.772406 22.907725 63.783271 22.898774 63.794867 22.902517 63.801703 22.922374 63.800482 22.942882 63.79328 22.954845 63.770982 22.973155 63.761298 22.990001 63.763617 23.000662 63.773749 23.001801 63.787502 22.990733 63.787624 22.990733 63.800727 22.99464 63.80622 22.994477 63.815375 22.990733 63.841295 23.047618 63.852973 23.062836 63.857367 23.074962 63.849555 23.121349 63.852484 23.132579 63.858466 23.142345 63.863471 23.153494 63.864895 23.151215 63.869452 23.141612 63.875963 23.141856 63.883694 23.15504 63.886949 23.167328 63.890611 23.197927 63.888902 23.275238 63.894232 23.306488 63.910956 23.326427 63.89883 23.350759 63.900621 23.372813 63.911078 23.394216 63.924628 23.415782 63.9383 23.384776 63.946519 23.37086 63.956 23.37086 63.96894 23.378754 63.978746 23.37672 63.987535 23.37086 63.99726 23.367442 64.003241 23.369884 64.048163 23.381602 64.056138 23.396495 64.05622 23.415212 64.048163 23.449962 64.045478 23.456554 64.037909 23.46754 64.035102 23.477306 64.035956 23.487559 64.039455 23.496755 64.041653 23.506602 64.031887 23.538341 64.027655 23.604503 64.038031 23.619802 64.061103 23.605968 64.084662 23.581716 64.096584 23.566091 64.107245 23.573578 64.108547 23.58546 64.10342 23.614431 64.107123 23.622081 64.124416 23.644786 64.130072 23.656016 64.143297 23.66033 64.155341 23.679535 64.166693 23.704275 64.168077 23.706472 64.178534 23.723643 64.178534 23.716807 64.194281 23.719412 64.20893 23.724376 64.216213 23.735688 64.20954 23.75766 64.20893 23.772716 64.220649 23.819102 64.226874 23.833507 64.236151 23.841645 64.26789 23.861095 64.266099 23.881602 64.254706 23.92449 64.246772 23.94337 64.25849 23.934581 64.271186 23.927582 64.285468 23.925141 64.301418 23.929047 64.316555 23.940929 64.33515 23.971202 64.349799 23.984223 64.379869 23.996104 64.389106 24.004405 64.39765 24.025401 64.405585 24.068614 64.41474 24.084727 64.431708 24.080577 64.430406 24.093272 64.43122 24.104828 64.434801 24.115489 64.442328 24.125011 64.440823 24.129161 64.452216 24.169281 64.452216 24.20574 64.456 24.210785 64.47309 24.21046 64.481024 24.21225 64.487006 24.217784 64.489163 24.229503 64.485989 24.257579 64.490058 24.268891 64.497626 24.275157 64.510159 24.280935 64.51496 24.285981 64.52204 24.306326 64.524604 24.325694 64.530748 24.344086 64.548407 24.361095 64.555365 24.360118 64.564521 24.355642 64.572414 24.354991 64.579535 24.373871 64.587795 24.374522 64.59516 24.37086 64.596869 24.367931 64.617255 24.375499 64.628648 24.38266 64.651435 24.408865 64.659084 24.414317 64.668036 24.418305 64.675605 24.422862 64.678778 24.429373 64.681098 24.441173 64.699286 24.470958 64.710028 24.511567 64.717841 24.530284 64.733385 24.546072 64.744127 24.536469 64.747707 24.5324 64.753852 24.5324 64.764716 24.543712 64.770901 24.55714 64.781195 24.587657 64.796576 24.550059 64.805325 24.538422 64.809149 24.556651 64.807929 24.57838 64.788642 24.658539 64.78913 24.668305 64.794867 24.676524 64.799547 24.676768 64.807074 24.665701 64.812567 24.662771 64.829739 24.670665 64.834703 24.689626 64.835842 24.7317 64.855373 24.736339 64.86579 24.773123 64.873114 24.896983 64.916083 25.073741 64.918362 25.094737 64.914455 25.112315 64.905097 25.121755 64.893785 25.129731 64.884223 25.14324 64.883857 25.151052 64.886705 25.158458 64.888414 25.166677 64.884223 25.177257 64.87995 25.179861 64.86579 25.18393 64.860663 25.187266 64.849189 25.202485 64.841457 25.217621 64.837104 25.235606 64.835842 25.259288 64.829576 25.259288 64.829535 25.249766 64.828111 25.241547 64.82274 25.225108 64.816474 25.259532 64.829576 25.354828 64.833075 25.362153 64.851711 25.350434 64.860663 25.351817 64.89175 25.36671 64.898505 25.3685 64.911119 25.359548 64.911566 25.34783 64.906928 25.334809 64.904731 25.3213 64.908881 25.306326 64.922309 25.279796 64.929023 25.241222 64.93891 25.223481 64.966783 25.190929 64.969794 25.196056 64.977484 25.206228 64.980414 25.211436 64.98664 25.203949 64.990546 25.220958 64.983588 25.321625 64.97724 25.340099 64.959947 25.375987 64.95189 25.399099 64.948879 25.42156 64.95307 25.438162 64.966783 25.443533 64.980292 25.43629 64.989081 25.424327 64.998603 25.416759 65.014594 25.423106 65.019924 25.416189 65.024482 25.413097 65.029242 25.413259 65.035061 25.41627 65.047675 25.392589 65.055976 25.38087 65.065741 25.375987 65.076361 25.37436 65.084418 25.369965 65.090766 25.363536 65.096503 25.355479 65.109809 25.324067 65.123765 25.211436 65.145738 25.218272 65.156643 25.225841 65.172187 25.259288 65.180406 25.272634 65.191392 25.282481 65.204779 25.285655 65.219957 25.279796 65.219062 25.292166 65.219672 25.304454 65.222113 25.316254 65.226874 25.327485 65.22842 25.320649 65.232733 25.307872 65.233629 25.300141 65.249091 25.308849 65.254136 25.313813 65.259508 25.297211 65.261135 25.289073 65.260972 25.279796 65.271145 25.2942 65.302151 25.307872 65.31623 25.3213 65.319322 25.317393 65.32685 25.310802 65.32982 25.306977 65.331366 25.316254 65.333564 25.322439 65.343492 25.334972 65.377631 25.266124 65.381171 25.28004 65.381578 25.306895 65.385077 25.3213 65.39053 25.330089 65.405748 25.34669 65.411811 25.355479 65.428534 25.344493 65.465522 25.358653 65.484117 25.351817 65.506781 25.323578 65.525092 25.293712 65.557278 25.219005 65.562649 25.197113 65.562242 25.170095 65.559027 25.146821 65.561103 25.124848 65.57689 25.101573 65.585028 25.096365 65.591905 25.093191 65.594957 25.091807 65.60517 25.08546 65.614163 25.074229 65.617255 25.06072 65.614163 25.035818 65.620998 25.022472 65.627021 25.004893 65.622789 24.957205 65.624091 24.937185 65.630439 24.924083 65.645941 24.906098 65.651353 24.895518 65.659125 24.859141 65.662177 24.819509 65.659735 24.780284 65.651353 24.745291 65.637885 24.719086 65.633287 24.706798 65.631537 24.687022 65.635443 24.675792 65.644965 24.671072 65.683417 24.670177 65.690863 24.667735 65.695054 24.659679 65.709174 24.596528 65.716864 24.583995 65.730658 24.567719 65.745103 24.554861 65.763495 24.550466 65.78913 24.560395 65.808173 24.575369 65.860582 24.632009 65.879462 24.645763 65.885565 24.653656 65.891588 24.670258 65.894477 24.697602 65.899237 24.70753 65.912095 24.710623 65.903998 24.694591 65.891588 24.642263 65.890937 24.634451 65.891303 24.625336 65.889228 24.617931 65.881334 24.615001 65.870795 24.615489 65.866156 24.614513 65.864325 24.611583 65.854315 24.587169 65.808987 24.54363 65.796047 24.518809 65.795152 24.494395 65.797187 24.473481 65.796942 24.452973 65.78913 24.430512 65.7862 24.427989 65.781684 24.426117 65.776597 24.422862 65.771796 24.415701 65.769232 24.404796 65.779202 24.357107 65.797919 24.327891 65.802232 24.316661 65.809394 24.277843 65.822699 24.238292 65.809027 24.248302 65.794135 24.251231 65.781562 24.244314 65.774888 24.22462 65.778754 24.206228 65.790229 24.188243 65.804185 24.173025 65.815863 24.163097 65.822699 24.163097 65.840788 24.163414 65.8689 24.12445 65.908588 24.102332 65.928018 24.075977 65.947914 24.05479 65.970109 24.05696 65.985172 24.055306 66.034989 24.029778 66.048941 24.01965 66.055607 24.009418 66.066356 23.98513 66.072816 23.974588 66.081601 23.965596 66.148625 23.911439 66.161105 23.889322 66.176685 23.785555 66.189656 23.750002 66.206632 23.724164 66.25699 23.689437 66.282984 23.680652 66.305463 23.665976 66.316522 23.662772 66.326392 23.664426 66.339518 23.673004 66.350008 23.676415 66.363625 23.677035 66.381789 23.671661 66.395302 23.670214 66.40556 23.665873 66.42406 23.646649 66.436256 23.642308 66.458839 23.652437 66.474006 23.676828 66.482971 23.706077 66.487157 23.731089 66.503125 23.731089 66.511859 23.755066 66.518422 23.785866 66.528137 23.806123 66.539247 23.807673 66.554595 23.86121 66.563535 23.88188 66.578883 23.891492 66.59604 23.893249 66.614075 23.889115 66.6318 23.88188 66.647871 23.891596 66.666371 23.899037 66.686318 23.903171 66.706885 23.902964 66.743576 23.891699 66.750914 23.892422 66.77298 23.924772 66.791118 23.939241 66.793547 23.961049 66.792978 23.984406 66.796286 23.999186 66.8052 24.004043 66.812435 24.001253 66.861889 23.960842 66.888761 23.93335 66.903411 23.912369 66.92465 23.873612 66.9755 23.816665 66.988935 23.792067 66.994284 23.761681 67.001028 23.743801 67.016867 23.72034 67.049526 23.683856 67.058492 23.676725 67.065701 23.672591 67.074227 23.670627 67.087069 23.670214 67.097921 23.666596 67.104019 23.658018 67.108566 23.647786 67.129263 23.620501 67.140296 23.5989 67.153137 23.58133 67.173033 23.573992 67.180888 23.586498 67.190267 23.597557 67.201222 23.607065 67.213986 23.61492 67.217965 23.59673 67.225019 23.591459 67.244424 23.594559 67.260263 23.602724 67.269022 23.622258 67.289692 23.735429 67.306487 23.763231 67.337519 23.785659 67.346226 23.751449 67.369532 23.751346 67.397541 23.763231 67.420072 23.765195 67.427307 23.752586 67.431415 23.730778 67.436221 23.662669 67.45361 23.594559 67.452008 23.553838 67.444825 23.514254 67.443817 23.477151 67.461025 23.443664 67.48552 23.431262 67.504718 23.443457 67.522443 23.465988 67.542958 23.484695 67.554999 23.47343 67.566316 23.499475 67.577013 23.535442 67.587038 23.553528 67.610913 23.550324 67.626674 23.542573 67.652823 23.518802 67.669256 23.51074 67.708995 23.499475 67.724808 23.488416 67.737159 23.484592 67.796225 23.484695 67.816999 23.479734 67.841338 23.476737 67.864644 23.481285 67.882163 23.498855 67.89317 23.532548 67.902988 23.603344 67.913478 23.636107 67.932857 23.661222 67.950427 23.662152 67.963191 23.643135 67.97332 23.573682 68.015901 23.484695 68.024324 23.457307 68.051248 23.382996 68.059981 23.374831 68.068456 23.371214 68.127781 23.330906 68.138271 23.319847 68.145609 23.306515 68.144989 23.272098 68.122251 23.187246 68.122045 23.165645 68.127574 23.158824 68.128349 23.154586 68.130261 23.151692 68.139408 23.149419 68.144834 23.149832 68.153774 23.154483 68.178734 23.159754 68.186692 23.158514 68.19403 23.149419 68.217439 23.155206 68.234182 23.140013 68.255525 23.094848 68.265292 23.081619 68.273818 23.076451 68.281931 23.073558 68.290251 23.066943 68.29821 23.052164 68.336605 22.903749 68.351075 22.87512 68.384768 22.833366 68.394896 22.808251 68.385491 22.748616 68.398772 22.719057 68.416755 22.690222 68.427401 22.662213 68.427297 22.643403 68.425075 22.625833 68.42492 22.607643 68.436289 22.565165 68.438201 22.521343 68.451792 22.456851 68.454117 22.377993 68.456339 22.373962 68.466158 22.374582 68.46838 22.371068 68.476131 22.303062 68.47701 22.072172 68.488275 22.038375 68.492926 22.036722 68.500058 22.037445 68.506517 22.036102 68.509359 22.028763 68.510445 22.024216 68.516439 22.012124 68.525844 21.998481 68.54083 21.969852 68.546928 21.963961 68.568219 21.919209 68.587908 21.737102 68.619224 21.716845 68.633538 21.661551 68.667386 21.572461 68.675499 21.495669 68.686868 21.46363 68.69648 21.451538 68.727486 21.421255 68.738751 21.415261 68.74888 21.406373 68.753841 21.385909 68.754047 21.314699 68.755804 21.305397 68.759215 21.300953 68.768207 21.293718 68.770015 21.288344 68.776423 21.275734 68.817248 21.216617 68.841742 21.152848 68.869441 21.072129 68.894607 20.905731 68.9067 20.884544 68.92706 20.887644 68.932951 20.917824 68.949023 20.934257 68.966954 20.934567 68.9807 20.911209 68.986281 20.863977 69.011241 20.79535 69.018166 20.675461 69.036356 20.623165 69.098781 20.716595 69.104362 20.744397 69.041007 21.032545 69.036666 21.071509 69.043797 21.099001 69.087619 21.156362 69.181205 21.033579 69.214949 21.063034 69.230142 21.079674 69.239496 21.098381 69.291431 21.313562 69.27138 21.638813 69.263215 21.662894 69.065703 21.9461 69.012016 22.023079 68.956102 22.160745 68.9437 22.174388 68.918637 22.18865 68.908457 22.200226 68.857452 22.277224 68.832751 22.356805 68.822622 22.371378 68.731826 22.3967 68.712913 22.409205 68.710071 22.428739 68.726039 22.542944 68.726814 22.570126 68.724643 22.596481 68.675706 22.851659 68.686713 23.019297 68.680874 23.071491 68.670125 23.097949 68.621652 23.17536 68.618035 23.197581 68.685628 23.481595 68.694981 23.641585 68.715445 23.734809 68.755959 23.767985 68.799781 23.787209 68.816679 23.852631 68.816214 23.929009 68.776165 24.131167 68.754822 24.163724 68.744539 24.186875 68.708624 24.332499 68.689193 24.481327 68.666094 24.663435 68.637879 24.754179 68.594109 24.829626 68.563413 24.860942 68.554835 24.879235 68.556953 24.905177 68.570389 24.927088 68.588269 24.938147 68.605064 24.951789 68.615089 24.981245 68.614573 25.006876 68.631419 25.070955 68.633745 25.097827 68.637672 25.117567 68.647646 25.13245 68.668006 25.144232 68.676584 25.13214 68.682682 25.13276 68.688315 25.138755 68.695963 25.143095 68.742627 25.144852 68.764641 25.149607 68.784588 25.162732 68.812648 25.201283 68.874557 25.387215 68.883859 25.43393 68.887734 25.481059 68.872128 25.602447 68.874143 25.627769 68.883497 25.651643 68.897398 25.666216 68.912539 25.678411 68.925613 25.694845 68.94246 25.726367 68.952537 25.737426 68.965869 25.742697 68.978375 25.753859 68.993309 25.79582 69.006125 25.804709 69.013153 25.801091 69.018166 25.792926 69.0254 25.773806 69.030671 25.765848 69.035167 25.764608 69.039198 25.765745 69.043384 25.765125 69.059248 25.750242 69.065553 25.749415 69.075113 25.757166 69.082038 25.759027 69.115162 25.760474 69.119193 25.762437 69.122707 25.766365 69.12741 25.769982 69.135109 25.771222 69.142137 25.768328 69.159552 25.755306 69.165185 25.749932 69.191333 25.734119 69.218205 25.737219 69.29882 25.77453 69.312773 25.786622 69.370806 25.877366 69.379074 25.872612 69.417779 25.841399 69.440982 25.86579 69.447028 25.877469 69.455193 25.886668 69.479119 25.885737 69.490902 25.892145 69.501857 25.906408 69.509143 25.901447 69.514828 25.890595 69.520874 25.886668 69.532036 25.900207 69.548676 25.960255 69.565419 25.986196 69.587175 26.003973 69.610843 26.00511 69.633477 25.981132 69.642675 25.964389 69.652545 25.961702 69.663191 25.968833 69.67487 25.981339 69.689339 26.00511 69.696677 26.031982 69.71125 26.18143 69.715436 26.198276 69.722877 26.210989 69.73192 26.222978 69.758275 26.268246 69.794914 26.316822 69.835635 26.418728 69.856047 26.447874 69.874237 26.435885 69.881756 26.44591 69.899404 26.48105 69.918317 26.500687 69.925242 26.533863 69.935061 26.706979 69.928394 26.771885 69.938084 26.864592 69.934337 26.895702 69.920152 26.951099 69.923278 26.981071 69.922451 27.007529 69.902944 27.08122 69.901755 27.10034 69.929479 27.3118 69.948703 27.352418 69.950744 27.34508 69.957462 27.330507 69.959684 27.323169 69.968624 27.334538 69.971286 27.349111 69.971751 27.364975 69.974257 27.380943 70.003222 27.445229 70.023582 27.563309 70.040894 27.570906 70.062055 27.612557 70.068282 27.66506 70.058929 27.792184 70.07531 27.866908 70.070685 27.897294 59.851467 22.443696 + + + + + FIN + + Finland + + country + + + + + + + + 59.9224932379687 24.9422998415632 59.9213443409669 24.9299726857705 59.9014047844099 24.8314125208895 59.9014047844099 24.8314125208895 59.8920561552314 24.785367731142 59.8738974079353 24.7168702485685 59.8723442252055 24.7109325354958 59.8705502208089 24.7040234547284 59.8694005643996 24.6995970163757 59.8278565831287 24.5316939052895 59.8170622630867 24.4883099332204 59.7995385877138 24.3531068899762 59.7968074351099 24.3321212874041 59.7915698748376 24.2815931629552 59.7915698748376 24.2815931629552 59.7837036788633 24.2060835986191 59.7516960271966 23.9863772296553 59.7516960271966 23.9863772296553 59.6568759370261 23.352041113647 59.6511886480336 23.2153525347154 59.6511886480336 23.2153525347154 59.6356125216594 22.8574361571999 59.6109994383385 22.6589236382954 59.6109994383385 22.6589236382954 59.61099952127 22.6589236985612 59.6110064796282 22.6589279811038 59.6756859828278 22.699653089787 59.6865353045179 22.7064986000397 59.6912837387686 22.7094961349735 59.7091179366845 22.7207645516622 59.7316990044765 22.7350500964236 59.7429884521362 22.7421993563036 59.743174827813 22.742317416751 59.7768738737137 22.7655330931087 59.7915687857996 22.7743102940207 59.8011418571599 22.7800188940006 59.8220084000634 22.7924734641439 59.8224895678931 22.7927608626459 59.8225096709971 22.7927728770102 59.8225744065113 22.7928115218426 59.8226166015685 22.7928367280719 59.8233848047681 22.7932988173237 59.8234163796795 22.7933178122462 59.8469394091711 22.8074779520215 59.8469572950326 22.8074887258886 59.8476647178897 22.8079149089456 59.8476746998544 22.8079225687471 59.8512012019862 22.8106312378839 59.8775826192137 22.8142874113252 59.8775826192137 22.8142874113252 59.8825944231295 22.8150042794358 59.8895479366535 22.8160133369457 59.9120189369243 22.8192770054186 59.9230044774449 22.8208707660315 59.9328595957294 22.8229087259932 59.934476497412 22.8210573489422 59.9379852899376 22.817027454845 59.9444899293863 22.809761946427 59.956690411913 22.7958509201436 59.9582043303799 22.7941316066538 59.9598439184495 22.7922142986364 59.9610148015043 22.7921203049796 59.9714266504846 22.7912841622001 59.9751553306112 22.7909845603576 59.9775315729667 22.7907935932145 59.9778107499714 22.7907711399243 59.9841485189964 22.7901011155386 59.9851106419223 22.7899835752467 59.9890417891607 22.7896214436464 60.0006701950327 22.7884749068454 60.0020541981068 22.7883357788046 60.0059254808774 22.7904528528492 60.0176937695561 22.7969358443446 60.0194254474803 22.7979093587502 60.0209757667402 22.7987283626268 60.0253749159609 22.8013167172996 60.0253749159609 22.8013167172996 60.0258119526926 22.8052968993122 60.0262496658031 22.8092609025512 60.026747711097 22.8138376792189 60.0272160380886 22.8181630474858 60.027704727785 22.8229614733676 60.0284386631688 22.8303330101628 60.0301397174675 22.8476711178686 60.0277727850434 22.8478942916554 60.0244817742599 22.8481913498946 60.0217533042426 22.8484420280317 60.0108882553696 22.849485096816 60.0094003396952 22.8496336046696 60.008078184567 22.8497458671458 60.0067692026709 22.8498878873932 60.0059543219298 22.8499640998355 60.0052654437901 22.8500340836198 60.0051758018857 22.8500431960344 60.0051360624742 22.8500472312535 60.0020589815888 22.8503139378354 60.000297284225 22.8504623378066 59.9952092372252 22.8509614508461 59.9957628294732 22.86421061213 59.9963097223417 22.8768421466584 59.9969248080106 22.891082888991 59.9970967554048 22.8947814198831 59.9970999011615 22.8948466540371 59.9972575892408 22.8983815393182 59.998088042084 22.9174982326151 59.9982378253236 22.9254502702785 59.9982796336132 22.9264150188324 59.9984274757405 22.9297665973208 59.9986969964176 22.9359570221317 59.9994616126341 22.9535259470661 60.002937832346 22.9561259888932 60.0034506623609 22.956530792895 60.0068482420206 22.9590589639445 60.0079584281625 22.9599599733843 60.0113378593466 22.9625314364783 60.0147538888526 22.9651313202146 60.0156854036348 22.9658403743035 60.0194102785649 22.9686761512873 60.0255134761624 22.9733240272721 60.0288636487063 22.9758761101385 60.0340244863402 22.9798086244441 60.0425997277692 22.9835239709527 60.0464433756137 22.9817743552899 60.055200233235 22.977646720388 60.0642772586881 22.9733971776484 60.0709065783973 22.959902904819 60.074400333072 22.9635729792007 60.0747707437295 22.9639906704843 60.0776479523012 22.9672355475665 60.0883871880769 22.9793529062255 60.0914356693555 22.9827942176553 60.095538656634 22.987352378136 60.1017502154422 23.008087652406 60.1050501835391 23.0191111064449 60.1052957658064 23.0198179849511 60.1040273773998 23.0227286669981 60.1024674727522 23.0264498653475 60.1014791971483 23.0288532347976 60.1013130216875 23.0292028476878 60.1004808747704 23.0309964722143 60.1003272447275 23.0313287439318 60.1003106060606 23.0313641284861 60.1003019869091 23.0313830631659 60.1002429079954 23.0315116014996 60.1002202757748 23.031560851026 60.0994470427044 23.033194117995 60.0985307571988 23.0351694478125 60.0933811659637 23.0462208550349 60.0900498197697 23.0533672522776 60.0886122799921 23.0564522457519 60.0929646507508 23.0635954609322 60.093511727531 23.0645063756515 60.0936651030999 23.0647617594795 60.0946583869848 23.0664157578273 60.0946914169079 23.0664707690602 60.0967939305993 23.069972314137 60.0967026275023 23.0700196750124 60.0962200175807 23.0702698840088 60.095740834366 23.0705183446475 60.0957176032394 23.0705303854479 60.0957089094159 23.0705348963651 60.0931079990877 23.0718998329326 60.0911892771351 23.0729211908857 60.0917237498783 23.0774557195537 60.0927945578535 23.086175762396 60.0928009809451 23.0862281171901 60.0928099162147 23.086300945513 60.092873424049 23.0868189466355 60.0929764642846 23.0876593151139 60.093223379253 23.0896733519997 60.0937147725555 23.0936732672266 60.0942357748625 23.097904980564 60.094241482212 23.0979521321511 60.0943497851495 23.0988465372858 60.0943626600699 23.0989528726065 60.0945231150353 23.1002713271469 60.0946433650117 23.1012479281124 60.0946545724547 23.101338945824 60.0946888437584 23.1016172507428 60.0947125388416 23.1018097916832 60.095200430955 23.1058466884273 60.0952013282876 23.1064476513994 60.0986076899372 23.133476075559 60.099102475442 23.1374267273867 60.0993240640045 23.1391963385801 60.0998068937656 23.1429687693627 60.099917772969 23.1438351886845 60.1004406460517 23.1486497235726 60.1010278823396 23.1498878270515 60.1040716741322 23.156496829507 60.106819700413 23.1624036596906 60.1088701213047 23.1668119813368 60.1113709553003 23.1722792953826 60.1120596219922 23.1737609140105 60.1128484953636 23.1754952863321 60.1132666284166 23.1764077304583 60.1144948806205 23.1791661519383 60.1149894604993 23.1802439123318 60.1155767299462 23.1815250021132 60.1168728024774 23.1843527050264 60.1181660741542 23.187171257547 60.1188535428503 23.1886802191884 60.1205653394165 23.1924433099556 60.1213278762167 23.1941172309267 60.1217751579272 23.1950965343013 60.1228046084603 23.1972655824646 60.1228326196779 23.1973243909445 60.1229130765083 23.1974902228483 60.122998328359 23.1974870780062 60.1230500776054 23.1974851724474 60.1233016201541 23.1974664600244 60.1318232335622 23.1961869924733 60.1318698989983 23.1961858516102 60.1324490901361 23.1960838937364 60.1340576550163 23.1958115619086 60.1341003336448 23.1958043214567 60.1341656718712 23.1957817023959 60.1340769494056 23.1961804970334 60.1340738132458 23.1961942853696 60.1339809841637 23.1966231791386 60.1339629078732 23.196724799293 60.1339476987739 23.1968282865494 60.1339353101786 23.1969332678835 60.1339339983796 23.1969461063794 60.1339249847186 23.1970524816933 60.1339065189913 23.1973381602736 60.1339042880227 23.1973618635718 60.1339006168836 23.1973970685765 60.1338620654634 23.197711396313 60.1338522934095 23.1978186156468 60.1338477011741 23.197889951138 60.1338446648747 23.1979616294528 60.1338433964362 23.1980335179903 60.1338440250851 23.1981054216214 60.133846635768 23.1981771683549 60.1338476759833 23.198195844185 60.1338520833088 23.1982672392023 60.1338566795597 23.1983398919086 60.1338597296769 23.198375329457 60.1338608991656 23.1983866197337 60.1338651394932 23.1984215593734 60.1338702385401 23.1984560393997 60.1338819111303 23.1985240722644 60.1338829238506 23.1985295958852 60.133895705144 23.1985967979024 60.1339308606649 23.1987622256725 60.1340266540719 23.1991487258438 60.1341859491049 23.1997937802218 60.1341932614976 23.1998267797243 60.1342135269882 23.1999267282509 60.134219261431 23.1999608110874 60.1342241565979 23.19999540534 60.1342281577004 23.2000304812903 60.1342309799061 23.2000630082071 60.1342330397256 23.2000987228248 60.1342340175206 23.2001346344736 60.1342338912439 23.2001706015254 60.134232566658 23.2002064726665 60.1342300117248 23.2002420713796 60.1342292060104 23.2002506344173 60.1342251969316 23.2002856801757 60.1342201747812 23.200320194133 60.1342084104947 23.2003881771407 60.1342028511767 23.2004177611935 60.1341828978166 23.2005179745375 60.1341314435877 23.2007476308888 60.1341237140059 23.2007798982283 60.1340115921445 23.2012305045476 60.1340050269559 23.2012569966132 60.1339032450866 23.2016776984847 60.1338938599688 23.2017083543374 60.1338867370376 23.2017307657306 60.133876690003 23.201760596896 60.133866163855 23.201789708435 60.1338551585943 23.2018181003472 60.1338437110901 23.2018458044188 60.1338412502148 23.2018515127828 60.1338168291728 23.2019041775761 60.1337007325559 23.2021291430663 60.1336757529571 23.2021823944843 60.1336703493749 23.2021948758793 60.1336589391735 23.2022226294133 60.1336374464888 23.2022802358171 60.133608151741 23.2023707296439 60.1335989897338 23.202401647596 60.1335937427165 23.2024198955697 60.1334840110683 23.2028324590625 60.1334748863352 23.2028634265213 60.1334656193404 23.2028935093349 60.133435398513 23.2029827573939 60.1334024771857 23.2030681180129 60.1333909346617 23.2030956519967 60.1333834231494 23.2031129896525 60.1332339515822 23.2034235580558 60.1332233415436 23.2034472539047 60.1331889405909 23.203530243254 60.1330942877154 23.2037924242029 60.1330921764889 23.2037984163204 60.1330492828828 23.2039137404294 60.1330265464885 23.2039693796387 60.1330147489798 23.2039964918693 60.1330024766908 23.2040227217742 60.132989547022 23.2040476579219 60.1329759637787 23.2040711196679 60.1329617338592 23.2040930341349 60.1329468974215 23.2041132345067 60.1329338571484 23.2041289928595 60.1329179989171 23.2041458511122 60.1329016902839 23.2041607970621 60.1328849880985 23.2041739322774 60.1328679745423 23.2041853013429 60.1328161083037 23.2042141335877 60.1327986797406 23.2042226311593 60.1327946887436 23.2042245150949 60.1326355419971 23.2042992025578 60.1325312551791 23.2043525871935 60.1325136930014 23.2043598746414 60.1325086248149 23.2043618106978 60.1324378002524 23.2043849900262 60.1324202014008 23.204391939279 60.1324027728236 23.2044004366467 60.1323856064946 23.2044108679646 60.132367350109 23.2044249749724 60.1323511874883 23.2044406244895 60.1323356673341 23.2044586146021 60.1323208608051 23.2044789190811 60.1323068438957 23.2045013669785 60.1322936841566 23.2045258063415 60.13225648588 23.2046037447218 60.1322214788081 23.2046856829773 60.1322103750181 23.2047122277203 60.1321161030634 23.2049291769173 60.1321050375973 23.2049542394228 60.1319737980761 23.2052496741651 60.1319680488991 23.2052623383854 60.1318686609099 23.2054698731086 60.1318159927555 23.2055675768113 60.1318024097423 23.2055910550463 60.1317901476137 23.2056116960096 60.1316919020099 23.2057685151109 60.1316648432166 23.2058157651829 60.1316390868676 23.2058658022523 60.131626842613 23.2058920811417 60.1316189164389 23.2059103299384 60.131607599658 23.205938231773 60.1315864711972 23.2059963666239 60.1315282792433 23.206184173385 60.1314712521846 23.2063671600577 60.1314535480808 23.2064321796201 60.1314312489336 23.2065303624026 60.1313900074525 23.2067296923115 60.1313832166669 23.2067593244643 60.1313073353846 23.2070449956038 60.1312997573613 23.2070775834541 60.1312984776602 23.2070834251297 60.1312851933978 23.207150241086 60.1312619125861 23.2072863050106 60.1312593731675 23.2073011935129 60.1312123712505 23.2075730290687 60.1312101901757 23.2075878762321 60.1312012113383 23.2076575112779 60.1311839745722 23.207837602529 60.1311693757104 23.2080513924886 60.1311648437353 23.208158878529 60.1311632366538 23.2082307453389 60.1311630149413 23.208249349008 60.1311630545932 23.2083212783638 60.1311646646792 23.2083931168929 60.1311661329623 23.208428968761 60.1311681636197 23.2084646837665 60.131170810408 23.2085002557183 60.1311740717829 23.2085356307378 60.1311769784968 23.2085623972485 60.1311813848085 23.2085972619742 60.1311864369113 23.2086317640026 60.1311921248163 23.208665868447 60.1311984469791 23.2086995214286 60.1312053670477 23.2087327091171 60.1312128391956 23.2087654007537 60.1312208539488 23.2087975794118 60.1312294187228 23.2088291901795 60.1312318781002 23.2088378445772 60.1312507807731 23.2088989518497 60.1312715026049 23.2089576692763 60.1312938011795 23.2090140067659 60.1313173865015 23.2090681959404 60.1313242009305 23.2090829619357 60.1313492124376 23.2091345362672 60.1313599918264 23.2091556029522 60.1314403922657 23.2092990228041 60.1314505325554 23.2093159826457 60.1315905371757 23.2095408891898 60.1315929950077 23.2095447866972 60.1316483391543 23.2096363320492 60.1316616337672 23.2096604791043 60.1316743093383 23.2096859228174 60.131686226119 23.2097128054216 60.1316973625865 23.2097410032567 60.1316992356683 23.2097461394211 60.1317093540337 23.2097758240329 60.1317186490404 23.2098065765535 60.1317272309839 23.2098381680418 60.1317574163922 23.2099686692115 60.1317628238784 23.2099923732595 60.1318256183936 23.2102510790507 60.131832238443 23.2102816532904 60.1318452784401 23.2103486813048 60.1318566444143 23.2104168932205 60.1318663849741 23.2104861032323 60.1318745671621 23.2105561414325 60.1318765426437 23.2105755196083 60.1318827527699 23.2106463795671 60.1318874026743 23.2107176894878 60.1318904718645 23.2107893616204 60.1318919193563 23.2108612204742 60.131891732588 23.2109331413458 60.131891227121 23.2109606798744 60.1318846507534 23.2111760538546 60.1318845478146 23.2112119973555 60.1318851748755 23.211249262368 60.131886642393 23.2112851151761 60.1318888962745 23.2113208053818 60.1318918807054 23.2113562673333 60.1318995558624 23.2114265082948 60.131909284554 23.2115006574721 60.1319342059332 23.2116733926832 60.1319426004659 23.2117433347522 60.131946047075 23.2117786174524 60.1319489069806 23.2118141298706 60.1319504423262 23.2118379196318 60.1319521152381 23.2118737308636 60.1319529541804 23.2119023940836 60.131953269566 23.2121541320155 60.131954163434 23.2121900509421 60.1319557466563 23.2122258725111 60.131956245667 23.2122341943387 60.1319589805328 23.2122697392088 60.1319625872437 23.2123049675051 60.131967009986 23.212339813574 60.1319722208527 23.21237424459 60.1319781102733 23.2124082010857 60.1319845722776 23.2124417493183 60.1319990676014 23.2125075297331 60.1320022786739 23.2125207832634 60.1320351984046 23.2126486124957 60.1320428098658 23.2126811816133 60.132049658818 23.2127144331514 60.1320555391931 23.2127483908216 60.1320586925693 23.2127709313169 60.1320623787549 23.2128061145788 60.1320646859856 23.2128417989082 60.1320657225054 23.2128776835254 60.132065871514 23.2129136522511 60.1320653818193 23.2129496043723 60.132064452561 23.2129833906161 60.1320573420223 23.2131626424597 60.1320570867487 23.2131986216494 60.1320582127664 23.2132344959643 60.1320610095673 23.2132700158605 60.1320657678892 23.2133046613521 60.1320727643692 23.213337733877 60.1320808849099 23.2133648566337 60.1320925424585 23.2133921310658 60.1321058781146 23.2134161670634 60.1321201222546 23.2134380262549 60.1321798287197 23.2135178329925 60.1321942322753 23.2135392955129 60.1322013522874 23.2135512525396 60.1322141632803 23.213576430243 60.1322258561105 23.2136036827763 60.132236302259 23.2136329168046 60.1322454054453 23.2136639091426 60.1322532086271 23.2136962764245 60.1322737884865 23.2137959564094 60.1322862546413 23.2138634129912 60.1322891241793 23.2138794991614 60.1323210278551 23.2140475603718 60.1323426778888 23.2141463247681 60.1323504904281 23.2141787091939 60.1323570832063 23.2142049088879 60.1323830780251 23.2142993894776 60.1324214606847 23.2144209170946 60.1324521687002 23.214509539947 60.1324591794251 23.2145289882076 60.1325917621168 23.21486897087 60.132599353543 23.214887667727 60.1327134390815 23.2151652497504 60.1327190718169 23.2151786397679 60.1327903089132 23.2153403969191 60.132827703335 23.2154179990562 60.1328538925339 23.2154671563109 60.1328813902621 23.2155133519863 60.1329101619352 23.2155563197517 60.1329261354301 23.2155779995191 60.1329413102249 23.2155972122531 60.1329567708474 23.2156154190331 60.132988525268 23.2156489076249 60.1330212358822 23.2156784299472 60.1330547688142 23.2157040194056 60.1330889495012 23.2157258582477 60.1331236423019 23.2157442323682 60.1331587450658 23.2157590273595 60.1331941871457 23.2157702873757 60.133212000326 23.2157745822857 60.1332164041985 23.2157754995118 60.1332521825318 23.2157809182688 60.1332587699514 23.2157814943091 60.1332946417401 23.2157823250967 60.1333484137467 23.215777925911 60.1335117260537 23.2157465320258 60.1336727862873 23.2157234520758 60.1337083905474 23.2157146183472 60.1337437689368 23.2157026028594 60.133778769589 23.2156868103563 60.1337949023159 23.2156779270325 60.1338120349939 23.2156672347458 60.1338457708809 23.2156427393442 60.1338953070223 23.2156005684765 60.1339767162373 23.2155250335063 60.1339872934151 23.2155155094476 60.1340872740718 23.2154355856288 60.1343252427507 23.2152745550188 60.1343404818556 23.2152639719895 60.1346736968341 23.2149973717001 60.1346808761132 23.2149913017194 60.1349140851866 23.2148043747098 60.1350161991045 23.2147361852867 60.1350679660482 23.2147066402899 60.1350839497657 23.2146982057668 60.135171412079 23.214658301016 60.1352598798236 23.2146287149474 60.1353490719587 23.2146096782106 60.135402791971 23.2146034624827 60.135418950099 23.2146023786638 60.1355983029527 23.2146075719688 60.1356126450975 23.2146086794537 60.1362737102691 23.2150712984093 60.1379005225743 23.2241209091591 60.1393150051238 23.2271705659375 60.139449098028 23.2284612520582 60.1396430669355 23.2303286654322 60.1398092110219 23.2319175880197 60.1399210456771 23.2329873232091 60.1437452131822 23.2412451565805 60.1463755796923 23.2484245928114 60.1466617816547 23.2492025422807 60.1481585427737 23.2532284294122 60.1488032083504 23.2552633207762 60.1515367208229 23.2637962465002 60.1517881478512 23.2645770231147 60.1520878823486 23.2653141007652 60.1530863071307 23.2677695578935 60.1533032020998 23.2683030014597 60.153567140864 23.2689521391995 60.1536209532827 23.2691076110724 60.1539041475489 23.2701654390377 60.154287589301 23.2715019541213 60.1535996422774 23.2736865183263 60.1534033813502 23.2743714704873 60.1533120074892 23.2754981200095 60.1536606655458 23.2776558508719 60.1545852474624 23.2780739062596 60.1547603626532 23.2781531152974 60.1547733107375 23.2781660570954 60.154837201727 23.2782315656159 60.1548850313598 23.2782830603474 60.1549172476738 23.2783147382982 60.154950334977 23.278342549076 60.1549840526385 23.2783672051168 60.1550011415982 23.2783781276719 60.1550183829666 23.2783880772992 60.155035757307 23.2783970021014 60.1550532730743 23.2784048830883 60.1550708834459 23.27841165343 60.1550885983932 23.2784173480602 60.155106397974 23.2784218971065 60.1551242553081 23.2784253036095 60.1551430187119 23.2784276879374 60.1551788863681 23.2784290740569 60.1552147363161 23.2784263148277 60.1553219382722 23.2784066261277 60.1553219382722 23.2784066261277 60.155331551771 23.2784039151672 60.1553848415768 23.2783887594667 60.1553921519613 23.278386615714 60.1555701890766 23.278342806587 60.1556060520243 23.2783401900008 60.1556419258322 23.2783408360084 60.1556481132737 23.2783412717083 60.1556839214846 23.2783456578134 60.1557374170843 23.2783576351299 60.1558436180975 23.2783928052497 60.1558508413369 23.2783952335059 60.1561164744595 23.2784818917398 60.1561205516377 23.2784833597449 60.1564203964272 23.2785953059372 60.1564308527959 23.278598594565 60.1565908994926 23.2786415750415 60.1566805777173 23.2786453644926 60.1567176997718 23.2786430924813 60.1567356014229 23.2786407237236 60.1567534622675 23.2786372235141 60.1567712564361 23.2786326308443 60.1567889649973 23.2786269117897 60.1568055551501 23.2786204176704 60.1568230117163 23.2786121303926 60.156840281447 23.2786023134257 60.1568572995989 23.2785909019639 60.1568740009234 23.2785778132256 60.1568902453187 23.278562540112 60.1569058639194 23.2785448312401 60.1569206824386 23.2785245620708 60.1569345585242 23.2785017847803 60.1569447128652 23.2784821877621 60.1569566023991 23.2784552532876 60.1569673137785 23.2784263783595 60.156976838687 23.278395906546 60.1569852847845 23.278364150256 60.1569928334338 23.2783314856877 60.1569995444614 23.2782981224666 60.1570054378093 23.2782641304694 60.1570105438962 23.2782296324858 60.1570141956209 23.2782003122837 60.1570331219778 23.2780244041229 60.1570377803617 23.2779896501885 60.1570432065525 23.2779553503144 60.1570496874145 23.2779217966178 60.1570518670723 23.2779120464845 60.157059896196 23.2778798503012 60.1570689463151 23.2778488008274 60.1570789741467 23.2778189570602 60.1571226170714 23.2777046640251 60.1573791312919 23.2770546148784 60.157383328279 23.2770443656578 60.1576031535884 23.2765699036895 60.1576148339659 23.2765425768654 60.1576238872923 23.2765205968649 60.1576791331694 23.2763788196265 60.157690417456 23.276350834226 60.1577259511638 23.2762697532092 60.1577319549879 23.2762569547945 60.1577571360941 23.2762056651143 60.1577700609815 23.2761807217463 60.1578787841777 23.2759927796811 60.1578810853183 23.2759889484106 60.1579788055902 23.2758306902455 60.1580077862881 23.2757882567075 60.1580225545061 23.2757678109267 60.1580364265776 23.2757493781953 60.1581268243754 23.2756321268948 60.1581377086873 23.2756161243974 60.158151689895 23.2755935855398 60.1582186934816 23.2754738980956 60.1582326851417 23.2754514120356 60.1582457264748 23.2754322075411 60.1582607792678 23.2754126128557 60.1582763979299 23.2753949197178 60.1582925606412 23.2753793109382 60.1583092197132 23.2753660083263 60.1583263788355 23.2753554623098 60.1583440012388 23.2753489213852 60.1583619135818 23.2753472527821 60.1583815830164 23.2753518051301 60.1583987753932 23.2753619219976 60.158415015294 23.2753771601667 60.1584300972068 23.2753966051694 60.1584441221384 23.2754190553371 60.1584573031708 23.2754434586063 60.1584696511401 23.2754695612767 60.1584779444056 23.2754889278199 60.158489006537 23.2755172500762 60.1584993533082 23.2755466632831 60.1585089458427 23.2755770636408 60.1585177472876 23.2756084192553 60.1585257989012 23.2756405992145 60.158533132476 23.2756734556446 60.1585397370276 23.275706917653 60.1585446845083 23.2757351572349 60.1585499936669 23.2757695414599 60.1585631952801 23.2758742112346 60.1585747653563 23.2759796790438 60.1585787282018 23.276014774881 60.1585813434498 23.2760364799468 60.1585959443594 23.2761404143357 60.1586073567265 23.2762086602675 60.1586134067761 23.2762425459302 60.1586528922761 23.2764434255101 60.1586600684193 23.2764764443315 60.1586645148457 23.2764977437177 60.1586684862358 23.2765232447046 60.1586788657577 23.2765921669276 60.1586838740995 23.2766267297529 60.1586858044661 23.2766410284244 60.158712809969 23.2768501029304 60.1587235600829 23.2769187849961 60.1587279400929 23.276943157765 60.1587345179531 23.2769766412576 60.158741666579 23.277009645349 60.1587493934139 23.2770421150957 60.1587577064067 23.2770740135311 60.1587666214552 23.2771052667207 60.1587762051836 23.2771356867818 60.158786481944 23.2771651807882 60.1587974412601 23.2771936958255 60.1588090785809 23.2772210701042 60.1588214905881 23.2772475451526 60.1588343664282 23.2772726151513 60.1588477923055 23.2772964687123 60.1588617503005 23.2773191078645 60.1588761761761 23.2773404857791 60.158891053024 23.2773606404379 60.1589063081528 23.2773795440029 60.1589218928591 23.2773973823279 60.1589535756779 23.2774311794572 60.1589696151155 23.2774472891762 60.159034811386 23.2775074267103 60.1590513169003 23.2775215721185 60.1590668925247 23.2775346145434 60.1593165587372 23.2777361919338 60.1593331019503 23.2777500808234 60.1593492269302 23.2777638006679 60.1595961039077 23.2779787180352 60.1596127027394 23.2779923483795 60.1596180102385 23.2779966528497 60.1597021219982 23.2780591597265 60.1597534535638 23.2780916715732 60.1597707311613 23.2781013117096 60.1598056153785 23.2781182283121 60.1598232208469 23.2781251442162 60.1598409006082 23.2781311860595 60.1598586482301 23.2781364447418 60.159876503177 23.2781400862051 60.1598944298332 23.2781414832699 60.1599302910114 23.2781394432483 60.1599366398169 23.2781389048364 60.1599724592564 23.2781347414514 60.1599819166544 23.2781325526172 60.1599996086357 23.2781265640254 60.1600170556888 23.2781182586558 60.1600218086136 23.2781156285496 60.1600390210179 23.2781034542539 60.1600564451753 23.2780825091728 60.1600713377523 23.2780667921732 60.1600851796356 23.2780491922667 60.1600996560525 23.27802890548 60.1601105630326 23.2780082653372 60.1601219612348 23.2779804819389 60.1601248257334 23.2779727093074 60.1601452554656 23.2779135329355 60.1602621056625 23.2775884462257 60.160486213963 23.2770536570455 60.1606663994903 23.276797065274 60.1609393982139 23.2764477179142 60.1609860129956 23.2763809380459 60.1610657649111 23.2762520425245 60.1614236123666 23.2758684195335 60.16153935042 23.2757454537192 60.1616432039881 23.275705804978 60.1618422127204 23.27565918083 60.1620521748309 23.2756338236978 60.1622234466868 23.2755409588575 60.1623172879222 23.2754994309884 60.1624170317416 23.2754855866096 60.1626057837911 23.2755076129417 60.1626635129038 23.2755349077016 60.1627638160752 23.2756185574 60.1628699697053 23.2756389230318 60.1629707472851 23.2756697998021 60.1630574298807 23.2757258832429 60.1631477946027 23.27575629889 60.1632476604934 23.2757669164303 60.1633438089172 23.2757348660927 60.1634384896512 23.2757311548899 60.1635095123615 23.275679531601 60.1636162526767 23.2755629514434 60.1637202484603 23.2753849419507 60.1637944274401 23.2751973056264 60.1638618640548 23.2750591497893 60.1640152497823 23.2748088938095 60.1641034398876 23.2747364913833 60.1641770212058 23.2747093575797 60.164284259047 23.2747305540694 60.1643573852928 23.2747607031699 60.164453147005 23.2748455367289 60.164534367431 23.2749492983078 60.1646347828386 23.2750576850902 60.1648248994582 23.2752664937576 60.164905742454 23.2753182084593 60.1650113915449 23.2753631261361 60.1651036977155 23.2754174925599 60.1651423366867 23.27543654471 60.1652496041869 23.2754728561465 60.1654123012537 23.2754965915794 60.1654920964082 23.2755046851522 60.1655809184546 23.2754857094175 60.1656663966032 23.2755267813562 60.1656967883535 23.2757491521426 60.1656852016285 23.275889698443 60.1656683674109 23.2760967671215 60.165636065828 23.2762301180996 60.165630355727 23.2762517609324 60.1656057814563 23.2763450763051 60.1655889414062 23.2765775238847 60.165592427393 23.2767068740889 60.1655940946817 23.276723965325 60.1656046009206 23.2768315965955 60.165707192215 23.2770816308979 60.165950811923 23.2774734706614 60.1661000524312 23.2776435852581 60.1662014742259 23.2777552442299 60.1663147251943 23.2778164104733 60.1664104877231 23.277803545001 60.1664706500861 23.2776962048334 60.1664911969676 23.277650459909 60.1664963579779 23.2776396477444 60.1665226187172 23.2775906039903 60.1665352278852 23.277564968631 60.1665468904702 23.277537636641 60.1665512621929 23.2775262464206 60.1665820838683 23.2774377053 60.1665933688058 23.2774097305443 60.16659853637 23.2773991520608 60.1666128387891 23.2773774735741 60.1666598093836 23.2773198063627 60.166673781354 23.2772972452761 60.1667005487065 23.2772492799969 60.1667028240035 23.2772454867689 60.1667171348503 23.2772237891499 60.1667321494852 23.2772041042366 60.1667477274389 23.277186231482 60.1667800235027 23.277152034337 60.1668736841411 23.2770455871099 60.1668845216738 23.2770327066651 60.1669313272767 23.2769794044077 60.1669475415027 23.276964020813 60.1669549784492 23.2769577487896 60.1669717843213 23.276945184302 60.1669894830911 23.2769333664604 60.1670848796418 23.2768790509577 60.1671206339764 23.2768585133883 60.1671726519327 23.2768307398292 60.1671901588406 23.2768229661844 60.1672078377223 23.2768168325979 60.1672182929026 23.2768140066691 60.1672898680053 23.2768037336034 60.1672937137563 23.2768030453929 60.1673115414159 23.2767990054398 60.1673199842637 23.276796858431 60.1674273669835 23.2768120400549 60.1674629948329 23.2768205588472 60.1674719106827 23.2768230843929 60.1675249392757 23.2768414653631 60.1675441404175 23.2768498247792 60.1675950739354 23.2768720148499 60.1676058267414 23.2768768938272 60.1676927258171 23.2769215267206 60.1677102619713 23.2769291728961 60.1677181008751 23.2769323977319 60.1678062964917 23.2769652850209 60.167823788493 23.2769732789849 60.167841140599 23.2769823711402 60.1678577962734 23.2769925884565 60.1678747016692 23.2770046535436 60.1679078762132 23.277032048725 60.1679139741822 23.2770372927542 60.1680098668797 23.2771354756697 60.1680229481148 23.2771486776007 60.1680863134644 23.2772162715171 60.1681017585431 23.2772345813817 60.1681168819921 23.277253919845 60.1681312587086 23.2772754715234 60.1681446846327 23.2772993316897 60.1681570666222 23.2773253846214 60.1681665097875 23.2773485775422 60.1681766129286 23.2773782980303 60.1682124277925 23.2775030946344 60.1682221940993 23.2775333043392 60.168234664813 23.277565390476 60.1682474719993 23.2775905836524 60.1682615627308 23.2776128353983 60.1682766866325 23.2776321921108 60.1682925804656 23.2776488820341 60.1683090447232 23.2776631622718 60.1683259416074 23.2776752468598 60.1683947723269 23.2777160123667 60.1684112580705 23.2777259427925 60.1686300319884 23.277887997135 60.1686668418069 23.2779107428196 60.1687016793702 23.2779279212842 60.1687369591907 23.277941008868 60.1687547330464 23.2779459229718 60.1687725731012 23.2779496750598 60.1687904807306 23.2779519943829 60.1688084086058 23.2779527961019 60.1688263547044 23.2779520082854 60.1688442552943 23.2779496020702 60.1688544783255 23.2779474700967 60.1688722638292 23.2779425694233 60.1688824042775 23.277939418548 60.1690046169464 23.2778813619029 60.1690200728435 23.2778744881164 60.1691433667477 23.2778267534458 60.1692500281333 23.2777977513534 60.1693036720198 23.2777891137452 60.1693574716535 23.2777860147069 60.1694112723273 23.2777887063058 60.1694470664123 23.2777938703954 60.169457785608 23.2777959575618 60.169511162544 23.2778097916705 60.1696344479511 23.2778576503616 60.1696512385683 23.2778646783324 60.1698626129035 23.2779467581727 60.1698756499887 23.2779513610438 60.1700529850602 23.2780056548886 60.1700564875022 23.2780065029639 60.1701279152843 23.2780200791325 60.1701637593793 23.2780235060348 60.170181698457 23.2780237472831 60.1701996330648 23.2780228705448 60.1702175437654 23.2780208238988 60.1702326231605 23.2780181417988 60.1702504312749 23.2780137254555 60.1702857786595 23.2780014053538 60.170338146535 23.2779764775703 60.1704758078332 23.2778949839601 60.1704906423838 23.2778867911162 60.1705430117504 23.2778619169327 60.1705959574772 23.2778425157935 60.170649341768 23.2778288017772 60.1707030219113 23.2778211338455 60.1707225548073 23.277819877487 60.1709198776862 23.2778248398968 60.1709295513173 23.2778242673274 60.1709832586224 23.2778172456919 60.1710544651688 23.2777996184016 60.1712131972333 23.2777402346994 60.1712243049328 23.2777359997418 60.1712948945716 23.2777101793144 60.1721964932051 23.2776687729466 60.1722320864164 23.2776597614602 60.1722429062212 23.277657435243 60.1723681452815 23.2776389178256 60.1724036843006 23.2776289381548 60.1724212897203 23.2776221086321 60.1724387446329 23.2776137626293 60.1724428699626 23.2776115091885 60.1725448132233 23.2775422637839 60.172562198692 23.2775333662847 60.1725798411004 23.2775268933142 60.1725977069177 23.277523570336 60.1726164075184 23.2775246812092 60.1726340927185 23.2775305979195 60.1726513475279 23.2775403882046 60.1726680497587 23.2775535427072 60.172684137415 23.2775694550414 60.1726996152675 23.2775876555887 60.172744996489 23.2776457503259 60.1727494523586 23.2776514157725 60.1728267351766 23.2777427919311 60.1729057505943 23.2778280184788 60.172912402387 23.2778350589745 60.1729173797518 23.2778493614998 60.1730101328667 23.2781153262103 60.1730150592528 23.2781303743042 60.1730248164931 23.2781605895765 60.1730301139788 23.2781773276578 60.173039611002 23.2782078791416 60.1731152998521 23.2784526308805 60.1731253694715 23.2784824501174 60.173146311643 23.2785409151948 60.1731572364394 23.2785695009934 60.1731674898412 23.2785949874889 60.1731790841891 23.2786224510645 60.1731910307276 23.2786493335155 60.1732032926056 23.2786756029322 60.1732158449655 23.2787013342973 60.1732809184588 23.2788252552171 60.1732898587134 23.2788417613988 60.1733293847849 23.2789150998053 60.1733423862887 23.2789389041303 60.1733556677128 23.2789630736958 60.1734083234497 23.279060942012 60.173445929065 23.2791382331006 60.1734578322182 23.2791651749852 60.1734689538667 23.2791934142009 60.1734792825222 23.279222861838 60.1734887793103 23.2792534140455 60.1734974143172 23.2792849659575 60.1735036229068 23.2793104599024 60.1735105252519 23.2793436874891 60.1735393084637 23.2795142089733 60.1735455951773 23.2795479213101 60.1735525686389 23.2795811228898 60.1735605049575 23.2796134035679 60.1735640661177 23.2796259364835 60.1735739090877 23.279656016672 60.1735849276617 23.2796844301937 60.1735969590427 23.2797111413565 60.1736098852342 23.2797361093952 60.1736233873494 23.2797598214675 60.1736373444964 23.2797824536397 60.1736516870167 23.2798040859667 60.1736641665733 23.2798217976034 60.1736790744026 23.2798417962958 60.173694264634 23.279860969179 60.1737097342355 23.279879208343 60.1737254901457 23.2798964408326 60.1737415695845 23.279912391801 60.1737580028332 23.2799268593546 60.1737747520303 23.2799397756098 60.1737777417573 23.2799418908456 60.173794808282 23.2799529850139 60.1738120942165 23.279962610978 60.1738295627099 23.2799707368238 60.1738472048023 23.2799773635635 60.1738649652171 23.2799824433264 60.1738828175796 23.2799859971384 60.1739186569882 23.2799902208097 60.1740083544843 23.2799905478642 60.1740442314453 23.2799893906944 60.1740523291211 23.2799890331884 60.1742867486963 23.2799908366832 60.174573863478 23.2800241302971 60.174699015003 23.2800450353621 60.1747168070752 23.2800496425823 60.1747345070619 23.2800554510498 60.174752098559 23.280062516752 60.17476956213 23.2800707877632 60.1747868713996 23.2800802851143 60.1747993367087 23.2800878951429 60.174816334206 23.2800994125093 60.1748331390341 23.2801120703506 60.1748496974318 23.280125874755 60.1748660188645 23.2801408426951 60.1748821002994 23.2801568662591 60.1749761677708 23.2802618524091 60.1749863040717 23.2802735873892 60.1750018715415 23.2802914735443 60.1750964941264 23.2803944670088 60.1751450637593 23.2804410040455 60.1751948616307 23.2804819892891 60.1752008107873 23.2804864219339 60.1752177069312 23.2804984923994 60.1752518557938 23.2805206082736 60.1752690816325 23.2805306567235 60.1753038023065 23.2805488106446 60.1753212807378 23.2805569720999 60.1753916808153 23.2805848537134 60.1754093699352 23.2805909164063 60.1754448125091 23.2806021323742 60.1754618858703 23.2806070739507 60.1754796576139 23.2806119184269 60.1757108460883 23.2806737246567 60.1757285267496 23.2806798064503 60.1757400059352 23.2806839920722 60.1757576172076 23.2806908034608 60.1758276344758 23.2807223376852 60.1759139740515 23.2807711141023 60.1759480930958 23.280793450594 60.1759519053894 23.2807960503082 60.1761194471295 23.2809247873391 60.1761249736317 23.280929213896 60.1761416193955 23.2809426123792 60.1762242595574 23.2810126488032 60.1762566686658 23.2810435514893 60.1762724413469 23.2810607478317 60.17628780341 23.2810793258914 60.176302744884 23.2810992507113 60.1763172378775 23.2811204893625 60.176328020006 23.2811376191545 60.1763416323075 23.2811611047102 60.1763546935236 23.2811857713649 60.1763671857332 23.2812116211472 60.1763791059044 23.281238546139 60.1763904425501 23.2812664574222 60.1764013916476 23.2812949719421 60.1764427562079 23.2814126976558 60.176452729663 23.2814426398798 60.1764559325684 23.2814523456884 60.1764658711847 23.2814823279661 60.1765169234163 23.2816303896853 60.1765385204781 23.2816879043642 60.176549967956 23.2817156049048 60.1765620506921 23.2817422411655 60.1765747129054 23.281767747285 60.1765879441212 23.2817920703178 60.176601706984 23.2818151603606 60.1766103270341 23.2818286016882 60.1766249108988 23.2818495599065 60.1766360846038 23.2818639933465 60.1766360846038 23.2818639933465 60.1766399929647 23.2818690543503 60.1766555274218 23.2818870541155 60.1766714620252 23.2819036192446 60.1766877425097 23.2819187378339 60.1767043260959 23.281932486898 60.1767211382049 23.2819450914007 60.176738149936 23.281956482436 60.17675534539 23.2819667339768 60.1767727151017 23.2819758290488 60.1767868933148 23.2819823441796 60.1768221658304 23.2819955119884 60.1768577315618 23.2820050378754 60.1769113742821 23.2820136367074 60.1770548727137 23.2820198794805 60.1770637393428 23.2820203375883 60.1771353776643 23.2820286321152 60.1771710477269 23.2820364321291 60.1771888080706 23.2820415134548 60.1772064683617 23.2820478331018 60.1772239829216 23.282055684946 60.1772412905446 23.2820651300485 60.1772583564001 23.2820762084415 60.1772751366975 23.2820889611714 60.1772881076464 23.282100178216 60.177304244003 23.2821159269828 60.1773199504281 23.2821333303426 60.1773352139197 23.282152245416 60.1773500229916 23.2821725832835 60.177364364642 23.2821942010648 60.1773919409641 23.2822402685729 60.1774183102246 23.2822891252407 60.1774310658497 23.2823144412037 60.1774374660057 23.2823275748337 60.177473917782 23.2824070664361 60.1775082354176 23.2824902641902 60.1775403332137 23.2825769973466 60.1775701657269 23.2826669281999 60.1775887492866 23.2827285395288 60.1775954377828 23.282751943923 60.177628815724 23.2828794750821 60.1776583878024 23.2830107211557 60.1777025932502 23.2832466647985 60.1777248638983 23.2833835914156 60.1777289764602 23.2834103369369 60.1777829184072 23.2837914293009 60.1777874216357 23.2838244101442 60.1778573697671 23.2842102614797 60.1778638929354 23.2842329091381 60.1778734926012 23.2842633287931 60.1778836734056 23.2842929970491 60.1778943810834 23.2843219020004 60.1779056051605 23.284349990699 60.1779292552153 23.2844041555974 60.1779668145591 23.2844815223852 60.1779797995844 23.284506380572 60.1779839369014 23.2845141589405 60.1780242637305 23.2845857274704 60.1780664510787 23.284652809217 60.1780958437167 23.2846941270645 60.178110991005 23.2847133997213 60.1781264430627 23.2847316815697 60.1781422068312 23.2847488996458 60.178157386929 23.2847642168953 60.1781736989058 23.2847791896174 60.1782070076163 23.284805990093 60.1783777147135 23.2849166779109 60.1783819885666 23.2849197132872 60.1784154934931 23.2849454994199 60.1784483812926 23.2849742786293 60.1784805633714 23.2850060970312 60.178511894976 23.2850412416723 60.1785421571474 23.2850799177675 60.1785568573804 23.2851005586724 60.1785678328588 23.28511691113 60.1785957623166 23.2851621487643 60.1786223752362 23.2852104405563 60.1786600709306 23.285287559834 60.1786840111308 23.2853411885399 60.1786874729815 23.2853492420462 60.178721428644 23.2854330641276 60.1787424803095 23.2854913864981 60.1787523230101 23.2855215091507 60.1787589630811 23.2855432061135 60.1788249875627 23.2857989971647 60.1788429954877 23.2858612910928 60.1788528117302 23.2858914349772 60.1788572753986 23.2859041211171 60.1788681892013 23.2859326973448 60.1788798512452 23.2859600702114 60.1788922311183 23.2859861168417 60.1789053268028 23.2860107652843 60.1789190720464 23.2860338967151 60.1789334379508 23.2860554422212 60.1789484537978 23.2860751639069 60.1789487879691 23.2860755411601 60.1789641020497 23.2860927569899 60.1789803249098 23.2861080836428 60.178997067104 23.2861210959771 60.1790142081144 23.2861316632555 60.1790226515482 23.2861359417238 60.1790933861654 23.2861601010098 60.1791109372291 23.2861676625958 60.179128325481 23.286176469658 60.1791453920233 23.2861875867747 60.1791566301833 23.2861985688409 60.1791671876763 23.2862157270932 60.1791705499355 23.2862211935759 60.1791820989727 23.2862487058796 60.1791911757185 23.2862797277647 60.1791980320802 23.2863129856392 60.1792029932832 23.2863475765677 60.1792067315989 23.2863827929683 60.1792097143466 23.2864183113318 60.1792120380697 23.286454048562 60.1792150214204 23.2865258013765 60.1792158059856 23.286561784789 60.1792161503174 23.2865920074535 60.1792168370687 23.2869161456366 60.1792178365718 23.2869521047577 60.1792184379273 23.2869655344991 60.1792233687678 23.2870368687356 60.1792576970256 23.2873535777353 60.1792608808994 23.2873844178582 60.1792696227329 23.2874910147256 60.1792734467708 23.2875626366189 60.1792752930949 23.2876345722538 60.1792754217185 23.2876500584549 60.1792752273031 23.2876860803902 60.1792741771224 23.2877220366267 60.1792719430623 23.2877577657445 60.179267837979 23.2877928040382 60.1792644736569 23.2878129075061 60.1792571155748 23.2878457329382 60.1792477844104 23.2878764715489 60.1792367697986 23.2879048740643 60.1792243096306 23.2879307692399 60.1792105386969 23.2879538350779 60.1792077504738 23.2879579396096 60.1791926749775 23.2879774355593 60.1791767426614 23.2879939426089 60.1791601058492 23.2880074435491 60.1791430859491 23.2880188223612 60.1791085386584 23.2880382267888 60.1791016602055 23.2880416746949 60.1789971902267 23.2880937557676 60.1789800056558 23.288104070386 60.1789749371559 23.2881073137487 60.1788902277382 23.2881665810232 60.1788730656199 23.2881770554342 60.1788642407531 23.2881819322191 60.1788121150624 23.2882088261732 60.1787956905957 23.2882231690047 60.1787812279606 23.2882443276333 60.1787718721642 23.2882677783521 60.1787650084032 23.2883009262657 60.1787610042538 23.288336042757 60.1787595463738 23.2883504087392 60.1787437656571 23.2884909562154 60.1787406323372 23.2885225096698 60.1787378095924 23.2885580881066 60.1787357744416 23.2885938662719 60.1787345975577 23.2886298000941 60.1787344830077 23.2886657943422 60.178735607474 23.2887017388349 60.1787366662371 23.2887196279193 60.1787397548693 23.2887550978889 60.1787440694082 23.2887900504298 60.1787495610195 23.2888243467043 60.1787560922758 23.2888578939722 60.1787707786148 23.2889235961026 60.1787786958069 23.2889559222001 60.1787843313925 23.2889780400678 60.1788191077052 23.2891040523029 60.1788381749673 23.2891650733806 60.1788589478662 23.2892237725658 60.1788663336438 23.2892429139215 60.1788776855559 23.289270792109 60.1789017017892 23.289324307089 60.1789272875241 23.2893748118139 60.1789542366798 23.2894223295617 60.1789965141604 23.2894891924735 60.1790257223281 23.2895310417705 60.1790399240836 23.2895502795747 60.1791793148836 23.2897137222539 60.1792584303603 23.2897986568355 60.1792659883782 23.2898066272385 60.1793917935102 23.2899452424899 60.1794377383933 23.2900015333089 60.179444982741 23.2900108204318 60.1795655451625 23.2901721346704 60.1796896236438 23.2903168302736 60.1796963550535 23.2903241724316 60.1797746050533 23.2904122390997 60.179789949952 23.2904308974762 60.1798049318482 23.2904507156745 60.1798194726195 23.2904717927446 60.1798335622973 23.2904940937221 60.1798444462953 23.290512660419 60.1798574725015 23.2905374274222 60.1799191818906 23.29066810936 60.1799272927976 23.290685870482 60.1799528352493 23.2907364548459 60.1799662086244 23.2907604609955 60.1799800122553 23.290783462172 60.1799943112727 23.2908052164295 60.1800092682504 23.29082510991 60.1800249243516 23.2908426868271 60.1800412197684 23.2908577373862 60.1800513333987 23.2908654918257 60.1800684904627 23.2908760059222 60.1800860179274 23.2908836991975 60.1801037839099 23.2908886767664 60.1801216710308 23.2908912406068 60.1801396029021 23.290892193344 60.1801575417779 23.2908917918748 60.1801754737695 23.29089018213 60.1801829156644 23.2908891974625 60.1803078262121 23.2908630927536 60.1803436490911 23.2908590477509 60.180361579006 23.2908586472689 60.1803795118848 23.2908596359679 60.1803932286521 23.2908615699261 60.1804110466624 23.2908658378668 60.1805171875834 23.2909016017489 60.1805259979702 23.2909035844602 60.1805438969634 23.2909059304435 60.1806694643209 23.2909051959121 60.1806874047582 23.2909064544736 60.1807052983185 23.290908927401 60.1807215680066 23.290912792766 60.1807392194605 23.2909191368062 60.1807566839193 23.2909274689681 60.180773879229 23.2909377443938 60.1807907660207 23.29094984121 60.1808073164055 23.2909637264765 60.1808235089347 23.2909792762961 60.1808393037355 23.2909963508056 60.1808546639587 23.2910149180754 60.1808695801395 23.2910349611298 60.1808839711315 23.2910564710863 60.1808978080378 23.291079379025 60.1809110545127 23.2911036710043 60.1809154291763 23.2911122361246 60.1809277911531 23.2911383243201 60.1809395635943 23.2911655077198 60.1809617512022 23.2912221211583 60.1810343440149 23.2914278603993 60.1810410733333 23.2914453993122 60.1810641369751 23.2915005607457 60.1810886652716 23.2915531387253 60.1811146237875 23.2916028664492 60.1812240747183 23.2917892335675 60.1812296721755 23.2917984548416 60.1813421853531 23.2919773492982 60.1813713171703 23.2920193927429 60.1813862152848 23.2920394385883 60.1813916591405 23.2920463854184 60.1814225125902 23.2920831456024 60.1814541834598 23.2921169983659 60.1814865652366 23.2921479918191 60.1815529576597 23.2922026667464 60.1816207280683 23.2922500580381 60.1816312888063 23.2922567702369 60.1817521638277 23.2923250384429 60.1819802435926 23.2924227853438 60.1819965717848 23.2924290632151 60.1821544630515 23.2924967458235 60.1821891981125 23.2925148420018 60.1822234578394 23.2925361861297 60.1822403236588 23.2925485031908 60.182256976768 23.2925618909812 60.1822734082065 23.2925763505136 60.1822896005571 23.292591901802 60.1823055164677 23.2926084949235 60.1823219178765 23.2926270184006 60.1823372465757 23.2926457532076 60.1823669769878 23.292686070607 60.1823954485899 23.2927299049022 60.1824226930834 23.292776783303 60.1824487277755 23.2928263609692 60.182557481544 23.2930659119424 60.1825680278089 23.2930894458778 60.1827548115555 23.2934783380775 60.1830578588981 23.294040578431 60.1830649193713 23.2940532629752 60.1832969175139 23.2944506907572 60.1833679316922 23.2945607080384 60.1834418748426 23.2946626530546 60.1835187352007 23.2947554623123 60.1835502522951 23.2947899506472 60.1835657436901 23.2948061601811 60.1836140112184 23.294853991001 60.1836286810779 23.2948681456296 60.1845377813784 23.2956382397086 60.1845421820537 23.2956416417038 60.1846427306826 23.2957188621304 60.1846456330874 23.2957210795364 60.184703055735 23.2957745583716 60.184703055735 23.2957745583716 60.1847103589168 23.295778896397 60.1848473402684 23.2958648768298 60.1848574514127 23.2958719122273 60.1849916896813 23.2959739046702 60.1850044077307 23.2959838406427 60.1851556998017 23.296097176112 60.1851681107866 23.2961057751423 60.1853379897034 23.2962216359264 60.1853463587244 23.2962277670523 60.1853966713959 23.2962661490629 60.1855947040046 23.2964357433278 60.185606797516 23.2964464900678 60.185720895036 23.2965518050851 60.1857686518239 23.2966016482872 60.1858149799359 23.2966566521966 60.1858297048354 23.2966756754459 60.185844603791 23.2966957800499 60.1858880740566 23.2967594810376 60.1859435119296 23.296850963265 60.1859531391536 23.296868016618 60.1860844841761 23.2971134329733 60.1860975601625 23.2971371366302 60.1861380918627 23.2972082631539 60.1862917713907 23.2974568495134 60.1863011638992 23.297471619424 60.1864123500456 23.2976538318116 60.186438712821 23.2977026782219 60.1864638616706 23.2977540801183 60.1864877377994 23.2978078636392 60.1864909738111 23.2978155847673 60.186557769205 23.297985079257 60.1865662691476 23.2980052203549 60.1865900521476 23.298059213253 60.1865926966132 23.2980647449844 60.1866297373103 23.2981431619139 60.1866652808374 23.2982242926938 60.1866731244464 23.2982437859359 60.1867498671883 23.2984434219918 60.1867733141441 23.2984979406934 60.1867765942294 23.298504989168 60.1867891602998 23.2985307186773 60.1868809863403 23.2987027374844 60.186906185055 23.2987540088334 60.1869139638044 23.2987715061881 60.1869836449492 23.2989362393503 60.1869961084442 23.2989621612302 60.1870024928339 23.2989744732517 60.1870158652852 23.2989985058477 60.1870296257665 23.2990216283689 60.1871294660314 23.2991745709464 60.1871449901461 23.299200978383 60.1871714041202 23.2992497490945 60.1871965523886 23.299301153323 60.1872320524382 23.2993823637785 60.1872984408424 23.2995524885177 60.1873011360315 23.2995598377542 60.1873631239103 23.2997365416847 60.1874012400131 23.2998586289973 60.1874086614426 23.2998842532725 60.1875016434755 23.3002337917455 60.1875090128462 23.3002604508637 60.1875438922705 23.3003863874812 60.1875600183525 23.3004507583176 60.1875743218838 23.3005168145955 60.187580630792 23.3005505604151 60.1875853441847 23.3005786740377 60.1875904789524 23.3006131838825 60.1875949855733 23.3006480532914 60.1875988540815 23.3006832472861 60.1876020824662 23.3007186938931 60.187606908019 23.3007900777196 60.1876160069379 23.3010054306928 60.1876163750079 23.3010173199815 60.1876254561405 23.3012326931047 60.1876280780942 23.3012683163843 60.1876313600849 23.3013037570307 60.1876352722163 23.301338910116 60.1876398139861 23.3013737576491 60.1876433407319 23.3013973663418 60.1876552438702 23.3014653540704 60.1877091381538 23.3017324466061 60.1877114171379 23.3017458173893 60.1877169323746 23.3017801222318 60.1877265910602 23.3018495001196 60.1877494600812 23.3020607223147 60.1877515266738 23.3020806510091 60.187775389337 23.3022914186686 60.1877949808964 23.3024300358178 60.1877959422371 23.3024361366449 60.1878132712925 23.3025384762354 60.1878595023396 23.3027729523061 60.1878614342123 23.3027822650218 60.18791152105 23.3030135280073 60.1879438224178 23.3031421958202 60.1879493272614 23.3031622971642 60.188011356884 23.3033815675595 60.1880137082617 23.3033904540828 60.1880377461543 23.3034871481249 60.1880956847567 23.3037508313755 60.1880981462034 23.3037620520282 60.1881715800359 23.3040907765302 60.1881776436862 23.3041186669396 60.188220954417 23.3043165643378 60.188244895592 23.304413360746 60.1882714724161 23.3045073337016 60.1882744685957 23.3045171044491 60.1882841503229 23.3045474216861 60.1883765303241 23.3048133519286 60.1883834749068 23.3048348079804 60.1884023609589 23.304896056115 60.1884982956664 23.3052423799991 60.188504125858 23.3052628786009 60.1885493724334 23.305418432808 60.1886008424615 23.3056082682293 60.188623467072 23.3057075251403 60.1886431359264 23.3058081255032 60.1886600916025 23.3059107098567 60.1886742976775 23.3060149393242 60.1886783322889 23.3060490513569 60.1886891948392 23.3061549024958 60.1887103588583 23.3064399514392 60.1887110292231 23.3064501284879 60.1887261410803 23.3067367068066 60.1887272951965 23.3068087051826 60.1887272558867 23.3068488710638 60.1887195863888 23.3072088040329 60.1887232720806 23.3076081989662 60.1887208572903 23.3077163016863 60.1887157312256 23.3078238789281 60.1887029136731 23.3080021566313 60.1887006144996 23.3080286599294 60.1886588188114 23.3084894114091 60.1886575476312 23.3085070086984 60.188650630216 23.3086141912798 60.1886352341731 23.3089731319568 60.1886342455935 23.3089999029559 60.1886164100543 23.3093945495322 60.1886151378453 23.3094150168212 60.1885888760684 23.3098440744314 60.188588658683 23.309849820706 60.1885806390121 23.3102097360327 60.1885803705612 23.3102191341358 60.1885702424407 23.3105066349661 60.1885695675449 23.3105353199957 60.1885605293571 23.3110032879901 60.1885597123776 23.3110210687291 60.1885532091085 23.3111283481827 60.1885440871265 23.311234874856 60.1885323647937 23.3113403398125 60.1885180266363 23.3114445101174 60.1885134792029 23.3114739007976 60.1884898453312 23.3116099623888 60.1884354151549 23.3118766621673 60.1884319942287 23.3118929302731 60.188362985197 23.3122255056935 60.1883614040777 23.3122332822366 60.1882736628593 23.3126672334191 60.18827145445 23.3126776614732 60.1881884163625 23.3130765529829 60.1881847418467 23.3130953401636 60.1881258414264 23.3133972281238 60.1881246044021 23.3134031609497 60.188083598958 23.3136030076804 60.1880724169538 23.3136714437972 60.1880676494065 23.3137061830889 60.1880659204357 23.3137202754118 60.1880620818651 23.3137554518978 60.1880588262688 23.3137909058783 60.1880537284004 23.3138622147098 60.1880435029864 23.3140773951981 60.1880417420363 23.3141087465358 60.1880369526571 23.3141801650401 60.1880275822594 23.3142865724829 60.1880195329211 23.3143568045349 60.1880098869251 23.3144261869177 60.1880080216451 23.3144382909624 60.1879965653845 23.314506576887 60.1879836777092 23.3145738140819 60.1879693640758 23.31463987558 60.1879061589788 23.314898633825 60.187898818962 23.314927506512 60.187840266593 23.3151506352066 60.1878356783993 23.3151669614232 60.1877816385087 23.3153539351825 60.1877733829241 23.3153828562297 60.1877466274913 23.3154766470577 60.187718299602 23.3155685204142 60.1876978065434 23.3156276573344 60.1876948473162 23.3156356603528 60.1876726856767 23.3156923311223 60.1876492801587 23.315746939336 60.1875751729764 23.3159037094784 60.1875650045361 23.3159252640549 60.1874655489403 23.3161330505315 60.1874600661869 23.3161437190353 60.18738298071 23.3162945763654 60.1873591402301 23.3163484202151 60.1873528482513 23.3163639263676 60.1873418847849 23.3163924465831 60.187331399317 23.3164216712302 60.187311821528 23.3164820579114 60.187267551228 23.3166386908982 60.1872644904017 23.3166501525051 60.1872318002744 23.3167784666284 60.1872022023549 23.3169097005819 60.1871896350583 23.3169771879576 60.1871788455897 23.3170459017797 60.1871747957724 23.3170757760513 60.1871706013356 23.3171107924873 60.1871669445639 23.3171460735012 60.1871638597978 23.3171815610962 60.1871613734182 23.3172172342666 60.1871595297266 23.3172530699971 60.1871583720241 23.3172890092866 60.1871578818894 23.3173250361538 60.1871578707344 23.317334007819 60.1871590648663 23.317406034305 60.1871646508963 23.3175496926103 60.1871656039961 23.3175797638733 60.1871687659298 23.3176876499279 60.1871720735382 23.3177594033607 60.1871746109114 23.3177950546668 60.1871778611093 23.3178304816595 60.1871819112353 23.317865584329 60.1871832158671 23.3178753289731 60.187188417333 23.3179098152356 60.1871944480654 23.3179437392524 60.187201288643 23.3179770490558 60.1872088131194 23.31800974072 60.1872419218044 23.3181375889348 60.187243841329 23.3181445572929 60.1872796710115 23.3182694113859 60.1873184555912 23.3183906314698 60.1873400111696 23.318448228543 60.1873514521427 23.3184759871272 60.187363321124 23.3185029757795 60.1873756360349 23.3185291924909 60.1873858419417 23.3185497074493 60.1874122822761 23.318598400345 60.1874822448515 23.3187111266102 60.1874865294109 23.318717811883 60.187612133854 23.3189215333007 60.1876236458878 23.3189415050284 60.1876634465202 23.3190142589283 60.1876886718643 23.3190654893462 60.1877006352934 23.3190923234937 60.1877121443186 23.319119948619 60.1877173372141 23.3191331202117 60.1877280976791 23.3191619483319 60.1877383315549 23.3191915574704 60.1877480448006 23.3192218386621 60.1877572543364 23.3192527539106 60.1877742533397 23.3193162056266 60.18778974016 23.3193811986494 60.1878037978981 23.3194474890156 60.1878059712482 23.3194584180451 60.1878245560391 23.3195598487985 60.1878514167924 23.3197317017548 60.187855261771 23.3197584714188 60.1878908098088 23.3200003578789 60.1878923462586 23.3200100407287 60.1879395303935 23.3202822104911 60.1879805623436 23.3205238446046 60.1879949172484 23.3206280246082 60.1880031774344 23.3206991890311 60.1880227007649 23.3209117553236 60.1880264608661 23.3210195953455 60.1880282830322 23.3210554181357 60.1880296381639 23.3210776658296 60.1880351755816 23.321148864703 60.1880599389015 23.3213591838664 60.1880633249588 23.3213849764479 60.1880876461934 23.3215583618486 60.1880991418333 23.3216266192629 60.1881134019876 23.3216966788703 60.1881375485896 23.3217932470798 60.1881889167195 23.3219831876651 60.1881968175289 23.3220155502046 60.1882023603368 23.3220400364644 60.1882092173218 23.3220733281721 60.1882155028604 23.3221070809867 60.1882212328741 23.3221412209249 60.1882310223282 23.3222105182165 60.1882422806856 23.3223162016178 60.188250558677 23.32242299499 60.1882515604714 23.3224390011572 60.1882583756453 23.3225824548398 60.1882611868149 23.3227264110877 60.1882610309637 23.3227984828392 60.1882607763101 23.322820062665 60.1882566905255 23.3229639248111 60.1882510104148 23.3230714148514 60.1882491266212 23.3231003608443 60.1882369410831 23.3232788284705 60.188235709571 23.3233147588197 60.1882353342942 23.3233507737972 60.1882359207803 23.3233867893923 60.1882375640983 23.3234226686169 60.1882388098636 23.3234403441522 60.1882423348443 23.3234756878223 60.1882469858119 23.3235104722465 60.1882524237658 23.3235447895299 60.1882912591055 23.323746370533 60.1882957812515 23.3237726319631 60.1883008662123 23.3238071873987 60.1883282626114 23.3240532604433 60.188332149953 23.3240845025183 60.188375875176 23.3243589815617 60.1883787370339 23.3243801584513 60.1883865759848 23.3244504691572 60.1883952440307 23.3245571295011 60.1884045578784 23.3247000156296 60.1884060756601 23.3247219927824 60.1884182412203 23.3248640002988 60.1884341759335 23.3250045031136 60.1884437225776 23.3250751463983 60.1884853709993 23.3253509790166 60.1884900304396 23.3253857629778 60.1884938731393 23.3254167034894 60.1885256331939 23.3257712393666 60.1885269958987 23.3257860140719 60.18853732969 23.3258756483135 60.1882050766115 23.3260499990845 60.1881407574084 23.3260837459131 60.1877902760815 23.3262383458951 60.1877728731514 23.3262460685692 60.1874217524276 23.3263944733865 60.1874083701052 23.3263993816814 60.1871080453416 23.3265060933568 60.1871035487396 23.3265079500187 60.1870162295177 23.3265491948252 60.1869818306906 23.3265695934624 60.1869479692577 23.3265934875802 60.1869403765602 23.3265994086119 60.1869073841302 23.326627735736 60.1868752088632 23.326659599222 60.1868284821218 23.3267131966762 60.186768503939 23.3267922991146 60.1867589752934 23.3268058727076 60.1865612363288 23.3271168046209 60.1865559730328 23.3271250459038 60.1864835441782 23.3272313127931 60.1864534615695 23.3272705757929 60.1864206837497 23.327309237698 60.1864048679065 23.3273262213855 60.1863887702252 23.3273421175612 60.1863723672953 23.3273567303099 60.1863556416735 23.327369754758 60.1863385086787 23.3273804062402 60.1863210125935 23.3273883368852 60.1863092410662 23.3273920176416 60.1862913742736 23.3273950083304 60.1862734316066 23.3273949392497 60.1862555609255 23.3273919563064 60.1862378329384 23.3273863403741 60.1862203601621 23.3273782593596 60.1862013996682 23.3273664462483 60.1861846951721 23.3273533340515 60.1861684271146 23.327338133583 60.1861526283651 23.3273210577511 60.1861372969489 23.3273023594571 60.1861224119721 23.3272822576204 60.186107967468 23.3272608611999 60.1860939520022 23.327238406105 60.1860803227678 23.327214969317 60.1859763273214 23.3270163178101 60.1859706475469 23.3270059796188 60.1859293635211 23.3269366165929 60.1858571795355 23.3268297400072 60.1857079526777 23.3266297429786 60.1857028401228 23.3266226804136 60.1855173828444 23.3263388433769 60.1853362854429 23.3260437109741 60.1853253625955 23.3260264697322 60.185137250816 23.3257497040948 60.1850474761332 23.3256295681375 60.1848645722077 23.3254015489005 60.1848571575422 23.3253925063416 60.1848531357476 23.3253868561654 60.1845574442241 23.3249787287839 60.1842857200206 23.3246197046734 60.1841257174454 23.3243878337573 60.1840148629802 23.3242048591667 60.1840115734036 23.3241990370899 60.1839848464465 23.3241509543729 60.1838817404864 23.3239505286694 60.1837723646715 23.3237120586356 60.1834997971757 23.3230428104008 60.1834915698111 23.3230226344439 60.1834687674316 23.3229670035071 60.1831844171785 23.3223179997264 60.1830183579014 23.3219892645183 60.1830064742479 23.3219672246374 60.1828163587718 23.3216377580338 60.1824163838386 23.32102757125 60.1820674034318 23.3205211191313 60.1820638414614 23.3205158516055 60.1816804366783 23.3199215565491 60.1816724432047 23.3199085205297 60.1814049354527 23.3194760275869 60.181333781778 23.3193663589841 60.1813066569917 23.3193192307834 60.1812935673737 23.3192945670746 60.1812888046134 23.3192852296626 60.1812264570257 23.3191557532469 60.1812134863235 23.3191308417388 60.1811986457089 23.3191049487646 60.1811841183346 23.3190838569917 60.1811688833304 23.3190647934815 60.1811530437637 23.3190479090948 60.181136655899 23.3190332877535 60.1811197541205 23.3190211962886 60.1811024196155 23.3190119684686 60.1810876458543 23.3190065861791 60.1810698097765 23.3190029185384 60.1810518700103 23.3190019874287 60.181033946001 23.3190035629116 60.1810161108905 23.3190073661008 60.1809984024792 23.3190131401167 60.180910085065 23.3190546168926 60.1808219343376 23.3190878639995 60.1806618679145 23.3191305048448 60.1806471750115 23.3191344971795 60.1804518847261 23.3191914244981 60.1803983120622 23.3192020290095 60.1803931921654 23.3192028012028 60.1803216310538 23.3192133099951 60.1803038408609 23.319218082388 60.1802874999318 23.3192239014211 60.1802523891533 23.3192386988792 60.1802345230673 23.3192417113115 60.180229085928 23.3192414182779 60.1802114063939 23.3192356217496 60.1801945608561 23.3192232896147 60.180178697931 23.319206534571 60.1801635380905 23.3191872646516 60.1801554536529 23.319175809524 60.1801412184057 23.3191539096945 60.1801274360139 23.3191308403351 60.1801141184381 23.3191067083773 60.1801012079555 23.3190817007416 60.1800765968487 23.3190292943047 60.1800534061435 23.3189743107211 60.1799763244226 23.3187752665347 60.1799679649425 23.3187545671818 60.1797991035121 23.3183813349503 60.1797884921947 23.3183556190196 60.1797236359431 23.3181831593063 60.1797139613923 23.318156869331 60.1797029678369 23.3181283993996 60.179691484039 23.3181007242796 60.1796792218515 23.3180744717529 60.1796654900393 23.3180512892108 60.1796580070366 23.318041102443 60.1796422171089 23.3180240693668 60.179625434644 23.318011424214 60.1796081517915 23.3180017945339 60.1795906963658 23.3179933932186 60.1795811044449 23.3179891450694 60.1792293345953 23.3178469522871 60.1792153284347 23.3178417012922 60.1789159481916 23.317724910384 60.1788809970528 23.3177086000998 60.1788732630335 23.3177049017356 60.1786475894745 23.3175865636836 60.1786405056093 23.3175829729385 60.1783250328233 23.317444424313 60.1783220686804 23.3174432047752 60.1780411730657 23.3173243302077 60.1780273679276 23.3173185518363 60.177728374964 23.3171976120549 60.1777146515119 23.317192185508 60.1772574530035 23.3170062889924 60.1772438698627 23.3170004138177 60.1768935059103 23.3168448392118 60.1768858899032 23.3168415069387 60.1766401175588 23.3167373974428 60.1766261874511 23.3167316515947 60.1761344596026 23.3165252620632 60.1761237564456 23.3165204897842 60.1758786578256 23.3164057181404 60.1754618460171 23.3162247861827 60.1750599385458 23.3160642714716 60.1748133732679 23.3162873336475 60.1740707208242 23.3169591943967 60.1739726537041 23.3168644073201 60.1726154066816 23.3155528255135 60.1719611454294 23.3155462640586 60.1716503484278 23.3160764168998 60.1715844866991 23.3159551711686 60.1703773579561 23.3186910213303 60.1694506532926 23.3206278452883 60.169140565632 23.3213015999638 60.1676845009723 23.3244650979362 60.1673808760692 23.3251197647468 60.1672726528432 23.3253530848029 60.167219265438 23.3254445181845 60.1666253704062 23.3267373738888 60.1624702447701 23.3357499605322 60.1611375272769 23.3386408323817 60.160922242429 23.3391510907073 60.1580168571254 23.3455268636662 60.1547231290015 23.3525620828889 60.1543001760267 23.3534729367396 60.1542826042799 23.3535107843547 60.1541918273046 23.3536848029689 60.1529648451276 23.3563460140313 60.1524447147611 23.3574319078083 60.1514251392218 23.3596079885281 60.150446285782 23.3617433147392 60.150446285782 23.3617433147392 60.1501697995878 23.3623442079335 60.1498987832005 23.3629375269973 60.1500916451028 23.3631161520412 60.1538125383101 23.3666307972417 60.1598681019506 23.3723525866048 60.167045802947 23.379175657679 60.1654015525454 23.4114364574956 60.1651999806799 23.4153719324795 60.1662341314143 23.4188748830767 60.1681546170866 23.4253868698891 60.1681987791132 23.4258453990203 60.1683264091582 23.4273364749849 60.168539014445 23.4295970365714 60.1685750750286 23.4300503227523 60.1690775419539 23.4352511052327 60.1692942148285 23.4374468146013 60.169347767817 23.4380097516792 60.1694874864802 23.4394214479042 60.1694987111463 23.4395293448659 60.1697190417921 23.4417574848981 60.1697229715082 23.4418384842696 60.1697331818132 23.4419157372143 60.1699783350981 23.4445047304019 60.1702231602694 23.4465482913753 60.1705848411173 23.4502581313602 60.1705834728015 23.4503626328771 60.1706913683158 23.4514186015762 60.1706957426962 23.451461422195 60.1707078906611 23.4515783183445 60.1712149563062 23.4564188451706 60.1713409178458 23.4576439490882 60.1714998431754 23.4591899427599 60.1715050619537 23.4592385550511 60.1715064503051 23.4592514838135 60.1716339433304 23.4606501776337 60.1716383909876 23.4606945078872 60.1716486880923 23.4608006417195 60.1726073413372 23.4701801501461 60.1820588817242 23.4957644364367 60.1821097641701 23.4958990886906 60.1841164705861 23.5012096426305 60.1856507470076 23.5052521873316 60.1964131404095 23.5336303932794 60.1968007264305 23.5346577517098 60.1979105140921 23.5376011497108 60.1982629130384 23.5385337213805 60.1982988233604 23.5386288839352 60.1986604499202 23.5416857842503 60.1986605408915 23.5416865148493 60.1988428362955 23.543227677222 60.198862800507 23.5432904948234 60.1997366080201 23.5460477887457 60.2000475749121 23.5469506439546 60.20220453369 23.5536157331303 60.2006324673828 23.5736456357035 60.200613161348 23.573891253092 60.1995453126599 23.5874671009787 60.1980688989287 23.5911437630289 60.1916563663584 23.6071059365345 60.1915052772812 23.6085191068641 60.1941330966925 23.6204829756032 60.1941330966925 23.6204829756032 60.1959066541337 23.6274005855804 60.1959094615631 23.6274504967352 60.1960611452814 23.6280179453455 60.1960916510548 23.6281222700806 60.1961815220174 23.6284818055926 60.1965290346897 23.6298245852284 60.1969146616985 23.6313238142314 60.1970660269216 23.6318539629332 60.1982098784083 23.6362150196577 60.1983482999785 23.6367267510519 60.199537686162 23.6412793492481 60.1996020628541 23.6415184436576 60.2005757287176 23.6451229246222 60.2005975618716 23.6452185604168 60.2006240142898 23.6453344314643 60.2009187096565 23.6465129977181 60.2015651808947 23.6489636604277 60.2035762749915 23.6472538803476 60.2035845355166 23.647246843802 60.2037415890288 23.6471133367737 60.2043904292603 23.6465616607162 60.2056791671736 23.645466323561 60.2083010925678 23.6432368715523 60.2084811724905 23.6430837247839 60.2084984304669 23.6430739238908 60.2085161391854 23.6430687899357 60.2085268405952 23.643072263929 60.2085423991475 23.643089741434 60.2085557269218 23.6431160064773 60.2085665212553 23.6431447878833 60.2085745346843 23.6431769596713 60.2085758001212 23.6431843422453 60.2085791478493 23.6432196457483 60.2085758346112 23.6432513328082 60.2085658474338 23.6432714412879 60.2085514644842 23.643292920292 60.2085471571043 23.6433045204981 60.2085554326913 23.6433356903753 60.2085616533428 23.6433499517425 60.2085727848867 23.6433782111805 60.2085821717778 23.643408906286 60.2085918750993 23.643444643263 60.2086010707078 23.6434755927176 60.208610867915 23.6435058125261 60.2086199891185 23.6435327608086 60.2086411283759 23.6435910381098 60.2086426243229 23.6435947494754 60.2086459702232 23.6436030208328 60.2086524322978 23.6436190091985 60.2086647774658 23.6436451583329 60.2086783849122 23.6436686322521 60.2086833057941 23.6436759299567 60.2086984343645 23.6436952395156 60.2087306153215 23.6437271430834 60.2087347113167 23.6437309677814 60.2087674519028 23.6437604847299 60.2087841294826 23.6437728281693 60.2088013913088 23.6437826921245 60.2088189643691 23.643789941991 60.2088367171077 23.6437950607223 60.2088447764791 23.6437967646318 60.2088626657428 23.6437994677135 60.2088805915885 23.6438007766009 60.2088985356329 23.6438006751138 60.2089880061086 23.6437878235312 60.2089950081612 23.6437864573768 60.2089991334131 23.6437875343138 60.2090169818289 23.643791108359 60.2090335026257 23.6437905203846 60.2090871204829 23.6437810462951 60.209096280339 23.6437800734356 60.2091142062707 23.643778547203 60.2091320871994 23.6437755989881 60.2091409369306 23.6437726714593 60.2091760335954 23.6437575431546 60.2091808738982 23.6437559827261 60.2092338870214 23.6437371801809 60.209251379813 23.6437291973059 60.2092655001814 23.6437218301867 60.2092827109449 23.6437115827604 60.2092997203777 23.6437001279621 60.2093029858033 23.6436977715011 60.2093199750266 23.6436862284644 60.2093373000577 23.6436769444536 60.2094402275643 23.6436003792219 60.2094574842081 23.6435905242613 60.2094749166599 23.6435819334415 60.2094924810145 23.6435746473711 60.2094959181404 23.6435733929314 60.2095311652257 23.6435599463247 60.2095482933167 23.6435492737825 60.2095539183852 23.6435446353732 60.2095703891557 23.643530364218 60.2095790760867 23.6435242027441 60.2095792880187 23.6435240546607 60.2095966674354 23.6435151441466 60.2096142290481 23.6435077499417 60.2096339122882 23.6435000303852 60.2096516450132 23.6434944244917 60.2096695557491 23.6434930079707 60.2096887408156 23.6434968424907 60.2097241407612 23.6435085895179 60.2097600098432 23.6435140223379 60.2097778294144 23.6435182312966 60.2097842290256 23.643520755036 60.2098015033222 23.6435304011667 60.2098183445488 23.6435428184167 60.2098234016371 23.6435469783185 60.2098560774012 23.643576773535 60.2098595582429 23.643580083387 60.209875694616 23.6435958955211 60.2098913213242 23.6436135836973 60.2098974836105 23.6436216395567 60.2099267663963 23.6436633032119 60.2099295468697 23.6436669917023 60.2099448773406 23.6436857576273 60.2099763781973 23.6437202600982 60.2099853107267 23.6437301816394 60.210001003652 23.6437476464618 60.2100170084501 23.64376394172 60.2100335482734 23.643777943022 60.2100489569219 23.6437880871503 60.2100779618985 23.6438017527144 60.2101931936187 23.6442177578853 60.21052777399 23.6454256983274 60.2105902325104 23.6456529222395 60.2110604979208 23.6475210982045 60.2116774043813 23.6467517893863 60.2120790199281 23.6462562612357 60.2130078879968 23.6451366116509 60.2137369976026 23.6441755634387 60.2145012747628 23.6431992423505 60.2147641077598 23.6428741274575 60.2166427488743 23.6405223845822 60.2167395657088 23.6404019299527 60.2192671893682 23.6372408989306 60.2202075647331 23.6368245649462 60.2222344930103 23.6359487389943 60.2227384687393 23.6357477924854 60.2248323295436 23.6349128358624 60.2298297415243 23.6328058875628 60.2300609496489 23.6327084029126 60.2329255416136 23.6325416955632 60.234725497695 23.6334612054029 60.2348965721708 23.6358081803761 60.2353005976957 23.640962973107 60.2353026538086 23.6409891482197 60.2353075381072 23.6410506905188 60.2353354528071 23.6414023038606 60.2361098577875 23.644797169602 60.2361110208859 23.6448022916929 60.2361428703849 23.6449415185845 60.2362935096368 23.6456001327163 60.2363066256196 23.6456574916328 60.236329967408 23.645759565065 60.2364226773498 23.6455916508917 60.2364365981101 23.6455664423413 60.237244055794 23.6441039238286 60.2372728648841 23.6440516338559 60.2372825265035 23.64403427014 60.2388067480154 23.6412732135274 60.2395093939977 23.6400018441453 60.2397364960536 23.6395889594247 60.240711319498 23.637828133652 60.2407313121213 23.6377918659327 60.2407490191958 23.6377597369299 60.2414969988324 23.6364026168053 60.2415400590851 23.6363245020723 60.2418675189827 23.6357307699539 60.2432044416993 23.6333057208301 60.2433660952095 23.6330168569903 60.2464497453834 23.6219753479183 60.2474639879883 23.6183552373321 60.2474741028486 23.6183191194367 60.2488670919863 23.613426590696 60.2491540532561 23.6124192162925 60.2500204932873 23.6127947964573 60.25064939854 23.6121288657273 60.2504976402866 23.6112313355224 60.2496654980547 23.6105297748339 60.250186515886 23.6087559939699 60.2506685650812 23.607011504257 60.2507847719092 23.6058186864349 60.2508301459081 23.6052501907601 60.2508377124661 23.6033092208336 60.2506017665342 23.602410616628 60.2506103018139 23.6022309258122 60.2506111531204 23.602213642235 60.2506206784254 23.6020371755713 60.2506248778157 23.6019594063925 60.2506359293212 23.6017439607274 60.2506371363313 23.6017079441706 60.2506375261231 23.6016943970154 60.2506401550336 23.601550088754 60.2506407939929 23.6015150532527 60.2506443336768 23.6014069938751 60.25064629008 23.6013711165266 60.2506486119428 23.6013372263668 60.2506587107487 23.6012308732185 60.250666638942 23.6011604557765 60.2506702932173 23.6011277111205 60.2506783029478 23.6010573213282 60.2506828994143 23.6010224176269 60.2506889124242 23.6009884337496 60.250693698986 23.6009669085679 60.2507022778613 23.6009352079276 60.2507120720333 23.6009049904212 60.2507225728166 23.6008756940578 60.2507296604074 23.6008559371284 60.2507509805575 23.6007978537039 60.2507537970278 23.6007909798669 60.250765987875 23.6007645095814 60.2507791258731 23.6007399299545 60.2507926549279 23.6007162318831 60.2507983116555 23.6007065681011 60.2509156875595 23.600563063846 60.2517851660557 23.5994665278559 60.2518401618095 23.5994141316581 60.2519766343057 23.5993225201501 60.2529086435041 23.5986082503088 60.2529463758183 23.5985653464686 60.2530681210173 23.5984720928738 60.2532817207003 23.5985059882394 60.2551240150553 23.5988435958181 60.2551279208265 23.5988427562608 60.255145698068 23.5988378904073 60.2551629043038 23.5988279299496 60.2551759068172 23.5988138488447 60.255189868427 23.5987912591596 60.2552029480767 23.5987665186371 60.2554170267081 23.5983260437419 60.2554269126828 23.5983060831731 60.2554901969217 23.598178113161 60.2555024060515 23.5981516722454 60.2555143135539 23.5981246839469 60.2555258906889 23.5980970789143 60.2555478925193 23.598040035404 60.2555681856121 23.5979804928463 60.2555759004386 23.5979554227787 60.2555848764465 23.5979241635499 60.2555933437478 23.5978923422814 60.2556013763599 23.5978600417066 60.2556089949845 23.5978273681808 60.2556231359928 23.5977609775645 60.2556667914659 23.5975240262253 60.2556730775091 23.5974902070013 60.2556774782814 23.5974673255643 60.2557047234727 23.5973337290717 60.2557118813186 23.5973006149054 60.255812639189 23.5968773219743 60.2558169254068 23.5968597870892 60.2559312417382 23.5963695451054 60.2559588253091 23.5962362188487 60.25599657668 23.5960333504608 60.2560079304399 23.5959648426644 60.256036168069 23.5957904867455 60.2560425819245 23.595756761996 60.2560496940925 23.5957236337761 60.2560575696295 23.5956911857443 60.2560662212025 23.5956595612571 60.2560757067571 23.5956289170495 60.2560860299973 23.5955993974099 60.2560959087585 23.5955749694862 60.2561079566511 23.5955482183063 60.2561204480241 23.5955222890618 60.2561722824287 23.5954224104452 60.2561973697307 23.5953707759624 60.2562092389489 23.5953437176728 60.25622040306 23.5953154486606 60.2562304843921 23.5952856103263 60.2562386454388 23.595256586452 60.256246373746 23.5952240087397 60.2562529619197 23.595190428291 60.2562648645957 23.5951223146831 60.2562706463998 23.5950881308074 60.2562744194691 23.5950660191438 60.2563160546572 23.5948275692171 60.2563217175495 23.59479330717 60.2563373357826 23.5946896506991 60.2563419220126 23.5946547590745 60.2563449723346 23.5946297023359 60.2563489303733 23.5945944962304 60.256352570065 23.5945591423688 60.2563938789287 23.594060578968 60.2563955986953 23.5940439070358 60.2564218294268 23.5937967485362 60.2564248977479 23.5937612007269 60.2564296422405 23.5936862893442 60.2564397767655 23.5933981970588 60.2564411800295 23.5933622074852 60.2564421657665 23.593340403472 60.2564440024835 23.5933044954018 60.2564461103982 23.5932686495429 60.2564541438497 23.5931615489802 60.2564651527639 23.5930555313785 60.2564695560572 23.5930205317942 60.2564743422749 23.5929857455534 60.2564778384006 23.5929619623394 60.2564888896799 23.5928932848871 60.2564948632979 23.5928592431509 60.2565411317141 23.5926242851546 60.25654791208 23.5925908646848 60.2565516568707 23.5925718660164 60.2565844197922 23.5924038149019 60.2565910893016 23.5923702792786 60.2566194869001 23.5922376576977 60.2566271220457 23.5922049800232 60.2566297521903 23.5921940183256 60.2566460187272 23.592129662431 60.2566724512805 23.5920352951024 60.2567012028443 23.5919437426417 60.256721632229 23.5918843606569 60.2567321973918 23.5918551937955 60.2567347350625 23.5918483288084 60.256767943695 23.5917630578318 60.2567793893596 23.5917352822169 60.2568387108999 23.5915998753211 60.2568508612009 23.5915732921971 60.2568529468287 23.5915687709748 60.256926266062 23.5914101325867 60.2569383508013 23.5913834476311 60.2569851550283 23.5912739918301 60.2569964115925 23.5912458557474 60.2570037213029 23.5912271005226 60.2570145936854 23.5911983533335 60.2571380655273 23.5908434255666 60.2571485465424 23.5908141401413 60.2571553221181 23.590795585004 60.2571768620804 23.5907378219945 60.2571879134599 23.5907093994649 60.2573036940958 23.5904335950078 60.2573145658379 23.5904048292579 60.2574040797395 23.5901343795411 60.2574362030137 23.5900474818047 60.2574476124502 23.590018659822 60.2575170774811 23.5898531459428 60.2575287480483 23.5898257434455 60.2575341841721 23.5898127709876 60.2576021466843 23.5896447541262 60.2576133661135 23.5896165846176 60.2576162958698 23.5896092443893 60.2576728421545 23.5894690912506 60.2576839493513 23.5894407524513 60.2576928336113 23.5894171845226 60.2577458970306 23.5892716060913 60.2577569198065 23.5892431312666 60.2577604332019 23.5892343737912 60.2578326470788 23.5890737427213 60.2578415283807 23.5890535568558 60.2579087592458 23.5888843831425 60.2579169468058 23.5888637811223 60.2579400608042 23.5888085462145 60.2579520592341 23.5887816694717 60.2579643508195 23.5887553589958 60.2579769463792 23.5887296860018 60.2579880561485 23.5887080922877 60.2580012111325 23.5886835546305 60.2580143270124 23.5886588944276 60.2580268754183 23.5886331358391 60.2580376090664 23.5886042566052 60.2580457609973 23.5885721376726 60.2580479604267 23.5885594657518 60.2580514093378 23.5885240929657 60.258051433894 23.5884880098131 60.258050067785 23.588452017259 60.258048380132 23.5884188976256 60.2580466828376 23.5883829576598 60.2580454058661 23.5883469377427 60.2580447562942 23.5883108524732 60.2580449963682 23.5882747649591 60.2580465699142 23.5882388098195 60.25804953613 23.5882035415342 60.2580539834017 23.5881685530103 60.2580596082322 23.5881342737406 60.2580661304497 23.5881006424808 60.258073240209 23.5880674925658 60.2580804966157 23.5880344539573 60.2580867257551 23.5880055011688 60.2581137495454 23.5878716922703 60.258116327843 23.5878597765646 60.2581315313275 23.5877943506114 60.258139267197 23.5877617864072 60.2581449054276 23.5877367653863 60.2581515925888 23.5877032614517 60.2581567787216 23.5876687021572 60.2581578421401 23.5876328361745 60.2581566896408 23.5876208750856 60.258148158873 23.5875893545484 60.2581361807012 23.5875625156648 60.2581229788241 23.5875380649946 60.2581098033676 23.5875135935052 60.2580979276321 23.5874865450651 60.2580918687349 23.5874658715873 60.258088722282 23.5874305528234 60.2580915374491 23.5873950107741 60.2580979958086 23.5873613498035 60.2581063775431 23.5873294416477 60.2581168640326 23.5872976035316 60.2581280645622 23.5872694166183 60.2581407446718 23.5872438968617 60.2581553021853 23.5872228837083 60.2581692046991 23.5872102943298 60.2581867194362 23.5872025733635 60.2582223825525 23.5871946432521 60.2582400466131 23.5871885344105 60.2582588961946 23.5871743624322 60.2582726667519 23.5871514055808 60.2582835862924 23.5871227775326 60.2582933142147 23.5870942917236 60.2583036067683 23.5870646980904 60.258314685158 23.5870363066307 60.258327120116 23.5870103419519 60.2583424750669 23.5869920306652 60.2583478209427 23.5869888330671 60.2583656600828 23.5869881315529 60.2583830036039 23.5869971575399 60.2584161336792 23.5870249029686 60.2584255586513 23.5870324934466 60.258442668873 23.5870432800151 60.2584602424386 23.5870504192462 60.2584781135186 23.5870534039279 60.2584960218676 23.5870518994577 60.2585065037056 23.5870488719917 60.2585238919911 23.5870400788827 60.2585404512093 23.5870263081371 60.2585554067989 23.5870064468016 60.2585601643595 23.5869978485783 60.2585715726812 23.5869700554905 60.2585797157094 23.5869379546083 60.2585839833813 23.5869029840363 60.2585843163675 23.5868862380363 60.258581246246 23.5868507480603 60.2585754867902 23.5868165692514 60.2585691002376 23.5867828175238 60.2585639777437 23.5867482468113 60.2585633668181 23.5867416187302 60.2585626743111 23.5867056277949 60.2585657954126 23.5866701075267 60.2585720894639 23.5866363545186 60.2585807949342 23.5866048098465 60.2585917148168 23.5865761993848 60.2586039760597 23.5865525673936 60.2586186880059 23.5865319715852 60.2586348808674 23.5865165386506 60.2586520584334 23.5865061937117 60.258669755381 23.5865003160968 60.2586800875104 23.5864988051666 60.2587159762832 23.5864982477604 60.2587336894772 23.5864930014421 60.2587429214523 23.586486107053 60.2587653773156 23.5864297800796 60.2587774610224 23.5864030917999 60.258790806895 23.5863790029219 60.2587940279953 23.5863739105856 60.258808875606 23.5863536983231 60.2588248151249 23.5863371521965 60.2588415875557 23.5863243353772 60.2588589757885 23.5863155417893 60.2588779628228 23.5863109040967 60.2588958888353 23.5863111336085 60.2589136819398 23.5863156271856 60.2589311494141 23.586323880428 60.2589481754886 23.5863352362253 60.2589578701736 23.5863431783198 60.2589740770452 23.5863586707954 60.2589897282817 23.5863763191819 60.2590197888927 23.5864157424634 60.2590332589057 23.5864345406367 60.2592520000351 23.5867501340039 60.2592653077407 23.5867689131848 60.2594134440541 23.5869726620245 60.2594242679338 23.5869874680414 60.2594937247572 23.5870847686249 60.2594937247572 23.5870847686249 60.2595420743561 23.5871525095283 60.2595530512257 23.5871680231713 60.2597015934094 23.5873788411963 60.2597454230657 23.5874417184201 60.2597576660304 23.5874582397712 60.2598335817289 23.5875543990461 60.2598498341006 23.5875779543553 60.2598635024914 23.5876013267662 60.2599030821384 23.5876747216173 60.2599065093983 23.5876807852387 60.2599203987442 23.5877036644586 60.2599349270457 23.5877248312457 60.2599502474312 23.5877436004413 60.2599609790326 23.5877544736855 60.2599776030991 23.5877680247466 60.2600114227829 23.5877921915887 60.2600280075992 23.5878059638176 60.2600310215549 23.5878088872939 60.2600466305763 23.5878266498309 60.2600614861426 23.5878469144951 60.2600759053277 23.5878683821883 60.2600854821583 23.5878825771629 60.2601749225006 23.5880031751332 60.2601914415353 23.5880273180649 60.2602599964722 23.5881437442321 60.2602662731219 23.5881547200928 60.2603084367868 23.5882220233398 60.2603673463927 23.5883044752674 60.260397698353 23.5883430214637 60.2604027095647 23.5883491734484 60.2604950068305 23.5884606678879 60.2605246077504 23.5885014630348 60.2605370906231 23.5885203295466 60.260607330852 23.588639403927 60.2606214386954 23.5886617005666 60.2606359007132 23.5886830921587 60.2606506971242 23.5887035084157 60.2606658355001 23.5887228942872 60.2606813210932 23.5887411045297 60.2606905236393 23.5887512332554 60.2607711511686 23.5888304119809 60.2607869084043 23.5888476535102 60.2607954929601 23.5888578647551 60.2608104900769 23.5888776995824 60.2608250007366 23.5888988873642 60.2608529471475 23.5889441965256 60.2608937334191 23.5890149191692 60.2609036566362 23.5890317556266 60.2609462420471 23.5890980044497 60.2609755759086 23.5891396062692 60.2609810987674 23.5891471340715 60.2610854340025 23.589287837673 60.2610900359709 23.5892945028144 60.2611469825665 23.5893824263683 60.2611523851949 23.5893908711315 60.2611958535724 23.5894547680397 60.2612257219989 23.5894947954793 60.2612432413593 23.5895166109904 60.2613053929981 23.5895888722806 60.2613170254248 23.589602980805 60.2613470770811 23.5896424468198 60.2614473896848 23.5897944971743 60.2614566747122 23.5898088864527 60.2614999752301 23.5898732541471 60.2615128300274 23.5898912147924 60.2615580113062 23.5899500872356 60.2617160187271 23.5901209659939 60.261730873461 23.5901359692984 60.2618423725607 23.5902522927172 60.2618887894802 23.59030714873 60.2619039361312 23.5903265170913 60.2619142917161 23.590340252616 60.2620452060222 23.5905304880285 60.2620751742756 23.5905702176423 60.2621060556546 23.590607012484 60.2621171464826 23.5906189352063 60.2621652047102 23.5906677246844 60.2621804174511 23.590686869434 60.2621945660699 23.590709019033 60.2621985091899 23.5907162777289 60.2622106066736 23.5907428915271 60.2622210929782 23.5907722053749 60.2622298991754 23.5908011876962 60.2622382950802 23.5908330887079 60.2622455951732 23.5908660624705 60.2622513186964 23.5909002856457 60.2622533035474 23.5909163218648 60.262256178212 23.5909519449906 60.2622573670491 23.5909747746608 60.2622599299976 23.5910237971391 60.2622628962706 23.5910622867053 60.2622675930149 23.5910971232756 60.2622742857212 23.5911305944577 60.2622829614105 23.5911621951489 60.2622939300825 23.5911906992866 60.2623046822605 23.5912107789599 60.2623197759334 23.5912301896602 60.2623359737616 23.5912457050792 60.2623693895064 23.5912720173693 60.2623858463326 23.5912864205984 60.2623944821713 23.5912954880793 60.2624648151937 23.5914595498645 60.2624752662825 23.5914840021688 60.26254678418 23.5916529156057 60.2626143329554 23.5918216097827 60.2626354259397 23.5918800454601 60.2626452865911 23.591910202931 60.2626545987873 23.591941050581 60.2626633535647 23.591972589342 60.262671513217 23.5920047507852 60.2626793724308 23.5920388608429 60.2627003676136 23.5921386200428 60.2627026251281 23.592148134561 60.2627071781854 23.5921654955431 60.2627176708284 23.592194719164 60.2627303170941 23.592220318126 60.2627442973266 23.5922429203711 60.2627591607436 23.5922631697158 60.2628042819754 23.5923221984962 60.262809637449 23.5923302149425 60.2628232799965 23.5923536663925 60.2628359087699 23.5923792854035 60.2628474393934 23.5924069360507 60.2628577691018 23.5924364662343 60.2628668546274 23.5924675910449 60.2628747338331 23.5925000352184 60.2628886744098 23.5925665779093 60.2629125812564 23.5927027359532 60.2629180479341 23.5927374752155 60.2629296644078 23.5927649724139 60.2629423275657 23.5927905338176 60.2629558090037 23.5928143640741 60.2629699076701 23.5928366830724 60.2630138278688 23.5928993470737 60.2630283762374 23.5929202808279 60.2630855311519 23.5930076693801 60.2631002603145 23.5930282950034 60.2631155142986 23.5930473104495 60.2631313206172 23.5930643872657 60.2631477111133 23.5930790156652 60.263155544541 23.5930848390547 60.2631727465666 23.5930950237616 60.2631903363681 23.5931021112099 60.2632081533779 23.5931064979553 60.2632260510881 23.5931087780631 60.2632353182189 23.5931091886029 60.2632532677437 23.5931085872762 60.2632711527072 23.5931058220635 60.2632888921385 23.5931005396184 60.2633062564182 23.5930914976412 60.2633240153121 23.5930768252872 60.2633394206993 23.5930583459862 60.2633537355823 23.5930365975983 60.2633672824529 23.5930129393747 60.2633806375485 23.5929888126975 60.2633901385896 23.5929720872222 60.2634041834961 23.5929496252261 60.2634189916155 23.5929292363228 60.2634347431211 23.5929119870735 60.2634518100871 23.5929011670423 60.2634608052728 23.5928990372587 60.2634786199863 23.5929022845907 60.2634954852666 23.5929144036256 60.2635108956649 23.5929328603139 60.2635253556304 23.592954201538 60.2635391591036 23.5929772752292 60.2635541756025 23.593004889563 60.2635669591037 23.5930302400408 60.2635792548741 23.5930565457102 60.2635908627866 23.5930840625441 60.2636012093502 23.5931135556628 60.2636097444156 23.5931452993664 60.2636116776583 23.5931540882306 60.2636175242349 23.5931882280281 60.2636216797131 23.5932233577642 60.2636247056801 23.5932589487046 60.2636270895426 23.5932947330742 60.2636317685351 23.5933663472353 60.2636333480099 23.5933851578011 60.2636372278987 23.5934204066891 60.2636419778163 23.5934552394787 60.2636474883536 23.5934895952005 60.2636741247236 23.5936274446966 60.2636805265858 23.5936611650986 60.2636981984945 23.5937634988801 60.2637088843659 23.5938324624762 60.2637126496723 23.5938583535201 60.2637461010163 23.5941020365711 60.2637489713655 23.5941210747344 60.2637544114174 23.5941554922651 60.2637662187187 23.5942236882623 60.2637860330166 23.5943244250238 60.2637931737044 23.5943575261629 60.2638161261098 23.5944555309177 60.2638190908611 23.5944673962289 60.2638273292002 23.594499496928 60.2638520427821 23.5945957450021 60.2638669223882 23.594661451193 60.26387348301 23.5946950650224 60.2638744672462 23.5947004977984 60.263880066169 23.594734808581 60.2638849837275 23.5947695339174 60.2639107217349 23.5949799239701 60.2639156925451 23.5950146257451 60.263917609497 23.5950266362735 60.2639236934317 23.595060589209 60.2639305621034 23.5950939540725 60.2639381683821 23.5951266453233 60.2639464764162 23.5951586666911 60.2639553611864 23.5951900492659 60.2639647424888 23.5952208194772 60.263970699837 23.5952393378914 60.2639739636077 23.5952492005618 60.2639806555573 23.59526937912 60.2639900368418 23.5953001493782 60.2639983099085 23.5953322106507 60.2640034175543 23.5953666450952 60.2640023833195 23.595402333171 60.2639961695946 23.5954361539761 60.2640812304243 23.5954935509136 60.2641157282567 23.5955133890611 60.2641227338124 23.5955170743435 60.2642274459594 23.595567345564 60.2642373856001 23.5955729507395 60.2642715379576 23.5955950860882 60.2643387953225 23.5956454713329 60.2643498186205 23.5956537314882 60.2644510451331 23.5957275197535 60.2644600151654 23.5957345644053 60.2644929023914 23.5957634340804 60.264509011304 23.5957793599019 60.2645247435623 23.5957967177521 60.2645399712014 23.5958157741828 60.2645511295968 23.5958314007233 60.2645652868106 23.5958535712511 60.2645787851793 23.5958773840405 60.2645916186838 23.5959026045601 60.2646159258279 23.5959557375887 60.2646254718461 23.5959782247916 60.2646483951639 23.5960338171921 60.2646603896089 23.5960606626233 60.2646734105454 23.5960854839182 60.264688552353 23.596109252655 60.2647038465613 23.5961281034202 60.2647201166395 23.5961433072873 60.2647370946231 23.5961549282869 60.2647545534913 23.5961632251731 60.2647723135208 23.5961681985348 60.2647897252058 23.5961697530839 60.2648076483689 23.5961681250368 60.2648254399846 23.5961634716801 60.2648430482533 23.5961565762292 60.2648605034317 23.5961482676382 60.2648638289326 23.5961465290634 60.264898311663 23.5961265555311 60.2649322051347 23.596102880651 60.2649491194841 23.5960892557231 60.2649655432183 23.5960747230536 60.2649816732286 23.5960589003879 60.2649974345696 23.5960416688908 60.2650127414812 23.5960228384943 60.2650273564611 23.5960019092986 60.265041142285 23.5959787870322 60.2650477920743 23.5959661567641 60.2650600567703 23.5959397918181 60.265071511751 23.5959119915302 60.265093203721 23.5958544553403 60.2651026434398 23.5958297226288 60.2651140239146 23.5958018214742 60.2651258832583 23.5957747207119 60.265138157341 23.5957483727409 60.2651638794101 23.5956979967511 60.2652041958397 23.5956262411058 60.2652157651339 23.5956067498189 60.2652572571206 23.5955377298407 60.2652706126691 23.5955136027591 60.2652834837803 23.5954884587511 60.2652942041489 23.59546565482 60.2653405034283 23.5953552885894 60.2653530993002 23.5953295761298 60.2653557857355 23.5953246477885 60.2653696675494 23.5953017682632 60.2653844185428 23.5952812404188 60.2653995972453 23.5952619705244 60.2654122669544 23.5952464889676 60.2653999995306 23.5951817017241 60.2654135171078 23.5951579374161 60.2654227838232 23.5951415253302 60.2654362632254 23.5951176745104 60.2654502133003 23.5950950048133 60.2654568882425 23.5950858085961 60.2654725020389 23.5950680851994 60.2654897048421 23.5950527471686 60.2655229822305 23.5950257339419 60.2655292654789 23.5950198345476 60.2655447700216 23.5950017063796 60.2655595973013 23.5949813512467 60.2655621543405 23.5949776844832 60.2655768176676 23.5949568941382 60.265588239295 23.5949421572172 60.2656039397582 23.5949246598294 60.2656176826752 23.5949089759811 60.2656325009768 23.5948886216924 60.2656415141224 23.5948756366402 60.2656711799159 23.5948350153952 60.2656755456918 23.594828989739 60.2657045802469 23.5947865346406 60.2657118758259 23.5947756094874 60.265740862306 23.5947330326643 60.2657516147856 23.5947177863107 60.2657810954106 23.5946766051665 60.2657833838491 23.5946733280834 60.2658266651812 23.5946089133442 60.2658344745804 23.5945976995007 60.2658637045279 23.5945558568003 60.2658767465103 23.5945310740522 60.2658788016334 23.5945264102132 60.2658892371899 23.5944970685653 60.2658983051003 23.5944680138679 60.2659178605187 23.5944074412708 60.2659224010859 23.5943938719701 60.2659523250727 23.5943038016709 60.2659579803884 23.5942860461764 60.2659673910499 23.5942552914387 60.265976254821 23.5942238880664 60.2659809931417 23.5942050701806 60.2659955281939 23.5941390317534 60.2659983985049 23.594126215001 60.2660314224915 23.5939979777478 60.2660376642726 23.5939708629512 60.2660442251459 23.5939372749532 60.2660498056579 23.5939029567934 60.2660588402839 23.5938330582795 60.2660624075886 23.5938015363788 60.2660750810661 23.5936962552893 60.2660790305452 23.5936705185426 60.2660854437638 23.5936367829888 60.2661071079794 23.5935376033192 60.2661103947575 23.5935217582997 60.2661166160079 23.5934878979351 60.2661218582844 23.5934533615466 60.2661258616588 23.5934181761811 60.2661281686413 23.5933862245072 60.2661305300456 23.5932780000202 60.26613240297 23.5932420956184 60.2661362699894 23.5932068520399 60.2661372946535 23.5932005586643 60.2661445635522 23.5931676022308 60.2661542068289 23.5931371664804 60.2661652020935 23.5931086341953 60.2661740161283 23.5930882522606 60.2661863556451 23.593062022208 60.2661993591721 23.5930371521479 60.2662127343183 23.5930145046449 60.2662273501939 23.5929936274631 60.2662433836994 23.5929775594037 60.2662545986568 23.5929726296654 60.2662725231227 23.5929731523399 60.2662826941257 23.5929734145236 60.266296805051 23.5929692688259 60.2663432448525 23.5931898926091 60.2663466597319 23.5931916357267 60.2663639558713 23.5932012870203 60.2663808792364 23.5932132202805 60.2663963028952 23.5932314964068 60.266399377129 23.59323642265 60.2664116521679 23.5932626242511 60.2664210164664 23.5932934160862 60.2664369231863 23.5933581516544 60.266444379265 23.5933891782641 60.2664526093818 23.5934213002084 60.266461336948 23.5934528457977 60.2664707361287 23.5934835979208 60.2664810396605 23.5935131705617 60.2664922254487 23.5935414032094 60.2665046277449 23.5935687133421 60.2665176321484 23.5935935729522 60.2665314950235 23.5936165161606 60.2665461230348 23.5936374079561 60.2665615659532 23.5936557366347 60.2665777890153 23.5936711982779 60.2665946494379 23.5936834821142 60.2666132141245 23.5936928389442 60.2666309685134 23.5936979384378 60.2666488830691 23.5936994755914 60.2666667969206 23.593697485226 60.2666845195276 23.5936918967085 60.266700971298 23.5936833650603 60.2667178389925 23.5936710816291 60.2667340515182 23.5936556824628 60.2667495436553 23.5936374276072 60.2667641582377 23.5936164962235 60.2667778583244 23.5935931996882 60.2668043118459 23.5935443894925 60.2668179346559 23.5935208838535 60.2668204139254 23.5935169897461 60.2668350374508 23.5934960573304 60.266850363758 23.5934772949742 60.2668662142112 23.5934603956397 60.2668986849498 23.5934296283618 60.2669029467716 23.5934258563024 60.266936160292 23.5933984669296 60.266969989725 23.5933744144079 60.2669871979479 23.5933641937643 60.2670046411869 23.5933557757877 60.2670222863702 23.5933492724646 60.2670400900728 23.5933447425875 60.2670595098646 23.593342251583 60.2670774500989 23.593342338646 60.2670953590792 23.5933447083592 60.2671131400655 23.5933494431541 60.2671306990971 23.593356733716 60.2671479564332 23.593366624527 60.2671575465862 23.5933733151237 60.2671741616129 23.5933868908849 60.2671903431344 23.593402483632 60.2672221692808 23.5934358597176 60.2672699072575 23.5936871272741 60.2672556303603 23.5936659090265 60.2671969156994 23.5935828496606 60.26716617681 23.5935456156018 60.267161356508 23.5935402377208 60.2671454273756 23.5935236236831 60.2671290913222 23.5935086620527 60.2671123406142 23.5934957516226 60.2670950628841 23.5934861161427 60.2670773492947 23.593480505922 60.2670629847019 23.5934793231304 60.2670450756492 23.5934811503337 60.266974038489 23.5935016389635 60.266964887381 23.5935032966251 60.2669112198233 23.5935114493388 60.2668935601085 23.5935177369776 60.266876467144 23.5935285967689 60.2668606628869 23.5935455455397 60.2668573203672 23.593550470163 60.2668443436365 23.5935753377334 60.2668333289603 23.5936038182034 60.2668047070903 23.5936955832774 60.2668022838488 23.5937027097031 60.2667915689325 23.5937316654328 60.266779888199 23.5937590573178 60.2667672554063 23.5937847211136 60.2667537272742 23.5938084157454 60.266739326524 23.5938299760378 60.2667241758597 23.5938492806849 60.2667083460599 23.5938662861446 60.2667004045234 23.5938737514504 60.2666837457164 23.5938871708125 60.2666666334032 23.5938979780776 60.2666491535091 23.5939060195885 60.2666313811431 23.5939110704532 60.2666134652947 23.5939122830281 60.2665956071803 23.593909093681 60.2665781055205 23.5939012361703 60.2665718722948 23.5938971811823 60.2665553934774 23.5938829580792 60.2665399671259 23.593864573305 60.2665257085083 23.5938426661172 60.2665126186894 23.5938179781027 60.2665006148247 23.5937911329453 60.2664897840654 23.5937623748396 60.2664801409325 23.5937319193551 60.2664760228806 23.5937167902837 60.2664526928035 23.5936191430213 60.2664443234952 23.5935871983231 60.2664348115253 23.5935566026521 60.2664236861655 23.5935282733106 60.266416652469 23.5935140446153 60.2664026469345 23.5934914962624 60.2663871798851 23.5934732787974 60.2663704551373 23.5934603297837 60.2663528121818 23.5934539706465 60.2663387635917 23.5934538946761 60.2663210969285 23.593459911598 60.2663042053036 23.593471962303 60.2662884334987 23.5934891244996 60.2662742712355 23.5935112205999 60.2662605438338 23.5935415023867 60.2662505846029 23.5935715368236 60.2662425145105 23.5936037444845 60.2662360829125 23.5936374640305 60.266219561307 23.5937405772316 60.2662156189882 23.5937630933199 60.2662092147016 23.5937968280525 60.2661949179592 23.5938630412759 60.2661788449962 23.5939276302234 60.2661525683484 23.5940221882868 60.2660877280384 23.5942402957678 60.2660833700787 23.5942567767285 60.2660128458156 23.5945083437166 60.2660102888457 23.5945158637008 60.2659889802473 23.5945739595426 60.2659199513149 23.5947402570486 60.2659091863103 23.5947669194376 60.2658870833237 23.5948238312589 60.2658136485303 23.5950289180373 60.2663896949105 23.598921937934 60.2638715850101 23.6018313913964 60.2638121600487 23.6018926561597 60.2638121600487 23.6018926561597 60.2638126099001 23.6019284610154 60.2638126904267 23.6019358147054 60.2638132732492 23.6020080361353 60.2638133329265 23.6020226455039 60.2638131161365 23.6020948775547 60.2638113425571 23.6022052752176 60.2638112864844 23.6022343131798 60.2638118960098 23.6022703908813 60.2638125173838 23.602286931706 60.2638153412555 23.6023589386821 60.2638155273108 23.602377080295 60.2638157957372 23.602413175305 60.2638162734055 23.6024293692726 60.2638186816916 23.6024651518117 60.2638237289107 23.6024997561186 60.263828986045 23.6025229066792 60.2638368099646 23.6025553959606 60.2638416159804 23.6025823376799 60.263845573181 23.602617543512 60.2638473733108 23.6026534434569 60.2638473359923 23.6026895340434 60.2638433541292 23.6027975922827 60.2638425813398 23.6028267227093 60.2638421491348 23.6028628361664 60.263842399503 23.6028989330739 60.2638429394755 23.6029210717347 60.2638444540896 23.6029570555739 60.263846799954 23.6029928627369 60.2638482500938 23.6030101858606 60.2638547515967 23.6030812325997 60.2638572984077 23.6031161145057 60.2638619626903 23.6031877136397 60.2638625097814 23.6031957424827 60.2638680307854 23.6032671080567 60.2638707673609 23.6032981717 60.2638744846779 23.6033334929631 60.2638796826595 23.6033680275423 60.2638846228785 23.6033924954349 60.2638918759943 23.6034255144766 60.2638975571743 23.6034518952733 60.2639049778033 23.6034847884328 60.2639100909164 23.6035044268575 60.2639180283474 23.6035367961309 60.2639234633105 23.6035683034938 60.263927607091 23.6036034358959 60.2639293344471 23.6036217613809 60.2639316622071 23.6036575705496 60.2639319147851 23.6036649787728 60.2639320842679 23.6037010841597 60.2639314263619 23.6037371668312 60.2639312650586 23.6037449074002 60.2639303642126 23.6037809790892 60.2639284973743 23.6038168796367 60.2639278201741 23.6038251801927 60.2639201813269 23.6038957402318 60.2639168566145 23.6039312131257 60.2639147457647 23.6039698703331 60.2639120827303 23.6040055640062 60.2639098726519 23.6040220910459 60.263904390392 23.6040564852936 60.2639016659877 23.6040732827292 60.2638958267631 23.6041074245615 60.2638907727029 23.6041308126862 60.2638818778094 23.6041621420638 60.2638730956237 23.6041866403412 60.2638634214905 23.6042170194478 60.2638599272443 23.6042346383148 60.2638557662874 23.6042697456095 60.2638544665525 23.6042846225787 60.2638525995769 23.6043205230187 60.2638525643314 23.6043314340789 60.2638529850616 23.6043675314032 60.2638525785807 23.6043895692508 60.2638507662791 23.6044255001883 60.2638496669024 23.6044439921722 60.2638476376237 23.604479873248 60.263847347584 23.6044857459295 60.2638446889004 23.6045577789419 60.2638442217318 23.6045760425636 60.2638451429456 23.6046120337149 60.263848091767 23.6046408686145 60.2638471785284 23.60466733643 60.2638432084527 23.6047025323868 60.263840426387 23.6047262093612 60.2638331959392 23.6047969436842 60.2638306261481 23.6048180300583 60.2638213578965 23.604887799869 60.2638186786863 23.604908825218 60.2638095103661 23.6049786388786 60.2638058903329 23.605002583568 60.2637949884948 23.6050713830572 60.2637908744059 23.6050981464912 60.2637853367006 23.6051324918962 60.2637786725126 23.6051660134747 60.2637718876594 23.6051934155428 60.2637551250433 23.605257251232 60.2637518036823 23.6052725004911 60.2637326922208 23.6053737876259 60.2637284050645 23.6053927365932 60.2637126856543 23.6054576577821 60.2637051025669 23.6054935536193 60.263692847613 23.6055614619396 60.2636889404984 23.6055840253307 60.263677407896 23.6056524194432 60.2636756697356 23.6056631632791 60.2636654800625 23.6057324129927 60.2636632034084 23.6057495074186 60.2636581314231 23.6057841479726 60.2636517782775 23.6058178902728 60.2636456807631 23.6058416031564 60.2636402195442 23.6058687592326 60.2636343987019 23.6059029347094 60.2636275679026 23.6059362742585 60.2636073938501 23.6060002638784 60.2636028334796 23.6060183727587 60.2635961964156 23.60605190923 60.2635901001693 23.6060858599317 60.2635880833862 23.6060962527351 60.2635809413288 23.6061293712157 60.2635729435358 23.6061617101304 60.2635552375895 23.6062245211884 60.2635471185099 23.6062510662533 60.2635280680955 23.6063122619781 60.2635253965707 23.6063209499434 60.2634983142611 23.6064145602461 60.2634927580961 23.6064359014875 60.263476521924 23.6065003144838 60.2634683576978 23.6065331769186 60.2634608567366 23.6065659706013 60.2634573621745 23.6065835890103 60.2634518061532 23.6066179356832 60.2634480897531 23.6066532312706 60.26344685828 23.6066753542827 60.2634466943797 23.6067114574637 60.2634488774316 23.606747263174 60.2634499011464 23.6067570694903 60.2634537600299 23.606792339783 60.2634544729952 23.6068019431549 60.2634577444517 23.6068374371228 60.26346088951 23.6068546388097 60.2634680629449 23.6068877387442 60.2634712146672 23.6069073093216 60.2634766334918 23.6069417306546 60.2634796782088 23.6069553612675 60.2634887079717 23.606986550499 60.2634946672589 23.6070062643033 60.2635026553115 23.6070385382718 60.2635064894349 23.6070658161647 60.2635085926463 23.6071016664067 60.2635087579398 23.6071327250637 60.263506755813 23.6072048336942 60.2635064488117 23.6072195351526 60.263506140892 23.6072556352198 60.2635068826125 23.6073278574909 60.2635072392101 23.6073460174208 60.2635082421842 23.6073820721099 60.2635091253098 23.6074074670929 60.2635096617215 23.6074435520344 60.2635079708391 23.607476883155 60.2635048451202 23.6075124430838 60.2635029939229 23.6075324777839 60.2634956893396 23.6076031821542 60.2634947667974 23.6076103321807 60.263489640082 23.6076449598148 60.2634835891631 23.6076789415609 60.2634767960724 23.6077123670886 60.2634745679333 23.6077225826707 60.2634669106116 23.6077552475582 60.2634585150075 23.6077871568488 60.2634544959403 23.6078011394342 60.263426086556 23.6078931492301 60.2634191897586 23.6079165463913 60.2634099422869 23.6079474766259 60.2633997751634 23.6079772359274 60.2633910967946 23.6079987917118 60.2633661742551 23.6080507362306 60.2633546783383 23.6080738680933 60.2633298886332 23.6081260881467 60.2633212461642 23.6081458855658 60.2632866377532 23.6082288414749 60.2632781685982 23.608249091181 60.2632663533149 23.6082762534809 60.2632539258996 23.6083023215189 60.2632444060097 23.6083204913451 60.2632312388682 23.6083450442055 60.2632184792781 23.608370423066 60.2631942563623 23.6084244289542 60.2631813252722 23.6084494275767 60.263172182305 23.6084626563903 60.2631572846131 23.6084827939837 60.2631419741201 23.6085078761965 60.2631288922233 23.6085326009534 60.263121337035 23.6085474740885 60.2631087960104 23.6085733185234 60.2630970367435 23.608600565198 60.2630885737081 23.6086231655044 60.2630787594817 23.6086533761205 60.2630698271889 23.6086846891945 60.2630642984648 23.6087060630774 60.2630480427859 23.608770457952 60.2630427974611 23.6087895595345 60.2630253127445 23.6088526345553 60.2630175233387 23.608884010045 60.263009644152 23.6089164439239 60.2630035040258 23.6089402686632 60.2629947102621 23.6089717300285 60.2629851386814 23.6090022951686 60.2629799674425 23.6090172649298 60.2629587470689 23.6090755352711 60.262951522279 23.6090956014231 60.2629305903348 23.6091542578174 60.2629268507349 23.6091644125767 60.2629158802185 23.6091929880669 60.2629041217431 23.609220270441 60.2628950175167 23.6092388851286 60.2628692798361 23.6092891939155 60.2628572009142 23.6093158944038 60.2628478512334 23.6093403768641 60.2628369367625 23.6093690368594 60.2628320676397 23.6093803576186 60.2628194020878 23.6094059068894 60.2628059205096 23.609429768014 60.2627994733441 23.6094405286269 60.2627712723066 23.6094851774041 60.2627664649152 23.6094925847408 60.2627374735483 23.6095351447065 60.2627338592139 23.6095400047238 60.2626884819426 23.6095982792306 60.26267836423 23.6096124042975 60.2626341839149 23.6096742626835 60.2626271937005 23.6096827641691 60.2625797567903 23.6097339440383 60.2625757517018 23.6097382837421 60.2625441570453 23.6097725210463 60.2625279660174 23.609788124883 60.2625201126574 23.6097948526345 60.2624698202814 23.6098334673929 60.2624664854754 23.6098362544816 60.2624501213184 23.6098510622232 60.2624340884445 23.6098672284082 60.262370743867 23.6099380698633 60.2623675752636 23.6099413823573 60.2623514336403 23.6099571617843 60.2623349269261 23.6099713149243 60.2623179946308 23.609983233061 60.2623150297674 23.6099850231776 60.2622976746042 23.6099941091386 60.2622800683108 23.6100011048328 60.2622623571181 23.6100068090687 60.2622529877254 23.6100094249708 60.2622174323713 23.6100191469466 60.2621805969206 23.6100294174299 60.2621687405222 23.6100314225685 60.2621509423555 23.6100358334649 60.2621404173845 23.6100414087213 60.2621070827397 23.6100680477332 60.2620934333637 23.6100779618375 60.2620596416337 23.6101021881852 60.2620451973042 23.6101154583907 60.2620292669345 23.6101321200765 60.2620184848049 23.6101441610484 60.2620034286805 23.6101637347313 60.2620000159171 23.6101690982373 60.2619732597957 23.6102171950941 60.2619698454428 23.6102228481534 60.2619563905978 23.6102467055327 60.2619457564939 23.6102747385141 60.2619361652912 23.6103052500308 60.2619267532405 23.6103311668618 60.2619044459769 23.6103877200835 60.2619002217026 23.6103996609335 60.2618798302256 23.6104590906263 60.2618752646266 23.6104706869507 60.2618400906398 23.6105526641399 60.2618305041406 23.6105791414967 60.2618101875131 23.6106386898088 60.2618051444881 23.6106527049413 60.2617941637524 23.6106812438009 60.2617825929785 23.6107088489035 60.2617580948023 23.6107616129629 60.2617519551354 23.6107738604665 60.2617389769239 23.6107987895363 60.2617119732348 23.6108463503861 60.2616999964478 23.6108658038235 60.2616719969581 23.6109109715675 60.2616682066295 23.610917386901 60.2616133955396 23.6110106016838 60.2616027057559 23.6110266118433 60.2615591265478 23.6110902127098 60.2615307945125 23.6111367890995 60.2615164770449 23.6111585464793 60.2615109444576 23.6111660644928 60.2614647820884 23.6112217749739 60.2614495431467 23.6112422891739 60.2614351573884 23.6112638364718 60.2614211964227 23.6112865335459 60.2614166146412 23.6112943329575 60.261363550451 23.6113915618119 60.2613548238132 23.6114077303261 60.2613289717224 23.6114578116473 60.2613154458095 23.6114880420384 60.2612927822276 23.6115440333612 60.2612828274819 23.6115691191886 60.2612610531541 23.611626501527 60.2612575856873 23.6116364102647 60.2612373147682 23.6116960063648 60.2612349677282 23.6117026339294 60.2612144634829 23.6117618923446 60.2612073040408 23.6117862909196 60.261189984259 23.6118495425624 60.2611841375677 23.6118700974435 60.2611654469586 23.6119317544635 60.261162649823 23.6119408160461 60.2611532991022 23.6119716089097 60.2611444310476 23.6120030029527 60.2611417615289 23.6120131908011 60.2611339192496 23.6120456905289 60.2611201370447 23.6121123380063 60.2611141461876 23.6121441397208 60.2611076089015 23.6121777704744 60.2611002446465 23.612210690936 60.2610827892026 23.6122763798177 60.2610778851728 23.6122965476442 60.2610627982764 23.6123620818551 60.2610573909925 23.6123836582345 60.2610494189898 23.6124160084191 60.2610428076246 23.6124495562748 60.2610381120135 23.6124898513329 60.2610362427879 23.6125257482879 60.2610358263558 23.6125587095774 60.261035094768 23.6125948144161 60.2610335141793 23.6126307538522 60.2610318405909 23.6126475669342 60.26102671161 23.6126821551291 60.2610207239554 23.6127161990854 60.2610195832119 23.6127225570631 60.2610078540253 23.612790782257 60.2610050319544 23.6128073161915 60.2609985124245 23.6128409448516 60.2609887119107 23.6128710241588 60.2609770211405 23.6128897233379 60.2609611469476 23.6129064857987 60.2609447617363 23.612921184931 60.2609289275375 23.6129381060046 60.2609238572476 23.6129454310637 60.2609107825336 23.6129701153668 60.2608988065056 23.6129970011364 60.2608896462186 23.6130176631885 60.2608773394258 23.6130439139178 60.2608642849223 23.6130686864885 60.2608598602251 23.6130763064807 60.2608456196604 23.6130982716225 60.2608369275202 23.6131101673504 60.2608224929465 23.6131315737478 60.260819782165 23.6131366290115 60.26080742915 23.6131628301573 60.2608051074702 23.6131679898701 60.260792839263 23.6131943450023 60.2608691804241 23.6132055135134 60.2609383218173 23.6132173362154 60.2616288421211 23.6133266144956 60.2703021458829 23.6144884107066 60.2703033827345 23.6144657401183 60.2703042803687 23.6144537246347 60.2703081068054 23.6144184293677 60.2703135006916 23.6143839851391 60.2703264573845 23.6143166272587 60.270333993206 23.6142815996236 60.2703417256311 23.6142489940658 60.2703506322939 23.6142176782262 60.2703613988232 23.6141888114508 60.2703735904468 23.6141636689658 60.2703873709552 23.6141405693599 60.2704164795702 23.614098316927 60.2704268548381 23.6140826434823 60.2704831425999 23.6139929645355 60.2704931320098 23.6139780184363 60.2705498067787 23.6138894208031 60.2705527450907 23.6138841234317 60.2706038619434 23.6137826940513 60.2706125481218 23.6137659829549 60.2706394670048 23.6137182211574 60.2706677748836 23.6136738254915 60.2706818850287 23.6136537851373 60.2706969204713 23.613634083262 60.270712405985 23.6136158183762 60.2707283979005 23.613599436961 60.2707457116221 23.6135844928214 60.2707959829327 23.6135457130524 60.270812470687 23.6135315056211 60.2708192929922 23.6135248655762 60.2708514682842 23.6134929149696 60.2708682753446 23.6134803027659 60.2708858286961 23.6134729867773 60.2708897839852 23.6134723243051 60.2709076990659 23.6134735466733 60.2709253282885 23.6134801177771 60.2709426889722 23.6134891953269 60.2709593705788 23.6134994829586 60.270976365509 23.6135111313031 60.271009736377 23.6135376401455 60.27106052762 23.6135811992661 60.2710958616297 23.6136071614043 60.2711025598064 23.613613615024 60.2711185687761 23.6136299428716 60.2711223831715 23.6136336190945 60.2711549038585 23.6136641421972 60.2711703355988 23.6136825018914 60.2711808641077 23.6136988901426 60.2711936423774 23.6137242005003 60.2712051256879 23.6137519425857 60.2712132583154 23.6137744587911 60.2712229752943 23.6138048261177 60.2712319511179 23.613836084293 60.2712385598762 23.6138612187546 60.2712462059766 23.6138938990774 60.271252532456 23.6139276929132 60.2712562272667 23.6139537982456 60.2712596752264 23.61398924679 60.2712614907378 23.6140251717685 60.2712617471012 23.6140612761128 60.271261548536 23.6140711028238 60.2712598600836 23.6141070645675 60.2712566416421 23.6141425875021 60.2712519136546 23.6141774162125 60.2712494535708 23.6141919456925 60.2712426584403 23.6142253598605 60.271234565873 23.6142575874497 60.2712250724877 23.6142895075917 60.2712152848401 23.6143197574502 60.2712130919037 23.6143264432948 60.2711925404512 23.6143856688738 60.2711809397833 23.6144131932844 60.2711779985052 23.6144194318282 60.271165010248 23.61444434966 60.271137459936 23.614490620972 60.2711263918164 23.6145090801606 60.2711122857789 23.6145313996436 60.271097453164 23.6145516593368 60.2710842127141 23.6145649334925 60.2710674055472 23.6145775452298 60.2710503347011 23.6145886282723 60.2710635473758 23.6160503076428 60.2710635473758 23.6160503076428 60.2710707434754 23.6161576842083 60.2710723531653 23.6161936665195 60.2710730490559 23.616229761383 60.2710729524497 23.6162569824051 60.2710675230006 23.6164010528663 60.2710671182005 23.6164218286429 60.2710688377042 23.6165301331812 60.2710690708136 23.6165484367284 60.2710691245694 23.6166206742808 60.2710704293839 23.6166566881144 60.271070943945 23.6166641794794 60.2710746842074 23.6166994892939 60.2710840743149 23.616769224075 60.2710864005026 23.6167903146557 60.2710909867645 23.6168619752568 60.2710942999601 23.616897455895 60.2710954667809 23.6169058568516 60.2711021091921 23.6169393832096 60.2711180654414 23.6170040611632 60.2711197633694 23.6170117920989 60.2711255151903 23.6170459894961 60.2711350466888 23.6171156374905 60.2711369658804 23.617130636836 60.2711423028399 23.6171651304359 60.2711549277035 23.6172327400514 60.271156794811 23.6172421723099 60.2711703800667 23.6173090314107 60.2711718214695 23.6173158661642 60.2711786756758 23.6173492441429 60.271184057745 23.6173788119983 60.2711886410461 23.6174137092254 60.2711927712077 23.617452687912 60.2712002517672 23.6175233260504 60.2712016221821 23.6175428871835 60.2712028371154 23.6175789104693 60.2712031288247 23.6176150291496 60.2712032610834 23.6176314977543 60.2712044608262 23.617667631168 60.2712081564676 23.6177029639251 60.2712185379758 23.617772126403 60.2712217604114 23.6177973581775 60.2712244227218 23.6178330510234 60.2712257276691 23.6178690831319 60.2712260528562 23.6178804297252 60.2712287559881 23.6179889407329 60.2712294193836 23.6180611517875 60.2712293992544 23.6180667082687 60.271228989858 23.6181028270353 60.2712281800659 23.6181373407463 60.2712270404875 23.6181733721107 60.2712260520735 23.6182061673887 60.2712246563273 23.6182783378588 60.2712241478579 23.6183021096649 60.2712198553842 23.6184101311345 60.2712189057809 23.6184289368792 60.2712125360189 23.618536557741 60.2712096521672 23.6185722083763 60.2712085022805 23.6185849195332 60.2711965094109 23.6186905339209 60.2711933762564 23.6187156985379 60.2711848930235 23.6187858870862 60.2711816063787 23.6188156087502 60.2711718477155 23.6189221501106 60.2711700808293 23.6189462689452 60.2711649651469 23.6190177740731 60.2711644207507 23.6190242712184 60.2711575822345 23.6190951762772 60.2711552505084 23.6191309868793 60.2711546993685 23.6191548534803 60.2711551519873 23.6191909554735 60.2711550980724 23.6192018888885 60.2711528380236 23.6192376920757 60.271149398039 23.6192744493677 60.2711438836573 23.6193458327292 60.2711430846374 23.6193578562652 60.2711163453468 23.6194518940325 60.2711113984401 23.6194711305646 60.2710956359095 23.61953604564 60.2710870711212 23.619567777671 60.2710826192197 23.6195824580384 60.2710721879789 23.6196118317508 60.2710603412124 23.6196389091405 60.2710534717412 23.619652174629 60.2710255456418 23.6196975211759 60.2710206055415 23.6197057386509 60.2710074457397 23.6197303100591 60.270995222488 23.619756720623 60.270983490146 23.6197840574637 60.2709816692416 23.6197884248223 60.2709586366167 23.619843831795 60.2709463007255 23.6198700548898 60.2709347997753 23.6198913068229 60.2709206250123 23.6199134318694 60.2709152259304 23.6199209187056 60.2708999640691 23.6199398812628 60.2708843698716 23.6199577925783 60.2708706312908 23.6199730517278 60.270839024134 23.6200072530236 60.2708304754945 23.6200159877244 60.2708143935855 23.6200309821883 60.2707625204782 23.6200743317722 60.2707455123542 23.6200875402128 60.2707278528852 23.6200935247257 60.2707224595267 23.6200945338828 60.2707191126079 23.6201300145197 60.270715446664 23.6201536776893 60.270706648448 23.6201850714324 60.2706959559847 23.620214073543 60.2706846668818 23.6202415270278 60.2706732538963 23.6202694094033 60.2706623187162 23.6202980565776 60.2706582123913 23.6203093720095 60.270618509891 23.6204297311016 60.2706160452152 23.6204374033294 60.2706061543322 23.6204675346944 60.2706011233916 23.6204831248224 60.2705823549045 23.6205447121509 60.2705739266259 23.6205708750235 60.2705531668782 23.6206297911596 60.2705439442867 23.6206607580228 60.2705397032334 23.6206787813531 60.2705336400595 23.6207127690876 60.270531105247 23.6207279205511 60.2705241703272 23.6207612022015 60.2705164730634 23.6207938388466 60.2705102586663 23.6208190674799 60.2704941353219 23.6208836017837 60.2704867094802 23.6209103123345 60.2704769207601 23.6209405776198 60.2704347760063 23.6210575146282 60.2704330184891 23.621062255229 60.2704227273345 23.6210918485939 60.2704136754288 23.621117170955 60.2704029082932 23.6211460716389 60.2703930167861 23.6211761845523 60.2703916892699 23.621181224507 60.2703852044637 23.6212148936619 60.2703822034878 23.6212322098925 60.270375259476 23.621265492213 60.2703695531424 23.6212898540633 60.2703578680484 23.6213172934775 60.2703471089452 23.6213419235029 60.2703348391674 23.6213682834268 60.2703219155357 23.6213933177298 60.270307894034 23.6214158238906 60.2703054212909 23.621419299462 60.2702899238688 23.6214374892069 60.2702738500553 23.62145351311 60.2702575255067 23.621468513541 60.2702518388406 23.6214735329509 60.2702192297252 23.6215036924573 60.2702080538022 23.6215147783007 60.2701757452797 23.621546155043 60.2701660545273 23.6215541566995 60.2701488741328 23.6215644871864 60.2701337741849 23.6215697000624 60.2701158671581 23.6215712585968 60.2700979399407 23.6215692008419 60.2700867294316 23.6215672821505 60.2700766148952 23.6215971100907 60.2700653038877 23.6216251256589 60.2700586854226 23.6216373150766 60.2700437425251 23.6216571660731 60.2700276188121 23.6216729958812 60.2700238875263 23.6216764565446 60.2699915300105 23.6217076751715 60.2699792334023 23.6217213369962 60.2699488286413 23.6217597173725 60.269940921545 23.6217696515826 60.2699253468514 23.6217876318225 60.2699093924971 23.6218041134242 60.2698930975519 23.6218192189998 60.269876508211 23.6218329980592 60.2698712377585 23.6218370698084 60.2698184362502 23.6218768021905 60.269802262179 23.6218924198719 60.269787199753 23.6219104013889 60.2697726969143 23.621931654014 60.2697664744426 23.6219413962035 60.2696879292615 23.6214652786468 60.2705367639254 23.6198130154823 60.2616234405062 23.6204692171472 60.2613151688625 23.6204838471627 60.2613093538776 23.6205148695923 60.2612918874624 23.6206173261773 60.2612862909963 23.6206516359292 60.2612837338547 23.6206676716593 60.2612775859899 23.6207075005617 60.2612723002262 23.6207420133516 60.2612666853413 23.6207763068729 60.2612622051677 23.6208004631099 60.2612547562511 23.620833318027 60.2612516723458 23.6208456098159 60.2612431636888 23.6208774345806 60.2612402365324 23.6208881185338 60.2612315515886 23.6209197263348 60.2612226531291 23.620951066758 60.2612160619705 23.6209731437066 60.2611966888741 23.6210339251919 60.2611923257183 23.6210475064937 60.2611826763879 23.6210779476209 60.2611804575762 23.6210846878471 60.2611698585996 23.6211138342395 60.2611663924924 23.6211227650607 60.2611440343607 23.6211792602631 60.2611364923873 23.6211989392157 60.261126125738 23.6212283871241 60.2611224320715 23.621239674608 60.2611129867806 23.6212703658621 60.2611096792246 23.6212812879371 60.261100187729 23.6213119296727 60.2610964903724 23.6213237782117 60.2610869611757 23.6213543514639 60.261077461159 23.6213850121216 60.2610710073736 23.6214061341895 60.2610616831607 23.6214369937216 60.261034071533 23.621529987137 60.2610249141433 23.6215610464289 60.2610204550761 23.6215761567733 60.2609644991053 23.62176125994 60.2609597989151 23.6217771366593 60.2609506508891 23.6218082129278 60.2609414189701 23.6218391712245 60.2609373705989 23.6218524123599 60.2609275905401 23.6218826675275 60.2609219894113 23.6218984562755 60.2609106405707 23.6219263953469 60.2609039700786 23.6219400697109 60.2608903129056 23.6219634719491 60.2608846199316 23.6219728312523 60.2608710682396 23.6219964938834 60.2608652653959 23.6220064794573 60.2608513694281 23.6220293274941 60.260845484534 23.6220392672589 60.2608322573349 23.622063674092 60.2608248226508 23.6220773367831 60.2608108584147 23.622099974761 60.2608023904487 23.6221118810804 60.2607871672668 23.6221309591922 60.2607839247921 23.622134910973 60.2607368670463 23.622193391656 60.2607212005396 23.6222109418748 60.2607175289781 23.6222146304224 60.2607011530371 23.6222293780134 60.2606977333782 23.6222323713692 60.2606813372116 23.6222470305947 60.2606788313617 23.6222492062312 60.2606621375909 23.6222624130302 60.2606451331192 23.622274005978 60.2606423114923 23.6222757800998 60.2606203268501 23.622289080395 60.2606034342929 23.622301186282 60.2605992182641 23.6223050213936 60.2605839146184 23.6223237639455 60.2605811841879 23.6223280607759 60.2605683248748 23.6223531528088 60.2605631687007 23.622365241918 60.2605523913226 23.6223940982473 60.2605464874902 23.6224075305127 60.2605348576962 23.6224350278002 60.2605239775723 23.6224637318976 60.2605149208503 23.6224948704749 60.2605097131877 23.622518703019 60.2604970458371 23.6225862784861 60.2604895921396 23.6226171974261 60.2604803506032 23.6226481379463 60.2604701235838 23.6226777874148 60.2604589846113 23.6227069159674 60.2604474669062 23.6227345823757 60.2604110338322 23.6228143389112 60.2603999104743 23.6228426699467 60.2603896834102 23.6228723192822 60.260380673703 23.622903543195 60.2603734623513 23.6229365711597 60.2603710637655 23.6229514323589 60.260366667909 23.6229895054869 60.2603630932783 23.6230248894733 60.2603598360278 23.6230603854169 60.2603592012895 23.6230682823029 60.2603570294232 23.6231072293526 60.2603565872936 23.6231435201976 60.2603570212625 23.6231796302743 60.2603574760608 23.6231904352532 60.2603607072674 23.6232259313558 60.2603618782776 23.6232338048289 60.2603690202841 23.6232668901116 60.2603706790369 23.623272741874 60.2603807681972 23.6233026294694 60.2603856585972 23.6233161060802 60.2603959555203 23.6233456828969 60.2604056093563 23.6233761218415 60.2604107377376 23.6233940051244 60.260418731697 23.6234263153633 60.260420419335 23.6234347143587 60.2604257276883 23.6234692005873 60.2604270280272 23.6234789779177 60.2604311486011 23.6235141111277 60.2604318794173 23.6235241099572 60.2604327584549 23.6235604093533 60.2604327747086 23.6235967072689 60.2604296950971 23.6236356575131 60.2604244268476 23.6236737120243 60.2604186287126 23.6237078963833 60.2604165222358 23.623719761243 60.2604104223305 23.6237537415707 60.2604041291362 23.6237875428604 60.2604011427683 23.6238029710208 60.2603873286318 23.6238696510985 60.260380310318 23.6239028578917 60.2603738873107 23.623934031878 60.2603672277322 23.623967563391 60.2603605398779 23.6240010435453 60.2603554397203 23.6240252263646 60.2603476581293 23.6240577521393 60.2603448876791 23.624068600206 60.2603363867382 23.6241004043076 60.2603330193709 23.6241128693308 60.2603246933131 23.6241448362459 60.2603168659575 23.6241773305039 60.2603110488526 23.6242040650022 60.260304572603 23.6242377402715 60.2603022584991 23.6242509829347 60.2602968713671 23.6242854321574 60.2602952295304 23.6242979001498 60.2602915182629 23.6243332256297 60.260285547734 23.6244044322721 60.2602842558675 23.6244182930072 60.260280308308 23.6244535162093 60.2602794239143 23.6244607876649 60.2602697594124 23.624535160288 60.2602640510718 23.6245714692558 60.2602574370648 23.6246050319906 60.2602556917 23.6246130794555 60.2602483243289 23.6246459963623 60.2602460295871 23.6246564697594 60.2602395343765 23.6246901106453 60.260237679026 23.6247016058475 60.2602328508811 23.6247378963784 60.2602284589074 23.6247750824372 60.2602252738107 23.6248106067642 60.2602225154886 23.6248463041374 60.2602218679822 23.6248547629413 60.2602189554357 23.6248904038547 60.2602162055963 23.6249260822522 60.260215730952 23.624933564661 60.2602141658533 23.6249695369441 60.2602139854563 23.6249751623061 60.2602126663799 23.6250140934801 60.2602082766462 23.6250866923252 60.2602017052666 23.6251964663767 60.2601949089708 23.6252673779116 60.2601937936008 23.6252850004268 60.2601933689589 23.6253230616796 60.2601932810834 23.6253591710771 60.2601933719936 23.6253673367369 60.260195580009 23.6254053799238 60.2602017513979 23.6254434307157 60.2602116640194 23.6254734635886 60.2602149598801 23.6254814979687 60.2602269654416 23.6255083128766 60.2602338700457 23.6255221971365 60.2602472861732 23.6255461718644 60.2602523491828 23.6255540784381 60.2602672062556 23.6255742874463 60.2602708267749 23.6255788338986 60.2602862014827 23.6255974884235 60.2602906215435 23.6256027302149 60.2603062927714 23.6256203232848 60.2603117415346 23.6256257303864 60.2603284025779 23.6256391339633 60.2603337376608 23.625642545192 60.2603535352865 23.6256531296843 60.2603707439148 23.6256633298312 60.2603876890885 23.6256751849135 60.2603957746304 23.625681441721 60.2604123400393 23.6256953254603 60.2604287762588 23.6257097832046 60.260435799078 23.6257159505717 60.2604523233379 23.625729983276 60.2604689204655 23.6257437010161 60.2604802312748 23.6257530981583 60.2604967394397 23.6257672049038 60.2605132324297 23.6257814217457 60.2605298626525 23.625795027607 60.2605467836782 23.6258069938187 60.260565127396 23.6258176559238 60.2605824498138 23.6258270305999 60.2605866870215 23.6258300304874 60.2606020633175 23.6258483957542 60.2606069221714 23.625857462945 60.2606171888928 23.6258869353115 60.2606201349395 23.6258999435051 60.260625857257 23.6259397774489 60.2606289506793 23.6259769522225 60.26062981412 23.6260130183376 60.2606298294962 23.6260185693331 60.2606295702143 23.6260546606827 60.2606294002282 23.6260628171553 60.2606280159288 23.6260988435386 60.2606256548616 23.6261346269002 60.2606241341928 23.6261522190178 60.260620532287 23.626187623776 60.2606193069937 23.6261991626307 60.2606157041578 23.6262345313003 60.260614918689 23.6262425160476 60.2606085033471 23.6263135879328 60.2606074514905 23.6263266462692 60.2606045564778 23.6263622856389 60.2606039402086 23.6263691496699 60.2605958709904 23.6264395056278 60.2605947147321 23.6264488127052 60.2605898818437 23.6264877625547 60.2605841727953 23.6265275984518 60.2605748930176 23.6265973555554 60.2605736268591 23.6266072888833 60.2605691694318 23.6266422752277 60.2605604087611 23.6267123043508 60.2605562512249 23.6267474225544 60.2605538643082 23.6267684136598 60.2605500340247 23.6268036790065 60.2605464857239 23.6268390780793 60.2605459685584 23.6268445392174 60.2605424562377 23.6268817070539 60.260538486133 23.6269224308164 60.260533719184 23.6269940198901 60.2605332246246 23.6270021374128 60.2605280228049 23.6270735903831 60.2605260142546 23.6271094638463 60.2605257753245 23.6271163251549 60.2605250043694 23.6271354858239 60.2605231858673 23.6271714120522 60.2605679870081 23.62716618311 60.267216623015 23.6263900399629 60.2692785558 23.6261786116596 60.2694551847104 23.6262193328662 60.2697370274614 23.6262842913318 60.2710535226791 23.6265896155898 60.274300875498 23.6273427918602 60.2743160901411 23.6273463266772 60.2746969025798 23.6274377643253 60.2758052262605 23.627710700305 60.2785751347289 23.6283949002543 60.279982702758 23.6287752396996 60.2800816810036 23.6287981428408 60.2822113519988 23.6293581561443 60.2826021731402 23.6294609121878 60.2826667683663 23.6294803022568 60.2826769824324 23.6303623959269 60.2826774544571 23.6304103632465 60.2826834157005 23.6310129438223 60.2826837440561 23.6310464107578 60.2827255577436 23.6352762129547 60.2827570734505 23.6384340751587 60.2828012316443 23.6428721000046 60.2828020806066 23.6429575291652 60.2854223114423 23.6470845211583 60.2855776177559 23.6473291931302 60.2856201178371 23.6473961526817 60.2856201178371 23.6473961526817 60.2856356046312 23.647414403517 60.285651469997 23.64743127616 60.2856681892676 23.64744424217 60.2856811246039 23.6474493603356 60.2856990493698 23.6474506367825 60.2857194029296 23.6474509403359 60.285737126913 23.6474563642188 60.2857554910154 23.6474661389792 60.2857726292562 23.647476835779 60.2857895649994 23.6474887660594 60.2857972667194 23.647494818763 60.2858137338106 23.6475091863246 60.2858298604595 23.6475250187103 60.2858413434973 23.6475370371677 60.2858729184837 23.6475713779619 60.2858890124637 23.6475873404555 60.2859001417863 23.6475970964555 60.2859169898652 23.6476094702332 60.2859342357995 23.6476194502078 60.2859517349626 23.6476273589018 60.2859588113119 23.6476300004731 60.2859942188651 23.6476417395692 60.2859971415934 23.647642888116 60.28604924169 23.6476700941039 60.2860667931065 23.6476775811861 60.2860851042551 23.6476820581554 60.2861209797196 23.6476813686798 60.2861245020762 23.6476813516631 60.2861424083144 23.647683317963 60.2861601960882 23.647688065779 60.286176324716 23.6476940153361 60.2862285824842 23.6477199926526 60.2862451301561 23.6477290125919 60.2862624234791 23.6477387344597 60.2862794977433 23.6477497458227 60.2862891602058 23.647757643129 60.286305205856 23.647773828068 60.2863206003868 23.6477923423118 60.286332141769 23.647806671933 60.2863629330994 23.6478437907683 60.2863779628658 23.6478635189908 60.2863864794116 23.647875859814 60.2864003922642 23.6478986891087 60.2864134292939 23.6479234906258 60.2864257655098 23.6479497215156 60.2864307431201 23.6479610674288 60.2864543165362 23.648015560555 60.2864678044444 23.6480393566264 60.2864727703037 23.6480463234105 60.2864886431891 23.6480631417004 60.2865050368459 23.6480778069707 60.2865179912298 23.648090797353 60.2865328875757 23.6481109376626 60.2865617831725 23.6481537719439 60.2865774819456 23.6481711692902 60.2865947735597 23.6481801133262 60.2866016684741 23.6481798413335 60.2866190614057 23.6481710905737 60.2866376209702 23.6481633425241 60.2866551459162 23.6481697828609 60.2866681328389 23.648186553064 60.28668179298 23.6481919051187 60.2866982680516 23.6482062363806 60.286714476506 23.6482217534233 60.286717791519 23.64822526926 60.2867488159345 23.6482616590952 60.286756266206 23.6482698557054 60.2867725059481 23.6482851885919 60.2867892837814 23.6482979865507 60.2868062905523 23.6483095302099 60.2868162773291 23.6483160370112 60.2868296696361 23.6483228827511 60.2868508417086 23.6483349590471 60.2868789471408 23.6483664351204 60.286895686532 23.648379490511 60.2869132546594 23.6483915559665 60.2869821447434 23.6484320494287 60.2869989140558 23.6484448665142 60.2870126011337 23.6484576916619 60.2870280953855 23.648475888678 60.2870726257952 23.6485367979703 60.2870771294686 23.6485425452329 60.2870927065059 23.6485604623273 60.2871087189443 23.6485767600464 60.2871578442989 23.6486210527781 60.2871619011478 23.6486247642208 60.2872266680764 23.6486870401108 60.2872421454065 23.6487002974868 60.2873095190992 23.6487501426846 60.2873234662392 23.648762235491 60.2873395018978 23.6487783862307 60.2873551133913 23.6487962457418 60.2873702925136 23.6488154890459 60.2873999430985 23.6488562022359 60.2874094768426 23.6488693264477 60.2874396448581 23.6489084662299 60.2874551480145 23.6489266627741 60.2874710937164 23.6489431667934 60.2874876340375 23.64895723866 60.2875022037364 23.6489672948125 60.287536801757 23.6489864859756 60.2875533934225 23.6490001001003 60.2875679914126 23.6490208874407 60.2875699893783 23.6490249184801 60.2875756768483 23.6490384005841 60.2875865277521 23.6490503039221 60.2875975719028 23.6490623865874 60.2905866639898 23.6522712944645 60.2911501582382 23.6539358166449 60.2912272246912 23.6541510192238 60.2914550479854 23.6547872023279 60.2923131205381 23.656097547542 60.2923216908527 23.6561106294057 60.2923354573437 23.6561316345391 60.2923389996458 23.6561370475187 60.292353449131 23.6561591233911 60.2926652843447 23.6566603157875 60.29267920535 23.6566824642252 60.2926907957275 23.6567009223399 60.2926989311851 23.6567138679152 60.2927143465208 23.6567386154651 60.2979615769231 23.6651617100397 60.2982169028923 23.6655716519522 60.2983448042389 23.6657943639856 60.2984578093118 23.6659911098652 60.2985756652362 23.6662282304596 60.3003978869944 23.6693693512372 60.3027093332435 23.6733544695896 60.302779127441 23.6734748043184 60.3030697427766 23.6739554192116 60.3028269133657 23.6742742023778 60.3026127687873 23.6745553293948 60.3025417034531 23.6746486311434 60.3025225273989 23.6746737976428 60.3018156355601 23.6756017728222 60.3016535702004 23.6758145323937 60.3012420009876 23.6763761644599 60.3006709841274 23.6771195868596 60.3004845224264 23.6773651956779 60.2999535984523 23.678086347454 60.2999222397882 23.6781292618425 60.2999183218655 23.6781346576298 60.29859736367 23.6799553610958 60.298552888963 23.6799876890345 60.2977343464069 23.6811131888201 60.2976984237146 23.6811615759725 60.2966322748848 23.6825999115378 60.2964416190896 23.6828592991372 60.2945158157108 23.6853852337277 60.2943127697361 23.6856549859467 60.2938585756945 23.6862277776567 60.2938565706227 23.6862320542954 60.2938496001426 23.6862469362675 60.2938311109051 23.686286376137 60.2936860023343 23.6865958520822 60.2936883178557 23.6897770287854 60.2974071942468 23.6947133307944 60.2974353446478 23.6947506996417 60.297543267581 23.6955446914754 60.2983216797104 23.7012726513494 60.2984301933174 23.7016333467351 60.3030103305683 23.7168242655856 60.3048466066849 23.7210868856415 60.3067271402767 23.7254530466579 60.3075818717313 23.7274381109837 60.307734496025 23.7277925818587 60.3078085777487 23.7278297210682 60.3080860515899 23.7279688104999 60.3081355845839 23.7279936283839 60.3086094624173 23.7282311711673 60.3100327860595 23.7289819066579 60.3109222606565 23.7294358414664 60.3134199961684 23.7307305023747 60.3142590719004 23.7306023262355 60.3143879577593 23.7305908271464 60.3144075482581 23.7305882875764 60.3162340635381 23.7303202729285 60.3162400789008 23.7303200514874 60.3171523455688 23.7302045647205 60.3174506179965 23.7311128190477 60.3178728763253 23.730953339266 60.3180266741534 23.7301424544948 60.3187412227902 23.7300666895659 60.3194400424671 23.7299988363371 60.3195835503611 23.7299844738614 60.3198315658916 23.7299579486365 60.3203743197087 23.7298999124059 60.3207515992484 23.7298586357679 60.3209122344273 23.7298457103145 60.3209286497819 23.7298434149904 60.321050978966 23.72983533818 60.32136256924 23.7298083174105 60.3215985077098 23.7297927641663 60.3216156020514 23.7297906725826 60.321625994734 23.7297893967625 60.3282241233846 23.7289795862767 60.3289928086529 23.7288802556513 60.330374134815 23.7298851262731 60.3368795516034 23.7345598421537 60.3370002206911 23.7346465706736 60.337920336074 23.7353079264883 60.3432708535709 23.7337734624946 60.3433745566861 23.7337749980505 60.3557028825911 23.7339560010256 60.3589045525155 23.7312286839104 60.3596476706425 23.7250078090097 60.3598317252637 23.7234666390269 60.3598365618214 23.72345505112 60.3598483056687 23.7234276582054 60.3598604823762 23.7234010562622 60.3598736426383 23.7233764416813 60.3598782510426 23.7233687224914 60.3598926721705 23.7233471377121 60.3599075588089 23.7233269392689 60.3599140950209 23.7233183189252 60.3599437226726 23.7232774830757 60.3599527035545 23.7232634107455 60.3599665596523 23.7232404132268 60.3599655634926 23.7231741181543 60.3599603685627 23.7228296029925 60.3599581835651 23.7226848416467 60.3599570620076 23.7226112847479 60.3600767756965 23.7226607903488 60.3610139522167 23.7230485155147 60.3619042452918 23.7234540882574 60.3623257400489 23.72358142901 60.3625990180483 23.7236713391349 60.3632624698947 23.7240346902226 60.3633274368647 23.7240702737451 60.3638328259269 23.7243547730519 60.3656731530979 23.7237301185194 60.3661842573005 23.72362586252 60.3671160253632 23.7235667584405 60.3671989269867 23.7235468345373 60.3680723037733 23.7233368356273 60.3681282709964 23.7233233730447 60.368755855125 23.723172447922 60.3687805885619 23.7235255446448 60.3687822887459 23.7235620824644 60.3688750678611 23.7249300366291 60.3699014314857 23.7400783505268 60.3699126119207 23.7403140941518 60.3699152860355 23.7403703883032 60.3699205605535 23.7404011630961 60.3700023602334 23.741663381046 60.3706301853385 23.7432914064793 60.3715543610511 23.7456881205808 60.3738768583671 23.7515658834633 60.3743307289746 23.752354218801 60.3748508241642 23.7533056708063 60.3754643962066 23.7543234546764 60.3757632517406 23.7548052184072 60.3787379065772 23.7599546950263 60.3797016542137 23.7616469144893 60.3801797208486 23.7624182004867 60.3802288168927 23.7624974022109 60.3802765552854 23.7625798974151 60.3810623591867 23.7639385661693 60.3811891510465 23.7641567640622 60.3818148821754 23.7652337099897 60.3818397171335 23.7652764630519 60.3823668510907 23.7661837204717 60.3829528967197 23.7671688485608 60.3847071347944 23.7701266060599 60.3857050404147 23.7718394941276 60.3859617265184 23.7722801166912 60.3876288425155 23.7751090490069 60.3876373524749 23.7751235120021 60.3878670487848 23.775551078847 60.38786264338 23.7755057621754 60.387889381617 23.7755515558716 60.3878490739925 23.775069477637 60.387741952435 23.7738244283874 60.3876681246026 23.7736907409229 60.3876060033773 23.7735751217344 60.3867974797065 23.7720774885178 60.3869475220599 23.7716965954627 60.3868024560166 23.7701118164471 60.3867174375998 23.7691830530369 60.3861270161234 23.7668853215841 60.3874869268223 23.7665439748615 60.3875399715437 23.766530668008 60.3876599670878 23.7665005499454 60.3878955636511 23.7666351081793 60.3885452540938 23.7670820069173 60.3883191030671 23.770101113856 60.3883180742477 23.7701131444039 60.3882492664462 23.7710239374863 60.3882377921892 23.7711701959191 60.3882074691746 23.771528387284 60.388198078254 23.7716364746465 60.3881824524077 23.7718149714082 60.3881806703156 23.7718366991592 60.3881547438989 23.7721954340352 60.3881536706986 23.7722108276992 60.3881287654843 23.7725698420351 60.3881278115906 23.7725849696704 60.388115586074 23.7728010746948 60.3881140442817 23.7728297504282 60.3880288943841 23.7737192180029 60.3880246864646 23.773768020156 60.3880240283133 23.7737757108047 60.3879850541147 23.7743136251798 60.3879845688723 23.7743232595238 60.387974048621 23.7745312416756 60.3879726890381 23.7745496592273 60.3879697458542 23.7745854089926 60.3879620405443 23.7746634249511 60.3879561146313 23.7747232904324 60.3879537976091 23.7747948723194 60.3879534761197 23.7748068143863 60.3879479506605 23.7749513917258 60.3879473866763 23.7749633396336 60.3879402368959 23.7751076419315 60.3879390111352 23.7751334356209 60.3879388004654 23.7751388306029 60.3879289331257 23.7753863998571 60.387928061754 23.7754079099849 60.3879183063506 23.7756245304243 60.387917681016 23.7756380276225 60.387917220887 23.7756483312011 60.3879106117446 23.7757927249144 60.3879099444879 23.7758252535607 60.3879098795185 23.775861499021 60.3879122886508 23.7759701592952 60.3879128374589 23.775990947883 60.3879134371357 23.7760271820475 60.3879133003951 23.7760634346089 60.3879116680718 23.7760995264967 60.3879090558304 23.7761270731621 60.3879037297152 23.7761616604562 60.3878954306057 23.776193709577 60.3878862747335 23.7762130254451 60.3878701982744 23.7762285778401 60.3878524260455 23.7762331140271 60.387834491163 23.7762331636675 60.3878298986264 23.7762327647217 60.3877583406085 23.7762215435173 60.3877404090995 23.7762202493045 60.3877224852603 23.7762214961347 60.3877046813088 23.7762258357282 60.3876871905824 23.7762338299339 60.38767216274 23.7762444490597 60.3876559111214 23.7762598189504 60.3876394265397 23.7762741043777 60.3876269949405 23.7762824694846 60.3876092269132 23.7762875498579 60.3875916549941 23.7762947895009 60.3875819695405 23.776302265606 60.3875740642371 23.776330172235 60.3875669266574 23.7763634314306 60.3875619618587 23.7763951321375 60.3875583200047 23.7764306235694 60.3875577014746 23.7764429216528 60.3875597901318 23.7764779369368 60.3875629908868 23.7765136047433 60.3875670628953 23.7765511108624 60.3875375486433 23.7766833167353 60.3875333980931 23.7767011567049 60.3875183898297 23.7767652418682 60.3875180475542 23.776766691863 60.387511102508 23.7768001134088 60.387505128321 23.776834292217 60.387503695475 23.7768437659256 60.3875035379425 23.7768450523997 60.3874993172796 23.7768789124935 60.387489108713 23.7769856967166 60.3874851306243 23.7770210396942 60.3874839900189 23.7770295948583 60.3874785095117 23.7770641241842 60.3874728188566 23.7770959146366 60.3874662957542 23.7771322899947 60.3874633725932 23.7771496090424 60.387458348619 23.7771844381254 60.3874543158121 23.7772197501425 60.3874511814551 23.7772554271781 60.3874500734378 23.7772720038576 60.387445876613 23.7773072231419 60.3874413789338 23.7773374430836 60.3874403863792 23.7773439501594 60.3874344573125 23.777378142477 60.3874275035853 23.7774115828098 60.3874195579223 23.7774433964529 60.3874091927085 23.7774728894384 60.387407280063 23.7774766552352 60.387402176979 23.777486709728 60.3873855529675 23.7774982122492 60.3873656191142 23.7774973513903 60.3873476872345 23.7774967827411 60.3873418047471 23.7774972918798 60.3873297688928 23.7774986274334 60.3873152608952 23.7775014057348 60.3872603155176 23.7775171519416 60.3872523260533 23.7775167438088 60.3872376572593 23.7775184486703 60.3872198843514 23.7775233290715 60.3872058060196 23.7775290060368 60.3871711412206 23.7775476847615 60.3871607696885 23.7775539210497 60.3871436744372 23.7775648890776 60.3871268731933 23.7775776072448 60.3871127615577 23.7775904406772 60.3870970174267 23.7776078472922 60.3870879818459 23.7776195251241 60.3870735210717 23.7776409442165 60.3870598471614 23.7776644278056 60.3870334595922 23.7777135693799 60.3869873942599 23.7778276919419 60.3864938408883 23.7790625452361 60.3862096329036 23.7797565937187 60.385982829844 23.7802533895981 60.3857473573905 23.7808977419701 60.3855477601369 23.7814391095606 60.3859374490103 23.7849756721218 60.3861069829073 23.7866570302174 60.3862804447695 23.7870273851145 60.3869619207955 23.7884416174129 60.386983551778 23.7884301537141 60.3875723858874 23.7881139094867 60.3876612894702 23.7880713404192 60.3877939820449 23.7898363515079 60.3878252175236 23.790487277013 60.3890510428827 23.7900094116604 60.3894277940876 23.7898782249142 60.3898138311906 23.7897438322903 60.3917815984268 23.7890269874532 60.391799275151 23.789020342603 60.3925600643796 23.7887244973428 60.3950762207677 23.7878683909523 60.3952101605662 23.7878220415869 60.4008519367102 23.7857844718402 60.4024575779934 23.7852296563283 60.4048265586917 23.7844012243211 60.4057759983955 23.7847370601815 60.4060092574602 23.7848234025426 60.4089651963259 23.7858652847371 60.4107831143295 23.7865085201671 60.4108929032469 23.7865475369171 60.4120951181128 23.786915737807 60.4122745057436 23.7869853889962 60.4147125316592 23.7878284027137 60.4168881031782 23.7886262179133 60.4175670543183 23.788877290891 60.4177687455592 23.788951868339 60.4186191686147 23.7892705037924 60.4190394136782 23.7894057383725 60.4194052054794 23.7895306103145 60.4196706982521 23.7896212909928 60.4202193862765 23.7898086340446 60.4207592310323 23.7899929662202 60.4212990576139 23.790177306003 60.4217857891708 23.7903435163415 60.422670767014 23.7906457477733 60.4235557347968 23.7909479776515 60.4240582951421 23.7911960760062 60.4244268076918 23.7913780080808 60.4277594764142 23.7930606917992 60.4279184779762 23.7933007635875 60.4282010768695 23.7934903354258 60.4284406728624 23.7937606614423 60.4285327779074 23.7938789226626 60.4286605904662 23.7939295501102 60.4289183868109 23.7940970893173 60.4290471917362 23.7943411863778 60.4292103087797 23.7947007930151 60.4292933114855 23.7949086869668 60.4293404371463 23.795171617177 60.4293203445782 23.7953093557853 60.4293272759447 23.7953311418866 60.4293889397003 23.7955249974584 60.4294851047824 23.7957302527575 60.4296340702618 23.7961042626819 60.4297109118581 23.7962862464128 60.4297231197267 23.7962438868475 60.4298013067115 23.7959724629588 60.4298329361384 23.7958626546403 60.4300565450665 23.7950654136574 60.4300566281639 23.7950651327822 60.4303345349677 23.7940742457108 60.4307781485516 23.7924942007118 60.4308080645087 23.7923876086369 60.4312205270359 23.7922045126077 60.4320092487688 23.791862620712 60.4325139398459 23.7916399060635 60.4328777083158 23.7914788656291 60.4332284056338 23.791329528706 60.4348087690006 23.7906608059803 60.4392384363499 23.7887082644087 60.4427045086064 23.7872132603141 60.4440856230569 23.7866623227866 60.4441737947989 23.7866251628436 60.4450019428213 23.7862749983308 60.450186017166 23.7841403962769 60.4501845814912 23.7827087235998 60.450178568307 23.7812262241316 60.4501736082915 23.7793003880392 60.4501599579348 23.769663913448 60.450094310214 23.7378763471534 60.4500956199792 23.7355276023785 60.4500422237288 23.7242435965798 60.4500166160361 23.7116403152866 60.4500038843234 23.70970546737 60.4499978287919 23.7087864821234 60.449977563839 23.7057184332396 60.4499761613582 23.7050046087351 60.4499743847644 23.7044849945001 60.4499207560184 23.6996186760023 60.4499011768304 23.6922302316541 60.4501879245559 23.6925132837442 60.4501879245559 23.6925132837442 60.4503125274477 23.6925906504741 60.4503636763686 23.6926246113667 60.4503972071652 23.6926504145583 60.4504135000315 23.6926656382025 60.4504291953247 23.6926832148081 60.4504441935419 23.6927031181204 60.4504541960493 23.6927183452523 60.4504677878981 23.6927420482176 60.4504804589779 23.692767755018 60.4504922455446 23.6927951163241 60.450514439444 23.692852198721 60.4505198277433 23.6928668949424 60.4506010718002 23.6931064155374 60.4506071759347 23.693125332223 60.4506835834946 23.6933713130359 60.4506866145796 23.6933815558019 60.45074855766 23.6936027223729 60.4507525004707 23.6936174749225 60.4507853086496 23.6937466637371 60.4507997913109 23.6938131364477 60.4508036912691 23.6938330416641 60.4508155562644 23.6939015817277 60.4508299257525 23.694006578002 60.450838106803 23.6940773121049 60.4508392020809 23.6940874062587 60.450859352055 23.694301474605 60.4508646708168 23.6943760109877 60.4508755970034 23.6945562715274 60.4508815889053 23.6946278834072 60.4508853368707 23.694663394569 60.4508879322282 23.6946850516857 60.450892754429 23.6947200351929 60.4508983290787 23.6947545601547 60.4509047072578 23.6947885122275 60.4509119830645 23.6948216999255 60.4509187234229 23.694848520393 60.4509276904827 23.694879971621 60.4509375035984 23.6949103908482 60.4509481067369 23.6949396928154 60.4509593148133 23.6949680236894 60.4509710247668 23.6949955758699 60.4509831465103 23.6950223403272 60.4509855942371 23.6950275489473 60.4510240426034 23.6951037921247 60.4511066369685 23.6952515882459 60.4511978354624 23.6954263620351 60.4512104200008 23.6954522247507 60.4512129784276 23.6954575495251 60.4512497739984 23.6955370907978 60.4512730632669 23.6955923730693 60.4512831796012 23.6956183595291 60.4512938865507 23.6956475059334 60.4513041166974 23.6956773557488 60.4513138597264 23.6957078554472 60.451323027801 23.6957390867269 60.4513319733679 23.6957725782645 60.4513398812659 23.6958051747635 60.4513472011925 23.6958383404353 60.4513539223829 23.695872003605 60.4513657693163 23.6959405837158 60.4513809788673 23.6960450969201 60.4513833414521 23.696063176103 60.4514189634437 23.6963446604094 60.4514297139387 23.6964139708019 60.4514326473744 23.6964311551703 60.4514738550206 23.6966324457482 60.4514804904974 23.6966626614153 60.4515085996391 23.6967963540593 60.4515150566291 23.6968302445441 60.4515192330041 23.6968533424339 60.451536026101 23.6969568769113 60.4515635013363 23.6971675689489 60.4515651233207 23.6971807935069 60.4548319292699 23.7016362012502 60.4553684393083 23.7023472246632 60.4556058095542 23.7026709005243 60.4567618469985 23.7042327952338 60.4594023101205 23.7078423713784 60.459546142128 23.7080375468865 60.459558880539 23.7080548347182 60.4599595439443 23.7085985860948 60.4599888791915 23.7086383945087 60.4641596226214 23.7142994631278 60.4646778134601 23.7149608386991 60.4646879664442 23.7149728061484 60.4647658515679 23.7150727237374 60.4647839103039 23.7150959032831 60.4648384840211 23.7151658932538 60.4651335013243 23.7149541341069 60.4711163734908 23.7106585913254 60.4721396898073 23.709909521156 60.4723574711241 23.7097657627138 60.4728342088054 23.7094305961273 60.473612335104 23.7106636155267 60.4739647639027 23.7112263494198 60.4740341958698 23.7113372093958 60.4753059800743 23.7133680612418 60.4761070465369 23.7146671416829 60.4762556502734 23.714907658502 60.4779676240814 23.7176438914357 60.4798633031555 23.72067039475 60.4801316042017 23.7211020925142 60.4850757800263 23.7290031734237 60.4855342764543 23.729737624849 60.4872282692915 23.7324507715078 60.4896635405648 23.7363496302433 60.4903689787466 23.7374873053951 60.4903689787466 23.7374873053951 60.4907116276297 23.7445342547052 60.4908365819828 23.7469769787135 60.4910985315894 23.7521807019959 60.4911728784364 23.7535554157427 60.4916650844829 23.7636735554291 60.49182858227 23.7668159136104 60.4919523900337 23.769367340668 60.4922308174077 23.7749854473091 60.4922424186854 23.7752194761025 60.4922896898426 23.7761105721086 60.4926806119412 23.7840360721819 60.4928224871751 23.7868676885586 60.4931313340388 23.7932002914542 60.4931377611043 23.793293023993 60.4934603030902 23.7999877061744 60.4935712143166 23.8021337724814 60.4935699886491 23.8022718515134 60.4937211442419 23.8052092781356 60.4940000618386 23.8106673209514 60.494235838674 23.8148339730519 60.4942937367246 23.8158576183788 60.4944747980903 23.819687145683 60.4945567404348 23.8213943742611 60.4946355870768 23.8230254096398 60.4940205770165 23.8257017461744 60.4940164165785 23.8257198579631 60.4940119708732 23.8257376880063 60.4940108712712 23.8257420760542 60.4939687458815 23.8259258492904 60.4939631781442 23.8259501459829 60.4939600851953 23.8259636542377 60.4939554468509 23.825983962046 60.4932936369215 23.8288775542645 60.4930517650362 23.8299193846352 60.4926643675019 23.8316003145553 60.4921790671337 23.8337109284461 60.4916883969549 23.8358446395672 60.4916471539276 23.8360229993838 60.4913688299958 23.8372266725704 60.4913518821033 23.8373061675142 60.4913373529976 23.8373743712437 60.491319483027 23.8374581813429 60.4912811575874 23.8376278016937 60.4979866179292 23.8524512377545 60.500628768062 23.858167520319 60.5016074814883 23.8602850505471 60.5049794186216 23.8675145804734 60.5050005109421 23.8675541224176 60.5051325528391 23.8677599247113 60.5055028403241 23.8683370358336 60.5079343182318 23.87184985718 60.508050144987 23.8717872057036 60.510596590311 23.8704098902901 60.511033083697 23.8701738917058 60.5133885956211 23.8689130807758 60.5144272706764 23.8683676312198 60.5145679647978 23.8682937484955 60.5150977542155 23.8680050615144 60.5167094166385 23.8671472132667 60.5168547441456 23.8670774286639 60.5177607191006 23.866587594387 60.518447815146 23.8662151757061 60.5214949355952 23.8645765760904 60.5229124148739 23.8626553622866 60.5239515628381 23.8612776208113 60.523068760083 23.8607333071659 60.5230588831648 23.8607278831978 60.5230687453119 23.8607223701375 60.5240678785657 23.8601881720687 60.524199565522 23.8601177282987 60.5242031200252 23.8589675285648 60.5249874440745 23.8588876175451 60.5249892409398 23.8588876074494 60.5252495112138 23.85888285199 60.5257018385118 23.8580340854033 60.5260720297982 23.8564315806825 60.527530433023 23.8565188567147 60.5284965968805 23.8552085890989 60.5288280748011 23.8537303250527 60.5294900984067 23.8522239436479 60.5305981277795 23.8515516147912 60.5321558041109 23.8548146120346 60.5327505525324 23.8537427467261 60.5338043377729 23.8571661239503 60.5341762715724 23.8583575721957 60.5344377113101 23.859454841317 60.5346071557648 23.8601426811255 60.5358986417432 23.8653743226243 60.5378306998359 23.8647551522852 60.5387436515286 23.8644606995311 60.5416712220074 23.8609356686578 60.5417043797804 23.8608917945883 60.5423506439146 23.8601092013206 60.5435005408646 23.8587096424406 60.5440695826335 23.8580328364677 60.5440734180076 23.8580281955141 60.5455012504582 23.8562928216667 60.5466644664168 23.8548788835116 60.5495829758847 23.8513412694875 60.5499402099504 23.8509290121009 60.5499621221212 23.8509037262584 60.5499817515586 23.8508810891738 60.5500419519456 23.8508116634052 60.5500788644433 23.8507690074884 60.550967864125 23.849680687725 60.551844107588 23.8486366118941 60.5526412159799 23.8476621178382 60.5532827372284 23.8468722743965 60.5540264100329 23.8459949254709 60.5546130325838 23.8455618528314 60.5546299012635 23.8455494237208 60.5564234612999 23.8444924996852 60.5571836154298 23.8600450696956 60.5573352009688 23.8624496820813 60.5573369614859 23.8624859750115 60.5573757517209 23.8633573966528 60.5574376843081 23.8647487858442 60.5580937074762 23.8786966637837 60.5581009886843 23.8788512901593 60.5582739479285 23.8825295526915 60.5583499376544 23.8842069122853 60.5583557163236 23.8842716377066 60.5584765479864 23.8868466645979 60.5584815657289 23.8869535677333 60.5585093480154 23.8875096340878 60.5588377628605 23.88752929357 60.5588650489924 23.8875318887749 60.5612733648658 23.8877599962842 60.561323034765 23.8877661151936 60.5621933877102 23.887873482533 60.563887102571 23.8880790986289 60.5679692219983 23.8885069028554 60.5682585013263 23.8885372039414 60.570877936051 23.8888149209593 60.5719633965513 23.8889520408192 60.5730072615349 23.8890651610909 60.5738420883049 23.8891098751477 60.5739650774569 23.8890912700939 60.5741043185748 23.8890702433181 60.5742036749701 23.8891522561591 60.5744801647383 23.8894867954982 60.5785555835953 23.8956495148442 60.5807101084645 23.8989111050613 60.5835729785275 23.9032157426163 60.5850862664707 23.9055346559118 60.5868691068553 23.9082698576243 60.5879294654375 23.908943202283 60.5880503408472 23.9090199632413 60.5880704584246 23.9090327625418 60.5904228731773 23.910527885165 60.5960955213373 23.9141348465898 60.5961606815046 23.9141822868942 60.5990808505702 23.9160397219082 60.5994713956355 23.9162668565243 60.5999795753227 23.9165995555437 60.6001489690809 23.9167088006056 60.6011489665381 23.9173412587548 60.6013362129273 23.9174649076519 60.60180667556 23.9177667215024 60.6018731150617 23.917808536054 60.6022906063721 23.9180790645504 60.6023358855381 23.9181084071001 60.6060873212897 23.9205491095099 60.6086775362297 23.9097499717632 60.6087549293208 23.9094272217962 60.6094975682144 23.9061496588179 60.6096604158792 23.9054626968041 60.6098608434091 23.9046130950588 60.6113467676495 23.8981432045035 60.6113745007978 23.8980226142848 60.6114590407535 23.8976551380427 60.6115081477157 23.8975712477131 60.6128458559634 23.8916922139596 60.6136108767076 23.8883293350706 60.6157588788166 23.8789510538514 60.6165041960818 23.8758164413299 60.6179871695607 23.869279881434 60.6186397700336 23.866405465879 60.6221693875725 23.8701816738519 60.6225431277956 23.8705801829057 60.6236607496672 23.8717812335127 60.6252261314879 23.8734627208495 60.6256746245541 23.8739448654342 60.6263352896638 23.8746769667928 60.6271249504496 23.8755196946525 60.6335899376465 23.8824573817419 60.6339586853841 23.882853192655 60.6352765563262 23.8843138546581 60.635975937188 23.8850899106306 60.6363877938243 23.8855469472239 60.6390808022135 23.8885307513132 60.6390836518711 23.8885338977762 60.6394252294822 23.8889043785124 60.6395958025672 23.8890842268395 60.6398136214525 23.8893274916576 60.6398633282671 23.8893831309521 60.6418486001299 23.8916189186952 60.6429723495849 23.892856256339 60.6431353886353 23.8930361749708 60.6431722476162 23.8930768509177 60.6432481142322 23.8931605761537 60.6457938134423 23.8960339545507 60.6458367036641 23.8960825110801 60.6460165878532 23.8962861669642 60.6469777266595 23.897374323046 60.6477573894715 23.8982346209462 60.647834727653 23.8983199667174 60.649756842528 23.9005068090882 60.649756842528 23.9005068090882 60.6508741670941 23.9053416863137 60.6519571321737 23.9098797873577 60.6521030325189 23.9104912614262 60.6538412744064 23.9177774487029 60.6538446698632 23.9178035369952 60.6538463308121 23.9178397486259 60.6538433056186 23.9178656088501 60.6538369225601 23.9178997707599 60.6538326347563 23.9179250378297 60.6538243743545 23.9179572742318 60.6538125364136 23.9179730677386 60.6537967827366 23.9179904986117 60.6537865376271 23.9180138092449 60.6537804687392 23.9180479593288 60.6537798268693 23.9180676793666 60.6537792122222 23.9181041817155 60.6537762469833 23.9181267962893 60.6537679254574 23.9181591116402 60.6537584613734 23.9181855141439 60.6537472223313 23.9182140448689 60.6537360006317 23.9182417685335 60.6537240123703 23.9182689797317 60.6536957968932 23.9183188102916 60.6536681987072 23.9183724256094 60.6536405987862 23.9184247963218 60.6536279232387 23.9184467465853 60.653612997607 23.9184669716999 60.6536019692863 23.9184769583439 60.6535847787997 23.9184874059273 60.653574208567 23.9184923151532 60.6535565608873 23.9184989076658 60.6535455322586 23.9185022499494 60.6535277064744 23.9185065714743 60.6535148766151 23.9185089510913 60.6534969869123 23.9185116679664 60.6534841704864 23.9185134605669 60.6534662562518 23.9185155025343 60.6534534571763 23.9185164880978 60.6534355320033 23.9185180552037 60.6534313118305 23.9185185684501 60.6534134386652 23.9185216132016 60.6533778270323 23.9185308197892 60.653368566397 23.9185336818668 60.653350861687 23.9185397489493 60.6533391022614 23.9185441311613 60.6533213925024 23.9185499790679 60.6533122978425 23.9185518551622 60.6532944284623 23.9185550642551 60.653283886748 23.9185577010049 60.6532662050156 23.9185639855067 60.6532548106742 23.9185693944221 60.6532379908917 23.9185818930402 60.6532226800148 23.9186025573508 60.6532097586673 23.91862788035 60.6531983246522 23.9186557518185 60.6531878023421 23.9186853665007 60.6531801060898 23.9187089453279 60.6531708814101 23.9187402846246 60.6531635920628 23.9187686567358 60.6531558238637 23.9188015956429 60.6531502530976 23.9188253922439 60.6531424025132 23.9188582657821 60.6531257069771 23.9189229730159 60.6531181638536 23.9189493009721 60.6531087731125 23.9189804546658 60.6531009065141 23.9190063925241 60.6530918388021 23.9190379179923 60.6530858414402 23.9190619200081 60.6530786702194 23.9190954240314 60.6530601681743 23.9192026402134 60.6530587977356 23.9192102391141 60.6530553150786 23.9192310721421 60.6530498360608 23.9192658786695 60.6530461084516 23.9192901212855 60.6530414672729 23.9193254151375 60.6530396345611 23.9193488360204 60.6530380919167 23.9193852431301 60.6530374473227 23.9194048531116 60.6530360408263 23.9194413204193 60.6530350183443 23.9194648102923 60.6530351755954 23.9195012928927 60.6530370113541 23.9195146805252 60.653043872011 23.9195484542269 60.6530515683908 23.9195814525394 60.6530553880198 23.9196033448806 60.6530607908122 23.9196381914196 60.653063552975 23.9196539615499 60.6530706155958 23.9196875329703 60.6530873611954 23.9197521924097 60.6530939402065 23.9197756881081 60.6531220511067 23.9198691883307 60.6531302818672 23.9198949606543 60.6531394075638 23.9199264314749 60.6531443011681 23.9199485324606 60.6531498712708 23.9199832350347 60.6531520541892 23.9200023369581 60.6531547190837 23.9200384702672 60.6531554336361 23.9200581883901 60.6531557896472 23.920094725344 60.653155566233 23.9201181938421 60.6531543119548 23.9201546466967 60.6531528040615 23.9201754008264 60.6531478609045 23.9202104672511 60.6531403330968 23.9202386421259 60.6531307099291 23.9202694698798 60.6530925015788 23.9204347972555 60.6530720226469 23.92053619787 60.6530662423847 23.9205708133041 60.6530612372058 23.9206059220989 60.6530570319041 23.9206414303698 60.6530536170933 23.920677320712 60.6530509987959 23.9207134644267 60.6530503578609 23.9207246543148 60.6530488869855 23.9207610727946 60.6530483356162 23.9207976230824 60.6530479725106 23.9208341553853 60.6530477061734 23.9208483479052 60.653045765811 23.9209213637445 60.6530449433339 23.9209578483998 60.653044445283 23.9209943752799 60.6530441026308 23.9210165738091 60.6530436460711 23.921036165786 60.6530426711507 23.9210726649943 60.6530423984636 23.9210830692458 60.6530403495473 23.9211560588111 60.6530390591235 23.9211925149285 60.6530381479677 23.9212130471979 60.6530363345922 23.9212494251293 60.6530348650646 23.9212734152129 60.6530323644169 23.9213096025225 60.653030516364 23.921331981417 60.6530277531816 23.921368083967 60.6530266283751 23.9213902656563 60.653025031382 23.9214266778077 60.6530242588679 23.9214450369819 60.6530242362709 23.92148153672 60.6530266981698 23.9215030097992 60.6530315778147 23.9215381811088 60.6530327844006 23.9215566441425 60.653032663574 23.9215931715726 60.6530323639501 23.9216035783861 60.65302991817 23.9216765142567 60.653029059625 23.9217130023056 60.6530289414092 23.9217351976806 60.6530282092046 23.9217717102688 60.6530265005985 23.9217942954575 60.6530229855971 23.9218301402792 60.6530207305114 23.9218516245103 60.6530146623132 23.9218858461401 60.6530012144524 23.9219156473826 60.6529869437348 23.9219378030194 60.6529848672575 23.9219412776513 60.6529579935116 23.9219897309805 60.6529448992147 23.9220099072524 60.6529304271802 23.9220315146163 60.6529187167782 23.9220485752235 60.6529023911509 23.9220630380847 60.6528902070149 23.922061071526 60.6528746505833 23.9220792863785 60.6528587288115 23.9220960718078 60.6528478512213 23.9221052005931 60.6528306706599 23.9221156999287 60.6528130309095 23.9221222529164 60.6527961858657 23.9221258563589 60.6527782602139 23.9221274031532 60.6527603264425 23.9221266444741 60.6527434001651 23.9221235931766 60.6527256684071 23.9221179464739 60.65270814538 23.9221100468187 60.652690882634 23.9221001821486 60.6526568129819 23.9220772245088 60.6526512748847 23.9220731774164 60.6525677436631 23.9220065481708 60.6525625297202 23.9220021406883 60.6524957995004 23.9219483489547 60.6524788157936 23.921936554236 60.6524737742914 23.9219333932447 60.652456455499 23.9219238269418 60.6524389478705 23.9219158161624 60.6524212949726 23.9219093018342 60.6524035301457 23.9219041709511 60.6523856884111 23.9219003835603 60.6523771665043 23.9218990374782 60.6523592510837 23.9218971240674 60.6523233635055 23.921896688779 60.6523054286107 23.9218978338804 60.6522929320809 23.9218990820134 60.6522571672114 23.9219051509658 60.652239389348 23.9219099966251 60.6522217652954 23.9219168409489 60.6522044455036 23.9219263650914 60.6521940886198 23.9219335221855 60.6521775185544 23.9219475139221 60.6521615575719 23.9219641563621 60.6521462446153 23.9219831895395 60.6521314940928 23.922004017619 60.6521172229342 23.9220261543449 60.6521033723037 23.9220493856959 60.6520975258513 23.9220596628916 60.6520842075336 23.922084161217 60.6520712202294 23.9221093783468 60.6520585537124 23.9221352603478 60.6520461700195 23.922161719329 60.652042527236 23.922169754442 60.6520072617873 23.9222525935366 60.6519964953448 23.922279831486 60.651974237773 23.9223371768881 60.651962266585 23.9223643833704 60.6519492037214 23.9223894427726 60.6519448533594 23.9223967949589 60.6519302362689 23.922417957732 60.6519145122435 23.9224355289416 60.651897931056 23.9224494298373 60.6518806972317 23.9224595676865 60.6518774688336 23.9224610106749 60.6518597525801 23.9224665822024 60.6518418409278 23.9224683470459 60.6518239271926 23.9224665063929 60.6518061700891 23.9224613196427 60.6517909913934 23.922454166269 60.6517739379651 23.9224428540668 60.6517072156235 23.9223890070378 60.6516910084375 23.9223785475592 60.651673473796 23.9223709236525 60.6516555945242 23.9223682378361 60.6516393382355 23.9223739994466 60.6516234301475 23.9223905997304 60.6516100055821 23.9224147782396 60.6515983718362 23.9224425927675 60.6515888137429 23.9224657249203 60.6515259413146 23.9225987486698 60.6514541350491 23.9227621287788 60.6514421262274 23.9227892650337 60.651432776119 23.9228097232097 60.651420288205 23.9228359534138 60.6514074995286 23.9228616083136 60.6513944549173 23.9228866836305 60.6513811368607 23.9229111993386 60.6513537871574 23.9229585051348 60.651345205725 23.9229725387866 60.6513021729242 23.9230384177858 60.6512727282622 23.9230801945606 60.6512578615729 23.9231006665837 60.6512441477958 23.9231193080995 60.6511844972088 23.9232006277881 60.6511722802364 23.9232179366924 60.6510872084977 23.9233522887499 60.6510824741019 23.923360134817 60.651026709735 23.9234522107153 60.6510240758088 23.923456452029 60.6509096779021 23.9236330614489 60.6508960725846 23.9236536871471 60.6508240563869 23.9237626684903 60.6508095456677 23.9237841674741 60.6508062600477 23.9237889833832 60.6507469271508 23.9238712403893 60.6507163398828 23.9239094458972 60.6506995894979 23.9239288889451 60.6506678378968 23.9239629592901 60.6506517589837 23.9239791719092 60.6506030555023 23.9240258775511 60.6505940329201 23.9240344070727 60.6505450293795 23.9240797868042 60.650528429657 23.9240936696966 60.6505116262682 23.9241065104754 60.6504963312128 23.9241169561572 60.650444633519 23.9241475482414 60.6504276742267 23.924159470419 60.6504111742275 23.9241737829558 60.6504019902357 23.9241834991224 60.65038685176 23.9242030991831 60.6503727802504 23.9242257271027 60.6503595945917 23.9242505399568 60.6503471247339 23.9242767852774 60.6503447315651 23.9242821198934 60.6503329664414 23.9243097072215 60.6503217435621 23.9243382128119 60.6503110894029 23.9243676158371 60.6503010027036 23.9243978615115 60.650294226509 23.9244196835103 60.6502851212057 23.9244511898861 60.6502766611106 23.9244834033818 60.6502688458035 23.924516305737 60.6502617282366 23.9245498552974 60.6502553890985 23.9245840443678 60.6502499995717 23.9246188932249 60.6502456484707 23.9246543567953 60.6502424131249 23.924690281289 60.6502414886819 23.9247040045295 60.6502398092339 23.9247403845676 60.6502391752252 23.9247769028073 60.6502396199987 23.9248134462592 60.6502411397758 23.9248498505684 60.6502437234922 23.9248860252836 60.6502541213673 23.9249936015354 60.650266564837 23.9251002689664 60.6502685508246 23.9251166978589 60.6502806474829 23.9252235265699 60.650284264794 23.925259328245 60.6502875968804 23.9252952303382 60.6502904925886 23.9253313021702 60.650292799086 23.925367540013 60.6502945249183 23.9254039247475 60.6502955793872 23.9254376830999 60.6502961226006 23.9254742172252 60.6502960817907 23.9255107521398 60.6502954569573 23.9255472878415 60.6502927114409 23.9256201724463 60.6502862098437 23.9257290128106 60.6502837894937 23.92576522555 60.6502821764156 23.9257884766239 60.6502711016219 23.9259329113033 60.650267757927 23.9259688277036 60.6502640693385 23.9260045939601 60.6502599082418 23.9260401307289 60.6502551931086 23.9260754091779 60.6502496758057 23.9261117524117 60.6502437839665 23.9261462645301 60.650237197315 23.9261802572145 60.6502298868569 23.926213641717 60.6502218133738 23.9262462753584 60.6502128087739 23.9262778813299 60.6502027860744 23.9263081933916 60.650191749206 23.9263369915426 60.6501890737879 23.9263433411937 60.6501769046742 23.9263701791341 60.6501677404982 23.9264014891034 60.6501621678291 23.9264362085741 60.6501583620438 23.9264668795582 60.6500811246121 23.926876264249 60.6500752112217 23.9269086733602 60.6500084550026 23.9272870234318 60.6500063684985 23.9272990636442 60.6500029363625 23.9273205843909 60.6499860182672 23.9274246692658 60.6499845311718 23.9274334678001 60.649972144587 23.9275020908349 60.6499651082118 23.9275356865443 60.6499571265731 23.9275684206221 60.6499521268489 23.9275866316333 60.6499425296817 23.9276174881295 60.6499318470557 23.9276468557827 60.6499200530715 23.9276743893238 60.6499075075024 23.9276993223925 60.6498529764564 23.9277943626546 60.6498468061612 23.927806206263 60.6498336377549 23.9278310155533 60.6497666516943 23.927952590151 60.6497603639946 23.9279644082794 60.6497094014606 23.9280673434132 60.6496970916393 23.9280939374574 60.6496851366571 23.9281203329558 60.6496125637238 23.9282822997726 60.6495998015502 23.928308369396 60.6495066205741 23.9284826390788 60.6494939527871 23.928508516525 60.649481642456 23.9285350919616 60.6494696981264 23.928562346273 60.649458119798 23.9285902794593 60.649436222941 23.928648185346 60.6494269148574 23.9286752067412 60.6494170131858 23.928705725365 60.6493982727173 23.9287680522256 60.6493892487403 23.9287996218816 60.6493713402771 23.9288629674702 60.6493640546368 23.9288884600829 60.6493548185551 23.9289197936518 60.6493277289802 23.9290145222839 60.6493195263499 23.9290470384493 60.6493112943639 23.9290833641107 60.6493045507675 23.9291172053918 60.6493020730649 23.9291302158488 60.6492825672561 23.9292324025966 60.6492765131986 23.9292598824226 60.6492685123598 23.9292925805669 60.6492594707452 23.929324169921 60.6492491866655 23.9293540840445 60.6492368087926 23.9293804640588 60.6492215085985 23.9294020528641 60.6492049658628 23.9294160916739 60.6491708495322 23.929438795295 60.6491631174302 23.9294456260616 60.6491479086925 23.9294649366977 60.6491347570612 23.929489706543 60.6491238410733 23.9295187106991 60.6491138359736 23.9295490372958 60.6490956958848 23.9296120928333 60.6490935119194 23.9296198958962 60.649075066714 23.9296825777772 60.6490552330633 23.9297434884601 60.6490446617359 23.9297730269757 60.6490340099467 23.9298010175178 60.6490224778571 23.9298290186622 60.6490102141796 23.9298556802472 60.6489968359855 23.9298799772587 60.6489801152244 23.9299019205435 60.6489636026826 23.9299161025198 60.6489461904339 23.9299247516508 60.6489283301068 23.9299279713504 60.648910389562 23.9299280874655 60.6488745476479 23.9299245459025 60.6488621834534 23.9299225571214 60.6487726770843 23.9299101617459 60.6487520975681 23.929908827143 60.6486803381572 23.9299098037974 60.648624065393 23.9299157111832 60.6485525859597 23.9299288862755 60.6484993013121 23.929944409941 60.6484960123264 23.9299455649649 60.6484080801636 23.9299817919149 60.6484016740482 23.9299845431089 60.6483139128177 23.9300223457452 60.6482965494134 23.9300315573117 60.6482904922037 23.9300350256025 60.6482733216107 23.9300455913659 60.6482394968469 23.9300700410538 60.6482064763271 23.9300986050174 60.6481902781517 23.9301143487837 60.6481826762289 23.9301221550235 60.6481511885149 23.9301572161505 60.648120667583 23.9301956440182 60.648091066253 23.9302369489903 60.6480766115998 23.9302585841992 60.6480670069779 23.930273480453 60.648039159877 23.9303195777826 60.6480125572235 23.9303686127834 60.6479998707052 23.9303944717295 60.6479877011703 23.93042132458 60.6479760375575 23.9304490808841 60.6479738195087 23.9304546175652 60.6479408566952 23.930541298521 60.6479291367496 23.9305689502977 60.6479160808423 23.9305939841254 60.647901519966 23.9306152997499 60.6478884886326 23.9306288749574 60.6478714197954 23.9306399612965 60.6478536967034 23.9306456380011 60.6478358324157 23.9306490771576 60.6478268150559 23.9306504113821 60.6478268150559 23.9306504113821 60.6478210974092 23.9306494916197 60.6478033572597 23.9306442444427 60.6477859705183 23.9306352119964 60.6477691154901 23.9306227250247 60.6477528654087 23.9306072340766 60.6477373422718 23.93058896545 60.6477312234882 23.9305807453413 60.6477170015822 23.9305584914377 60.6476626903274 23.9304615445037 60.6476059949824 23.9303719071721 60.6475975261852 23.9303583841017 60.647583422217 23.9303357897466 60.6475689711945 23.9303141251777 60.6475535339023 23.9302956839137 60.6475368532553 23.93028962238 60.6475200378292 23.9303011787614 60.6475065998822 23.9303252239224 60.6474949648586 23.9303530503232 60.6474829694811 23.9303859253397 60.6474724078013 23.9304154978611 60.6474611550106 23.9304439283258 60.6474476164868 23.9304675071439 60.647434679134 23.9304730393727 60.6474179425729 23.9304610171488 60.6474039770416 23.9304381900892 60.6474009816053 23.9304317772978 60.6473900916172 23.9304028013335 60.647382117733 23.9303701255921 60.6473773655388 23.9303349288018 60.6473739182718 23.9302990404742 60.6473711046116 23.9302629637281 60.6473694818522 23.9302392361865 60.647366632314 23.9302031628654 60.6473626871351 23.9301675049708 60.6473566952257 23.9301331033753 60.6473469991376 23.9300993838748 60.6473352439622 23.930071862971 60.6473211078575 23.9300494366818 60.6473045199748 23.9300360646325 60.6473009415598 23.9300351792153 60.6472834124724 23.9300414781854 60.6472679956615 23.9300599470756 60.6472411371949 23.9301084015489 60.6472346833042 23.9301200328224 60.6472205830188 23.9301426219774 60.6472056273851 23.9301627854041 60.6471898042504 23.9301799935523 60.6471731813137 23.9301936726705 60.6471558145394 23.9302027377177 60.6471379728036 23.9302063761902 60.6471223758392 23.9302048598697 60.6471047991328 23.9301977308509 60.6470875440463 23.9301842576325 60.6470723295278 23.9301649536772 60.647058149869 23.930142586575 60.6470305538484 23.9300958765328 60.6470158082761 23.9300750822868 60.6470066467908 23.9300650476248 60.6469897313041 23.930053061099 60.6469720146763 23.9300476657291 60.6469541291935 23.9300497895143 60.64695048913 23.9300513072966 60.6469335966408 23.9300634199262 60.6469184829009 23.9300829577545 60.6469055025745 23.930108148493 60.6468934461237 23.9301352276663 60.6468818670237 23.9301631397786 60.6468707664417 23.9301911527137 60.646847776715 23.9302472718988 60.6468357292007 23.9302743501184 60.6468231455033 23.9303003813568 60.6468099202979 23.9303250828395 60.6468011561586 23.9303401912629 60.6467869219342 23.9303624267589 60.6467719376911 23.9303825193274 60.6467560736342 23.9303995114229 60.6467391103906 23.9304112828265 60.6467337807072 23.9304135653069 60.646715927649 23.9304167105843 60.6466980834335 23.9304131938058 60.6466806610689 23.9304045677664 60.6466464446486 23.9303825894006 60.6466416676919 23.9303792011609 60.6466246538657 23.9303676265635 60.6466074277236 23.9303573714887 60.6465899436892 23.9303491905722 60.6465721091104 23.9303460938242 60.6465544533956 23.9303519653258 60.6465484333822 23.9303562716148 60.6465329380933 23.9303744545918 60.6465199287165 23.9303995561692 60.6465102608847 23.9304273591086 60.646502819202 23.9304605498854 60.6464985834855 23.9304960157437 60.6464973075525 23.9305324259343 60.6464986822977 23.9305688399961 60.6465013150052 23.9305946850619 60.6465069275596 23.930629396437 60.6465144012367 23.9306625947702 60.6465233582294 23.9306942611294 60.6465430623532 23.9307553373087 60.6465473994374 23.9307689239302 60.6465832614513 23.9308955132689 60.6465856078344 23.9309041837151 60.646602163471 23.9309690185016 60.6466096374839 23.9310022352735 60.6466160626098 23.9310363387904 60.6466197927992 23.9310720347151 60.6466201090506 23.9311085313718 60.6466193475776 23.9311219445294 60.6466147843195 23.9311572402919 60.6466114930621 23.9311723948132 60.6466019129639 23.9312032453348 60.6465893144168 23.9312345112088 60.6465611040654 23.9312796702079 60.646547483778 23.9312985160937 60.6465319835814 23.9313168820751 60.6465160021797 23.9313334638423 60.646483375423 23.9313639272284 60.646467757665 23.9313787358499 60.6464517472638 23.9313952288124 60.6464360322175 23.9314128465422 60.646420621491 23.9314315881851 60.6464055501081 23.9314514138074 60.6463908163926 23.931472250368 60.6463764395319 23.93149415094 60.6463624439084 23.9315170034034 60.6463588299574 23.9315231849596 60.6463321794904 23.9315721110907 60.6462946075816 23.9316506057805 60.6462869741912 23.9316676189651 60.6462403100578 23.9317786554746 60.6462291418426 23.9318072592946 60.6462229739181 23.9318235290719 60.6461688383385 23.9319692219913 60.646157399192 23.9319973756641 60.6461455202316 23.932024765976 60.6461421494904 23.9320321503709 60.6460910608391 23.9321348046436 60.6460786938648 23.9321612896936 60.6460691566657 23.9321834429737 60.646047006481 23.9322409433689 60.6460353330866 23.9322686799283 60.646022143787 23.9322933948498 60.6460141426052 23.9323049528344 60.6459981389555 23.93232135295 60.6459809558468 23.9323317714889 60.6459632798389 23.9323379365036 60.6459454485025 23.9323420301359 60.6459332905065 23.9323439370692 60.6458795927595 23.9323516441249 60.6458618292832 23.9323567377562 60.6458591465777 23.9323576883556 60.6458240124734 23.9323724680027 60.6458062070232 23.9323769068237 60.6457895113323 23.9323760613075 60.6457720311821 23.9323680438238 60.6457379478004 23.9323451912535 60.6457266099223 23.9323393709756 60.6457087695171 23.9323360175598 60.6456909032496 23.9323389799144 60.6456749331064 23.9323462635395 60.6456581046572 23.9323588258464 60.6456424555847 23.9323765827716 60.6456292355964 23.9324011355663 60.6456244151255 23.9324150442069 60.6456178409949 23.9324488647202 60.6456171643745 23.9324851801919 60.6456188039949 23.9324998650272 60.6456267329428 23.9325325620615 60.6456464358067 23.9325936194481 60.6456521910402 23.9326279140619 60.6456514096553 23.932639681717 60.645640645363 23.9326686671615 60.645628324362 23.9326952021496 60.6456244610245 23.9327061832923 60.6456196114514 23.9327411572556 60.6456177225125 23.9327818151941 60.645615526442 23.9328180921874 60.6456103557 23.9328903908261 60.6456099005596 23.9329285334444 60.6456126238339 23.9329646170068 60.6456179611886 23.9329995003725 60.64562538132 23.9330327399993 60.6456428999379 23.9330965124375 60.645645870632 23.9331073376338 60.645663380668 23.9331711292661 60.6456734545094 23.933201371676 60.64568071185 23.9332196762543 60.6456933375655 23.9332456135226 60.6457073974737 23.9332682669078 60.6457225452702 23.9332878157395 60.6457384832458 23.9333045994194 60.6457514843907 23.9333159529862 60.6457684037834 23.933328123388 60.6458029546026 23.9333478582376 60.6458200161461 23.9333572153315 60.6458545905085 23.9333768016068 60.64587221977 23.9333834879055 60.6458773062928 23.9333847060219 60.6458952230373 23.9333862960147 60.6459311069316 23.9333865798794 60.6459345843688 23.9333869811492 60.6459523669134 23.9333917314353 60.6459697505493 23.933400637071 60.6459864940442 23.9334137576033 60.6459896274802 23.9334167901348 60.6460052425782 23.9334347758935 60.6460197850234 23.9334561393107 60.6460334978243 23.933479722702 60.6460390561754 23.9334901555793 60.6460518886406 23.9335157075799 60.6460762554398 23.9335693689428 60.6460997160017 23.9336246537357 60.6461019856021 23.9336299827038 60.6461248757639 23.9336862551077 60.6461350097395 23.9337163825833 60.6461435593158 23.9337514735581 60.6461491795996 23.9337861660115 60.6461517323023 23.9338222664533 60.6461480766948 23.9338615191962 60.6461370493838 23.933890017286 60.6461223707462 23.9339109204914 60.6461068616324 23.9339293040923 60.6460986573131 23.9339394536349 60.6460842877484 23.9339612972849 60.6460714760065 23.9339868174152 60.6460605675554 23.9340157981804 60.6460559955739 23.9340311471 60.6460483425947 23.9340641736099 60.6460427952077 23.9340989030628 60.6460392401419 23.9341347057477 60.6460374048399 23.9341710585967 60.6460368045018 23.9342075868175 60.6460373627997 23.9342440963757 60.6460391877584 23.9342833402473 60.6460418218532 23.9343194694578 60.6460453120254 23.934355315988 60.6460648079248 23.9344959800001 60.6460673088057 23.9345125779082 60.6460722204383 23.9345477220616 60.646076057276 23.9345834075926 60.6460767922715 23.9346197905996 60.646074067995 23.9346432352219 60.6460650192213 23.9346745643205 60.6460518474014 23.93469927659 60.6460366766593 23.9347187072744 60.6460269084466 23.9347280536754 60.6460099370921 23.934739878168 60.6459751661824 23.934757969573 60.6459572763338 23.934769314055 60.6459410550451 23.9347848552072 60.6459259443596 23.9348045545665 60.6459120334499 23.9348275984725 60.6459022506175 23.934847285431 60.6458906325602 23.9348751071227 60.645879967478 23.9349045217649 60.6458749843501 23.9349187932757 60.6458640765302 23.9349478100726 60.645858469336 23.9349619029952 60.6458350565451 23.9350172884967 60.6458250399393 23.9350475563751 60.6458194245143 23.9350820722735 60.6458191637037 23.9351040198499 60.6458244339802 23.9351387454363 60.6458348692905 23.935168313743 60.6458495076948 23.9351911326536 60.6458664327216 23.9352027728426 60.6458843366605 23.9352034134861 60.6459021188452 23.9351987405379 60.6459157803489 23.9351934344652 60.6459333809497 23.9351863266253 60.6459511309768 23.9351810345311 60.6459708205519 23.935181962933 60.6459883224201 23.9351897603186 60.6460047893692 23.9352041524331 60.6460192354271 23.9352256355888 60.6460269836873 23.9352461632903 60.6460328825324 23.9352804816862 60.646033717214 23.9353169100724 60.6460318632408 23.9353532463018 60.6460303793625 23.9353814223276 60.646027005606 23.935454172801 60.646022759173 23.9354896201103 60.6460202964959 23.9355029200703 60.6460116203642 23.9355348356334 60.6459997940441 23.9355622011667 60.6459821147916 23.9355831324704 60.64596441334 23.9355885844276 60.6459465092145 23.9355910728118 60.6459371825359 23.9355945942989 60.6459211713589 23.9356106823377 60.6459082343777 23.9356358475719 60.6459023745087 23.9356542098928 60.6458963402372 23.935688491069 60.645895439019 23.9357248463725 60.645898830612 23.9357607205355 60.6459037419169 23.9357958647059 60.6459093971153 23.9358305356072 60.6459147565229 23.9358605316471 60.6459324475953 23.9359640546255 60.6459376692949 23.9359990229695 60.6459423499433 23.9360342989287 60.6459464003032 23.9360699092803 60.6459497918043 23.9361057835388 60.6459507383724 23.9361172955147 60.6459531939162 23.9361534966079 60.6459548091987 23.9361898873411 60.6459555014383 23.9362263840792 60.6459550623363 23.9362629151125 60.6459530911346 23.9362992440205 60.6459494445673 23.9363350001195 60.6459485255435 23.9363419497682 60.6459429225136 23.9363766290706 60.6459359213972 23.9364102883192 60.6459277621736 23.936442813213 60.6459190414057 23.9364747509564 60.6459114898358 23.936502423609 60.6458853829314 23.9365983046208 60.6458758949839 23.9366293086878 60.6458676934739 23.9366537125001 60.6458568590887 23.9366828132 60.6458452696322 23.9367107229461 60.6458206084892 23.9367638101665 60.6458104411537 23.9367843747641 60.6457587453066 23.936885778614 60.645750924535 23.9369013074751 60.6457260095355 23.9369539061175 60.6457143816496 23.9369817095016 60.6457039938455 23.9370114812032 60.6456992722622 23.9370273743974 60.6456912784468 23.9370600661668 60.6456844512641 23.9370938731646 60.6456660270536 23.9371968553969 60.6456622365708 23.9372153501141 60.6456466823453 23.9372812229781 60.6456395427511 23.9373147301624 60.6456352947376 23.9373391424008 60.6456321822918 23.9373750851727 60.6456341722593 23.9374101956408 60.6456434879111 23.9374411151747 60.6456573924313 23.9374640778574 60.6456667666906 23.9374744050593 60.6456836211038 23.9374868948497 60.6457007987866 23.9374974142143 60.6457128311683 23.93750650082 60.6457282679056 23.9375249627987 60.6457414907042 23.9375495457715 60.6457498891004 23.9375729765962 60.645765334435 23.9376389065444 60.6457746128314 23.9376646693618 60.6457888754733 23.9376867930442 60.6458022927451 23.9377108452736 60.6458049481164 23.9377196879291 60.6458068014663 23.9377555069539 60.6457993498558 23.9377930514038 60.6457858854897 23.9378167834665 60.6457692273151 23.937830131934 60.6457521753568 23.9378411937553 60.6457356729828 23.9378554606704 60.6457201514192 23.9378737151983 60.6457056481545 23.9378952400982 60.6456971527124 23.9379099543773 60.6456842190526 23.937935282862 60.6456721699527 23.9379623572665 60.6456497088456 23.9380193333558 60.6456398875114 23.938045207992 60.6456074503519 23.9381326846721 60.6455972205547 23.9381626970738 60.6455877885403 23.9381938048619 60.6455826201478 23.9382125583373 60.645551150984 23.9383438977105 60.6455422020429 23.9383753072189 60.6455318885743 23.9384051993278 60.6455204105179 23.9384332805623 60.6455080226721 23.9384596914237 60.6454950228027 23.938484879422 60.6454871807148 23.9384990922305 60.6454733932295 23.9385224518499 60.6454589665965 23.9385441885985 60.6454436021759 23.9385630315838 60.6454388969381 23.9385678701157 60.6454222849946 23.9385816711327 60.6453710897511 23.9386154991914 60.6453591540959 23.9386251597614 60.6453432403654 23.9386419869892 60.6453281099102 23.9386616311088 60.6453136636504 23.9386832963603 60.6452855662474 23.9387287838168 60.6452771819799 23.9387420780866 60.6452038664235 23.9388473958671 60.6452008022916 23.9388520968291 60.6451725603158 23.9388971585184 60.6451578352094 23.9389180265669 60.6451412945719 23.9389369076486 60.6451246502582 23.9389504735258 60.6451072152643 23.9389589358138 60.6450893285355 23.9389606154321 60.6450851323833 23.9389598243187 60.6450676757373 23.9389516365315 60.6450509892563 23.9389382336199 60.6450346254583 23.9389232263758 60.6450267212065 23.9389162728217 60.6450097877133 23.9389042475184 60.6449922551989 23.9388966708474 60.6449772984258 23.9388956385951 60.644959823013 23.9389003717196 60.6449430381402 23.9389132921171 60.6449245070316 23.9389300014561 60.6449089187927 23.9389480966245 60.644894250813 23.9389691054436 60.6448805685474 23.938992747214 60.6448676530225 23.9390180911768 60.644843131688 23.9390714361522 60.6448369210775 23.9390858779368 60.6447689210627 23.9392558328339 60.6447594363758 23.9392807228697 60.6447059626999 23.9394274128559 60.6446762838932 23.9395188507585 60.6446673669263 23.9395489202163 60.6446331993091 23.9396774363377 60.644609135165 23.939775514078 60.6446022521989 23.9398033775125 60.6445197447895 23.9401278663955 60.644513560585 23.940154071382 60.6444710141602 23.9403554596936 60.6444644784579 23.940389474879 60.6444630440344 23.9403970768337 60.6444177261009 23.940635617488 60.6444106044174 23.9406691574871 60.6444069172189 23.940685902871 60.6443913604162 23.9407517350128 60.6443744240797 23.9408161791738 60.6443654432751 23.940847791109 60.6443597632676 23.9408669762221 60.644299837894 23.9410490775129 60.6442923963057 23.9410709914478 60.6442627726537 23.9411625311391 60.644253514864 23.9411938214628 60.6442448663338 23.9412258225168 60.6442362510528 23.9412612422253 60.6442290920948 23.9412947305259 60.6441972375595 23.9414655309799 60.6441902272298 23.9414996272437 60.6441825736311 23.9415327048898 60.6441742936629 23.9415651099856 60.644156111084 23.941628116078 60.6441363277654 23.9416898832233 60.6440644176484 23.9418995959992 60.6440610960504 23.941909938528 60.6440330452254 23.9420034868133 60.643998405859 23.9421315117098 60.6439903619324 23.9421620642351 60.6439555841709 23.9422899372176 60.6439461686885 23.9423210222711 60.6439398383688 23.942340854067 60.6438767451568 23.9425184928734 60.6438724600668 23.9425311041233 60.6438531302293 23.9425926807583 60.6438353904445 23.9426562108739 60.6437953519396 23.9428196774857 60.6437905011 23.9428405582171 60.6437294388927 23.9431051205189 60.643725388183 23.9431224852492 60.643687454802 23.94328805672 60.643686081492 23.9432944082802 60.643651019224 23.9434625617222 60.6436344383862 23.9435327880076 60.6436173901789 23.9435971116107 60.6436093763807 23.9436297831154 60.6436023823741 23.9436634375444 60.643600750121 23.9436726132289 60.6435957110432 23.9437076743038 60.6435870531909 23.9437786133194 60.6435819684227 23.9438136420947 60.6435753033895 23.9438475397478 60.6435670728554 23.9438766269509 60.6435554699758 23.9439044051907 60.6435420716356 23.9439287122327 60.6435300228852 23.9439487742856 60.6435300228852 23.9439487742856 60.6435331274476 23.9439847652365 60.6435355091232 23.9440209710812 60.6435356458661 23.9440599879962 60.6435329123199 23.944096074731 60.6435274894825 23.9441308609554 60.6435197878921 23.9441638320087 60.6435105208397 23.944195139873 60.6435003451141 23.9442252163586 60.6434894258516 23.9442542104996 60.6434817543513 23.9442731623023 60.6434341437659 23.9443825397584 60.6434228141301 23.9444108773408 60.6434121550404 23.9444402492514 60.6434053896791 23.9444611095924 60.6433964451118 23.9444927709585 60.6433886064435 23.9445256449841 60.6433818592854 23.9445594951607 60.6433761815342 23.944594140605 60.6433714426656 23.9446293741102 60.6433675590688 23.9446650755145 60.6433645359553 23.9447010796447 60.6433623541423 23.9447373334269 60.6433616140339 23.9447544938833 60.6433582091355 23.9449736056955 60.6433564609347 23.9450099647547 60.643354894714 23.9450318694479 60.6433512824803 23.9450676548602 60.6433464431962 23.9451028245806 60.6433403820747 23.9451372134297 60.6433330207187 23.9451705360623 60.6433242602983 23.9452023992814 60.6433178369687 23.9452221108219 60.6433067955119 23.9452508781462 60.643294792224 23.9452780531448 60.6432566662308 23.945355441844 60.643247091982 23.9453756713398 60.6432352946687 23.9454032109862 60.6432243188502 23.9454321000397 60.6432142268679 23.9454623142986 60.6432052726775 23.9454939577957 60.6431977094004 23.9455270980485 60.6431931777605 23.9455521379426 60.6431885299612 23.945587435656 60.6431852620235 23.9456233528834 60.6431829446403 23.9456595826292 60.6431766736956 23.9458051873579 60.6431752357809 23.9458272078156 60.6431719046023 23.945863112691 60.6431674201864 23.9458984863473 60.6431617058055 23.9459331164728 60.6431545546272 23.9459666017997 60.6431449184956 23.9460014386059 60.6431346118351 23.9460313069754 60.64312316967 23.9460594530691 60.6430983354226 23.9461121970839 60.6430921444771 23.9461251709812 60.6430184040748 23.9462849221867 60.6430067952941 23.9463085277108 60.6429125470683 23.9464775572159 60.6429057141139 23.9464895670796 60.642839675922 23.9466132178108 60.6428268915216 23.9466388556434 60.6428158710815 23.9466614720091 60.642741011423 23.9468190576142 60.6427350049427 23.9468310622847 60.6426421881979 23.9470033932014 60.6426350611889 23.9470166932178 60.6425585802412 23.9471709723141 60.6425462477521 23.9471975183847 60.6425429599764 23.947204636284 60.642457599607 23.9473922878565 60.6424542405122 23.9473994307635 60.6423791070345 23.9475564715018 60.6423711333814 23.9475736206837 60.6422753530272 23.9477913309075 60.6422723112571 23.9477982058331 60.6422354349414 23.9478780506241 60.6422226600895 23.9479037231426 60.6422094690782 23.9479284835632 60.642194814146 23.9479540595025 60.6421089511549 23.9480862589224 60.6421004670721 23.9481007298333 60.642087171568 23.9481252438021 60.6420485229675 23.9482057860672 60.6420398277245 23.9482267541176 60.6420176798846 23.9482842538457 60.6420073453866 23.948314104734 60.6419976148953 23.9483448316071 60.6419888076236 23.9483766421253 60.6419810230261 23.9484095634743 60.6419758154779 23.948435324631 60.6419696988565 23.948469679985 60.6419625559949 23.9485031626751 60.6419589659004 23.9485155419034 60.64194733347 23.9485432466153 60.6419336306982 23.9485668473593 60.6419047442396 23.9486101818257 60.641898323328 23.948620962544 60.6418856698811 23.9486468425655 60.6418611446097 23.9487001753371 60.6418500309014 23.9487195056316 60.6418346339281 23.9487381616214 60.6418179685532 23.9487516314376 60.6418062190182 23.9487584517423 60.6417885909488 23.9487651695071 60.6417706967494 23.9487669173427 60.6417568157559 23.9487630159397 60.641740011984 23.9487503340196 60.6417242166512 23.9487330190383 60.6417087618331 23.9487144825502 60.6416916579467 23.9486965229302 60.6416746614865 23.9486848473381 60.6416570066444 23.9486785767735 60.6416390854106 23.9486775643595 60.6416212714269 23.9486816466579 60.6416040206716 23.9486915123991 60.6415894459441 23.9487056443016 60.6415747849275 23.9487266274168 60.6415617638858 23.9487517551406 60.6415387372173 23.9488077632371 60.6415355296064 23.9488156416282 60.6414756761709 23.948951724417 60.6414703990208 23.9489645923457 60.641459302525 23.9489933435781 60.6414487353913 23.9490228497759 60.6414101335857 23.949146034867 60.641404135407 23.9491662896846 60.6413851723179 23.9492283167069 60.6413745774013 23.94925778879 60.6413726915571 23.9492625596816 60.6413364706666 23.9493436009661 60.6413253075797 23.9493721935694 60.6413221463806 23.9493817141723 60.6413136336683 23.949413843497 60.6413073789723 23.9494480646251 60.6413032930755 23.9494836175355 60.6413007394397 23.9495197756786 60.6412992516543 23.949556180644 60.641298611212 23.9495927067275 60.6412985761748 23.9495994432613 60.6412994206131 23.9497455913627 60.6412985274148 23.9497820681566 60.6412957658223 23.9498181727456 60.6412906239869 23.9498531301752 60.6412825706858 23.9498857099022 60.6412727557711 23.9499111740928 60.6412589739453 23.9499344701683 60.6412437535825 23.9499537854944 60.6412122114585 23.949988641339 60.6412042358738 23.9499982329004 60.6411895277376 23.950019128131 60.6411757765363 23.9500425858724 60.6411626328581 23.9500674681761 60.6411548288606 23.9500830082028 60.6411300305031 23.9501358155421 60.6411182692928 23.9501634030272 60.6411072834524 23.9501922894223 60.641097514574 23.9502229269811 60.6410908090149 23.9502480237102 60.641083583758 23.95028145796 60.6410779680906 23.9503161305413 60.6410739276214 23.9503517153707 60.6410714010618 23.9503878889085 60.641070318991 23.9504243649772 60.641070711027 23.9504608663311 60.6410717169866 23.9504840994517 60.6410806594004 23.9505921739479 60.6410826464477 23.9506284879142 60.6410829679414 23.9506445585798 60.641081921247 23.950681013007 60.6410795661949 23.950717225197 60.6410738346149 23.9507893801994 60.6410719132156 23.9508256977454 60.6410717448796 23.9508325017187 60.6410721188729 23.9508690047778 60.6410744892881 23.95090519102 60.6410787662771 23.9509406664198 60.6410847626188 23.9509751010459 60.6410919610944 23.9510066958361 60.6411095852168 23.9510703488389 60.6411167014369 23.9511038543034 60.6411200517702 23.9511396735248 60.6411183177229 23.9511759367919 60.6411155589278 23.951201538479 60.6410982802454 23.9512113687435 60.6410814912048 23.951224153363 60.641068001372 23.9512448961827 60.6410589767821 23.9512762680655 60.6410485113544 23.9513461258769 60.6410466939607 23.9513570560882 60.6410389901401 23.951390004659 60.6410295084922 23.9514210354441 60.6410092658783 23.9514813699226 60.6410073944825 23.9514875663942 60.6409990292864 23.9515198821335 60.6409913266735 23.9515528853893 60.6409838439176 23.95158370885 60.6409748984628 23.9516154024093 60.6409685310259 23.9516364232318 60.6409685310259 23.9516364232318 60.6409580942284 23.9516661536082 60.640950144889 23.9516867567281 60.6409380741699 23.9517137872334 60.6409127668746 23.951765579817 60.6409006942857 23.9517921347265 60.6408896330335 23.9518208811015 60.6408797622415 23.9518513994899 60.6408709451542 23.9518832088116 60.6408636385332 23.9519134848295 60.6408565600512 23.9519470692395 60.6408327555768 23.952084914323 60.6408300170997 23.9521011642595 60.6408041373128 23.9522374487526 60.6407899618282 23.9523046007333 60.6407829270975 23.9523369549757 60.6407453494756 23.9525028502598 60.6407391763469 23.9525292498398 60.6407149639697 23.9526271364835 60.6407062759587 23.9526590978894 60.6406968588508 23.9526902133432 60.6406865886047 23.9527201652276 60.6406763041543 23.9527467335981 60.64065239723 23.9528012468509 60.6406425975042 23.9528246406871 60.6406111088635 23.9529135354423 60.6405999070565 23.9529420382855 60.6405873665794 23.9529681792721 60.6405785404244 23.9529826438929 60.6405630661173 23.9530010848038 60.6405304125301 23.9530313580011 60.6405143491131 23.9530476040665 60.6405110587055 23.9530514643987 60.6404963974019 23.9530724631003 60.6404834595422 23.9530977266746 60.6404732519621 23.953127672303 60.6404717134669 23.9531338920108 60.6404659869675 23.9531684640783 60.6404635219836 23.9532046125495 60.6404637845087 23.9532776631207 60.6404639606897 23.9533055117228 60.6404633461134 23.9533420342755 60.6404617309281 23.9533784134922 60.6404591309859 23.9534145563906 60.6404483824501 23.95352291594 60.6404354773991 23.9536293018433 60.6404302453151 23.953664284484 60.6404237597711 23.9537014346834 60.6404169462451 23.9537352310372 60.6404093988206 23.9537683648411 60.6403745073925 23.9538960563338 60.6403698759155 23.9539120455416 60.6403421953535 23.9540060310626 60.6403350768068 23.9540288051578 60.6402746242347 23.9542102123946 60.6402651227417 23.954241188551 60.6402609469163 23.954255487969 60.6402522034678 23.9542873988038 60.6402362264208 23.95435281598 60.6402138266524 23.9544569687116 60.640199263915 23.9545237341619 60.6401910264031 23.9545561642662 60.640180867061 23.9545862692476 60.6401734056076 23.954603458565 60.6401600129859 23.9546277030141 60.6401450147628 23.954647726276 60.6401290507759 23.9546644010413 60.6401127789181 23.954679787541 60.6400980538996 23.9546928690397 60.6400653799021 23.9547230504947 60.6400496032977 23.9547404576253 60.640034845412 23.9547611716172 60.6400316993597 23.9547662439169 60.6400185258051 23.9547910346816 60.6400071274106 23.9548192072528 60.6399982802133 23.9548509079157 60.6399946267894 23.9548715797084 60.6399916265438 23.9549075218805 60.6399920263139 23.9549440212589 60.6399938067934 23.9549803902867 60.6399947172973 23.9549951240917 60.639996845763 23.9550313870882 60.6399982953188 23.9550678239578 60.6399979219158 23.9551043048541 60.6399959481958 23.9551300872938 60.639990759711 23.9551650284787 60.6399827793155 23.9551977083654 60.6399720048128 23.9552268464351 60.6399622734656 23.9552445790925 60.6399467677815 23.9552628385384 60.6399296534287 23.9552735838134 60.6399120020804 23.9552800802187 60.6398942244986 23.9552849784897 60.6398902480568 23.955285939331 60.6398724827655 23.9552909828023 60.6398552792276 23.9553009680263 60.6398519860805 23.9553043160161 60.6398381407666 23.9553272304595 60.6398287563945 23.9553582313827 60.6398231846385 23.9553929157895 60.6398195875266 23.9554286945022 60.6398173575275 23.9554649296294 60.6398162288166 23.9555013901246 60.639816128226 23.9555080227352 60.639816996526 23.9556176063971 60.6398173447776 23.9556384308513 60.639817601311 23.9556749618442 60.6398172110562 23.9557114989965 60.6398159469611 23.9557479356649 60.6398130202816 23.9557839620766 60.6398084775188 23.9558168843412 60.6398016177901 23.9558506473334 60.6397928176666 23.9558824528262 60.6397824072189 23.9559121964805 60.6397709258144 23.9559402847862 60.6397586188528 23.955966840949 60.6397534365016 23.9559771915124 60.6397402064295 23.9560018771092 60.6397264260069 23.956025279028 60.6397121396477 23.956047374782 60.6396973925965 23.9560681783977 60.6396822300981 23.956087703902 60.6396769746687 23.9560940545335 60.6396613150245 23.9561118705321 60.6396453222878 23.9561284738332 60.6396290596348 23.956143876772 60.6395958417269 23.9561714913159 60.6395858575545 23.9561789102226 60.6395519337469 23.9562027492003 60.6395352892519 23.9562163768112 60.6395192948392 23.9562329069681 60.6395093552785 23.9562454444288 60.6394950970243 23.9562675921661 60.6394823009249 23.9562931878636 60.639471117143 23.9563217233667 60.6394618638724 23.9563529673979 60.6394551042896 23.9563867936348 60.6394520613202 23.956412584963 60.639450570395 23.9564489328083 60.6394520097642 23.95648533347 60.6394555648597 23.9565211319922 60.6394600893159 23.956556491437 60.6394634444762 23.956579556744 60.639490180571 23.9567539351727 60.6394947228975 23.956789292998 60.6394974061776 23.9568128425444 60.6395008813254 23.9568486852816 60.6395036886038 23.9568847922906 60.6395058703486 23.9569210498007 60.6395064995145 23.9569340901705 60.6395087610066 23.9570070230651 60.6395090619845 23.9571166042779 60.6395089058111 23.9571354087065 60.6395074128727 23.9572084030659 60.6395057338665 23.9572447869615 60.6395026531168 23.957280772511 60.6395000194305 23.9573024452303 60.639494402752 23.9573371514466 60.6394872580515 23.9573706479106 60.6394789097576 23.9574029771973 60.6394685988194 23.9574375041289 60.6394373770272 23.9575268048342 60.6394349000011 23.9575336432207 60.6393836834745 23.9576836318927 60.6393742464398 23.9577099712356 60.6393632218289 23.9577388021435 60.6393515430313 23.9577665238143 60.6393387564361 23.9577921544775 60.639336036468 23.9577970032188 60.6393218363135 23.9578193459038 60.6392914038572 23.9578580389717 60.6392887976828 23.9578611754785 60.6392583754252 23.9578999223903 60.6392438586196 23.957921380061 60.639229204309 23.9579482478664 60.6392172819756 23.9579755349219 60.6392066479854 23.9580049508013 60.6391970628291 23.9580358411598 60.6391792323903 23.9580992518278 60.6391752792881 23.9581130901367 60.639156274868 23.9581750563124 60.6390923779946 23.9583514312358 60.6390854132363 23.9583695418837 60.6390286185045 23.9585109423992 60.6390166116249 23.9585380723807 60.6390045093482 23.9585641684983 60.6389145304355 23.9587425984944 60.6389023363046 23.9587693983328 60.6388999719438 23.9587748720263 60.6388884528156 23.9588029071662 60.6388776139198 23.9588320124611 60.6388675367779 23.9588622168162 60.6388584876225 23.9588937695612 60.6388507370859 23.9589267183637 60.638846063678 23.9589511624383 60.6388409112894 23.958986153175 60.6388293918613 23.9590932056496 60.6388259228293 23.9591228051867 60.6388207337023 23.9591577627439 60.6388147051889 23.9591921590855 60.6387870609488 23.9593270217916 60.6387844324064 23.9593402409353 60.638765534218 23.9594428659614 60.6387587102531 23.9594766602435 60.6387511157243 23.9595097587456 60.6387451728108 23.959532511089 60.638735780971 23.9595636201403 60.6387254165918 23.9595934487016 60.6387145033046 23.9596224508114 60.6387058527998 23.9596446716259 60.638671087632 23.9597283560038 60.6386586767113 23.959754718305 60.6386455030377 23.9597795425008 60.6386372941817 23.95979352535 60.6386229786234 23.9598155482045 60.6386125570472 23.9598302152637 60.6385678427826 23.9598912544383 60.6385597029084 23.9599035292737 60.6385460078698 23.9599271583983 60.6385332204336 23.9599527693121 60.6385213914881 23.9599802291529 60.6385106828309 23.9600095409673 60.6385057487655 23.9600248982109 60.6384968465176 23.9600566010655 60.6384891140359 23.9600895657914 60.6384825459251 23.9601235550634 60.6384769011903 23.9601582439895 60.6384719123548 23.9601933284676 60.638467524379 23.9602287588015 60.6384665067047 23.9602377461216 60.6384508892996 23.9603803827522 60.6384486108618 23.9603979411968 60.6384432395921 23.9604328055099 60.6384369730721 23.9604670223692 60.6384297729496 23.9605004856157 60.6384215156169 23.9605328958787 60.6384121149889 23.9605640234317 60.6384070856453 23.96057874919 60.638396013913 23.9606075094622 60.6383838846493 23.9606344117924 60.6383708144101 23.9606594451975 60.6383569180917 23.9606825256714 60.6383422478301 23.9607035751222 60.6383396396738 23.9607070225021 60.6383241855123 23.960725602786 60.63827627117 23.9607755255839 60.638260891074 23.960791830242 60.6382454360701 23.9608103739274 60.6382308216562 23.9608315094573 60.6382181082573 23.9608572225411 60.6382159187219 23.9608628807307 60.6382066541606 23.9608940683421 60.6382005603586 23.9609283783483 60.6381973962532 23.9609642966951 60.6381971748895 23.9610008159416 60.6381980087582 23.9610161600074 60.6382020255363 23.9610517677068 60.6382127325613 23.9611259694647 60.6382150908045 23.961162135931 60.6382135520889 23.9611984133997 60.6382116638779 23.9612106110603 60.6382024334386 23.961241722168 60.63818920926 23.9612663123054 60.6381790639881 23.9612793061117 60.6381626602615 23.9612940603645 60.6381458526884 23.9613068585022 60.6381329407538 23.9613183017152 60.6381177860125 23.961337804706 60.6381044684245 23.9613622388828 60.6380930775804 23.9613904066375 60.6380857271944 23.9614144981927 60.6380782968793 23.9614477264017 60.6380729701605 23.9614825859233 60.6380694264392 23.9615184117588 60.6380673842983 23.9615546815768 60.638064772191 23.9616275581922 60.6380633893746 23.9616616070996 60.6380479578013 23.9618785372917 60.6380463313057 23.9619149142673 60.6380455972895 23.9619522133969 60.6380477794814 23.9620617220165 60.6380479172771 23.9620982438307 60.6380466966695 23.9621346923342 60.638043686315 23.9621706690695 60.6380423751839 23.9621809827715 60.6380362998096 23.9622153271917 60.6380278018953 23.9622474482349 60.6380168125625 23.962276291283 60.6380030568214 23.9623000344533 60.6379872171043 23.9623170767166 60.6379541403814 23.9623454201516 60.6379400675882 23.9623619300764 60.6379271356506 23.9623871323341 60.637917186943 23.9624174871852 60.637909416349 23.9624503811205 60.6379074868156 23.9624603688107 60.6379018862959 23.9624950525032 60.6378978250323 23.962530652333 60.6378953941843 23.9625668304151 60.6378946054635 23.962603311231 60.6378956311366 23.9626397675545 60.6378987925719 23.9626757117623 60.6379042900223 23.9627104663947 60.6379065458814 23.9627211759492 60.6379153722656 23.9627529644079 60.6379258219142 23.9627826425 60.6379371399413 23.9628109948024 60.6379607269728 23.9628660548689 60.6379720360167 23.9628944080755 60.6379826082534 23.9629239466574 60.6379877579633 23.9629406223102 60.6379957862373 23.9629732727255 60.6380014694054 23.9630079002533 60.638002858835 23.9630441578022 60.6380024712223 23.9630504328242 60.6379960983542 23.9630843476622 60.6379854525949 23.9631136885869 60.6379727962746 23.9631395598232 60.6379468530638 23.9631900443755 60.6379406611429 23.9632038361403 60.6379302208946 23.9632335235203 60.6379219714418 23.9632659134981 60.637915987517 23.9633003404315 60.6379117075435 23.9633358143932 60.6379087156246 23.9633718256984 60.6379070316851 23.9634029206412 60.6379058649298 23.9634393821382 60.637905295315 23.9635124317931 60.6379068482076 23.9636219809024 60.6379071986984 23.9636477069105 60.637907383737 23.963830380805 60.6379073452582 23.9638536187504 60.6379076981569 23.9638901384302 60.6379088225177 23.9639266037927 60.63791110952 23.9639628316644 60.6379163564245 23.9639976466789 60.637928863606 23.9640297110636 60.6379449013759 23.9640455267352 60.6379626487563 23.9640503693053 60.6379805505342 23.9640485563426 60.6379896573584 23.9640456136098 60.6380072964781 23.9640389589475 60.6380223040048 23.9640386807228 60.638035078512 23.964063127719 60.6380413431954 23.9640972616561 60.6380471421124 23.9641370010675 60.6380531175368 23.9641714549714 60.6380602573736 23.9642049577373 60.6380686189968 23.9642372661356 60.6380782149516 23.9642681411557 60.6380993836448 23.964327125639 60.6381058284376 23.9643450517975 60.6381560659317 23.9644963792343 60.6381644960146 23.9645233941354 60.6381738205948 23.9645545875831 60.6381824807564 23.9645865936627 60.638189761043 23.9646199553665 60.6381935612716 23.9646555655266 60.6381938579113 23.9646674475913 60.6381905191343 23.9647032355765 60.6381846628471 23.9647377602664 60.6381707003268 23.9648050637659 60.6381631501233 23.9648381927391 60.6381613320765 23.9648459744782 60.6381560864039 23.9648808807302 60.6381528128159 23.964916772283 60.6381513839843 23.9649531854567 60.638151350227 23.9649897051964 60.6381524524491 23.9650244166287 60.6381546499127 23.9650606715517 60.6381578555302 23.9650966120861 60.6381620578501 23.9651321295432 60.6381672983876 23.9651670736614 60.6381736267951 23.9652012568233 60.6381810393449 23.9652345147287 60.6381863928844 23.9652554343659 60.6382139294057 23.9653495688172 60.638221517921 23.9653826638818 60.6382268639121 23.9654175067052 60.6382293015137 23.9654520743034 60.6382287092559 23.9654885368938 60.6382249182409 23.9655242027084 60.6382177971215 23.9655576387957 60.6382046289402 23.9655871065933 60.6381883429351 23.9656019207413 60.6381705119085 23.9656044762896 60.6381526109713 23.9656019707334 60.6381347730347 23.9655978858953 60.6381292135027 23.9655963964556 60.6381113824606 23.9655922195004 60.6380934988934 23.9655892915394 60.6380755637767 23.9655880515543 60.6380576318809 23.9655889334657 60.638051530727 23.9655897086538 60.6380337080118 23.9655938184719 60.6380162372618 23.9656019566185 60.6380020132144 23.9656149850541 60.6379879984924 23.965637635132 60.6379771091149 23.9656665590126 60.637968777134 23.9656989012564 60.6379620701989 23.9657327737377 60.6379582150041 23.9657569012703 60.6379535528431 23.965792191324 60.6379497352614 23.9658278775861 60.637946598389 23.9658638657047 60.6379373066551 23.9660087559148 60.6379358745928 23.9660291977733 60.6379068152323 23.9663198167678 60.637886347357 23.9665721231114 60.6378788756343 23.9666435896643 60.6378766406399 23.9666607224373 60.637871194757 23.966695537113 60.6378457577328 23.9668321754989 60.6378430007223 23.9668461008727 60.6378042509432 23.9670506199121 60.6378014951657 23.9670657891682 60.6377640805513 23.9672713529837 60.6377622401716 23.967280929453 60.6377342024342 23.967415433077 60.6377265965393 23.9674485112977 60.6377207230369 23.9674731940651 60.6376886922486 23.9676039747247 60.6376814326529 23.9676356847921 60.6376745882512 23.9676694596905 60.6376687678813 23.9677040164499 60.6376646954312 23.9677395797385 60.6376634992288 23.9677569622598 60.6376627449529 23.9677934393572 60.6376645924107 23.9678297450664 60.6376695025773 23.9678648115685 60.6376793563468 23.9678987730798 60.637689153888 23.9679175736869 60.6376923671346 23.9679237662263 60.6376963652279 23.9679285128991 60.6377078600382 23.9679421229733 60.6377221637604 23.9679536029789 60.6377394017826 23.9679637277981 60.6377548380996 23.9679764185769 60.6377692024216 23.9679981013199 60.6377798809922 23.9680272288421 60.6377830362444 23.9680518678529 60.6377785620306 23.9680867554904 60.6377679804045 23.9681161982325 60.6377616908603 23.9681296688136 60.6377483255245 23.9681540311404 60.6377338931038 23.9681757129617 60.6377190001078 23.9681961025466 60.6377156674557 23.9682004954752 60.6382004657641 23.9713235433005 60.6382004657641 23.9713235433005 60.6409294710711 23.988797399571 60.6421118159109 23.9963051520042 60.6421772258138 23.9967492914862 60.6435350573605 24.0054435924255 60.6435371000117 24.0055268030967 60.6435377461547 24.0055532562852 60.6435464765326 24.0058669810082 60.6435493079163 24.0059685807486 60.6445215747083 24.0410725144792 60.6423245114449 24.046748246512 60.6423245114449 24.046748246512 60.6418085546515 24.0472419183784 60.6417280495198 24.0474147409921 60.6411073841906 24.0490940134861 60.635311361309 24.0647921959632 60.6350015746288 24.0656097625194 60.6349698886552 24.0656934045222 60.634623505013 24.0666462393128 60.6344509861755 24.0671137160903 60.6344465251569 24.0671257918432 60.6341181258297 24.0680101045489 60.6331884431668 24.0705079042281 60.6325341067304 24.0722685008343 60.6324776960755 24.0723855952336 60.6318308358789 24.0741707306193 60.6315904328486 24.0748214196573 60.6297487909779 24.0797897548123 60.6295503089276 24.0803251668239 60.6295123119108 24.0804308400419 60.6293450943777 24.0808815183276 60.6291497683732 24.0814114737108 60.6285667543827 24.0829932050084 60.6281178239022 24.0842110834839 60.62809025477 24.0842858490932 60.6282378046525 24.0879180157225 60.6282448768721 24.0880934196952 60.6289381908956 24.1049282767405 60.6231174346516 24.134781056102 60.6231382851944 24.1349495109616 60.6280589063949 24.174751203612 60.6280628185562 24.1747828640349 60.6280825800008 24.1749430140073 60.6273237171787 24.1794310174314 60.6272522161816 24.1798434905938 60.6259859611376 24.1870027166595 60.6255726016491 24.1894219726668 60.6254235912699 24.1903025335546 60.6237759479143 24.1997396248895 60.6225876819 24.2061356287575 60.622555920041 24.2063143245071 60.6224637331594 24.2069596804934 60.6224231864188 24.2072434444061 60.6223362711246 24.2078519174211 60.621801084438 24.2116186317114 60.6210424729791 24.2169060001471 60.6196699993659 24.2262752130156 60.6189795574844 24.2310061830765 60.6180660369504 24.2372637082079 60.6173069830778 24.2371467433113 60.6158464637133 24.2368773001487 60.6143481343752 24.2365589464781 60.6127903098956 24.2362382909675 60.6127595980533 24.2362319629285 60.6126821151713 24.2362160202843 60.6105624740801 24.2357797519138 60.6063866796461 24.234972700146 60.605402555685 24.2347409938494 60.6051926139501 24.2347011458754 60.6035423167096 24.2343656236454 60.6035077280612 24.2343582055323 60.6034181566879 24.2343389937488 60.6033618922055 24.2343269078223 60.6033478886002 24.2343239769279 60.6019199149544 24.23402630173 60.6018667077542 24.2340156544042 60.601806527915 24.2340036489294 60.6016840292325 24.2339791634345 60.6014495620549 24.2342089416545 60.6014264965711 24.2342369716983 60.6014216181419 24.2342417379858 60.6013612336187 24.2343005893968 60.6013465975683 24.2343148517178 60.6011544002525 24.2345021433021 60.6011374833634 24.2345186288086 60.601024119864 24.234629099433 60.6006314391948 24.2350105392074 60.6002106886828 24.235426564888 60.5995471840662 24.2360819368462 60.5989014830321 24.2367195165033 60.5976324356208 24.2383142873201 60.5975851515842 24.2383663590496 60.5975740481614 24.2383785620126 60.5975450877379 24.2384104692319 60.5972176020049 24.2387710311778 60.5971976890085 24.2387929751277 60.5971476297358 24.2388463969828 60.5951581432636 24.2409697564874 60.5939431476169 24.2423571713552 60.5930204855803 24.243408536943 60.5916399184308 24.2449801004825 60.5900132016437 24.2468436416408 60.5895026710171 24.2474420307192 60.5894367492358 24.2475192972367 60.588976396748 24.2483867052725 60.5878290068171 24.2505585896152 60.5874435182168 24.2512872418448 60.5872718559873 24.2516156799517 60.5870176308519 24.2520729319074 60.5864852678241 24.2530550470588 60.585746731477 24.2544412266271 60.5850271032293 24.255758385141 60.5835092700469 24.2585124794189 60.5824764472344 24.2604175154686 60.5799985548702 24.2649579394032 60.5798211249689 24.2652738776691 60.5788654022881 24.2666020447855 60.5783184684203 24.2673620495016 60.5770199117655 24.2691663754655 60.5761891099606 24.2703438240504 60.5730595185661 24.2746949679766 60.5716534326563 24.2766605022155 60.5677189741404 24.2821660631419 60.5674569964278 24.2825217379749 60.5654106092177 24.2853866686622 60.5655650846944 24.285932157656 60.5667589237109 24.2901481852006 60.5673037328753 24.292072394074 60.5676949472639 24.2933462420922 60.5677394993863 24.2934913079328 60.5710475435432 24.3055755597394 60.5724191308687 24.3043094565486 60.5743064981118 24.3024829947741 60.5754040771241 24.3015566792443 60.5761271630061 24.3008848911306 60.5765491881936 24.3005097053942 60.5765813290344 24.3004677880475 60.57836737009 24.298842712251 60.580856575949 24.2965492486692 60.5809169964338 24.2964935816101 60.5809750886878 24.2964400627793 60.5843429953932 24.2933363763276 60.5843559327235 24.2933244458925 60.5843645806023 24.2933641898782 60.5843699601318 24.293388940697 60.5844279730864 24.2936557459137 60.5864676245981 24.3030371909125 60.5871499317062 24.3061033497711 60.5871524780636 24.3061690493679 60.5871983202356 24.3062438527105 60.587205370691 24.3062553554983 60.5890176337685 24.3092119661724 60.5909124270179 24.3124073601736 60.5910317456654 24.3126252811859 60.5931030533997 24.3161070923837 60.594051510749 24.3177022294813 60.5947255906228 24.3188074878766 60.5987357407575 24.3254487487121 60.6007717220074 24.3288211281015 60.6008200916931 24.3289012661708 60.6037155818201 24.3337053622045 60.6037349959068 24.3337319725201 60.6063771155074 24.3380567799927 60.6080694502036 24.3408861461931 60.6106730000753 24.3452445457421 60.612153713154 24.3477235260345 60.6099132172694 24.3569746505203 60.6089429881649 24.3609795064826 60.6086782678004 24.3619758989992 60.6086492313047 24.3621032522893 60.608297151172 24.3636408713695 60.6080578289648 24.364620127209 60.6077697598656 24.3657987877967 60.6077457758997 24.365896884928 60.6077073437967 24.3660541078854 60.6073988944852 24.3673161067746 60.6073623647541 24.3674655509142 60.6071517211963 24.3683272859633 60.6062675460423 24.3719538519832 60.6061431850502 24.3724617724525 60.6061047737587 24.3726259215061 60.6053792334785 24.3756211884549 60.6053672173262 24.3756726161193 60.6052170314794 24.3762866136062 60.6051941772448 24.3763872708087 60.6037896358052 24.3821462436721 60.6037224435457 24.3824138173077 60.6037066654147 24.3824939207465 60.6036159563242 24.3828877746484 60.6031897133567 24.3846018293396 60.6031049115186 24.384942077049 60.6030622186395 24.3851204825861 60.6030558722509 24.385140473675 60.6030377029531 24.385218739398 60.6021688036102 24.3872304258932 60.6021531563847 24.3872654377389 60.6009667542402 24.3900257493547 60.6001996384322 24.3917888547442 60.5992626961996 24.3939166907024 60.5974663465838 24.3980250949644 60.5966655705235 24.3999060453029 60.5952701360816 24.4031446318565 60.5938810501663 24.4063355706006 60.5933924934381 24.4074293377719 60.5929040179358 24.4086074153901 60.5921219708585 24.4104224166398 60.5916407816419 24.4099151171235 60.590362902814 24.4089883686893 60.5900732536431 24.4086379560381 60.5898301755765 24.4085656280075 60.5862677381233 24.4057135248508 60.5857143731419 24.405293549915 60.5836235909037 24.4035831420141 60.5811287527044 24.4016819579456 60.5772264405313 24.3984865330128 60.5771773527653 24.3984471577125 60.5727280200333 24.4030149019215 60.572612254043 24.4031337203757 60.571604143278 24.4041708024573 60.5709229785462 24.4048563971142 60.5707543360011 24.4050316472601 60.5706289636463 24.4051600924183 60.5687262922703 24.4070885821566 60.5671243460941 24.4087323182626 60.5661964202945 24.409684384621 60.5655821320123 24.4103145875416 60.5643255989998 24.411603654485 60.5619439445957 24.4140348703983 60.5614018476754 24.4145881907202 60.5579694261923 24.4180917838836 60.5576929877232 24.4183804386181 60.5524914803548 24.4236803352313 60.5524914803548 24.4236803352313 60.5530778595153 24.4332520476753 60.5531858717542 24.4350167437683 60.5531875246625 24.4350438678988 60.5535473662421 24.4410023605541 60.553605058248 24.4419996995984 60.5537249919457 24.4440736780365 60.5537720897923 24.4450260539267 60.5537817812922 24.4452058064257 60.5537866243885 24.4452546993789 60.553884440233 24.4468374349401 60.5539281441054 24.4475554765701 60.5542138619295 24.4524303437922 60.5543546543679 24.454796581569 60.5544400133639 24.4562076526447 60.554649897253 24.4596780398092 60.5546807936446 24.4603115355749 60.5550584617831 24.4665246696031 60.5553321873093 24.4711365465215 60.5555912971711 24.4756894087843 60.5558345220132 24.4799766595652 60.5560589515001 24.4837232808365 60.556152572259 24.48535281276 60.5563113678202 24.487920328754 60.5566841622565 24.4939326034269 60.5572424965607 24.5034900745132 60.557330579198 24.5056055413685 60.5574201534434 24.5068753440016 60.5575461417681 24.5089044962167 60.5576813801375 24.5113400703916 60.5583327187433 24.5225119513142 60.558333946484 24.5225355214939 60.5583500588026 24.5228448051221 60.558351997078 24.5228819866811 60.5586109123765 24.5274455167358 60.5587646476888 24.5301564937936 60.5589178980886 24.5328544303842 60.5591473789591 24.5368784457294 60.5591728560666 24.5371844391713 60.5591940992037 24.5375005348211 60.5592153322891 24.5378166133657 60.5592555435102 24.538636034419 60.5593402745648 24.5403345464206 60.5598239714818 24.5486853575022 60.559839923641 24.5489544815262 60.5598634815683 24.5489777676995 60.5598832408172 24.5489991520159 60.5599336467217 24.549053686112 60.5599656321244 24.549088321968 60.5599799426804 24.5491011054237 60.5610426489822 24.5502542940531 60.5638267001242 24.553225230792 60.5643050096432 24.5537650275708 60.5643262158274 24.5537879688849 60.5643291756475 24.5537911576319 60.5644087463414 24.5538785574471 60.5644190590424 24.5538879059223 60.5644420311836 24.5539126117694 60.5652048692012 24.5547573103651 60.5654407622251 24.5550192270489 60.5654643901058 24.555045417834 60.5659473361948 24.5555813225418 60.5671294050251 24.5568665881626 60.5690374001921 24.5589427926822 60.5695328415305 24.5594973626647 60.5733308002764 24.563715134928 60.5734066216556 24.5637987944052 60.5734176254262 24.5638111083286 60.573422293058 24.563816342424 60.5734971176681 24.5639000226614 60.5735192989507 24.5639248201049 60.574607473697 24.5651633133858 60.5750931722275 24.5656747741808 60.5771099412268 24.5677747555784 60.57749455846 24.5681590371418 60.577549880556 24.5682112337434 60.5778576588269 24.5685244436024 60.5780287065416 24.5687055933541 60.5786515459633 24.5693883770002 60.5790992576394 24.5698588913278 60.5813616170095 24.5723606422537 60.5817546530379 24.5727962848272 60.5833686649405 24.5745065498291 60.5834162675267 24.5746007752054 60.5846934872151 24.5759941593161 60.5847133545366 24.5760158235101 60.5847236180779 24.5760270143457 60.5856691914446 24.5770581998137 60.585716334902 24.577124732397 60.585811459145 24.5772593970979 60.585811459145 24.5772593970979 60.5864878378534 24.5766875017014 60.5867121247575 24.5764695488111 60.5877308237846 24.5756364558949 60.5892216512148 24.5743112451983 60.5896389575187 24.573970805503 60.5896390017086 24.573970765662 60.5940753340844 24.5701579554319 60.5941733041825 24.5700737677969 60.5946033666163 24.5697003138387 60.5946676744737 24.5696440616113 60.5947017184807 24.5696158937629 60.5996312096224 24.5653807753316 60.6009606262378 24.5642345348024 60.6012053207365 24.5647294192636 60.6015621125655 24.5661297002462 60.6019171107818 24.5669993784083 60.6022764447153 24.5667053290251 60.6020466249074 24.5660915820313 60.6020247766186 24.5660332300795 60.6018667500383 24.5656112487754 60.6018869742786 24.564727249685 60.6018642748932 24.5642573861253 60.6016712336358 24.5636217992699 60.6024667200203 24.5629334285926 60.6028562093771 24.562973425442 60.6035192943353 24.5630381729166 60.6035590735121 24.5630418415969 60.6036494022634 24.5630501754882 60.6036684596025 24.5630519355772 60.6036850152106 24.5630534458488 60.6037320105331 24.5630577761968 60.6049800763606 24.5631799050158 60.6113091677947 24.5637921476317 60.6149871787091 24.5641480369145 60.6151360631004 24.5641725398538 60.6158770659872 24.5642493841804 60.6173134006529 24.5643821981687 60.6183871677254 24.564510506442 60.6185415060686 24.5645168530069 60.6185424047616 24.5645168766239 60.6197571902342 24.564616607253 60.6212867444193 24.5647474093501 60.6212941072247 24.5647329425382 60.6213421406409 24.5647375643875 60.6237723365651 24.5649724441481 60.6240865251727 24.5650999226888 60.6259396071687 24.565254554588 60.6259553148523 24.5652558747376 60.6260520982225 24.5652640248159 60.6260656467181 24.565265160434 60.6299388401167 24.565588753962 60.6327188858131 24.5657713542802 60.633497876056 24.5657950751137 60.6335265066042 24.5657972132129 60.6335897764741 24.5658019505848 60.6343072640899 24.5658553656847 60.6370704519488 24.5660619368211 60.6384968786948 24.5689048929596 60.640611217036 24.5731166175194 60.6417024934235 24.5753024704752 60.6421725278323 24.57604526308 60.6433141886445 24.577850407386 60.6444415033389 24.5796321121879 60.6466593562463 24.5831175801805 60.6481292065841 24.5854382917224 60.6515017621816 24.5908085837642 60.6529104477351 24.5930142179406 60.6538012062081 24.5944470047002 60.6538588962019 24.5945382026683 60.654673225364 24.595825600014 60.6563549557852 24.5985049341322 60.6577614538312 24.6007324158217 60.6607681205619 24.6055048253853 60.6608965676483 24.6055664824593 60.6609227700255 24.6055790686758 60.6638068301175 24.6069636868923 60.6675688030297 24.6159111786572 60.6675688030297 24.6159111786572 60.6596909060683 24.6367742229845 60.6588164803093 24.6390902970142 60.6602144435901 24.6514654562713 60.6602312053733 24.6516144767079 60.6602398875703 24.6516915730759 60.660249710145 24.6517788904767 60.6600758493154 24.6524077075087 60.6595089980416 24.6544751558016 60.6594527348195 24.654680804348 60.6592480876271 24.6553988517771 60.6572881700741 24.6623998928015 60.656432790529 24.6654448461055 60.6555619048226 24.6686084925887 60.6547404905275 24.6716631008149 60.6546505107144 24.6718879382226 60.6544950344054 24.672466146607 60.6534144752581 24.6765592338796 60.653391662769 24.6766411141625 60.6523453246872 24.6803951293028 60.6521752686786 24.6810141896945 60.65180743488 24.6823247263263 60.6493122707682 24.6912735834955 60.6501641484679 24.712995700789 60.6501695239368 24.7131352285292 60.6502417531348 24.7137347520906 60.6485777667849 24.7282707375451 60.6474964234377 24.7398803099698 60.6485251302674 24.7403311695849 60.6492592190773 24.7406529099216 60.6493571018371 24.740695816729 60.6503880682135 24.7411477213039 60.6503111323017 24.7414821596495 60.6503061270617 24.7415027818918 60.6502723953548 24.7416318605267 60.650253788499 24.7416943627376 60.6502436996568 24.7417245802083 60.650233031116 24.7417539783462 60.650221836397 24.7417825351076 60.6502101151921 24.7418102322177 60.6502001483779 24.7418317139945 60.6500957699339 24.7420324803558 60.6500832691785 24.7420586949985 60.650071353349 24.7420860395964 60.6500601495861 24.7421145967277 60.6500498490635 24.7421445176715 60.6500406599723 24.7421758976292 60.6500329074402 24.7422088419132 60.6500269500142 24.7422433071333 60.6500232235923 24.7422790432346 60.6500221316408 24.7423096185074 60.6500223438947 24.7423461583465 60.6500280537715 24.7424918860064 60.650028643083 24.7425284177563 60.6500280555889 24.7425649403925 60.6500267465483 24.7425879747495 60.6500232461689 24.74262380476 60.6500179880649 24.742658733223 60.6500109196738 24.7426923064208 60.6500017762348 24.74272373787 60.6499904145804 24.7427519947353 60.6499801074462 24.742771414182 60.6499656798354 24.7427930979009 60.649935085712 24.7428313544295 60.6499304960278 24.7428372191815 60.6499155119695 24.7428573317655 60.6499009055656 24.7428785339325 60.649886705271 24.7429009151683 60.6498730202829 24.7429245593085 60.6498599050456 24.742949499134 60.6498474505053 24.7429758014627 60.6498360244553 24.7430039711285 60.6498264862332 24.7430348993685 60.6498196268623 24.743068622313 60.6498163695052 24.7431044899165 60.6498172445007 24.7431409282583 60.6498197334859 24.7431617573633 60.649825739292 24.7431961901151 60.6498324281838 24.743230117697 60.6498382829992 24.7432646525163 60.6498414351195 24.7432965772271 60.6498425077422 24.7433330200685 60.6498411914939 24.7433694836817 60.6498380525334 24.7434054527649 60.6498332842264 24.743440675942 60.6498290883251 24.7434651012929 60.6498222112106 24.7434988436802 60.6498143581236 24.7435317029634 60.6498056636361 24.7435636697257 60.6497775737925 24.74365724037 60.6497741576951 24.7436687859569 60.6497650511419 24.7437002874876 60.6497306673793 24.7438286387448 60.6496843064254 24.7440265451424 60.6496798495855 24.744047219689 60.6496230110845 24.7443157466444 60.6495840644052 24.744480366155 60.6495801217647 24.7444953147513 60.6495096583668 24.7447500832333 60.6494937232742 24.7448155786702 60.649479504339 24.744882710405 60.649473155212 24.7449168908697 60.6494674061965 24.7449515050427 60.649462302149 24.7449865497897 60.649459914254 24.7450058170338 60.6494374536671 24.7452203079199 60.6494326214627 24.745255498243 60.6494267455274 24.7452900479987 60.6494196492473 24.7453236036239 60.6494111464211 24.745355775635 60.6494010199315 24.7453859388709 60.6493891300179 24.7454132615159 60.6493803760383 24.7454294609702 60.6493660330401 24.7454513932892 60.6493356846321 24.7454904160558 60.6495702287304 24.7493001844506 60.6548491174659 24.7517521731264 60.6546080926875 24.7545550202588 60.6544611394652 24.7562629664689 60.654375583162 24.7572702417094 60.6554409420818 24.7593285042234 60.6556113932891 24.7596580044893 60.6560029177073 24.7604132284526 60.6576427332944 24.7619824063587 60.6599216664293 24.7641630460617 60.6575086206666 24.770213384313 60.6562455253068 24.7733794752831 60.6538914344459 24.7792677029751 60.6551565360025 24.7810653456396 60.65665401753 24.7834741695067 60.6606795451382 24.7900902802946 60.6616593341393 24.7916422547471 60.6619678592676 24.7921409738972 60.6620941231704 24.7923428566886 60.6623691955128 24.7927875447942 60.6628114469763 24.7934993434028 60.6632015313449 24.794114321575 60.6632862552623 24.7942499502427 60.6633400833375 24.7943360793663 60.6635169991792 24.7946190734826 60.6635313806327 24.7946420665216 60.6649502150713 24.7969120967613 60.6671943920248 24.8004790949898 60.6673581220329 24.8007393867918 60.6681302241785 24.8019748825026 60.6688069114158 24.8030577699778 60.6696459586362 24.8044005929777 60.6704132684541 24.8056286608248 60.6708057856984 24.806251028594 60.6714217226569 24.8072277230159 60.6719256891282 24.8080268877093 60.672826745713 24.8094558084944 60.6711909420555 24.8127653244829 60.6703807902551 24.8144066781453 60.6684753165669 24.8183289117252 60.6684480193746 24.818500781991 60.6684276130689 24.8186700255312 60.6684169080475 24.818758854857 60.668363919295 24.8191692637285 60.6678148096964 24.823421673818 60.6677397760207 24.8240056786414 60.6671750509846 24.8283966942891 60.6663198850561 24.8350436435055 60.6663198850561 24.8350436435055 60.6593013884768 24.8356010356385 60.659336845462 24.8387437672013 60.6633814848653 24.8381801952119 60.6633762626954 24.8376327482491 60.6648570823248 24.8373586548992 60.6648676179714 24.8379263986337 60.6665834668519 24.8377049051032 60.6665790403614 24.8386722616007 60.6664002585229 24.8387005400489 60.6649126336285 24.8389053794417 60.6649272019639 24.8393488662872 60.6634133604098 24.839553811192 60.6633937405176 24.8391033809615 60.663048509649 24.8391616803913 60.66043131047 24.8395790254009 60.6593487439077 24.8397596254081 60.6593568731265 24.840454346343 60.6593868032015 24.8421916411794 60.659386657468 24.8430079182549 60.6593930500332 24.84343978068 60.6594089947983 24.8445161456061 60.6594315803364 24.8460425299074 60.659450884579 24.8474067192363 60.6594962067186 24.850611687956 60.6595213075776 24.8525387787053 60.6595216235103 24.8525629507012 60.6595227654306 24.8526503685323 60.6595313196262 24.8533074396356 60.6595470036732 24.8545137052555 60.6595548154277 24.8551138024781 60.6595627291698 24.8557226772472 60.6595709489519 24.8563553222786 60.6596207507959 24.8598544425924 60.6596209506865 24.85986863039 60.6596299040294 24.8604978241912 60.6596300140643 24.8605058324401 60.659641139274 24.8612885686857 60.6596531366929 24.8621323888881 60.659666353642 24.8630636226137 60.6596672460978 24.8631262787591 60.6596781725777 24.8638958347318 60.6596803223244 24.8640474388157 60.6596857700204 24.864431092512 60.6596867427598 24.8644999472056 60.6596932072204 24.8649558749569 60.6596937197016 24.8649919476158 60.6597146107778 24.8664655732169 60.659721859806 24.8669773571352 60.6597391562937 24.8676920498892 60.6597529979927 24.8690863725734 60.6597559744211 24.8693856429661 60.6597766632997 24.8708490372212 60.6597895837431 24.8717626167637 60.65979955076 24.8724681517662 60.6598126618448 24.8733966892338 60.6598203476864 24.8739410392224 60.6598286791911 24.8745318480463 60.6598364297778 24.8750805678894 60.659854969391 24.8764169389015 60.659889757373 24.8788642823082 60.6599581452062 24.8837286782699 60.6601126550688 24.8938408413599 60.6601045140258 24.8941802783708 60.660422450112 24.8942995677796 60.6608372109846 24.8945407518157 60.6619067293736 24.8949239411292 60.6630570818637 24.8949525278892 60.6630582497 24.8949525431458 60.663731529786 24.8949884705211 60.6640743576944 24.8949013119801 60.664052264954 24.8953372776188 60.6639151631341 24.8985372966086 60.6633493388386 24.9111846212753 60.6632340146718 24.9140144189262 60.6629285409574 24.920875257246 60.66430638406 24.9211194122994 60.665654887709 24.9213753809897 60.6675333548716 24.9217104484173 60.6697595823423 24.9308310442247 60.6691200972053 24.9318575815248 60.6698243863177 24.9359740039241 60.6705054444941 24.9353990367207 60.6709826459807 24.9349950179964 60.6724973372414 24.933626838571 60.673104049205 24.933078766284 60.6736805601726 24.9325944546365 60.6737465748567 24.9330506636798 60.6738125793049 24.9335068934859 60.6752152665021 24.9433994402314 60.6758128488581 24.9477495871139 60.6760344764518 24.9492758734219 60.6768006153516 24.9548900159869 60.6771318245854 24.9573176971674 60.6773039054601 24.9584761244988 60.6777136663947 24.9611317730272 60.678724847909 24.9682873268997 60.6792438101935 24.972050434518 60.6796565561028 24.9749339867698 60.6800949090313 24.9780014410139 60.6810787653573 24.9925996965571 60.6811854017807 24.9941691843929 60.6812876335638 24.995694641216 60.6815064581059 24.9988344180816 60.6815336355532 24.9992329925985 60.6816879973167 25.0014611915188 60.6818010740492 25.0031479715233 60.6818050347075 25.0032070022449 60.6824669195696 25.0130660618723 60.6828122286179 25.0181920104274 60.6818639530995 25.0287638875825 60.6832457778468 25.0292528510114 60.6834792716538 25.0300357264296 60.6837596975726 25.0309176744218 60.6840014746957 25.031690416752 60.684992121082 25.0348664313299 60.6841337865933 25.0360650914223 60.6836284810561 25.036758954062 60.6830552310398 25.0390409732437 60.6820769941649 25.0428434222661 60.6805295862916 25.0435400066405 60.680061258041 25.0486665517636 60.6800479389415 25.0489007848271 60.6798344686893 25.0512874007665 60.6797523595522 25.0521977182496 60.679635934211 25.0534730198248 60.6784781957272 25.0544215806699 60.6771572691489 25.0554891347011 60.6770462010967 25.055589982504 60.6763850361368 25.0561251468351 60.6760388703249 25.0564072363026 60.6759897562184 25.0564476760609 60.6758023077452 25.0565846869275 60.6735724027412 25.058395905996 60.670735865578 25.0606836447829 60.6696826202647 25.0615311772925 60.6694739351462 25.057328343631 60.6694650523495 25.0571494190999 60.6695068973097 25.0569861808242 60.6692557464701 25.0566299922119 60.6690332111299 25.056428678702 60.6690199701146 25.0564167188481 60.6690293914675 25.0565986468287 60.6690344456963 25.0566962712931 60.6690875466352 25.0579445335666 60.6692529054079 25.0618686927423 60.6690674955715 25.0630680233282 60.6690491346385 25.0631869709846 60.6690429027804 25.0632273956632 60.6690375160564 25.0632622965047 60.6679220562969 25.0706476456833 60.6672402667911 25.0748138578623 60.6643352807789 25.0941165026848 60.6630900212865 25.1022743229696 60.6616745294757 25.1118877935555 60.6616455692263 25.112112182325 60.6615962184149 25.1124618017329 60.6615962184149 25.1124618017329 60.6626316285212 25.1132227364448 60.6632435309204 25.1127115982975 60.6633161475237 25.1126540552155 60.6633233666672 25.1126482155371 60.6666486654957 25.1098977426818 60.6681282471289 25.1087743208877 60.6700180458305 25.1072852714721 60.6756646058791 25.1028621959455 60.6800475625579 25.0993516246666 60.6817284449769 25.0980286125999 60.6830997049709 25.096956355672 60.6850281275036 25.0954143889207 60.686061090111 25.0945893994616 60.6863484327121 25.0943594816568 60.6873069404695 25.0935965400267 60.6881670259214 25.092915223377 60.6884094110465 25.0927297147067 60.6885503562935 25.092617355087 60.6890706619632 25.0922103185946 60.689079046533 25.0922037594349 60.6899061536613 25.0915499821222 60.691716857815 25.0901187637536 60.6923221657853 25.0896402752846 60.6950795071787 25.0874668561271 60.695247696108 25.0873293092443 60.6967494968825 25.0861433619266 60.6984162378243 25.0848397265606 60.6990565545321 25.084334896912 60.6992081794145 25.0842193166324 60.7005554736527 25.0891553380583 60.7005598143582 25.08917380576 60.7007306467104 25.0898003310024 60.7012399241164 25.0916304090384 60.7016839692513 25.093313683273 60.7022588605187 25.0954043166092 60.7031910313743 25.0987945879202 60.7046662137976 25.1042360199283 60.7050621123072 25.1056664400871 60.7050884839701 25.1057639149381 60.7051044509905 25.105822933861 60.705898702408 25.1087002518783 60.706989093975 25.1127739771478 60.7072661016104 25.1138056297728 60.7073749710171 25.1142111079147 60.7074597942949 25.1145429522398 60.7074747004612 25.1145989813863 60.7086014582213 25.1187742611088 60.7087764461686 25.119422219872 60.7090611020928 25.1204772163991 60.7100297653878 25.1240610268632 60.7102657137126 25.1249354091704 60.7120798506375 25.1315683007066 60.7122187170827 25.1320003635385 60.7122207226316 25.1320070103889 60.7122281321909 25.1320315255661 60.7124045845697 25.1326152625653 60.7137809430148 25.1371754510312 60.7139948477739 25.1378767316374 60.7151309513523 25.1416414937429 60.7153290486245 25.1423035832214 60.7164617093416 25.1460623979213 60.7172366035838 25.150588393848 60.7172492787711 25.1506628424018 60.7184925666884 25.1580047514683 60.7187711473653 25.1595601128109 60.7188073270888 25.1597796434369 60.7191572651939 25.1619616659776 60.7197904530345 25.1657508657558 60.7207339421281 25.1712496606881 60.7207524557406 25.1713592680642 60.7222735637522 25.1795834468794 60.722307831311 25.179769762623 60.7228766146795 25.1828581020731 60.7233177980495 25.1852455299142 60.723499409468 25.1861244843862 60.7237826780968 25.1876943734344 60.7241487904564 25.1897236331865 60.7247825865999 25.19306658844 60.7248023120267 25.1929256352277 60.7257244023193 25.1863347814695 60.726000247089 25.1843712197778 60.7266921608929 25.1794925266565 60.7278457463498 25.1711152679663 60.7278873044652 25.1708173973552 60.7296580657127 25.1581206902987 60.7300491658669 25.1554423297125 60.7314746615529 25.1454766710338 60.7315743071474 25.1453010434622 60.7325904932188 25.1435151220952 60.7333028752992 25.1422620183025 60.7339928280799 25.1410495700678 60.7345273585227 25.1401090221013 60.7379764569086 25.1341145744169 60.7381686029924 25.1337759714121 60.7390277185806 25.1322619670955 60.7407824165879 25.1291960003869 60.74109319448 25.1286449284294 60.7426313214064 25.1259554358879 60.7427915527348 25.125685925471 60.7431102367388 25.1251444133994 60.7435834294084 25.1242661665837 60.7439634169585 25.123584528698 60.7442603024534 25.1230723196014 60.7445695856189 25.122516279072 60.7466170465779 25.118907669548 60.7466381047109 25.1188588777504 60.7466496005675 25.1188307372013 60.7466605723338 25.1188017282445 60.746670380042 25.1187710443228 60.746677897617 25.1187377972515 60.7466795785829 25.118728304453 60.7466840022708 25.1186928165197 60.7466845992066 25.1186643048489 60.7466759500755 25.1186335272459 60.7466589880446 25.1186228324807 60.7466410737835 25.1186236428696 60.7466233653585 25.1186295237031 60.7465362270227 25.1186732123103 60.7465219208019 25.1186789856384 60.7465041110407 25.1186834044876 60.7464861914326 25.1186851142165 60.7464682652868 25.1186837968601 60.7464504059608 25.1186802004074 60.7464327619964 25.1186765913491 60.7463612842224 25.1186631620684 60.7463440665546 25.1186579317747 60.7463264550035 25.1186508713804 60.7463090190081 25.1186422411189 60.7462745850323 25.1186216339586 60.7462675514624 25.118617036734 60.7462166736555 25.1185810626036 60.746199936616 25.1185678411472 60.7461931314389 25.1185622397731 60.7461439028184 25.1185177107723 60.7460320600501 25.1184008324061 60.746023645912 25.1183919309279 60.7458458972035 25.1182164566072 60.7458405357306 25.1182113396052 60.745694708645 25.1180694456938 60.745683082628 25.1180575766771 60.7455245068132 25.1178859002049 60.7455209577599 25.1178819431439 60.7453624260803 25.1177051101053 60.7453517192833 25.1177267453387 60.7453387008471 25.1177519653205 60.7453360746906 25.1177568161456 60.7453086462534 25.11780409002 60.7452906061495 25.1179226448054 60.7451354318092 25.1190944890467 60.7448155604434 25.1187056077571 60.7447492825862 25.1177186420867 60.7446764840558 25.1177307772767 60.743686545491 25.1179383966645 60.7433614865503 25.1163392164739 60.7428677763057 25.1165617077294 60.7425794850802 25.1166915969427 60.7423161499261 25.1174892070321 60.7403270588294 25.1143729586758 60.7404475731307 25.1135869467758 60.7404839362306 25.1135058560704 60.7404933677289 25.1134823530087 60.7405033011645 25.1134517576831 60.7405083916436 25.1134165301823 60.7405115932664 25.1133804596118 60.7405140100688 25.1133441415854 60.740515660771 25.1133076300417 60.7405169831008 25.1132343745704 60.7405168626635 25.1131977285097 60.740516215153 25.1131587285536 60.7405152951918 25.1131239822681 60.7405128203897 25.1130508579945 60.7405118656457 25.1130327892788 60.7405061588818 25.1129603867807 60.7405025910966 25.1129244751429 60.7405007512286 25.11290860476 60.740498557677 25.1128912141738 60.7404981335926 25.1128878819573 60.7404755918124 25.1127104712626 60.7404703829186 25.1126753715046 60.74046799828 25.112660358661 60.7404620423161 25.1126257797567 60.7404554641401 25.1125916593365 60.7404482383799 25.1125581089614 60.7404402947968 25.1125252428271 60.7404314754824 25.1124933270371 60.7404217378923 25.1124625291956 60.7404118498364 25.1124350789729 60.7404003272727 25.1124069909685 60.7403878587984 25.1123806095744 60.7403745187816 25.1123561138715 60.7403602844314 25.1123337987153 60.7403451875712 25.1123140107871 60.7403370568304 25.1123048573065 60.7403208409589 25.1122891526422 60.7403041038266 25.1122759735015 60.7402871496403 25.1122639628444 60.7402772026323 25.1122572091685 60.7402595221171 25.1122510197944 60.7402416769562 25.1122471698818 60.7402058574235 25.1122424128162 60.7401947868791 25.1122406965774 60.7401235987154 25.1122217451718 60.7401146156142 25.1122196678554 60.7400610064492 25.1122099019889 60.7400433023659 25.1122039525448 60.7400322345714 25.1121986039268 60.7400151563567 25.112187352824 60.7399985952699 25.1121732829762 60.7399665876503 25.1121401064698 60.7399591397649 25.1121322521847 60.7398790703193 25.1120495618538 60.7398728662327 25.1120426618436 60.7398420365232 25.1120051237806 60.7397976141677 25.1119430138071 60.7397832239068 25.1119211119647 60.7397801848141 25.1119163925134 60.7396691514333 25.1117305186553 60.7396635380436 25.1117209241042 60.7395795684495 25.111583229738 60.7395754782456 25.1115765725675 60.7394657032062 25.1113876186266 60.7394392483753 25.1113380658798 60.7394303217497 25.1113208698283 60.7392909935348 25.1110352192652 60.7392855122467 25.1110241679881 60.7391826818436 25.1108195103757 60.7391581554368 25.1107659745547 60.7391494497166 25.1107459775136 60.7391264741245 25.1106896907451 60.7391048412212 25.1106311788669 60.7390945748789 25.1106011293388 60.7390861620855 25.1105751533259 60.7390674538009 25.1105125990636 60.7390502469423 25.1104482506062 60.7390421523681 25.1104155420252 60.7390385160485 25.1104003100851 60.7389938012054 25.1102002370296 60.7389911733819 25.1101890182202 60.7389663139275 25.1100914770673 60.7389482939761 25.1100280756971 60.7389413673761 25.1100049659448 60.7389216798337 25.1099436805732 60.7389111580194 25.1099139949878 60.7388999243395 25.1098854152355 60.738887787839 25.1098584111465 60.7388802290601 25.1098433366311 60.7388666796846 25.1098193140118 60.7388523152271 25.1097973571837 60.7388372431105 25.1097774414843 60.7388216230478 25.1097594291118 60.7388055678184 25.1097430382726 60.7387891576663 25.1097282275577 60.7387808172835 25.1097214171694 60.7387639794576 25.1097087595243 60.7387469166602 25.1096973441656 60.7386775085438 25.1096600790132 60.7386742348632 25.1096584738449 60.7385518530539 25.1096004774454 60.7385386483928 25.1095945402273 60.7383450969805 25.1095151223592 60.7383318218909 25.1095099231022 60.7383174382288 25.1096082840661 60.7383026090288 25.109686511452 60.7372585311136 25.1112055800706 60.7370851002496 25.1112366451805 60.7370464478203 25.111241814544 60.736949855571 25.1111446416147 60.7369385299164 25.111132467113 60.7368760913643 25.1110601417161 60.7368307476761 25.1110008809376 60.736818873416 25.1109841897524 60.7367898503691 25.1109410471934 60.7367756847369 25.1109185293046 60.7367714096116 25.1109114984605 60.7367441107919 25.1108638891175 60.7367309445515 25.110839001371 60.7367269821354 25.1108312184584 60.7367018264435 25.1107789159472 60.736654209078 25.1106692002902 60.7366518218356 25.1106635809886 60.7365988845415 25.1104720581507 60.7365966026429 25.1104637179628 60.7365627549114 25.1103344107731 60.7365477880288 25.1102677896225 60.7365459560113 25.1102588727343 60.7365393949384 25.1102247375686 60.7365335186078 25.1101901219366 60.7365283985477 25.1101550032884 60.7365242408872 25.1101193511603 60.736522442126 25.1101000503929 60.7365198921675 25.1100637718175 60.7365183269455 25.1100272702657 60.736517568284 25.1099906479235 60.7365173477568 25.109953975599 60.7365174136255 25.1099344368085 60.7365205579251 25.1097879693126 60.7365271636997 25.1096386018513 60.7365286271298 25.1096054439859 60.7365297156329 25.1095832770739 60.7365609029607 25.1093429148484 60.7365618907299 25.1093352628838 60.7365726608347 25.1092653491131 60.7365755800909 25.1092475500867 60.7365916834174 25.1091590715652 60.7366005939299 25.1091101410468 60.7366081823918 25.1090738163367 60.736643011441 25.1089070681997 60.7366567900607 25.1088333452394 60.736675001853 25.1087358276493 60.7366795751274 25.1087105023868 60.7366970123068 25.1086064635258 60.7367020030826 25.1085712635989 60.736706242338 25.1085356309702 60.7367088648429 25.1085088979929 60.7367115869905 25.1084726759384 60.7367132815109 25.1084361841787 60.7367138515065 25.1083995568186 60.7367131103465 25.1083629332443 60.7367121152401 25.1083426863626 60.7367092427989 25.1083065000426 60.7367050133773 25.1082708888423 60.7366995546716 25.1082359919929 60.7366929843703 25.1082018759428 60.7366888777035 25.1081832429379 60.7366806408236 25.1081506740717 60.7366623021041 25.1080876638539 60.7366235858651 25.1079641848722 60.7366144917048 25.1079326020644 60.7366059897013 25.107900342424 60.7366032593615 25.1078888738612 60.7365961211426 25.1078552499773 60.7365898970857 25.1078208569313 60.736579415248 25.1077507628555 60.7365774141107 25.1077356011928 60.7365689280368 25.1076643808337 60.7365619857815 25.1075924643155 60.7365607368369 25.1075771483312 60.7365558588458 25.1075045050083 60.736551214643 25.1073949791568 60.7365506827059 25.1073770163081 60.7365490921389 25.1073037759307 60.7365486716381 25.1071938179908 60.736548858319 25.1071758678585 60.7365655413639 25.1069141625074 60.7365676784585 25.1067881874434 60.7365679110525 25.1067747652368 60.736568541043 25.1067653183312 60.7365694745083 25.1067512862209 60.7365702521362 25.1067395744675 60.7365679486912 25.1065974258698 60.7365678750214 25.1065928445359 60.7365606704521 25.1065659933241 60.7365384259942 25.106483385849 60.7365226716768 25.1064247368834 60.7364856483306 25.1062991429546 60.73647574195 25.1062685807467 60.7364733876584 25.106261492443 60.7364416259962 25.1061727143578 60.7364191042542 25.106115638358 60.7364090712588 25.1060913752413 60.7363730360185 25.106009691081 60.7363475731986 25.1059580345824 60.7363360704474 25.1059365361832 60.7363086489144 25.1058892690291 60.7362658988448 25.1058224165896 60.7362592804531 25.1058122779757 60.7361873500702 25.1057027197852 60.7361410641634 25.1056398730985 60.7361101296724 25.1056026817353 60.7360784604893 25.1055681567066 60.7360624224447 25.1055517499584 60.7360526492968 25.105542072521 60.7360200294588 25.1055114555398 60.7360035094448 25.1054971682849 60.7359868208376 25.1054836613601 60.7359699659679 25.1054710997081 60.7359596545122 25.105464003635 60.7359252088035 25.1054433626053 60.7358203924141 25.1053930642518 60.7358029312537 25.1053846287688 60.7357892168215 25.105377586587 60.7356863911942 25.1053124608747 60.7356786094504 25.1053070683724 60.735594034239 25.1052458564469 60.7355772789994 25.1052327205897 60.7355696484139 25.1052265855295 60.7354031113203 25.1050850981354 60.7352157147828 25.1049584515723 60.7352081968781 25.1049533004655 60.7351406598579 25.104903650096 60.7351239302103 25.1048904213787 60.7351175075699 25.1048852424177 60.7350679375762 25.1048423283924 60.7350517974626 25.104826332047 60.7350359889171 25.1048090139003 60.7350299249298 25.1048018879334 60.735014654504 25.1047826121946 60.7349998143518 25.1047620088384 60.7349854229372 25.1047401134609 60.7349577400795 25.1046934516193 60.7349426363298 25.1046656372212 60.7349169807691 25.1046143622433 60.7349046771345 25.1045876850841 60.7348985118442 25.1045733935353 60.7348928020491 25.1045601939818 60.7348814444689 25.104531828666 60.7348692639502 25.1044986146499 60.7348591103168 25.1044683808965 60.7348495121526 25.1044374174229 60.7348230479772 25.1043416567818 60.7348184627914 25.1043241540482 60.7347938821346 25.1042263199534 60.7347862197988 25.1041931698403 60.7347789829932 25.1041596278138 60.7347752844947 25.1041413208282 60.7347688467265 25.1041071264252 60.7347629772838 25.104072476659 60.7347576861763 25.1040374443046 60.7347530187886 25.1040020633666 60.7347499900385 25.1039758666771 60.7347463926985 25.1039399457605 60.7347433939715 25.1039038061276 60.7347408961872 25.1038675269041 60.7347388096121 25.1038311133811 60.7347375159562 25.1038044108571 60.734731346951 25.1036215782272 60.7347311286958 25.103614401171 60.7347265256932 25.1035048428522 60.7347241083021 25.1034685405899 60.7347209663933 25.1034324461514 60.7347202448431 25.1034252437661 60.734716201281 25.1033895326809 60.7347113999005 25.1033542148061 60.7347059573554 25.1033192832614 60.734699945692 25.1032847521395 60.7346970576675 25.103269148722 60.7346935964028 25.103250479392 60.7346901375688 25.1032326169547 60.7346832642833 25.1031987603194 60.7346760628645 25.1031651981841 60.7346684710176 25.1031319709086 60.7346603657086 25.1030992691698 60.7346516503055 25.1030672454041 60.7346468464257 25.1030508013153 60.7346371861604 25.103019915486 60.7346163063664 25.1029602901548 60.7346095952554 25.1029423445872 60.7345982545049 25.1029139240593 60.7345918424059 25.102898070148 60.7345868617235 25.1028856350128 60.7345745572299 25.1028589221405 60.7345665048182 25.1028432934444 60.7345527627584 25.1028197101425 60.7345382241888 25.1027982281213 60.7345230828936 25.1027785791615 60.7345179965802 25.1027726432114 60.7345109654948 25.1027644559782 60.7344950375435 25.1027476047065 60.7344787611312 25.1027321496307 60.7344622236582 25.1027179205174 60.7344493077228 25.1027076595446 60.7343814371475 25.1026598871767 60.7343711034506 25.1026525001898 60.7343542985307 25.1026396808989 60.734337651915 25.1026259902302 60.7343212238232 25.1026112412163 60.7343146470471 25.1026046963236 60.7343050913845 25.1025951725263 60.7342953594194 25.1025846136795 60.734279788617 25.1025663475802 60.7342645957824 25.1025468669985 60.7342497986025 25.1025261525503 60.7342211098667 25.102482084122 60.7341793371002 25.1024127066654 60.7339935761307 25.1021245257133 60.73398806176 25.1021162675529 60.7334275368547 25.1010725435287 60.7329506123239 25.1001845423192 60.732189943142 25.0991294625979 60.7321597568612 25.0990843697348 60.7321378079164 25.0990571484545 60.7321155261543 25.0990393920894 60.7320902901482 25.099026102027 60.7320397871165 25.0990036686718 60.7319428024525 25.0989630943907 60.7318437469599 25.0989265859045 60.7317187576975 25.0988788831751 60.7317078344522 25.0988692036764 60.7315438693472 25.0987202408453 60.7314153758918 25.0985894655464 60.7313997919276 25.0985722124371 60.7313684709418 25.0985364131962 60.7312765110067 25.0984220750446 60.7311879208916 25.0982971212906 60.7311790733402 25.0982837247973 60.7311647241918 25.0982617223095 60.7310531691476 25.0980772037201 60.731043149877 25.0980597135679 60.7309632925882 25.0979122376226 60.7309255214782 25.0978339066047 60.7308901468773 25.0977510508408 60.7308796740138 25.0977243812857 60.7308580532214 25.0976658737545 60.7307977663323 25.0974836987563 60.7307977663323 25.0974836987563 60.7307870675754 25.0973759273631 60.7307816211409 25.0973034970892 60.7307809424551 25.0972917449908 60.7307791586878 25.0972552817042 60.7307743437074 25.0971090161916 60.7307733500472 25.0970839316289 60.7307713513841 25.0970475177578 60.7307681365015 25.0970114693057 60.730762746425 25.0969765582741 60.730754520122 25.0969411365677 60.730750476542 25.0969264292693 60.7307369179946 25.096877256871 60.7307314415355 25.0968527127778 60.7307250998568 25.0968184633393 60.7307209784776 25.0967818267389 60.7307176027846 25.0967458429042 60.7307130303771 25.0967078025461 60.7307087245738 25.0966796863734 60.7307028086278 25.0966450633403 60.7306948675601 25.0966082311011 60.7306529359831 25.0964456590427 60.7306519970223 25.0964415149164 60.7306456122031 25.0964099274018 60.7306399951789 25.0963780193509 60.7306082666138 25.096162393186 60.7306014992232 25.0961247397575 60.7305791447853 25.0960247386279 60.7305718853942 25.0959884898458 60.7305677531267 25.0959707069909 60.7305512975494 25.0959591373715 60.7305459195396 25.0959586122426 60.7305285587335 25.0959522312495 60.730515155767 25.0959399673793 60.7305114051293 25.0959326153604 60.7305065769653 25.0959145253102 60.7304957183893 25.0958853853536 60.7304910452906 25.0958744201176 60.7304784257499 25.095848392118 60.7304646391736 25.0958249273945 60.7304499529408 25.0958038817364 60.7304348449697 25.0957841264829 60.7304043020866 25.0957456257126 60.7303890491082 25.0957264109395 60.7302981841258 25.0956084064888 60.7301250682386 25.0953611425969 60.7301058236984 25.0952803252784 60.7300506969939 25.0953358021551 60.7300063486558 25.0951846566017 60.7299488977877 25.0951384898165 60.7298685727245 25.0951593317402 60.7298093860989 25.0949802559793 60.7298206685394 25.0948129418667 60.7297321266625 25.0945898877517 60.7296940161868 25.0944764464291 60.7296544488071 25.09441847494 60.7296430574238 25.094222979798 60.7295533993713 25.0939202210464 60.7294511092518 25.0937504349488 60.7293799218403 25.0936281735187 60.7293484389272 25.0935703478015 60.7293197669587 25.0934045243841 60.7292790005891 25.093316587319 60.7292148275538 25.0932316339586 60.7292064101479 25.0930521400775 60.7291778966052 25.0929618999421 60.7291974211934 25.0928160690338 60.7291597397632 25.0927259511433 60.7291382259871 25.0925709646325 60.7290645579179 25.0924852560137 60.7291177450337 25.092323839335 60.7290926458027 25.0922110245185 60.7290468600253 25.092176220541 60.7290375750578 25.0920715452667 60.7290324498458 25.0920528140411 60.7290234947696 25.0920319077357 60.7290128022315 25.0920069233697 60.7290003969545 25.0920105202744 60.7289913987163 25.0920332804139 60.7289715672458 25.0920968995436 60.7289690414798 25.0921049532771 60.728957027551 25.0921316333407 60.7289427881575 25.0921376129802 60.7289321412849 25.0921309826874 60.7289221171852 25.0921125788643 60.7289142860894 25.09207977765 60.7289116795154 25.0920392393917 60.7289120336496 25.0920287838258 60.7289144716453 25.0919924758233 60.7289153997596 25.0919807025081 60.7289173510984 25.0919442766685 60.7289173507124 25.091937308096 60.7289167304626 25.0919006680841 60.7289175536459 25.0918651160747 60.7289246423555 25.0917561503423 60.7289251547218 25.0917385150576 60.7289249028441 25.0917018898534 60.7289227689128 25.0916655413921 60.728918579461 25.0916299017588 60.7289125529222 25.0915970669129 60.7289038706979 25.0915650498808 60.7288921260117 25.0915374508003 60.7288870285704 25.0915288775631 60.72887196302 25.0915089943529 60.7288606463633 25.0914956921884 60.7288451094479 25.0914773957487 60.728830353365 25.0914565406246 60.7288172017789 25.0914316842143 60.7288126916654 25.0914208388731 60.7288026507282 25.0913905347476 60.7287866733302 25.0913248966099 60.7287827826773 25.0913089898189 60.7287743472025 25.0912766465916 60.7287652048131 25.0912451155539 60.7287551717664 25.0912147377045 60.7287514886396 25.0912045768545 60.7287401810661 25.0911761451982 60.7287282942936 25.0911486648606 60.7287160144136 25.09112195975 60.7287035161966 25.091095689402 60.7286663869136 25.0910160499035 60.7286546582361 25.090988321903 60.7286436051028 25.0909594718581 60.7286326129501 25.0909304898446 60.7286211295062 25.0909023255638 60.7286091819526 25.0908749957407 60.7285968315371 25.0908483867096 60.7285840887991 25.0908226078743 60.7285709268191 25.090797660833 60.7285595552855 25.0907773571002 60.7285456635468 25.0907541405409 60.7285313736453 25.0907319745819 60.7285196988513 25.0907149714392 60.7285050891959 25.0906936863959 60.7284911979648 25.0906705065572 60.7284867564028 25.0906613261324 60.728476415945 25.0906314437674 60.7284677839401 25.0905991860407 60.7284516467273 25.0905337051564 60.728445001489 25.0904996974032 60.7284420096538 25.0904788045395 60.7284386858613 25.0904428024239 60.7284371602088 25.090406308429 60.7284371761712 25.0903330282581 60.7284372554877 25.0903007667519 60.7284363838023 25.0902641605715 60.7284345339858 25.090242741454 60.7284283067643 25.0902084522148 60.7284190939059 25.0901770360224 60.7284120599304 25.0901573552044 60.7284006552584 25.0901290583393 60.7283884448758 25.0901022030469 60.7283754577917 25.0900769343094 60.7283333979222 25.0900023758809 60.7283197581842 25.0899785763633 60.7283065873369 25.0899536487291 60.7283017347174 25.0899433559103 60.728290268493 25.0899151545623 60.7282796018633 25.0898857137627 60.7282693570689 25.0898556244301 60.7282635483419 25.0898381082289 60.7282533125102 25.0898080183935 60.7282423113991 25.0897790559831 60.7282384843979 25.0897701509874 60.7282257414551 25.0897443728678 60.7282115636035 25.0897218891658 60.7281961294301 25.089703257749 60.7281812825397 25.0896892859887 60.7281644341518 25.0896766617929 60.7281474037542 25.089665130364 60.7281381118924 25.0896590623733 60.7281210556177 25.089647605852 60.7281040915212 25.0896356854175 60.7280879658549 25.0896239902534 60.7277644565351 25.0894040302613 60.7277610840081 25.0894018100588 60.7277558953186 25.0893988175538 60.727745454604 25.0893927996343 60.7276594626751 25.0893404935917 60.7276424898395 25.0893285923416 60.7276340861513 25.0893218299471 60.7276176228209 25.0893072394778 60.7276012096729 25.0892923893141 60.727584528963 25.0892789303885 60.7275673355173 25.0892685643315 60.7275495960313 25.0892633652715 60.7275291531446 25.089265716919 60.7275114702303 25.0892720488691 60.7274938705916 25.0892791827187 60.7274761526617 25.089284948269 60.7274582471235 25.0892870024291 60.7274400664281 25.0892848736302 60.7274224078919 25.0892784228156 60.7274094299411 25.0892701902104 60.7273921926477 25.0892548573411 60.7273805501705 25.0892445466063 60.7273654153733 25.0892248711986 60.7273363078075 25.0891819855964 60.7273291805455 25.0891708931505 60.7272423588808 25.089040850114 60.727212123551 25.089001387612 60.7272083304314 25.0889967536023 60.727099318021 25.0888693139516 60.7269944955731 25.0887214367231 60.7269797937687 25.0887019010918 60.7269342684712 25.0886432320001 60.7269255083821 25.0886316317303 60.7268663188514 25.0885487263389 60.7268520135967 25.0885280303815 60.7267925401633 25.0884460040906 60.7267832471469 25.0884348206849 60.7267205568094 25.0883633831487 60.7267062346039 25.0883465391782 60.726660296986 25.0882891975239 60.7266551275444 25.0882825183873 60.7266104361577 25.0882212520308 60.7265962319194 25.0881988266862 60.7265870530293 25.0881830523582 60.7265207466984 25.0880595884247 60.7265068808942 25.0880363362599 60.7265036103713 25.088031194628 60.7264758700373 25.0879847092227 60.7264609372839 25.087957174684 60.7264588927832 25.087952987044 60.7264482198736 25.0879313238144 60.7264355811272 25.0879053215914 60.7264219751883 25.0878751043751 60.7263871198424 25.0877913231039 60.7263759604431 25.0877626291648 60.7263438084251 25.0876744515358 60.7263431528548 25.0876725651389 60.7263334578158 25.0876445360126 60.7263312455149 25.0876380295935 60.7263211147864 25.0876077892892 60.7263112129131 25.0875772236656 60.7263015932117 25.0875462928778 60.7262972548476 25.0875317713088 60.7262710353106 25.0874357781652 60.7262671741726 25.0874207148079 60.726220210644 25.087222883936 60.7262129786155 25.0871893541727 60.7262059329261 25.0871556666451 60.7261991598248 25.087122201297 60.7261925042367 25.087088160529 60.7261860088519 25.0870540185607 60.7261602481588 25.0869171993041 60.7261575720509 25.0869033674782 60.7261367269391 25.0868020128691 60.7261213050566 25.0867358175184 60.7261163468075 25.0867162537116 60.7261077954169 25.0866840495676 60.7260988459743 25.0866522725337 60.726089517211 25.0866209765069 60.7260598729299 25.086529222572 60.7260382083307 25.0864661128131 60.7260359529374 25.0864597374539 60.7259384660024 25.0861967949674 60.7259299753079 25.0861738842473 60.7258959079336 25.086088757246 60.7258930598441 25.0860817570929 60.7258828559199 25.0860577381755 60.725881035169 25.0860535007383 60.7258692439746 25.0860258722932 60.7257987862679 25.0858596263957 60.7257259748779 25.0856964918552 60.7257135014863 25.0856701511695 60.7256370544279 25.0855153203461 60.7256288026896 25.0854990886366 60.7256277501723 25.0854970792632 60.7256157532464 25.0854739192658 60.7255895067719 25.0854239377655 60.7255759525649 25.0853998986988 60.7255619738399 25.085376948445 60.7255524339682 25.0853623337671 60.7255377205075 25.0853413892975 60.7255225677238 25.0853217545588 60.7255070804184 25.0853032216087 60.7255010098409 25.0852963401234 60.7254878938161 25.0852822318001 60.7254851304341 25.0852792791255 60.7254689967425 25.0852632784636 60.7254525836787 25.0852484679853 60.7254461666522 25.0852431107395 60.7254294174216 25.085229915569 60.7254124439675 25.0852179989773 60.725408972667 25.0852157852499 60.7253744837629 25.0851955049734 60.7253607607868 25.0851873188745 60.725343515548 25.0851771237984 60.72533040477 25.0851696713924 60.7252434749421 25.0851209934809 60.725208397446 25.0851054058818 60.7251972435034 25.0851010275382 60.7251795451402 25.0850949485375 60.7251616915734 25.0850912074955 60.7251502153721 25.0850913040721 60.7251324275603 25.0850959388038 60.7251151236988 25.0851055321818 60.7251011242004 25.0851163406902 60.7250849232903 25.0851321027037 60.725069396901 25.0851504466228 60.725057072022 25.0851672063473 60.7250426924402 25.0851891308624 60.7250288442183 25.085212417274 60.7250154334359 25.0852367777938 60.7250024305562 25.0852620308178 60.724976758286 25.0853132503968 60.7249686178811 25.0853293391495 60.7249019989023 25.085452050315 60.7248887544585 25.0854754839262 60.7248751576209 25.0854993968995 60.7248614489137 25.0855230231338 60.7248475267529 25.085546166979 60.724833286939 25.0855684495797 60.7248186170837 25.0855895475767 60.7248158861274 25.0855932673484 60.7248006720111 25.0856127291356 60.7247849751398 25.0856304593764 60.7247789467574 25.0856365940898 60.7247625727536 25.0856515591938 60.7247458321257 25.0856647491713 60.7247394764133 25.0856693447897 60.724722412458 25.0856806470447 60.7247051109063 25.0856904048667 60.7246875739298 25.0856981413919 60.7246698005612 25.0857031599122 60.7246661101164 25.0857038379816 60.7246481741302 25.0857050156129 60.724648120029 25.0857050004972 60.7246301661227 25.0857017785539 60.7246127127308 25.0856933560728 60.7245957938359 25.0856802261104 60.7245797874649 25.0856637046974 60.7245644543999 25.0856446495312 60.7245520990187 25.0856284609023 60.72452239576 25.0855873412506 60.7245119245736 25.0855703987454 60.724510894975 25.0855687364572 60.724497715657 25.085543905703 60.7244857142358 25.0855166578524 60.7244787939919 25.0854980738015 60.7244691120528 25.0854672224171 60.7244607018482 25.0854348651421 60.7244558301607 25.0854138305085 60.7244486863741 25.085380224369 60.7244421192998 25.0853461255125 60.724436120749 25.0853115894328 60.7244220795924 25.0852100744811 60.7244119451194 25.08513685763 60.7244117346992 25.0851353299448 60.7244092457757 25.0851151253149 60.7243727297591 25.0847938916963 60.7243690207052 25.0847580642844 60.7243682235722 25.0847500439795 60.7243616686157 25.0846746889433 60.7243457468323 25.0844943873583 60.7243431299781 25.0844614653608 60.7243415821711 25.084440508005 60.724336212865 25.084367062735 60.7243230267271 25.0841865434579 60.7243177471343 25.0841143580948 60.7243118198573 25.0840421013243 60.7243070116057 25.0840066695887 60.7243003734452 25.0839726487266 60.7242919362242 25.0839403119422 60.7242818754113 25.0839099971658 60.7242705483667 25.083881573094 60.7242464052056 25.083827362405 60.7242338614999 25.0838011561704 60.7242279695599 25.0837891855787 60.7241890214169 25.083713304183 60.724175640612 25.0836888531419 60.7241618698864 25.083665397149 60.7241475442482 25.0836433310856 60.7241326834782 25.0836227821225 60.7241276605228 25.0836163155439 60.7241121220273 25.08359798894 60.724048330799 25.0835307760295 60.724035075347 25.0835157238985 60.7239602393865 25.0834147168393 60.7239508895668 25.0834027324577 60.7239353510426 25.0833844060566 60.7239034042908 25.0833509955309 60.7238216582095 25.0832754841212 60.7238170512108 25.0832711014559 60.7236901326866 25.0831341451966 60.7236874223118 25.0831311347011 60.7235097100989 25.0829441078518 60.7234481373648 25.0828687710116 60.7234380154044 25.0828555495281 60.7233670512839 25.082765957937 60.7233507810623 25.0827504810844 60.7233341076342 25.0827369534876 60.7233171424121 25.0827250017969 60.7232999957604 25.082714179385 60.7232889103154 25.0827076894777 60.7231668325462 25.0826473834565 60.72304360043 25.0825967909702 60.7230316568254 25.0825918374573 60.7228906413295 25.0825367684136 60.7228759047474 25.0825311930514 60.7228579519577 25.0825318233204 60.7228400651955 25.0825345581767 60.7228222803535 25.0825393954768 60.7227510542612 25.0825577047002 60.722743490993 25.0825594940493 60.7224982577119 25.0823453506343 60.722271334565 25.0823244478216 60.7221503964181 25.0821805996805 60.7220224052232 25.0820283909481 60.7218641694519 25.0819567518402 60.7217599213654 25.0819016766444 60.7217525408023 25.0818974048479 60.72171259898 25.0818732936299 60.721632072717 25.0818247246735 60.7216270918193 25.0818218315495 60.7216234784645 25.0818197369167 60.7215018641221 25.0817554494194 60.7214845577903 25.0817466544019 60.7213983686575 25.0817002572476 60.7213630981755 25.0816812581697 60.7213523016599 25.0816748801016 60.7212328108254 25.0815958180867 60.7212174289293 25.0815846900225 60.7210996428592 25.0814954799438 60.7210962918801 25.0814928930468 60.721082957652 25.0814823946357 60.7209623323029 25.081387451126 60.7209560225416 25.0813820706431 60.7208742832954 25.0813064972276 60.7208262438566 25.0812568913429 60.7208222667558 25.0812526001259 60.7207282563508 25.081145436891 60.7207191862234 25.0811348126966 60.72071172615 25.0811224790844 60.7206469395193 25.08101217974 60.7206290262638 25.0809816960682 60.7205896066965 25.0809068812316 60.7205820597752 25.0808916195074 60.7205695680359 25.0808653225841 60.7205574867567 25.0808382128415 60.7205459927792 25.0808100963912 60.7205394876982 25.0807929575113 60.7205289856569 25.0807632418765 60.7205196017992 25.0807338445481 60.7205093905209 25.0807018565585 60.7205011859126 25.0806745339391 60.7204742900732 25.0805793370999 60.7204253630109 25.080385610193 60.7204249535521 25.0803839846022 60.7204231094405 25.0803762478631 60.7203854424192 25.0802099915947 60.720383765641 25.0802020248841 60.7203774066966 25.0801693855915 60.7203638741632 25.0800999022734 60.7203525059817 25.0800304181579 60.7203514511801 25.0800232393502 60.7203465816972 25.079987999515 60.7203344235162 25.0798809237878 60.720333699667 25.0798736518984 60.7203217149587 25.0797291654034 60.7203206587566 25.0797131132451 60.7202987641588 25.0793126219566 60.7202977816453 25.0792985821133 60.7202936589752 25.0792484109914 60.7202888731616 25.0791901943815 60.7202697389928 25.0790112465332 60.7202656423754 25.0789779407955 60.7202521249579 25.0788819836586 60.7202309017279 25.0787315045985 60.7202293102706 25.0787213512134 60.7202004386306 25.0785479356712 60.72016076843 25.078343595272 60.720154649688 25.0783152139063 60.7201472027318 25.0782818885285 60.7201312190062 25.0782162746037 60.7201239492123 25.0781890437331 60.7201149447345 25.0781573331505 60.7200958953002 25.0780952575472 60.7200913373743 25.0780811564523 60.7200709658215 25.0780208282798 60.7200466461011 25.0779557310725 60.7200056830595 25.0778460516432 60.7199392622146 25.0776689603803 60.7199200188233 25.0776071536528 60.7199162451542 25.077593885832 60.7198815175537 25.0774656296109 60.7198738400137 25.077440036818 60.7198639181715 25.077409499847 60.7198533454404 25.0773799184648 60.7198440356875 25.0773563666057 60.719831901706 25.077329390242 60.719818407833 25.0773052818453 60.7198123596878 25.0772962383795 60.7197970769286 25.0772770219289 60.7197812477318 25.0772597814872 60.7197745842533 25.077252919815 60.7197583899623 25.0772371495486 60.7197417410695 25.0772234964634 60.7197274658233 25.0772144131509 60.7197099242431 25.077206771755 60.7196950825395 25.0772032772886 60.7196771610616 25.0772017085783 60.7196565453952 25.0772020242392 60.7196028132142 25.0772089577609 60.7163901717836 25.0713085806645 60.7145479413633 25.0679260425454 60.7153794053441 25.0671585314437 60.7157582454644 25.0668101935092 60.7165042625439 25.0661195098935 60.7170160058708 25.0656427349664 60.7170160058708 25.0656427349664 60.717562230269 25.0651258500261 60.7208717223668 25.0620386199707 60.722509262208 25.0605107803216 60.724986221133 25.0582779878945 60.727820607007 25.0611183517068 60.7292128949044 25.0625681584371 60.7304728516829 25.0638377658121 60.731820721953 25.0652258485104 60.7330234530142 25.066466289872 60.7354031584382 25.0689080544634 60.7388435686538 25.0724928599336 60.7411951691274 25.0749458795538 60.7419385530951 25.0757129927907 60.7432074607786 25.0749561848281 60.7437025862603 25.0746608607274 60.7442930757764 25.0763528590618 60.7444674002533 25.0768867715473 60.7452489490874 25.079148188123 60.745744046277 25.0796379157551 60.7457743337618 25.0796664167084 60.7469099369947 25.08086717873 60.7477117718619 25.0817174963312 60.7489962679855 25.0830402416455 60.7495495620086 25.0836140887084 60.7502762185514 25.0843676746835 60.7514844372178 25.0856167036416 60.7530295116562 25.0871872977026 60.7534761763454 25.0876138586619 60.7538078711918 25.0879405539523 60.7538595626605 25.0879844965449 60.7539246370511 25.0880398839448 60.7539928503883 25.0881504182639 60.7541540547523 25.088194395401 60.7588287123752 25.0894918867105 60.7622985321431 25.0904975338832 60.7629405843711 25.0906807849059 60.763163337242 25.0931885656832 60.7631721611123 25.0932464016536 60.7631838087366 25.0933228318243 60.7632523321376 25.0941736218802 60.7633435742581 25.0954225019947 60.7635824395284 25.0981406365234 60.7637957316915 25.1007164296034 60.763855422537 25.1013798379305 60.7642631220596 25.1058930409473 60.764403437017 25.107474526054 60.7644062542061 25.107502981047 60.7644115499778 25.1075626280765 60.7644148345661 25.1075993903383 60.7644266079614 25.1077311721077 60.7644366864727 25.1078440343314 60.7644388192366 25.1078679033469 60.7648529305471 25.1126329147277 60.7654028092631 25.119088206512 60.7662482854913 25.1284479469481 60.7663021098833 25.1284275513693 60.7665130119337 25.1283476199327 60.7666575736919 25.1299417240636 60.7663955493644 25.130040761042 60.7665255644068 25.1314416876986 60.7673231227149 25.140518862616 60.7673407418656 25.1407034993381 60.7674884834157 25.1423770832491 60.7675828306367 25.1435052571857 60.7676579299296 25.144403394219 60.7669271341056 25.1451593340296 60.766869210676 25.1452192470002 60.7667541958322 25.1453381980325 60.7667752823111 25.1471056649189 60.7667819156024 25.1476622061983 60.7679713279928 25.1479597596585 60.7683646273614 25.1524457597066 60.7736418709723 25.1537256754223 60.776079192054 25.1543139654834 60.7776687494436 25.1547327133706 60.7783828646673 25.154875882835 60.7800072266126 25.152287268427 60.7823348975367 25.148478913007 60.7850171142785 25.1441263657362 60.7857798041355 25.1428885572064 60.7863141095727 25.1420773571925 60.7875478533678 25.1400499075606 60.7889703379457 25.1377120743027 60.7890058375451 25.1376537382652 60.7890151536153 25.1376384258721 60.7895841546599 25.1366640009597 60.7900414715978 25.1358918163908 60.7941636294588 25.1288902501583 60.7950211968756 25.1274583557477 60.7964840797304 25.1249229272079 60.7969695293081 25.1240972475506 60.7972407503959 25.123609708523 60.7985390604274 25.1214052208742 60.8010684448428 25.1170832968202 60.8014795826974 25.1163187943388 60.8017554229628 25.1158526094156 60.8026101007839 25.114420132516 60.8035242593899 25.1128482047648 60.8053339929371 25.1097672669226 60.8059344409942 25.108722831352 60.8059755287104 25.1086514730389 60.805991053572 25.1086244907286 60.8060217362312 25.1085712462203 60.8093590882027 25.1027781661672 60.8097648198266 25.1020681443557 60.8102990103347 25.1025974503872 60.8112152977649 25.1035131040668 60.8112206634154 25.1035184860141 60.8112270673193 25.103524891261 60.8113021484334 25.103600093905 60.8113223989044 25.1036203697944 60.8113283930419 25.1036263764634 60.8137940819439 25.106085840475 60.8185377540626 25.1109316834513 60.8185829979006 25.1109814260242 60.8185829979006 25.1109814260242 60.8180526466702 25.113161983781 60.8173260082043 25.1168328100313 60.816397887106 25.1210119711804 60.8164048677247 25.121121303224 60.8169701775624 25.1299860314379 60.8172755288436 25.1347277129577 60.8173179515038 25.1354261857276 60.8175493972864 25.139070741724 60.8176296288733 25.1403079213458 60.8178562056963 25.1440588558781 60.8179312159016 25.1453010678625 60.8183555323163 25.1523313839381 60.8192812022647 25.1674896100342 60.8194387193898 25.1698959517697 60.8195888507874 25.1721903564077 60.8187390371867 25.1726231968067 60.8179911625208 25.1730027022219 60.8181261764085 25.1775188444936 60.8181738337431 25.179123921671 60.8182388138499 25.1812974173019 60.8182397903375 25.1813304069647 60.8183082805836 25.1836186979354 60.8195336593129 25.1870135767621 60.8196396849139 25.1873071833405 60.8203480096708 25.1892686753872 60.8210725816736 25.1885131519031 60.8234230974366 25.1860495182467 60.8249305667994 25.1844719508351 60.825090395934 25.1843047117514 60.8267079327794 25.1856891002586 60.8277615431256 25.1865918105747 60.8310911381765 25.1894484434952 60.8320000475124 25.1891267997133 60.8338064006553 25.1884911877936 60.834464436387 25.1882386960012 60.835237023813 25.1918910088858 60.8352695055269 25.1920324640044 60.8353407236427 25.1923711382645 60.8356993339957 25.1940357974536 60.836368305982 25.1971317308278 60.8380734702273 25.1965627741193 60.8397231227753 25.1960639747173 60.8399222788089 25.1981764942944 60.8401755962001 25.2012152342952 60.840550309237 25.205636042767 60.8408511915773 25.2091124058607 60.838718065113 25.209771160357 60.8367667474644 25.210374177775 60.8364498098563 25.210485418638 60.836405710062 25.2104984632897 60.8356369960315 25.2107433949906 60.8346314918992 25.2110609722477 60.8340852424093 25.2112338936323 60.8334245194256 25.2114412415248 60.8333372065182 25.2114691893534 60.8317961129987 25.2119659741849 60.8303405387068 25.2124351068133 60.8300968009912 25.2125235462693 60.8293521431327 25.2127543797796 60.8286102789305 25.2130075800007 60.821396652134 25.2153887047578 60.817178060587 25.2167853793134 60.8171024088784 25.2168137518645 60.8162561672706 25.2170940409015 60.8161067248644 25.2171435079711 60.8160563864553 25.2171601915488 60.816020809904 25.2171719900521 60.8160144080696 25.2171741114651 60.8160121906131 25.2171748416368 60.8159140686348 25.2172078641219 60.814965025578 25.2175171284136 60.8128407130121 25.2182102498324 60.8118790903682 25.2185448804527 60.8104016220706 25.2190590022215 60.8067944241381 25.2202256534682 60.8054646407502 25.2206651123947 60.8040366604765 25.2211660071936 60.8021612762501 25.2254463841192 60.8021361262688 25.2255187396956 60.8011538177985 25.2277517902516 60.8010942334628 25.2278872653272 60.8004310960147 25.229342394211 60.7985743501656 25.2336170404634 60.7973545418175 25.2364004868832 60.7971468158792 25.2368538513656 60.7969518512211 25.2372977611839 60.7959677778694 25.2395702911968 60.7934746280688 25.2452662236398 60.7920650008549 25.2485060431846 60.7916038892261 25.2495667854275 60.7915844271767 25.2496093714281 60.7915660168863 25.2496582387954 60.7902472243783 25.2526753531596 60.7887812634634 25.2560647325198 60.7879202883318 25.2580049168111 60.7878955582308 25.2580590402943 60.7878717174904 25.2581131888856 60.78770904022 25.2584871299528 60.7876809427882 25.2585482144361 60.7876167649198 25.2586925861299 60.7875951606889 25.2587453998799 60.786883389403 25.2603658380563 60.7862551506466 25.2617981772259 60.7860921897865 25.262170405541 60.7860807373991 25.2621965788212 60.7850556722764 25.2645385463724 60.7838688395103 25.2672498285821 60.7824396352088 25.2705108186176 60.7801606880827 25.2757203852932 60.7783438020522 25.2798921908196 60.7783237947176 25.2799413077255 60.7778079421436 25.2811171939539 60.7777472907165 25.2812652896227 60.7776315086971 25.2815304953254 60.7772857211894 25.2823225280197 60.7769150262707 25.2831685828905 60.7768572588179 25.2832965903937 60.7762459759263 25.2846892837645 60.776227807897 25.2847306748485 60.775491713085 25.2851427661521 60.7753037439909 25.2852480259684 60.7752404462504 25.2852968765995 60.7739161997696 25.2859872092418 60.771897387705 25.2871286539406 60.7702776120726 25.2880290414133 60.7676735398465 25.2894531928603 60.7667982607523 25.2899355204434 60.7656844499744 25.2905430032643 60.7644387338241 25.2912224122953 60.7641327057886 25.291404594128 60.7638368377399 25.2915560157742 60.763736685188 25.2916107069152 60.7611559040783 25.2930352137591 60.7590285594639 25.294162238119 60.7586197335149 25.2943934292331 60.7552774589773 25.2962245943122 60.7538149158189 25.2970591098412 60.7519575943153 25.2981187780321 60.7548483534989 25.3049010179953 60.7566850166812 25.309170651562 60.7582812390505 25.3128848034861 60.7583146380916 25.3129627606792 60.7594723273131 25.3156408368228 60.7603596757875 25.3176915622631 60.7609661490776 25.3190924415772 60.7600591749508 25.3266944912862 60.7597842120098 25.3289947239333 60.7591185589983 25.3345680721646 60.7591014619702 25.334752667674 60.7588807804714 25.3364551413055 60.7590914559471 25.3370216024966 60.7593146447679 25.3374124683647 60.7593553467703 25.3376526592544 60.7593653852185 25.3378163575086 60.759370209383 25.3378715935417 60.7596104468434 25.3406022809372 60.758936875372 25.3410915144866 60.7588558970235 25.3407506012481 60.7587334596014 25.3404281120557 60.7584670358008 25.3398721520666 60.7583606682901 25.3408161412073 60.7579587455101 25.3441179734385 60.7570901805557 25.351419425943 60.756743902126 25.3542535307049 60.7562374297855 25.3586503432627 60.7561457655036 25.359459126592 60.7561131390953 25.3596440798051 60.7558926493496 25.3614709808047 60.7558560724202 25.361803299735 60.7558064305429 25.3622726053767 60.7557724074323 25.362617877472 60.7557478897395 25.362822287456 60.7557429870277 25.3628642705112 60.7556627093103 25.3635212256944 60.7555593940665 25.3644138551835 60.7555572269809 25.3644342447146 60.7554700694237 25.3652538668603 60.7553439730696 25.3661785302581 60.7545917214011 25.372326342148 60.7542363673979 25.3752295189062 60.7542343949633 25.3753358182219 60.753426134067 25.3756387269216 60.7531133620731 25.3779548082338 60.7533761024794 25.3780669707446 60.7534498708837 25.3781380081158 60.7535068043202 25.3781000834737 60.7536008178978 25.3780362651154 60.7539109718232 25.3779009742672 60.7537832095422 25.3789795533181 60.7535579494588 25.3810973015897 60.7534535525351 25.3814594879564 60.7534010933036 25.3821840917821 60.7571024615398 25.3877808088609 60.7578203561308 25.3888407845427 60.7591866346875 25.3905619805509 60.7614025187189 25.3933737775886 60.762008340053 25.3941425874957 60.762702044128 25.3950187123674 60.7644456240781 25.3972209030495 60.7659997123906 25.3992159861454 60.7678347399873 25.4015467902559 60.7686061269509 25.4025438790559 60.7700885256149 25.4043887718001 60.7710471122764 25.4055942566607 60.7724598926727 25.4073978400365 60.7735495636285 25.4087748968577 60.7745697873106 25.4100838340098 60.7748549920286 25.4104469384777 60.7751287153116 25.4107930258618 60.7752021818251 25.4108917082526 60.775850463946 25.411725987519 60.7764996589177 25.4125566739883 60.7772109456835 25.4134580570608 60.7775387463474 25.41386713881 60.7776440749817 25.4140079135833 60.7797875756944 25.4167274155751 60.7801331767711 25.4171657499927 60.7802618903521 25.4173290121838 60.7802749995119 25.4173456297867 60.7803019201367 25.4173797854349 60.7803377018694 25.417425185003 60.7803414395242 25.4174299228011 60.7806841318956 25.4178647239558 60.7849137885674 25.4236021177981 60.7875890552353 25.4272611056248 60.7884428306542 25.4284509876704 60.7905008325033 25.4313192435975 60.7905598423944 25.4313586683596 60.7906017828904 25.4313866922572 60.7920409850917 25.4319397714579 60.7954490235468 25.4333004125396 60.7954490235468 25.4333004125396 60.7954095928027 25.4368232215429 60.7953911674485 25.4412248854557 60.7953521324474 25.4457762623701 60.7953520919539 25.4459605248021 60.7953069898681 25.4520427780028 60.7952559879261 25.457416400814 60.7943261060844 25.4636898001673 60.7941542838122 25.4648108598566 60.7940339974079 25.4655956095163 60.7940138335558 25.4657367106999 60.7939982473083 25.4658406982914 60.7937815415544 25.4672817062779 60.7937221824932 25.4677032397409 60.7936663620534 25.4680478012267 60.7936495818014 25.4681866062362 60.7926888376895 25.4745245654463 60.7889619345814 25.4776311081306 60.785082470101 25.4807656536954 60.784324790589 25.4813779391243 60.7826936099868 25.4826993860995 60.7826541781279 25.4827334299094 60.7818422792408 25.4834268301536 60.7772596934562 25.4872172567566 60.7753483939683 25.4887978036095 60.7740410160703 25.4898898217181 60.7727041527456 25.4909694014813 60.7715955442249 25.4919438858809 60.770923670625 25.4925152243969 60.7700977399436 25.4932196270338 60.7697407219598 25.4935094102114 60.7694298594199 25.4937775604253 60.768601684347 25.494488978709 60.7679804351614 25.4949671995987 60.7671420250938 25.4956865423488 60.767108627401 25.4957120277905 60.7662375523264 25.4965522591721 60.7633464154565 25.4993193931155 60.7631980699472 25.4994584330834 60.7585177674493 25.5038673020448 60.7576524969867 25.5047138412826 60.7568320253923 25.5054567069821 60.756094228294 25.5061246680502 60.7561153236545 25.5066483305171 60.7552530666561 25.5076478056739 60.7550878435429 25.5074812172761 60.7537806116892 25.5083417198586 60.7528448352543 25.509188585159 60.7514111948813 25.5105482093709 60.7513867470024 25.5105712332581 60.7481217108251 25.5136479182502 60.7469114744328 25.5141432957357 60.7452161709807 25.5148371721569 60.7442221898256 25.5152439699848 60.7433484627072 25.5156180751903 60.7428963473663 25.5158031735633 60.7424564071114 25.5159832835767 60.7420164667722 25.5161634069106 60.7415735523542 25.5163393334224 60.7393926120159 25.5172357194322 60.7390292051058 25.5173841596495 60.7376182341591 25.5179856040131 60.7368266489362 25.5182688338587 60.7362613896971 25.5185031971246 60.7354746275982 25.5188297004548 60.7343529137691 25.5192713807848 60.733786295615 25.519495867168 60.7317202824826 25.5203691593017 60.7306319314036 25.5208180361912 60.7297139240139 25.5212333227879 60.7292617191213 25.5214280747893 60.7277212911663 25.5220519334765 60.727132180925 25.5222884489795 60.7253415571866 25.5229827862972 60.7252515254232 25.5230186571317 60.7252083621818 25.5230368465824 60.7252040628299 25.5230386574117 60.725104695079 25.5230805118534 60.7250594759881 25.5230995655648 60.7241226938477 25.5234740671852 60.7237505386253 25.5236245618797 60.7205264456516 25.524964933318 60.7194269308404 25.5254231512538 60.7190757091393 25.5252751712348 60.7170320061748 25.5244762520971 60.7149143720972 25.5236485298963 60.7147594859142 25.5236043355008 60.7143539322347 25.5234562314999 60.7131086217668 25.5229399839101 60.7118137031008 25.5224260898263 60.7090829142274 25.52134248363 60.7078741296293 25.5208650340392 60.7065070246004 25.5202774798628 60.7054323130661 25.5198650348263 60.7038986876479 25.5192765589711 60.7038986876479 25.5192765589711 60.7034621834409 25.5205293629843 60.7028635364559 25.5222080209941 60.7028503400764 25.5222450314377 60.7028249050921 25.522316333344 60.7028153233989 25.5223431926186 60.7027801938054 25.5224417068719 60.7027738091199 25.5224596250779 60.7027589923197 25.5225011617754 60.7027316682069 25.5225786876239 60.701955044335 25.5247827907901 60.7017627256183 25.5253909131372 60.7002240713571 25.5297886386562 60.6993962791029 25.5321007940001 60.6993248418898 25.5322374708337 60.6973619762219 25.5377819897674 60.6972742162448 25.5380478151017 60.6959172111795 25.5419362213923 60.695852539954 25.5421195755849 60.695849160081 25.5421291620393 60.6958376786808 25.5421617005568 60.6958001948304 25.5422679894426 60.6949352976542 25.5447119936961 60.6948165122237 25.5450534741388 60.6944563635556 25.5460566043556 60.6937271768192 25.5481486604453 60.6925086724831 25.5515905696708 60.6916158852554 25.5541150441184 60.6910305696781 25.5557724878083 60.6908696439094 25.5562483708149 60.6899856718621 25.558733822167 60.6896403922638 25.5596960378764 60.6896122016481 25.5597751134861 60.6894136791806 25.5603318418757 60.689280704415 25.5607328449375 60.6889191595877 25.5617580092239 60.6880966962537 25.5640774290507 60.6871890283539 25.5666586147199 60.6860672983655 25.5698328814432 60.6859072716483 25.5702856896157 60.6854612912434 25.5715475940805 60.6846322327951 25.573904191294 60.6846105441738 25.5739655404641 60.6831555456932 25.5780630460295 60.6829619660839 25.578606017939 60.6816605951649 25.5822560620019 60.6795866821911 25.5881632065769 60.679010832812 25.5898208136289 60.6779987808461 25.5926795822272 60.6779123792612 25.5929139313921 60.6779588607512 25.5943484142197 60.6778498087155 25.5954053972338 60.677643695687 25.5974199808727 60.6775907809319 25.5979383146057 60.6776635399713 25.5982004879522 60.6765582358797 25.6007221831385 60.6760289913567 25.6017551860656 60.6759898568307 25.60183510466 60.6759013704642 25.6020157587749 60.6758816755591 25.602055970441 60.6730430226638 25.6077856765013 60.6716415959383 25.6106127323375 60.6716228887829 25.6106263509468 60.6715632347818 25.6107248678329 60.6714762654833 25.6108685075261 60.6715608337276 25.61105785303 60.6715989306182 25.6111353916316 60.6716120311149 25.6111604152275 60.6716195302026 25.6111743687221 60.6716604013162 25.611245802894 60.6717030225755 25.6113128239553 60.6717622217421 25.6113955675101 60.6718544677392 25.6115087724997 60.6718859211825 25.6115440429224 60.6718981187617 25.611557336664 60.6720107248888 25.6116708554352 60.6721097400972 25.6117570839234 60.6721940017058 25.611819933908 60.6722798857421 25.6118729767926 60.6723495976829 25.6119078635109 60.6723574551585 25.6119113506337 60.672623143361 25.6119993728426 60.672627990686 25.6120009395964 60.6729809550103 25.6121359809073 60.6730885900094 25.6121745077533 60.6735013617696 25.6121772183256 60.6736804985418 25.6121555940804 60.67373596757 25.6121444562285 60.6739491404818 25.612082395548 60.6743536643659 25.6119148404149 60.6743576966721 25.6119131474601 60.6751150937494 25.611611075321 60.6751282612907 25.6116053277187 60.6758474068808 25.6112636828237 60.6762700948688 25.611095177978 60.676501184371 25.6110298983863 60.6766979919282 25.6109986437542 60.6768415104337 25.6109913051302 60.6768536331349 25.6109913135476 60.6770329915682 25.6110032079431 60.6772295103248 25.6110410903678 60.6774776275533 25.6111215092572 60.6776006574518 25.6111733607865 60.6776059624857 25.6111757683391 60.6777973293732 25.6112745249392 60.6779512348893 25.6113743476283 60.6780349611421 25.6114401233643 60.6781166358132 25.6115158919156 60.6781801986526 25.6115838917513 60.6782266858498 25.6116392633162 60.6782402251028 25.6116563829755 60.6782999990059 25.611737434763 60.6783717273178 25.6118473182612 60.6784401138587 25.6119657491728 60.6785821412421 25.6122452252103 60.6786317457505 25.6123510289015 60.6786410613286 25.6123713150239 60.6788657078988 25.6128942231901 60.6789785471294 25.6131830366127 60.6793365772514 25.6141904060729 60.6793386128689 25.6141962136087 60.6795313692871 25.6147247271964 60.6796000362848 25.6148957180884 60.6799264179787 25.6156259101825 60.679938140974 25.6156524108927 60.6800542575559 25.6159313626978 60.6801300196875 25.616135649582 60.680169898811 25.6162573705308 60.680206374246 25.6163834121822 60.680239165843 25.6165136034565 60.6802467637206 25.6165467446296 60.6802509550415 25.6165656601332 60.6802716580267 25.6166669860297 60.6802897331291 25.6167703655259 60.6803051150574 25.6168755633953 60.6803176840999 25.6169822918202 60.6803271509517 25.6170903617994 60.6803334035557 25.6171993570218 60.6803347679471 25.6172358417136 60.6803352154591 25.6172504874082 60.680336689351 25.6173602186619 60.6803348851257 25.6174699074819 60.6803298169574 25.6175791870622 60.6803215794254 25.6176876505315 60.6803102860058 25.6177949817514 60.6802959596633 25.6179007952353 60.6802785781075 25.6180046708227 60.6802581371895 25.618106205885 60.6802428182901 25.618172406094 60.6802374130782 25.6181942232164 60.6802114207329 25.6182903571401 60.6801828005472 25.6183833264152 60.6801517395078 25.6184729765463 60.6800954240929 25.6186154111857 60.6799985056211 25.6188313165676 60.6799859522533 25.6188574675438 60.6799800785452 25.6188695645817 60.6798787068992 25.6190768714119 60.6798546167407 25.6191311066521 60.6798317708388 25.6191875769882 60.6798103760101 25.6192463101761 60.6797906491779 25.6193074433886 60.6797801655177 25.6193436112996 60.6797716071695 25.6193757788088 60.6797635844171 25.6194085092076 60.6797561058585 25.619441765513 60.6797491892563 25.6194755286576 60.6797427981414 25.6195097452814 60.6797316164705 25.6195792633216 60.6797224678805 25.619650012394 60.679711930423 25.6197576563526 60.679701875675 25.6199025726882 60.6796956912693 25.6200483850491 60.6796948099458 25.6200796376928 60.6796923295775 25.6202625112664 60.6796947340206 25.6204453953821 60.6797006360163 25.6205912394659 60.6797080054735 25.6206999656689 60.679718140243 25.6208077863298 60.6797311349153 25.6209142946541 60.6797368458335 25.6209544008262 60.6797537766486 25.6210585988149 60.6797733455527 25.6211608715512 60.6797953885382 25.621260988071 60.6798370074671 25.6214230817703 60.6799207133214 25.6217046660211 60.6799504002286 25.6217963093836 60.6800965296926 25.6222129763632 60.6802432711883 25.6225827520183 60.6802668093888 25.6226380069215 60.6802691279143 25.6226434185833 60.6804359487705 25.6230264924126 60.6804913862256 25.623170333622 60.6805322946675 25.6232906107328 60.680552141295 25.6233554165211 60.680578661292 25.6234509516551 60.6806028545861 25.6235490213413 60.680624655709 25.6236493720431 60.6807047642876 25.6240961178868 60.6807086780353 25.6241195869494 60.6807648035372 25.6244555856641 60.6807683278824 25.6244787418821 60.6807837303248 25.6245839073209 60.6807926299335 25.6246548206289 60.6807960413285 25.6246862205193 60.6807995348389 25.6247221207952 60.6808077693504 25.6248305949314 60.6808130124488 25.6249398375668 60.680816075862 25.6250860648235 60.6808163741438 25.6254520019518 60.680816431232 25.6254619410198 60.6808167260125 25.6254985454001 60.6808171283042 25.6255351268866 60.6808270093992 25.6259004539697 60.6808496978862 25.6263002594035 60.6808738359576 25.6265928255993 60.6809202023107 25.6270215942268 60.6809242641232 25.6270543032864 60.681074152529 25.6281086632553 60.6810754310405 25.6281177631306 60.6811992248691 25.6291106820778 60.6812551436195 25.6296875174822 60.6812690260607 25.6299052219587 60.6812767341372 25.630124196076 60.6812772869575 25.6301545467417 60.6812777867131 25.6301911246289 60.6812782386726 25.6302643036809 60.6812753910313 25.6304837631728 60.6812586396018 25.6308847950116 60.6812574574727 25.6309061931894 60.6812120659951 25.6315952647866 60.6812112744136 25.6316065582383 60.6811684151246 25.6323698533967 60.6811647247966 25.632625855055 60.6811647476455 25.6326404094594 60.6811652612835 25.6327136039418 60.6811684223665 25.632969662721 60.6811688781063 25.6330794403448 60.6811658496978 25.6332622707781 60.6811654622725 25.6332727048291 60.6811620299694 25.6333455540251 60.6811544913696 25.6334542425757 60.6811441142962 25.6335619712289 60.6811309851492 25.6336684067383 60.6811151194569 25.633773310408 60.6810965497664 25.6338763512789 60.6810745003783 25.6339798324768 60.6810583205635 25.6340451476577 60.6810495043706 25.6340770304321 60.6810401881575 25.6341083118923 60.6810303440642 25.6341389016752 60.6810249300165 25.6341548215962 60.6810143480516 25.6341843807289 60.6810033189896 25.6342132447585 60.6809918516203 25.6342413950034 60.6809799364086 25.6342687769418 60.6809549058858 25.6343212115108 60.680928636932 25.6343710803652 60.6808335055768 25.6345383684219 60.6808211652365 25.6345592869384 60.6803414388345 25.6353861623197 60.680332290335 25.6354022032091 60.6801299949946 25.6357643895476 60.6799227381477 25.6361694204412 60.6798145987983 25.6364140131895 60.6798032138242 25.6364414807164 60.6797690662489 25.6365263727345 60.6796824173366 25.636759765011 60.6795925493905 25.6370333678023 60.6795016428288 25.6373488094068 60.6794937379152 25.6373785457935 60.6794769937816 25.6374432757121 60.679297465086 25.6382010738101 60.6792936218267 25.638217859483 60.6791909255884 25.6386449559572 60.6791289034777 25.6388676683478 60.6790886739819 25.6389948650221 60.6790569429595 25.639083549825 60.6790339509834 25.6391397176146 60.6790218150607 25.6391666842889 60.6790092393704 25.6391927907576 60.6789962416787 25.6392180179629 60.6789888105959 25.6392316778278 60.6789751882279 25.6392555217097 60.6789469387197 25.6393006521916 60.6789175249711 25.6393425547352 60.678887119756 25.6393814417381 60.6787774081842 25.6395062792707 60.6787690200921 25.6395158968573 60.6785184733297 25.6398018494636 60.6784372230794 25.6398794406892 60.6784272616486 25.6398879894382 60.6783109239414 25.6399846539795 60.6782784091809 25.6400156651178 60.67826254541 25.6400327925269 60.6782469985189 25.6400510598856 60.6782318236625 25.640070593014 60.6782170660907 25.6400914266154 60.6782027983527 25.6401136308552 60.6781891019731 25.6401372755204 60.6781760487577 25.6401623575806 60.6781702804478 25.6401744089341 60.678158299687 25.6402016425424 60.6781470961682 25.6402302529677 60.678136703936 25.6402600557053 60.678127113271 25.6402909779387 60.6781183230578 25.6403229098749 60.6781103312526 25.6403556502262 60.6781031012085 25.6403891273127 60.6780966319964 25.6404232496413 60.6780909591475 25.6404579791013 60.6780861174503 25.6404932043863 60.6780821332746 25.6405288694657 60.6780790148531 25.6405649007675 60.6780767971603 25.640601205285 60.678075526251 25.6406343576957 60.678074936504 25.6406709230624 60.6780752000061 25.6407075073598 60.6780762889017 25.6407440202315 60.6780781844965 25.6407803892413 60.6780808596772 25.6408165972284 60.6780842680797 25.640852499696 60.6780926229402 25.6409236722786 60.6781026478856 25.6409939506621 60.6781203386458 25.6410975905108 60.6781255373389 25.6411249780883 60.6781392349688 25.6411926120149 60.6781618859396 25.6412921802077 60.6781872123871 25.6413890544729 60.6782058329321 25.6414515931623 60.678226048866 25.6415120692159 60.6782478658268 25.641570152876 60.6782712903811 25.6416256058792 60.678279994674 25.6416444979308 60.6782926146542 25.6416705294368 60.6784103342872 25.6418959985171 60.6784351600742 25.6419488483023 60.6784410356936 25.6419624225363 60.6784637361285 25.6420190966231 60.6784847748719 25.6420783854909 60.6785041485814 25.6421399597487 60.6785218907455 25.6422035799877 60.6785458212458 25.6423018878727 60.6785458212458 25.6423018878727 60.6785741589377 25.6424363499085 60.678598916218 25.642573727366 60.6786025536378 25.6425959454941 60.6786627844887 25.6429792324806 60.6786884321232 25.6431159141694 60.6787107082097 25.6432158489846 60.6787172791101 25.6432422276466 60.6787257502866 25.6432744761647 60.678743802547 25.6433377365571 60.6787632912545 25.6433991973639 60.6787841612594 25.6434587327607 60.6788063400164 25.6435162725761 60.6788298342803 25.6435715968412 60.6788546152731 25.6436245236965 60.6788806366365 25.6436749086353 60.6788828874914 25.6436790428912 60.6789101470032 25.6437266663258 60.6789384137051 25.6437717759629 60.6789676064468 25.6438143386005 60.6790129076348 25.64387365207 60.6791373957963 25.6440194499066 60.679140983112 25.6440234364478 60.6792029712362 25.6440972253287 60.6792178599121 25.6441176708213 60.6792319534568 25.6441402917643 60.6792451091822 25.6441651856995 60.6792572351061 25.6441921368073 60.6792648949807 25.6442116782042 60.6792751218391 25.6442417482893 60.6792936168815 25.6443044424317 60.6792982654665 25.6443210165804 60.6794975458142 25.6450580475915 60.679501201591 25.6450705810866 60.679631543116 25.6455085139848 60.6796646620128 25.6456383701583 60.6796938951637 25.6457720331312 60.67971910348 25.6459090693233 60.6797401918287 25.6460489517621 60.679741241495 25.6460568532391 60.6797879726876 25.646447921918 60.6797931221089 25.6464829847839 60.6797990029166 25.6465175592469 60.6798057033902 25.6465514951387 60.6798133649247 25.6465845668294 60.6798221552883 25.646616492658 60.6798322218939 25.6466467538168 60.679843738713 25.6466747937666 60.6798568320646 25.646699783351 60.6798715192643 25.6467207698342 60.6798876205294 25.6467368453704 60.6799047797033 25.6467474207507 60.6799234414098 25.6467529533012 60.6799413756587 25.6467540309718 60.6799592863456 25.6467518874415 60.679977072231 25.6467471677334 60.6800474795762 25.6467185250069 60.6800613608898 25.6467130721481 60.6800967306861 25.6467005287768 60.6801678905045 25.6466814842582 60.6802573802923 25.6466680227574 60.680455483418 25.6466550161597 60.6804913016422 25.646650417803 60.6805091399818 25.6466464463909 60.6805269027329 25.646641214881 60.6805445713892 25.6466346691238 60.6805620821951 25.6466267202536 60.6805794159044 25.6466172409187 60.6805965181072 25.6466061784771 60.6806133338386 25.6465934253854 60.6806298172946 25.6465788920236 60.6806458691857 25.6465625276346 60.6806614264955 25.646544316555 60.6806764258377 25.6465242065202 60.6806907688472 25.6465022382767 60.6807043928772 25.6464784327633 60.6807172541569 25.6464529016676 60.6807272196379 25.6464304947571 60.6807384613042 25.646401974162 60.6807488090937 25.6463720813521 60.6807583101037 25.6463410340503 60.6807670750024 25.646309120543 60.6807831880873 25.6462437235468 60.6807977142789 25.6461768003244 60.680799955528 25.6461657760572 60.6808193220684 25.646063350806 60.6808819395992 25.6456816254209 60.6809012790312 25.6455756672161 60.680915632866 25.6455086042141 60.6809238433777 25.6454760545172 60.6809328623529 25.6454444228592 60.6809427090392 25.6454138365888 60.6809443401435 25.6454090810541 60.6809551341873 25.6453798280727 60.6809666863579 25.6453518431032 60.6809789426161 25.6453251101083 60.6809918128342 25.6452995962596 60.6810050780767 25.6452749628999 60.6810464368695 25.6452046769956 60.6810508202112 25.64519770024 60.6811796255332 25.6449989642162 60.6812207452525 25.6449281383644 60.6812467702597 25.6448777387748 60.6812713652117 25.6448244515503 60.6812830085036 25.6447966087392 60.6812941400713 25.6447678903046 60.6813056308347 25.6447356231678 60.6813155684111 25.6447051606587 60.6813249327269 25.6446739532771 60.6813337243371 25.6446420559268 60.6813419619335 25.6446095410573 60.6813496825301 25.6445765169653 60.681363673308 25.6445091199744 60.6813757992911 25.6444402451301 60.6813775035136 25.6444294079098 60.681382644288 25.6443943501465 60.681414230812 25.6441464208804 60.6814288671718 25.6440408043402 60.6814405856666 25.6439716167635 60.6814472186319 25.6439376128931 60.6814544676876 25.6439041506524 60.6814624782998 25.6438714070056 60.6814713878854 25.6438396507991 60.6814816211704 25.6438082599657 60.6814924515048 25.6437790776555 60.681504067094 25.6437511805079 60.6815163413506 25.6437244823063 60.6815292204207 25.6436989853173 60.6815425865073 25.6436745846462 60.6815564031519 25.6436512269015 60.6815851340148 25.643607376256 60.6816150579529 25.6435669539921 60.6816459012472 25.6435295322242 60.6818840172223 25.6432735450494 60.6819307848314 25.6432125292561 60.6819744489454 25.6431483117182 60.6820162674415 25.6430791916528 60.6820561075287 25.643005357736 60.6820939192378 25.64292719656 60.6821296526 25.6428450947211 60.682163220075 25.6427592756194 60.6821945524454 25.6426699985049 60.682202408303 25.6426459388661 60.6822215269232 25.6425839990547 60.6822478368334 25.6424882503314 60.6822636484935 25.6424225314886 60.6822776654752 25.6423551671284 60.682289763042 25.642286254062 60.6822999351838 25.6422160855012 60.682303187582 25.6421887958248 60.6823345741932 25.6418657426551 60.6823388111438 25.6418301722382 60.6823437163771 25.6417949764468 60.6823493989021 25.6417602788488 60.6823559135019 25.6417261686791 60.6823633431859 25.6416928621477 60.6823718070528 25.6416605922526 60.6823813709034 25.6416296491663 60.6823921005383 25.6416003230619 60.6824040452918 25.6415730512814 60.6824172270142 25.6415482173986 60.682427672545 25.6415316098859 60.6824426617728 25.6415114601901 60.6824584328051 25.6414940239156 60.6824748317549 25.6414791793879 60.6824917419375 25.6414669315296 60.6825090846131 25.6414574850672 60.6825267356057 25.6414509917156 60.6825433251435 25.641447857111 60.6825612630792 25.6414475219182 60.6825791652822 25.6414498614061 60.6825969738144 25.6414544752146 60.6826146312942 25.6414610178875 60.6826321257759 25.6414691969805 60.6826494458706 25.6414787749532 60.6828024675555 25.6415841030097 60.6828198375995 25.641593294487 60.6828364910808 25.6416000077732 60.6828542284755 25.6416055767962 60.6828720510564 25.6416098056346 60.6829078531609 25.6416151440762 60.6830872975843 25.64161909582 60.6831027821359 25.6416212260958 60.6831206492917 25.6416245376083 60.6831562502462 25.6416339493466 60.6831915483482 25.6416471456838 60.6832264717901 25.6416641296592 60.6832608685384 25.6416849626229 60.683277818548 25.6416970100097 60.6832945728758 25.6417101276276 60.6833110965463 25.6417244085018 60.6833273714217 25.6417398350885 60.6833433703889 25.641756390222 60.6833590848426 25.6417741108862 60.6833744605564 25.6417929627483 60.683388012763 25.6418108661411 60.6834027446725 25.6418317592621 60.6834171273806 25.6418536375455 60.6834311515398 25.6418764647662 60.6834447904077 25.6419002603617 60.6834580518464 25.6419249141416 60.6834833968133 25.6419767249381 60.6835071739358 25.6420315497943 60.6835404385065 25.6421178708364 60.6835820468688 25.6422371462979 60.6836399292928 25.6424222932393 60.6836470622706 25.6424465281218 60.6836562173665 25.642478020137 60.6837426981731 25.6427986295401 60.6838038742424 25.6430634534171 60.6838368468359 25.6432336123362 60.6838650061914 25.6434073250092 60.6838881675894 25.6435840864594 60.6838920052625 25.6436190071522 60.6839420217898 25.6441210723965 60.6839565787473 25.6442267504492 60.6839681719227 25.6442960061511 60.6839814674052 25.6443640001151 60.6839966584053 25.6444303030869 60.6840050139178 25.6444626902124 60.684013928973 25.6444944678873 60.6840234026454 25.6445255446005 60.6840334521465 25.644555846388 60.6840413256487 25.6445778719565 60.6840523837526 25.6446066848389 60.6840639898333 25.6446346324182 60.6840760980863 25.6446616250705 60.6840887085124 25.6446876627958 60.6841017586515 25.6447127848422 60.6841152565543 25.6447368993195 60.684129149107 25.6447600817027 60.6841434090123 25.6447822965191 60.6841729328891 25.6448239008122 60.6841881607732 25.644843273495 60.6842036926254 25.6448616263434 60.684219492543 25.6448789608664 60.6842355689468 25.6448952217777 60.6842519038855 25.6449104098313 60.6842684614561 25.6449245265358 60.6842852409186 25.6449374986794 60.6843025866866 25.6449496413627 60.6843197390527 25.6449604189133 60.6843544953393 25.6449786774947 60.6843897371377 25.6449925578139 60.6844253213914 25.6450021208051 60.6844611068948 25.6450076104286 60.6845149346212 25.6450097595133 60.6845687323476 25.6450053913162 60.6846223251848 25.6449949709239 60.6846368248253 25.6449911750876 60.6846899778237 25.644973668633 60.6847426065017 25.6449504895645 60.6847945109815 25.6449214082236 60.684828570065 25.6448982592791 60.6848620486643 25.6448718753959 60.6848948658102 25.6448422416601 60.6849269130499 25.6448092893824 60.6849328096725 25.644802779084 60.6849638484462 25.6447660055773 60.6849939491747 25.6447261586261 60.6850230865942 25.6446834040851 60.685051245528 25.6446380172507 60.6850917482547 25.6445656885125 60.6851301020801 25.6444886525567 60.6851422270279 25.6444622691833 60.6851542540636 25.6444350842313 60.685349729518 25.6439574943547 60.685352461526 25.6439515015409 60.6853648547146 25.6439250149337 60.6854035110375 25.6438486240104 60.6854305646068 25.6438005174624 60.6854587602506 25.6437552375897 60.6854733794679 25.6437339856253 60.685488332373 25.6437137633245 60.6855036193371 25.6436946072946 60.6855192500776 25.6436765903717 60.6855351800866 25.6436597510529 60.6855416701672 25.6436533253005 60.685558012528 25.6436381898417 60.6855746098352 25.6436242887895 60.6855914346057 25.6436115683692 60.6856084776787 25.643600010657 60.6856256851997 25.6435896179217 60.6856605188152 25.6435720375585 60.685713397018 25.6435513536007 60.6857667287152 25.6435364368253 60.6857713786371 25.6435353987322 60.6858071303361 25.6435286747625 60.6858967423638 25.6435193351326 60.6864709285299 25.6435247689878 60.686476550804 25.6435239829142 60.686691020159 25.6434840424192 60.6867627552664 25.6434784033144 60.6868165681906 25.6434808618705 60.6868523718767 25.6434863677238 60.6868879708378 25.643495599516 60.6868986662689 25.6434992144026 60.6869162916328 25.6435061449369 60.6869337771952 25.643514344885 60.6869511057455 25.6435238882211 60.6869681824416 25.6435351634905 60.6869849111434 25.6435484311104 60.6870011938579 25.6435637684571 60.6870184586892 25.6435829832211 60.6870336173526 25.6436025979852 60.6870481393103 25.6436240707694 60.6870619791264 25.6436473485519 60.6870751175514 25.6436723039604 60.687087507852 25.6436987558429 60.6870991580769 25.6437266123007 60.6871100660015 25.6437556536832 60.6871305466807 25.6438157887203 60.6871590300671 25.6439089331262 60.6872022558926 25.6440693032484 60.6872045855342 25.6440785626451 60.6872374393774 25.6442087336461 60.6872639977082 25.644304230406 60.687302805579 25.6444273758638 60.6873136781902 25.6444564923961 60.6873253896078 25.6444842002463 60.6873379387213 25.644510389589 60.6873512608491 25.6445348800249 60.6873653460904 25.6445575804096 60.6873800947861 25.6445784033747 60.6873954616878 25.6445973141984 60.6874014826512 25.6446039828681 60.6874176105331 25.6446200050042 60.6874342201338 25.644633937615 60.6874511861628 25.6446458225934 60.6874684388511 25.6446558643059 60.6874858921444 25.644664432614 60.6875211176773 25.6446784793878 60.6875566392058 25.6446889428538 60.6875658387822 25.6446911561602 60.6876194650829 25.6447009129185 60.6876732611536 25.644705260438 60.687745040468 25.6447031013373 60.6878166591915 25.6446930563455 60.687823855475 25.6446916365362 60.6878773340565 25.6446788020634 60.6879658382062 25.6446487086084 60.6880532997914 25.644607872778 60.6881222747924 25.6445672834869 60.6881900980494 25.6445193625064 60.6882565717161 25.6444640814951 60.6882644821333 25.6444569180218 60.6883452931984 25.6443773734376 60.6884393042544 25.6442703165929 60.6885301807088 25.6441525498779 60.6887927300456 25.6437686662754 60.6887963228968 25.6437634423274 60.6894063239362 25.6429241736918 60.68941516331 25.6429120991061 60.6898199664782 25.6423688790021 60.6898328315873 25.6423526603967 60.6898634972529 25.6423145760018 60.6900199377985 25.6421353212524 60.6901168834042 25.6420397759783 60.6901834883429 25.6419851402197 60.6902515883686 25.6419389204763 60.6903209800156 25.6419014183945 60.6903376143967 25.6418938493734 60.6903551934631 25.6418864602801 60.6904082748042 25.6418681243524 60.6904617562313 25.6418555953124 60.6905154950611 25.6418489707742 60.6905693306581 25.64184834911 60.6906231104339 25.6418537367838 60.6906588079859 25.6418611688697 60.6906943237046 25.641871923477 60.6907295246222 25.6418861710495 60.6907643314399 25.6419040614539 60.6907986188661 25.6419256366123 60.6908322894642 25.641951028842 60.6908652080384 25.641980188911 60.6908813373405 25.641996321267 60.6909128170609 25.6420314758712 60.6909434821756 25.6420695402097 60.6909882445027 25.6421305623812 60.6912337450357 25.6424998324577 60.6912452260696 25.6425145128622 60.6912606106532 25.6425333692659 60.6912920038143 25.6425688581063 60.6913242346068 25.642601051756 60.6913407243125 25.6426155394787 60.6913574785427 25.6426286608032 60.6913744872092 25.6426403062661 60.6913917316189 25.6426504033956 60.6914092018692 25.6426588610346 60.6914120065107 25.642660043171 60.6914296886187 25.6426663674174 60.6914474738737 25.642671350369 60.6915724523805 25.6426970536199 60.6915813360871 25.6426999941959 60.6915989611112 25.6427068886523 60.6916164384789 25.6427151629292 60.6916337421899 25.6427249096973 60.6916508275503 25.6427361491566 60.6916676410757 25.642748920192 60.6916840957894 25.6427635011896 60.6917000433672 25.642780319637 60.6917153231709 25.6427994738787 60.6917297932557 25.6428211347291 60.6917432825239 25.6428452544553 60.6917561243012 25.6428728263183 60.6917673505385 25.6429013636882 60.6917774712965 25.6429315776571 60.6917865729948 25.642963134919 60.6917946977303 25.6429957589786 60.6918019244304 25.6430292633622 60.691808349789 25.6430634425326 60.6918377670862 25.6432363574438 60.6918430108345 25.6432655865577 60.6918494626897 25.6432997280717 60.6918634353148 25.643367160272 60.6918790449968 25.6434330950359 60.6918875872183 25.6434652804832 60.6918967682764 25.6434967064545 60.6919069423851 25.6435268818513 60.6919181774598 25.6435554192059 60.6919304884877 25.6435820248527 60.6919438899005 25.6436063502047 60.6919583422751 25.6436280489414 60.6919702358883 25.6436426943827 60.6919863556455 25.6436587918839 60.6920030409332 25.643672209946 60.69202011761 25.6436834870269 60.6920374453993 25.6436929586968 60.6920549734116 25.6437009201325 60.6920726141129 25.6437075947953 60.6921967983724 25.6437462296432 60.6922143583932 25.6437538051857 60.692233021638 25.6437639166825 60.6922501566903 25.643774751875 60.6922670808736 25.6437869329466 60.6922837494938 25.6438004800959 60.6923001621799 25.6438153567106 60.6923162643355 25.6438314918314 60.6923476137589 25.6438671314378 60.6923932368281 25.643925448491 60.6924521021593 25.6440092338373 60.692456004758 25.6440150951791 60.6924845949509 25.644059367768 60.692526035793 25.6441294548277 60.692552303305 25.6441793565385 60.6925647023011 25.6442057944022 60.692576255175 25.6442338063695 60.6925868358938 25.6442633611148 60.6925963451669 25.6442944078709 60.6926046919387 25.6443268222628 60.6926117845978 25.6443604249929 60.6926139152027 25.6443722035071 60.6926192077027 25.6444071640795 60.6926231159817 25.644442878895 60.6926256735345 25.6444791084432 60.6926269677112 25.644515610947 60.692627068466 25.6445522003071 60.6926261184857 25.6445887789392 60.6926242327893 25.6446251771637 60.6926214014751 25.6446613038184 60.6926176509151 25.6446971028453 60.6926130069261 25.6447324632644 60.692607504671 25.644767310333 60.6926054140181 25.6447790100757 60.6925986270021 25.6448129038541 60.6925911330137 25.644846149705 60.6925747486662 25.6449113081615 60.6925025253475 25.6451643653987 60.6924862040448 25.6452295574873 60.6924787826842 25.6452628916421 60.6924720950193 25.6452968542628 60.6924665110938 25.6453316312529 60.6924656087089 25.6453382992437 60.6924614609956 25.6453739132512 60.692458359464 25.6454099777559 60.6924562844965 25.645446328751 60.6924552172157 25.6454828754586 60.6924551202379 25.6455194729343 60.6924559298071 25.6455560322874 60.6924576184406 25.6455924997314 60.6924601038759 25.6456287322085 60.6924633591856 25.6456647308534 60.6924717740377 25.6457358971822 60.6924819124875 25.6458061302732 60.6924998493011 25.645909643641 60.6925206282295 25.6460109497294 60.6925438717388 25.6461100094854 60.6925616813541 25.6461796273634 60.6926062181472 25.6463385069542 60.6926548164842 25.6464923444764 60.6927181656772 25.6466699401221 60.6929009902928 25.6471216049279 60.6929034859565 25.6471277639192 60.6931113811739 25.6476320268855 60.693186652707 25.6477890529947 60.6932528491919 25.6479126138275 60.6932625205551 25.647929552565 60.6933042048011 25.647999049913 60.6933763581747 25.6481078373724 60.6934666346072 25.6482275316922 60.6935754918006 25.6483554398714 60.6935904463575 25.648371809194 60.6936867818922 25.6484699496146 60.6937691475942 25.6485425219117 60.6938197659722 25.6485799416458 60.6938713312841 25.6486115339684 60.6939237130716 25.6486368281165 60.6939330361683 25.6486406129415 60.6939861599713 25.6486584581221 60.6940396886611 25.6486701505449 60.694093461413 25.6486757701912 60.6942908673845 25.6486746855821 60.6942908673845 25.6486746855821 60.6942847334971 25.6490486268188 60.6907314969194 25.6572382160838 60.6909350267626 25.6627859892096 60.6909366906891 25.6628312474871 60.6909370128524 25.6628401347574 60.6909430791747 25.663005314065 60.6909441009199 25.6630330174951 60.6909459487203 25.6630832129675 60.6911839249185 25.6695784696187 60.6912289000146 25.6708067598259 60.691254849456 25.6714919965022 60.6912855664218 25.6723261339143 60.6914130232952 25.6757897387933 60.6914387516977 25.6764888190719 60.69144009101 25.6765253194146 60.6915193027315 25.6786791845947 60.6915486634199 25.6795497257515 60.6918934948964 25.6799213672199 60.6928032458625 25.6809074907923 60.6948351193735 25.6831274804059 60.6956478331274 25.6839950443723 60.696259956648 25.6846312383309 60.6965349655002 25.6849479197237 60.6970615330331 25.6855288786076 60.6976903282523 25.6862195672645 60.6977930039125 25.6863325944907 60.699434719304 25.6881397246365 60.6995373843804 25.6882527644229 60.700542666802 25.689345472271 60.7012598260691 25.6901270608259 60.70157073464 25.6904662482635 60.7038580705526 25.6929755697391 60.7078619135961 25.6973681496771 60.7113932972343 25.7059170786072 60.7118582844695 25.7070432874791 60.7119388540118 25.7072012082929 60.7119820394297 25.7073430568858 60.7124485448693 25.7084035097019 60.7136253825603 25.7113280989039 60.7149685668039 25.7145818126396 60.7155278915872 25.7159332176555 60.7172588146715 25.7201952872928 60.7184210893068 25.7230072675957 60.7181548036753 25.723604136783 60.7174518621859 25.7251930241018 60.7166022290984 25.7271210767513 60.7157298294112 25.7291122224186 60.7152754542919 25.7301671476643 60.7150718685917 25.730663574185 60.7148499482037 25.7311479980485 60.7141580104453 25.7326971757824 60.7137365783274 25.7336920192444 60.7133918161481 25.7346280724215 60.7129001729138 25.7356081232087 60.7123380024013 25.736910682485 60.7114434200955 25.7389442929846 60.7113969183373 25.7390505333591 60.7107053192692 25.740630950688 60.7097396616095 25.7428769076477 60.7097196827501 25.7429018396131 60.7093404459429 25.7437820687048 60.7093167440518 25.7438370868924 60.709264708643 25.7439578585047 60.7092515614889 25.7439883865784 60.7080614488886 25.746750479765 60.7080614488886 25.746750479765 60.7083074102366 25.7559429952564 60.7083058183931 25.7575894883284 60.708357141943 25.7598377779554 60.7083760601589 25.7606482732616 60.7083993879836 25.7616488908092 60.7084385259715 25.7633282151113 60.708511231944 25.7663284930242 60.7085211010085 25.766587138603 60.7085413002591 25.767116652773 60.7086142485855 25.7684675256126 60.7086563008617 25.7693358925588 60.7087189576683 25.7699031290008 60.7102907679977 25.7860592150621 60.7111656992176 25.7948864292369 60.7113502315093 25.796742423623 60.7113601419305 25.796863164422 60.7113660590863 25.7969391761096 60.711372386381 25.7970108660686 60.7116098458046 25.7993686539059 60.7116176828257 25.7994416262861 60.7117008064027 25.8005713096831 60.7117391659713 25.8010802061683 60.7121331228357 25.8062990175227 60.7125317884785 25.8115989792747 60.71266684721 25.8133952813317 60.7135632177309 25.8258133782896 60.7136050389177 25.8263932753465 60.7139318662127 25.830926252746 60.7139499112726 25.8311843500005 60.714439951709 25.8329536754814 60.7146945814033 25.8338994236653 60.7149515532231 25.8348592137117 60.7151008400101 25.8350717923692 60.715687646511 25.8359073987348 60.7167055331348 25.8373569124343 60.7168370954715 25.837548288841 60.7169060731383 25.8376486366634 60.7170139545023 25.8378055704325 60.7171918811724 25.8380597004504 60.7173339260582 25.8382619944461 60.7175105545143 25.838513555349 60.7176403982257 25.8386984965532 60.7177750872218 25.8388903209499 60.7178707649006 25.8390265886207 60.7180091263953 25.8392236536081 60.7181048037374 25.839359923257 60.7182078540634 25.8395035892946 60.7193160091366 25.841097006641 60.7201545370431 25.8422966035563 60.7208199623368 25.8432475818647 60.7223293283553 25.8454052747904 60.7231684635846 25.846618564931 60.7239828007523 25.8477697431754 60.7246001765688 25.8486823706968 60.725039897504 25.8493402904062 60.7250611070858 25.8493728058119 60.7250803694336 25.8494023293257 60.7266621908042 25.8515754772409 60.7267418536717 25.8516886308158 60.7271617811199 25.8523437658491 60.7284574304306 25.8542394598106 60.7284774619677 25.8542687602245 60.7284991848902 25.8543005489583 60.7285366814383 25.8543561794815 60.7285543556805 25.8543807236146 60.7285805078453 25.8544170117813 60.7286157730627 25.8544679183222 60.7288253114865 25.854770646077 60.7290059761416 25.8550307314856 60.7300801972432 25.8566296985589 60.731168407957 25.8581561216196 60.7320030400739 25.8593777503171 60.7322097716102 25.8623751524129 60.7322484229148 25.8628839356222 60.7324155841826 25.8655510242465 60.7324961190311 25.8665758996303 60.7325193905452 25.8668720659164 60.7328314753336 25.8716629392993 60.7328981805531 25.8726504605549 60.7329393262979 25.8732246059435 60.7336918974568 25.8841500347046 60.7342858821665 25.8927170179951 60.7345908614662 25.8971189053548 60.7350663794738 25.9039913310402 60.7352477962684 25.9067531175942 60.73544952539 25.9094812540282 60.7358729653231 25.9149330452213 60.7344272051376 25.9157670082196 60.7323617584571 25.9169837037743 60.7290097909039 25.9189183469474 60.7271635548807 25.9200341722876 60.7263570103387 25.9205230686734 60.7238381453574 25.9221425594352 60.7238356965766 25.9221529256785 60.7237718003191 25.9221852041144 60.7231768656371 25.9225676789902 60.7208358782278 25.9240538336726 60.7185050592564 25.9255705160747 60.7184074458078 25.9256330691923 60.7156719309541 25.9273440122586 60.7153999230297 25.9275141372679 60.7146780219114 25.9279656099131 60.7144403390856 25.9281142386159 60.7119992090321 25.9296406951113 60.7117764852369 25.9297782828577 60.7106763665245 25.9304749429725 60.7101765428643 25.9307921761423 60.7095462389367 25.9311922311256 60.7095309708736 25.9312019182822 60.7094731954006 25.9312385967176 60.7091765553658 25.931431552946 60.7088759821841 25.9315569130261 60.7086225468436 25.9317574622162 60.7080019268377 25.9321708262004 60.7072440663013 25.9326605486325 60.7070074823361 25.9328203943826 60.7063358285676 25.9332346016676 60.706136835336 25.9333803862329 60.7059431696879 25.9335186638213 60.7059431696879 25.9335186638213 60.7062775034008 25.9363975865969 60.706352694926 25.9370507697833 60.7065063871076 25.9383850319452 60.7065150037875 25.9384503771397 60.7065231417328 25.9385130997875 60.7070316196737 25.9426586587894 60.7071612848296 25.9438463229198 60.7078837764641 25.9498941141522 60.7083949617374 25.9539889758044 60.7086226006075 25.9558848574964 60.7087079424655 25.9565854245103 60.7089403346116 25.9585766344511 60.7090118017952 25.9591874030008 60.7093763631336 25.9622103606091 60.7095756446865 25.9638783691825 60.7096115652366 25.9641775195403 60.7096795802492 25.9647468838689 60.7097284615694 25.9651561298191 60.7097421020487 25.9652702879507 60.7097534576251 25.9653652980102 60.7124289720599 25.9894678282935 60.7160524148928 26.0224998915851 60.7166302279572 26.0277750063963 60.7138738746055 26.0352187062869 60.7127574962553 26.0382343305687 60.7125519450042 26.0387957425635 60.7108299860608 26.0434261477016 60.7089198735793 26.0485720788123 60.7088911604191 26.0486494627048 60.7084681049093 26.0497895489296 60.7079509040529 26.0511844977666 60.7064459497356 26.0552430624682 60.7046544762406 26.0600879656682 60.7045646108073 26.0603268322655 60.7043522534909 26.0608897503616 60.7002269407306 26.0720514398515 60.7001176589024 26.0723420710106 60.6995175148536 26.0739413783499 60.6988186452138 26.0758034541547 60.6985439382301 26.0765502842641 60.6984192138708 26.0768933292984 60.6983948257323 26.0769557015855 60.6983619571781 26.0770265777713 60.698312034748 26.0771765770622 60.6982879028906 26.0772122904869 60.6982257427812 26.0773676219308 60.6981877793306 26.0775097126317 60.6981815311425 26.077520313893 60.6981107045351 26.0777054374253 60.6980740940395 26.0778132360934 60.6980264918358 26.0779390981607 60.698018116847 26.0779577096454 60.6979045965727 26.0782697058019 60.6977882965257 26.0785745075771 60.6977118952763 26.0787848430285 60.6975790311105 26.0790966354145 60.6974937637971 26.0793614200673 60.6973573919438 26.0797222311825 60.6973514201932 26.0797404251279 60.69728164093 26.0799516830336 60.6972759778447 26.0799651424647 60.6972430587132 26.080043267775 60.6971944013944 26.0801726884218 60.697176959548 26.0802190871331 60.6971029731304 26.0804192534385 60.6970080504381 26.0806734996867 60.6969204987902 26.0809080823606 60.6968006949128 26.0812278560477 60.6967517897839 26.0813592766131 60.6967076674031 26.0814915860702 60.6967031627174 26.0815050852141 60.696683973969 26.0815626134694 60.6966577350139 26.0816120272474 60.6965950966651 26.0817808546819 60.6965296945392 26.0819565187994 60.6964780932277 26.0820955417964 60.6963525704455 26.0824328695357 60.6962872866188 26.0826075751964 60.6962350612374 26.0827473464894 60.6962248682531 26.0827746158324 60.6961526882283 26.0829703230605 60.6961088281917 26.0830874000387 60.6960994679275 26.0831156528196 60.6960088144414 26.083389633984 60.6959872009954 26.0834130886214 60.6959855170416 26.0834176238613 60.695873518272 26.0837202332023 60.6958712225182 26.0837390352826 60.6958580055498 26.08377186636 60.6958065327042 26.0838997440404 60.6957850670639 26.0839566563292 60.6957259485206 26.0841154108725 60.6956813876024 26.084236497401 60.6956357967958 26.0843514222738 60.6955971849429 26.0844575035898 60.6954653519875 26.0848157066349 60.6954368640967 26.084893605045 60.6953482202548 26.0851284154261 60.6953270867329 26.0851919650568 60.6953148835182 26.0852286673174 60.695182071923 26.0855753349626 60.6951402214034 26.0856872195389 60.6951278762024 26.0857176067224 60.6950807189108 26.0858479016546 60.6950334796823 26.0859767333251 60.6949430229845 26.086219849224 60.694825195089 26.0865336480797 60.694803260188 26.0865982807303 60.694652184185 26.0870058937576 60.694579038853 26.0871978729386 60.6944196587273 26.0876217774715 60.6943136624972 26.0879145721015 60.6942364075834 26.0881256190957 60.6940870712247 26.088530934076 60.6940869886489 26.0885517966096 60.6939661042713 26.0888632107881 60.6918597502172 26.0945220713883 60.6916056250523 26.0952033731171 60.6909806645161 26.0968788299327 60.6877180683092 26.1056235630299 60.6873197119962 26.1067113205047 60.6863767055873 26.1092390572679 60.6864146611978 26.109547319917 60.6865003042192 26.110278895684 60.6866143132294 26.1110938828006 60.6868192326979 26.1127592813817 60.6868766091519 26.1131826473163 60.6869146713554 26.113463615566 60.6869744339081 26.1139046244738 60.6870485335116 26.1144514779164 60.6872453482174 26.1159835299472 60.6876487959673 26.1191696998323 60.6877571272783 26.1200253134357 60.6884295427611 26.1253373315901 60.688674513444 26.1274940704546 60.6887333368874 26.1279538132625 60.6889845240663 26.1298617172461 60.6891581222752 26.1312788672369 60.6894913843518 26.13399941292 60.6898347213071 26.1368931396473 60.6899804197514 26.1380953575421 60.690484775427 26.1421215576785 60.6905501586411 26.1422476732536 60.6905664499177 26.1422791029608 60.6905793321523 26.1423039760785 60.6926514298502 26.1463558680947 60.694181713168 26.1494798182857 60.6951443968604 26.1514883432237 60.6967604919884 26.1548966717716 60.6969035919198 26.1551878946384 60.6974496508191 26.1563357534096 60.6985531506298 26.1586572262594 60.6985596655526 26.1586709402277 60.6989434025914 26.1594780943476 60.700169192438 26.1620566552384 60.700181848365 26.1620832713448 60.7002022835399 26.1621262626449 60.7002290966591 26.1621826615412 60.7006468585535 26.163061517157 60.7007538991817 26.1632865388176 60.7008439775003 26.1635819045989 60.7023209596796 26.1684253426935 60.70282351995 26.1700896921957 60.7030415513906 26.1708135131521 60.7036264492343 26.1727346960321 60.7036672576623 26.1728685173089 60.7045348446987 26.1757286393246 60.7054745802301 26.1788031848634 60.7069681040497 26.1837060878618 60.7069747922991 26.1837280507391 60.7070061443753 26.1838309743416 60.7070231856184 26.1838869362056 60.7070279313743 26.1839024991937 60.7087742943114 26.1896348086043 60.7101230473875 26.1940626077833 60.7101754478171 26.194201579556 60.7111083074368 26.1973165791451 60.7126684490789 26.2024622093799 60.7134136989604 26.2049149498066 60.7135107953325 26.2052345074329 60.7149188897471 26.2098027234337 60.7162518669962 26.2142582059763 60.7193769905566 26.2165562679282 60.7208201545445 26.2176259134386 60.7216142899107 26.2182130635544 60.7228807544055 26.2191497388435 60.72339996323 26.2195347514656 60.7292717559655 26.2238442571495 60.7303614934033 26.2232815565437 60.7316675454441 26.2226061431701 60.731713334136 26.2225824469352 60.7319719716887 26.2224534005516 60.7322117882645 26.2223302896117 60.7324865031911 26.2221898487166 60.7324835881134 26.2213779636303 60.7325336013981 26.220872713111 60.7326332433275 26.2210297498864 60.7328294970593 26.2219047862335 60.7328543028124 26.2220049803162 60.7329340778285 26.2219692566538 60.7329767146525 26.2219501638846 60.7329841118295 26.221946849412 60.73692895539 26.2197272220157 60.7371541092153 26.219601364751 60.7381997657365 26.2190579367337 60.7393171718048 26.2184441377518 60.7406154086379 26.2177507362093 60.7446431970539 26.2155967286529 60.7452956083314 26.21524391374 60.7475036152152 26.2140420517349 60.7518403793847 26.2117012901789 60.7531558071723 26.2109858193362 60.7531731525978 26.210976421322 60.7531853782756 26.2109697544114 60.7531981768877 26.2109627982089 60.753302883577 26.2109058438097 60.7533097035238 26.2109021351784 60.7533256704171 26.2108934498009 60.7533387375913 26.2108863585062 60.7554527094468 26.2097442976852 60.7555833380027 26.2096722567887 60.7579931677918 26.2083601964477 60.7579931677918 26.2083601964477 60.7559208386637 26.2125696768032 60.7558272901191 26.2127594816398 60.7552465167941 26.2139409300267 60.7552435624663 26.2139470024355 60.7552383191613 26.2139577731446 60.7552330937027 26.2139685250646 60.7551854520811 26.2140664998529 60.7551810559823 26.2140747543372 60.7551800701298 26.2140765950017 60.7551790221877 26.2140785656278 60.7551717398119 26.2140922486114 60.7545092226663 26.2154242869525 60.7540648240106 26.2163156019411 60.7530657777631 26.2183956338901 60.7510196715297 26.2225992716288 60.7506226656166 26.223474475451 60.7505905729688 26.2235406923429 60.7478438755962 26.2292079108739 60.7479163917007 26.2356022510679 60.7479547389675 26.2396630632661 60.7480017250617 26.2440024294558 60.7480223255203 26.2463858006627 60.7480400684864 26.2479477410078 60.7480469675943 26.248600582442 60.7480791639786 26.2516494413532 60.7480913472431 26.252804369892 60.7480949810349 26.2531490035933 60.749521330633 26.2532462209983 60.74989804677 26.25327190268 60.753485325252 26.2534070812313 60.7546764688226 26.2534283947336 60.7549999579831 26.2534425481836 60.7561130136681 26.2534912204224 60.7567255227429 26.25352919372 60.7573941130702 26.2535543965549 60.7578678442545 26.2535722732602 60.7580828376535 26.2535803620255 60.7609737270436 26.2536893512598 60.7609914974359 26.2536944991177 60.7610091586721 26.2537010075823 60.7610265897612 26.2537097236695 60.761043029663 26.2537242621043 60.7610565287349 26.2537443929036 60.7610682205852 26.2537721451877 60.7610769550714 26.2538041321559 60.7610796127149 26.2538170454736 60.7610848088452 26.2538521244281 60.7610874167016 26.2538883830007 60.7610872758098 26.2539292567854 60.7610845231797 26.2539654746924 60.7610796645086 26.254000787185 60.7610733457667 26.2540351058465 60.7610713514321 26.2540446035759 60.761063688509 26.2540777788887 60.7610451973625 26.2541464969929 60.7610364055003 26.2541784872176 60.761028841602 26.2542117152193 60.7610256815788 26.2542344168942 60.7610242768118 26.2542708419924 60.7610261094934 26.2542871879943 60.7610369891763 26.2543158402092 60.761052313242 26.2543347910483 60.7610682399224 26.2543523147931 60.7610831499941 26.2543727067546 60.7610975832313 26.2543945412807 60.7611057820626 26.254406096435 60.7611213534069 26.2544243075262 60.7611330169198 26.2544372871692 60.7611480061448 26.2544573837368 60.761154644923 26.2544709571822 60.7611632087731 26.2545029667361 60.7611653674549 26.2545440625305 60.7611601296415 26.2545790351264 60.7611535681563 26.254613322686 60.7611509230713 26.2546495381108 60.7611493638201 26.2547228367 60.7611457316125 26.2547559184155 60.7611360618619 26.2547866809814 60.7611244100419 26.2548146081993 60.7611215277203 26.2548210433093 60.7611103104795 26.2548496211031 60.7611051275295 26.2548767008344 60.7611080018864 26.2549124945202 60.7611146062635 26.2549360524837 60.7611272039943 26.2549620591214 60.7611563790869 26.2550047489491 60.761170457068 26.2550305377945 60.7611794674175 26.2550621334055 60.7611853431679 26.2550967748015 60.7611952024021 26.255169698565 60.7612023205956 26.2552033385157 60.7612119733108 26.255234203571 60.7612217642423 26.2552559993808 60.7612360638962 26.2552780577205 60.7612522584714 26.255293722231 60.7612603286561 26.2552982883988 60.7612781686861 26.2553014351669 60.7612958608849 26.2552957395141 60.7613128549446 26.2552839670439 60.761329386383 26.2552697277115 60.7613431932517 26.255256377392 60.7613593928425 26.2552405857696 60.7613759147894 26.255226254852 60.7613931247952 26.2552161840857 60.7614114599114 26.2552195579235 60.7614270735889 26.2552373281389 60.7614404703744 26.255261719955 60.7614479014308 26.2552756974269 60.7614615287724 26.2552995700599 60.7614745883738 26.2553246854918 60.7614833584712 26.255350212376 60.7614887238573 26.2553851229165 60.761493410081 26.2554578370127 60.7614956643813 26.2554806152747 60.7615023447389 26.2555146511576 60.7615101061705 26.2555477260215 60.7615143407707 26.2555649343011 60.7615206366026 26.2555992544198 60.7615242923162 26.2556351222859 60.7615252092701 26.2556563716073 60.7615268930801 26.2556928541048 60.7615289684532 26.2557044231616 60.7615461165976 26.2557074760968 60.7615636630584 26.2556997835691 60.7615682708627 26.2556984838853 60.7615860892643 26.2557009707136 60.7615999377328 26.2557226361971 60.7615961179515 26.2557575578621 60.761592454172 26.2557688011049 60.7615795308534 26.2557941517575 60.7615680940715 26.2558155588585 60.7615588945701 26.2558469713042 60.761551411769 26.255880326037 60.7615425196229 26.2559121167309 60.7615319430559 26.2559315951765 60.7615145457148 26.2559402751511 60.7614973997176 26.2559505643145 60.7614950189089 26.2559535375098 60.7614840248468 26.2559819265433 60.7614820624946 26.2560182732293 60.7614934811952 26.2560454273938 60.7615071433223 26.2560610225981 60.7615232946481 26.2560770006276 60.7615396915434 26.2560919268918 60.7615565424496 26.2561045302374 60.7615740241971 26.2561126960232 60.7615772708616 26.256113666931 60.7615951692394 26.2561160053176 60.7616130582115 26.2561134070836 60.7616306338657 26.2561061178424 60.7616367638021 26.256102433833 60.7616703440327 26.2560765497969 60.7616878441014 26.2560685832262 60.7616983196901 26.2560681387342 60.7617157043149 26.2560766004271 60.7617277513073 26.256092379978 60.7617369742222 26.2561234943387 60.7617412835243 26.2561590537262 60.7617447153639 26.2561950555524 60.7617466986998 26.2562110865432 60.7617540039397 26.2562445027345 60.7617640623918 26.2562724778667 60.7617771749646 26.2562974642319 60.7617921375895 26.2563176727959 60.7618079991357 26.256334832375 60.7618265595133 26.2563529388878 60.7618427721212 26.2563686405119 60.761858686509 26.2563856153926 60.7618737285961 26.2564055836235 60.7618879165494 26.2564334449644 60.7618981214174 26.2564635457991 60.761904935172 26.2564973956932 60.761906738784 26.2565360965704 60.7619025093857 26.2565716702951 60.7618964695092 26.2566062030996 60.7618922221374 26.2566417772194 60.7618919648111 26.2566536757415 60.7618962462274 26.2566890891928 60.7619014084779 26.2567084603361 60.7619130017778 26.2567363635193 60.7619396088146 26.2567856122833 60.7619436968448 26.2567942169018 60.7619547389093 26.2568231056025 60.7619653450344 26.2568527201667 60.7619775073758 26.2568796192424 60.7619838187286 26.2568892369083 60.7620003367475 26.2569033534733 60.7620175093802 26.2569140779941 60.7620301992058 26.2569243556454 60.7620448604648 26.2569452873894 60.7620553846483 26.2569747020908 60.7620565140357 26.2569808425134 60.7620579536727 26.2570170743862 60.7620529948387 26.2570522796755 60.7620465310692 26.2570864920031 60.7620450626732 26.2570937202677 60.7620385448251 26.2571278971234 60.7620328204392 26.2571626796107 60.7620279609284 26.2571979926693 60.7620268696419 26.2572068456034 60.7620235494312 26.2572428755192 60.7620263424223 26.2572803057104 60.7620404619918 26.2573023329541 60.762056437378 26.257318994991 60.7620592955843 26.257322782998 60.7620710916846 26.2573500394999 60.7620770735604 26.2573844962836 60.7620792769859 26.2574208573613 60.7620793386921 26.2574368779573 60.7620775741621 26.2574733491189 60.7620709693577 26.2575129236719 60.7620604484954 26.2575425130254 60.7620475799251 26.2575680822982 60.7620433761148 26.2575758692909 60.7620433761148 26.2575758692909 60.7620340863257 26.2576072654257 60.7620281095549 26.2576337765398 60.7620243567883 26.2576695411155 60.762025307396 26.257705050169 60.7620308773333 26.2577397183683 60.7620335073447 26.2577460810755 60.7620502776615 26.2577425185105 60.7620649579527 26.2577214589393 60.7620792368932 26.2577008857974 60.7620952811094 26.2576845480534 60.7621126790705 26.257675960616 60.7621305936963 26.2576763724836 60.7621480142316 26.2576848526805 60.7621533441761 26.2576891158425 60.7621690729155 26.2577066464144 60.7621830983316 26.2577295203506 60.7621886101764 26.2577406983622 60.7621998654674 26.2577692156196 60.7622069099736 26.2578026386544 60.762207194589 26.2578135153503 60.762200908044 26.2578473381804 60.762188955882 26.2578746481473 60.7621830452234 26.2578855211487 60.7621690487698 26.2579084736233 60.762154952241 26.2579311898024 60.7621442342784 26.2579511300396 60.7621327265568 26.2579792555311 60.7621231652187 26.258010272498 60.7621148150723 26.2580427480501 60.7621081068819 26.25807177203 60.7621012099047 26.2581056271559 60.7620961967172 26.2581407968697 60.7620953949747 26.2581663074811 60.7620988794316 26.2582021802248 60.7621067290642 26.2582350891285 60.7621164041662 26.2582620095708 60.7621290817472 26.2582879614085 60.7621433369297 26.2583101879128 60.7621587931685 26.258328789541 60.7621749355521 26.2583448242933 60.7621912184297 26.2583602868781 60.762198205326 26.2583670629532 60.7622144265756 26.2583827472181 60.7622309367791 26.2583971034175 60.7622482456322 26.2584065042554 60.7622603779986 26.2584085366177 60.7622782872011 26.2584063429024 60.7622962242957 26.25840594713 60.7623110314748 26.2584159563376 60.7623197965082 26.2584471742563 60.7623214613021 26.2584836031703 60.7623196918899 26.2585143668849 60.7623143183816 26.2585493432074 60.7623070964733 26.2585829122993 60.7623003068378 26.2586183434001 60.7622971749782 26.2586544058297 60.7622965514734 26.2586910710686 60.7622968259087 26.2587277522895 60.7622968731804 26.2587493159192 60.7622960340889 26.2587859677774 60.7622945569786 26.2588225242379 60.7622929811061 26.2588590829737 60.7622918723563 26.2588956859869 60.7622919492313 26.2589323717613 60.7622937310059 26.2589688713799 60.7622942102764 26.2589743662085 60.7622986445091 26.2590099237009 60.7623038126564 26.2590450605081 60.7623085869001 26.2590804082951 60.7623110228473 26.2591069271935 60.7623117727726 26.2591435607597 60.7623098370046 26.2591799993277 60.7623073089211 26.2592034760096 60.7623017641545 26.2592383643853 60.762294875962 26.2592722376108 60.7622873381417 26.2593055385075 60.7622798272456 26.2593388387677 60.7622781204885 26.2593468249468 60.7622714218081 26.2593808772834 60.7622644253434 26.2594146611775 60.7622557403614 26.2594467221045 60.7622509307342 26.2594602673333 60.7622387697361 26.2594872144936 60.762226735936 26.2595144339948 60.7622244460038 26.2595208735977 60.7622163837832 26.2595535257457 60.7622148757526 26.2595877703236 60.7622253949041 26.2596163786249 60.7622417638679 26.2596311975396 60.7622592282577 26.2596395126365 60.7622647769777 26.2596411282715 60.7622826689502 26.2596439459941 60.762300544891 26.2596471127955 60.7623178613191 26.2596562755626 60.7623279504353 26.2596687799818 60.7623390350494 26.2596973570244 60.7623448908412 26.2597318541344 60.7623454028442 26.2597416611785 60.7623429263422 26.2597777635007 60.7623348642617 26.2598104524066 60.762324606073 26.2598405490736 60.7623226414101 26.2598457331758 60.7623113237407 26.2598742024659 60.7622995438625 26.2599018932087 60.7622873828768 26.259928858594 60.7622748136492 26.259955062541 60.762262089978 26.2599809396728 60.762235360791 26.2600347055192 60.7622101222214 26.2600868769423 60.7621974349403 26.2601128448954 60.762184665744 26.2601386128329 60.7621716786554 26.2601639452994 60.7621582642592 26.2601883148848 60.7621444313311 26.2602116846816 60.7621301613098 26.2602339450005 60.7621190620567 26.2602499290142 60.7621038792106 26.2602694757469 60.7620883488454 26.2602878742357 60.7620726900622 26.2603057801376 60.7620569673217 26.2603234856139 60.7620413087358 26.2603414281818 60.7620258057986 26.260359917732 60.7620106230372 26.2603794827062 60.7619958605181 26.2604003593857 60.761982180956 26.2604222388664 60.7619689301291 26.2604469714881 60.7619567237406 26.2604738640211 60.7619458225405 26.2605029838736 60.7619369657139 26.2605348646122 60.7619305599155 26.2605732408387 60.7619284797142 26.2606096087955 60.7619297584956 26.2606461563701 60.7619334040867 26.2606820621843 60.7619384733473 26.2607172561887 60.7619408401349 26.2607312782724 60.7619475818034 26.2607652775807 60.7619561987278 26.2607974168255 60.7619689978666 26.2608227060304 60.7619753613529 26.2608287995334 60.761992978472 26.2608355150064 60.7620102073704 26.2608451024546 60.7620126216396 26.2608481852253 60.7620228221849 26.2608776820208 60.7620242986858 26.2609028647839 60.7620170730544 26.2609358641829 60.7620089532297 26.2609515958173 60.7619930544754 26.2609683322932 60.7619758083268 26.2609784376982 60.7619597788707 26.2609877442842 60.7619434397956 26.2610027840411 60.7619287677619 26.2610238051289 60.7619167692549 26.2610509679158 60.7619110044902 26.2610720777023 60.7619061882307 26.2611072789078 60.7619070998239 26.2611456518407 60.7619143141634 26.2611790897449 60.761925266118 26.2612080921007 60.7619370674925 26.2612364509469 60.7619476457139 26.2612660675785 60.7619568157893 26.261297588594 60.7619646740456 26.2613305713095 60.7619695026863 26.261354704266 60.7619750995233 26.2613895375794 60.7619786642194 26.2614254637382 60.7619793352088 26.261457657415 60.7619771290832 26.2614940282612 60.7619709068745 26.2615282891008 60.761962080402 26.2615477807695 60.7619449894515 26.2615583594564 60.7619272422094 26.261563887864 60.7619217458794 26.2615652622049 60.761904676719 26.2615765377716 60.7618880800489 26.261590463608 60.7618748027997 26.2615990091921 60.7618569641572 26.2616026126329 60.7618388665731 26.2616048455706 60.7618214220551 26.2616131749344 60.7618042505506 26.2616335924202 60.761793646566 26.2616629251367 60.7617877852301 26.2616975078002 60.7617858393261 26.2617191719542 60.7617848015139 26.2617557542953 60.7617866361831 26.2617922155613 60.7617917316815 26.2618273355621 60.7617946953026 26.2618405180767 60.7618039098279 26.2618719830249 60.7618132046386 26.2619033543828 60.7618155217639 26.2619132666399 60.7618204469612 26.2619484456619 60.7618218420852 26.2619849904882 60.761821780572 26.2619933974268 60.7618202665759 26.2620299356808 60.7618177007919 26.2620662411568 60.7618152699629 26.2621025985847 60.7618148655829 26.2621107014021 60.7618141422795 26.2621473499481 60.7618145953189 26.2621840265303 60.7618158290867 26.2622206301232 60.7618188706469 26.2622937323705 60.7618199518684 26.262330357828 60.7618200951002 26.2623400814556 60.7618199735281 26.2623767712416 60.7618196723963 26.2624134651503 60.7618203227669 26.2624501188578 60.7618223979278 26.2624846292955 60.7618269562097 26.2625200554192 60.7618363960281 26.2625484321684 60.7618532511766 26.262560286449 60.7618705946444 26.2625695050951 60.7618736991321 26.2625723886087 60.7618873760209 26.2625957129132 60.7618920829801 26.2626222529971 60.7618806217892 26.2626492192895 60.7618666073776 26.2626690499117 60.7618554591743 26.2626974221389 60.7618523708622 26.2627154603115 60.7618503982131 26.2627518989741 60.7618472533775 26.2627776282121 60.7618352061995 26.2628041673949 60.7618261761289 26.2628127801632 60.7618113021727 26.2628330525172 60.7617999559258 26.2628613374195 60.7617921460735 26.2628943128405 60.7617862307565 26.2629289332167 60.761781558959 26.262964369269 60.7617781568244 26.2629972068088 60.7617750420435 26.2630333228724 60.7617724040672 26.2630696115164 60.7617702607495 26.2631060539802 60.7617685937323 26.263142577276 60.7617671693995 26.263179150059 60.7617658977747 26.2632157376885 60.7617647339705 26.2632523411945 60.7617645218881 26.2632595035884 60.7617633131845 26.2632961081209 60.7617617899568 26.2633326648058 60.7617596464669 26.2633690888902 60.7617561896357 26.263405065918 60.7617541074255 26.2634215759784 60.7617484082375 26.2634563380795 60.7617417354439 26.2634903883867 60.7617345935971 26.2635240456763 60.7617272623083 26.2635575421205 60.7617203459893 26.263591396088 60.7617141510825 26.2636258207863 60.7617101471433 26.2636537351285 60.7617067982675 26.2636897646521 60.7617045378725 26.2637261729758 60.7617027808109 26.2637626798733 60.7617008259326 26.2637991362426 60.7616997231257 26.263815788975 60.761696455205 26.2638518533193 60.7616921612243 26.2638874640022 60.7616870208343 26.2639226352562 60.7616815379823 26.2639575757624 60.7616755525622 26.2639941978574 60.7616342837804 26.2642015914385 60.761631469289 26.2642155671506 60.7616246972481 26.2642495643885 60.7616181595185 26.2642837214183 60.7616121807986 26.2643183060922 60.7616088235972 26.2643397453484 60.7616038000975 26.2643749688176 60.7615991998378 26.2644104211665 60.7615903326643 26.2644815384308 60.7615854792698 26.2645183179275 60.7615806088432 26.2645536296004 60.7615755762091 26.2645888348608 60.7615703725913 26.2646239706144 60.7615543017195 26.264729002933 60.7615489177109 26.2647639959488 60.7615433210174 26.2648011410644 60.7615381891637 26.2648362751049 60.7615332556097 26.2648715514159 60.7615287092846 26.2649070390844 60.761524622209 26.2649427731685 60.7615205649725 26.264983957252 60.7615175576873 26.2650201254226 60.7615149910933 26.2650564303232 60.7615128111244 26.2650928364874 60.7615119715183 26.2651100336285 60.7615101242043 26.2651465239377 60.7615081959825 26.2651829977408 60.761506097078 26.2652194570912 60.7615036023504 26.2652557786708 60.7615008094568 26.2652868399012 60.7614975052301 26.2653229046965 60.7614951722702 26.2653592592631 60.7614946277292 26.2653959216216 60.76149600416 26.2654325033447 60.7614972997834 26.2654690869185 60.761497803377 26.2654839959712 60.7614989644245 26.2655206009786 60.7614999280576 26.2655572288547 60.7615004609621 26.2655939032856 60.7615004373527 26.2656306087931 60.7614996619334 26.2656677535944 60.7614979582079 26.2657042589252 60.7614948607528 26.265740392356 60.7614893861028 26.2657752770904 60.7614877752042 26.2657828017217 60.7614789171195 26.265814680558 60.7614676884545 26.2658432367032 60.7614550363647 26.2658692743683 60.7614418299178 26.2658940950677 60.761435490296 26.2659054532961 60.761408295785 26.2659533689946 60.7613947619173 26.2659774263031 60.7613813283032 26.2660017565866 60.7613697133472 26.2660237145383 60.761356806942 26.2660492256432 60.7613441546111 26.266075226437 60.7613317473767 26.266101717125 60.7613195581054 26.2661286616221 60.7613075683402 26.2661559685884 60.7612706571807 26.2662413427686 60.7612587490927 26.2662688129561 60.761246904343 26.2662963734382 60.7612351411876 26.2663240788548 60.7612235139929 26.266352019726 60.7612121405694 26.2663803952367 60.7612011929939 26.2664094767421 60.7611894952132 26.2664425761619 60.7611794526949 26.2664729766757 60.761169898665 26.2665040450508 60.7611608055889 26.266535671803 60.7611521101223 26.2665677666182 60.761143721788 26.2666002030968 60.7611355682644 26.2666328911293 60.7611276042629 26.2666657583411 60.7611197846953 26.2666987690574 60.7611120644735 26.2667318876033 60.7610968677009 26.2667983576642 60.7610893461622 26.2668316918542 60.7610519813378 26.2669984671394 60.7610444865815 26.2670317822718 60.761036928774 26.2670650621227 60.7610326140651 26.2670838798285 60.7609866983301 26.2672830026068 60.7609715915592 26.267349561851 60.7609641329258 26.2673829310493 60.7609567284496 26.2674163540533 60.7609487571549 26.2674528547795 60.7609415512678 26.2674864750963 60.7609344535028 26.2675201663411 60.7609274820151 26.2675539648044 60.7609206368046 26.2675878704866 60.7609139179714 26.2676219017379 60.7609073793804 26.2676560573306 60.7609010302093 26.2676903737602 60.7608948613801 26.2677248328821 60.7608888823712 26.2677595262412 60.7608773918566 26.2678290307295 60.760871565438 26.2678637205721 60.7608656490352 26.2678983757486 60.7608609361526 26.2679248734981 60.7608543884066 26.267959010828 60.7608474801509 26.2679928994296 60.7608402378177 26.2680264469391 60.7608327700379 26.2680598160493 60.7608252028969 26.2680930772952 60.7608175636274 26.2681262851123 60.7608154639948 26.2681380599332 60.7608154639948 26.2681380599332 60.7608089134382 26.2681568732449 60.7607985719708 26.2681868575684 60.7607883301495 26.2682170047711 60.7607782328618 26.2682473138306 60.7607683347729 26.2682779303184 60.7607588978308 26.268309141901 60.7607499579451 26.2683409477614 60.7607415420476 26.268373347287 60.7607336770707 26.2684063398658 60.7607262542835 26.2684397444548 60.7607203809205 26.2684674980217 60.7607136438084 26.2685015109373 60.7607073214527 26.2685358447306 60.7607013507107 26.2685704457843 60.7606957223047 26.2686052592548 60.7606903464595 26.268640287187 60.7606850785351 26.2686753493543 60.7606798827215 26.2687104649243 60.7606786190018 26.2687191191369 60.760562800629 26.2693779110261 60.7605457978463 26.269482316485 60.7605441103601 26.2694939532796 60.760522389864 26.2696718919015 60.7604963451827 26.2699231342995 60.760494658869 26.2699382945906 60.7604382841395 26.2703646050577 60.7604244877495 26.2704709921671 60.7604207230767 26.2705068454322 60.7604186065708 26.2705304205747 60.7604086309164 26.2706757184751 60.7604057773132 26.2707074034963 60.7604015985152 26.2707430642429 60.7603964742784 26.2707782325905 60.7603905569215 26.2708128500232 60.7603846808634 26.2708435025093 60.7603774649471 26.2708770849849 60.7603694187059 26.2709098788104 60.7603602251367 26.2709413773275 60.7603565587851 26.2709523798696 60.7603455014867 26.2709812779966 60.7603329115346 26.2710073663549 60.7603202250456 26.2710272539755 60.7603045095546 26.2710448979897 60.7602876621208 26.2710574658777 60.7602701519676 26.271065387441 60.760252314752 26.2710692973819 60.7602385975272 26.2710696820528 60.7602206978976 26.2710670601837 60.7602029536909 26.2710616453277 60.7601853954276 26.2710540974585 60.7601505433479 26.2710364448574 60.7601381830498 26.271030430711 60.760120607627 26.2710230300767 60.7600851260939 26.271011814911 60.7600672907076 26.2710077969026 60.76005925575 26.2710063092415 60.7600406092916 26.2710033923918 60.7600226619684 26.2710035611049 60.7600047410725 26.2710052891055 60.75999857093 26.2710066036292 60.7599809561458 26.2710134447777 60.7599706208131 26.2710215338009 60.7599559830063 26.2710425298622 60.7599445356679 26.2710707023836 60.7599343836673 26.2711009742763 60.7599299790378 26.2711149113056 60.7599099914144 26.2711758515723 60.7598993686735 26.2712054183676 60.7598882117693 26.2712341714415 60.7598762479896 26.2712614930273 60.75986318597 26.2712866373211 60.7598490687063 26.2713092546686 60.7598410123247 26.271320356573 60.7598254710522 26.2713386752326 60.759809297079 26.2713545674752 60.7597942957807 26.2713681575178 60.7595936664728 26.2715281626639 60.7595813363956 26.2715376363064 60.7593802085475 26.2716951548517 60.7593739317321 26.2716999767247 60.7593236590393 26.271739415467 60.7593071445845 26.2717537918244 60.7592925575037 26.2717676106417 60.7592766496998 26.2717845790891 60.7592617113313 26.271804810408 60.7592559484693 26.2718149974897 60.7592442108982 26.2718426618631 60.7592349808975 26.2718741047764 60.759231953446 26.2718870375682 60.7592258824851 26.2719215285589 60.7592236425395 26.2719538406811 60.7592236080096 26.2719905071003 60.7592229754887 26.2719996970189 60.7592136792243 26.2720305174277 60.7591986293061 26.2720500537756 60.7591920499495 26.2720537262846 60.7591742717211 26.2720519637014 60.7591593580922 26.2720436582588 60.7591422733388 26.2720323557358 60.7591310385146 26.2720219483233 60.7591163783979 26.272000791385 60.7591116615816 26.2719952644853 60.7590943059681 26.2719869960737 60.7590879766275 26.2719871028058 60.7590703794461 26.2719938877662 60.7590622492526 26.2719996690878 60.7590459922107 26.2720151587749 60.7590307619479 26.2720345523057 60.7590166628084 26.2720572233763 60.7590036096139 26.2720823664689 60.7589914338803 26.2721103707722 60.7589804577222 26.2721393755331 60.7589690106474 26.2721676385512 60.7589629291234 26.2721803284324 60.7589486563015 26.272202434444 60.7589373604224 26.2722089113427 60.7589208990542 26.272195007196 60.758904406359 26.2721736716237 60.7588874723428 26.2721620170368 60.758869575794 26.2721616150615 60.7588518557254 26.2721672649039 60.7588425780167 26.2721717141692 60.7588253496562 26.2721819405966 60.7588085948706 26.2721950557313 60.7587946355493 26.2722104013874 60.7587802446212 26.2722322530319 60.7587675092873 26.2722580676503 60.758759358935 26.2722783465203 60.7587493332382 26.2723087792047 60.7587410335803 26.272341264776 60.758734646995 26.2723755237384 60.7587324006888 26.27239177845 60.75872890552 26.2724277519446 60.7587265436958 26.2724641034842 60.7587254434906 26.2724814332836 60.7587226320802 26.2725176665398 60.7587190019165 26.2725535880134 60.7587162758968 26.2725757625495 60.7587108086371 26.2726106796048 60.7587026078573 26.272643199521 60.7587001652703 26.2726497510314 60.758686820407 26.2726741111492 60.7586708105509 26.272690493907 60.7586536189549 26.2727008843255 60.7586501160087 26.2727023032407 60.7586323078594 26.2727066151285 60.7586143670201 26.2727063239596 60.7585965241935 26.2727025806198 60.758589409759 26.2727003010269 60.7585718175621 26.2726931020696 60.7585368968514 26.2726760006447 60.7585216571579 26.2726688218545 60.7585040051001 26.2726621748074 60.7584861706528 26.2726583212103 60.7584676102383 26.272659677312 60.758450014711 26.2726667736948 60.7584385254077 26.272672355522 60.7584211667479 26.2726817403674 60.7584028187325 26.2726990934535 60.7583922398418 26.2727285289016 60.7583832472644 26.2727640575503 60.7583749296393 26.2727965613888 60.7583692738816 26.2728265276174 60.7583673520452 26.2728629054616 60.7583677804564 26.2729022029187 60.7583667308095 26.2729388179269 60.7583628352081 26.272968854393 60.7583533327324 26.2729997701107 60.7583396423846 26.2730233485576 60.7583244025978 26.2730426679922 60.7583087056832 26.2730604746486 60.7583042424726 26.2730652917556 60.7582565921579 26.2731165221923 60.7582403077528 26.2731319564881 60.7582236728588 26.273145673742 60.7582118482196 26.2731539971822 60.7581945730058 26.2731638752775 60.758176997393 26.2731713378832 60.7581592297082 26.2731764926556 60.7581413424673 26.2731794664117 60.758123400103 26.2731805513061 60.7581054580705 26.2731800396958 60.758087543501 26.2731779676706 60.7580696835258 26.2731743713204 60.7580603054744 26.2731719043151 60.7579896639089 26.2731457749559 60.7579768260706 26.2731410924351 60.7579590816423 26.2731356217577 60.7579412369374 26.2731315296377 60.7579233305492 26.2731293106609 60.7579053850045 26.2731298084338 60.7578991583894 26.2731306466275 60.7578813510189 26.2731351049594 60.7578637655349 26.2731424025766 60.7578464813433 26.2731522807729 60.757829476414 26.2731639876774 60.7578127403777 26.2731772666172 60.7578064040429 26.273182713221 60.7577900276674 26.2731977456382 60.7577580189822 26.2732309131502 60.7577423495693 26.2732488288781 60.7577396730098 26.2732519722789 60.7577242782849 26.2732708726894 60.757709276148 26.2732909753212 60.7577019537665 26.273301692374 60.7576733635474 26.273346031092 60.7576578768482 26.2733645297922 60.7576542946502 26.2733678955112 60.7576372148015 26.273379035067 60.7576194147103 26.2733831811048 60.757600458092 26.2733793525907 60.7575833829211 26.273368141436 60.7575667868083 26.2733542036254 60.7575498939038 26.27334183231 60.7575427276367 26.2733382693062 60.7575248438117 26.2733352423212 60.7575069145666 26.2733337761327 60.7575033282677 26.2733330681912 60.7574856339355 26.273326899047 60.7574677990073 26.2733229534593 60.7574616510024 26.2733233861219 60.7574445707592 26.2733344522422 60.7574370972543 26.273340474977 60.7574201110569 26.2733523280084 60.7574036415081 26.2733667383596 60.7573980972361 26.2733742038056 60.7573859057919 26.273401013809 60.7573761656001 26.2734278417563 60.7573651710971 26.2734568266651 60.7573531707466 26.2734841093905 60.7573476207926 26.2734955018531 60.7573342310817 26.2735198983019 60.7573195481846 26.2735409292068 60.7573110842862 26.2735497634755 60.7572940877018 26.2735613596829 60.7572763678663 26.2735670635139 60.7572584808125 26.273570073663 60.7572550979792 26.2735704621024 60.7572192124441 26.2735724846042 60.7572012755143 26.2735712570199 60.757187641334 26.2735687393983 60.7571345252371 26.2735507463226 60.7571167142672 26.2735462496119 60.7571042261898 26.2735448070894 60.7570863041582 26.2735463316795 60.7570685937968 26.2735521270165 60.757050462668 26.2735631248898 60.7570340581228 26.2735779371939 60.7570170819169 26.2735966158881 60.7570016959197 26.2736154788079 60.7569926956308 26.2736297199642 60.7569807221764 26.2736570016991 60.7569595931749 26.2737162907222 60.7569480276627 26.2737442971694 60.7569339820913 26.273766964798 60.7569244706296 26.2737746848885 60.7569066068287 26.2737770154178 60.7568930168029 26.2737760197693 60.7568548429485 26.2737799287221 60.7568368937241 26.2737797472512 60.7568166691931 26.2737838560129 60.7567999964307 26.2737972245251 60.7567848022087 26.2738166884281 60.7567722173047 26.2738338546651 60.7567567674377 26.2738525352721 60.756740813579 26.2738693372279 60.7567310888918 26.273879135581 60.7567148043935 26.2738945687526 60.7566954122275 26.2739081454201 60.7566776609753 26.273913023924 60.7566598800262 26.273909095237 60.7566571956934 26.2739074860796 60.7566409241582 26.2738921281279 60.7566250470785 26.2738749997074 60.7566219888097 26.2738723163747 60.7566046127684 26.2738635709521 60.7565866898802 26.2738632787417 60.7565688824808 26.2738677364804 60.7565556846158 26.2738728423704 60.75653822195 26.2738812741783 60.7565209471731 26.2738912430988 60.7565039237231 26.2739028577937 60.7564872243131 26.2739162817637 60.7564709580625 26.2739317694347 60.7564552151428 26.2739493921649 60.7564486422946 26.2739575961657 60.7564337679191 26.2739780984762 60.7564195138383 26.2740004033579 60.7564058422553 26.274024163022 60.7563796262827 26.2740742441062 60.7563757272369 26.2740821124067 60.75633847378 26.2741615634437 60.7563031340791 26.2742445859162 60.7562998911756 26.2742525861517 60.7562766063066 26.2743084174628 60.7562636707765 26.2743338117169 60.7562558719564 26.2743460985118 60.7562405129817 26.2743649967101 60.7562239332082 26.2743789681097 60.7562065733294 26.2743881495593 60.7562023703158 26.2743896206897 60.7561666063316 26.2743958598227 60.7561488282263 26.2744007569302 60.7561429445827 26.2744035871686 60.7561261616449 26.274416517178 60.7561105558028 26.2744345951184 60.7560955534853 26.274454696193 60.7560929158817 26.2744584072818 60.7560634593107 26.2745003401811 60.7560563486197 26.2745103726989 60.7560416020254 26.2745312753009 60.7560272564888 26.2745532881378 60.7560165219442 26.2745739349713 60.7560051555401 26.2746022660749 60.7559968339002 26.2746274640813 60.7559779207132 26.2746898016509 60.7559679940055 26.2747203754932 60.7559663488793 26.2747249816064 60.7559548467887 26.2747531321817 60.7559418929206 26.2747784713662 60.7559288605474 26.2747975918957 60.7559126763783 26.2748133338849 60.755895503554 26.2748239053312 60.7558778986275 26.2748309451131 60.7558600914905 26.2748354572557 60.75580640042 26.2748439537059 60.7557885932824 26.2748484658309 60.7557709693087 26.2748553041642 60.7557676212356 26.2748571412505 60.755735355202 26.274889283255 60.755719502143 26.2749064855628 60.7557042074168 26.2749256569621 60.7556953857984 26.2749380949229 60.7556812225195 26.2749606170018 60.7556676780347 26.2749846664246 60.7556413983593 26.2750346552563 60.7556390784215 26.2750390012959 60.7556384116496 26.2750402273822 60.7556123987592 26.2750880816077 60.7555998173646 26.2751142376908 60.7555884510429 26.2751426049294 60.7555862405576 26.2751489301858 60.7555817263831 26.2751626103473 60.7555762140002 26.2751793222728 60.7555671187597 26.2752109227198 60.7555594416026 26.2752440875298 60.7555527477429 26.2752781108996 60.7555505773415 26.2752901968416 60.7555336812863 26.27539858048 60.7555303024071 26.2754346208247 60.7555261313174 26.275470275347 60.7555233255497 26.2754860821009 60.7555144107774 26.2755178618289 60.7555038232708 26.2755474773708 60.7554960478836 26.2755674512939 60.7554737048381 26.2756248737226 60.7554620213227 26.2756527156967 60.7554495031549 26.2756789617539 60.7554455389925 26.2756864274195 60.755431676004 26.2757097128792 60.7554169839762 26.2757307784303 60.7554016984052 26.2757500040943 60.7553704867483 26.2757862312313 60.7553667930276 26.2757905714465 60.755336185163 26.2758288766749 60.7553213471987 26.2758495233719 60.7553058080585 26.2758733418674 60.7552920997338 26.2758970089858 60.7552794725993 26.2759230370766 60.7552749538593 26.2759342216488 60.7552648366546 26.2759644867932 60.755255976326 26.275996393346 60.7552488708411 26.2760223886951 60.7552397212385 26.276053934756 60.7552311770813 26.2760862011128 60.7552293618881 26.2760942421217 60.7552226679106 26.2761282833125 60.7552131977221 26.2761636531043 60.7551998608876 26.276187953871 60.7551838968613 26.2762045889322 60.7551788099291 26.2762086485279 60.7551616184425 26.2762191093098 60.7551438676934 26.2762240963782 60.7551373764521 26.2762241508574 60.7551196001881 26.2762194136212 60.7550846204275 26.2762029353704 60.7550663009593 26.2761973663462 60.7550483760197 26.2761983573023 60.7550305693277 26.2762029603003 60.7550180710928 26.2762062877395 60.7549619598536 26.2762155517828 60.7549443170598 26.2762222428202 60.7549250540404 26.2762331722007 60.7549082155713 26.2762458267774 60.7548982983187 26.2762549125844 60.7548826097436 26.2762726788688 60.7548681363509 26.276294344381 60.7548595288569 26.2763115474695 60.7548486603961 26.2763407097532 60.7548389411761 26.2763715342108 60.7548311497389 26.2763952143071 60.7548196199649 26.2764232905103 60.7548080341435 26.2764443037297 60.7547928486054 26.2764637833145 60.754776323758 26.2764779902881 60.7547590951518 26.2764882314455 60.7547489550535 26.2764926249101 60.7546957297272 26.2765092545617 60.7546862270321 26.2765136336586 60.7546690916601 26.276524514868 60.7546523183791 26.2765376080873 60.7546427165816 26.2765452554419 60.7546260170969 26.2765587139486 60.7546099154913 26.2765748195161 60.7546037674886 26.2765835817423 60.7545912034565 26.276609680975 60.7545801811252 26.2766386261946 60.7545741415529 26.2766558446197 60.7545192109157 26.2768008598622 60.7545117423547 26.2768211562319 60.7545009101861 26.2768504089505 60.7544892171383 26.2768781947987 60.7544809942975 26.2768934806308 60.7544655064038 26.2769118473522 60.7544487326885 26.276924866901 60.75443867873 26.2769319187678 60.7543880338708 26.276969223147 60.7543829017303 26.2769732284919 60.7543329783581 26.2770144614047 60.7543004542959 26.2770454679973 60.7542215614068 26.2771358653731 60.7541589817322 26.277207767264 60.75414712304 26.2772214832958 60.7540845433183 26.2772933848527 60.7540782311881 26.2773000220948 60.754030157149 26.277349560939 60.7540150538546 26.277369331341 60.7540010176241 26.2773921785687 60.7539982889897 26.2773973407248 60.7539859974815 26.2774240568525 60.7539795974095 26.277439374707 60.7539681467297 26.2774671727849 60.7539681467297 26.2774671727849 60.7539569521563 26.2774958457955 60.753946481804 26.2775256217388 60.753942390217 26.2775394564945 60.7539344685054 26.2775723309876 60.7539205655956 26.2776399628535 60.7539176804318 26.277652742967 60.7539013226584 26.2777180263404 60.7538961788005 26.2777498842053 60.7538946959129 26.2777863201945 60.7538977808967 26.2778223415977 60.7539055183863 26.277855322747 60.7539085724585 26.277863914422 60.7539208019314 26.277890721413 60.7539304444834 26.2779156600048 60.7539289818691 26.277950866244 60.7539180488235 26.2779797716984 60.7538771954843 26.2780514032807 60.7538690290382 26.2780671826498 60.7538576076277 26.2780954384507 60.7538485657563 26.2781270718651 60.7538423759738 26.2781614667946 60.7538383661449 26.2781971888469 60.7538359106098 26.2782381051794 60.7538351470742 26.2782747634431 60.7538356315033 26.2783114120237 60.7538376321376 26.278347843072 60.7538382084791 26.2783548390946 60.7538421628477 26.2783906024373 60.7538476657806 26.2784254870015 60.7538544745893 26.278459443197 60.7538623286304 26.2784924218357 60.7538644004618 26.2785003567351 60.7538733791508 26.2785320991673 60.7538831694608 26.2785628325967 60.7538945671335 26.2785952730279 60.7539051684662 26.2786248874018 60.7539148338587 26.2786557704788 60.7539201302619 26.2786789720459 60.7539231522622 26.2787150133216 60.7539226398686 26.2787516476862 60.7539221118424 26.2787636592137 60.753919469494 26.2787999193759 60.7539136571867 26.2788344158659 60.7539072352514 26.2788490366645 60.7538903778903 26.2788598917712 60.753872504139 26.2788570452993 60.7538634419802 26.2788531937539 60.7538462716569 26.2788425702612 60.7538127219317 26.2788164616692 60.7538034477717 26.2788099177358 60.7537859669736 26.2788016681528 60.7537685155498 26.2788022249783 60.7537517853517 26.2788150220993 60.7537374381055 26.2788401873348 60.7537300652807 26.2788733425421 60.7537287258266 26.2789097934156 60.7537329421221 26.2789826321707 60.7537333100745 26.2789892842451 60.7537349160063 26.2790258158131 60.7537379738233 26.2790618561088 60.7537455054619 26.2790849891167 60.7537626753889 26.2790921999799 60.7537800644066 26.2790833697437 60.7537964880226 26.2790686530842 60.7538003794553 26.279064327373 60.7538307324523 26.2790252071377 60.7538425891476 26.2790144276481 60.7538602636521 26.2790086000286 60.7538781905827 26.2790096472765 60.7538965023568 26.2790121353912 60.7539144490166 26.2790135124656 60.7539322236102 26.2790179575406 60.7539461246215 26.279028379289 60.7539603927699 26.2790503154461 60.7539667801328 26.2790710339804 60.753967782183 26.2791071390102 60.7539615016841 26.2791414074729 60.7539542718714 26.2791677708198 60.7539440364353 26.2791978895549 60.7539324427351 26.2792258736593 60.7539268674239 26.2792376497849 60.7539161874937 26.2792585676843 60.7539048818498 26.2792866920661 60.7538999966643 26.2793216447072 60.7539018888015 26.2793579865799 60.7539078027746 26.2793925502344 60.7539117277174 26.2794078379361 60.7539201272472 26.27943208927 60.7539299115047 26.2794533738638 60.7539577285357 26.2795138127064 60.7539692820861 26.2795418831911 60.753980061185 26.2795712003865 60.7539867435442 26.2795916922439 60.7539955345309 26.2796236411358 60.7540022980508 26.2796575804037 60.754005066542 26.2796832424768 60.7540051013165 26.2797198279534 60.7540001630394 26.2797549469595 60.7539986356119 26.2797614397527 60.7539889335569 26.2797922619614 60.7539783813053 26.279821928925 60.7539697993419 26.2798540103626 60.7539687722078 26.2798767667427 60.7539793508731 26.2799055564441 60.7539903160102 26.279921035085 60.7539941158118 26.2799263993362 60.7540015744506 26.2799359567185 60.7540165690594 26.2799560972613 60.7540299961031 26.2799802728542 60.7540343552863 26.2799928354224 60.754035363369 26.2799983172901 60.7540406351077 26.280027005824 60.7540420879428 26.2800635045227 60.754041871735 26.2801001874044 60.7540415710566 26.2801144323384 60.7540379310729 26.2802242177194 60.7540356300664 26.2802605803294 60.7540321783288 26.2802983448227 60.7540277988684 26.2803338916077 60.7540221764656 26.2803687139446 60.7540151386787 26.2804024670763 60.7540057773756 26.2804365841451 60.7539952972934 26.2804663410352 60.7539731423368 26.2805240650425 60.7539624532399 26.2805567072123 60.7539546302293 26.2805897071979 60.7539490256166 26.2806245106632 60.7539455101744 26.2806604599747 60.7539440000555 26.2806969882236 60.7539439389684 26.280704016927 60.7539447548046 26.2807406398915 60.7539474273078 26.2807769093808 60.7539517749612 26.280812462501 60.7539579747295 26.2808484879261 60.7539653904485 26.2808818807148 60.7539740831623 26.2809139789182 60.7539838193578 26.2809447694166 60.7539942597575 26.2809746084189 60.7540000716695 26.2809902027429 60.7540108771889 26.2810194831598 60.7540208452033 26.2810499749672 60.7540291002387 26.2810825050716 60.7540319532217 26.2811022022341 60.7540319604802 26.2811387516562 60.7540273735277 26.2811741561793 60.7540228613497 26.2811950272613 60.7540201276788 26.2812076569169 60.7540155924016 26.2812242166848 60.7540056097411 26.2812546777764 60.7539941967337 26.2812829507147 60.7539815778191 26.2813090304783 60.7539680959135 26.2813332396637 60.7539654973683 26.2813375729013 60.7539512055511 26.2813597635331 60.7539363026069 26.281380169696 60.7539207876524 26.2813986262779 60.7539046582323 26.2814146746327 60.7538906138707 26.2814260709691 60.7538734783883 26.2814370043269 60.7538559775537 26.2814451018901 60.7538382479953 26.2814507275694 60.7538203815517 26.2814542646241 60.7538154915478 26.2814548877213 60.7537796175888 26.2814574146577 60.7537740017801 26.2814583108566 60.7537617295549 26.2814602733077 60.7537414321873 26.2814675893562 60.753724351745 26.2814787415858 60.7537081944978 26.2814946252917 60.7536934373339 26.2815154316327 60.7536844171815 26.2815328253879 60.7536734569199 26.2815618217394 60.7536650194563 26.2815941376939 60.7536580805053 26.2816279613589 60.7536523603698 26.2816596844416 60.7536358345208 26.2817643803747 60.7536312388172 26.2817998579566 60.7536273451192 26.2818356501013 60.753626138648 26.2818484472406 60.7536232257462 26.2818846394569 60.7536209513194 26.2819210192256 60.7536181102289 26.2819941258934 60.7536160583388 26.2821425882744 60.7536135372613 26.2823259038584 60.7536134731476 26.2823424551353 60.7536138578107 26.2823791240833 60.7536152743896 26.2824156782475 60.7536182421098 26.2824518308172 60.7536246290359 26.2824859988563 60.753635477399 26.282516636222 60.753649417814 26.282539516772 60.7536661322971 26.2825522623663 60.753672671473 26.2825527768871 60.7536895348773 26.2825413181782 60.7537031454347 26.2825176205849 60.7537084236499 26.2825039619053 60.7537175296926 26.2824723834878 60.7537272053348 26.2824415446005 60.7537328363632 26.2824300614325 60.7537488865801 26.2824142906647 60.7537666940336 26.2824114710429 60.7537720732926 26.2824133508468 60.7537883064826 26.2824284373735 60.7538018755461 26.2824523904735 60.7538059351028 26.282461015144 60.7538176125467 26.2824888636035 60.7538279634171 26.2825188150359 60.7538362626904 26.2825512892853 60.7538400689867 26.2825730018078 60.7538436369827 26.2826089210654 60.7538451073646 26.2826454742989 60.753846011081 26.282718791381 60.753846290535 26.2827290784131 60.753848012059 26.2827655893526 60.7538490247402 26.2828021895098 60.7538488634496 26.2828140092714 60.7538470832219 26.2828505066326 60.753847682227 26.2828869875868 60.753849188649 26.2828966967957 60.7538596720328 26.2829262601204 60.7538718473186 26.2829531986279 60.7538752750263 26.2829628833212 60.7538807124586 26.2829974949262 60.7538791560313 26.2830338772304 60.7538744247413 26.2830692478311 60.7538679646983 26.2831053909148 60.7538614492708 26.2831395719746 60.7538556728345 26.2831742686286 60.7538513286194 26.2832098323764 60.7538504675139 26.2832251171856 60.7538515068063 26.2832616800684 60.7538554955823 26.2832974065461 60.7538611494672 26.2833322151863 60.7538621292072 26.2833374592343 60.7538693387062 26.2833710222206 60.753878601469 26.2834023743558 60.7538826353418 26.2834129262887 60.7538946860204 26.2834400879543 60.7539049108955 26.283470024223 60.7539064801533 26.2834814201007 60.75390217712 26.2835163040638 60.7538910352134 26.2835449920617 60.7538809757883 26.2835645369016 60.7538669200532 26.2835872900056 60.7538518253996 26.2836071672562 60.7538358791817 26.2836239443019 60.7538195106905 26.2836389876796 60.7538083108088 26.2836484113984 60.7537579786969 26.2836874588618 60.7537411391229 26.2837000356899 60.7537355944001 26.2837041591606 60.7536949565778 26.283734311755 60.7535837480543 26.2838168243553 60.7535799210416 26.2838197902773 60.7535048298789 26.283879773492 60.7534796177903 26.2838999308985 60.7534657432984 26.2839112304684 60.7533654768789 26.2839915531732 60.753362230759 26.2839940107196 60.7533537978334 26.2840003634866 60.7532858210754 26.2840475273893 60.7532340407754 26.2840776888568 60.7531990580058 26.2840941188649 60.7531814433054 26.2841010981335 60.7531722936831 26.284104384392 60.7531367764559 26.2841148816016 60.7530831458573 26.2841247181625 60.7530275409995 26.2841296998621 60.7529557804609 26.2841340873872 60.7529379024193 26.2841371460702 60.7529200855833 26.284141579452 60.7529153077003 26.2841430252632 60.752897645662 26.2841495468085 60.7528277271394 26.28418280888 60.7528155454814 26.2841882909291 60.7527803357845 26.284202579001 60.752763069002 26.2842125043075 60.7527465158013 26.2842265969255 60.752740490214 26.2842331527497 60.7527258237655 26.2842542120401 60.7527137659632 26.2842812311633 60.7527081964934 26.2843026015287 60.7527042653343 26.2843382280385 60.7527055552034 26.2843746923311 60.7527108272786 26.284403618892 60.7527219961231 26.2844321389383 60.7527360522369 26.2844548886583 60.7527508873159 26.2844755477912 60.7527605718365 26.2844900651475 60.7527735372025 26.284515371156 60.7527841456227 26.2845448761898 60.7527866451057 26.2845539392295 60.7527935324781 26.2845877653988 60.7527974491774 26.2846235108125 60.7527986587582 26.2846600870933 60.752797426047 26.2846966443532 60.7527951611646 26.284721482204 60.752789942977 26.2847565502857 60.7527825520016 26.284789942055 60.7527733369947 26.2848213928796 60.7527653121885 26.2848436801656 60.7527534996918 26.2848712624107 60.752740535114 26.2848966318863 60.7527265794655 26.2849196749246 60.7527119041267 26.2849407707836 60.7526815130874 26.2849798114917 60.7526670945366 26.2849968651522 60.7526037500246 26.2850658663025 60.7525550120412 26.285112653866 60.7525407133635 26.2851252463323 60.7524062592049 26.2852281382622 60.7523962875542 26.2852355521856 60.7522782840628 26.2853236380973 60.7522612135398 26.2853350260516 60.7522552095421 26.2853389024017 60.7522036809074 26.2853708532268 60.7521867307032 26.285382917297 60.7521700856474 26.2853966441558 60.7521544265672 26.2854117434544 60.7521387370565 26.2854295587849 60.7521236510027 26.2854494155529 60.7520949838208 26.2854935355613 60.752081018992 26.285516559731 60.752072921128 26.2855302065207 60.7520048531151 26.2856497096007 60.7519993053326 26.2856600155212 60.7519862588282 26.2856852024297 60.7519737478535 26.2857114782339 60.7519623791763 26.2857398201846 60.7519536980007 26.2857687078327 60.7519466766074 26.2858024205266 60.7519422595772 26.2858379283711 60.7519402267609 26.2858743556112 60.7519401435259 26.2859110147281 60.7519418640837 26.2859475053342 60.7519432182665 26.2859640792622 60.7519473945567 26.2859997447371 60.7519533249696 26.2860343438168 60.7519611858357 26.286067267138 60.7519718152888 26.2860991015365 60.7519839631054 26.2861260586161 60.7519977444364 26.2861495301901 60.7520125702791 26.2861701898344 60.7520278201116 26.2861895374404 60.7520395943615 26.2862036599729 60.7520710106989 26.2862391425188 60.7520870179529 26.2862557213095 60.7521034378792 26.2862705479791 60.7521196193139 26.2862827379808 60.7521712160757 26.2863141948105 60.7521826569749 26.2863230408845 60.7521987254025 26.2863393065143 60.7522135509231 26.2863599113401 60.7522255686129 26.2863843580509 60.752235321023 26.28641505642 60.7522419396733 26.2864490901872 60.7522463038757 26.2864846601463 60.7522485174737 26.2865125904069 60.7522500944229 26.2865491212756 60.7522501277123 26.2865857781544 60.7522483104472 26.2866222559496 60.7522441813597 26.286657922744 60.7522423810366 26.2866688792643 60.7522351158538 26.2867023773071 60.7522257467051 26.2867336286425 60.7522147221768 26.2867625682681 60.7522102240965 26.2867727406815 60.7521973681542 26.2867983450555 60.7521834757014 26.286821513899 60.7521686815972 26.2868422809143 60.7521533488447 26.2868613719311 60.752137686463 26.2868792593367 60.7521242317908 26.2868935750927 60.752091843393 26.2869251902936 60.7520587004038 26.2869533545826 60.7520417868429 26.2869655820711 60.7520246325535 26.2869764388612 60.7520178920565 26.2869802761759 60.7520004575214 26.2869890843026 60.751982880719 26.2869964645102 60.7519296142287 26.2870123423137 60.7519225746543 26.287013966262 60.7517617020668 26.2870438266722 60.751748662265 26.2870466661931 60.7516775506279 26.2870667374962 60.7516071018108 26.2870949583253 60.7515972772253 26.2870996528953 60.7515452625178 26.2871280700886 60.7515111203771 26.2871506967884 60.7514942089404 26.2871633275432 60.7514610287199 26.2871912533764 60.7514286679594 26.2872230137795 60.7514128682326 26.2872404082882 60.7513973523617 26.2872588422439 60.751387951905 26.2872707008708 60.7513729933067 26.2872909387568 60.7513585547077 26.2873127245564 60.7513448807419 26.2873364748159 60.7513325780676 26.2873631484526 60.7513255039961 26.2873819455003 60.751316188941 26.2874132679356 60.7513089868019 26.2874468368289 60.7513038939728 26.2874819734406 60.751300970373 26.2875181260501 60.7513002828871 26.2875408360513 60.7513008366015 26.2875774803061 60.7513020275169 26.2876140737431 60.7513024196154 26.2876507215834 60.7513008322971 26.287683211926 60.7512955770311 26.2877182053179 60.75128721936 26.2877506072021 60.7512768371755 26.2877805037613 60.7512651058402 26.2878082653034 60.7512631616654 26.2878124363733 60.7512502598543 26.2878378938148 60.7512367223079 26.2878619893309 60.7511947086031 26.287930820957 60.7511839600059 26.28794920386 60.7511308546873 26.288047928965 60.7511170258305 26.288071278549 60.7511103630868 26.288081314919 60.7510950847975 26.2881005502751 60.7510790279388 26.2881168857688 60.751062363961 26.2881304827238 60.751044342644 26.2881420916206 60.7510096127472 26.2881605836068 60.7509931139615 26.2881748556685 60.7509794258277 26.2881959637159 60.7509691240488 26.2882258030226 60.7509627422625 26.288260032016 60.7509595815126 26.2882904469914 60.7509582163436 26.2883157585854 60.7509582163436 26.2883157585854 60.7509593083041 26.288352353848 60.7509615304529 26.2883887406221 60.750964536386 26.288412084089 60.7509717533987 26.2884456083135 60.750981773108 26.2884760066448 60.7509934402332 26.2885038367129 60.7510042886335 26.2885262727271 60.7510173777606 26.2885513560771 60.7510298626346 26.2885776269975 60.7510392845141 26.2886087358241 60.7510405581376 26.2886152573165 60.7510439178353 26.2886511420112 60.7510436272592 26.2886877863297 60.751043139472 26.2887024742968 60.7510395937455 26.2887754616122 60.7510343756271 26.2888480089124 60.7510309300855 26.2888840075203 60.7510268275204 26.2889197087687 60.7510216598885 26.2889577452265 60.750999161424 26.2890970521716 60.7509944555568 26.2891324364663 60.7509907668646 26.2891683119511 60.7509899510476 26.2891787140767 60.7509880880898 26.2892151729477 60.7509876089281 26.2892518397125 60.750988314793 26.2892884802682 60.7509899538274 26.2893250084565 60.7509905538279 26.2893348839141 60.7509932777732 26.2893711312661 60.7509968350664 26.289407066654 60.7510012253194 26.2894426167034 60.75100651977 26.2894776697631 60.7510126729479 26.2895121167626 60.7510171446906 26.2895342354433 60.7510313999564 26.2896015453143 60.7510354942872 26.2896371753549 60.7510356049272 26.2896648577117 60.7510315199151 26.2897005217817 60.7510262824652 26.2897355875342 60.751024706726 26.2897500059778 60.751024038307 26.2897865668782 60.7510277204952 26.2898223711595 60.7510334710513 26.2898571023404 60.7510399283008 26.2898913409097 60.751040989262 26.2898967113244 60.7510535637501 26.2899654161783 60.7510590011227 26.2900003561427 60.7510633016373 26.2900359450149 60.7510663837199 26.2900754319194 60.7510676547518 26.290112023402 60.7510675254697 26.290148682512 60.7510662644236 26.2901852565411 60.7510643024393 26.2902217176234 60.7510625456781 26.2902477533734 60.7510596664139 26.290283941162 60.7510562204868 26.2903199396469 60.7510520815322 26.2903556231914 60.7510469070449 26.2903907425061 60.751040479818 26.2904249721475 60.7510374642009 26.2904387802293 60.7510291873478 26.2904713077759 60.7510195915191 26.2905023049782 60.7510087743048 26.290531549522 60.7509967339601 26.2905587112084 60.7509908071345 26.2905704186474 60.7509771416631 26.290594185398 60.7509625748015 26.2906155869923 60.7509472412143 26.2906346204592 60.7509314044518 26.2906518854143 60.7509152467811 26.290667891535 60.7508969192558 26.2906844592318 60.7508304659964 26.290740011007 60.7508141885037 26.2907554325946 60.7507982783532 26.2907724054965 60.7507828442447 26.2907911107752 60.7507705083195 26.290808224921 60.7507564332887 26.2908309547055 60.7507433948807 26.2908561566898 60.7507317261361 26.2908839886412 60.7507281690265 26.2908938823911 60.7507085883182 26.290955352482 60.7506968559345 26.2909830390008 60.7506937248189 26.2909885936133 60.7506784270878 26.2910076259502 60.7506615497383 26.2910199783938 60.7506500802177 26.2910260471863 60.7506324083697 26.2910324729603 60.7506145074535 26.2910346291131 60.7505966990736 26.2910305088205 60.7505894348983 26.2910270181838 60.7505723001716 26.2910161499854 60.7505548737776 26.2910078566984 60.7505422284885 26.2910140064529 60.7505329089952 26.2910446483472 60.7505300701994 26.2910647449851 60.7505255708769 26.2911002339876 60.7505168716969 26.2911361275049 60.7505008675542 26.2911523132484 60.7504841935116 26.2911657618308 60.7504799482992 26.2911711758467 60.7504696980734 26.2912007007034 60.7504659454023 26.2912364666904 60.7504656581364 26.2912517736964 60.7504675296645 26.2912882228711 60.7504714716069 26.2913239842785 60.7504761389778 26.2913593994677 60.7504798749019 26.2913952571665 60.7504808717308 26.291412297093 60.7504802569169 26.2914488928435 60.7504762884276 26.2914846085321 60.7504700304328 26.2915135315796 60.7504595384156 26.29154319007 60.7504465178275 26.2915683911369 60.7504319324656 26.2915897189555 60.7504014206276 26.2916283496099 60.7503952770259 26.2916364288857 60.7503806736978 26.2916577570351 60.7503668260589 26.2916810682307 60.7503538329582 26.2917063786389 60.7503419645927 26.2917338474189 60.750331382557 26.2917634710099 60.7503284250385 26.2917730027492 60.7503196693379 26.2918050260915 60.7503122766956 26.2918384320249 60.7502998903554 26.291907264089 60.7502953461827 26.2919342961846 60.7502723400347 26.2920732604561 60.7502623953951 26.2921437263933 60.7502581298802 26.292179338217 60.7502548556925 26.2922105435027 60.7502516250948 26.2922466095128 60.7502489881672 26.2922828825937 60.7502418622847 26.292465637233 60.7502413160349 26.292486343544 60.7502387298119 26.2925594909272 60.7502367311734 26.2925959333764 60.7502339323618 26.2926321732817 60.7502292794249 26.2926675550362 60.7502224547644 26.2927014435148 60.7502186097039 26.2927163516952 60.7502087147728 26.2927469137148 60.750196973136 26.2927746176916 60.7501837889785 26.2927994914215 60.7501697590749 26.2928223289946 60.7501551373115 26.2928436018198 60.7501428151129 26.2928599623522 60.7501274171998 26.2928787755194 60.7501116261919 26.2928962580652 60.7500954404463 26.2929120981467 60.7500768197502 26.2929276065214 60.7500430568719 26.2929525292371 60.7500272191297 26.2929696641569 60.7500153071153 26.2929906020181 60.7500056465042 26.2930213420624 60.7500004348257 26.2930563505355 60.7499977887009 26.2930926234653 60.7499961943904 26.2931291484417 60.7499956873109 26.2931470834959 60.7499919197356 26.2932568195273 60.7499905681851 26.2932780754008 60.7499870673931 26.2933140368689 60.7499815313832 26.2933488506004 60.7499774352721 26.2933655436573 60.7499667618427 26.2933949298823 60.7499533864321 26.2934193120447 60.7499382623065 26.2934389810653 60.7498894200924 26.2934852772774 60.7498858287895 26.2934887135094 60.7498698264841 26.2935053013238 60.7497924166075 26.2935980713129 60.7497785052872 26.2936144662982 60.7497466108838 26.2936481162394 60.7497137885901 26.2936777687997 60.7496801641914 26.2937034395702 60.7496458440688 26.2937248693843 60.7496284555105 26.293733965706 60.749612798653 26.2937411343616 60.7495951646074 26.2937479428566 60.749577396089 26.2937530848482 60.7495594973444 26.2937556613111 60.7495533481012 26.2937558698264 60.74949958978 26.2937500982197 60.7494882044943 26.2937500181985 60.7494703159823 26.2937528329229 60.749452576134 26.2937583044811 60.7494349522232 26.2937653328558 60.7494186631687 26.2937717998692 60.749365675109 26.2937912547324 60.7493502682678 26.2937981609698 60.7493330197736 26.2938082814359 60.7493160315325 26.2938200839554 60.7492992284412 26.2938329464304 60.749286431946 26.2938428039307 60.7492530936368 26.2938699538775 60.7492367698269 26.2938851723298 60.7492212253258 26.2939034556738 60.7492077132259 26.2939274731503 60.7492014826024 26.2939429284456 60.7491925271358 26.2939746242351 60.7491869369903 26.2940094198324 60.7491833999935 26.2940453627679 60.74918069066 26.2940816177326 60.7491785525055 26.2941155119362 60.7491729089656 26.2941879533931 60.7491691739321 26.2942238089145 60.7491645657497 26.2942592433124 60.749162319196 26.2942742441281 60.7491563507573 26.2943088278014 60.7491492731492 26.2943425002017 60.7491408239008 26.294374863491 60.7491313755429 26.2944033411368 60.7491196608782 26.2944311163611 60.7491065126086 26.2944560428181 60.7490925553963 26.2944790974432 60.7490845480341 26.2944913444543 60.749069770875 26.2945121422271 60.7490541532132 26.2945301882878 60.7490369664443 26.2945401051126 60.7490319490472 26.294540417046 60.749014550183 26.2945321950197 60.7489982980661 26.2945166647525 60.7489880368533 26.2945066716803 60.7489712333256 26.2944938502976 60.748953627485 26.2944872472381 60.7489385772974 26.2944936865909 60.7489262061979 26.2945195681192 60.7489193357918 26.2945533824446 60.7489153466135 26.2945836112299 60.7489119715405 26.2946196419681 60.748909828409 26.2946560309112 60.7489090243711 26.2946926656403 60.7489096210161 26.2947293063203 60.748911330194 26.2947657941721 60.74891402593 26.2948020769278 60.7489174285817 26.2948361977862 60.7489217367898 26.2948717847478 60.7489266717792 26.2949070460987 60.7489381435093 26.2949765430517 60.7489445188472 26.2950108188879 60.7489461982563 26.2950194410076 60.7489660842202 26.2951216648913 60.7489711891396 26.2951568125298 60.7489749195025 26.2951935129811 60.7489767631214 26.2952299796363 60.7489766862061 26.2952666168259 60.7489747407911 26.2953030748422 60.7489709153942 26.2953388769539 60.7489666037505 26.2953658656459 60.7489593997087 26.295399448656 60.7489505345392 26.295431306923 60.7489403135768 26.2954614520952 60.748929187531 26.2954902228501 60.7489222166932 26.2955066662288 60.748909957944 26.2955334621498 60.7488970820696 26.2955590057565 60.7488836156184 26.2955832230861 60.7488695126438 26.2956059133488 60.7488548083828 26.2956269473565 60.7488474779356 26.2956364640648 60.7488011827073 26.2956926059168 60.7487848992244 26.2957155456529 60.7487715599709 26.2957400535667 60.7487594007942 26.2957670121964 60.7487477130666 26.2957948410421 60.748745115662 26.2958011903364 60.7487225711755 26.295861214236 60.7487120514493 26.2958909069732 60.7487020384069 26.2959213407403 60.7486927034876 26.2959526768883 60.7486843169805 26.2959850929487 60.7486778340679 26.2960192467695 60.7486737834624 26.2960549433242 60.7486728440361 26.2960709791679 60.7486728028007 26.2961076152241 60.7486747539017 26.2961440792315 60.7486777986201 26.296180207427 60.7486810673832 26.2962162573427 60.7486836232824 26.296249919667 60.7486850091428 26.2962864694516 60.7486852284867 26.2963231548505 60.7486845586566 26.2963597863366 60.748680402121 26.2964694709531 60.7486800094767 26.2964819175243 60.7486778511987 26.2966285420865 60.7486769208396 26.296665160913 60.7486752307424 26.2967024384409 60.7486727096029 26.2967387618596 60.7486657781596 26.2968107162101 60.7486620153946 26.2968465531117 60.7486612116859 26.2968542389416 60.7486537762833 26.2969259841242 60.7486495996542 26.296961664946 60.7486444233339 26.2969967622379 60.7486371948098 26.2970360320468 60.748629719676 26.2970693634298 60.7486221092937 26.2971025876846 60.7486155630609 26.2971367059042 60.7486114041386 26.2971723495779 60.7486107977385 26.297183424908 60.7486114292287 26.2972199911419 60.748616318233 26.2972551617842 60.7486189786044 26.2972659638893 60.74863002019 26.2972947076663 60.748644392429 26.2973165175844 60.748660512251 26.2973325656476 60.7486765404091 26.2973431122029 60.7486941398246 26.2973502305723 60.7487118750997 26.2973558600249 60.748729491605 26.2973628129293 60.748733885531 26.2973651751138 60.7487507058778 26.2973778324259 60.7487666152257 26.2973948391214 60.7487801046619 26.2974126692319 60.7487943801455 26.2974348666673 60.7488078138018 26.2974591922188 60.7488203505157 26.2974854086045 60.7488319803482 26.29751333259 60.7488427823677 26.297542632233 60.7488528535978 26.2975729751988 60.7488621936539 26.2976042881137 60.7488719201721 26.2976408209841 60.7488797696 26.2976738175807 60.7488869487744 26.2977074158863 60.7488934486214 26.2977415977525 60.7488992955933 26.2977762708733 60.7489039956384 26.297807960449 60.7489252016282 26.297986124671 60.7489300998896 26.2980213872939 60.7489356873034 26.2980562312802 60.7489421121704 26.2980898278572 60.7489497469859 26.298123012773 60.7489583640486 26.2981551672653 60.7489678466507 26.2981862938846 60.7489880513689 26.2982469240743 60.7489978318556 26.2982749255482 60.7490393819688 26.2983945652839 60.7490492658206 26.2984251696236 60.7490587839828 26.2984562405973 60.7490625684103 26.2984691097779 60.7490714621604 26.2985009649099 60.749079739999 26.2985335122795 60.7490873210313 26.2985667353055 60.7490938921928 26.2986008609626 60.7490992109923 26.2986358761949 60.7491014452662 26.2986545029854 60.7491046326632 26.2986905737385 60.7491063587197 26.2987270616378 60.7491067030831 26.2987637447965 60.7491057721419 26.2988003640538 60.7491043474162 26.2988266840036 60.7490981436672 26.29889893485 60.7490950551965 26.2989350507975 60.7490929649517 26.2989714751796 60.7490925883369 26.2989853157719 60.7490929503931 26.29902196184 60.7490951068038 26.2990583486298 60.7490989123948 26.2990941857881 60.7491038820903 26.2991294288627 60.7491095497275 26.2991642164402 60.7491157629757 26.2991986068801 60.7491192880258 26.2992168386657 60.7491548068392 26.2993852267599 60.7491604382751 26.2994113745585 60.7491742238639 26.2994790986889 60.7491805534527 26.2995134316857 60.7491863283384 26.2995481436933 60.7491912888415 26.2995833687871 60.7491937296831 26.2996037523499 60.7491971767918 26.2996397442557 60.7492050355802 26.2997485996525 60.7492077028456 26.2997848470669 60.7492109168718 26.2998209174666 60.7492137368066 26.2998468514553 60.7492172734344 26.2998828047677 60.7492201378831 26.2999189928749 60.7492278961979 26.3001067358351 60.7492282413581 26.3001264312811 60.7492300658734 26.3001629355934 60.7492322955977 26.3001979451085 60.7492322955977 26.3001979451085 60.7492226304175 26.3002023016257 60.748838343103 26.3003875717895 60.748830222537 26.3003919862975 60.7487431927176 26.3004366983112 60.7487401201041 26.3004380493511 60.7487048698448 26.3004517682803 60.748669304292 26.3004618433702 60.7486620392462 26.3004633040021 60.7485904169759 26.3004736318561 60.7485848098166 26.3004744877007 60.748513163947 26.3004837336628 60.7485012252059 26.3004842686869 60.7484473762727 26.3004851655429 60.7484401502806 26.300485506267 60.748368471451 26.3004935971486 60.7483576871947 26.3004951343539 60.7482682170427 26.30050920759 60.7482571841873 26.3005112821961 60.7482037411407 26.3005245896048 60.7481860876379 26.3005311743545 60.7481766902422 26.3005352312827 60.7481592170667 26.3005436832652 60.7481073579928 26.3005732095663 60.748072074047 26.3005942483573 60.7480550757436 26.3006059553084 60.748038520984 26.3006200740986 60.7480220348127 26.3006370164676 60.7480065262488 26.3006554785021 60.7479764044992 26.3006953732195 60.7479738452391 26.3006987492924 60.7479288266245 26.3007590554386 60.7479143494296 26.3007807419255 60.7479119984678 26.3007844620018 60.7478572930548 26.3008794481705 60.7478456597184 26.3008989630653 60.7478181341594 26.3009460286554 60.7478051392011 26.3009713149731 60.7477931044619 26.3009982313993 60.7477818414117 26.3010267820345 60.7477710311521 26.3010560749302 60.7477652264265 26.3010724361049 60.7477550041902 26.3011025783775 60.747745459947 26.3011336047714 60.7477370722788 26.3011660368738 60.7477357026359 26.3011719919437 60.7477288218567 26.3012058588267 60.7477226532589 26.3012402788924 60.7477209008292 26.3012503147664 60.7476971099625 26.3013887094567 60.7476913844664 26.3014220191502 60.7476851347283 26.3014563858634 60.747677902128 26.3014899484206 60.7476713743608 26.3015157542612 60.7476621734614 26.3015472132569 60.7476423346573 26.3016083279696 60.7476387456154 26.3016191374857 60.7476083136508 26.3017098884621 60.7476008462624 26.3017311284974 60.7475900177974 26.3017604030396 60.7475785551681 26.3017885906708 60.7475660956449 26.3018150021811 60.7475585193849 26.3018291268835 60.747544478952 26.3018519588471 60.7475295455411 26.3018722786557 60.7475138537216 26.3018900650439 60.7475048487966 26.3018988091336 60.7474882386011 26.3019126530502 60.7474712682576 26.301924578613 60.7474603317258 26.3019313650957 60.747442961125 26.3019405660186 60.7474253360089 26.3019474427242 60.7474085845945 26.3019514020377 60.7473906534022 26.3019529471714 60.7473727179222 26.3019519425331 60.7473597322449 26.3019497113891 60.7473419467253 26.3019447411229 60.7473243134494 26.3019379698129 60.7473068077746 26.3019298382605 60.7472919252705 26.3019219799405 60.7472746869243 26.3019117330059 60.747257630903 26.3019002897443 60.7472407928301 26.3018875943508 60.7472374026575 26.3018848613145 60.7472209144284 26.3018703789455 60.7472048652458 26.3018539975974 60.7471895294052 26.3018349408562 60.7471801564728 26.3018212762168 60.7471662004167 26.3017982088364 60.7471397339782 26.3017486490504 60.7471302039397 26.3017306769827 60.7471172148729 26.3017053690208 60.7471048299759 26.3016788372362 60.7470989345048 26.3016639781271 60.7470887127246 26.3016338589467 60.7470797572563 26.301602079638 60.747072394727 26.301571017843 60.7470511101155 26.3014699637924 60.7470434008685 26.3014378456296 60.7470191768606 26.3013396072723 60.7470154121882 26.3013218586044 60.7469887726869 26.3011856639117 60.7469845197654 26.3011672655057 60.7469759033284 26.30113509383 60.7469653251931 26.301105533003 60.7469629079194 26.3010999722684 60.7469498214139 26.3010749419713 60.7469353604834 26.3010532251755 60.7469205370109 26.3010325802401 60.7469130765179 26.3010223780763 60.7468832082746 26.3009816984482 60.7468526337588 26.3009433272621 60.746850122414 26.3009403918033 60.7468343193293 26.300923015175 60.7468181029935 26.3009073168586 60.7468013784768 26.3008940326775 60.7467890813589 26.300886100379 60.7467716615728 26.3008772339038 60.7467363863169 26.3008637662621 60.7467186433505 26.3008583555093 60.7467007270522 26.3008558652222 60.7466827863133 26.3008555767433 60.7466648427141 26.3008564623389 60.7466560926333 26.3008572396763 60.746638182275 26.300859335246 60.7466202847175 26.3008621642914 60.7466024280403 26.3008659463272 60.746584659234 26.3008710838956 60.7465761720904 26.300874075118 60.7465586038558 26.3008815196434 60.7465238633674 26.3009000321407 60.7465066703863 26.3009105685881 60.7464210026891 26.300965151946 60.7464140022909 26.3009691563902 60.7463791492803 26.3009867539665 60.7463086884459 26.301014939768 60.746301645351 26.3010176427108 60.7462309654114 26.3010434117727 60.7462131960238 26.3010484391326 60.746195349751 26.3010524959443 60.7461881737071 26.3010538076415 60.7461523246153 26.3010577239571 60.7461343793886 26.3010582976167 60.7460984885485 26.3010576472681 60.7460919508637 26.3010574042156 60.7460202103351 26.3010519386373 60.7460023186779 26.3010490075125 60.7459958294118 26.3010477178267 60.7459780029818 26.3010435195833 60.7459602259259 26.3010384581247 60.7459425076995 26.3010326249642 60.7459265403876 26.3010268087652 60.745908923967 26.3010198361058 60.7458738188123 26.3010045489584 60.7458584907177 26.3009973431237 60.7457700030479 26.300951849688 60.7456640991618 26.3009119631549 60.7456465594233 26.3009042001821 60.7456117463982 26.3008863938927 60.7455944646118 26.3008764424798 60.7455879434342 26.3008724754135 60.745570817795 26.3008614750501 60.7455368974347 26.3008375044278 60.7455032992994 26.300811619146 60.7454912268935 26.3008020130704 60.7454745372229 26.3007885269537 60.7454082159341 26.300732371924 60.7453963359625 26.3007217895295 60.7453799617329 26.3007068108315 60.7452004131483 26.3005390622147 60.7451669390039 26.300511138732 60.7451501794913 26.3004980396252 60.7450481569056 26.3004276764935 60.7450440309237 26.3004250331817 60.7449579436495 26.3003732902882 60.7449405581103 26.300364112013 60.7449231213831 26.3003554484643 60.7449188909208 26.3003534311061 60.7449013768381 26.3003454295982 60.7448308080564 26.3003184607605 60.7448130819669 26.3003128484828 60.7447064193546 26.3002824649729 60.7446911601035 26.3002781380629 60.7444958882072 26.3002185928355 60.7444868509104 26.3002159464583 60.7442912691035 26.3001606825478 60.7442750268904 26.3001555333922 60.7442573172173 26.3001496274607 60.7440982061217 26.3000925797534 60.7440913519051 26.3000901793898 60.7440736592271 26.3000840897327 60.7439137328718 26.3000377173385 60.7438057565984 26.3000171406265 60.7437878494469 26.3000146875079 60.743769934753 26.3000125096905 60.7436084706304 26.3000035346207 60.743572547404 26.3000035648469 60.7435545913801 26.3000037907731 60.7433752245401 26.3000155836783 60.7433191508266 26.3000237379798 60.743015539198 26.3000856497194 60.743004055356 26.300087330418 60.7428785496986 26.3000988487069 60.7428654359383 26.3000996111078 60.7428474837395 26.3001005705598 60.7427398067098 26.3001029332459 60.7427266782308 26.3001025954603 60.7426704911273 26.3000993433935 60.742491435156 26.3000743538143 60.7422951037417 26.3000320411522 60.7421888278754 26.2999966452754 60.7421732801613 26.2999903809268 60.742068401002 26.2999404652637 60.7420626924662 26.2999373798449 60.7420453587471 26.2999278163249 60.7419765268573 26.2998861582592 60.7419594795364 26.2998746994055 60.7419538746145 26.2998708230783 60.7419369319605 26.2998587750414 60.7418365836909 26.2997789937409 60.7417373722067 26.2996933923755 60.7417296430911 26.2996867928698 60.7415958364315 26.2995804500699 60.7415788935594 26.2995683656412 60.7415277077721 26.2995342110885 60.7415219875679 26.299530612499 60.7415047835991 26.2995201111387 60.7414354415341 26.2994822256495 60.7413476820293 26.2994438979783 60.7413300141419 26.2994374051456 60.7413177180344 26.2994331245537 60.7412999997288 26.2994272931033 60.7412110481154 26.2994031141585 60.7412052499121 26.2994017732487 60.74111588028 26.2993852333162 60.7410979660485 26.2993831477138 60.7410921269797 26.2993825780147 60.7410203462636 26.299379758885 60.740984456183 26.2993809812089 60.7408590089441 26.2993950862335 60.74084543515 26.2993971610771 60.7405951534903 26.2994430009426 60.7405852870541 26.2994449216013 60.740299633492 26.2995052499716 60.7402899225461 26.2995077174141 60.740272143265 26.2995125614844 60.7400940185114 26.2995576161855 60.7400223954521 26.2995677964692 60.740014991338 26.2995684162799 60.7399970488792 26.2995695224413 60.7399073110919 26.2995684513535 60.7398894739471 26.2995673727475 60.7397819239153 26.2995562359165 60.739764149207 26.2995533586404 60.7395498748612 26.2995086742403 60.7395293255985 26.2995057657619 60.739511402866 26.2995037720737 60.7394396359727 26.2995001638742 60.739331950786 26.299502693477 60.7393175790113 26.299503263359 60.7391381036561 26.2995046061046 60.7391201670851 26.2995034013456 60.7391022377679 26.2995018663166 60.739088933344 26.2995005056191 60.7389816404842 26.2994818811279 60.7389638222967 26.2994775560845 60.7389104658877 26.2994627448924 60.7389028668029 26.2994604162906 60.7388497111056 26.2994427765008 60.738656217388 26.2993627964453 60.7386467223767 26.2993584735302 60.7386292170077 26.2993504372321 60.7383661525385 26.2992335171731 60.7383606105621 26.2992313822387 60.738342968441 26.2992246694826 60.7381479398894 26.2991620008484 60.7381312330904 26.2991573034235 60.7379708086468 26.2991188039416 60.7378812498271 26.2991073137263 60.7378633141119 26.2991062742628 60.7378544504547 26.2991059356491 60.7378185341649 26.2991055815601 60.737657119968 26.2991182328573 60.7376497614121 26.2991189801007 60.7375048030325 26.2991312542248 60.737486870315 26.2991325070314 60.7373971421978 26.299135013025 60.737359731861 26.2991322524329 60.737306064531 26.2991232443094 60.737270435474 26.2991142831469 60.7371641842205 26.2990785100706 60.7371588949547 26.2990766264717 60.7369469238882 26.2989985409891 60.7369368205913 26.2989946534521 60.7369191957397 26.2989878123724 60.7367257773306 26.2989068478632 60.7367107018217 26.2988998962751 60.7366932134182 26.2988916769503 60.7364848231913 26.2987806721105 60.7364741501448 26.298774284798 60.7362333147562 26.2986279182924 60.7362201236628 26.2986207607947 60.7360976608682 26.2985634303096 60.7360841179551 26.2985576742235 60.7360665352827 26.2985503191799 60.7359607577465 26.2985090192536 60.7359471298496 26.29850418196 60.735663634844 26.2984106646075 60.7356607557816 26.2984095354753 60.735643156392 26.298402419362 60.7354150420177 26.2983021573685 60.7354035073296 26.2982975496287 60.7353682055061 26.2982842184303 60.7351728750307 26.2982257303415 60.7351620585867 26.2982228307023 60.7348730824509 26.2981457211434 60.7345702154763 26.2980701630783 60.7345577125846 26.2980675570744 60.7345398531002 26.2980639311004 60.7343250690927 26.2980317988663 60.734307130578 26.2980302283948 60.7343017142126 26.2980297965211 60.7342837770412 26.2980284827388 60.7340145747122 26.2980257224678 60.7340010819695 26.2980261270173 60.7339831457993 26.2980267202441 60.7336421310257 26.2980288281234 60.7336324489606 26.2980282326598 60.7335248989047 26.2980171396693 60.7335075842132 26.2980146754758 60.7334003299137 26.2979949030082 60.7333830880552 26.2979909153273 60.7330963638999 26.2979118192031 60.7330785293252 26.2979078078708 60.7330606779469 26.297904016944 60.7328637217599 26.2978763386839 60.7328553048617 26.297875587305 60.7328373756071 26.2978740717926 60.7327476633153 26.2978693194416 60.7327436136536 26.2978692611676 60.7326359444781 26.2978731520594 60.7326318879502 26.2978734973256 60.7326139665132 26.2978751904411 60.7324708238012 26.2978981365892 60.7322903840674 26.2979451281271 60.7320242247018 26.2980280027423 60.7320164338243 26.298030208043 60.7317670306941 26.2980929132622 60.7317571496669 26.2980954758482 60.7317393614357 26.2981003195772 60.7316324865387 26.2981273131164 60.7315787826393 26.2981353608694 60.7315608508752 26.2981367973101 60.7315429066795 26.298137573949 60.7315373763857 26.2981376763014 60.7315194271052 26.298137481279 60.7314656391471 26.298132897816 60.7314477231457 26.2981304835032 60.7314427002573 26.2981297496965 60.7314248003881 26.2981269866653 60.7313533300645 26.2981131631352 60.7313483408797 26.298112006888 60.7313305137491 26.2981077021304 60.7311530350478 26.2980531230746 60.7311391930072 26.2980485480478 60.7310681511265 26.2980273814401 60.7310324244081 26.2980203688251 60.7310145020168 26.2980184497908 60.7310087357145 26.2980180622672 60.7309907941627 26.2980176287889 60.7309728486229 26.2980181488177 60.7309369668509 26.2980209671627 60.7309316182196 26.2980214689368 60.730927986415 26.2981012503088 60.7309348652086 26.2987949321489 60.7309323623199 26.2997198758223 60.730950627113 26.3004549673773 60.7302436347959 26.301613083207 60.7272356412283 26.3065331682461 60.7272325319405 26.306544803301 60.7270367439361 26.3068660519607 60.7270056390482 26.3069106473788 60.7265703138888 26.3076308498363 60.7233264307759 26.312981838326 60.7230536641487 26.313317372782 60.7212194490776 26.316283247647 60.718331028309 26.3209742819899 60.7179000754257 26.3217429220498 60.7147125332706 26.3268490366475 60.7145000637774 26.3272068704802 60.7128278518045 26.3299087865946 60.7121040174468 26.3310673395037 60.7119680236158 26.3308884639979 60.7119476792379 26.3308617122907 60.7118308124242 26.3310233958717 60.7116439588503 26.3311890245406 60.7114553665666 26.33125091967 60.711192302158 26.3313373206997 60.711119317708 26.3313612649308 60.711106478646 26.3313217327508 60.7110110112225 26.3310558072564 60.7110091911847 26.3310509343676 60.7110005032172 26.3310282104844 60.7109832035853 26.3310196464542 60.7109573953387 26.3310081076235 60.7109101931588 26.330989793997 60.710575903217 26.3309128026764 60.7093958658071 26.3308794486498 60.7094219035608 26.3305628783341 60.7094330004374 26.3304279027356 60.709336668472 26.3303864818689 60.7092743757638 26.3303597074586 60.7089879800831 26.3302347514267 60.7089294649193 26.3302110870906 60.7051970562394 26.3286629222904 60.7040373660944 26.3281535991459 60.7039949559412 26.3281366591393 60.70319158383 26.3278160025798 60.7025336201676 26.327541968765 60.7023093651912 26.3274479696717 60.7011320820327 26.3269568346831 60.7010280441757 26.3269134342559 60.6994714604482 26.3262641362858 60.6994469782941 26.3262539330374 60.6978764178793 26.325598855043 60.6974280264076 26.3254118618702 60.6971376489341 26.3252907049532 60.6970090110836 26.3252370243712 60.6966605198559 26.3250741020533 60.6959725606954 26.3255132615753 60.6941960062446 26.3266818462576 60.6907454401801 26.3288920056052 60.6904810311918 26.3290611669537 60.6869209583865 26.3313451537872 60.6859560416458 26.3318762267384 60.6848622018009 26.3326657292347 60.682091457569 26.3344427093738 60.6806083472313 26.3353743896034 60.6781674784313 26.33695176805 60.6775614778618 26.3373392203168 60.6769152497567 26.3377498704192 60.6758271727023 26.3384478994058 60.6742617142778 26.3433176699815 60.674151185159 26.3436635340458 60.6732326624514 26.3465197475268 60.6725898093383 26.3484957797299 60.6725550111178 26.3486256377578 60.6716738319893 26.3513425137097 60.6715885747332 26.3516307877333 60.6709045742474 26.3537324897235 60.6682239171342 26.3620818592683 60.6666271885867 26.3585845871019 60.6665857272304 26.358493151986 60.6665249282465 26.3583591193266 60.6665117519814 26.358330049464 60.6639095086282 26.3526327505725 60.6613579613136 26.3471043519575 60.6613579613136 26.3471043519575 60.6598734871734 26.357669610163 60.6593386501392 26.3614345473144 60.6588636758717 26.3647791043107 60.6588492613877 26.3648805348775 60.6588240126624 26.3650583541777 60.6588129259894 26.3651364126576 60.6588128477907 26.3651369630116 60.6583364250864 26.368490932394 60.6577066650715 26.372939415261 60.656418883659 26.3820320513582 60.6559034306553 26.3856696420096 60.6557237999063 26.3869303843577 60.6557051845559 26.3870612151568 60.6549496506141 26.3923625540281 60.6535012867659 26.4027006995968 60.6518371170584 26.4147537932446 60.6509601107448 26.4211623905499 60.6508190370508 26.4221930302905 60.6508090692456 26.4222883857433 60.6507980771212 26.4223461203229 60.6505185585349 26.4243879547906 60.6504135191436 26.425155258272 60.6501461467107 26.4271079991786 60.6496062828887 26.4310501598257 60.6495512087927 26.431394825976 60.6476028003219 26.4364197929129 60.6472449248295 26.4373426309394 60.6469174122173 26.4381871454759 60.6461436157742 26.4401649350739 60.6450497542585 26.4430024784595 60.6443403183414 26.4448461959943 60.6428893094252 26.4485905999883 60.6404420115342 26.4549021203849 60.6404381375568 26.4549121136112 60.639700299491 26.4568727551445 60.6392265401864 26.458083700562 60.6390825380852 26.458451164276 60.6386059052298 26.4588942579561 60.6385720211837 26.4589256496561 60.6384074134911 26.4590781936727 60.6372302422325 26.460169025393 60.6371954098216 26.4602013260516 60.6351978495304 26.4620521834302 60.63453483463 26.4626403076269 60.6344822814362 26.4626869184517 60.6332781514663 26.4638510859236 60.6329661007861 26.4641449657423 60.631636542881 26.4653985071087 60.6309704390404 26.4660307441989 60.6309436014789 26.4660531213803 60.6305600489336 26.4664212140659 60.6281065928621 26.4687508845218 60.6278499810705 26.4689944126995 60.6262092160674 26.4705431239823 60.6254813660119 26.4712291373068 60.6239548878144 26.4726904893324 60.6232876802891 26.4733225155798 60.621996220232 26.4745457368838 60.6215879006081 26.4749324655226 60.6200251726958 26.4763941804154 60.6199044642331 26.4765112112063 60.6197625695754 26.4766497792797 60.6195574765139 26.4768440193297 60.6191658392324 26.4772025925613 60.6190496261995 26.4773213715868 60.6188976543232 26.4774754247809 60.6187572538649 26.4776037101016 60.6183890362618 26.4780005111666 60.6181929893404 26.478129690916 60.6173748123508 26.4789081330193 60.6158904003582 26.4803035672837 60.6148226870281 26.4813068656488 60.6142530772197 26.4818474176787 60.6134955706484 26.4818431397884 60.6124764922741 26.4818417951933 60.6124436932226 26.4818417547492 60.6119203462666 26.4818136291454 60.610540147625 26.4818540411371 60.6097854330922 26.4818752906118 60.6094819799867 26.4818491213284 60.6092173974208 26.4818953551128 60.6089644702623 26.4819395747865 60.6086907442722 26.4819734053587 60.6086520292302 26.4819782450677 60.5968514897955 26.4834511457807 60.5989382866779 26.5117340741409 60.5989825588442 26.512230746125 60.598904725087 26.512790429346 60.5981072762077 26.5183368368099 60.5981021258117 26.5183726650955 60.5980983946232 26.5183986852881 60.5980961610841 26.5184142388941 60.5980753499968 26.518559253094 60.5980729237836 26.5185761607278 60.5980689120243 26.5186040657484 60.5980211854682 26.51893698381 60.5969292070821 26.5265506332522 60.596739262142 26.5278401051271 60.5967109106888 26.5281004278287 60.5963831821623 26.5304497146103 60.59610704965 26.5323446589139 60.5958061714693 26.5343889297769 60.5952967508845 26.5377765711356 60.5951739905433 26.5386618449541 60.5951397677927 26.538746208206 60.5949737061963 26.5391518102186 60.5949404683855 26.5391573046075 60.5949341952298 26.5391581425454 60.5750064462677 26.5417837233674 60.5750064462677 26.5417837233674 60.5728586046171 26.5422682791159 60.570781580859 26.5427335076732 60.5699188609337 26.542928070712 60.5689655410094 26.5431421262544 60.5673180941993 26.5435095032681 60.5605758069787 26.5450126014725 60.5589938279475 26.5453648064719 60.55680825308 26.5447921457048 60.5549065313222 26.5442921178483 60.554807906309 26.5439384556096 60.5545108436436 26.5428731586689 60.5543531551739 26.5423076879277 60.5540557933069 26.5412401274562 60.5533644493613 26.538758352805 60.552352585538 26.5306712850396 60.5514179180109 26.5231987583127 60.5513697741988 26.5228139142644 60.5512080755239 26.5215204729241 60.5511912994165 26.5213865091442 60.5506314266194 26.5169162095292 60.5531370987608 26.5148921205611 60.5541877267096 26.5089088074493 60.5507300906972 26.506304349539 60.5503051047366 26.5059842842932 60.5487395887692 26.5071289649016 60.5454412690961 26.5006136915572 60.5462601184297 26.4973555974307 60.5456069257556 26.4958040831024 60.5454931963243 26.4955339395387 60.5453714846076 26.4952448723052 60.5447006089787 26.4936515001973 60.5444651316841 26.4930922664255 60.5443298791087 26.492388301158 60.5443227619801 26.4923512802356 60.5435320376337 26.4882363458525 60.5409320952935 26.4880781366315 60.5393260836536 26.4909919071967 60.5391451699737 26.4973577158875 60.5385859413397 26.4993734767752 60.5385504825449 26.4994712038258 60.5385992624257 26.5015838516721 60.5382142782673 26.5023051038202 60.5374969748576 26.5028489998359 60.5361558215754 26.503497230688 60.5357724711617 26.5034887589933 60.5343935463951 26.5065603382387 60.5335261060728 26.5074096409409 60.5306517468648 26.5109212817792 60.5273140537267 26.5112029644664 60.5258725253109 26.509458216995 60.5249493652788 26.5083413114606 60.524234716445 26.5063344481769 60.5247035295279 26.5035174181305 60.5246527592874 26.5004970677229 60.5246205912557 26.4986218687562 60.5240828781207 26.4962136915075 60.5240267969389 26.4961399070144 60.5230103985365 26.494802719857 60.522266568505 26.4946186764735 60.5218542202011 26.4945166587166 60.5207317763096 26.4917719556927 60.5193937624743 26.4913468503091 60.5179308202612 26.4925241245426 60.5165779207445 26.4936139904314 60.5156572091758 26.4938850694449 60.5152047595425 26.4932927863792 60.5145788639718 26.4924734838523 60.5135063325123 26.4895314117142 60.5144517074176 26.4847104534938 60.5146070665597 26.4757529524899 60.5145168020928 26.4731183529041 60.5143829153569 26.4728510960228 60.5143964477244 26.4728241589246 60.5144078206484 26.4727960730965 60.5144129402072 26.4727783058879 60.5144146673637 26.472772304229 60.5144214660432 26.472738646913 60.5144306516958 26.4726682714348 60.5144331103151 26.4726496914643 60.5144381530387 26.4726147513635 60.5144437358829 26.4725801667169 60.514449912861 26.4725459730693 60.5144526506095 26.4725321419271 60.5144878590556 26.4723646909705 60.5144939370024 26.4723304442085 60.5144969312421 26.4723110905516 60.5145015868794 26.4722759198646 60.5145053069769 26.4722403090773 60.5145080559815 26.472204349832 60.5145098072464 26.4721681154143 60.5145104804718 26.4721317346194 60.5145100582053 26.4720953352206 60.5145098313051 26.472087908318 60.514508071926 26.4720516945853 60.5144948165459 26.4718716637918 60.5144934322465 26.4718349522516 60.5144893362425 26.4716166907185 60.5144873793599 26.4715805166735 60.5144862831815 26.4715667114434 60.5144714966905 26.4714242048642 60.5144706359448 26.4714154405956 60.5144646322362 26.4713436547778 60.5144605118872 26.4712713283567 60.5144580423299 26.4711986836565 60.5144575292062 26.4711688786274 60.5144544277889 26.470914122134 60.5144510159059 26.4708416385369 60.5144484039838 26.4708056209593 60.5144458795617 26.4707780888484 60.514441931751 26.4707425665875 60.5144372223018 26.4707074392147 60.5144317066847 26.4706727985198 60.5144254031452 26.4706387170561 60.5144183119005 26.4706052494589 60.5144103084118 26.4705726891571 60.5144012856639 26.4705412200207 60.5143912266404 26.4705110790878 60.5143801410424 26.4704824483233 60.5143680298822 26.4704555826822 60.5143648437039 26.470449114724 60.5143515746204 26.470424599161 60.5143375228935 26.4704019722424 60.5143227780893 26.470381177869 60.5143076874677 26.4703614818867 60.5142768590455 26.4703241767215 60.514272258716 26.4703188428165 60.514161486636 26.4701986302508 60.5141497313222 26.4701867840191 60.5140844752551 26.4701260925605 60.5140510759686 26.470099374596 60.514016983231 26.4700766564314 60.5139823219437 26.4700577356844 60.5139742350923 26.4700539703958 60.5138866165136 26.4700145520307 60.5138695308204 26.4700034668646 60.5138531308925 26.4699887099227 60.5138378719407 26.4699695999353 60.5138244073457 26.4699456163018 60.5138134914887 26.469916801337 60.5138057114915 26.4698840378278 60.5138015481621 26.4698530910678 60.5137977973365 26.4698174935558 60.5137932310785 26.4697823100362 60.5137854335258 26.4697496561373 60.5137721418003 26.4697239943201 60.5137562809025 26.4697070615478 60.513722345726 26.4696833397754 60.5137067199759 26.4696713568134 60.5136902316039 26.4696569475819 60.5136741229981 26.4696409477338 60.5136584297088 26.469623265631 60.5136431527483 26.4696041562234 60.5136282748108 26.4695837837009 60.5136137964745 26.4695622937488 60.513599708833 26.4695397047252 60.5135962285735 26.4695338063802 60.5135038688679 26.4693610486163 60.5134928160312 26.4693407230106 60.5134516914752 26.4692702425955 60.5134229920244 26.4692264941263 60.5134081496522 26.4692060484857 60.5133929611827 26.4691866283756 60.5133774450072 26.469168342764 60.5133649195049 26.4691547614746 60.5133487309764 26.4691390000928 60.5133321811477 26.4691249565262 60.5133152265768 26.4691129957149 60.5132978874655 26.4691036818839 60.5132802270236 26.469097105053 60.5132708980439 26.4690948355411 60.5132351863231 26.4690872610293 60.5132176562078 26.4690795893965 60.5132011246911 26.4690656366744 60.5131872831423 26.4690439911235 60.5131750112441 26.4690174210153 60.5131525539831 26.4689606408407 60.5131404693061 26.4689337399217 60.5131346543948 26.4689232906408 60.513120042873 26.4689022041399 60.5131041285809 26.4688854186722 60.5130874114 26.468872197594 60.5130701768219 26.4688620809421 60.5130669742876 26.4688605489641 60.5130493488767 26.4688537532011 60.5130315099512 26.4688497108639 60.5130135743001 26.4688484382479 60.5130039955991 26.4688488499888 60.5129861020974 26.4688514010762 60.5129682980207 26.4688561178513 60.512932879066 26.4688679704 60.5126556034981 26.4684319794987 60.5121967688257 26.4677059036071 60.5117325231888 26.4669726527649 60.511759664366 26.4669250230448 60.5117727998872 26.4669001863963 60.5117850576123 26.4668736341296 60.5117939658968 26.4668514892322 60.5118042442279 26.4668216733075 60.5118131686982 26.4667900949561 60.5118206504703 26.4667569923798 60.5118264659615 26.466722587785 60.511830346553 26.466687067698 60.511831797931 26.4666615488033 60.5118320297292 26.4666251781351 60.5118302329591 26.4665889682841 60.5118265978361 26.4665533349775 60.5118218335637 26.4665182483521 60.5118163794909 26.4664835555024 60.5118103061333 26.4664489274782 60.5117969808229 26.4663813298131 60.5117895128124 26.4663482180412 60.5117810611982 26.4663161240492 60.5117728643393 26.466289361623 60.51176243829 26.4662597403703 60.5117510306051 26.4662316285596 60.5117133135567 26.4661537244596 60.5117013231727 26.4661303388785 60.5116503180719 26.4660278871659 60.5116261563637 26.4659740534564 60.5116234915765 26.4659677964286 60.5115885103475 26.4658847671529 60.5115757479556 26.4658591909836 60.5115619263366 26.4658359268039 60.5115470124934 26.4658157035796 60.5115313100097 26.4657980974682 60.5114822935739 26.465752886251 60.511477210499 26.4657481259232 60.5114611188695 26.4657320013421 60.5113978742195 26.465658415875 60.5113823131061 26.4656402430669 60.5113660629177 26.4656248860373 60.5113627226119 26.4656225918862 60.5113450566629 26.4656169279487 60.5113271821244 26.4656197171073 60.5113097247842 26.4656280353712 60.5112927668425 26.465639987492 60.5112762947285 26.4656544264308 60.5112123249779 26.4657204726033 60.5111958621974 26.4657350023634 60.5111790417604 26.4657476623272 60.5111617425061 26.4657573436592 60.5111505687436 26.4657607872538 60.5111326291831 26.4657607912019 60.5111147413205 26.4657580081163 60.5110790382366 26.465750401202 60.5110610963441 26.465749822464 60.5110433185066 26.4657543399111 60.5110356784137 26.4657590364656 60.5110198996306 26.4657762135697 60.5110062564383 26.4657997837341 60.510994369872 26.4658270398618 60.5109839021267 26.465856585322 60.510982244191 26.4658618571669 60.5109733108874 26.4658934169014 60.5109653516631 26.4659260714144 60.5109372723503 26.4660600692204 60.5109328508277 26.4660792809285 60.5109244406827 26.4661114510962 60.510915119365 26.4661425436216 60.5109049135185 26.4661724852241 60.5108938315398 26.4662011300822 60.510881827301 26.4662281693802 60.51086803589 26.4662551105788 60.5108542568478 26.4662784095114 60.5108398611706 26.4663001889088 60.5107950204358 26.4663606374315 60.5107859382529 26.466372951155 60.5107568378206 26.4664155679082 60.5107288718003 26.4664612070263 60.5107019393185 26.4665093420712 60.510691423877 26.466529236471 60.510665442592 26.4665794863501 60.5106516453178 26.466602730668 60.5106367133993 26.4666228979007 60.5106263246999 26.4666340675174 60.5106096048996 26.4666472168083 60.5105753295847 26.4666688491024 60.5105585185441 26.4666816356533 60.5105422202153 26.4666991483714 60.5105282869379 26.4667220670041 60.5105151784535 26.4667469205357 60.5105101421511 26.4667561082879 60.510495900551 26.4667782671192 60.5104660641002 26.4668187282295 60.5104556985436 26.4668334482888 60.5104418377955 26.4668565477105 60.5104293991247 26.4668827558652 60.5104227662333 26.4669013479244 60.510415067855 26.4669341794479 60.5104029598143 26.4670027202384 60.5103981595816 26.4670328090535 60.510390902919 26.4670660885156 60.5103815722537 26.4670971439861 60.5103697944317 26.4671224670723 60.5103544797535 26.46714123801 60.5103375762683 26.4671533701893 60.5103200543097 26.4671612696039 60.510284767292 26.4671746504849 60.5102731002335 26.467180487088 60.5102562706775 26.4671931460883 60.5102403826603 26.4672099960945 60.5102256142178 26.4672306517724 60.510221269968 26.4672377702946 60.5102080888343 26.4672624424752 60.5101824966009 26.4673135040702 60.5101776289554 26.4673222154163 60.5101632963157 26.4673440839075 60.5101480917412 26.4673634537367 60.5101323588738 26.4673809383993 60.5100841667443 26.4674296755865 60.5100793478457 26.4674348533951 60.5100637882418 26.4674530089036 60.5100486199271 26.4674724690757 60.5099906543099 26.4675583320629 60.509988316334 26.4675619577312 60.5090879226982 26.4668413861837 60.5082177128906 26.4667119045778 60.5068450367575 26.4668418656741 60.5051385634481 26.4681147781484 60.5040930867063 26.4676987773884 60.5035041493189 26.4654135948966 60.5018794116361 26.4626743097816 60.500962722797 26.4617050095474 60.4997571275635 26.4609807819413 60.4996971990747 26.4610309092773 60.4989610068312 26.4616417890813 60.4979853134737 26.4628015865824 60.4979355715754 26.4628597306181 60.4975344340773 26.4639871993541 60.4972899302991 26.4639620019976 60.4971374162272 26.463908255687 60.4967339020758 26.4633345011288 60.4964533862159 26.4629861614446 60.4963409546659 26.4595965208589 60.4961038250214 26.4575626873743 60.4956540721481 26.4557817020728 60.4956204551772 26.4530494845474 60.4952242955055 26.4514314222533 60.4949788339421 26.4511062703581 60.4936445926156 26.449238563893 60.4935660228394 26.449119827433 60.4934874589329 26.4490047133423 60.4933971422351 26.4488679951205 60.4929844228116 26.4482509866049 60.4925079921302 26.4479042907516 60.4924189686434 26.4478395200558 60.491911515941 26.4480397888543 60.4916069401564 26.4481599852755 60.4913617340089 26.4482567494087 60.490710112969 26.4499090706203 60.4905113284254 26.4511818409639 60.4903740100952 26.4520609944991 60.4900178255562 26.4523048943263 60.4899954235351 26.4523202312484 60.4898047990919 26.4524526177461 60.4880237310978 26.4536473832176 60.4876803099015 26.4538777310903 60.4871927071163 26.4542047753329 60.4862164962626 26.4548595425498 60.4856076352311 26.455299477464 60.4845207217625 26.4560848025069 60.474319068173 26.4643941275976 60.4702067123663 26.4677670852055 60.4623286283557 26.4739540651735 60.4548962116692 26.4798749905316 60.4476154752791 26.4857086156704 60.4466386178047 26.4860100447335 60.4336654235759 26.4901057673879 60.4324991683131 26.4904764770671 60.4271994513036 26.4921607003688 60.4121183531969 26.4926300651231 60.4065570306947 26.4745286520438 60.4000611661486 26.4831161429121 60.3982565098445 26.4855011550606 60.3886815848828 26.4982341016976 60.3880126145798 26.4990314265703 60.387657491243 26.499588177599 60.3860936763491 26.5016557626262 60.3760903099884 26.5283582591486 60.3758938145649 26.5288371723822 60.3701344532173 26.5438300519799 60.3679450238624 26.5495150366725 60.3643299423594 26.5590095388626 60.3610115140357 26.5612000005615 60.3476050466089 26.5700446661673 60.32060380753 26.5745329034678 60.2798088009946 26.5812997084863 60.2757573710903 26.5841138953526 60.266796733928 26.5903354322042 60.2530539084783 26.5998702972444 60.2524534958344 26.6002866627245 60.2309740960601 26.6151716115659 60.2003710904169 26.6363433586297 60.1893195174773 26.6439787524704 60.1861833235319 26.6461445056829 60.1713295287988 26.6563961036045 60.1713286325004 26.6563967257029 60.1713286325004 26.6563967257029 60.1617504344673 26.6110160305373 60.1579717530475 26.5561984774908 60.1535137584711 26.491960573342 60.1407108645295 26.4682530212144 60.1346932112094 26.4571237171463 60.0501771582024 26.3014253959728 60.0465210546044 26.2947127404235 60.0446972153719 26.2712975869632 60.0446972153719 26.2712975869632 60.0382177078953 26.1885585248489 60.0194574135798 26.1003709748804 60.0140634875399 26.0750722285395 59.9767938117251 26.0173070794805 59.9662437901315 25.9227739326529 59.9571846309688 25.8421083601678 59.9461488208324 25.744487774731 59.9319971967841 25.6203084658096 59.9281958493154 25.5826902148452 59.9286626662162 25.5662984005972 59.9313091490542 25.4712675079182 59.9370983061496 25.3292884701276 59.9370983061496 25.3292884701276 59.9434346230412 25.1693502008328 59.9424508464296 25.158557480569 59.9424508464296 25.158557480569 59.9224932379687 24.9422998415632 + + + + + FI-18 + + Uusimaa + + county + + + + + + + + + 60.285681338778 25.190249963766 60.2856668879311 25.1902736812958 60.2844811281826 25.192203042713 60.282438808015 25.1955153306939 60.2821809456345 25.1959281789597 60.281961369489 25.19627958672 60.2821717989145 25.1963134131559 60.2825654093353 25.196484272884 60.2828780752826 25.196676505948 60.2831523109747 25.1967324884212 60.2842058550932 25.1993774436881 60.2852788387508 25.2020698685483 60.2863895536598 25.2048516412383 60.2877716483653 25.2020036027205 60.2880029435538 25.2015435100998 60.2886934179601 25.2053948889653 60.2890343202498 25.2072683754969 60.2900350818733 25.2128770904698 60.2902327103104 25.2140450503086 60.2908116267804 25.2172314121351 60.2914304925677 25.2206496244031 60.2920371539754 25.2225528798326 60.2937010914509 25.2247283338334 60.2939009540446 25.2255026218619 60.2941820120029 25.2252044739434 60.2957728341543 25.228484936796 60.2960488363154 25.2290728011543 60.2966162744336 25.2270470804144 60.2978394088975 25.2295212941884 60.2972856023718 25.2316158683355 60.2969627765246 25.2328367241688 60.2968220850811 25.2327952651483 60.2963280496445 25.2346160133687 60.2955137020749 25.2375238774103 60.2953316484495 25.238178700649 60.2956887215723 25.2404195530625 60.2961878047764 25.2434506006062 60.2963683278425 25.2447074317845 60.2966423923631 25.2467296144043 60.2970042419735 25.2494721455072 60.2972267191608 25.2511511637246 60.2974583879769 25.2528935895171 60.2952254483971 25.2544966690155 60.2948991218347 25.2528068100051 60.2944964604085 25.2507027560614 60.2935113801358 25.2455558984127 60.2933092538819 25.2459136649492 60.2921679047717 25.247933754769 60.2902736939855 25.251287818128 60.2901153439167 25.2515684584962 60.2896434617016 25.2512925904757 60.2896307523085 25.2538903658503 60.2858129830686 25.2458290474962 60.2853196235942 25.2447768921693 60.2848826341452 25.2438657098116 60.2837262804214 25.2459718502456 60.282984231213 25.2473269574239 60.28182571495 25.2471138258585 60.2813357428687 25.2471203369891 60.2810859030071 25.2471171603198 60.2785113611511 25.24708458662 60.2789609898511 25.2447843371194 60.2783403175698 25.2441284797275 60.2776033606218 25.2461239490985 60.2777178742768 25.2466943651505 60.2757499309179 25.2522920221752 60.2754671568725 25.2521133847765 60.2748938272115 25.2517613263028 60.274869202199 25.251744340722 60.2741983084773 25.251334141919 60.2735184860472 25.2509034792665 60.2727174985134 25.245672093885 60.2722973886993 25.2429858353796 60.2718362601912 25.2432772622434 60.2718355503307 25.2416134012312 60.2718695350135 25.2405997550662 60.2718793045893 25.2403061345443 60.271889752605 25.2396504378009 60.2719219301625 25.2376095643309 60.2719628565291 25.234846031385 60.2713983853121 25.234473582038 60.2672333437415 25.2318782149045 60.2656952348592 25.232077715798 60.2653053122237 25.2318868097672 60.2625493761476 25.2325603456001 60.2625150274748 25.2315766193329 60.2621558117435 25.230699655792 60.2616908475055 25.2306554899732 60.2614186507751 25.2306111495701 60.2614311771352 25.2302343229945 60.2614135890857 25.2299410404507 60.2614119687488 25.2297844860778 60.2613919651168 25.2285736259059 60.2613846103598 25.228197457647 60.2612281339775 25.2276363798331 60.2611179054697 25.2273582870089 60.2608430599786 25.2277029144001 60.2605627375305 25.2280544474733 60.2599232556463 25.2288565931424 60.2599975918267 25.2290982654939 60.2598501784791 25.2292869576993 60.2590105314757 25.2303655770385 60.2582248373549 25.2313763269325 60.2576103905707 25.2321667874875 60.2565660021942 25.2335103043718 60.2565501704443 25.2335306941164 60.2562686880993 25.2374524866191 60.2543387800803 25.2385904180588 60.2531527310612 25.2392897062676 60.2505498616407 25.240823688983 60.249229793289 25.2407556300029 60.247267252939 25.2408629328276 60.2463176360034 25.2409148627913 60.2462915233695 25.2406014809324 60.2461107573617 25.2384927356944 60.2459895009427 25.2370869397886 60.2456443420131 25.2330619226099 60.2453207887092 25.2292902327016 60.2451300753616 25.2270675656297 60.2444508606539 25.2258927488171 60.2438300717013 25.2248190572992 60.24283664318 25.2231010193163 60.2393646941219 25.2266305618024 60.2315713365684 25.2083257047285 60.229894538472 25.2043892047833 60.2278353372247 25.2039868052111 60.2265548554633 25.2036877827873 60.2245599860679 25.2031271550101 60.2228092911023 25.202657794069 60.2182045967509 25.2014235740014 60.2090863431071 25.2107981209007 60.2089072799738 25.2109821514347 60.2079502972201 25.2119656880412 60.2073231442806 25.2126102064784 60.2067057946581 25.2132446387531 60.2056903977006 25.2142880043839 60.2050695492591 25.2149259552273 60.20506944302 25.2149260692673 60.1997366682124 25.2204044921354 60.1784435207377 25.2098785023654 60.1545041876759 25.1980550051939 60.1466575735929 25.194217267466 60.1363481528645 25.1908325440215 60.0934959671883 25.1767870798954 60.0467557323195 25.1715112076773 60.0270359473 25.168750073336 59.9570889765811 25.1603229860858 59.9424508464296 25.158557480569 59.9424508464296 25.158557480569 59.9224932379687 24.9422998415632 59.9224932379687 24.9422998415632 59.9590547657434 24.9095917103644 59.9668087316352 24.9026447964544 59.9668586627137 24.9026000548605 59.9783411067752 24.8923055076145 60.0275582195356 24.8480912331233 60.0493496022733 24.8284687442864 60.0760672868684 24.8043717676947 60.0763404314548 24.8041254297189 60.0999603866204 24.7828055477805 60.1301005230654 24.8351282613389 60.1304135984758 24.8356746697375 60.1308454491473 24.8357564773446 60.1365175509419 24.8368309352396 60.1441619259211 24.8382747880496 60.1485538238141 24.839110831294 60.1486708186436 24.8391461012308 60.1499624121192 24.8393781560334 60.1502622080485 24.8394356257913 60.1510690515762 24.8408595003012 60.1551881241208 24.8409185127253 60.1570287259613 24.8409422458354 60.1576021330262 24.8411751868173 60.1590158686395 24.8417495001033 60.1652448180071 24.8442803834946 60.1654218918791 24.8443487025079 60.1655842685444 24.8444124696138 60.1657194356588 24.8444054336445 60.1659749547391 24.8443933596721 60.1660198208795 24.8443911408711 60.1705052954616 24.8442356576178 60.1723195567165 24.8441739287105 60.1725429311721 24.8441659035192 60.1731348577628 24.844145853162 60.1732534997994 24.8441406181995 60.1732764763859 24.8441400676054 60.179428033985 24.8437228902849 60.1807866898444 24.8436502496832 60.1810210345624 24.8436368996019 60.1951326039624 24.8428345381145 60.1957605956047 24.8427970087717 60.1963690727642 24.8431074857531 60.1980518456297 24.8439667021165 60.1992174610221 24.844561817653 60.2019226981855 24.8459431730133 60.2024759381175 24.8462256620048 60.2028795608772 24.8464318384681 60.2029659373778 24.8464763056763 60.2037354599459 24.8468689699533 60.2039999091794 24.8468438035182 60.2040537175093 24.8468385800388 60.2044457024297 24.8468005412478 60.2049531317944 24.8467512158839 60.2050453332973 24.846737898789 60.2051464745581 24.8467324774397 60.205240091924 24.8467233805249 60.2054963536233 24.8466984775616 60.2056047777805 24.8466879765852 60.2057913504065 24.8466644114625 60.2059387391581 24.846655560645 60.2066502067533 24.8465823851347 60.2069655897698 24.8465558593072 60.2089641921358 24.8463613305622 60.2093811143516 24.8463212646748 60.2096508444836 24.8462949660642 60.2129918169945 24.8459705594566 60.2133117669263 24.8459393172327 60.2153748220364 24.8460853270776 60.2165290177186 24.8468261882948 60.2173904697009 24.8473517274519 60.2179502604822 24.8476928649683 60.2185902996736 24.8480834388036 60.2187529318413 24.8480536045932 60.2193892015841 24.8480192606752 60.2198145225668 24.8478137205976 60.2204676730581 24.8476168520435 60.2205038433172 24.8476234356234 60.2210096156871 24.8478146624615 60.2211175708615 24.8478239785083 60.2212806060816 24.8478378081734 60.2215952347502 24.8478650083274 60.2216747301722 24.8479393854449 60.2220847364011 24.8483660671214 60.2224115910752 24.8487123163763 60.222827300076 24.8491440962734 60.222895174309 24.8492119820606 60.2232444464539 24.8495632434862 60.2232929324564 24.8496120153988 60.2233968527649 24.8497165256938 60.2236086922308 24.8499317686366 60.2237273880686 24.850052358632 60.2239022489694 24.8502300138781 60.223936045765 24.8502641848093 60.2243071139447 24.8506425710039 60.2247884485024 24.8511658245699 60.2248119720585 24.8511918399257 60.2248229779153 24.8512036511512 60.224850478458 24.8512356359762 60.2249724051108 24.8513755436876 60.2249734316944 24.8512182322083 60.2249694941238 24.8509973584967 60.2249597593115 24.8507862543322 60.2249447841486 24.850562744929 60.2249248889273 24.8503499229378 60.2249020378287 24.8501476056008 60.2248739131281 24.8499385916247 60.2248408545386 24.8497277704776 60.2247714168939 24.849395008592 60.2246885166496 24.849148812299 60.2246205906094 24.8489807988502 60.2243528770219 24.8483489021135 60.2241415451338 24.8478107899075 60.2241086174865 24.8477250476647 60.2239111104383 24.8472109730909 60.2238435015597 24.8470775977873 60.2237304976051 24.8468933736332 60.2235796897925 24.8466655862963 60.2234002907866 24.8464289152706 60.2233199158301 24.8463136975371 60.2231526131856 24.8460409540709 60.2230719927876 24.8458840980404 60.2228914291558 24.8454585878012 60.2227715848459 24.8452084124764 60.2226042775729 24.8449078908781 60.2225708030075 24.8448477588913 60.2224503308498 24.8446314304163 60.2224269040715 24.8445893452682 60.2222642354807 24.8443593408631 60.2218081341304 24.8435363229018 60.2217352328321 24.8434025167318 60.2216560385982 24.843231929947 60.2215877730239 24.8430645077848 60.2214562300706 24.8427216098953 60.2213323754491 24.8423544482928 60.2211992442266 24.8419101887225 60.2212988226289 24.8418843585112 60.2213167809351 24.8418784653119 60.2214458393594 24.8418449368994 60.2214837816316 24.8418350936005 60.2216925618174 24.8417952396964 60.2221523640942 24.8416955814504 60.2222350360292 24.8416745990766 60.2224119157358 24.8416305934389 60.2228410376832 24.8415228365419 60.2229898603077 24.8414856579294 60.2241439086732 24.8412079902114 60.2242894724501 24.8411725758334 60.2243518490211 24.8411573857642 60.2244290329332 24.841138621391 60.2244493234403 24.8411336391491 60.2249661485182 24.841006104476 60.2254531622456 24.8408758499066 60.2254791541077 24.8408718285189 60.2254920608181 24.8408701306748 60.2255952345769 24.8408439126303 60.2256137965904 24.8408392423685 60.225626606561 24.840836015949 60.2257163615096 24.840813696205 60.2259599875614 24.8407531362565 60.226104139234 24.8407176119904 60.2264806965383 24.840623636138 60.2265030130566 24.8406184115757 60.226859305952 24.8405299202829 60.2269048015498 24.8405183847921 60.2269407328785 24.8405108194816 60.2272640345484 24.8404460770587 60.2274896029257 24.8403831059161 60.2276375677783 24.8403423610463 60.2280064210413 24.8402502195224 60.2282317662741 24.8401939601834 60.2282640160442 24.8401859141185 60.2283342460667 24.8401653994686 60.2286848378369 24.8400776343218 60.2291359538803 24.8399714028468 60.2290257094565 24.8381172771694 60.2293733372238 24.8380213215944 60.2294059963569 24.8380119457938 60.2294118264689 24.8380103335851 60.2294124527836 24.8380101839591 60.2295833755424 24.8379633800246 60.229876815317 24.837882405728 60.2299504705355 24.8378620927958 60.2299947598623 24.8378498553075 60.2300412580569 24.8378370207249 60.2306137851924 24.837679009818 60.2306785695924 24.837661122724 60.2309992019952 24.8375726615073 60.2310737626422 24.8375516914451 60.2314282398681 24.8374538631826 60.231431280241 24.8374530306543 60.2314414024615 24.8374502322917 60.2315141898969 24.8374301370869 60.2316115674252 24.8374032374569 60.2317522578179 24.8373648133741 60.2318968603778 24.8373244874955 60.2320771814712 24.8372751240663 60.2321677302565 24.8372497392418 60.2321820622033 24.8372506187204 60.2324312889135 24.8371799690138 60.2327820471517 24.8370804810333 60.2328243494722 24.8370697811652 60.2330383799926 24.8370071565869 60.2330939335771 24.8369911035242 60.2333050987166 24.8369301298264 60.2334503749151 24.8368887079445 60.2338520770134 24.8367730662538 60.2340915493399 24.8367040998632 60.2343784497009 24.8366214923969 60.2346375549974 24.8365468939067 60.234859683113 24.8364829153259 60.235081364619 24.8364190917404 60.2353029745968 24.8363552900388 60.2355259882179 24.836291087785 60.2355624909528 24.8362805697474 60.2359699484185 24.8361637200789 60.2365780918637 24.83598996834 60.236685413763 24.8359592969094 60.2367606445452 24.8369383899848 60.2372915151484 24.8367673956581 60.2373580826578 24.8367464949396 60.2375474377723 24.8366865520775 60.2380360626608 24.8365313964409 60.238974849339 24.8362342485446 60.2390985590186 24.8361955754098 60.239571363856 24.8360430561469 60.2401090552779 24.8358695762645 60.2401319633078 24.8358670350052 60.2401599100714 24.8358639264215 60.2402507847264 24.8358282479793 60.2402685102664 24.835821315352 60.2405191062854 24.8357421448895 60.2407761428082 24.8356679499752 60.2408721016769 24.8356405523936 60.2410666114534 24.8355756130189 60.2412638027692 24.8355082194971 60.2413147738899 24.8354909805235 60.2415370366783 24.8354176675287 60.2416187915257 24.8353906278587 60.2417498410434 24.8353443454404 60.2419628620297 24.8352716404119 60.2421771383734 24.8351982553322 60.242226415231 24.8351795734326 60.2423916917793 24.8351148779114 60.2425799123023 24.8350553519986 60.2429330928949 24.8349436694253 60.2430235779965 24.8349144068444 60.2430574182187 24.8349036629721 60.2432227474177 24.8348653214727 60.2432264820273 24.8348640992621 60.2433801542238 24.8348143132092 60.244783482123 24.8343594572835 60.2448683075972 24.8343301495134 60.2464766931323 24.8338299207324 60.2469427778323 24.8336840627947 60.2473287899194 24.8335642895246 60.2473656281239 24.8335528748474 60.247780863272 24.8334234514818 60.2487575817017 24.8331118309228 60.2498961570158 24.8327478740071 60.2501633679407 24.8326626232563 60.2506497164469 24.8325080362466 60.2516035122601 24.8322036760955 60.2518576720494 24.8321200924409 60.2520142967345 24.8320696504963 60.2525747439052 24.8318867947551 60.2526332294767 24.831867709424 60.2532051928541 24.8316810846639 60.2540555450455 24.8314023691663 60.2540555450455 24.8314023691663 60.2543063131293 24.8323400721834 60.2546672228977 24.8336844196519 60.258397534345 24.834707083823 60.2583987649139 24.8347076351833 60.258498527971 24.8347334003072 60.2587734438988 24.8354646757626 60.258882242035 24.8359850811392 60.2590290093906 24.8368441013256 60.2590992526448 24.8376855099969 60.2591015504475 24.8377129790368 60.2590962852683 24.8386410579113 60.2579807474607 24.8425395305392 60.257267547227 24.8450315202773 60.2571099654886 24.8455821121532 60.2570305491392 24.8458595981111 60.2569960725356 24.8459800572087 60.2569743369117 24.846055955089 60.256802360889 24.8466568815848 60.2566324967977 24.8472502883603 60.2564981036689 24.8477198065454 60.2564219557292 24.8479858609518 60.2563660214795 24.8481812704121 60.2562875782006 24.8484553900207 60.2561531897232 24.8489248977974 60.256130798957 24.8490031482309 60.2559671316716 24.8495749583245 60.2551363651687 24.8524773903713 60.2543488612553 24.8552283126968 60.2539517816554 24.8566150920435 60.2538870170671 24.8568412492725 60.2538628439505 24.8569256597352 60.2537445369537 24.8573387773725 60.2536082029776 24.8578148622335 60.2535076350802 24.8588282156522 60.2534856538555 24.8590496915052 60.2531991769832 24.8619358180078 60.2531874376255 24.8620540396137 60.2531438570491 24.8624929447859 60.2532080312845 24.8626439165551 60.2532087872256 24.8626467950841 60.2533517841575 24.8629821603204 60.2533662885156 24.8630171981797 60.2535044333024 24.8633413522069 60.2537384631171 24.8638922059257 60.2539162116757 24.8643087079561 60.2538249663633 24.8644345325357 60.253751294063 24.8645142816313 60.2536946076598 24.8646298112749 60.2536065147622 24.8648667412323 60.2535453718406 24.8650793595456 60.2534958578355 24.8652047039592 60.2533707981357 24.8654262721653 60.2533240017383 24.8655301665223 60.2533033081896 24.8656196015597 60.2532872524543 24.8657533566738 60.2532774669228 24.8659206806141 60.2532841758559 24.8660865512229 60.2532869544593 24.8664873369821 60.2532808984519 24.866622989093 60.2532366755129 24.8668283741587 60.2531820409356 24.8670616357931 60.2531464265016 24.867137057786 60.2530145102361 24.8672837166299 60.2528448526952 24.8674511551387 60.2528215172147 24.8674740712075 60.2526708028104 24.8675900879214 60.2526588507149 24.867594190722 60.2526166065054 24.867608631508 60.2525413215934 24.8676071307824 60.2525050161848 24.8676306190612 60.2525050161848 24.8676306190612 60.2524557102416 24.8676986160307 60.2523796222546 24.867875235162 60.2532668333083 24.8687648426998 60.2532900509269 24.8688660237373 60.2533005870664 24.8689063101674 60.2533414524138 24.8690778589596 60.2533541801588 24.8691310156035 60.2535775232519 24.870067432021 60.2536328933599 24.8702955318983 60.2536330378005 24.8702961370008 60.2537311970893 24.870700527092 60.2538681808463 24.8712715638006 60.254143574374 24.8724162154154 60.2547486116505 24.8728906733943 60.2552153524207 24.8732587546222 60.2556040084418 24.8735633199429 60.2556902735406 24.8736306894526 60.2562386155248 24.8740588743557 60.2563418597921 24.8741376709111 60.2563592551083 24.8741509481754 60.2566889849164 24.8744054926852 60.2569663014948 24.8746217419227 60.2570839930354 24.8747126010874 60.2572965030417 24.8748783256921 60.2575471721453 24.8750695228306 60.2579151172218 24.8753559696464 60.2581244523883 24.8755108279404 60.2581674728713 24.8755448413 60.2582280069006 24.8755922342968 60.258276685566 24.8756307073264 60.2585317687839 24.8758323305197 60.2588083296084 24.8760509120269 60.2588487841054 24.8760828697209 60.2596440921827 24.8767196789977 60.2597879407475 24.8768348703603 60.2598876790878 24.8769147244469 60.2600241390944 24.8770239789088 60.2602733397162 24.8772235459092 60.2603094883 24.8772524953579 60.2603664117871 24.8773853242927 60.2603754375722 24.8774133372124 60.2604265067224 24.8775215817286 60.2604728086599 24.877629972612 60.2604749102363 24.8776389472475 60.2609133121407 24.8786648661144 60.2609836862762 24.8788295488597 60.2610130043349 24.8788981701795 60.2610326547602 24.8789418743011 60.2613000111716 24.8795691345352 60.2615611706979 24.880179758651 60.2616900114319 24.8804808572079 60.2634511493324 24.8845738593482 60.2634803846251 24.8846419899458 60.2636213610284 24.8849703072988 60.263640363391 24.8850146206849 60.2636881756667 24.8851263156451 60.2639116926789 24.8856721307302 60.2639579819057 24.8857812863163 60.2639828895588 24.8858394114185 60.263983339061 24.8858394366533 60.2642434068161 24.8864358386859 60.2648345693028 24.8877915775275 60.2652336295172 24.8887068144776 60.2654171885513 24.8891566110862 60.2656379487062 24.8896651257471 60.2657190135332 24.8898523085512 60.2657188488648 24.8898521202795 60.2657437500286 24.8899088236178 60.2657433972183 24.8899086655416 60.266393895151 24.8914064333339 60.2667953535951 24.8919725627821 60.2667952710367 24.8919730201003 60.2671482221586 24.8924705581961 60.2673605839582 24.892526056155 60.2676096097685 24.8925911478281 60.2679677877128 24.8926847305512 60.2683226408457 24.8927720018057 60.2684050398665 24.8927922687393 60.268428998195 24.8927981410563 60.2685317309765 24.8928234106384 60.2685235644199 24.8932132423157 60.2685004003637 24.8943190042748 60.2685068116396 24.8949668569787 60.2685136259182 24.8953462506411 60.2685541553246 24.8961177034369 60.2686126469432 24.8970084078068 60.2686513497684 24.8975233184575 60.2686774137945 24.8977852706258 60.2687304331401 24.8981465681844 60.2687969214758 24.8985485357061 60.2689374199964 24.8992751834129 60.2689761509726 24.8994472398456 60.2689765651531 24.899447303697 60.2690259580662 24.8996324550388 60.2690735564679 24.8997950297207 60.2691490108011 24.9000117453758 60.2691494160084 24.9000118098098 60.2691938803628 24.9001608264611 60.2692257887307 24.9002962733972 60.2692262026251 24.9002963191965 60.2693986997706 24.9013170744453 60.2694436105199 24.9016512758081 60.2696003990098 24.9025635832816 60.269600804216 24.9025636477479 60.2697508432609 24.9033765658782 60.2697512481816 24.9033766122912 60.2698529793176 24.9038955067334 60.2698792253597 24.90402698247 60.2699547795501 24.9043676942644 60.2701872554761 24.905409086162 60.2702357857542 24.9055987381996 60.2702361909591 24.9055988027045 60.2702959005897 24.9058156051708 60.2703794041014 24.9060865805652 60.2706747654822 24.9069535361623 60.2707673812695 24.9072511673837 60.2707931600579 24.9073560619149 60.2708175646521 24.9074911696415 60.2708418075103 24.9077055068819 60.2708529025502 24.9079114258842 60.2708552434989 24.9081329666581 60.2708478306201 24.9083676794045 60.2708361411262 24.9085840944373 60.2708214323339 24.908803866455 60.2708038320141 24.9092410101566 60.2708021420484 24.9094747964402 60.2708119883727 24.9096928562944 60.2708358501912 24.9098723745353 60.2708679416452 24.9100257994866 60.2709117061602 24.9101721693 60.2709117310557 24.9101731803275 60.2709581544194 24.9102944633068 60.2710324114124 24.9104453443292 60.2710328076423 24.9104454094679 60.2711178766243 24.9105710454823 60.2711182728542 24.9105711106226 60.271205896697 24.910658195015 60.2712063105884 24.9106582409475 60.2713036889789 24.9107219376438 60.2713040941817 24.910722002214 60.2713988219308 24.9108124679643 60.2713992358221 24.910812513899 60.2714537077214 24.9108927809932 60.271454112924 24.9108928455658 60.2715591508394 24.9111042794696 60.2715595560419 24.911104344045 60.2716297149109 24.9112597042077 60.2716301111404 24.9112597693572 60.2716995995512 24.9114267640305 60.2717605391302 24.9115904708379 60.2718216760906 24.9117673119405 60.2718735399037 24.911942213168 60.2718739361329 24.9119422783262 60.2719245423225 24.9121183271505 60.2719249385516 24.9121183923109 60.2719741859449 24.9123251427814 60.2719745827421 24.9123252440742 60.2720176006392 24.9125225549622 60.2720535981585 24.912710964754 60.2720539854145 24.9127110304937 60.2720909069502 24.9129296709389 60.2721757636103 24.9135151660409 60.2721909426095 24.9136100216118 60.2722421459452 24.9139196890369 60.272336677016 24.9144168879308 60.2724367261062 24.9150179339813 60.2724661206454 24.9152356660403 60.2725731558825 24.9162517362534 60.2726283373296 24.916906368935 60.2726614871741 24.9173396536273 60.2726955855819 24.9177498948845 60.2727185156131 24.9179657813831 60.2727388606257 24.918097021381 60.2727880445571 24.9183696493704 60.2728471348189 24.9186537284452 60.2728740762274 24.9187972810021 60.272898292524 24.9189578064587 60.2729754137661 24.919459480249 60.2730056689394 24.9196466218252 60.2730522999414 24.9199795260443 60.2730840455778 24.920269324679 60.273108801899 24.9205303987368 60.2731424227824 24.9206148124629 60.2731428013448 24.9206148969332 60.2731957740956 24.920696183634 60.2731961616309 24.9206962675358 60.2733081413895 24.9208099944306 60.2734029028858 24.9209237299376 60.2734032808823 24.9209237782805 60.2734499355715 24.9209864791642 60.2735657823341 24.9211905986037 60.2735739376059 24.9212043491789 60.2736224768441 24.9212967876254 60.2736910079114 24.9214625537501 60.2737512998156 24.9216367640983 60.2738030931402 24.9218085846726 60.273852543672 24.9219822362169 60.2740503439348 24.9227733262232 60.2740792001691 24.9228765106079 60.2741669938695 24.9231260201366 60.2741673634575 24.9231261052072 60.2742332843609 24.92329799298 60.2742336629217 24.9232980774839 60.2743184532909 24.923502623358 60.2743775714882 24.9236255015181 60.2743779503314 24.9236256040924 60.2745426718042 24.9239026489638 60.2746652970213 24.9241373342565 60.2747236013191 24.9242765604901 60.2747771801793 24.9244272266905 60.2748136495362 24.924580840197 60.2748333737639 24.9247101424316 60.2748488604256 24.9248821033836 60.2748563699522 24.9250103170274 60.2748648723087 24.9254463929068 60.2748774915826 24.9257533922084 60.2749223907022 24.9268466349144 60.2749432822355 24.9271296740681 60.2749716503289 24.9274072310357 60.2750353130482 24.9279349259434 60.275057514889 24.9281466666045 60.2750730384944 24.9283656116583 60.2750744454152 24.9285772754236 60.2750572233093 24.9290739731267 60.2750440721813 24.9292201505105 60.2750209007765 24.9294160970323 60.274997068941 24.929634799224 60.2749843432555 24.9298549692885 60.2749633294509 24.9305455174394 60.274965406265 24.9307992389318 60.2749745609818 24.9310351341049 60.2749883571099 24.9312749499431 60.2750074262853 24.9315021535446 60.2750295970421 24.9317209149784 60.2750611780567 24.9319574022227 60.2751015248381 24.9321788869061 60.2751461749937 24.9324010408671 60.2752837757631 24.9329738322647 60.2754699026332 24.9337780543425 60.2755110795935 24.9340167263651 60.2755417507672 24.9342515765257 60.2756156666591 24.9349257305426 60.2756551343862 24.935134329041 60.2758477123349 24.9358840731477 60.2759562066472 24.9362667878655 60.2760094019597 24.9364630230575 60.2760097538744 24.9364631274813 60.2761216464039 24.9368409478164 60.2764570432454 24.9386330186363 60.276457395439 24.9386331411524 60.2765112704887 24.938893073015 60.2765409889386 24.9390561051617 60.2765413408514 24.9390562096149 60.2765831847392 24.9392939132513 60.2765835276787 24.9392940182718 60.2767059100926 24.9399583011451 60.2767062620048 24.9399584056085 60.2767397796063 24.9401116696507 60.2767737853493 24.9402500912876 60.2768073163581 24.9403735501774 60.2771945146883 24.94144633412 60.2773849515662 24.9419889838492 60.2774784705281 24.9423170446499 60.2775724337438 24.9426645579046 60.2776475123714 24.9429776117935 60.277715361842 24.9432832536638 60.2777696020554 24.943514007062 60.2778397057692 24.9437593915563 60.2780147357254 24.9443105920399 60.2780150789409 24.9443107151858 60.2781207582599 24.944612976087 60.2781773665664 24.9447757805381 60.2781777097815 24.9447759036895 60.2782781242094 24.9450972895416 60.2782784581715 24.945097395191 60.2783529835108 24.945355911307 60.2783916418585 24.9455440437355 60.278403872583 24.9456512881851 60.2784090541709 24.9457499316937 60.2784056498833 24.9459694060978 60.2783912719819 24.9461838171645 60.2783899488787 24.9463021124771 60.278395524485 24.9464065189495 60.2784158905676 24.9466246112878 60.2784917888411 24.9472568191892 60.2785088009481 24.9474706916737 60.2785108882618 24.947653396294 60.2785008500344 24.9477820589636 60.278475725463 24.9479353419305 60.2784360928311 24.9481024292211 60.2783859852808 24.9482699733882 60.278322321152 24.9484815201574 60.2782687334035 24.9486703335361 60.2781990631174 24.9489390818107 60.2781768962416 24.9490600560888 60.2781658049052 24.949120616004 60.2781432555579 24.9492982599234 60.2781340353849 24.9494229989106 60.2781279859684 24.9495762601572 60.2781303336984 24.9497376227568 60.2781448004466 24.9499619986342 60.2781622247094 24.9501813243977 60.2782073299443 24.950601971982 60.2782665544207 24.951091387445 60.2782802289886 24.9512418596212 60.278297825293 24.9515365234878 60.2782969449265 24.9516640324333 60.2782892750771 24.9518777852678 60.278270015723 24.9520727295557 60.2782370495152 24.9522693987779 60.2781892392892 24.952513459077 60.278156644458 24.9526363848674 60.2781160543811 24.9527411633721 60.2780675268994 24.9528274654172 60.2780137534781 24.9528892628936 60.277930413999 24.952945366293 60.2778498763929 24.9529740567517 60.2777675983068 24.9529836485594 60.2775483841772 24.9529897720478 60.2774394462628 24.9530120623242 60.2773367192639 24.9530544553828 60.2772372057362 24.9531235226326 60.2771766220883 24.9531805349676 60.2770978262214 24.9532866843892 60.2769473743639 24.9535525750271 60.2769118644111 24.9536303549684 60.2768920459517 24.953673768571 60.2768500651611 24.9538002587604 60.2768040525833 24.9539915292805 60.2767823016656 24.9541100634283 60.276759382554 24.9542991130005 60.2767367052938 24.9545161252782 60.2767186846678 24.9547287591536 60.2766958436678 24.9550967395313 60.2766727202768 24.9553076115296 60.2766467104683 24.9554442061025 60.2766106003312 24.9555863320406 60.276566713402 24.9557355622687 60.2764989952404 24.9559196466984 60.2764226786112 24.9560994743569 60.2763434317693 24.9562616701272 60.2762826025996 24.9563675924965 60.2762233315803 24.9564498704653 60.276155701859 24.9565230303045 60.2760541668641 24.9566096805924 60.2759494320728 24.9566792588405 60.2759346241801 24.9566858793905 60.2758329453675 24.956733419967 60.2757390556726 24.9567583204385 60.2756370386782 24.9567698748276 60.2755493033997 24.9567610429033 60.2755489691681 24.9567609190756 60.2754737933272 24.9567359317386 60.2753666831869 24.9566803301162 60.2753663582065 24.9566802237975 60.2752096316821 24.9565790343208 60.2752092974504 24.9565789104962 60.2750838166314 24.9565137860978 60.2750834916508 24.9565136797816 60.2749581869558 24.956458834901 60.2745777749011 24.9563142770297 60.2745774406691 24.9563141532101 60.2743943722451 24.9562539443305 60.2743940377351 24.9562538024454 60.2742360348754 24.9562191019616 60.2742357006434 24.9562189781442 60.2741252703316 24.95618226809 60.2741249450727 24.9561821437134 60.2738949573457 24.956069527551 60.2738946233916 24.9560694218028 60.2737812158599 24.9560091001839 60.2737808995741 24.9560089752503 60.2735716618204 24.9558889181284 60.2734813709778 24.9558500308243 60.2733911044565 24.9558249761096 60.273233503183 24.9558023694965 60.2731389592857 24.9558040199357 60.2730428198624 24.9558122980123 60.272981881816 24.9558236053929 60.2728904335007 24.9558507226995 60.2727893162923 24.955896218988 60.2726854343947 24.9559558296031 60.2725381468547 24.9560541696682 60.2724067245286 24.9561568172729 60.2718934544455 24.9565999691084 60.2717970324245 24.9567001942374 60.2716943863315 24.9568068646352 60.2712952708876 24.9572481400326 60.2712054031347 24.9573569938432 60.2711249293426 24.9574634531141 60.271046689335 24.9575749983493 60.2709567145213 24.9577113600701 60.2708738003309 24.9578512951248 60.270708901927 24.9581484457834 60.2706213643568 24.9583236011756 60.2705295272112 24.9584936893805 60.2699543174682 24.9593953535362 60.2698491616278 24.9595404803991 60.2697250783277 24.959699460198 60.2696123178891 24.9598220047914 60.2695220340924 24.9599021584585 60.2694366615967 24.9599594042087 60.2693493539774 24.9599970977251 60.2692927281929 24.9600137506427 60.2691868548751 24.9600268703187 60.2690574815452 24.9600222148393 60.269057156012 24.960022072379 60.2688717942037 24.9599919553914 60.2687868398006 24.9599904829019 60.2687264455386 24.9600038805523 60.2686138129407 24.9600575965459 60.2684967896544 24.9601271892644 60.268443076811 24.9601679968485 60.2683840407139 24.9602224431375 60.2683257694297 24.9602951031251 60.2682267087009 24.9604692936863 60.268138311269 24.9606599960149 60.2680985826342 24.9607756352206 60.2680349998563 24.961022378145 60.2679890281743 24.9612315739205 60.2679379542203 24.9614384106442 60.2678948844551 24.9615634589919 60.2677965144181 24.9617862547306 60.2675676677569 24.9622760202713 60.2674065446428 24.9626014859974 60.2673304652839 24.9627657198417 60.2672575939994 24.9629370939777 60.2671907547889 24.9631047294512 60.2671256698585 24.9632801742311 60.2670596533448 24.9634698509158 60.2669931086581 24.9636754700041 60.2667500414151 24.9645199154332 60.2665558371428 24.9651497632824 60.2664522873321 24.9654235196106 60.2663085706641 24.9658749046673 60.2662248982093 24.9661921876103 60.2661906800554 24.9663377542355 60.2661522685198 24.9665479075506 60.2660736006231 24.9671064719995 60.2660351551788 24.9673068628355 60.2657715790668 24.9683180608736 60.2657497341704 24.9684019109098 60.2656894737591 24.9686330654451 60.265623318732 24.9688417685954 60.2655607520108 24.9689938415945 60.2654367126356 24.9692421260398 60.2653708563603 24.9693594364067 60.2650311770458 24.9699644871271 60.2649105449337 24.9702036941126 60.2648202591293 24.9704339148174 60.2647349037868 24.9706776409878 60.2646899702553 24.9708446681335 60.2646495047064 24.9710343056842 60.2645820453909 24.971413576964 60.2645609324153 24.9716224620645 60.2645529191839 24.9717017263641 60.2645473562411 24.9717567764052 60.2644995691675 24.9723885957808 60.2644837427999 24.9725979299541 60.2644382015583 24.9732000313972 60.2644959761804 24.9733809130417 60.2645442582216 24.9735677697483 60.2645874312309 24.9737694599994 60.2646898207938 24.9743184316436 60.2647719372127 24.9749222266051 60.2648381645226 24.9752976598144 60.2648708617706 24.9754233475178 60.2649016305264 24.9755032707973 60.2649754490448 24.9756256230457 60.2650679125106 24.9757308242804 60.2651568130288 24.9758026375789 60.2652748511411 24.9758144191244 60.2653790875554 24.9757834106477 60.2654908495845 24.9757181653902 60.2655990085655 24.9756357501672 60.2657119438393 24.9755732337356 60.2658099705662 24.9755378890255 60.2660155108481 24.9755109252651 60.2661171491395 24.9755115699136 60.2662364440348 24.9755539358085 60.2663397457569 24.9756153696367 60.2664477287019 24.9756957693869 60.2665633773856 24.9757976628485 60.2666714007699 24.9759137144057 60.2667733973147 24.976050388332 60.2668647199841 24.9761927304934 60.2669527159961 24.9763649117832 60.2670493087071 24.9765931712751 60.2672414630874 24.9771772219667 60.2673226605931 24.9773778334993 60.26744716511 24.9775741456477 60.267599452429 24.9778691077252 60.2676667782354 24.9779940454834 60.2676670765552 24.977994171715 60.2677485193307 24.9780788599629 60.2677967802249 24.9781008144764 60.267847411782 24.9781044520178 60.2679392032405 24.9780801466158 60.2679871326734 24.9780602836227 60.268056794183 24.9780071493326 60.2681068808501 24.9779584954572 60.2681951454965 24.9778636218138 60.2682365241955 24.9778170237326 60.2684046693937 24.9775774915424 60.2685572983761 24.9773382638561 60.2686067117118 24.977221846894 60.2686334709577 24.977129465443 60.268684316086 24.9769555348309 60.2687359110104 24.9768054783138 60.2688061299139 24.9766203875861 60.2688061299139 24.9766203875861 60.2689000586486 24.9764045405258 60.2689744692327 24.9762570144512 60.2690828633579 24.9760857092186 60.2692023123696 24.9759166670748 60.2693249138669 24.9757605919909 60.2694317241953 24.975655106363 60.2695012092123 24.975598702708 60.2695834347517 24.9755490695213 60.2696391518875 24.9755251404256 60.2697100568579 24.9755135625345 60.2698131208022 24.9755087487443 60.2698601686338 24.9755117902318 60.2699224200465 24.975527037474 60.2699975592203 24.9755663685836 60.2700693470191 24.9756368445435 60.2700765893279 24.9756464684728 60.2701422214246 24.975731464956 60.2701554849245 24.9757483834964 60.2701994800489 24.9757945036486 60.2703021649873 24.9758661635179 60.2703102154728 24.9758675285342 60.2705565355513 24.976036943247 60.2706879886741 24.9761351074918 60.2708164420023 24.9762438911313 60.2709427225788 24.9763727724175 60.2713170381712 24.9768131528522 60.2714471664264 24.976952324545 60.2715770353289 24.977070356929 60.2716882700202 24.9771190192469 60.2719690431505 24.9772035949037 60.2724124565752 24.9771973171055 60.2727918768525 24.9771640324231 60.273016423838 24.9771583759324 60.2732509732123 24.9771961345576 60.2736513138486 24.9773681614428 60.2738953647419 24.9774606896688 60.2738956636124 24.9774608520517 60.2739564452356 24.977498149095 60.2739567438309 24.9774982934118 60.2740396240469 24.9775906655678 60.2741579203416 24.9777715781773 60.27426585723 24.9779705644387 60.2744397022612 24.978341838766 60.2745354606807 24.9785680732499 60.2747541867907 24.9790002044725 60.2748256145354 24.9791262385754 60.2749247334938 24.9792505467757 60.2749996239425 24.9793196561438 60.2750649161089 24.9794019627045 60.275169148748 24.9795701734769 60.2752416617166 24.979729201749 60.2753349719119 24.9799942250858 60.2754056636622 24.9801587384794 60.2754654959488 24.9802647676774 60.2755289426739 24.9803580598678 60.2755966469198 24.9804383764257 60.2755969457868 24.980438538844 60.275740445257 24.9805636440695 60.2758232429596 24.9806235718327 60.2759450933012 24.9807402114169 60.2760091491866 24.9807749457963 60.2760450949817 24.9807750084476 60.2761248166713 24.9807342493697 60.2761857807037 24.9807091868253 60.2765467372747 24.9808042330349 60.2770499648741 24.9807658297217 60.2771656227791 24.9807439956301 60.2772171975065 24.9807441074352 60.2774218987006 24.9808042814082 60.2774593917346 24.9808358080994 60.277489061544 24.9808862283551 60.277578056979 24.9810814749372 60.2777435421735 24.9814594127667 60.2779074671334 24.9818027256219 60.2779964806222 24.9819413308912 60.2780730168536 24.9820390537117 60.278174583338 24.98209587961 60.278232393972 24.9821085769914 60.2782980311788 24.9821055456172 60.2784637073373 24.9820712286294 60.2786777793282 24.9821251384442 60.2788446709608 24.9822228311261 60.2788449611268 24.9822230121986 60.2789168150013 24.9822892306974 60.2790276933547 24.9824310522634 60.2791323099937 24.9826106273152 60.2792228659253 24.9828153598757 60.2793352540168 24.9830956533845 60.2793851913998 24.983249950115 60.2794319902758 24.9834294363974 60.2796492435584 24.9835698688877 60.2797159875346 24.9839047612906 60.2796690813433 24.9845488995478 60.2796887997033 24.9849066193745 60.279778368366 24.9853034508169 60.2798264664118 24.985651667297 60.2798339764696 24.9859478488487 60.2798276272864 24.9861397977955 60.2797961335231 24.9866495601375 60.2797646972584 24.987023991925 60.2797128737241 24.9874928050086 60.2796999671183 24.9882984258916 60.2797044046421 24.9888114032185 60.2797229391057 24.9892488888089 60.2797446493754 24.9895699357357 60.2797664368496 24.9897430459287 60.279799170833 24.9899130608099 60.2798089788841 24.9899516349729 60.2798833754429 24.9902436940714 60.2800113382992 24.990615305976 60.2801986121386 24.9911066541544 60.2803718156416 24.9915312789939 60.2807887619746 24.9924614271617 60.28113865049 24.9931672975907 60.2812135730443 24.9933935947231 60.281282602797 24.993685261014 60.2813201788494 24.9940019533153 60.2813223834911 24.9941776487033 60.2812874022045 24.9946131538892 60.2812779236953 24.9948996822043 60.2812940804006 24.9951673128969 60.2813135895014 24.9953280213122 60.2813233765533 24.9954158890316 60.2813234331491 24.9954166633374 60.2813978825573 24.995642814811 60.2814961277003 24.9958501647733 60.281982722616 24.9964903465319 60.2827908422808 24.9975488208163 60.2830017464768 24.9977201736101 60.2831638212933 24.9978834620199 60.2839413342483 24.9987485882915 60.2840603628083 24.9988799667879 60.284500883873 24.9994473893323 60.2846690152974 24.9996110289942 60.284802805867 24.9997028541857 60.2852473062345 24.9997880176911 60.2854855178033 24.9998232122827 60.2858722784047 24.9999181473975 60.2860073493538 24.9999357650683 60.2861423954979 24.999990505727 60.2861663115342 25.000011838578 60.2863179055837 25.0001467587571 60.2864209476822 25.0003349733769 60.286503237854 25.0005253067806 60.2865477789188 25.0006602194064 60.2865797683245 25.0008091773153 60.2866103054649 25.0010508298288 60.2866216449341 25.0012564424494 60.2866240910176 25.0013008140333 60.2866253771188 25.0014805920644 60.2866183111746 25.0016491029239 60.2865255613714 25.0028173514272 60.2864762605086 25.0036065171775 60.2864453465171 25.0039603522756 60.2864050344484 25.0042895233678 60.2863406646298 25.0046447266179 60.2863026522889 25.0047958547906 60.2862697899432 25.0049029805551 60.2861477950082 25.0052888635722 60.286097368882 25.0054722595708 60.2860754062184 25.0056264058938 60.2860768041323 25.0057189066537 60.2860898781588 25.0057982501362 60.2861718726632 25.0060537743242 60.2861720907389 25.006053941946 60.286425294965 25.0067769910331 60.2864726970522 25.0069000871569 60.2865044550801 25.0069826182816 60.2865464924552 25.007093577188 60.2865706042723 25.0071543770311 60.2866207635432 25.0072846692625 60.2867967206853 25.0076281922907 60.2869313024136 25.0078905307339 60.2869348460487 25.0078974428528 60.286961724154 25.0079498805711 60.2869943998703 25.0079852497707 60.287031384772 25.0080252775399 60.2870779011139 25.008075616135 60.2872376029627 25.0081594292616 60.2874606401984 25.0082879643096 60.287626539785 25.0084377062303 60.2876267575867 25.0084378558006 60.2876668908562 25.008490194275 60.2876671179023 25.0084903613746 60.2877074496343 25.0085643249045 60.2877444379387 25.0086561127725 60.2877737052185 25.0087636936899 60.2877880365366 25.008841355829 60.2878012446594 25.008966322436 60.2878288382775 25.0095285651 60.2878012185354 25.0104468883746 60.2877950146299 25.0105543832472 60.2877749846739 25.01070783758 60.2877463891904 25.0108387097569 60.2877185327117 25.0109295734929 60.2876899490075 25.0110054656281 60.2876580505384 25.0110735265606 60.2874040798736 25.0115350063211 60.2873758423284 25.0115914464878 60.2873556454803 25.0116516314882 60.2873398117416 25.0117242874379 60.2873302103692 25.0118046876467 60.2873292321324 25.0118815429694 60.2873328943246 25.0119425944954 60.2873500483993 25.0120847605449 60.2873728733415 25.0122085638535 60.2874006668266 25.0123276876642 60.2874345085801 25.0124398593716 60.287434708701 25.0124400281319 60.2874623744352 25.0125158141213 60.2874625837999 25.012516000412 60.2878736945643 25.0135964150336 60.2878738949541 25.013596601878 60.28797674956 25.0137555704432 60.2879769583825 25.013755720595 60.2881313954934 25.0139303938957 60.2881392327291 25.0139403571472 60.288215257355 25.0140361522367 60.2885436174839 25.0145577313629 60.2886232555542 25.0147480918382 60.2887346992754 25.0151206978266 60.2888407877559 25.0155280956748 60.2889004082063 25.0158094990788 60.2889692225284 25.0162542941393 60.2889823142586 25.0165355338689 60.2889592154315 25.0172184508751 60.2889363881277 25.0175424458782 60.2889042193086 25.0178905252764 60.2888734717124 25.0181154037027 60.2888626819876 25.0183403580892 60.2888678739062 25.0184957230938 60.2888903784438 25.0186484301512 60.2889221774525 25.0187878021399 60.2890150600137 25.0190451995327 60.2890893698451 25.0192382658068 60.2891728974668 25.0195116459963 60.2892166467659 25.0197261021668 60.2893104278328 25.0205754189883 60.2893181662171 25.0209048760683 60.2892899953331 25.0212234776358 60.2892632515432 25.0214082025829 60.2891992181335 25.0216865448422 60.2891070878713 25.0219713961105 60.288883060602 25.022527593236 60.2887728306773 25.0227611571262 60.2886183521833 25.0230330138871 60.2884621757169 25.0232716822585 60.288306899005 25.0234579737097 60.2881897557776 25.0236513687603 60.2880942693516 25.0238588146223 60.2880056783601 25.0241029481588 60.2879645793515 25.0242309996538 60.2879187645302 25.0244133737204 60.2878552474816 25.0247413454454 60.2876993115312 25.0257672893582 60.2876644851154 25.0259766582942 60.2876288221195 25.0261406326249 60.2875436755541 25.026416171652 60.2874794232424 25.0265783042683 60.287402173254 25.0267107365312 60.2872894009707 25.0268552590101 60.2871931619882 25.0269107906956 60.2870674475875 25.0269610249301 60.2868515551954 25.027084225251 60.2868038625677 25.0271120099162 60.2867267174863 25.0271396697711 60.2865828166667 25.027186367086 60.2865342614796 25.0272141309786 60.2864397459427 25.0272871402366 60.2863870708003 25.027323545993 60.2863318942707 25.0274019813238 60.2863134254084 25.0275360574994 60.2862765745273 25.0276516129694 60.2860971221955 25.0280580729681 60.2859751510857 25.0283768216604 60.2858922980379 25.0285893397523 60.2858692636531 25.0286863866861 60.2858278366524 25.0287926270593 60.2857749315623 25.0288849776674 60.2857151070902 25.029032774068 60.2856782728327 25.0291483246741 60.2855653510279 25.029624372378 60.285523836709 25.0298416329776 60.2854683961366 25.0302299738314 60.2854522058227 25.0303640523961 60.2854332666345 25.0310578485594 60.2854193362443 25.0312335598701 60.2853985760218 25.0313629739707 60.2853686071794 25.0314831369205 60.2852857744427 25.0316725050702 60.285244228139 25.0319175306048 60.2851613713167 25.0321392606464 60.2851107564894 25.0322408546943 60.2850325011208 25.0324579649874 60.2850002501121 25.0325781360497 60.2849632815842 25.0328370291645 60.2849584393476 25.0331238032323 60.2849628769963 25.0333088453318 60.2849810486644 25.0335540422793 60.2850382366088 25.0338132494331 60.2850999279713 25.0340029583425 60.2851000919036 25.0340031113051 60.2851711210975 25.0341883891052 60.2852215578941 25.0342949478178 60.2853039602544 25.0344245877683 60.2853041154801 25.0344247593463 60.2853637802782 25.0344897193642 60.2854257489986 25.0345361802343 60.2855658122055 25.034564422199 60.2857082018873 25.0345556575451 60.2858458739157 25.0345097116877 60.2858460378474 25.0345098646563 60.2859746831768 25.034454800223 60.2861169373392 25.0344320232437 60.286117101271 25.0344321762132 60.2862776908098 25.0344418374868 60.286277845768 25.0344419909958 60.2863994885728 25.0344793892435 60.2864450941505 25.0345034792731 60.2864452493761 25.0345036508574 60.2865081431533 25.0345567873182 60.2865083073524 25.0345569583644 60.2866908772901 25.0347440342645 60.2866910412216 25.0347441872382 60.2868322074236 25.0348973702799 60.2868323713549 25.034897523255 60.2870461106644 25.0351121837016 60.2871434863019 25.0351897376118 60.2872049012169 25.0352607122252 60.2872710802005 25.035389635328 60.2873093401038 25.0354879060047 60.2873507216539 25.035652111441 60.2873642308641 25.0357390231624 60.2873887243167 25.0360415515852 60.2873925890551 25.0361911659332 60.2873910553931 25.0363377211207 60.2873663387495 25.0366938012679 60.2873714470343 25.0367817599251 60.2873993687815 25.0369949320398 60.2874480424549 25.0371829080988 60.2875004347699 25.0373380982243 60.2875580259477 25.0374664559425 60.2876046154777 25.0375517116247 60.2876282010359 25.0375948738984 60.2877294439887 25.0377263871864 60.2878268846137 25.03781149046 60.2878270311285 25.03781168068 60.2878987594367 25.0378549611478 60.2879771482304 25.0378821757043 60.287830890811 25.0380164208696 60.2877250112984 25.0381121536673 60.2872426751258 25.0385536525909 60.2868257964897 25.0389344134946 60.2864783615914 25.0392561198988 60.2864332149539 25.0392977357913 60.2864066887715 25.0393230406681 60.2863979177544 25.0393312180999 60.2858821178945 25.0398108097491 60.285654427962 25.0400226877758 60.2854274142378 25.0402335454913 60.2853116002871 25.0403421051547 60.2851943122545 25.0404652058278 60.2847362854058 25.0408777208078 60.2841368046286 25.0406458362982 60.2840567442434 25.040731755988 60.2836211641686 25.0411992560143 60.2835854957781 25.04123744049 60.2834204833321 25.0414138169838 60.2832871166302 25.0415563546654 60.2831895351318 25.0420688667556 60.2831565251303 25.042255722467 60.2830679474061 25.0422239190704 60.2829467284389 25.0423631751566 60.2828097454282 25.0425181868399 60.2827787836406 25.0425545862251 60.2826353456229 25.0427232045597 60.2825968904158 25.0427691678588 60.2823522215219 25.0430645898046 60.2822218598877 25.0431515150085 60.2821824320274 25.0431778014399 60.282043979491 25.0432916535823 60.2819050661562 25.0434065451923 60.2818881253059 25.0433564414839 60.2817252114117 25.0428854062795 60.2815823017176 25.042471313274 60.2815217420727 25.0422954146275 60.2815106229489 25.0422631238879 60.2811019021095 25.0424905522644 60.2811512473743 25.0426593960251 60.2809356937814 25.0428400205342 60.2806634138854 25.0430688884179 60.2806204429557 25.0431070696041 60.2801755832251 25.0435030386169 60.2798774088809 25.0437331529257 60.2800143141309 25.0441801083362 60.279915077851 25.0443112848265 60.2799010963954 25.0443297723114 60.2798854669349 25.0443504019809 60.2796537813998 25.0446329663114 60.2794613486137 25.0448676055994 60.2793384402018 25.0450484632076 60.2792253905361 25.0451394391827 60.2791624570307 25.0451412785699 60.2788758275152 25.0451497060967 60.2788567630929 25.0451517664276 60.2786364580374 25.0451556380915 60.2785442406222 25.0451571996823 60.2784184109538 25.0457358236519 60.2786721387057 25.0459066792947 60.2788732818299 25.0460429111195 60.2784829270205 25.0463939878062 60.2781797775058 25.0466543823224 60.2781387567163 25.0466896543058 60.277944194316 25.0468603383713 60.2777410485442 25.0470385674239 60.2777328198358 25.0470457858666 60.2777035452801 25.0470785117538 60.2777897243482 25.0475208250619 60.2778044986516 25.0475965542719 60.2779054326 25.0481146372253 60.2780114765067 25.0486309900705 60.2781078995597 25.0491620441035 60.2781985167737 25.0496917649383 60.2782652995559 25.0502114050492 60.278320246113 25.050651125524 60.2779485046418 25.0510944266613 60.2776704963848 25.0514259440803 60.2774079261677 25.051739067164 60.2773367881609 25.0518238681897 60.2770664840208 25.0521461798133 60.2767949340679 25.052468107996 60.2765233650862 25.0527900138107 60.2763829373497 25.0529565123767 60.2760151675672 25.0533924714113 60.2759661242896 25.0540871144477 60.2758579271494 25.0559159188773 60.2758566308931 25.0559378055154 60.2758242710804 25.0563747080638 60.2758058315443 25.056623828398 60.2761310259354 25.0594687341525 60.2761682288552 25.0597878551208 60.2762092237675 25.060139738329 60.2762502264613 25.0604916038346 60.2762912377282 25.0608435058447 60.276332238829 25.0611953912152 60.2763752917046 25.0615648427244 60.2760909436588 25.0618144716044 60.2754365461634 25.0623889159605 60.2753562151771 25.0636037235474 60.2753246230758 25.0640814533591 60.2752811238132 25.0647394052596 60.2752367824626 25.0654051268573 60.2752018913373 25.0659312051885 60.2751686866337 25.0664319919045 60.2751271848379 25.0670576660983 60.2750823184304 25.0677430328989 60.275043988664 25.0683223123338 60.2750327406036 25.0684894190128 60.27506065006 25.0689553304542 60.27509242052 25.0694750314745 60.2751265489219 25.0700322812321 60.27515970017 25.0705706558082 60.2751924508702 25.0711069572441 60.2752308310966 25.0717335828325 60.2752747630156 25.07246505913 60.2753158411425 25.0731431223937 60.2753382783744 25.0735158870791 60.275347580484 25.0735999005468 60.2753619913378 25.0738899877658 60.2753943756762 25.0744100050909 60.2754212897233 25.0748421492569 60.2754540608201 25.0753773361527 60.2754819666054 25.0758310339144 60.2754998391363 25.0760987849457 60.2755190291991 25.0763862247197 60.275549206362 25.0766447542975 60.2754415724193 25.0769287721429 60.2753021467869 25.0772967552388 60.2749737562823 25.0781634162664 60.2749177143481 25.078311283414 60.2746356502433 25.0790554580709 60.2746083637333 25.0791274211938 60.2745865540301 25.0791849759938 60.2745648130442 25.0792416948459 60.2745364258658 25.0793170495498 60.2745265570244 25.0793432524835 60.2741408687811 25.0803608072295 60.2739287848438 25.0809203227611 60.2737653990815 25.081351374044 60.2737324882814 25.0814375866105 60.2734777889863 25.0821100694811 60.2728857277045 25.0836718391742 60.2727857076082 25.0840008964303 60.2726958616063 25.0842209344271 60.2724703815229 25.0847731179298 60.2724420484972 25.0848480799682 60.2722853309141 25.0852628255368 60.2717273216099 25.0867394408183 60.2716795216883 25.0868659303824 60.27167067211 25.0868887963441 60.2712536266664 25.0879930024197 60.2709008064978 25.0880539512271 60.2700185005345 25.088373544542 60.2690086366974 25.0886960592864 60.2688780526717 25.0887445203108 60.2687385796402 25.0887962838034 60.2684426321493 25.0888961002698 60.2684052356441 25.0889087317876 60.2684051710067 25.0889086089975 60.2683682628981 25.0889146127928 60.2683682628981 25.0889146127928 60.267872787877 25.0890883487483 60.2677988436991 25.0891133082299 60.267711907023 25.0890792358858 60.2676848554742 25.089068664028 60.2673677486086 25.0889445288536 60.2672132583515 25.0888833370393 60.2671180681121 25.0888468003505 60.2670960559638 25.0888381586913 60.2670738725306 25.0888294727959 60.2666994013743 25.0886829073715 60.26634590294 25.0885445408968 60.2660775701032 25.0884394998098 60.2660535394542 25.0884291504832 60.2660291296862 25.0884205407673 60.2656646746248 25.0882778835756 60.2655640888214 25.0882390256053 60.2653565091654 25.0881572731064 60.2650480271659 25.0880365206109 60.2647402586742 25.0879160541007 60.2644321836569 25.0877955172907 60.264142055441 25.0876819799749 60.2638209009189 25.0875562993916 60.2637590836451 25.0875321218179 60.2636593794069 25.087494626867 60.2636240977383 25.0874813562383 60.2633447267627 25.0873714085365 60.2631388705141 25.0872989843836 60.26261732307 25.0871017274165 60.2624005773571 25.087020939882 60.2619642744704 25.0868587366828 60.2619202285873 25.0868424721637 60.2619001821206 25.0868350018304 60.2607374571674 25.0864009621903 60.2606202383213 25.0863572120385 60.2606001264621 25.0863744917949 60.26054787822 25.0864191345927 60.2605458109924 25.0864209001774 60.2605455184984 25.0864211703146 60.2605431698334 25.0864233499964 60.2599243657545 25.0869542730586 60.2593013315444 25.087523994684 60.2581483503889 25.0869059034908 60.2566877366527 25.0861229819877 60.2552450851869 25.0853497426843 60.2541426282546 25.0847588856084 60.2541321768171 25.0847553576535 60.2535906797799 25.08446312519 60.2534365640086 25.0843820238007 60.2533381263106 25.0843328012416 60.2532402496667 25.0842838714782 60.2528840454181 25.0840991037752 60.252525461751 25.083913159856 60.2521697875948 25.0837234717863 60.2521348110483 25.0837064872069 60.2519951323162 25.0836387528015 60.251925459997 25.0836049483304 60.251694708217 25.0834929878859 60.2516700970653 25.083481035994 60.2515329882339 25.0834084187032 60.2515182171718 25.0834005720472 60.2511395250278 25.0831973687096 60.2511118576837 25.0831827588282 60.2496974079615 25.0824351942193 60.2487612699395 25.0842805451821 60.248560248199 25.0846770529842 60.24843502797 25.0849284617491 60.2483642194404 25.085067988129 60.2481710701805 25.0854543958079 60.2479426441599 25.0859002083355 60.2479192499304 25.0859458423245 60.2478689226045 25.0860489348468 60.2478472254013 25.0860920483699 60.2476839482154 25.086418212504 60.2476548952802 25.0864756675885 60.2474665248246 25.086848065584 60.2473467629404 25.0870821366317 60.2472733283414 25.0872253120386 60.2471552097081 25.0874650121123 60.2470859452149 25.087605286576 60.2469450675962 25.0878868017807 60.2467546339972 25.0882671271334 60.2466320922585 25.0885116485786 60.2465572723599 25.0886616376721 60.2464169935761 25.0889424763935 60.2463852202394 25.0890056865282 60.2463426900394 25.0890778345643 60.2462608977115 25.0892463854173 60.2460402259151 25.0896914040274 60.2460263033239 25.0897181421641 60.2458511795399 25.0900567576799 60.2458238838306 25.0901097315459 60.2456369056594 25.090479079268 60.245519919249 25.0907079754248 60.2454697987218 25.0908100832678 60.2453094512122 25.0911240323743 60.2451831265947 25.0913775328768 60.2451283977852 25.0916682391538 60.2450998603983 25.0918247895436 60.2450773909733 25.0919542472362 60.245000952669 25.0923855299166 60.2449693616006 25.0925565115814 60.2449422475415 25.0927165549022 60.2448884298908 25.0930152435415 60.2448299708735 25.0933447523284 60.2447985438186 25.0935197334648 60.244740499625 25.0938456932296 60.2447060674131 25.0940353557808 60.244651689694 25.0943427807745 60.2446159734677 25.0945456514896 60.2445642177032 25.0948355963171 60.2444545319593 25.0954366185122 60.2444513444526 25.0954579598311 60.2444501901685 25.0954651451778 60.2444207812714 25.0956420103664 60.2444112058618 25.0956957549364 60.2443191994091 25.0962115361277 60.2442673352272 25.0965023129105 60.2442073310457 25.096838655471 60.2441278520652 25.0972800818999 60.2440484527127 25.0977221519056 60.2439609243449 25.0982137777926 60.2439397065727 25.0983413832628 60.2438754335353 25.0986947862487 60.2438526828688 25.0988188666235 60.2438014008336 25.0991136841787 60.2437608808175 25.0993321970214 60.2437245581259 25.0995365188593 60.2436676086609 25.0998414724419 60.2436468422199 25.0999586794351 60.2435777847042 25.1003533454404 60.2435721979547 25.1003903435767 60.2434872179271 25.1008667941948 60.243397127222 25.1013766173022 60.2433659295505 25.1015294383281 60.2433534797794 25.1016059284185 60.2432749871139 25.1020527300314 60.2431848811578 25.1025636854365 60.2430918635512 25.1030715183355 60.2429986689463 25.1035802979363 60.2429072814147 25.1040905960393 60.2428165435191 25.1045955784491 60.2427211773597 25.1051030113321 60.242605984965 25.1057260507023 60.2425545269334 25.1059976413608 60.2424809513611 25.1064023331819 60.2424473286802 25.1065870262185 60.2423815706634 25.1069474008785 60.2421229013032 25.1083661054537 60.2421158663301 25.1084005825884 60.2419990216832 25.1090455164561 60.241994381692 25.109070967077 60.2419796158421 25.1091478373573 60.2418918118777 25.1096293534885 60.2417801550105 25.110241660723 60.241672455226 25.1108311904185 60.241660513302 25.1108970393015 60.2416170826096 25.1111351462968 60.2414778294463 25.1119009407852 60.241338756927 25.1126652187998 60.2413342500663 25.1126899742381 60.2413295109239 25.1127160798429 60.2411930392745 25.1134614678612 60.2407106983303 25.1160917800496 60.2407103216538 25.1160943487951 60.2400140313638 25.1198655403319 60.2396247328005 25.1219718605678 60.239175072079 25.1244008577791 60.2386346372524 25.1273197920473 60.2382127914243 25.1296058710795 60.2379569404524 25.1295970303929 60.2373066328053 25.1344372400087 60.2372761667798 25.1346639425858 60.2372175528629 25.1350996036229 60.2372454856752 25.13546842584 60.237227940926 25.1358446374292 60.2373527862414 25.1359069763603 60.2376604429818 25.1363028089223 60.2382150163171 25.1367288971935 60.2384852325237 25.1368685867449 60.2388043850918 25.1371085153915 60.2388472579328 25.137128696256 60.2392917481689 25.1373388072003 60.2396280285945 25.1376210729208 60.240133526924 25.1380467964595 60.2406116587462 25.1385782455895 60.2409089041509 25.1389867272505 60.2415293277882 25.1397042936478 60.2420205443341 25.1401259511744 60.242682969817 25.1407347396659 60.2434626086216 25.1417136586051 60.2435845088915 25.1418667271217 60.2436297926278 25.1417108527617 60.2438787731265 25.1416730250154 60.2441522485071 25.1422512274478 60.244717211591 25.1431665168163 60.2450935966408 25.1446804956525 60.2452832632678 25.1451841875325 60.2454691729195 25.1470510605695 60.2454620396308 25.1475823285606 60.2455297514404 25.1483502587797 60.2454571992177 25.1495408012773 60.2454221468661 25.150116226994 60.2455227824556 25.1507419955925 60.2455303307487 25.1507571076755 60.2461345844139 25.1519648459665 60.2461205005703 25.1519828217121 60.2460581134027 25.1520625815737 60.2460289900397 25.1520995623658 60.2458974114728 25.1522677390576 60.2458970707766 25.1522684267425 60.2459357420564 25.152419874338 60.2459495195241 25.1524721438207 60.2462013019711 25.1533905114053 60.2462191008955 25.1534555638458 60.2463093725674 25.1537874401744 60.2464248585884 25.1541002832084 60.2465749683477 25.1546399525373 60.2467563682483 25.1552869957351 60.2473966403838 25.1563254169054 60.2480621918434 25.1574224629945 60.2484562212737 25.1583234152121 60.2485399841347 25.158627252335 60.2485921520667 25.1588205133848 60.2488171663302 25.1598830672448 60.2492114691389 25.1595856039624 60.249513890503 25.1597309825638 60.2497368419901 25.1598521473405 60.2499900489772 25.1596777515182 60.250372307183 25.1594009902776 60.2504032176123 25.1593787460171 60.250749017479 25.159129629673 60.2507228211915 25.1589957386469 60.2509536392984 25.1586324730149 60.2509807835492 25.158326486166 60.2510708370995 25.1573951539712 60.2517752975387 25.1573017149318 60.2521041635324 25.1572576260936 60.2522512544123 25.157237251735 60.2525125247478 25.1572143269215 60.2527494623613 25.1571964016325 60.2527730867535 25.1571934293324 60.2530676703426 25.1571563970561 60.2531356175003 25.1571489094106 60.2531983548675 25.1571420217791 60.2533250039746 25.1571280900625 60.2536082302705 25.1571036401626 60.2538781866798 25.1576941554745 60.2539405151263 25.1576053907483 60.253940873046 25.1576046477666 60.2539910031694 25.1574969965508 60.2539913700627 25.1574962530624 60.254018777485 25.1574028360347 60.2540529041124 25.1573030413665 60.2540532617797 25.1573022803213 60.2541423498577 25.157143337352 60.2541426988005 25.1571425948652 60.2542147761188 25.1570463949546 60.2542691923994 25.1569874396628 60.2543164502158 25.1569543318532 60.2543769414478 25.1568846433269 60.2544111596444 25.1568432142954 60.2544832462427 25.1566073519642 60.2546696810024 25.1560384228748 60.2546700299389 25.1560376803643 60.2547196513054 25.1559652574272 60.2547200089649 25.155964496352 60.25481994624 25.1558864597763 60.2549026692974 25.1557892405286 60.2549478100619 25.1556884603583 60.2549481589963 25.1556877178378 60.2549554825185 25.1555600047814 60.2549303504345 25.1553924250802 60.25490499675 25.1553161952085 60.2548775194139 25.1552325669054 60.254867561029 25.1551053928071 60.2548883733854 25.1550015532363 60.2549136921007 25.1549563573656 60.2549140497543 25.1549555962749 60.2550407238203 25.1548562440657 60.2550576388113 25.1548190028087 60.2550579877408 25.1548182602764 60.2550686834277 25.1546947844762 60.2550936296161 25.1546266752713 60.2550939782934 25.154625914678 60.2551384104533 25.1545659615178 60.2552004706873 25.1545220039073 60.2552221533394 25.1545066326141 60.255225081201 25.1545040460891 60.255230223316 25.1544998710482 60.255277316543 25.1544575509474 60.2553463021168 25.1543955643139 60.2554081987703 25.1544044412899 60.2555257553339 25.1545020296899 60.2555687237529 25.1545777567698 60.2556380254342 25.1546761106545 60.2556694953389 25.1547070868979 60.2557258568018 25.1547157700696 60.2557586174569 25.1546767865877 60.255805996161 25.1546420766742 60.2558388115975 25.1546180180373 60.2558661149593 25.1545980107047 60.2558739120732 25.1545922945343 60.2558864216071 25.154583150348 60.2558937359316 25.1545782384781 60.2561023507421 25.1544404724395 60.2562341074463 25.1543049173681 60.2562984217256 25.1542893681322 60.2563607142703 25.1542537269937 60.2563847315781 25.1542247590794 60.256450053313 25.1541460235465 60.2565469708758 25.1540291634164 60.2566425582528 25.1539813448531 60.2566818951653 25.1539115177204 60.2566746845882 25.1538489747432 60.2566239335149 25.1535779155074 60.2566433464973 25.153463304235 60.2566648731345 25.1534238125792 60.2567287683073 25.1533064783393 60.2567871375528 25.1531993048962 60.2567874772474 25.1531985447539 60.2568334327611 25.1530919076592 60.2568308907534 25.1530028048459 60.2568072912757 25.1528061776289 60.2569804319167 25.1527835529556 60.2569891696931 25.1527460462467 60.2570099032553 25.1525792350187 60.2570150119937 25.1524726392527 60.2570228407659 25.1524066095661 60.2570382179152 25.1523473295428 60.2570664694264 25.1522902878359 60.2570911721984 25.1522796237608 60.2571181899939 25.1522746126925 60.2571956155431 25.1522705918909 60.2572433497821 25.15226146709 60.2572471292953 25.1522600611963 60.2572912282136 25.1522446347913 60.257338155851 25.1522233737838 60.2573813171438 25.1521967221962 60.2573835614828 25.1521947160276 60.2574241129717 25.152159301171 60.2574695348634 25.1521098756819 60.257470245939 25.1521086969557 60.2574996859253 25.1520621965371 60.2575000253619 25.1520614183068 60.2575393791236 25.1519825491797 60.2575397185597 25.1519817709478 60.2575606261161 25.1519262264994 60.2575800763627 25.1518647094404 60.2575937969944 25.1518116123893 60.257601812414 25.1517770733813 60.2576060308985 25.1517588160042 60.2576117064167 25.151711034326 60.257614680387 25.1516859610061 60.2576155767339 25.151627134613 60.257615955782 25.151603400472 60.2576229483456 25.1514928285355 60.2576297437387 25.1514280846605 60.2576475061186 25.1513627584189 60.2576753895389 25.1512999519235 60.2577029076752 25.1512509020137 60.2577268849213 25.1512158781995 60.2577511469486 25.1511716386906 60.2577514774056 25.1511708609514 60.2577717935306 25.1511251088458 60.2577793516766 25.1510893481712 60.2577815214348 25.1510491018416 60.2577765443246 25.15101224082 60.25775900438 25.1509490861316 60.2577494756929 25.1508917331402 60.2577469159689 25.150820160569 60.2577496574907 25.1507326370014 60.257758095545 25.1506717220533 60.2577697053249 25.1506192855009 60.2577738950452 25.1506054214427 60.2577915018528 25.1505450735396 60.2577918320545 25.1505442777335 60.2578068379837 25.1505086931179 60.2578152816452 25.1505016920443 60.2578283294218 25.1504989677363 60.2578448186059 25.1505021582283 60.257865834743 25.1505144013619 60.2578986562504 25.1505726995116 60.2579222756874 25.1506493197619 60.2579598801237 25.1507679321903 60.2579879247874 25.1507953768608 60.2580258881661 25.150737314302 60.2580911204758 25.1506426314932 60.25817805769 25.1505432353864 60.2581984440423 25.150473530161 60.2582004977819 25.150334081165 60.2582120203163 25.1500852556182 60.2582315485831 25.1498560402652 60.2582043697233 25.1493836355072 60.2582036079196 25.1493637789417 60.2581935771015 25.1491023252237 60.2583179372034 25.1490047877584 60.258377141993 25.1488940115464 60.2583629679402 25.1487695940541 60.2582960259642 25.1486140691439 60.2582000390081 25.1485416634872 60.2581166638832 25.1484243367504 60.2580141311871 25.1483166418011 60.2579984143145 25.1482130077834 60.2580215928045 25.1480982478961 60.2580356553994 25.1480330738103 60.2580560133916 25.1478500628639 60.2580672094579 25.1477390883284 60.2580933768524 25.1476583369532 60.2580936985664 25.1476575777377 60.2581516484839 25.1475264651037 60.2581519609708 25.147525688333 60.2581968570992 25.1473975180357 60.258247323059 25.1470551794952 60.2582998066677 25.1468053197015 60.2583379359684 25.146727740475 60.2584090735264 25.1466477344485 60.2584406901697 25.1465970921498 60.2584659286871 25.1465566427904 60.2585256724887 25.1464247926264 60.2585259939433 25.1464240153288 60.2586062213581 25.1462096537218 60.2586797262814 25.1460142878852 60.2589033094588 25.1454383681119 60.2590703984815 25.1450026070185 60.2591885285934 25.1447036906156 60.2592397800341 25.1446275148884 60.2593090685908 25.1445733812425 60.2594561589746 25.1444907494139 60.2597997530947 25.1442977424518 60.2600406903362 25.1441612447863 60.2601908967706 25.1440773120867 60.2602986765479 25.1440204357447 60.2606712400032 25.1442710856235 60.2607495479133 25.1443237705661 60.2613146590508 25.1441399378503 60.2614272582567 25.1440731704124 60.2616134535949 25.1439244176544 60.2619648029251 25.1436084499745 60.262133630215 25.1434418765627 60.2622384503411 25.1433384349312 60.2623184388227 25.1432595191509 60.2624227715339 25.1431565558628 60.2624408545573 25.1431381960102 60.2624984360024 25.1430760765285 60.2625754485686 25.1429956650438 60.2625965077449 25.1429730510779 60.2626784334297 25.1428913845637 60.2627613838169 25.1428200536349 60.2627701882944 25.1428131917252 60.2628123550493 25.1427778484479 60.2628435503608 25.1427511167292 60.2628451733026 25.1427502836128 60.262874907577 25.1427250446215 60.262905183207 25.1426993410629 60.2629258298705 25.142681269234 60.2629388148159 25.1426702115275 60.2629864044006 25.1426462923653 60.2630102076599 25.1426342961243 60.2630776295592 25.1425308898664 60.263096408434 25.1425122006229 60.2631605202926 25.1424694304772 60.2631890386734 25.1424503698825 60.2631976254703 25.1424446408859 60.2632483881041 25.1424138528898 60.26328952975 25.1423906239873 60.2632958302691 25.1423871033963 60.263318572771 25.1423776073632 60.2638310729403 25.1421632472642 60.2647660877632 25.1417755296339 60.2647873538987 25.1417670745678 60.2648135592412 25.1417566581795 60.2648481769219 25.1417434507909 60.2655785564104 25.1419111075342 60.2655899034439 25.141969127907 60.265816795722 25.1431296728731 60.2660883352349 25.1427738681531 60.2668569167088 25.142419349052 60.2669304019262 25.1423821348947 60.2671679086268 25.1423497777013 60.2674263653533 25.1424404364778 60.2677759018384 25.1422647222057 60.2680279289745 25.1420999750561 60.2682933420528 25.1419149763301 60.2687469745279 25.1420122671806 60.2690978759246 25.1420246235836 60.2697751310763 25.142540945937 60.2750312357673 25.1660938736008 60.2755305021876 25.1683324789639 60.2757524265381 25.169327601285 60.2762395668314 25.1715048977412 60.2764310827533 25.1723850986011 60.2770925022953 25.1729130411151 60.2782500670003 25.1738007532041 60.2783288399024 25.174830302568 60.2782002384052 25.1756558872516 60.2779930722278 25.1768431421176 60.2778979740136 25.1777490775338 60.2778246299709 25.178251574383 60.2778184251347 25.17876503857 60.2784871139244 25.1815947823964 60.2786918198186 25.182469864753 60.2790601835845 25.1840791369105 60.2798804492065 25.1876570693219 60.2800509801897 25.1877489681341 60.2802454064418 25.1878142794755 60.2802801437698 25.1878292859114 60.283765687254 25.1894249743005 60.2841000146334 25.1895847112884 60.285681338778 25.190249963766 + + + + + + Helsinki + + municipality + + + + + + + + + 60.285681338778 25.190249963766 60.2841000146334 25.1895847112884 60.283765687254 25.1894249743005 60.2802801437698 25.1878292859114 60.2802454064418 25.1878142794755 60.2800509801897 25.1877489681341 60.2798804492065 25.1876570693219 60.2790601835845 25.1840791369105 60.2786918198186 25.182469864753 60.2784871139244 25.1815947823964 60.2778184251347 25.17876503857 60.2778246299709 25.178251574383 60.2778979740136 25.1777490775338 60.2779930722278 25.1768431421176 60.2782002384052 25.1756558872516 60.2783288399024 25.174830302568 60.2782500670003 25.1738007532041 60.2770925022953 25.1729130411151 60.2764310827533 25.1723850986011 60.2762395668314 25.1715048977412 60.2757524265381 25.169327601285 60.2755305021876 25.1683324789639 60.2750312357673 25.1660938736008 60.2697751310763 25.142540945937 60.2690978759246 25.1420246235836 60.2687469745279 25.1420122671806 60.2682933420528 25.1419149763301 60.2680279289745 25.1420999750561 60.2677759018384 25.1422647222057 60.2674263653533 25.1424404364778 60.2671679086268 25.1423497777013 60.2669304019262 25.1423821348947 60.2668569167088 25.142419349052 60.2660883352349 25.1427738681531 60.265816795722 25.1431296728731 60.2655899034439 25.141969127907 60.2655785564104 25.1419111075342 60.2648481769219 25.1417434507909 60.2648135592412 25.1417566581795 60.2647873538987 25.1417670745678 60.2647660877632 25.1417755296339 60.2638310729403 25.1421632472642 60.263318572771 25.1423776073632 60.2632958302691 25.1423871033963 60.26328952975 25.1423906239873 60.2632483881041 25.1424138528898 60.2631976254703 25.1424446408859 60.2631890386734 25.1424503698825 60.2631605202926 25.1424694304772 60.263096408434 25.1425122006229 60.2630776295592 25.1425308898664 60.2630102076599 25.1426342961243 60.2629864044006 25.1426462923653 60.2629388148159 25.1426702115275 60.2629258298705 25.142681269234 60.262905183207 25.1426993410629 60.262874907577 25.1427250446215 60.2628451733026 25.1427502836128 60.2628435503608 25.1427511167292 60.2628123550493 25.1427778484479 60.2627701882944 25.1428131917252 60.2627613838169 25.1428200536349 60.2626784334297 25.1428913845637 60.2625965077449 25.1429730510779 60.2625754485686 25.1429956650438 60.2624984360024 25.1430760765285 60.2624408545573 25.1431381960102 60.2624227715339 25.1431565558628 60.2623184388227 25.1432595191509 60.2622384503411 25.1433384349312 60.262133630215 25.1434418765627 60.2619648029251 25.1436084499745 60.2616134535949 25.1439244176544 60.2614272582567 25.1440731704124 60.2613146590508 25.1441399378503 60.2607495479133 25.1443237705661 60.2606712400032 25.1442710856235 60.2602986765479 25.1440204357447 60.2601908967706 25.1440773120867 60.2600406903362 25.1441612447863 60.2597997530947 25.1442977424518 60.2594561589746 25.1444907494139 60.2593090685908 25.1445733812425 60.2592397800341 25.1446275148884 60.2591885285934 25.1447036906156 60.2590703984815 25.1450026070185 60.2589033094588 25.1454383681119 60.2586797262814 25.1460142878852 60.2586062213581 25.1462096537218 60.2585259939433 25.1464240153288 60.2585256724887 25.1464247926264 60.2584659286871 25.1465566427904 60.2584406901697 25.1465970921498 60.2584090735264 25.1466477344485 60.2583379359684 25.146727740475 60.2582998066677 25.1468053197015 60.258247323059 25.1470551794952 60.2581968570992 25.1473975180357 60.2581519609708 25.147525688333 60.2581516484839 25.1475264651037 60.2580936985664 25.1476575777377 60.2580933768524 25.1476583369532 60.2580672094579 25.1477390883284 60.2580560133916 25.1478500628639 60.2580356553994 25.1480330738103 60.2580215928045 25.1480982478961 60.2579984143145 25.1482130077834 60.2580141311871 25.1483166418011 60.2581166638832 25.1484243367504 60.2582000390081 25.1485416634872 60.2582960259642 25.1486140691439 60.2583629679402 25.1487695940541 60.258377141993 25.1488940115464 60.2583179372034 25.1490047877584 60.2581935771015 25.1491023252237 60.2582036079196 25.1493637789417 60.2582043697233 25.1493836355072 60.2582315485831 25.1498560402652 60.2582120203163 25.1500852556182 60.2582004977819 25.150334081165 60.2581984440423 25.150473530161 60.25817805769 25.1505432353864 60.2580911204758 25.1506426314932 60.2580258881661 25.150737314302 60.2579879247874 25.1507953768608 60.2579598801237 25.1507679321903 60.2579222756874 25.1506493197619 60.2578986562504 25.1505726995116 60.257865834743 25.1505144013619 60.2578448186059 25.1505021582283 60.2578283294218 25.1504989677363 60.2578152816452 25.1505016920443 60.2578068379837 25.1505086931179 60.2577918320545 25.1505442777335 60.2577915018528 25.1505450735396 60.2577738950452 25.1506054214427 60.2577697053249 25.1506192855009 60.257758095545 25.1506717220533 60.2577496574907 25.1507326370014 60.2577469159689 25.150820160569 60.2577494756929 25.1508917331402 60.25775900438 25.1509490861316 60.2577765443246 25.15101224082 60.2577815214348 25.1510491018416 60.2577793516766 25.1510893481712 60.2577717935306 25.1511251088458 60.2577514774056 25.1511708609514 60.2577511469486 25.1511716386906 60.2577268849213 25.1512158781995 60.2577029076752 25.1512509020137 60.2576753895389 25.1512999519235 60.2576475061186 25.1513627584189 60.2576297437387 25.1514280846605 60.2576229483456 25.1514928285355 60.257615955782 25.151603400472 60.2576155767339 25.151627134613 60.257614680387 25.1516859610061 60.2576117064167 25.151711034326 60.2576060308985 25.1517588160042 60.257601812414 25.1517770733813 60.2575937969944 25.1518116123893 60.2575800763627 25.1518647094404 60.2575606261161 25.1519262264994 60.2575397185597 25.1519817709478 60.2575393791236 25.1519825491797 60.2575000253619 25.1520614183068 60.2574996859253 25.1520621965371 60.257470245939 25.1521086969557 60.2574695348634 25.1521098756819 60.2574241129717 25.152159301171 60.2573835614828 25.1521947160276 60.2573813171438 25.1521967221962 60.257338155851 25.1522233737838 60.2572912282136 25.1522446347913 60.2572471292953 25.1522600611963 60.2572433497821 25.15226146709 60.2571956155431 25.1522705918909 60.2571181899939 25.1522746126925 60.2570911721984 25.1522796237608 60.2570664694264 25.1522902878359 60.2570382179152 25.1523473295428 60.2570228407659 25.1524066095661 60.2570150119937 25.1524726392527 60.2570099032553 25.1525792350187 60.2569891696931 25.1527460462467 60.2569804319167 25.1527835529556 60.2568072912757 25.1528061776289 60.2568308907534 25.1530028048459 60.2568334327611 25.1530919076592 60.2567874772474 25.1531985447539 60.2567871375528 25.1531993048962 60.2567287683073 25.1533064783393 60.2566648731345 25.1534238125792 60.2566433464973 25.153463304235 60.2566239335149 25.1535779155074 60.2566746845882 25.1538489747432 60.2566818951653 25.1539115177204 60.2566425582528 25.1539813448531 60.2565469708758 25.1540291634164 60.256450053313 25.1541460235465 60.2563847315781 25.1542247590794 60.2563607142703 25.1542537269937 60.2562984217256 25.1542893681322 60.2562341074463 25.1543049173681 60.2561023507421 25.1544404724395 60.2558937359316 25.1545782384781 60.2558864216071 25.154583150348 60.2558739120732 25.1545922945343 60.2558661149593 25.1545980107047 60.2558388115975 25.1546180180373 60.255805996161 25.1546420766742 60.2557586174569 25.1546767865877 60.2557258568018 25.1547157700696 60.2556694953389 25.1547070868979 60.2556380254342 25.1546761106545 60.2555687237529 25.1545777567698 60.2555257553339 25.1545020296899 60.2554081987703 25.1544044412899 60.2553463021168 25.1543955643139 60.255277316543 25.1544575509474 60.255230223316 25.1544998710482 60.255225081201 25.1545040460891 60.2552221533394 25.1545066326141 60.2552004706873 25.1545220039073 60.2551384104533 25.1545659615178 60.2550939782934 25.154625914678 60.2550936296161 25.1546266752713 60.2550686834277 25.1546947844762 60.2550579877408 25.1548182602764 60.2550576388113 25.1548190028087 60.2550407238203 25.1548562440657 60.2549140497543 25.1549555962749 60.2549136921007 25.1549563573656 60.2548883733854 25.1550015532363 60.254867561029 25.1551053928071 60.2548775194139 25.1552325669054 60.25490499675 25.1553161952085 60.2549303504345 25.1553924250802 60.2549554825185 25.1555600047814 60.2549481589963 25.1556877178378 60.2549478100619 25.1556884603583 60.2549026692974 25.1557892405286 60.25481994624 25.1558864597763 60.2547200089649 25.155964496352 60.2547196513054 25.1559652574272 60.2546700299389 25.1560376803643 60.2546696810024 25.1560384228748 60.2544832462427 25.1566073519642 60.2544111596444 25.1568432142954 60.2543769414478 25.1568846433269 60.2543164502158 25.1569543318532 60.2542691923994 25.1569874396628 60.2542147761188 25.1570463949546 60.2541426988005 25.1571425948652 60.2541423498577 25.157143337352 60.2540532617797 25.1573022803213 60.2540529041124 25.1573030413665 60.254018777485 25.1574028360347 60.2539913700627 25.1574962530624 60.2539910031694 25.1574969965508 60.253940873046 25.1576046477666 60.2539405151263 25.1576053907483 60.2538781866798 25.1576941554745 60.2536082302705 25.1571036401626 60.2533250039746 25.1571280900625 60.2531983548675 25.1571420217791 60.2531356175003 25.1571489094106 60.2530676703426 25.1571563970561 60.2527730867535 25.1571934293324 60.2527494623613 25.1571964016325 60.2525125247478 25.1572143269215 60.2522512544123 25.157237251735 60.2521041635324 25.1572576260936 60.2517752975387 25.1573017149318 60.2510708370995 25.1573951539712 60.2509807835492 25.158326486166 60.2509536392984 25.1586324730149 60.2507228211915 25.1589957386469 60.250749017479 25.159129629673 60.2504032176123 25.1593787460171 60.250372307183 25.1594009902776 60.2499900489772 25.1596777515182 60.2497368419901 25.1598521473405 60.249513890503 25.1597309825638 60.2492114691389 25.1595856039624 60.2488171663302 25.1598830672448 60.2485921520667 25.1588205133848 60.2485399841347 25.158627252335 60.2484562212737 25.1583234152121 60.2480621918434 25.1574224629945 60.2473966403838 25.1563254169054 60.2467563682483 25.1552869957351 60.2465749683477 25.1546399525373 60.2464248585884 25.1541002832084 60.2463093725674 25.1537874401744 60.2462191008955 25.1534555638458 60.2462013019711 25.1533905114053 60.2459495195241 25.1524721438207 60.2459357420564 25.152419874338 60.2458970707766 25.1522684267425 60.2458974114728 25.1522677390576 60.2460289900397 25.1520995623658 60.2460581134027 25.1520625815737 60.2461205005703 25.1519828217121 60.2461345844139 25.1519648459665 60.2455303307487 25.1507571076755 60.2455227824556 25.1507419955925 60.2454221468661 25.150116226994 60.2454571992177 25.1495408012773 60.2455297514404 25.1483502587797 60.2454620396308 25.1475823285606 60.2454691729195 25.1470510605695 60.2452832632678 25.1451841875325 60.2450935966408 25.1446804956525 60.244717211591 25.1431665168163 60.2441522485071 25.1422512274478 60.2438787731265 25.1416730250154 60.2436297926278 25.1417108527617 60.2435845088915 25.1418667271217 60.2434626086216 25.1417136586051 60.242682969817 25.1407347396659 60.2420205443341 25.1401259511744 60.2415293277882 25.1397042936478 60.2409089041509 25.1389867272505 60.2406116587462 25.1385782455895 60.240133526924 25.1380467964595 60.2396280285945 25.1376210729208 60.2392917481689 25.1373388072003 60.2388472579328 25.137128696256 60.2388043850918 25.1371085153915 60.2384852325237 25.1368685867449 60.2382150163171 25.1367288971935 60.2376604429818 25.1363028089223 60.2373527862414 25.1359069763603 60.237227940926 25.1358446374292 60.2372454856752 25.13546842584 60.2372175528629 25.1350996036229 60.2372761667798 25.1346639425858 60.2373066328053 25.1344372400087 60.2379569404524 25.1295970303929 60.2382127914243 25.1296058710795 60.2386346372524 25.1273197920473 60.239175072079 25.1244008577791 60.2396247328005 25.1219718605678 60.2400140313638 25.1198655403319 60.2407103216538 25.1160943487951 60.2407106983303 25.1160917800496 60.2411930392745 25.1134614678612 60.2413295109239 25.1127160798429 60.2413342500663 25.1126899742381 60.241338756927 25.1126652187998 60.2414778294463 25.1119009407852 60.2416170826096 25.1111351462968 60.241660513302 25.1108970393015 60.241672455226 25.1108311904185 60.2417801550105 25.110241660723 60.2418918118777 25.1096293534885 60.2419796158421 25.1091478373573 60.241994381692 25.109070967077 60.2419990216832 25.1090455164561 60.2421158663301 25.1084005825884 60.2421229013032 25.1083661054537 60.2423815706634 25.1069474008785 60.2424473286802 25.1065870262185 60.2424809513611 25.1064023331819 60.2425545269334 25.1059976413608 60.242605984965 25.1057260507023 60.2427211773597 25.1051030113321 60.2428165435191 25.1045955784491 60.2429072814147 25.1040905960393 60.2429986689463 25.1035802979363 60.2430918635512 25.1030715183355 60.2431848811578 25.1025636854365 60.2432749871139 25.1020527300314 60.2433534797794 25.1016059284185 60.2433659295505 25.1015294383281 60.243397127222 25.1013766173022 60.2434872179271 25.1008667941948 60.2435721979547 25.1003903435767 60.2435777847042 25.1003533454404 60.2436468422199 25.0999586794351 60.2436676086609 25.0998414724419 60.2437245581259 25.0995365188593 60.2437608808175 25.0993321970214 60.2438014008336 25.0991136841787 60.2438526828688 25.0988188666235 60.2438754335353 25.0986947862487 60.2439397065727 25.0983413832628 60.2439609243449 25.0982137777926 60.2440484527127 25.0977221519056 60.2441278520652 25.0972800818999 60.2442073310457 25.096838655471 60.2442673352272 25.0965023129105 60.2443191994091 25.0962115361277 60.2444112058618 25.0956957549364 60.2444207812714 25.0956420103664 60.2444501901685 25.0954651451778 60.2444513444526 25.0954579598311 60.2444545319593 25.0954366185122 60.2445642177032 25.0948355963171 60.2446159734677 25.0945456514896 60.244651689694 25.0943427807745 60.2447060674131 25.0940353557808 60.244740499625 25.0938456932296 60.2447985438186 25.0935197334648 60.2448299708735 25.0933447523284 60.2448884298908 25.0930152435415 60.2449422475415 25.0927165549022 60.2449693616006 25.0925565115814 60.245000952669 25.0923855299166 60.2450773909733 25.0919542472362 60.2450998603983 25.0918247895436 60.2451283977852 25.0916682391538 60.2451831265947 25.0913775328768 60.2453094512122 25.0911240323743 60.2454697987218 25.0908100832678 60.245519919249 25.0907079754248 60.2456369056594 25.090479079268 60.2458238838306 25.0901097315459 60.2458511795399 25.0900567576799 60.2460263033239 25.0897181421641 60.2460402259151 25.0896914040274 60.2462608977115 25.0892463854173 60.2463426900394 25.0890778345643 60.2463852202394 25.0890056865282 60.2464169935761 25.0889424763935 60.2465572723599 25.0886616376721 60.2466320922585 25.0885116485786 60.2467546339972 25.0882671271334 60.2469450675962 25.0878868017807 60.2470859452149 25.087605286576 60.2471552097081 25.0874650121123 60.2472733283414 25.0872253120386 60.2473467629404 25.0870821366317 60.2474665248246 25.086848065584 60.2476548952802 25.0864756675885 60.2476839482154 25.086418212504 60.2478472254013 25.0860920483699 60.2478689226045 25.0860489348468 60.2479192499304 25.0859458423245 60.2479426441599 25.0859002083355 60.2481710701805 25.0854543958079 60.2483642194404 25.085067988129 60.24843502797 25.0849284617491 60.248560248199 25.0846770529842 60.2487612699395 25.0842805451821 60.2496974079615 25.0824351942193 60.2511118576837 25.0831827588282 60.2511395250278 25.0831973687096 60.2515182171718 25.0834005720472 60.2515329882339 25.0834084187032 60.2516700970653 25.083481035994 60.251694708217 25.0834929878859 60.251925459997 25.0836049483304 60.2519951323162 25.0836387528015 60.2521348110483 25.0837064872069 60.2521697875948 25.0837234717863 60.252525461751 25.083913159856 60.2528840454181 25.0840991037752 60.2532402496667 25.0842838714782 60.2533381263106 25.0843328012416 60.2534365640086 25.0843820238007 60.2535906797799 25.08446312519 60.2541321768171 25.0847553576535 60.2541426282546 25.0847588856084 60.2552450851869 25.0853497426843 60.2566877366527 25.0861229819877 60.2581483503889 25.0869059034908 60.2593013315444 25.087523994684 60.2599243657545 25.0869542730586 60.2605431698334 25.0864233499964 60.2605455184984 25.0864211703146 60.2605458109924 25.0864209001774 60.26054787822 25.0864191345927 60.2606001264621 25.0863744917949 60.2606202383213 25.0863572120385 60.2607374571674 25.0864009621903 60.2619001821206 25.0868350018304 60.2619202285873 25.0868424721637 60.2619642744704 25.0868587366828 60.2624005773571 25.087020939882 60.26261732307 25.0871017274165 60.2631388705141 25.0872989843836 60.2633447267627 25.0873714085365 60.2636240977383 25.0874813562383 60.2636593794069 25.087494626867 60.2637590836451 25.0875321218179 60.2638209009189 25.0875562993916 60.264142055441 25.0876819799749 60.2644321836569 25.0877955172907 60.2647402586742 25.0879160541007 60.2650480271659 25.0880365206109 60.2653565091654 25.0881572731064 60.2655640888214 25.0882390256053 60.2656646746248 25.0882778835756 60.2660291296862 25.0884205407673 60.2660535394542 25.0884291504832 60.2660775701032 25.0884394998098 60.26634590294 25.0885445408968 60.2666994013743 25.0886829073715 60.2670738725306 25.0888294727959 60.2670960559638 25.0888381586913 60.2671180681121 25.0888468003505 60.2672132583515 25.0888833370393 60.2673677486086 25.0889445288536 60.2676848554742 25.089068664028 60.267711907023 25.0890792358858 60.2677988436991 25.0891133082299 60.267872787877 25.0890883487483 60.2683682628981 25.0889146127928 60.2683682628981 25.0889146127928 60.2684051710067 25.0889086089975 60.2684052356441 25.0889087317876 60.2684426321493 25.0888961002698 60.2687385796402 25.0887962838034 60.2688780526717 25.0887445203108 60.2690086366974 25.0886960592864 60.2700185005345 25.088373544542 60.2709008064978 25.0880539512271 60.2712536266664 25.0879930024197 60.27167067211 25.0868887963441 60.2716795216883 25.0868659303824 60.2717273216099 25.0867394408183 60.2722853309141 25.0852628255368 60.2724420484972 25.0848480799682 60.2724703815229 25.0847731179298 60.2726958616063 25.0842209344271 60.2727857076082 25.0840008964303 60.2728857277045 25.0836718391742 60.2734777889863 25.0821100694811 60.2737324882814 25.0814375866105 60.2737653990815 25.081351374044 60.2739287848438 25.0809203227611 60.2741408687811 25.0803608072295 60.2745265570244 25.0793432524835 60.2745364258658 25.0793170495498 60.2745648130442 25.0792416948459 60.2745865540301 25.0791849759938 60.2746083637333 25.0791274211938 60.2746356502433 25.0790554580709 60.2749177143481 25.078311283414 60.2749737562823 25.0781634162664 60.2753021467869 25.0772967552388 60.2754415724193 25.0769287721429 60.275549206362 25.0766447542975 60.2755190291991 25.0763862247197 60.2754998391363 25.0760987849457 60.2754819666054 25.0758310339144 60.2754540608201 25.0753773361527 60.2754212897233 25.0748421492569 60.2753943756762 25.0744100050909 60.2753619913378 25.0738899877658 60.275347580484 25.0735999005468 60.2753382783744 25.0735158870791 60.2753158411425 25.0731431223937 60.2752747630156 25.07246505913 60.2752308310966 25.0717335828325 60.2751924508702 25.0711069572441 60.27515970017 25.0705706558082 60.2751265489219 25.0700322812321 60.27509242052 25.0694750314745 60.27506065006 25.0689553304542 60.2750327406036 25.0684894190128 60.275043988664 25.0683223123338 60.2750823184304 25.0677430328989 60.2751271848379 25.0670576660983 60.2751686866337 25.0664319919045 60.2752018913373 25.0659312051885 60.2752367824626 25.0654051268573 60.2752811238132 25.0647394052596 60.2753246230758 25.0640814533591 60.2753562151771 25.0636037235474 60.2754365461634 25.0623889159605 60.2760909436588 25.0618144716044 60.2763752917046 25.0615648427244 60.276332238829 25.0611953912152 60.2762912377282 25.0608435058447 60.2762502264613 25.0604916038346 60.2762092237675 25.060139738329 60.2761682288552 25.0597878551208 60.2761310259354 25.0594687341525 60.2758058315443 25.056623828398 60.2758242710804 25.0563747080638 60.2758566308931 25.0559378055154 60.2758579271494 25.0559159188773 60.2759661242896 25.0540871144477 60.2760151675672 25.0533924714113 60.2763829373497 25.0529565123767 60.2765233650862 25.0527900138107 60.2767949340679 25.052468107996 60.2770664840208 25.0521461798133 60.2773367881609 25.0518238681897 60.2774079261677 25.051739067164 60.2776704963848 25.0514259440803 60.2779485046418 25.0510944266613 60.278320246113 25.050651125524 60.2782652995559 25.0502114050492 60.2781985167737 25.0496917649383 60.2781078995597 25.0491620441035 60.2780114765067 25.0486309900705 60.2779054326 25.0481146372253 60.2778044986516 25.0475965542719 60.2777897243482 25.0475208250619 60.2777035452801 25.0470785117538 60.2777328198358 25.0470457858666 60.2777410485442 25.0470385674239 60.277944194316 25.0468603383713 60.2781387567163 25.0466896543058 60.2781797775058 25.0466543823224 60.2784829270205 25.0463939878062 60.2788732818299 25.0460429111195 60.2786721387057 25.0459066792947 60.2784184109538 25.0457358236519 60.2785442406222 25.0451571996823 60.2786364580374 25.0451556380915 60.2788567630929 25.0451517664276 60.2788758275152 25.0451497060967 60.2791624570307 25.0451412785699 60.2792253905361 25.0451394391827 60.2793384402018 25.0450484632076 60.2794613486137 25.0448676055994 60.2796537813998 25.0446329663114 60.2798854669349 25.0443504019809 60.2799010963954 25.0443297723114 60.279915077851 25.0443112848265 60.2800143141309 25.0441801083362 60.2798774088809 25.0437331529257 60.2801755832251 25.0435030386169 60.2806204429557 25.0431070696041 60.2806634138854 25.0430688884179 60.2809356937814 25.0428400205342 60.2811512473743 25.0426593960251 60.2811019021095 25.0424905522644 60.2815106229489 25.0422631238879 60.2815217420727 25.0422954146275 60.2815823017176 25.042471313274 60.2817252114117 25.0428854062795 60.2818881253059 25.0433564414839 60.2819050661562 25.0434065451923 60.282043979491 25.0432916535823 60.2821824320274 25.0431778014399 60.2822218598877 25.0431515150085 60.2823522215219 25.0430645898046 60.2825968904158 25.0427691678588 60.2826353456229 25.0427232045597 60.2827787836406 25.0425545862251 60.2828097454282 25.0425181868399 60.2829467284389 25.0423631751566 60.2830679474061 25.0422239190704 60.2831565251303 25.042255722467 60.2831895351318 25.0420688667556 60.2832871166302 25.0415563546654 60.2834204833321 25.0414138169838 60.2835854957781 25.04123744049 60.2836211641686 25.0411992560143 60.2840567442434 25.040731755988 60.2841368046286 25.0406458362982 60.2847362854058 25.0408777208078 60.2851943122545 25.0404652058278 60.2853116002871 25.0403421051547 60.2854274142378 25.0402335454913 60.285654427962 25.0400226877758 60.2858821178945 25.0398108097491 60.2863979177544 25.0393312180999 60.2864066887715 25.0393230406681 60.2864332149539 25.0392977357913 60.2864783615914 25.0392561198988 60.2868257964897 25.0389344134946 60.2872426751258 25.0385536525909 60.2877250112984 25.0381121536673 60.287830890811 25.0380164208696 60.2879771482304 25.0378821757043 60.2878987594367 25.0378549611478 60.2878270311285 25.03781168068 60.2878268846137 25.03781149046 60.2877294439887 25.0377263871864 60.2876282010359 25.0375948738984 60.2876046154777 25.0375517116247 60.2875580259477 25.0374664559425 60.2875004347699 25.0373380982243 60.2874480424549 25.0371829080988 60.2873993687815 25.0369949320398 60.2873714470343 25.0367817599251 60.2873663387495 25.0366938012679 60.2873910553931 25.0363377211207 60.2873925890551 25.0361911659332 60.2873887243167 25.0360415515852 60.2873642308641 25.0357390231624 60.2873507216539 25.035652111441 60.2873093401038 25.0354879060047 60.2872710802005 25.035389635328 60.2872049012169 25.0352607122252 60.2871434863019 25.0351897376118 60.2870461106644 25.0351121837016 60.2868323713549 25.034897523255 60.2868322074236 25.0348973702799 60.2866910412216 25.0347441872382 60.2866908772901 25.0347440342645 60.2865083073524 25.0345569583644 60.2865081431533 25.0345567873182 60.2864452493761 25.0345036508574 60.2864450941505 25.0345034792731 60.2863994885728 25.0344793892435 60.286277845768 25.0344419909958 60.2862776908098 25.0344418374868 60.286117101271 25.0344321762132 60.2861169373392 25.0344320232437 60.2859746831768 25.034454800223 60.2858460378474 25.0345098646563 60.2858458739157 25.0345097116877 60.2857082018873 25.0345556575451 60.2855658122055 25.034564422199 60.2854257489986 25.0345361802343 60.2853637802782 25.0344897193642 60.2853041154801 25.0344247593463 60.2853039602544 25.0344245877683 60.2852215578941 25.0342949478178 60.2851711210975 25.0341883891052 60.2851000919036 25.0340031113051 60.2850999279713 25.0340029583425 60.2850382366088 25.0338132494331 60.2849810486644 25.0335540422793 60.2849628769963 25.0333088453318 60.2849584393476 25.0331238032323 60.2849632815842 25.0328370291645 60.2850002501121 25.0325781360497 60.2850325011208 25.0324579649874 60.2851107564894 25.0322408546943 60.2851613713167 25.0321392606464 60.285244228139 25.0319175306048 60.2852857744427 25.0316725050702 60.2853686071794 25.0314831369205 60.2853985760218 25.0313629739707 60.2854193362443 25.0312335598701 60.2854332666345 25.0310578485594 60.2854522058227 25.0303640523961 60.2854683961366 25.0302299738314 60.285523836709 25.0298416329776 60.2855653510279 25.029624372378 60.2856782728327 25.0291483246741 60.2857151070902 25.029032774068 60.2857749315623 25.0288849776674 60.2858278366524 25.0287926270593 60.2858692636531 25.0286863866861 60.2858922980379 25.0285893397523 60.2859751510857 25.0283768216604 60.2860971221955 25.0280580729681 60.2862765745273 25.0276516129694 60.2863134254084 25.0275360574994 60.2863318942707 25.0274019813238 60.2863870708003 25.027323545993 60.2864397459427 25.0272871402366 60.2865342614796 25.0272141309786 60.2865828166667 25.027186367086 60.2867267174863 25.0271396697711 60.2868038625677 25.0271120099162 60.2868515551954 25.027084225251 60.2870674475875 25.0269610249301 60.2871931619882 25.0269107906956 60.2872894009707 25.0268552590101 60.287402173254 25.0267107365312 60.2874794232424 25.0265783042683 60.2875436755541 25.026416171652 60.2876288221195 25.0261406326249 60.2876644851154 25.0259766582942 60.2876993115312 25.0257672893582 60.2878552474816 25.0247413454454 60.2879187645302 25.0244133737204 60.2879645793515 25.0242309996538 60.2880056783601 25.0241029481588 60.2880942693516 25.0238588146223 60.2881897557776 25.0236513687603 60.288306899005 25.0234579737097 60.2884621757169 25.0232716822585 60.2886183521833 25.0230330138871 60.2887728306773 25.0227611571262 60.288883060602 25.022527593236 60.2891070878713 25.0219713961105 60.2891992181335 25.0216865448422 60.2892632515432 25.0214082025829 60.2892899953331 25.0212234776358 60.2893181662171 25.0209048760683 60.2893104278328 25.0205754189883 60.2892166467659 25.0197261021668 60.2891728974668 25.0195116459963 60.2890893698451 25.0192382658068 60.2890150600137 25.0190451995327 60.2889221774525 25.0187878021399 60.2888903784438 25.0186484301512 60.2888678739062 25.0184957230938 60.2888626819876 25.0183403580892 60.2888734717124 25.0181154037027 60.2889042193086 25.0178905252764 60.2889363881277 25.0175424458782 60.2889592154315 25.0172184508751 60.2889823142586 25.0165355338689 60.2889692225284 25.0162542941393 60.2889004082063 25.0158094990788 60.2888407877559 25.0155280956748 60.2887346992754 25.0151206978266 60.2886232555542 25.0147480918382 60.2885436174839 25.0145577313629 60.288215257355 25.0140361522367 60.2881392327291 25.0139403571472 60.2881313954934 25.0139303938957 60.2879769583825 25.013755720595 60.28797674956 25.0137555704432 60.2878738949541 25.013596601878 60.2878736945643 25.0135964150336 60.2874625837999 25.012516000412 60.2874623744352 25.0125158141213 60.287434708701 25.0124400281319 60.2874345085801 25.0124398593716 60.2874006668266 25.0123276876642 60.2873728733415 25.0122085638535 60.2873500483993 25.0120847605449 60.2873328943246 25.0119425944954 60.2873292321324 25.0118815429694 60.2873302103692 25.0118046876467 60.2873398117416 25.0117242874379 60.2873556454803 25.0116516314882 60.2873758423284 25.0115914464878 60.2874040798736 25.0115350063211 60.2876580505384 25.0110735265606 60.2876899490075 25.0110054656281 60.2877185327117 25.0109295734929 60.2877463891904 25.0108387097569 60.2877749846739 25.01070783758 60.2877950146299 25.0105543832472 60.2878012185354 25.0104468883746 60.2878288382775 25.0095285651 60.2878012446594 25.008966322436 60.2877880365366 25.008841355829 60.2877737052185 25.0087636936899 60.2877444379387 25.0086561127725 60.2877074496343 25.0085643249045 60.2876671179023 25.0084903613746 60.2876668908562 25.008490194275 60.2876267575867 25.0084378558006 60.287626539785 25.0084377062303 60.2874606401984 25.0082879643096 60.2872376029627 25.0081594292616 60.2870779011139 25.008075616135 60.287031384772 25.0080252775399 60.2869943998703 25.0079852497707 60.286961724154 25.0079498805711 60.2869348460487 25.0078974428528 60.2869313024136 25.0078905307339 60.2867967206853 25.0076281922907 60.2866207635432 25.0072846692625 60.2865706042723 25.0071543770311 60.2865464924552 25.007093577188 60.2865044550801 25.0069826182816 60.2864726970522 25.0069000871569 60.286425294965 25.0067769910331 60.2861720907389 25.006053941946 60.2861718726632 25.0060537743242 60.2860898781588 25.0057982501362 60.2860768041323 25.0057189066537 60.2860754062184 25.0056264058938 60.286097368882 25.0054722595708 60.2861477950082 25.0052888635722 60.2862697899432 25.0049029805551 60.2863026522889 25.0047958547906 60.2863406646298 25.0046447266179 60.2864050344484 25.0042895233678 60.2864453465171 25.0039603522756 60.2864762605086 25.0036065171775 60.2865255613714 25.0028173514272 60.2866183111746 25.0016491029239 60.2866253771188 25.0014805920644 60.2866240910176 25.0013008140333 60.2866216449341 25.0012564424494 60.2866103054649 25.0010508298288 60.2865797683245 25.0008091773153 60.2865477789188 25.0006602194064 60.286503237854 25.0005253067806 60.2864209476822 25.0003349733769 60.2863179055837 25.0001467587571 60.2861663115342 25.000011838578 60.2861423954979 24.999990505727 60.2860073493538 24.9999357650683 60.2858722784047 24.9999181473975 60.2854855178033 24.9998232122827 60.2852473062345 24.9997880176911 60.284802805867 24.9997028541857 60.2846690152974 24.9996110289942 60.284500883873 24.9994473893323 60.2840603628083 24.9988799667879 60.2839413342483 24.9987485882915 60.2831638212933 24.9978834620199 60.2830017464768 24.9977201736101 60.2827908422808 24.9975488208163 60.281982722616 24.9964903465319 60.2814961277003 24.9958501647733 60.2813978825573 24.995642814811 60.2813234331491 24.9954166633374 60.2813233765533 24.9954158890316 60.2813135895014 24.9953280213122 60.2812940804006 24.9951673128969 60.2812779236953 24.9948996822043 60.2812874022045 24.9946131538892 60.2813223834911 24.9941776487033 60.2813201788494 24.9940019533153 60.281282602797 24.993685261014 60.2812135730443 24.9933935947231 60.28113865049 24.9931672975907 60.2807887619746 24.9924614271617 60.2803718156416 24.9915312789939 60.2801986121386 24.9911066541544 60.2800113382992 24.990615305976 60.2798833754429 24.9902436940714 60.2798089788841 24.9899516349729 60.279799170833 24.9899130608099 60.2797664368496 24.9897430459287 60.2797446493754 24.9895699357357 60.2797229391057 24.9892488888089 60.2797044046421 24.9888114032185 60.2796999671183 24.9882984258916 60.2797128737241 24.9874928050086 60.2797646972584 24.987023991925 60.2797961335231 24.9866495601375 60.2798276272864 24.9861397977955 60.2798339764696 24.9859478488487 60.2798264664118 24.985651667297 60.279778368366 24.9853034508169 60.2796887997033 24.9849066193745 60.2796690813433 24.9845488995478 60.2797159875346 24.9839047612906 60.2796492435584 24.9835698688877 60.2794319902758 24.9834294363974 60.2793851913998 24.983249950115 60.2793352540168 24.9830956533845 60.2792228659253 24.9828153598757 60.2791323099937 24.9826106273152 60.2790276933547 24.9824310522634 60.2789168150013 24.9822892306974 60.2788449611268 24.9822230121986 60.2788446709608 24.9822228311261 60.2786777793282 24.9821251384442 60.2784637073373 24.9820712286294 60.2782980311788 24.9821055456172 60.278232393972 24.9821085769914 60.278174583338 24.98209587961 60.2780730168536 24.9820390537117 60.2779964806222 24.9819413308912 60.2779074671334 24.9818027256219 60.2777435421735 24.9814594127667 60.277578056979 24.9810814749372 60.277489061544 24.9808862283551 60.2774593917346 24.9808358080994 60.2774218987006 24.9808042814082 60.2772171975065 24.9807441074352 60.2771656227791 24.9807439956301 60.2770499648741 24.9807658297217 60.2765467372747 24.9808042330349 60.2761857807037 24.9807091868253 60.2761248166713 24.9807342493697 60.2760450949817 24.9807750084476 60.2760091491866 24.9807749457963 60.2759450933012 24.9807402114169 60.2758232429596 24.9806235718327 60.275740445257 24.9805636440695 60.2755969457868 24.980438538844 60.2755966469198 24.9804383764257 60.2755289426739 24.9803580598678 60.2754654959488 24.9802647676774 60.2754056636622 24.9801587384794 60.2753349719119 24.9799942250858 60.2752416617166 24.979729201749 60.275169148748 24.9795701734769 60.2750649161089 24.9794019627045 60.2749996239425 24.9793196561438 60.2749247334938 24.9792505467757 60.2748256145354 24.9791262385754 60.2747541867907 24.9790002044725 60.2745354606807 24.9785680732499 60.2744397022612 24.978341838766 60.27426585723 24.9779705644387 60.2741579203416 24.9777715781773 60.2740396240469 24.9775906655678 60.2739567438309 24.9774982934118 60.2739564452356 24.977498149095 60.2738956636124 24.9774608520517 60.2738953647419 24.9774606896688 60.2736513138486 24.9773681614428 60.2732509732123 24.9771961345576 60.273016423838 24.9771583759324 60.2727918768525 24.9771640324231 60.2724124565752 24.9771973171055 60.2719690431505 24.9772035949037 60.2716882700202 24.9771190192469 60.2715770353289 24.977070356929 60.2714471664264 24.976952324545 60.2713170381712 24.9768131528522 60.2709427225788 24.9763727724175 60.2708164420023 24.9762438911313 60.2706879886741 24.9761351074918 60.2705565355513 24.976036943247 60.2703102154728 24.9758675285342 60.2703021649873 24.9758661635179 60.2701994800489 24.9757945036486 60.2701554849245 24.9757483834964 60.2701422214246 24.975731464956 60.2700765893279 24.9756464684728 60.2700693470191 24.9756368445435 60.2699975592203 24.9755663685836 60.2699224200465 24.975527037474 60.2698601686338 24.9755117902318 60.2698131208022 24.9755087487443 60.2697100568579 24.9755135625345 60.2696391518875 24.9755251404256 60.2695834347517 24.9755490695213 60.2695012092123 24.975598702708 60.2694317241953 24.975655106363 60.2693249138669 24.9757605919909 60.2692023123696 24.9759166670748 60.2690828633579 24.9760857092186 60.2689744692327 24.9762570144512 60.2689000586486 24.9764045405258 60.2688061299139 24.9766203875861 60.2688061299139 24.9766203875861 60.2687359110104 24.9768054783138 60.268684316086 24.9769555348309 60.2686334709577 24.977129465443 60.2686067117118 24.977221846894 60.2685572983761 24.9773382638561 60.2684046693937 24.9775774915424 60.2682365241955 24.9778170237326 60.2681951454965 24.9778636218138 60.2681068808501 24.9779584954572 60.268056794183 24.9780071493326 60.2679871326734 24.9780602836227 60.2679392032405 24.9780801466158 60.267847411782 24.9781044520178 60.2677967802249 24.9781008144764 60.2677485193307 24.9780788599629 60.2676670765552 24.977994171715 60.2676667782354 24.9779940454834 60.267599452429 24.9778691077252 60.26744716511 24.9775741456477 60.2673226605931 24.9773778334993 60.2672414630874 24.9771772219667 60.2670493087071 24.9765931712751 60.2669527159961 24.9763649117832 60.2668647199841 24.9761927304934 60.2667733973147 24.976050388332 60.2666714007699 24.9759137144057 60.2665633773856 24.9757976628485 60.2664477287019 24.9756957693869 60.2663397457569 24.9756153696367 60.2662364440348 24.9755539358085 60.2661171491395 24.9755115699136 60.2660155108481 24.9755109252651 60.2658099705662 24.9755378890255 60.2657119438393 24.9755732337356 60.2655990085655 24.9756357501672 60.2654908495845 24.9757181653902 60.2653790875554 24.9757834106477 60.2652748511411 24.9758144191244 60.2651568130288 24.9758026375789 60.2650679125106 24.9757308242804 60.2649754490448 24.9756256230457 60.2649016305264 24.9755032707973 60.2648708617706 24.9754233475178 60.2648381645226 24.9752976598144 60.2647719372127 24.9749222266051 60.2646898207938 24.9743184316436 60.2645874312309 24.9737694599994 60.2645442582216 24.9735677697483 60.2644959761804 24.9733809130417 60.2644382015583 24.9732000313972 60.2644837427999 24.9725979299541 60.2644995691675 24.9723885957808 60.2645473562411 24.9717567764052 60.2645529191839 24.9717017263641 60.2645609324153 24.9716224620645 60.2645820453909 24.971413576964 60.2646495047064 24.9710343056842 60.2646899702553 24.9708446681335 60.2647349037868 24.9706776409878 60.2648202591293 24.9704339148174 60.2649105449337 24.9702036941126 60.2650311770458 24.9699644871271 60.2653708563603 24.9693594364067 60.2654367126356 24.9692421260398 60.2655607520108 24.9689938415945 60.265623318732 24.9688417685954 60.2656894737591 24.9686330654451 60.2657497341704 24.9684019109098 60.2657715790668 24.9683180608736 60.2660351551788 24.9673068628355 60.2660736006231 24.9671064719995 60.2661522685198 24.9665479075506 60.2661906800554 24.9663377542355 60.2662248982093 24.9661921876103 60.2663085706641 24.9658749046673 60.2664522873321 24.9654235196106 60.2665558371428 24.9651497632824 60.2667500414151 24.9645199154332 60.2669931086581 24.9636754700041 60.2670596533448 24.9634698509158 60.2671256698585 24.9632801742311 60.2671907547889 24.9631047294512 60.2672575939994 24.9629370939777 60.2673304652839 24.9627657198417 60.2674065446428 24.9626014859974 60.2675676677569 24.9622760202713 60.2677965144181 24.9617862547306 60.2678948844551 24.9615634589919 60.2679379542203 24.9614384106442 60.2679890281743 24.9612315739205 60.2680349998563 24.961022378145 60.2680985826342 24.9607756352206 60.268138311269 24.9606599960149 60.2682267087009 24.9604692936863 60.2683257694297 24.9602951031251 60.2683840407139 24.9602224431375 60.268443076811 24.9601679968485 60.2684967896544 24.9601271892644 60.2686138129407 24.9600575965459 60.2687264455386 24.9600038805523 60.2687868398006 24.9599904829019 60.2688717942037 24.9599919553914 60.269057156012 24.960022072379 60.2690574815452 24.9600222148393 60.2691868548751 24.9600268703187 60.2692927281929 24.9600137506427 60.2693493539774 24.9599970977251 60.2694366615967 24.9599594042087 60.2695220340924 24.9599021584585 60.2696123178891 24.9598220047914 60.2697250783277 24.959699460198 60.2698491616278 24.9595404803991 60.2699543174682 24.9593953535362 60.2705295272112 24.9584936893805 60.2706213643568 24.9583236011756 60.270708901927 24.9581484457834 60.2708738003309 24.9578512951248 60.2709567145213 24.9577113600701 60.271046689335 24.9575749983493 60.2711249293426 24.9574634531141 60.2712054031347 24.9573569938432 60.2712952708876 24.9572481400326 60.2716943863315 24.9568068646352 60.2717970324245 24.9567001942374 60.2718934544455 24.9565999691084 60.2724067245286 24.9561568172729 60.2725381468547 24.9560541696682 60.2726854343947 24.9559558296031 60.2727893162923 24.955896218988 60.2728904335007 24.9558507226995 60.272981881816 24.9558236053929 60.2730428198624 24.9558122980123 60.2731389592857 24.9558040199357 60.273233503183 24.9558023694965 60.2733911044565 24.9558249761096 60.2734813709778 24.9558500308243 60.2735716618204 24.9558889181284 60.2737808995741 24.9560089752503 60.2737812158599 24.9560091001839 60.2738946233916 24.9560694218028 60.2738949573457 24.956069527551 60.2741249450727 24.9561821437134 60.2741252703316 24.95618226809 60.2742357006434 24.9562189781442 60.2742360348754 24.9562191019616 60.2743940377351 24.9562538024454 60.2743943722451 24.9562539443305 60.2745774406691 24.9563141532101 60.2745777749011 24.9563142770297 60.2749581869558 24.956458834901 60.2750834916508 24.9565136797816 60.2750838166314 24.9565137860978 60.2752092974504 24.9565789104962 60.2752096316821 24.9565790343208 60.2753663582065 24.9566802237975 60.2753666831869 24.9566803301162 60.2754737933272 24.9567359317386 60.2755489691681 24.9567609190756 60.2755493033997 24.9567610429033 60.2756370386782 24.9567698748276 60.2757390556726 24.9567583204385 60.2758329453675 24.956733419967 60.2759346241801 24.9566858793905 60.2759494320728 24.9566792588405 60.2760541668641 24.9566096805924 60.276155701859 24.9565230303045 60.2762233315803 24.9564498704653 60.2762826025996 24.9563675924965 60.2763434317693 24.9562616701272 60.2764226786112 24.9560994743569 60.2764989952404 24.9559196466984 60.276566713402 24.9557355622687 60.2766106003312 24.9555863320406 60.2766467104683 24.9554442061025 60.2766727202768 24.9553076115296 60.2766958436678 24.9550967395313 60.2767186846678 24.9547287591536 60.2767367052938 24.9545161252782 60.276759382554 24.9542991130005 60.2767823016656 24.9541100634283 60.2768040525833 24.9539915292805 60.2768500651611 24.9538002587604 60.2768920459517 24.953673768571 60.2769118644111 24.9536303549684 60.2769473743639 24.9535525750271 60.2770978262214 24.9532866843892 60.2771766220883 24.9531805349676 60.2772372057362 24.9531235226326 60.2773367192639 24.9530544553828 60.2774394462628 24.9530120623242 60.2775483841772 24.9529897720478 60.2777675983068 24.9529836485594 60.2778498763929 24.9529740567517 60.277930413999 24.952945366293 60.2780137534781 24.9528892628936 60.2780675268994 24.9528274654172 60.2781160543811 24.9527411633721 60.278156644458 24.9526363848674 60.2781892392892 24.952513459077 60.2782370495152 24.9522693987779 60.278270015723 24.9520727295557 60.2782892750771 24.9518777852678 60.2782969449265 24.9516640324333 60.278297825293 24.9515365234878 60.2782802289886 24.9512418596212 60.2782665544207 24.951091387445 60.2782073299443 24.950601971982 60.2781622247094 24.9501813243977 60.2781448004466 24.9499619986342 60.2781303336984 24.9497376227568 60.2781279859684 24.9495762601572 60.2781340353849 24.9494229989106 60.2781432555579 24.9492982599234 60.2781658049052 24.949120616004 60.2781768962416 24.9490600560888 60.2781990631174 24.9489390818107 60.2782687334035 24.9486703335361 60.278322321152 24.9484815201574 60.2783859852808 24.9482699733882 60.2784360928311 24.9481024292211 60.278475725463 24.9479353419305 60.2785008500344 24.9477820589636 60.2785108882618 24.947653396294 60.2785088009481 24.9474706916737 60.2784917888411 24.9472568191892 60.2784158905676 24.9466246112878 60.278395524485 24.9464065189495 60.2783899488787 24.9463021124771 60.2783912719819 24.9461838171645 60.2784056498833 24.9459694060978 60.2784090541709 24.9457499316937 60.278403872583 24.9456512881851 60.2783916418585 24.9455440437355 60.2783529835108 24.945355911307 60.2782784581715 24.945097395191 60.2782781242094 24.9450972895416 60.2781777097815 24.9447759036895 60.2781773665664 24.9447757805381 60.2781207582599 24.944612976087 60.2780150789409 24.9443107151858 60.2780147357254 24.9443105920399 60.2778397057692 24.9437593915563 60.2777696020554 24.943514007062 60.277715361842 24.9432832536638 60.2776475123714 24.9429776117935 60.2775724337438 24.9426645579046 60.2774784705281 24.9423170446499 60.2773849515662 24.9419889838492 60.2771945146883 24.94144633412 60.2768073163581 24.9403735501774 60.2767737853493 24.9402500912876 60.2767397796063 24.9401116696507 60.2767062620048 24.9399584056085 60.2767059100926 24.9399583011451 60.2765835276787 24.9392940182718 60.2765831847392 24.9392939132513 60.2765413408514 24.9390562096149 60.2765409889386 24.9390561051617 60.2765112704887 24.938893073015 60.276457395439 24.9386331411524 60.2764570432454 24.9386330186363 60.2761216464039 24.9368409478164 60.2760097538744 24.9364631274813 60.2760094019597 24.9364630230575 60.2759562066472 24.9362667878655 60.2758477123349 24.9358840731477 60.2756551343862 24.935134329041 60.2756156666591 24.9349257305426 60.2755417507672 24.9342515765257 60.2755110795935 24.9340167263651 60.2754699026332 24.9337780543425 60.2752837757631 24.9329738322647 60.2751461749937 24.9324010408671 60.2751015248381 24.9321788869061 60.2750611780567 24.9319574022227 60.2750295970421 24.9317209149784 60.2750074262853 24.9315021535446 60.2749883571099 24.9312749499431 60.2749745609818 24.9310351341049 60.274965406265 24.9307992389318 60.2749633294509 24.9305455174394 60.2749843432555 24.9298549692885 60.274997068941 24.929634799224 60.2750209007765 24.9294160970323 60.2750440721813 24.9292201505105 60.2750572233093 24.9290739731267 60.2750744454152 24.9285772754236 60.2750730384944 24.9283656116583 60.275057514889 24.9281466666045 60.2750353130482 24.9279349259434 60.2749716503289 24.9274072310357 60.2749432822355 24.9271296740681 60.2749223907022 24.9268466349144 60.2748774915826 24.9257533922084 60.2748648723087 24.9254463929068 60.2748563699522 24.9250103170274 60.2748488604256 24.9248821033836 60.2748333737639 24.9247101424316 60.2748136495362 24.924580840197 60.2747771801793 24.9244272266905 60.2747236013191 24.9242765604901 60.2746652970213 24.9241373342565 60.2745426718042 24.9239026489638 60.2743779503314 24.9236256040924 60.2743775714882 24.9236255015181 60.2743184532909 24.923502623358 60.2742336629217 24.9232980774839 60.2742332843609 24.92329799298 60.2741673634575 24.9231261052072 60.2741669938695 24.9231260201366 60.2740792001691 24.9228765106079 60.2740503439348 24.9227733262232 60.273852543672 24.9219822362169 60.2738030931402 24.9218085846726 60.2737512998156 24.9216367640983 60.2736910079114 24.9214625537501 60.2736224768441 24.9212967876254 60.2735739376059 24.9212043491789 60.2735657823341 24.9211905986037 60.2734499355715 24.9209864791642 60.2734032808823 24.9209237782805 60.2734029028858 24.9209237299376 60.2733081413895 24.9208099944306 60.2731961616309 24.9206962675358 60.2731957740956 24.920696183634 60.2731428013448 24.9206148969332 60.2731424227824 24.9206148124629 60.273108801899 24.9205303987368 60.2730840455778 24.920269324679 60.2730522999414 24.9199795260443 60.2730056689394 24.9196466218252 60.2729754137661 24.919459480249 60.272898292524 24.9189578064587 60.2728740762274 24.9187972810021 60.2728471348189 24.9186537284452 60.2727880445571 24.9183696493704 60.2727388606257 24.918097021381 60.2727185156131 24.9179657813831 60.2726955855819 24.9177498948845 60.2726614871741 24.9173396536273 60.2726283373296 24.916906368935 60.2725731558825 24.9162517362534 60.2724661206454 24.9152356660403 60.2724367261062 24.9150179339813 60.272336677016 24.9144168879308 60.2722421459452 24.9139196890369 60.2721909426095 24.9136100216118 60.2721757636103 24.9135151660409 60.2720909069502 24.9129296709389 60.2720539854145 24.9127110304937 60.2720535981585 24.912710964754 60.2720176006392 24.9125225549622 60.2719745827421 24.9123252440742 60.2719741859449 24.9123251427814 60.2719249385516 24.9121183923109 60.2719245423225 24.9121183271505 60.2718739361329 24.9119422783262 60.2718735399037 24.911942213168 60.2718216760906 24.9117673119405 60.2717605391302 24.9115904708379 60.2716995995512 24.9114267640305 60.2716301111404 24.9112597693572 60.2716297149109 24.9112597042077 60.2715595560419 24.911104344045 60.2715591508394 24.9111042794696 60.271454112924 24.9108928455658 60.2714537077214 24.9108927809932 60.2713992358221 24.910812513899 60.2713988219308 24.9108124679643 60.2713040941817 24.910722002214 60.2713036889789 24.9107219376438 60.2712063105884 24.9106582409475 60.271205896697 24.910658195015 60.2711182728542 24.9105711106226 60.2711178766243 24.9105710454823 60.2710328076423 24.9104454094679 60.2710324114124 24.9104453443292 60.2709581544194 24.9102944633068 60.2709117310557 24.9101731803275 60.2709117061602 24.9101721693 60.2708679416452 24.9100257994866 60.2708358501912 24.9098723745353 60.2708119883727 24.9096928562944 60.2708021420484 24.9094747964402 60.2708038320141 24.9092410101566 60.2708214323339 24.908803866455 60.2708361411262 24.9085840944373 60.2708478306201 24.9083676794045 60.2708552434989 24.9081329666581 60.2708529025502 24.9079114258842 60.2708418075103 24.9077055068819 60.2708175646521 24.9074911696415 60.2707931600579 24.9073560619149 60.2707673812695 24.9072511673837 60.2706747654822 24.9069535361623 60.2703794041014 24.9060865805652 60.2702959005897 24.9058156051708 60.2702361909591 24.9055988027045 60.2702357857542 24.9055987381996 60.2701872554761 24.905409086162 60.2699547795501 24.9043676942644 60.2698792253597 24.90402698247 60.2698529793176 24.9038955067334 60.2697512481816 24.9033766122912 60.2697508432609 24.9033765658782 60.269600804216 24.9025636477479 60.2696003990098 24.9025635832816 60.2694436105199 24.9016512758081 60.2693986997706 24.9013170744453 60.2692262026251 24.9002963191965 60.2692257887307 24.9002962733972 60.2691938803628 24.9001608264611 60.2691494160084 24.9000118098098 60.2691490108011 24.9000117453758 60.2690735564679 24.8997950297207 60.2690259580662 24.8996324550388 60.2689765651531 24.899447303697 60.2689761509726 24.8994472398456 60.2689374199964 24.8992751834129 60.2687969214758 24.8985485357061 60.2687304331401 24.8981465681844 60.2686774137945 24.8977852706258 60.2686513497684 24.8975233184575 60.2686126469432 24.8970084078068 60.2685541553246 24.8961177034369 60.2685136259182 24.8953462506411 60.2685068116396 24.8949668569787 60.2685004003637 24.8943190042748 60.2685235644199 24.8932132423157 60.2685317309765 24.8928234106384 60.268428998195 24.8927981410563 60.2684050398665 24.8927922687393 60.2683226408457 24.8927720018057 60.2679677877128 24.8926847305512 60.2676096097685 24.8925911478281 60.2673605839582 24.892526056155 60.2671482221586 24.8924705581961 60.2667952710367 24.8919730201003 60.2667953535951 24.8919725627821 60.266393895151 24.8914064333339 60.2657433972183 24.8899086655416 60.2657437500286 24.8899088236178 60.2657188488648 24.8898521202795 60.2657190135332 24.8898523085512 60.2656379487062 24.8896651257471 60.2654171885513 24.8891566110862 60.2652336295172 24.8887068144776 60.2648345693028 24.8877915775275 60.2642434068161 24.8864358386859 60.263983339061 24.8858394366533 60.2639828895588 24.8858394114185 60.2639579819057 24.8857812863163 60.2639116926789 24.8856721307302 60.2636881756667 24.8851263156451 60.263640363391 24.8850146206849 60.2636213610284 24.8849703072988 60.2634803846251 24.8846419899458 60.2634511493324 24.8845738593482 60.2616900114319 24.8804808572079 60.2615611706979 24.880179758651 60.2613000111716 24.8795691345352 60.2610326547602 24.8789418743011 60.2610130043349 24.8788981701795 60.2609836862762 24.8788295488597 60.2609133121407 24.8786648661144 60.2604749102363 24.8776389472475 60.2604728086599 24.877629972612 60.2604265067224 24.8775215817286 60.2603754375722 24.8774133372124 60.2603664117871 24.8773853242927 60.2603094883 24.8772524953579 60.2602733397162 24.8772235459092 60.2600241390944 24.8770239789088 60.2598876790878 24.8769147244469 60.2597879407475 24.8768348703603 60.2596440921827 24.8767196789977 60.2588487841054 24.8760828697209 60.2588083296084 24.8760509120269 60.2585317687839 24.8758323305197 60.258276685566 24.8756307073264 60.2582280069006 24.8755922342968 60.2581674728713 24.8755448413 60.2581244523883 24.8755108279404 60.2579151172218 24.8753559696464 60.2575471721453 24.8750695228306 60.2572965030417 24.8748783256921 60.2570839930354 24.8747126010874 60.2569663014948 24.8746217419227 60.2566889849164 24.8744054926852 60.2563592551083 24.8741509481754 60.2563418597921 24.8741376709111 60.2562386155248 24.8740588743557 60.2556902735406 24.8736306894526 60.2556040084418 24.8735633199429 60.2552153524207 24.8732587546222 60.2547486116505 24.8728906733943 60.254143574374 24.8724162154154 60.2538681808463 24.8712715638006 60.2537311970893 24.870700527092 60.2536330378005 24.8702961370008 60.2536328933599 24.8702955318983 60.2535775232519 24.870067432021 60.2533541801588 24.8691310156035 60.2533414524138 24.8690778589596 60.2533005870664 24.8689063101674 60.2532900509269 24.8688660237373 60.2532668333083 24.8687648426998 60.2523796222546 24.867875235162 60.2524557102416 24.8676986160307 60.2525050161848 24.8676306190612 60.2525050161848 24.8676306190612 60.2525413215934 24.8676071307824 60.2526166065054 24.867608631508 60.2526588507149 24.867594190722 60.2526708028104 24.8675900879214 60.2528215172147 24.8674740712075 60.2528448526952 24.8674511551387 60.2530145102361 24.8672837166299 60.2531464265016 24.867137057786 60.2531820409356 24.8670616357931 60.2532366755129 24.8668283741587 60.2532808984519 24.866622989093 60.2532869544593 24.8664873369821 60.2532841758559 24.8660865512229 60.2532774669228 24.8659206806141 60.2532872524543 24.8657533566738 60.2533033081896 24.8656196015597 60.2533240017383 24.8655301665223 60.2533707981357 24.8654262721653 60.2534958578355 24.8652047039592 60.2535453718406 24.8650793595456 60.2536065147622 24.8648667412323 60.2536946076598 24.8646298112749 60.253751294063 24.8645142816313 60.2538249663633 24.8644345325357 60.2539162116757 24.8643087079561 60.2537384631171 24.8638922059257 60.2535044333024 24.8633413522069 60.2533662885156 24.8630171981797 60.2533517841575 24.8629821603204 60.2532087872256 24.8626467950841 60.2532080312845 24.8626439165551 60.2531438570491 24.8624929447859 60.2531874376255 24.8620540396137 60.2531991769832 24.8619358180078 60.2534856538555 24.8590496915052 60.2535076350802 24.8588282156522 60.2536082029776 24.8578148622335 60.2537445369537 24.8573387773725 60.2538628439505 24.8569256597352 60.2538870170671 24.8568412492725 60.2539517816554 24.8566150920435 60.2543488612553 24.8552283126968 60.2551363651687 24.8524773903713 60.2559671316716 24.8495749583245 60.256130798957 24.8490031482309 60.2561531897232 24.8489248977974 60.2562875782006 24.8484553900207 60.2563660214795 24.8481812704121 60.2564219557292 24.8479858609518 60.2564981036689 24.8477198065454 60.2566324967977 24.8472502883603 60.256802360889 24.8466568815848 60.2569743369117 24.846055955089 60.2569960725356 24.8459800572087 60.2570305491392 24.8458595981111 60.2571099654886 24.8455821121532 60.257267547227 24.8450315202773 60.2579807474607 24.8425395305392 60.2590962852683 24.8386410579113 60.2591015504475 24.8377129790368 60.2590992526448 24.8376855099969 60.2590290093906 24.8368441013256 60.258882242035 24.8359850811392 60.2587734438988 24.8354646757626 60.258498527971 24.8347334003072 60.2583987649139 24.8347076351833 60.258397534345 24.834707083823 60.2546672228977 24.8336844196519 60.2543063131293 24.8323400721834 60.2540555450455 24.8314023691663 60.2540555450455 24.8314023691663 60.2536277524145 24.8298044827122 60.2535423327815 24.8294854143954 60.2533145365517 24.8286343392373 60.2532839730952 24.8285252678331 60.2532364118153 24.828351211023 60.2531189903966 24.8279216027445 60.2530195508338 24.8275452779368 60.251719121667 24.8226274211907 60.2513350304954 24.8211977073283 60.2510807583607 24.8202511867988 60.250495893338 24.8180742827466 60.2503952004455 24.8176841124714 60.2502794817561 24.8172383988682 60.2501676922882 24.8168061249106 60.2500601588732 24.8164126047584 60.2500038237387 24.8162008909025 60.2499289534457 24.8159195906152 60.2497554914156 24.8152676576456 60.2492125225684 24.8132273871885 60.2491157824121 24.8128626615335 60.2490136873899 24.8124777486067 60.2489465584538 24.8122246449277 60.2488481391488 24.8118535858234 60.2487013611396 24.8113002423544 60.2485673097324 24.8107948809612 60.2484868907886 24.8104991934991 60.2483055596547 24.8098249287066 60.2482408798144 24.8095833817498 60.2481622441658 24.8092946826127 60.2481132545232 24.8091129324744 60.2480210158763 24.808770752692 60.2479694697452 24.8085865366716 60.2479015487631 24.8083376035523 60.2478524225573 24.8081574555386 60.2478492385899 24.8081457781161 60.2478264825217 24.8080623327785 60.2477788917356 24.8078876124218 60.2477058195937 24.8076211008817 60.2476502296976 24.8074145890755 60.247544463999 24.8070232329188 60.2474067214818 24.8065162013687 60.2473447642503 24.8062881279826 60.2472973204802 24.8061110356393 60.246980263052 24.8049480419329 60.2469125990557 24.8047009494269 60.2468209010768 24.8043660941258 60.2467256264728 24.804018162803 60.2466303336193 24.803670270817 60.2464694842498 24.8030829235746 60.2464481742841 24.8030050981916 60.246359939542 24.8026729834811 60.2461903631834 24.802045466066 60.2459296947134 24.8010867449898 60.2457498810994 24.8004235389447 60.245544077281 24.7996427194758 60.2454622291139 24.7993560893115 60.245157622349 24.7982893988287 60.2451096340224 24.7981061321316 60.2449902473139 24.7976502141529 60.2447232937268 24.7966649349849 60.2439591094983 24.793670316398 60.2424104888307 24.7881295892769 60.2415054172866 24.7847540611185 60.242777002087 24.7838966425443 60.2431447349767 24.7836517080408 60.2431792028905 24.7836287450551 60.2435691413694 24.7833683187718 60.2435971880488 24.783349728065 60.2439771608958 24.7830885413126 60.2443348968738 24.7828426381452 60.244403808261 24.7827952648543 60.2449908903078 24.7824160913556 60.2451284296013 24.7823178365285 60.2455295620204 24.7820302584381 60.245585986462 24.7819897975319 60.2459949157873 24.7817237646604 60.2464179816743 24.781448528767 60.246698734638 24.7812610858982 60.2468520668721 24.7811586983897 60.2470720141387 24.7810118489664 60.2472670514747 24.7808708034244 60.2473863870918 24.7807916204834 60.2476982865518 24.7805846380901 60.2477153431867 24.7805733098965 60.2477408597468 24.7805559879103 60.2479458294846 24.7804169929409 60.248121028041 24.7802981907617 60.2481704680901 24.7802590637913 60.2483309735057 24.7801516634672 60.2484605205828 24.78006489886 60.2485437217398 24.780008920075 60.2489810021967 24.7797142807624 60.2490014588526 24.7797005528705 60.2490661741745 24.7796569197855 60.2490917803242 24.7796395902758 60.2494085845929 24.7794262899619 60.2494412979832 24.7794037259403 60.2496118110897 24.7792883925759 60.2496165662853 24.7792859199821 60.2498067075921 24.7791578164774 60.2498177043996 24.7791493730759 60.249981734099 24.7790406025103 60.2501814137354 24.7789081632585 60.2502487356418 24.7788582059638 60.2504115294265 24.7787502029207 60.2504635664143 24.7787143827124 60.2506641599688 24.7785802148915 60.2506677568331 24.7785777663826 60.2508554353167 24.7784544297809 60.251050698508 24.7783205837814 60.2510826297889 24.7782990644581 60.2512442836231 24.7781895245925 60.2515026487496 24.7780144402131 60.2515369974796 24.7779967504592 60.2519437081919 24.7777129119477 60.252226770562 24.7775209824009 60.2523363219012 24.7774406850616 60.2524063177305 24.7774050707542 60.252483255462 24.7773532801392 60.2526754565918 24.7772238393356 60.2527717752592 24.777159004161 60.2529200013451 24.7770592192717 60.2532212411767 24.7768564483575 60.2535608508292 24.7766277923174 60.2539021747325 24.7763980030211 60.2539454843562 24.7763688580284 60.253970110848 24.776348300274 60.2541914367327 24.7761955623708 60.254228449081 24.776170133537 60.2543773674055 24.7760677441431 60.2543933013062 24.7760601925616 60.2547321095734 24.7758261337677 60.2547530541307 24.7758152777995 60.2551169965529 24.7755706154678 60.255163854449 24.7755457822426 60.2553023112221 24.7754543091306 60.2555077362937 24.7753186521715 60.2555166850832 24.7753118270906 60.2555678345837 24.775272946994 60.2556012130009 24.7752461540009 60.2559739576206 24.7749913376419 60.2560789845635 24.7749225359881 60.2562314744043 24.7748237424477 60.2563197763487 24.7747608470229 60.2563436905974 24.774743895689 60.256348216357 24.7747416724564 60.2564016581986 24.7747152332502 60.2565197946099 24.7746343691736 60.2566957252177 24.7745182557099 60.2568761251006 24.7743992346226 60.2573320026972 24.7740931654982 60.2573609411016 24.7740737209023 60.2573856290093 24.7740584512387 60.2574159005433 24.7740397656006 60.2578287132796 24.7735975164447 60.2582411010656 24.7731557186645 60.2582898433618 24.7731034924216 60.2583620961135 24.7730311402795 60.2586578994279 24.7727354281608 60.2589323153787 24.7724611389833 60.2589675374842 24.7724243450993 60.2590956367235 24.7722906556583 60.2603739275317 24.7709564354706 60.260772290858 24.7705406149356 60.2607821988132 24.7703957171725 60.2610386790962 24.7701335836738 60.2610934294602 24.7700776131711 60.2612587320032 24.7699086708363 60.2615737066497 24.7699476527473 60.2617513258869 24.7699985678139 60.2619720117368 24.7698140110651 60.2620795322574 24.7695131364216 60.26204880074 24.769221653377 60.2621063744533 24.7691701515924 60.2621638361927 24.7691194707769 60.2621968516193 24.769093594548 60.263691032768 24.7677717836064 60.2638145267042 24.7679590073867 60.2638187361241 24.7679646868347 60.2638209355795 24.7679672850734 60.2638256051999 24.7679714868254 60.2638280472341 24.7679730199372 60.2638329580815 24.7679755419562 60.2638439711335 24.7679787873012 60.2638495007801 24.7679801824072 60.2638606166677 24.7679820647959 60.2638661756888 24.767982535853 60.2638773130561 24.7679830246664 60.2638914773567 24.767983506162 60.2638985800467 24.7679833658432 60.2639127422799 24.7679815875524 60.2639197928509 24.7679799501911 60.2639338187388 24.7679759393358 60.263939023959 24.7679740660875 60.2639442075912 24.7679719773559 60.263961496947 24.7679654661776 60.26397023855 24.7679629000422 60.2639878579352 24.767960524648 60.2639966821884 24.7679607371167 60.2640142547757 24.7679625231865 60.264024642876 24.7679638585313 60.2640298773837 24.7679642612955 60.2640403541853 24.7679639272859 60.2640508211328 24.7679624730186 60.2640612602819 24.7679598997148 60.2640715908837 24.7679562128741 60.2640817959049 24.7679514678943 60.2640868217117 24.7679485401634 60.2640967481855 24.7679421869968 60.2641032401146 24.7679383096519 60.2641065432517 24.767936565959 60.2641132355744 24.7679339224484 60.2641200321933 24.7679321396495 60.2641268792758 24.76793122123 60.2641337232932 24.7679311889164 60.2641405459977 24.7679320258728 60.2641439287492 24.7679328802086 60.2641506201839 24.7679349916765 60.26415741136 24.767937692976 60.2641608152298 24.7679392690564 60.2641675122389 24.7679433146598 60.2641740799662 24.7679482188111 60.2641804917989 24.7679540014032 60.2641866929935 24.767960611927 60.2641926467505 24.7679679986508 60.2641954994547 24.7679720530243 60.264201012639 24.7679804822203 60.2642095947673 24.7679930053046 60.2642141026939 24.7679988091269 60.2642237277958 24.7680081876441 60.2642287806483 24.7680116763222 60.2642390002868 24.7680174165079 60.2642484611664 24.7680207676361 60.2642532681873 24.7680219227155 60.2642629552787 24.7680221668234 60.2642677722412 24.7680212420705 60.2642772811933 24.7680183705385 60.2642823018101 24.7680162024975 60.264373824232 24.7679767376204 60.2656374484749 24.7674299671675 60.2656378408167 24.7674297957901 60.2662949235685 24.767145432814 60.2667432800941 24.7681748739904 60.2667964765226 24.7683080872727 60.2668959954702 24.7685006520386 60.2669848456711 24.76862870791 60.2670490053154 24.768702376358 60.2683287042073 24.7699827297595 60.2683887218832 24.7698601357113 60.2686959581892 24.769255694832 60.2691829920165 24.7680442500531 60.2692112624229 24.7679739003495 60.2692851977952 24.7677918181886 60.2696810969612 24.7668107667861 60.2696965834939 24.7667670360737 60.2697146179372 24.7667225891402 60.2701488638683 24.7656523875576 60.2700650768337 24.7654837658698 60.2704744663681 24.7653028754347 60.2705826620957 24.7652480985424 60.2712306065269 24.7649392423933 60.2712379493163 24.7649400253053 60.272292651167 24.7652010578731 60.2734526513377 24.7654881805285 60.2738850711412 24.7655815849401 60.2743003335976 24.76568934622 60.2787097394688 24.7668332822055 60.2796559284064 24.767078821127 60.2813786825985 24.7675042461821 60.2832349872998 24.767957657736 60.2852132409541 24.7684302137863 60.2867747120117 24.7687996101248 60.2870112703072 24.7688541186495 60.2881248547665 24.7691107632577 60.2886037817186 24.7692293628979 60.2921107483175 24.7700726875793 60.2932877852275 24.770351053955 60.2939106422806 24.7704963648255 60.2956609741177 24.7709572494207 60.2962763814958 24.7710724500493 60.2967204698007 24.7711796697003 60.2968729570593 24.771217350675 60.2973816994616 24.7713422137377 60.2977208264071 24.7714246457821 60.2980186047839 24.7714988736962 60.2980865873202 24.7715162692802 60.2983152872578 24.7715741729472 60.298346431977 24.7715823860517 60.2985388323515 24.7716321388721 60.2985751369122 24.7716400549773 60.2988313704462 24.7717008089591 60.2988866428376 24.7717139128012 60.2992318586816 24.7718016567317 60.2993914233624 24.7717161500317 60.3001542622841 24.7713460452557 60.3005407520957 24.7711826861805 60.3008804349363 24.7710460961012 60.301077354592 24.7709647512545 60.3012617432533 24.7708881868918 60.3014216616774 24.770821651214 60.3017177595192 24.7706988292889 60.3020419998996 24.7705642949361 60.3022898444896 24.7704618074569 60.304562001695 24.769520566981 60.3047146783112 24.7694571541914 60.3053212955249 24.7692060566999 60.3071272680425 24.7684357132022 60.3080993794552 24.7680352279781 60.3086071294099 24.7678260366965 60.3088861542941 24.7677008302074 60.3108080508784 24.7668923625483 60.3117193594954 24.7665021828539 60.3144003564064 24.7653482545041 60.3155851242674 24.7648783064186 60.320473824429 24.762929553206 60.3211103059379 24.7626571095741 60.3222182922089 24.7621892113103 60.3229315256251 24.7618921934187 60.3248412340846 24.7611165455902 60.3253768834938 24.7609271392851 60.3246549525174 24.7575697611496 60.3243696258426 24.7562304862395 60.3243346479989 24.75599794475 60.323696703887 24.7530131743802 60.3236295251686 24.7526152774051 60.323033853958 24.7498887930752 60.3222748648585 24.7462358484135 60.3234502103093 24.7464728277757 60.3255201256332 24.7468289971171 60.3264677779459 24.7469559114686 60.3268656886819 24.7470381268281 60.3277002499007 24.7471998565664 60.3289634002983 24.7473751660172 60.3302357279993 24.7475105974353 60.3307695468869 24.7475655970648 60.3312498894683 24.7476235234836 60.3324950644949 24.7478364660268 60.3335045815173 24.7479912913255 60.3342149872805 24.7481090697709 60.334473051334 24.7481510381898 60.3353662156796 24.7482881530089 60.3354200772923 24.7482957833899 60.3359845798971 24.7483847818 60.3378386918487 24.7486746292577 60.3380111151282 24.7486915038199 60.3390376906785 24.748863504543 60.3400228657261 24.7490190324689 60.3408102503831 24.74914278462 60.3409036473441 24.7491565004715 60.3410581146219 24.7491770807537 60.3417833636598 24.7492878326892 60.3417833636598 24.7492878326892 60.3424351226495 24.7503478066143 60.3444728616863 24.7536300718604 60.3444994741855 24.7536756721924 60.3449022882687 24.7543250909671 60.3450688318309 24.7545895833455 60.3452218964264 24.7548362280274 60.3458594854413 24.7558678328093 60.3459169051853 24.7559607283158 60.346130458147 24.7563050377281 60.3463346936873 24.7566343315344 60.3463487283536 24.756656948198 60.346465723541 24.7568460044629 60.3464797225899 24.7568686418769 60.3467865936637 24.7573644077375 60.3468286353992 24.7574323182875 60.346975609356 24.7576686046002 60.3470006321965 24.7577100431498 60.3470014108709 24.7577114759716 60.3471129806268 24.7578926288061 60.3475376873929 24.7585765543395 60.3500880491904 24.7627083544537 60.3506564144497 24.7636296759591 60.3521059520932 24.7659546805672 60.3525504378939 24.7666417738056 60.3531016439303 24.7674640433691 60.3555930567046 24.7710517185688 60.3587211765951 24.7758491098065 60.3593653125803 24.7767556174793 60.3618651879886 24.7805403346998 60.3588700484043 24.7819514585018 60.3588578519482 24.7820431100343 60.3588225134789 24.7823085324999 60.35870604697 24.7831833822745 60.3597470601241 24.7831533492467 60.3598168720557 24.7831513274934 60.360207751275 24.7831400463099 60.3602439860072 24.7831389995414 60.3609080803474 24.7831198405494 60.3635252045866 24.783047492476 60.3636010284407 24.7831631356477 60.363910274221 24.7836324908388 60.3639218939269 24.7836495462261 60.3639451157723 24.783684220406 60.3642697480692 24.7841833517616 60.3650597249145 24.7853938341018 60.3651727649791 24.7855594281127 60.3657963230485 24.7865225755232 60.3658533524196 24.7866106553831 60.3665147687153 24.7876249583913 60.3666051899085 24.7877701015734 60.3678668277318 24.7896982088954 60.367993490973 24.7898926352619 60.3688078660945 24.7911071609509 60.3708423489115 24.7942040363492 60.3708536003751 24.7942217224778 60.3719743144777 24.795954526028 60.3723330046174 24.7965036578301 60.3726383887355 24.7969560173556 60.3728553909602 24.7972534544344 60.3731055727391 24.7976572578726 60.3735115620636 24.7982854990447 60.373835087045 24.7987766114953 60.3741511329962 24.799296809087 60.3741895248496 24.7993659095707 60.3743509934665 24.7996084743401 60.3746790084608 24.8001422118376 60.3746858883516 24.8001541378865 60.3747225728691 24.8001884530723 60.3752209633784 24.8009458390737 60.375287350832 24.8010703272858 60.3757735971087 24.8017921303639 60.3759350256444 24.8020439733068 60.3761714417058 24.80241033624 60.3765065067297 24.8029393019364 60.3779177412987 24.8051037612638 60.3786540736281 24.806233197208 60.3791785023606 24.8070434423258 60.3806215300731 24.8092883976098 60.3807001426608 24.8094090534748 60.3828168952696 24.8126823906111 60.3832768411242 24.8133951143443 60.3833508246303 24.8135070636466 60.3838084020277 24.8141994645754 60.385021424528 24.8160356266056 60.3855277900293 24.8168020984402 60.3865495241643 24.8183607506814 60.3873262483714 24.8195457289797 60.387446578288 24.8197292291014 60.3880027742707 24.8205775958757 60.3891947736373 24.8223950298243 60.3895471297855 24.8229517263867 60.3900057077042 24.8236250282526 60.3913599833034 24.8256622128831 60.3914683478404 24.8258192402268 60.3916695593936 24.8261857877649 60.3917825890991 24.8263485692904 60.3921411654458 24.8268956257447 60.3924745269336 24.8274338837367 60.3926930691989 24.8277376946906 60.3931461648419 24.8284701914312 60.3931540319555 24.8284899416516 60.3944591579807 24.8304559522205 60.3944661849456 24.8304699148616 60.3944751691218 24.8305124809352 60.3944800415337 24.8305342287544 60.3945414118679 24.8308084602131 60.3953996767803 24.8357574571789 60.3960853203428 24.8395640038165 60.3963095818364 24.8408466159719 60.3964917568314 24.8418886251945 60.3966871773997 24.8429359590393 60.3974944957106 24.8476815825011 60.3977153324562 24.8489172576198 60.3987826917087 24.8548791488764 60.3987847621449 24.8548911392456 60.3988445187881 24.8552339597621 60.399390273977 24.8584483693672 60.3995176808367 24.8591462984249 60.4011364589193 24.8682835476758 60.4011753931623 24.8685021820803 60.4012153823373 24.8687267028137 60.4012405578112 24.8688680446487 60.4012548544909 24.8689391485307 60.4012548544909 24.8689391485307 60.4012172982955 24.8689496291654 60.4012020914628 24.8689529656629 60.4011663834666 24.868960511382 60.4011485572702 24.8689646182826 60.4011130508668 24.8689752189674 60.4010954311717 24.8689821263539 60.401091988397 24.8689836404994 60.4010745372272 24.8689920981739 60.4010572400944 24.8690017621409 60.4009892362982 24.8690482196185 60.4009760167417 24.8690578710435 60.4009081620257 24.8691052262734 60.4008909662201 24.8691156096931 60.4008736285428 24.8691249857129 60.4008561029441 24.8691327219295 60.4008383981064 24.8691387996229 60.40082058552 24.8691431959661 60.4008123629846 24.8691446232349 60.4007944281354 24.8691464314428 60.4007764824935 24.8691464430391 60.4007585631101 24.8691447282226 60.4007406974832 24.8691413215075 60.4007229235346 24.8691363474994 60.4006876825504 24.8691225669528 60.4006528335847 24.8691052206472 60.4006183850542 24.8690848345268 60.4006013274521 24.8690735503849 60.400595687309 24.8690696528831 60.4003940819993 24.8689166140135 60.4003771239245 24.8689048152 60.4003428779032 24.8688830546281 60.4003255772375 24.86887342048 60.4003195727272 24.8688703275149 60.400196793462 24.8688166685482 60.4001792943178 24.868808663196 60.4001445318156 24.868790549346 60.4001273364631 24.8687802003963 60.4001103037209 24.8687687878711 60.4000934764188 24.8687561818907 60.4000769054882 24.8687421975825 60.4000607130598 24.8687266091089 60.4000528092904 24.8687182122767 60.4000372167437 24.8687002608428 60.4000220333897 24.8686809392463 60.4000072861452 24.8686602457277 60.3999930213238 24.8686382680303 60.3999792395056 24.8686150424253 60.3999527585124 24.8685660877921 60.3998765637033 24.8684122948394 60.3998728368029 24.8684044781585 60.3996462354569 24.8679391252439 60.3994534019853 24.86755380643 60.3994363368753 24.8675201945931 60.3994323584029 24.8675123764249 60.3994259275272 24.8674994904011 60.3993018655109 24.8672374063648 60.3992890893975 24.8672119375417 60.3992628504107 24.867162424596 60.3992493626541 24.8671385091789 60.3992214697482 24.8670928442931 60.399205377922 24.8670689722973 60.3991606562272 24.8670083792047 60.399155528735 24.8670017255988 60.3990502595108 24.8668631861003 60.3990356236916 24.8668421780925 60.3990282551065 24.8668313143379 60.3990139127235 24.866809561001 60.3988323931199 24.8665133577263 60.3988180237685 24.8664916064215 60.398771661004 24.866426710935 60.3987411903365 24.8663883504351 60.3987256828475 24.8663701229391 60.3986940471677 24.8663358507568 60.3986615086829 24.8663052139967 60.3986449218815 24.8662913777899 60.3986281276249 24.8662786080841 60.3986111351766 24.8662669224247 60.3985967012406 24.8662579556661 60.3985794084911 24.8662482684212 60.398561980358 24.866239661106 60.3985267691608 24.8662255195236 60.3985090462884 24.8662198179311 60.3984912800449 24.8662147727082 60.3984377846918 24.8662025000313 60.3984199123463 24.8661992408087 60.3984108343577 24.8661977294046 60.3983750107731 24.8661930133229 60.3983570852889 24.8661914821603 60.3983212011617 24.8661902736523 60.3983032529446 24.8661906863888 60.3982853172265 24.8661918788994 60.3982674093745 24.8661942495495 60.3982495710922 24.866198158673 60.3982318513112 24.8662038572096 60.3982142870839 24.8662114153436 60.3981969690069 24.8662208816001 60.3981799332604 24.8662322717607 60.3981632522052 24.8662456173915 60.3981494188781 24.8662584316461 60.3981335403787 24.8662753372002 60.3981181476681 24.8662939717956 60.398103275473 24.8663142605441 60.3980889119135 24.8663360226901 60.3980750161578 24.8663589523012 60.3980615039652 24.8663828370538 60.3980483084588 24.866407427181 60.398035447583 24.8664327215079 60.3980228929668 24.866458631126 60.3980106350561 24.8664851203544 60.3980017561654 24.8665049984387 60.3979899420032 24.8665322754743 60.3978661581784 24.8668430817027 60.3978557742077 24.8668682498941 60.3977839661646 24.8670303913546 60.397707932814 24.8671844582273 60.3976949140249 24.8672094355544 60.3976851151125 24.8672279575175 60.3976718916569 24.8672524943783 60.3976174395348 24.8673470040845 60.3975889274376 24.8673910754438 60.3975741775225 24.8674117184064 60.3975590883259 24.8674313669878 60.3975436858943 24.8674499650259 60.3975279693565 24.8674674581198 60.397526167726 24.8674693731457 60.3975186066612 24.8674773287399 60.3975026130685 24.8674937870682 60.3974539976813 24.8675405531612 60.3974375602633 24.8675550981103 60.397404306156 24.867582379344 60.3973874888861 24.8675950793624 60.3973518919145 24.8676196456619 60.3973175601579 24.8676407708609 60.3973002642739 24.867650506922 60.3972304795747 24.8676844439337 60.3970893371001 24.8677376623219 60.3970716722735 24.867743991549 60.397068752498 24.8677450720546 60.3968571415417 24.8678259901496 60.3968394784525 24.8678324280823 60.3966798664691 24.8678821156365 60.396644188655 24.867890421805 60.3966269841658 24.8678940886453 60.3965734364125 24.8679054516611 60.3965555253254 24.8679076217592 60.3965375377493 24.8679083809757 60.3965016559426 24.8679073156689 60.3964837570226 24.8679096846399 60.3964766326576 24.8679118207161 60.3964650276831 24.8679168456838 60.3963946321716 24.8679451758171 60.3963591159796 24.8679557221424 60.3963454336155 24.8679589043769 60.3963275700647 24.8679623601262 60.3963096665269 24.8679650016375 60.3962738014273 24.8679677834433 60.3961302628374 24.8679622520683 60.3961274934977 24.8679620701844 60.3960019218318 24.8679539295176 60.3959124328051 24.8679408872543 60.3958945870884 24.8679370446976 60.3958563647042 24.8679272380133 60.3957855104891 24.867903937194 60.3957678874768 24.8678971757958 60.3955752240682 24.8678101620027 60.3955666918377 24.86780627298 60.3954612397883 24.8677622558788 60.3954435545736 24.867756097697 60.395425832048 24.8677504139075 60.3954197216467 24.8677485628386 60.3952415662894 24.8677048734609 60.395223799802 24.867699809763 60.3952074784684 24.8676946878294 60.3950305583036 24.8676339102347 60.3950127683814 24.8676290659567 60.3949770821247 24.8676211450712 60.3949592124171 24.8676180485681 60.3949211448948 24.8676139863916 60.3948852562366 24.8676147370144 60.3948673292064 24.8676164725493 60.394863304038 24.8676169537048 60.3948275198524 24.8676225439087 60.3948096797705 24.8676263430049 60.3947741169577 24.8676362205785 60.3947564208536 24.8676422791602 60.3947387997562 24.8676490951844 60.3947212539559 24.8676566867824 60.3947068134811 24.8676635669811 60.3946894344769 24.8676725997567 60.3946721672403 24.8676824420195 60.3946379663264 24.8677044462076 60.3946210500128 24.8677165706924 60.3946042715121 24.867729448502 60.3945876389253 24.8677430246517 60.39457114357 24.86775731786 60.3945225283368 24.8678040973962 60.3944908285105 24.8678381353508 60.3944752071489 24.8678559652316 60.394444411684 24.8678931929883 60.3944292372898 24.8679125727309 60.3943846772045 24.8679736437908 60.3943781992527 24.8679830523331 60.3943637410244 24.8680045269826 60.3943214177041 24.8680717862254 60.3942941492008 24.8681189293721 60.3942808042706 24.8681431808091 60.3942420535402 24.8682187188857 60.3942054636312 24.8682985080135 60.3941824913072 24.8683542456857 60.3941607451137 24.868411954158 60.3941503596002 24.8684415297458 60.3941403046395 24.8684715556241 60.3941305715492 24.8685020505122 60.3941212318186 24.8685329915846 60.3941145629114 24.8685562797806 60.3940976140617 24.8686202267972 60.3940201009809 24.868947329289 60.3940121693281 24.8689798297998 60.3939870790353 24.8690760909015 60.3939782066368 24.8691076182456 60.3939690048344 24.8691387677866 60.393959408499 24.8691693985743 60.3939493076385 24.8691993725915 60.3939391493774 24.8692274444987 60.3939281378759 24.8692560803892 60.3939049251832 24.8693114151327 60.3938927595927 24.869338093507 60.3938802686397 24.8693640852456 60.3938542950248 24.8694141550435 60.3938274275248 24.8694622502953 60.3938137370116 24.8694856884706 60.3937431712748 24.8695976808332 60.3937391796114 24.8696036229175 60.3935777020942 24.8698331104163 60.3935630551135 24.869854033361 60.3934909699344 24.8699620212869 60.3934769050518 24.8699845214838 60.3934356566434 24.8700544649082 60.3934222737208 24.8700786084695 60.3933833916081 24.8701538603597 60.3933709381221 24.8701799578235 60.3933587816153 24.8702066529815 60.3933509478039 24.8702245167689 60.3933392998623 24.8702521224933 60.3933168153008 24.8703086421633 60.3933059601552 24.8703375210187 60.3932747012676 24.8704261049645 60.3932646915836 24.8704561808916 60.3931513589581 24.8708262490259 60.3931426680705 24.8708539879151 60.3931132459706 24.8709451190427 60.39310324543 24.8709752122084 60.3930194114503 24.8712107074005 60.3929519014547 24.8713801935316 60.3929402350339 24.8714077815476 60.3928677827052 24.871568714073 60.3928552829137 24.8715947409892 60.3928486826674 24.8716083127487 60.3927841965285 24.8717343840133 60.3927709536799 24.871758880242 60.3926892474367 24.8719005771234 60.3926037992677 24.8720329524427 60.3926004112344 24.8720378926509 60.3925562735421 24.8721002155895 60.3924808030383 24.8721982520293 60.3924654285598 24.8722169519112 60.3923872060921 24.8723057838725 60.3923712888625 24.872322558875 60.3923067642727 24.8723861390254 60.3922904417843 24.8724011617016 60.3922076109659 24.8724708549512 60.3921952050168 24.8724802858496 60.3920433563851 24.8725915086843 60.3920266856493 24.8726049748268 60.3919774399293 24.8726489349541 60.3919454699078 24.872681875928 60.3919144362705 24.8727183312279 60.3918993832976 24.8727380440844 60.3918834250152 24.8727606836565 60.3918690791677 24.872782491996 60.3918550797882 24.8728051851923 60.3918414254274 24.872828672591 60.3918150319303 24.8728778381679 60.3917898370149 24.8729295027074 60.391765781628 24.8729833433688 60.3917541229682 24.8730108748278 60.3916320569542 24.8733244058169 60.3916218196196 24.8733498297094 60.3913271676264 24.8740334655998 60.391293475793 24.8741183333153 60.3912836993784 24.87414394442 60.3910540023883 24.8747928223994 60.391043284021 24.8748218884221 60.3909878425807 24.8749644530887 60.3909763131709 24.8749922288214 60.3909646086455 24.8750197255619 60.3909528661977 24.875046535085 60.390903725862 24.8751522810347 60.3908911136286 24.8751780582018 60.3907998767598 24.8753525557518 60.3905123089798 24.8758447309808 60.3904987478448 24.8758684641135 60.3904929824865 24.8758786583434 60.3903446617807 24.8761418982001 60.3903020152755 24.8762082881998 60.3902873675498 24.8762292242983 60.3902724755415 24.876249486637 60.3902420475357 24.8762879298022 60.3902264924366 24.8763060392791 60.3902107272107 24.8763233638809 60.3901947417285 24.8763398316733 60.3901785545141 24.876355477748 60.3901621557275 24.8763702483006 60.390145561289 24.8763840152541 60.3901403806123 24.8763880732193 60.3901235913899 24.8764008909604 60.3901074056473 24.8764132519568 60.3899740605026 24.8765207755249 60.3899574758876 24.8765345961256 60.3899525299388 24.8765387294965 60.389687888136 24.8767639667205 60.3896713903204 24.8767781625366 60.3896621490653 24.8767861145265 60.3896290778871 24.8768142750889 60.3895458944437 24.8768822682015 60.3894950140634 24.8769178676923 60.3894605501926 24.8769381152454 60.3894256684144 24.8769552503086 60.3894157753869 24.8769595060762 60.3893981453734 24.8769663527408 60.3893804574836 24.8769723864931 60.3893626940615 24.8769776266325 60.3893448817358 24.8769820532778 60.3893270297683 24.8769856839755 60.3892732918672 24.8769924863922 60.3891835786916 24.8769957333239 60.389165637054 24.8769954316777 60.3891518882073 24.8769950203314 60.3889903871679 24.8769895305781 60.3889724423408 24.8769895921041 60.3889006945202 24.876994064647 60.3888827843941 24.8769963016727 60.3888783574406 24.8769969347642 60.3888604765374 24.8769998776561 60.3887891418601 24.8770161738795 60.3885767759642 24.8770883661655 60.3885591022431 24.8770947254284 60.3885424215936 24.8771002759592 60.3884358441972 24.8771313522604 60.3882929971391 24.877160125998 60.3882750893212 24.8771625079147 60.3881674827473 24.87717016772 60.3881495390742 24.8771703016506 60.3881406371387 24.8771702461049 60.3881226957876 24.877169962489 60.3879971764986 24.8771599876975 60.38771135156 24.8771045930667 60.3876953541178 24.8771011704501 60.3875167344369 24.8770658901058 60.3872660375549 24.877033016806 60.3872301568979 24.8770308889357 60.3872122167096 24.8770301153465 60.3872055214467 24.8770298798566 60.3871696355592 24.8770291133633 60.3871516887032 24.8770290479453 60.3870261242762 24.8770359535554 60.3870082057497 24.8770382272484 60.3869188865449 24.877055475622 60.3868656130312 24.8770711209347 60.3868479367026 24.8770773167011 60.3868122152754 24.8770913654426 60.3865677985315 24.8772089556041 60.3865602621043 24.8772122953105 60.3864721356506 24.8772463235566 60.3864544159042 24.8772520501615 60.3863653880342 24.8772746137628 60.3862937535497 24.8772839411036 60.3862399146889 24.8772849782572 60.3862040438696 24.8772829039518 60.3861861332281 24.8772806040046 60.3861496393199 24.877274378429 60.3860778881196 24.8772707567224 60.3860687992125 24.8772702415053 60.385979328528 24.8772565952185 60.3859760231615 24.8772560301135 60.3858865058583 24.8772434031301 60.3858716461698 24.8772414852785 60.3858000696243 24.8772302308418 60.3857644588298 24.87722137112 60.3857441329043 24.8772146193223 60.385656417183 24.8771764160789 60.3856428374452 24.8771708401323 60.3855542326956 24.8771422217406 60.3855443892692 24.8771388885937 60.3854564155992 24.8771030978575 60.3854517689991 24.8771012228484 60.3853636957356 24.877066509412 60.3853446778081 24.8770572954941 60.385292913527 24.8770273496408 60.3852813598661 24.8770204079701 60.3851944824057 24.8769750742542 60.3851859194585 24.8769709319812 60.3850637950654 24.8769113988673 60.3850470668599 24.8769027074306 60.3849086239 24.8768258193661 60.3849024829485 24.87682260821 60.3847808615844 24.8767591420539 60.3847636711631 24.8767485029797 60.3847297467914 24.8767248724887 60.3846964085679 24.876698010235 60.3846799895437 24.8766833652278 60.3846655253672 24.876669645389 60.3846335539322 24.8766366880249 60.3846022774604 24.8766011269326 60.3845992557764 24.876597513119 60.3845215232472 24.8765016129193 60.3844592758816 24.8764293826629 60.3844437494876 24.8764115768706 60.3843975199557 24.8763558686304 60.3843675572109 24.8763159583002 60.384363174031 24.8763097658192 60.3843053163007 24.8762238771503 60.3842941895994 24.8762082346193 60.3842791439499 24.8761884742882 60.3842481562286 24.8761518790475 60.3842323270404 24.8761348008931 60.3842279519425 24.8761302410246 60.384131631997 24.876032995208 60.3841270499524 24.8760278500488 60.3840350160353 24.8759149565409 60.3840234012888 24.8759019408146 60.3839755072433 24.8758522577902 60.3839715199814 24.8758477997473 60.3839406682073 24.8758107245322 60.3839254430314 24.875793788805 60.3839091917882 24.8757784078465 60.3838952108752 24.8757657096655 60.3838790438571 24.8757499784884 60.3838667205482 24.8757375896878 60.383848301718 24.8757192108662 60.3838289043367 24.8756935469988 60.3838262609231 24.8756899994358 60.3838110609258 24.8756707033049 60.3837983402155 24.8756576146405 60.3837656782131 24.8756275528993 60.3837515010605 24.8756121276997 60.383735444013 24.8755959721624 60.3837235108351 24.875587205234 60.3837065029618 24.8755756298111 60.3836911257869 24.8755621155015 60.3836748580193 24.8755468265676 60.3836560840083 24.8755320819786 60.3836390521062 24.875520689624 60.383624424552 24.8755113724843 60.3836073434427 24.8755002736787 60.3836023665785 24.8754968418915 60.3835687881647 24.8754712675911 60.3835500462739 24.8754562851133 60.3835329735539 24.8754451495241 60.3835252976826 24.8754420024705 60.3835076509909 24.8754354224086 60.3834901852029 24.8754272338043 60.3834832175792 24.875425691812 60.3834653037201 24.8754237561538 60.3834526744081 24.8754225830393 60.3834347787852 24.875420101846 60.3834169071881 24.8754168751452 60.3834057803494 24.8754147331845 60.3833878563579 24.8754132881106 60.3833765054792 24.8754156788474 60.3833587418134 24.8754209006738 60.3833556821669 24.8754216625119 60.3833199406641 24.8754282552267 60.3833084928191 24.8754318861259 60.3832912631475 24.8754418634005 60.383275384833 24.8754588472827 60.3832602752522 24.8754784120757 60.3832452597346 24.8754982428955 60.3832302922596 24.8755182701606 60.3832012889877 24.8755609856686 60.3831976518902 24.8755666479346 60.3831836331685 24.8755892806242 60.3831698671187 24.8756125500482 60.3831562495446 24.8756361182421 60.3829961207719 24.875927067811 60.3829861981446 24.8759446613305 60.3829726001908 24.8759683368391 60.382958899195 24.8759917468682 60.3828743180584 24.8761263372808 60.3828007886737 24.8762302322795 60.3827935407752 24.8762398310639 60.3827326287424 24.8763165760399 60.3827171586932 24.8763349478855 60.382638532617 24.8764222812132 60.382622585579 24.8764389058499 60.3826065624197 24.876455263259 60.3825091789025 24.8765480269222 60.3824959395948 24.8765598482737 60.3824630148467 24.8765887371107 60.3824577995809 24.8767155979632 60.38246582948 24.8768597227305 60.382474847373 24.8770218732675 60.3814394760966 24.8786658689042 60.3806025516975 24.880030352034 60.3791923672888 24.8822719684639 60.3761107521563 24.8872507085547 60.3754329429386 24.8883454873739 60.3745781331594 24.8897152096043 60.3732866417117 24.8917709088023 60.3716121878377 24.8944179335652 60.3716121878377 24.8944179335652 60.3709552423502 24.8955718423558 60.3690638642763 24.8989209259051 60.3680046025202 24.9008181222075 60.3671943255185 24.9022492048363 60.3665237381245 24.903428988385 60.3663325324935 24.9037869141881 60.3650347722811 24.9060663744906 60.364805226072 24.9064962551695 60.364277517125 24.9072064027067 60.3642474957965 24.9072455391514 60.3634150995533 24.9083302505263 60.36337576211 24.9083984154992 60.3619623319945 24.9102519808065 60.3615967972628 24.9107316205116 60.3587611043202 24.9144520141886 60.3583033649101 24.9150524878426 60.357772015656 24.915743437989 60.3571878514375 24.9165118886384 60.3554362554812 24.9188032558747 60.3517675998914 24.9236042086129 60.3515278386877 24.9239165384358 60.3499578168382 24.9259615238508 60.349455376729 24.9266159487317 60.3492348126237 24.926901820253 60.3480529229368 24.9284336295127 60.3463204965134 24.9307578243626 60.3454387491934 24.9320652290764 60.3443418721772 24.9338064449522 60.3442789778044 24.9339027235602 60.3442179931291 24.9339860681333 60.3425911095647 24.9364624921333 60.3420980039142 24.9372499147478 60.3420071934224 24.9373833523311 60.3417011107083 24.9378679113925 60.3414604177651 24.9382368882315 60.3414452201656 24.9382611876894 60.341417580107 24.9383026903169 60.3413826695863 24.9383566661346 60.3412811930485 24.9385136215902 60.3408866142791 24.9391184663284 60.3408291021374 24.9392029503585 60.3407275227157 24.9393521693148 60.3407041591633 24.939371745868 60.3406729742193 24.9394244695573 60.3403236007966 24.9399576912835 60.339782092922 24.9407904938281 60.3391325257041 24.9418203187004 60.3390149147838 24.9420295480615 60.3389281173296 24.9421794131237 60.3388453506969 24.9423378659742 60.3384421027553 24.9431033230892 60.335266395085 24.9490613416784 60.3349164987761 24.9497482568022 60.3324491467803 24.9545916336432 60.332504021348 24.9569179106994 60.3328814318268 24.9729638085852 60.3329645320095 24.9909541238633 60.3330065821122 24.9942887250566 60.3329846176399 24.9954121593786 60.3329848074787 24.9955135083032 60.332987491682 24.997436096152 60.3329908510079 24.9986815284865 60.3329926845304 24.9997057276724 60.3329928256077 25.0000840589376 60.3330475592497 25.0008675537212 60.3330602833401 25.0010507462009 60.3331114315078 25.0017544253631 60.3332323058463 25.0036215169053 60.3332474479029 25.0038918302078 60.3332680037748 25.0039939285345 60.3332976654754 25.0041090943463 60.333503335669 25.0049331528224 60.333524142843 25.0050185337921 60.3342678287827 25.0077182064688 60.3344282178082 25.0083377941307 60.3345132186539 25.0086597346376 60.3347220289509 25.0094374972926 60.3347228404991 25.0094401110769 60.3348152503197 25.0097843792906 60.3350300266187 25.0105747466625 60.3350622467892 25.0107094259484 60.3352759619558 25.0114970796078 60.335326323909 25.0116972204274 60.3354283444822 25.0120749592401 60.3354898176357 25.0122932500637 60.3355371586548 25.0124722345912 60.3357484266202 25.013251906573 60.3359455752993 25.01396994015 60.3359873996641 25.0141158736139 60.3362355487928 25.0150534161715 60.3362962485994 25.0152665648722 60.3364836951346 25.0159641399236 60.3365247151275 25.016105072125 60.3365799869949 25.0163139158842 60.3366828541517 25.0166939145 60.3367662133181 25.0170023183762 60.3368905631946 25.0174661012734 60.3369962194403 25.0178508659687 60.3369969077614 25.0178524548643 60.3371020374628 25.0182333041284 60.3373775771144 25.0192504011019 60.3374201779401 25.0194102698228 60.3384947857705 25.0234369262824 60.3402306941782 25.0299056428859 60.3410533592655 25.0329581236167 60.3412191490969 25.0335775427539 60.3422055514435 25.0372506714303 60.3423120866 25.0376502760563 60.3423963070972 25.0378384255241 60.3424867895496 25.0380516784018 60.3430660217219 25.0393346385629 60.3448152274446 25.0432421417149 60.3451577795621 25.0439643086984 60.3462347327745 25.0464581755422 60.3471629264298 25.0485593034951 60.3474696323279 25.0492473064628 60.3480805850288 25.0488994729928 60.3480599371843 25.0485805762696 60.3484239560637 25.0480396110562 60.3485248810642 25.0483333959713 60.3486269974109 25.0486306820422 60.3487292451065 25.0489283970855 60.3488382156079 25.0492215799284 60.3494914704852 25.0482622169183 60.349899958839 25.0476639719272 60.3499526020201 25.0475883049236 60.3500489457819 25.0474445194238 60.3504207162173 25.0469069413672 60.3506585577312 25.0465531111431 60.350895413236 25.0461988634126 60.3511163846823 25.045879801151 60.3514367347614 25.0454134198718 60.3516937275794 25.0450355997635 60.3519490368757 25.0446691853881 60.352205541392 25.0442937209142 60.3524583979868 25.043919447838 60.3527113472233 25.0435454352361 60.3529281581354 25.0432248096476 60.3531652573162 25.0428742683125 60.3534557460912 25.0424447123696 60.3536456775797 25.0421658905023 60.3537913941318 25.0419542692344 60.3541735127093 25.0413993213624 60.3544066339931 25.0410607385765 60.3547518829311 25.0405565837156 60.354807371514 25.0404755745231 60.3549206669258 25.0402843747782 60.3553735515007 25.0396495068106 60.3554232507933 25.0395767098784 60.3556459406941 25.0392503476666 60.3557046881971 25.0390961885917 60.3560387581551 25.0385939329596 60.3561129053924 25.0384846572018 60.3564160129278 25.0381211601473 60.3566305411185 25.0378067622399 60.3569175576354 25.0373085041504 60.3570134976636 25.0372458100169 60.3573037641799 25.0368206251593 60.3575975984624 25.0363901961059 60.3577784579501 25.0361249199847 60.3578889720942 25.0359629167933 60.3581062978969 25.0356442787831 60.3584215096443 25.0351819741349 60.3584432943144 25.0351500591993 60.3584505557801 25.0351394148399 60.3587488993587 25.0346941793406 60.3589897813745 25.0343421598978 60.359536890758 25.0335505496526 60.3595610897081 25.033514897164 60.3595870907209 25.0334765977433 60.35995396463 25.0329255408873 60.3603224831064 25.0323959485141 60.3603496151049 25.0323558022445 60.360374334107 25.0323316480974 60.3607349178184 25.0317837181134 60.3611890448819 25.0311292124605 60.361212899578 25.0310903677675 60.3612344847781 25.0310608164548 60.3613853277025 25.0308611153939 60.3616708265998 25.0304191494532 60.3620985395134 25.0297917845561 60.3621045751059 25.0297832969845 60.3621299801049 25.0297460610385 60.3621516010961 25.0297086364143 60.3624565585461 25.0292854205147 60.3627633759441 25.0288350666634 60.3628266590326 25.0287229021467 60.3648260844939 25.0258043280912 60.3678686325997 25.0211779537195 60.3679189754356 25.0213193684822 60.369374448888 25.0252618161958 60.3694128110626 25.0253569773337 60.3705289409179 25.0283683038907 60.3710744245294 25.0297921604966 60.3711000224593 25.0298935073773 60.3716014395059 25.0312527097579 60.3695546970319 25.034700890545 60.3700885359097 25.0362355440035 60.3708094748885 25.038302471149 60.3705239210533 25.0387680918001 60.3704186277021 25.0389396653075 60.3693298950703 25.0407135835207 60.3693144581863 25.0407387403905 60.3692919873088 25.0407753826548 60.3679404773309 25.0429783726882 60.3684149157423 25.0441268519214 60.3685123381932 25.0443621451976 60.3692667933147 25.046184316277 60.3698244531939 25.0475360771199 60.3705639596812 25.0492863398364 60.3709372814282 25.0502189720967 60.3711054231778 25.0502803120254 60.3721981013543 25.050778663545 60.3728375992386 25.0518269829931 60.3728506762349 25.0519447708772 60.3728656929858 25.0520797286517 60.3734498718575 25.0528800150931 60.3733813515284 25.0536945820489 60.373734183985 25.0543454401685 60.3725009335068 25.0573115788141 60.3716286744759 25.0594101011531 60.3715471313533 25.0595781508431 60.3706064549521 25.0618568126445 60.3705586072262 25.0619743154542 60.3705076249613 25.0620961392589 60.3700948646249 25.0630852983417 60.3696874207162 25.0640619471355 60.3695986373229 25.0642747474612 60.3695985499489 25.0642755325021 60.3695984029024 25.0642777719808 60.3695981088093 25.0642822509381 60.3695975295964 25.0642912083202 60.369596433984 25.0643091193572 60.3695945151458 25.0643439096405 60.3695934054584 25.0643664099722 60.3695926072838 25.064384394041 60.3695920493622 25.0643979023473 60.3695919653927 25.0644001562195 60.3695918814231 25.0644024100916 60.3695917884799 25.064404664496 60.3695916205407 25.0644091722402 60.3695912933717 25.0644181690756 60.3695906934009 25.0644361957932 60.3695897098736 25.0644723089338 60.3695892578983 25.0644937183431 60.3695889458642 25.0645117823871 60.3695888345827 25.0645208026873 60.3695887534305 25.0645275723095 60.3695887235642 25.064529841108 60.3695886936978 25.0645321099066 60.3695886513851 25.0645366101979 60.36958857626 25.0645456464895 60.3695884708761 25.0645637164112 60.3695884831004 25.064600985609 60.3695886167865 25.064621290241 60.3695888080495 25.0646393788397 60.3695890052051 25.0646529330351 60.369589037625 25.0646551618667 60.3695890795456 25.0646574264073 60.3695891122289 25.0646596733595 60.3695891960699 25.0646642024406 60.3695893632242 25.0646732243618 60.3695901353636 25.0647059325712 60.3695910839937 25.0647421306039 60.3695916500244 25.0647600518874 60.3695927384296 25.064787953382 60.3695941044846 25.0648158021393 60.3695962624172 25.0648517833702 60.3695968006665 25.0648597676575 60.369598855568 25.0648874304791 60.3696011788822 25.0649150229774 60.3696045973271 25.0649506030177 60.3696054126991 25.0649584983295 60.3696084322527 25.0649857956425 60.3696117104552 25.0650129688049 60.369616351147 25.0650479867086 60.3696174520884 25.065055756274 60.3696214072662 25.0650825447182 60.3696256210929 25.0651092090138 60.3696315167655 25.0651434452155 60.369636066864 25.0651685298706 60.3696375159258 25.0651761518487 60.369639414694 25.065185052971 60.3696413583297 25.065193951434 60.3696452997048 25.0652117632911 60.3696533769694 25.0652471759858 60.369661728982 25.0652823366358 60.3696654629579 25.0652976217358 60.3696676285557 25.0653063438253 60.3696698031267 25.065315065384 60.3696742135013 25.0653323960565 60.3696832116089 25.0653669018097 60.3696924836748 25.0654011011585 60.3696966156545 25.0654159636908 60.3696990111341 25.0654244363953 60.3697014063497 25.0654328909804 60.3697062590678 25.0654497601888 60.3697161759131 25.0654832140425 60.3697263308231 25.0655163636217 60.3697308602807 25.0655307673479 60.3697334676955 25.065538991733 60.3697361009769 25.0655471420407 60.369748786817 25.0655857275963 60.3697588863617 25.065615688532 60.3697643258013 25.0656315255172 60.3697746156429 25.0656609855192 60.3697840702235 25.0656873574711 60.3697943656358 25.0657153481356 60.3698055375101 25.0657449372676 60.3698172570161 25.0657751287289 60.3698285165409 25.0658033343438 60.3698376154313 25.0658256286487 60.3698495062613 25.0658540145133 60.3698615818442 25.0658821355381 60.3698856433276 25.065935916418 60.3698898168544 25.0659449911367 60.3698949349292 25.0659560230098 60.369896519731 25.0659593931229 60.3698977062865 25.0659619344315 60.3698981135064 25.0659627627044 60.3699796168563 25.0661343629318 60.3699802264994 25.0661355238039 60.3699815460759 25.0661379484229 60.3699841670181 25.0661427806043 60.3699894350329 25.0661523890114 60.3700000584264 25.0661714374291 60.3700094232135 25.0661879306673 60.3700202464117 25.0662065138553 60.3700256886275 25.06621574923 60.3700297943738 25.0662226335287 60.3700311656837 25.0662249099971 60.3700325369936 25.0662271864658 60.3700352793498 25.0662317212829 60.3700407907193 25.066240771203 60.3700518915858 25.0662586850576 60.3700623714642 25.0662752754906 60.3700736539254 25.0662927070582 60.3700821676365 25.0663056416445 60.3700835999171 25.0663077875514 60.3700850229606 25.0663099158694 60.3700864549777 25.0663120436558 60.3700893100381 25.066316299761 60.3700950549999 25.0663247373628 60.3701065969201 25.0663414825383 60.3701175091431 25.066356922941 60.3701292052113 25.0663731511821 60.3701351056381 25.0663811624513 60.3701395394708 25.0663871386618 60.3701410142482 25.066389118829 60.3701424979992 25.0663910984646 60.3701454652377 25.0663950396153 60.3701514081614 25.0664028851454 60.3701633716103 25.0664183539772 60.3701746620746 25.0664326294161 60.3701867886459 25.0664475807801 60.3701959221114 25.0664586650708 60.3701974573333 25.0664604784338 60.3701989838448 25.0664623104497 60.3702005100929 25.0664641243449 60.3702035805364 25.0664677510721 60.3702097296069 25.066474949634 60.3702220697182 25.0664891447768 60.3702337107149 25.0665022024806 60.3702461960022 25.0665158812172 60.3702524730916 25.0665226187971 60.3702571980658 25.0665276165573 60.3702587668114 25.0665292647112 60.3702603445306 25.0665309123335 60.370263499969 25.0665342075787 60.3702698192925 25.0665407612971 60.3702801890274 25.0665510106492 60.3702919752181 25.0665629353253 60.3703066304784 25.066578226642 60.3703240853878 25.0665970519508 60.3703269879827 25.0666002533708 60.3703298816039 25.0666034553231 60.3703327488306 25.0666066951132 60.3703385102049 25.0666131731 60.370349991244 25.0666263491912 60.3703642194061 25.0666431530736 60.370375528342 25.0666568472089 60.3703839610776 25.0666673020843 60.3703867691735 25.066670799302 60.3703895688224 25.066674333294 60.3703951504359 25.0666814204642 60.3704062540058 25.0666958159866 60.3704200453041 25.0667140786086 60.370436420858 25.0667365046571 60.3704391341915 25.066740279551 60.3704418477883 25.0667440725665 60.3704445439642 25.0667479028882 60.3704499363157 25.0667555635335 60.3704606613614 25.0667711060065 60.3704739437409 25.0667908135049 60.370484478471 25.0668068569673 60.3704923344462 25.0668190328008 60.370494926359 25.0668231050889 60.3704975362189 25.0668271763144 60.3705027213601 25.0668354114996 60.3705130314585 25.0668520668106 60.3705257861796 25.0668731658886 60.3705409166282 25.0668989123294 60.3705434137775 25.0669032622951 60.3705459109267 25.0669076122614 60.3705483991021 25.0669119627601 60.3705533675319 25.0669207367756 60.3705632259965 25.0669384526898 60.3705754066087 25.0669608372812 60.3705850742294 25.0669790179441 60.3705922346746 25.066992776685 60.3705946096122 25.0669973696826 60.3705969940499 25.0670019983915 60.370601718583 25.0670112947118 60.3706111069379 25.0670300360511 60.3706226952282 25.0670536890991 60.3706318652908 25.06707286054 60.3706386680736 25.0670873478431 60.3706409300361 25.0670922014615 60.3706431835513 25.0670970918545 60.3706476633969 25.0671068561162 60.3706565444291 25.0671265344015 60.3706675126842 25.0671514031373 60.3706804631079 25.0671816499246 60.3706825843842 25.0671867113943 60.3706847151605 25.0671918085754 60.3706868369629 25.0671969062888 60.3706910541727 25.0672071395548 60.3706994186434 25.0672277371957 60.370709729913 25.0672537512598 60.3707218639269 25.0672852979261 60.3707238719638 25.0672906018951 60.3707258710268 25.0672959063963 60.3707278431687 25.0673012124928 60.3707317885047 25.0673118971726 60.3707396174115 25.0673333427458 60.3707500860914 25.0673627754146 60.3707549233757 25.0673767444579 60.3707586749703 25.0673876945468 60.3707638194124 25.0674030238052 60.3707656999464 25.0674088250351 60.3707677886918 25.0674153575444 60.3707694169351 25.0674204845183 60.3707766743318 25.0674440134567 60.370781971746 25.0674618365589 60.3707879977404 25.0674828267398 60.3707913525934 25.0674949066986 60.3707946636298 25.0675070618025 60.3708010903846 25.0675315286805 60.3708057516855 25.0675500786854 60.3708110436438 25.0675718559827 60.3708139738069 25.0675843782593 60.3708168514427 25.0675969943335 60.3708224282905 25.0676223096027 60.370826442661 25.0676414601889 60.3708309451606 25.0676639190591 60.3708334321592 25.0676768484711 60.3708358748145 25.0676898167849 60.3708405553065 25.067715874369 60.370843903482 25.0677355359884 60.3708476241795 25.0677585852879 60.3708493690667 25.0677698900659 60.3708496666969 25.0677718312256 60.3708516463975 25.0677850808848 60.370855401769 25.0678117555221 60.3708582684311 25.0678335132807 60.3708611790882 25.0678570639914 60.370862748887 25.0678705374389 60.3708642566583 25.0678840689713 60.3708670755658 25.0679111980943 60.3708690245856 25.0679316136643 60.3708711051491 25.0679555218711 60.3708722014395 25.0679691684603 60.3708732357024 25.0679828731339 60.3708751073298 25.0680103304161 60.3708766229827 25.0680361583198 60.3708768078431 25.0680396115243 60.3708768956549 25.0680413293316 60.3708770016771 25.0680430641976 60.370889582722 25.0682736738045 60.3708892366473 25.0682863357257 60.3708958459058 25.0692732457807 60.3708936866797 25.0694518770672 60.3708860837863 25.069590838495 60.3708733468189 25.0697244630037 60.3707454047253 25.0704066494291 60.3707436781185 25.070418885074 60.3707391673833 25.0704509456801 60.3707344112659 25.0704859045423 60.3707298913843 25.0705204322774 60.3707281087052 25.0705343760866 60.3707260157309 25.0705510769023 60.3707240583713 25.0705684588953 60.3707205161115 25.0706022758731 60.3707170798314 25.0706378277103 60.37071549222 25.0706553147872 60.370714929109 25.0706616959672 60.3707141900835 25.0706701914186 60.3707134690048 25.0706786858083 60.3707120727652 25.0706957444189 60.3707095437489 25.0707288303961 60.3707070826339 25.0707647416944 60.3707058982145 25.0707834019487 60.3707055066479 25.0707898455288 60.370705002506 25.0707984359076 60.3707045160481 25.0708070071037 60.3707035885245 25.0708241830848 60.3707033723472 25.0708284761514 60.3707032600343 25.0708306410713 60.3707032034838 25.0708316963493 60.3707031564324 25.0708327873393 60.3707031564324 25.0708327873393 60.3706988506949 25.0709242156019 60.3706696157724 25.0715437553158 60.3707025351184 25.0714602847748 60.3707494544292 25.0713413633498 60.3709229526059 25.0708962751949 60.370947668187 25.0710801915451 60.3710135120821 25.0716125547948 60.3710271412187 25.0717219314209 60.3710907054653 25.0722322684191 60.3711592163206 25.0727903420344 60.3712207072008 25.0729128171054 60.3715348580144 25.0735368470325 60.3716302228739 25.073726119725 60.3718470854598 25.0741535478521 60.3718488664841 25.0741562177508 60.3720605589476 25.0745746520685 60.3725068895356 25.0754588831565 60.3726878410312 25.0758094432101 60.3729029660161 25.0762308523188 60.3729029660161 25.0762308523188 60.3730043758352 25.07634153664 60.3732592782709 25.0768009114474 60.3735585977913 25.077279350958 60.3735986620644 25.0773519738473 60.3733024012147 25.0780661396443 60.3732851104031 25.0781051940341 60.3732668590615 25.0781492566887 60.3736213223769 25.0784948258974 60.3738109881055 25.0786763039515 60.3739818724678 25.078801717252 60.3741559981974 25.0788965949698 60.3743315268556 25.0789710756435 60.3744750479612 25.0790195623543 60.374419352755 25.0791569240212 60.37440997658 25.0791799682099 60.3744002798846 25.0792038293642 60.3734567039763 25.0815268126352 60.3729854009962 25.0826896393356 60.3729394325461 25.0828048143618 60.3727926482517 25.0831668386055 60.3726331480547 25.0835602230892 60.3724851389074 25.0839252688077 60.3722934220764 25.0843992364598 60.3722122073957 25.0845984938981 60.3720683801782 25.0844605860597 60.3718709752688 25.0842712498148 60.3716735524086 25.0840819350191 60.3714761295451 25.0838926406183 60.3712787061564 25.0837033303688 60.3710813004511 25.0835140213382 60.3708838857688 25.0833247332292 60.3706864615876 25.0831354297986 60.3704366072519 25.0828958512065 60.3703860007618 25.0833867160981 60.3703509698948 25.0837225585928 60.3702837950044 25.0843666131818 60.370245408458 25.0847440378725 60.370201655725 25.0851742815562 60.36976372059 25.0852312839916 60.3697378889895 25.0853847266471 60.3696965977039 25.0856784343597 60.3694383527087 25.0873380314401 60.3692488197116 25.0885579712433 60.3692157759251 25.0885109762765 60.3691978621433 25.0884737408332 60.3689726685454 25.0881433328341 60.3686799898039 25.087713656175 60.3682789923714 25.0871251230114 60.368164995829 25.0869579422636 60.3671062627765 25.0854053102957 60.3665706379963 25.088706841181 60.3665689052565 25.088717515021 60.3665265375244 25.0889786651724 60.3665127863491 25.0890649014521 60.3664131215175 25.0896903688246 60.3663839001569 25.0898607827052 60.3662991093382 25.090378944822 60.3662970096141 25.0904698114527 60.3662766950342 25.0913480440889 60.3662624496343 25.0919634822129 60.3662322755353 25.0932667558973 60.3661613069861 25.0960168656075 60.3661419455946 25.0967263323388 60.3661263542958 25.0972971243326 60.3661213464243 25.0974807702957 60.3660954819125 25.0985212528318 60.3660949755933 25.0985398697744 60.3660856002141 25.0987888167045 60.3660832895403 25.0988753783498 60.366063730145 25.0995814796806 60.3660628782126 25.099620553801 60.3660108308244 25.1014882526937 60.3659205521814 25.105276667075 60.3658735410291 25.106988809076 60.3657457316629 25.1124557221123 60.3657177088744 25.1134029118856 60.3656976966564 25.1142605456451 60.3656897023296 25.1146242271702 60.3652309845514 25.1148289069061 60.3645314784471 25.1151470020881 60.3645325764966 25.1151566761665 60.364579717879 25.1155737725653 60.364599782645 25.1157513708207 60.3643827928976 25.1156446371413 60.3638181665436 25.115487857338 60.3621948995825 25.1162294464884 60.3620253880479 25.1160880469927 60.3617008038374 25.1159845377345 60.3615980728126 25.1160210732146 60.3615006111112 25.115879851893 60.3611008427214 25.115684264354 60.360860273368 25.1155252897265 60.3605659648597 25.1153615874881 60.3601946593248 25.1153690096482 60.3602389354802 25.1171238842738 60.3602413664134 25.1172201270577 60.3602634134134 25.1180946430582 60.360267207524 25.1182453990525 60.3602777102989 25.1186615833121 60.3602857406683 25.1189798591413 60.3602958644715 25.1193821049347 60.3603161448404 25.1201866315026 60.360320623092 25.1203643633364 60.3603128092992 25.1208862901587 60.3603091517385 25.1211303049705 60.3603082336815 25.1211441553157 60.3602695406532 25.1217259674587 60.3599702956073 25.124082335759 60.3599921618332 25.1240706541045 60.3599989307724 25.1243092984928 60.3600580805128 25.1275734127084 60.3600598047327 25.1276691157999 60.3600711256735 25.1282534135604 60.3600834093111 25.1287473479829 60.3600893349445 25.1289464266771 60.3600948915602 25.1292112499797 60.3600968015519 25.1293093902041 60.360106369545 25.1297714259506 60.3601158566524 25.1302418791367 60.3601211263807 25.1304883891683 60.3601325994989 25.1310658627048 60.3601413998859 25.1315184427359 60.3599038738155 25.1315421008231 60.3596768196408 25.1315625483874 60.3594347590142 25.131584996743 60.3591929578564 25.1316073754909 60.3590742471446 25.1316152575766 60.3590865449152 25.1325550302468 60.3590877731403 25.132792245621 60.3590923174797 25.133384837193 60.3590962398621 25.1339620901291 60.3591245679276 25.1376107507257 60.3591262327547 25.1376988763761 60.3591276028197 25.1377909711899 60.3591357686004 25.1386933799863 60.3591472898329 25.1395946912731 60.3591484384645 25.1396845325426 60.3591497421427 25.1398663929204 60.3591535715998 25.1404036751856 60.3591602279687 25.1413355956175 60.359162815776 25.1418763571148 60.3591653056574 25.1420334025717 60.3591864380862 25.1436371776497 60.359195085776 25.1444919874657 60.3591957346499 25.1445584696004 60.3592036343593 25.1453735811828 60.3592068762243 25.1456447851792 60.3592169843107 25.1465866454953 60.3592270715048 25.1473791522634 60.3592274685311 25.1474102408379 60.359229711107 25.1475583808428 60.3592305715877 25.1476491996538 60.3592411752904 25.1481740784756 60.3592430210658 25.1486538391013 60.3592466283582 25.1491389751071 60.3592516872149 25.1493237776501 60.3592567283709 25.1495086175039 60.3592566022594 25.1495854234179 60.3592557435237 25.1497348271909 60.3592570263444 25.14988517925 60.3592586280116 25.1500197219992 60.3592788742125 25.1517334212463 60.3592788742125 25.1517334212463 60.3588261220557 25.1510125974294 60.3585729422443 25.1506093753024 60.3583477587131 25.1502516009722 60.3581540562471 25.1499508773633 60.3579639745346 25.1496457823187 60.3577691109388 25.1493327130684 60.3575147265629 25.1489278627184 60.3572699874865 25.1485327506964 60.3568190420553 25.1478107698455 60.3568021954138 25.1477838255719 60.3568015985442 25.1477848202533 60.3567674552652 25.1478688981918 60.3570058430453 25.1482560021698 60.356796900055 25.1489267391881 60.3567873577562 25.1489574100343 60.3561500420906 25.1479364455211 60.3564390334579 25.1472060441005 60.3563151289088 25.1470022785874 60.3557954844092 25.1461692895528 60.3557036421155 25.1460229537161 60.3553173157737 25.1454063189381 60.3549584825203 25.1448318784322 60.3548137260745 25.1446008736644 60.3546768962933 25.1443825084831 60.3543880861282 25.1439188736791 60.3540681019575 25.1434109402288 60.3503417370741 25.1374229538102 60.3500912088739 25.1370133715154 60.3500092362961 25.1368786488205 60.3492296717541 25.135622126431 60.3488008555937 25.1349310049964 60.3484933759985 25.1344354523907 60.3482867389379 25.134514405407 60.3478841533052 25.1346749420583 60.3475238657728 25.1348185964667 60.3475236783341 25.1348186796654 60.347420263284 25.1348599264107 60.3473958562015 25.1348691677085 60.3473328203923 25.1348931020141 60.347192416546 25.1349468633216 60.3471904743302 25.1352477319932 60.3471875795209 25.1364508554623 60.3471941580187 25.1371467263621 60.3471963834429 25.1376794995182 60.3471985827512 25.1382067102743 60.3472004591458 25.1384235221078 60.3472022542006 25.1394721655823 60.3472034736406 25.1403941592307 60.3471997804775 25.1419439357415 60.3459460004137 25.1420946731003 60.3459491399173 25.1422641227133 60.3459628183958 25.1430474041545 60.3459796803147 25.1439825363109 60.3459815450566 25.1442088369683 60.3459982956757 25.1451140375965 60.3460095076348 25.1457312757594 60.3460253038168 25.1466273797454 60.3460398515771 25.1474794264149 60.3460446484321 25.1477490194005 60.3460603362938 25.1486854177031 60.3460654995457 25.1489576360909 60.346106136597 25.1511332849106 60.3461209620696 25.1519272537001 60.3461286530893 25.1523398715211 60.346129829995 25.1524071308403 60.3458302750122 25.1524946265339 60.3458300698652 25.1524947287504 60.345387325995 25.1527088050981 60.3453871205963 25.1527088892037 60.3453681777866 25.1527165389168 60.3453586613447 25.1527200310547 60.3453394839584 25.1527256643257 60.345320216166 25.1527299616551 60.3453008756642 25.152732903922 60.3452814978467 25.1527344528829 60.3452621370613 25.1527346417108 60.3452524563363 25.152734065621 60.3452331568697 25.1527322031702 60.3452289277132 25.1527316268483 60.3446776006567 25.152677977608 60.3446349647919 25.1526739374793 60.3446136371711 25.1526721897945 60.3445709598671 25.1526696923807 60.3445282607521 25.1526682110281 60.3444855670001 25.1526677623178 60.3444428516886 25.1526683477685 60.3444001684108 25.1526699462232 60.3443788294534 25.1526712617667 60.3443361765294 25.1526743988425 60.3443011054822 25.152677016515 60.3442835448822 25.1526781364892 60.3442484031374 25.1526795439986 60.3442132236542 25.1526801744074 60.3441780151554 25.1526800091032 60.3441427863634 25.1526790294738 60.3441075377814 25.1526772717364 60.3440722868544 25.1526746986639 60.344037033834 25.1526713283662 60.3440017787202 25.152667160846 60.3439665394611 25.1526621950907 60.3439313073341 25.1526564497177 60.343896117481 25.1526498683778 60.3438609434823 25.1526424888105 60.3438258122603 25.152634309496 60.3437907332921 25.1526253661437 60.3437556965972 25.1526155868347 60.3437207208784 25.1526050248781 60.3436858061354 25.1525936802765 60.3436509700649 25.15258153391 60.3436161947182 25.1525685867963 60.3435815257206 25.1525548907214 60.3435469264205 25.1525403933964 60.34351244194 25.1525251103933 60.3434780456079 25.1525090613439 60.3434437733205 25.1524922442204 60.3434096073808 25.1524746781471 60.3433755742078 25.1524563253896 60.343341656356 25.1524372231791 60.3433078807476 25.1524173699951 60.3432742476336 25.1523967839466 60.3432574932243 25.1523861159398 60.3432240873127 25.152364429837 60.3427966226779 25.1520815673608 60.3427226559438 25.1520313165924 60.3424427939578 25.1518297183167 60.3420591408124 25.1517163354331 60.3418778010341 25.1517537576881 60.3416405934271 25.1518832380802 60.3415968545769 25.151907112443 60.3412845202047 25.151994652282 60.3409194507873 25.152019035948 60.3405610837493 25.1520700924804 60.3405240497953 25.1520723503439 60.3405054932318 25.1520728926257 60.3404683561185 25.1520716048788 60.3404312393867 25.1520679060801 60.3403941886614 25.1520618480157 60.3403572572839 25.1520533914374 60.3403205085761 25.1520425690102 60.3403022392696 25.1520359922165 60.3402658645384 25.1520217059736 60.3402439602067 25.1520094822335 60.3402330410433 25.1520031601291 60.3402113075536 25.151989658389 60.340189705571 25.1519752794953 60.3401682445726 25.1519600591524 60.3401469335323 25.1519439968542 60.3401257906496 25.1519271096918 60.3401153031613 25.1519182446239 60.3400944308402 25.1519001463103 60.3399644701904 25.1517971876168 60.3398121441679 25.1516249387977 60.3397768169937 25.1515755333026 60.3397472971802 25.1515342791158 60.3397067313193 25.1514775782916 60.3396485278442 25.151384803842 60.3396068474926 25.1513196504544 60.3395912669376 25.1512945855324 60.3395262181009 25.151189425158 60.3394444748739 25.1510598433389 60.3392834953065 25.1508531027382 60.3390125990829 25.1505052620978 60.3388630403994 25.1503132087217 60.3387558891797 25.1501242821735 60.3386141284054 25.1498743364955 60.3385784041874 25.1498125821766 60.3383291983673 25.1493869243271 60.3382893843664 25.1493146222844 60.3382540738247 25.1492503454079 60.3382290139575 25.149205653723 60.338216670284 25.1491828172187 60.3381928646154 25.149135318719 60.3381814123497 25.1491107105275 60.3381589718405 25.149060634466 60.3381456629528 25.1490297538622 60.3381390964834 25.1490141817575 60.338126304709 25.1489823840985 60.3381138730529 25.1489500043948 60.338101801767 25.1489170607503 60.338090109303 25.1488835883555 60.3380787956605 25.1488495872098 60.3380733374771 25.1488323398539 60.3380626157616 25.1487976348295 60.3380474117054 25.1487435254911 60.3380331452723 25.1486883846896 60.3380324459998 25.1486865400142 60.3379291138677 25.1483121848074 60.3379056949152 25.1482273419844 60.3378825325814 25.1481435174713 60.3377181431761 25.1475485606849 60.3376271188734 25.1472191720241 60.3376207315754 25.1471984267236 60.337620658269 25.1471983221724 60.3375128345831 25.1468609379563 60.3371939797943 25.1457783119045 60.3370100018826 25.1452845369793 60.336834457687 25.1447445779674 60.3367078162273 25.1443952699526 60.336688780622 25.1443396069102 60.3366791344548 25.1443119095256 60.3366593130064 25.1442572152032 60.3366389542226 25.1442032761644 60.3366180932428 25.1441500360621 60.3365967221046 25.1440975678196 60.3365748590096 25.1440458885215 60.3365525134383 25.1439950338649 60.3365297040978 25.1439450571401 60.3365064215097 25.1438959226509 60.3364827025821 25.1438477007708 60.3364585475688 25.1438004096027 60.3364339746715 25.1437540662297 60.3364089931181 25.1437086882448 60.3363836126419 25.1436643294464 60.3363707360267 25.1436426317123 60.3363448019123 25.1435997900916 60.3363285438666 25.143495433989 60.336305231872 25.1434770106313 60.3362817858946 25.1434592833696 60.3362457535779 25.1434335749732 60.336227652985 25.1434211060561 60.3361911784004 25.1433978143497 60.3361544306694 25.1433761868825 60.3361174549162 25.1433562392028 60.3360802598626 25.1433379526925 60.3360428998596 25.1433213604924 60.3360241331495 25.1433139298982 60.3359865575118 25.143299904522 60.3359546709378 25.1432893786231 60.3359387048992 25.1432844159062 60.3359066646266 25.143275746714 60.3358745423226 25.1432682779264 60.3358423474669 25.1432620452354 60.3358100980079 25.1432570476176 60.3357778298422 25.1432532830296 60.3357616910195 25.1432520260444 60.3357293950465 25.1432501290966 60.335346836997 25.143236376127 60.3353463276203 25.1432204804187 60.3352988755138 25.1414209032274 60.3352559870668 25.1399499076526 60.3352457379208 25.1395697676571 60.3352315370181 25.1390575101028 60.3352233209699 25.138734250024 60.3352214337396 25.1386744998199 60.3352195949602 25.1386130801219 60.3352038778238 25.1380883728677 60.3351764544975 25.1372186300012 60.3351540320863 25.1363722454677 60.3351306568379 25.1356510845605 60.3351108379359 25.1349980577276 60.335091630293 25.1343401776247 60.3350726495827 25.1336948581853 60.3350415501722 25.1326683686232 60.335040976184 25.1326569154557 60.3350405217208 25.1326322302898 60.3350361092506 25.1323909691551 60.3350348446683 25.1323693557802 60.3350015853694 25.1313266686817 60.3349835512399 25.1308180787442 60.3349716039299 25.1304090905387 60.3349580057449 25.1299377308925 60.3349435137093 25.1294948839697 60.3349301828437 25.1290395610093 60.3349169126645 25.1285561178873 60.3349000660948 25.1279233997707 60.3348833612283 25.1272958554196 60.3348630859709 25.1264763172438 60.3348459811069 25.125969344854 60.3348274659007 25.1254077054933 60.3348198173312 25.12510666617 60.3348164558061 25.1249816553245 60.3347972523963 25.1243256871167 60.334798055393 25.1242769255445 60.3347877325897 25.1239475790494 60.3347853938892 25.1238779463937 60.3356311903186 25.1230452423412 60.3356390485374 25.1230375803661 60.3359205292653 25.1236993029339 60.3360868086192 25.1240990606855 60.336179678915 25.1243132568229 60.3364068774997 25.1248926920824 60.3364305794092 25.1249239252521 60.3364379093052 25.1249412054017 60.3366491346464 25.1254536248281 60.3367008274525 25.1255788957629 60.3368009730271 25.1258194243942 60.3369535200802 25.1261858751422 60.3370899827648 25.1265135915516 60.3372292996415 25.1268482492508 60.3373075333654 25.1270361950042 60.3373450032593 25.1271254704136 60.3373805214939 25.1272100928571 60.3376120356813 25.1271900103785 60.337655595338 25.1271862271789 60.3377035874789 25.1271776784738 60.338479415718 25.1271025139672 60.3389819554576 25.1270568190816 60.3391257994877 25.1270415428015 60.3391950154328 25.1270343496434 60.339597382762 25.1269934350734 60.3398405409259 25.1269666480896 60.3399377856077 25.1269561444255 60.3400236901023 25.1269445876236 60.34001889356 25.1268100175956 60.3400157766699 25.1266945941557 60.3399932548425 25.1258572993156 60.3399907915029 25.1257717356255 60.3399894776427 25.1257269472408 60.3399690956032 25.12510553257 60.3399643655689 25.1249598881695 60.3399621057793 25.1248907110102 60.3399609405813 25.1248545752479 60.3399554813896 25.1246992788649 60.3401560868415 25.1246935620807 60.3403563048309 25.1246667399215 60.3405116575327 25.1246198975408 60.340665816972 25.124559134691 60.3408970608578 25.1244447683123 60.3411253921412 25.1243085697202 60.3412884700417 25.1242051627034 60.3414465864145 25.1241040327698 60.3417567595994 25.1239083513429 60.3419088348808 25.1238138351301 60.341905685244 25.123700726508 60.3419054298302 25.1236915359518 60.3419020298404 25.1235734223447 60.3418752363611 25.1228497060818 60.3418651152319 25.1224744139869 60.3418551076954 25.1222331710427 60.3418503449852 25.1221267694165 60.341826213885 25.1215113350982 60.3418241113451 25.1214095463615 60.3417995300962 25.120695128526 60.3417844047752 25.1203055386884 60.3417743314899 25.1199900429467 60.3416903611438 25.1199935344744 60.3413961397978 25.120022462119 60.3413709406276 25.1200251625676 60.3413426436337 25.1200285486498 60.3409958697006 25.1200610615055 60.340973152988 25.1200633834711 60.3406503293605 25.1200899873651 60.3402064732306 25.1201387574711 60.3398180536585 25.1201814735165 60.3394361756285 25.1201704148765 60.3391416153647 25.1201613987215 60.3387520358439 25.1201506566886 60.3382879142823 25.1201400908263 60.3381670604505 25.1199322317605 60.3380876853945 25.1197957653834 60.3380348759555 25.1197049692125 60.3380139340971 25.1196689411209 60.3379851254185 25.1196202662409 60.3379581746419 25.1195689660655 60.3379406755983 25.1195363274263 60.3379000825855 25.1194596497191 60.3375358850667 25.1188324717998 60.3366519335477 25.1173116585279 60.3363875084601 25.1173479288562 60.3360973642418 25.1173876008286 60.3356102895298 25.1174540536688 60.3355636530769 25.115275973677 60.3355340971233 25.1141327722538 60.3355253714931 25.1137955924008 60.335520555991 25.1135694798981 60.3355088637146 25.1131094206994 60.3355001830815 25.1127262395429 60.335495296975 25.1125300788263 60.3354935136747 25.1124405206697 60.3354811035491 25.1118081201057 60.3354635916075 25.1110829658118 60.3354472076451 25.110404597504 60.3354292761471 25.1096624749352 60.3354086424971 25.1088089630392 60.3354022254043 25.1085434675177 60.3353864877296 25.1078924929529 60.3353748067756 25.1074093733244 60.3353586476636 25.1067411766853 60.3353411693318 25.1060184343539 60.335324859681 25.1053445769335 60.33530722605 25.1046158843256 60.3352913957786 25.1039616571123 60.335276123106 25.1033310044333 60.3352483712207 25.102188639043 60.3351615931732 25.1023503177399 60.3345446677671 25.1034998050999 60.3341344867171 25.1042640427533 60.3338669003746 25.1047625612909 60.3338634970007 25.1047689000572 60.333851027026 25.1047969786769 60.3338039053593 25.1049030640772 60.3336571777124 25.1052383142351 60.3336454961984 25.1052650061899 60.3336192274446 25.1053249897037 60.3335532718002 25.1054726909542 60.3333656469006 25.1058927699753 60.3331582562234 25.1063660541983 60.3329160382564 25.1069052075064 60.3327717461106 25.1072295557096 60.3326761630823 25.1074444162947 60.3324337471557 25.1079926768987 60.3324029183367 25.1080598580987 60.3323799747277 25.1081106049735 60.3323725820181 25.1081269381976 60.3321386430529 25.1086576152788 60.3319167779362 25.1091501241405 60.3317118885849 25.1096125154559 60.3315185954716 25.110042891619 60.3313099733328 25.1105209029706 60.3312053422073 25.1107529144516 60.3310990652587 25.1109885881295 60.3309435584849 25.1113359554646 60.3308877849196 25.1114605274604 60.3306797520934 25.1119291573173 60.330468914968 25.1124002798185 60.3302015785525 25.1130045364702 60.329930274208 25.1136122726127 60.3299006668132 25.1136802784099 60.3298705471253 25.1137495272794 60.3294523780025 25.1146847056635 60.3287438872249 25.1163224202459 60.3286839755046 25.1164620482996 60.3286546260999 25.1165318815244 60.3284763907639 25.1169559100775 60.3284213461286 25.1170872856582 60.3282307298335 25.1175421792289 60.3280360075509 25.1179938986093 60.3279788950028 25.1181283601803 60.3273100297368 25.1197016819562 60.3269978020387 25.120428701912 60.3267453124739 25.1210069242428 60.3265932404071 25.12136080895 60.3261982858487 25.1222798073277 60.3260211432027 25.1226896180275 60.3258460542767 25.1230948508402 60.3256812220594 25.123491267831 60.3254208446637 25.1241141593723 60.3251617761271 25.1247313512709 60.3237450631472 25.1280627897628 60.3231949201363 25.1293403394234 60.3228177179126 25.130216275664 60.3216143958884 25.1330811407014 60.3215836278996 25.1331509701161 60.3215805643311 25.1331579359965 60.3215379413465 25.1332546461357 60.3215325274542 25.1332669254155 60.3215046057075 25.1333303080934 60.321484071166 25.1333767533664 60.3204802949588 25.1356469288486 60.3202080977218 25.1366427131735 60.3200809940501 25.1370841045383 60.319368572819 25.1398806159088 60.3176906660423 25.1462090360155 60.3172144616991 25.1481088275591 60.315558947105 25.1543564220279 60.3147444817515 25.157378191797 60.3146452952244 25.1578396157387 60.313983245787 25.1602898323993 60.3137558455981 25.1611525684906 60.3132631209474 25.163021765252 60.3128418830177 25.1646259214977 60.3125890723262 25.1655574770868 60.3123521460313 25.166448896342 60.3118745815263 25.1682784295876 60.3114811740387 25.1696130499594 60.3110409571507 25.1701468362161 60.3104495833611 25.1708801550885 60.3104065683311 25.170933356977 60.3098977190894 25.1715877415882 60.3085364370686 25.1732401497779 60.3074455756947 25.1745904284697 60.3057549630395 25.1766662069069 60.3034636167903 25.1794892641226 60.3022462846492 25.1809897243148 60.3011737307254 25.1823116224229 60.3008460450961 25.1827154637622 60.3004700284914 25.1831749691399 60.2986556424279 25.1853919466952 60.2975831889092 25.1866452893079 60.2970131415457 25.1873214838335 60.2964610330062 25.1879955394307 60.2960445705813 25.1884883188263 60.2958291628699 25.1887587596845 60.29544856681 25.1892369235106 60.2946008034675 25.1902673040785 60.2931396944126 25.1920222643474 60.2922467506372 25.1930682902581 60.288184604849 25.1913389746364 60.2875919254286 25.1910945933393 60.2866976697361 25.1907152029411 60.285681338778 25.190249963766 + + + + + + Vantaa + + municipality + + + + + + + + + 59.9014047844099 24.8314125208895 60.0080220376038 24.7454155800464 60.0294336769579 24.7143027645329 60.0340362277903 24.7076217340983 60.051737963188 24.6818517637624 60.0621660211627 24.6722631188721 60.073773769958 24.6615842794906 60.0756076925176 24.6598963352101 60.0756322292725 24.6598737429116 60.0756374706679 24.659868913141 60.0758187838365 24.6597020349933 60.076593687914 24.6589901384277 60.0767882510264 24.6588086119672 60.0768255872339 24.6587737844988 60.0786995193898 24.6570552293853 60.0797235704359 24.6561142806131 60.0797435904212 24.6560958688119 60.0800372386367 24.6558260586325 60.0811535423707 24.6547952849055 60.0813877472964 24.6545887395537 60.0813914243938 24.6545853677266 60.0814248713983 24.6545546725143 60.0817611693254 24.6542505177859 60.0823697556591 24.6537001959332 60.0849540492306 24.6513005690135 60.0849926841176 24.651266638687 60.0850533551848 24.6512150640413 60.0850714405973 24.6511985281271 60.0851319109542 24.6511442522142 60.0853922333056 24.6509048486537 60.0855446112726 24.6507637744106 60.0865124591637 24.6498677730762 60.0865531913394 24.6498300575056 60.0909616524089 24.6457418070561 60.0910445974667 24.6456649005242 60.091145525889 24.6455713148396 60.0912312849755 24.6454955555364 60.0912365344592 24.6454907025506 60.0912501434492 24.6454780768197 60.0913264935392 24.6454036179717 60.0921365483067 24.644652827042 60.092267121591 24.644766674053 60.092337521282 24.6448353015632 60.092350338639 24.644847840214 60.0923746654701 24.6448716079878 60.0984451855796 24.650808088884 60.1007756549742 24.6530877657168 60.1061691093981 24.6547482319093 60.1075660370655 24.6539028657569 60.1173780512753 24.647964351354 60.1179276724347 24.6476703029944 60.1263372681024 24.6431697039727 60.1277015405396 24.6424393462577 60.1276871631626 24.6422176843289 60.1277396954622 24.6421939928485 60.1277491414903 24.6421897337555 60.1277513337403 24.6421887486153 60.1300387079421 24.6411571329795 60.1304819210222 24.6409507294419 60.131209040292 24.6400580216347 60.131244272349 24.6400147469344 60.1313076429789 24.6399369348416 60.1327242610129 24.6381973592196 60.1334658800493 24.6393298674072 60.1342353307161 24.6405049321752 60.1345923175348 24.641050141813 60.1362877238985 24.6404244798168 60.1367037812209 24.6387419518925 60.1374869484122 24.6355745800157 60.1376954772947 24.6347311783972 60.14219612731 24.6316569861838 60.1492577925701 24.6268316614017 60.1492867670474 24.6268118614526 60.1494036853424 24.6267319571232 60.1526525568521 24.6198306648856 60.1531331254057 24.6188096507074 60.1550896327705 24.614652420602 60.1555324560598 24.6137113708737 60.1557180350928 24.6133170236455 60.1557968945379 24.6131494219417 60.1558857406828 24.612849127088 60.1560121209253 24.6124219782006 60.1564443559697 24.6109609670238 60.156550452143 24.6106023337903 60.156563837872 24.6105570832472 60.1566443555351 24.6102849156617 60.1566556240233 24.610246792917 60.1566616437218 24.6102264420397 60.1567486890656 24.6099322449567 60.156753269676 24.6099167741871 60.1567706086019 24.6098581342896 60.1568689037746 24.6095258313372 60.1569356348288 24.6093016786224 60.1570393748665 24.608954090721 60.1573344436923 24.6079653457397 60.1598854058894 24.5994157410727 60.1598845216703 24.5983888016432 60.1598782865138 24.5940033541195 60.1598763335248 24.5926480698737 60.1598761921647 24.592554791398 60.1639110841193 24.5890069312111 60.1653017711657 24.587783891223 60.1637699142958 24.5770114024754 60.1679250949502 24.5673822415781 60.1703108347069 24.5698781240564 60.1726188168719 24.5722930332656 60.1740842862205 24.5701160403686 60.1752225445551 24.5684723275098 60.1753475373573 24.5682918166625 60.1754526677426 24.568204754908 60.1757619617371 24.5679990154805 60.1759389279086 24.5679549106491 60.1761542481184 24.5679502363654 60.1762852629962 24.56792898672 60.1763721348193 24.5679013727212 60.1766559737083 24.5678161988088 60.1767352095866 24.5677890588695 60.1770029819352 24.5676889501071 60.1771999766815 24.5676001169169 60.1773556405606 24.567602810808 60.1775860191047 24.5677034878728 60.1778928531306 24.5678912921691 60.1781524734074 24.5681506507743 60.1784213110581 24.5684903569787 60.1786040974661 24.5687389413517 60.1787508330608 24.5688900341467 60.1789576280454 24.5689960027295 60.1791396798613 24.5690249031144 60.1792920474557 24.5690761067997 60.1793004392827 24.5690492646352 60.1793183592704 24.5689919074404 60.1793342770837 24.5689409741266 60.1794733175957 24.5685160310804 60.1808815691342 24.5637123738058 60.1809193322071 24.5635632566028 60.1809354111553 24.5634992126405 60.1810220366199 24.5631539120396 60.181046886905 24.563053940697 60.1816836071277 24.5604487809859 60.1818010846537 24.5599724000387 60.1820831082941 24.5588154306922 60.1820786139819 24.5586714424177 60.1820749607056 24.5575977030037 60.182291002185 24.5570278775955 60.1825353559203 24.5563216437695 60.1827677869558 24.5568078975653 60.1828300042172 24.5565341013572 60.1828385030025 24.55622773834 60.1828765558086 24.5547615418067 60.1832545396337 24.5533793933474 60.1840534852824 24.5538407930926 60.1844799973404 24.5529203093913 60.1847972176251 24.5522261382598 60.1849864309748 24.5518143227156 60.1851047650266 24.5515449034327 60.185695636647 24.5501948786701 60.1861374402437 24.5492131651028 60.1863152624561 24.548822691711 60.1865737388679 24.5482421171095 60.1872360946375 24.5467577483467 60.1876595416965 24.545810611356 60.1877784422562 24.5455399147981 60.1898694941426 24.5408638518756 60.1910975348967 24.5380798970616 60.1921158473784 24.5358454875599 60.1935770398076 24.5325970062413 60.1941406099469 24.5313725894305 60.1946759878485 24.5302093394843 60.1953820684189 24.5286777241096 60.1956077775278 24.5287536692162 60.1960334563888 24.5280854855007 60.1953921537345 24.5266967709335 60.1954112127184 24.5251474383127 60.19541509697 24.524831081242 60.1954210784287 24.5243447243936 60.1954518883217 24.5218343614809 60.1954616685308 24.5210367933626 60.1955185807335 24.5163881460951 60.1957006323338 24.5202069858569 60.1957096229122 24.5203956015323 60.1958367292539 24.5230636173556 60.1958534172573 24.5234139197511 60.1960524625999 24.5275940987207 60.1960720126944 24.5279935030171 60.1961338660167 24.5291721346889 60.1962464154693 24.5315831883207 60.1963026877252 24.5327108078437 60.1963366821713 24.5334373125303 60.1963680146413 24.5341194502329 60.1964003924013 24.5348299656528 60.1964684024163 24.5362121242726 60.1975700663992 24.5363339627793 60.1979552274226 24.5363666996924 60.1984563921413 24.5364093057085 60.1989741659421 24.5364533198693 60.2001341029515 24.5365161787866 60.2001770319714 24.536512706592 60.2003242597466 24.5365007445152 60.2003527562694 24.5364984268699 60.2005714095769 24.536480674681 60.2008477640112 24.536478986802 60.2017609126405 24.5364755204348 60.2026231116263 24.5364577193038 60.2027797991624 24.5364544849864 60.203526959133 24.5364395719755 60.2045162622098 24.5364194164983 60.2045663422702 24.5364183851071 60.2049349496192 24.5352483752274 60.2053162554033 24.5348307547221 60.2055826279739 24.5347009685285 60.2056060236917 24.5345799094466 60.2055828449472 24.5338031857191 60.2056434538018 24.5338345333903 60.2056658853692 24.5338422884384 60.2057863802002 24.53388399341 60.2060049560002 24.5339485294752 60.2061095126777 24.5330288004078 60.2061934530144 24.5322903842304 60.2062580098425 24.5305731139715 60.2062867384891 24.5298088606794 60.2063479637965 24.5281791342011 60.206289987633 24.5281676508192 60.2061856137977 24.5281316294406 60.2062255820884 24.5276996090637 60.2053480212358 24.5247476339477 60.2061153309242 24.5225483348447 60.2065953571379 24.521172362861 60.2069928020054 24.5200329913021 60.2075089685001 24.5185532957141 60.2082679211572 24.5163773830529 60.2085154169614 24.5156676878441 60.2128622321022 24.5032010475443 60.2141154101136 24.5029444087323 60.2153625749109 24.50259842191 60.2163596699886 24.5065280543054 60.2164013804876 24.5066924540496 60.2165622421107 24.5068619596362 60.2173159131559 24.5076385530347 60.2173892809121 24.5077141416688 60.2180128577977 24.5083534211498 60.2198753357904 24.5102629460836 60.2199027631006 24.5106017971585 60.2209060096656 24.5115909433199 60.2211129836057 24.5115717832605 60.2216712693421 24.5121560948948 60.2245044881499 24.5151216633696 60.2258564295267 24.5164458155999 60.2264850751555 24.5170627678005 60.2280123237294 24.5199421858609 60.2288833079696 24.5215155049705 60.2300050232825 24.5235666907611 60.2305829542845 24.524647393485 60.2310214090186 24.5254062778777 60.2324011283235 24.5253720705086 60.2331607727371 24.5253532232526 60.2335133959748 24.5253443968416 60.2335385205228 24.5253438382082 60.2381083461436 24.5252304892373 60.2383835894891 24.5252236676129 60.2414516155534 24.5251475246252 60.2446973004568 24.5250670214747 60.2447246623147 24.525065046486 60.2455048535961 24.5250092983554 60.2463400844079 24.5250262494733 60.2465800909498 24.5250187033434 60.2466807901509 24.52478647264 60.2467612463689 24.5245853520615 60.247266662422 24.5234191823563 60.2477327727528 24.5223317229719 60.2478616401324 24.5220317444564 60.2484200954541 24.5207332050874 60.248560205702 24.5204067545318 60.2486126138187 24.5202846679647 60.2492872586915 24.518712739989 60.2496650657745 24.5178323891059 60.2496960370662 24.5177602090524 60.2501136564953 24.5167759520173 60.2506559733088 24.5154908339937 60.2506791159515 24.5154357622719 60.2510940796405 24.514448248352 60.2511164742034 24.5143949850346 60.2515926851175 24.5132760248599 60.2523773873403 24.5114321540858 60.252697082385 24.5106998687415 60.254625305602 24.5062034442135 60.2548443731905 24.505691181645 60.2554298929334 24.5043338152085 60.2554753377357 24.5043356510561 60.2555136623707 24.5043371975796 60.2559196918383 24.5043417631105 60.2559576766573 24.5043410036221 60.2565807215125 24.5043473912768 60.257034689628 24.5043531327296 60.257534060811 24.5043627922161 60.2588206708032 24.5043692092805 60.2592730195265 24.5043652753751 60.2597214934337 24.5043726463346 60.260169975945 24.5043799986068 60.2607565546215 24.5043919655129 60.2610674927103 24.5043863084958 60.2619371559098 24.5044028395088 60.2620510771677 24.504405010544 60.2620778034425 24.5044050721786 60.2630316488958 24.5044068200477 60.2630454294938 24.5044068371393 60.263927029426 24.5044084642977 60.2654268202726 24.5044115852982 60.2659732014848 24.5044122390772 60.2680450300516 24.5044160637247 60.2686407369238 24.5044214398447 60.2691338302361 24.5044278704093 60.2695612004471 24.5044299045574 60.2700741364915 24.5044314956854 60.2740880032284 24.5044435426542 60.2746929361773 24.5053704944791 60.2751800435053 24.5061279480534 60.2752680850907 24.5062645679677 60.2755486504447 24.5067008542523 60.2762549933927 24.5077946817186 60.2762940864329 24.5078553580436 60.2780744453567 24.5106012615667 60.2811431395941 24.515340555867 60.2812912654032 24.5155677495439 60.2812912654032 24.5155677495439 60.2814908259494 24.515500504247 60.2820572973767 24.5153080824854 60.2821053750089 24.5152903044236 60.2824013488302 24.515189776927 60.282548108682 24.5151404287648 60.2835125889159 24.5148102967847 60.2839455421091 24.5146600827908 60.2849903527973 24.5143023274395 60.285491733361 24.5114574105741 60.285640844014 24.5105946845672 60.2857872097689 24.5097477917542 60.2859342507133 24.508896949628 60.2861234144292 24.5078023046585 60.2867136995129 24.5043861151328 60.2875919626568 24.4993021355693 60.2894582505152 24.5050402734888 60.2901341557253 24.5071287731407 60.2905747418286 24.5084794386312 60.2912886727131 24.5106921660516 60.291639549062 24.5117396808317 60.2917338061068 24.5120353406412 60.2925985968015 24.5117216821492 60.2936829315261 24.5113574675473 60.2937237472253 24.5113433600812 60.2955887692273 24.5106990383307 60.2956399296826 24.5106813730459 60.2965357600959 24.5103799913043 60.3020297523938 24.50852496762 60.3033468017248 24.5080479461068 60.3091759810518 24.5060880264352 60.3092600360377 24.5060597620381 60.3116356281186 24.50524591817 60.3116742674569 24.5052326669724 60.3117184562587 24.5052169099669 60.3121662950917 24.5050571631749 60.3130087076807 24.5047566240215 60.3134951748702 24.5045830689649 60.3157296491422 24.5038130828422 60.3201072604815 24.5023274332579 60.3208520399187 24.5020546739035 60.3208685400957 24.502048359498 60.3212443111306 24.5019468282682 60.3262861331876 24.5001666696735 60.3252024419155 24.5057562963364 60.3250344128749 24.5065907429625 60.3248530729991 24.5075625645735 60.324834001647 24.5076641035776 60.3248056633368 24.5078166177973 60.3248150127099 24.507809800142 60.324831795387 24.5077969811839 60.3248378904549 24.5077919514461 60.3248540733603 24.5077763704042 60.3248579515897 24.5077719263537 60.3248729683468 24.507752122883 60.3248876238747 24.5077312600485 60.3248993683094 24.5077156370191 60.3249148541173 24.5076973737217 60.3249310070467 24.5076816318466 60.3249399418922 24.507674266061 60.3249566556565 24.5076611261689 60.3249734393358 24.5076483613446 60.3249903105315 24.5076359521313 60.3250072137257 24.5076238121887 60.3250241572101 24.507611904655 60.3250408832204 24.5076003759934 60.3250906811384 24.5075665978704 60.3250929969877 24.5076191902183 60.3252100713684 24.5102759812173 60.3252067022144 24.5102908204923 60.3251929364168 24.5103136434671 60.3251880315752 24.5103174770961 60.3251702398437 24.5103191223384 60.3251524758993 24.5103140991402 60.3251352750528 24.5103089243595 60.3250995991132 24.5103010449501 60.3250858722203 24.5102986126159 60.325050103567 24.5102924974413 60.3250429930973 24.5102912819811 60.3250251003983 24.5102884967615 60.325007181825 24.5102867279516 60.3249892490793 24.5102870796681 60.3249714206697 24.5102910826461 60.324966138356 24.5102929885987 60.3249487413009 24.5103017953851 60.3249318178796 24.5103138267588 60.3249153222027 24.5103280717781 60.3249073379022 24.5103358353986 60.3248440072397 24.5104039531562 60.324827913562 24.5104199970641 60.3248090703928 24.5104364858959 60.3247923074268 24.5104494106632 60.3247753939778 24.5104614954847 60.3247583899676 24.5104730618633 60.3247454266198 24.5104816575593 60.3247283406792 24.5104926867143 60.3247111734869 24.5105032148335 60.3246764677113 24.5105217089205 60.3245866466958 24.5105567917053 60.3245777977668 24.5105605995898 60.3245077150047 24.5105919686855 60.3244901012476 24.5105987990785 60.3244724344884 24.5106042386749 60.3244013762845 24.5106247768879 60.3243845180671 24.5106316583778 60.3243669630514 24.5106392269448 60.3243493733309 24.510646381512 60.3243316561354 24.5106520060444 60.3243137879247 24.5106553234123 60.3243012296052 24.5106558089832 60.3242813971234 24.5106535336582 60.3242603368991 24.5106518952863 60.3238775554545 24.5127023517123 60.3230159076718 24.517098080227 60.3214503988976 24.524935585953 60.320592133434 24.5294418145573 60.3196835040517 24.5341286767347 60.3186023974098 24.5396386029543 60.3184154858077 24.5406114700517 60.318365692319 24.5408706360097 60.3174939098394 24.5454076491912 60.3166457984644 24.5497653952478 60.3164353403138 24.5508074017484 60.3161232119106 24.5523974013412 60.3160169955154 24.5529528440173 60.3157361934392 24.5543652309141 60.3156469765477 24.5548236805266 60.3155366213213 24.5553758848167 60.3153359904677 24.556382621056 60.3150955289754 24.5576086877826 60.3149128929238 24.5585039856583 60.314894005208 24.5586039089539 60.3143032242199 24.5617276328117 60.3141596379415 24.5624868575234 60.3147576270403 24.5644493555748 60.315483477439 24.5668317769641 60.3195694924801 24.580096401722 60.3199851712965 24.5814920311725 60.3204156652293 24.5829375122641 60.3206483184606 24.5837187406024 60.3208880839969 24.584523833148 60.322105572236 24.5886125373626 60.3241852489809 24.5956537259397 60.3257711374959 24.597387404216 60.3259865871789 24.5976187605757 60.3260004512215 24.5976338636736 60.3274178962126 24.5991802892875 60.3274449370794 24.5992097696106 60.3290065029035 24.6009135974063 60.3295781905854 24.6015374001184 60.3296311489057 24.6015934072999 60.3297811407288 24.6017520269801 60.3298072666317 24.6017796220101 60.3299833844307 24.601965856804 60.3299860783611 24.6019687933515 60.332779700304 24.60500007924 60.3328072510929 24.6050300208724 60.3328344339082 24.6050594822065 60.3334818330111 24.6058173774448 60.3336624476539 24.6060092496297 60.3341856467476 24.6066550075373 60.3343913421504 24.606908867877 60.3352419612455 24.6079006309271 60.3353524921321 24.6079748748305 60.3440675925244 24.6138214311446 60.34605939038 24.6151920082481 60.3480422952247 24.6165595008348 60.3496398033426 24.6176646297439 60.3501691563678 24.6180251319038 60.3503610665011 24.6181571720004 60.3512063942019 24.6190844772937 60.3523754436435 24.6203721734861 60.3525448865877 24.6205585032457 60.3544534180794 24.6226527412152 60.3567295813235 24.6251612502803 60.3581362391014 24.6267116805832 60.358140978937 24.626717047677 60.3591321554618 24.6278362070974 60.3591321554618 24.6278362070974 60.3591229490257 24.6279248940881 60.3589984437009 24.6291230857898 60.3589735159192 24.6293629098646 60.3589241825947 24.6298376592994 60.3589133459647 24.6299418039276 60.3584337906591 24.6345557177232 60.3583679067832 24.6351893670048 60.3582816362817 24.6360189798275 60.3584858270282 24.6372891058643 60.3585925827927 24.6379984352338 60.3588712267042 24.6397588244247 60.3589940267917 24.6405130309709 60.3590219936358 24.6406899629063 60.3590589436347 24.6409236546793 60.3592724744285 24.6422966860585 60.3593351013388 24.6427269205863 60.35962235228 24.6445635237467 60.359784231097 24.6456006351386 60.360352789623 24.649240397198 60.3604853927802 24.6500929385831 60.3605065105054 24.6502210375558 60.3608017753475 24.6520921709479 60.3608133309496 24.6521656701893 60.3608319159309 24.6522837263986 60.3609779337935 24.6532119246786 60.3627687385988 24.6647085579956 60.3631153393868 24.6651270470959 60.3635117111968 24.6656079785808 60.3638034527192 24.6659614775281 60.3638183398593 24.6659770066129 60.3639007023393 24.6660697361956 60.363888005615 24.6660756315504 60.3638182766639 24.6661100887821 60.3638035742036 24.6661183944835 60.3637693666751 24.6661403003078 60.3637525393351 24.6661529290901 60.363736084366 24.6661673266283 60.3637200485306 24.6661835983882 60.363704290194 24.666201863309 60.3636892128198 24.6662215666089 60.3636747215364 24.6662429326958 60.3636608419858 24.6662658871936 60.3636342448893 24.6663145421372 60.3635830570094 24.6664161333158 60.3635777384005 24.6664268326282 60.3635269700293 24.6665293002126 60.3635026646155 24.6665826329723 60.3634796756835 24.6666383016363 60.3634678569229 24.6666696682901 60.3634474152079 24.6667292169863 60.3634188317308 24.6668213382029 60.3634110314867 24.6668477748096 60.3634020235584 24.6668791035701 60.3634019055848 24.666879547249 60.3633766222806 24.6669749504788 60.3633691145279 24.6670078222172 60.363362246196 24.6670413010923 60.3633560791307 24.6670753282788 60.3633541148772 24.6670872746846 60.3633489204383 24.667121957727 60.3633443609713 24.6671569943381 60.3633370082533 24.6672279024326 60.3633222357077 24.6674432431208 60.3633200516392 24.6674739025164 60.3632900526308 24.6678311140507 60.3632570988271 24.6682611670349 60.363255486788 24.6682798888172 60.3632346481414 24.6685300096338 60.3632288253174 24.6686380210008 60.3632278843556 24.6686653089593 60.36322325054 24.6688099044305 60.3632210063337 24.6688458633601 60.363217695882 24.6688814632097 60.3632131904123 24.6689165318241 60.3632131904123 24.6689165318241 60.36320734067 24.6689507534303 60.3632000066897 24.6689838297267 60.3631911273439 24.6690153479699 60.3631812001831 24.6690455083724 60.3631603063706 24.6691044344324 60.3631565407683 24.6691156025495 60.3631078538998 24.6692677689447 60.363097401985 24.6692972049992 60.3630862495173 24.6693256211044 60.363078652432 24.6693431743029 60.3630663317997 24.6693695157432 60.3630534435995 24.6693947370603 60.3630400416601 24.6694188344099 60.3629985521583 24.6694880988041 60.3629912231439 24.6695004461822 60.36295057656 24.6695716812798 60.3629247536325 24.6696220361973 60.3629178240765 24.6696366762563 60.3628112716397 24.6698816882239 60.3628078132803 24.6698888626632 60.362781953075 24.6699391472233 60.362754764348 24.6699864073732 60.362726394134 24.6700308320993 60.362697050363 24.6700724972326 60.3626871217365 24.6700856646799 60.3626719570012 24.6701050272087 60.3625172504476 24.6702886238011 60.3625064101224 24.6703025634445 60.3624020915634 24.670443880198 60.362391729964 24.670457459143 60.3623304325858 24.6705328315623 60.3622356291184 24.6706358385453 60.362231161619 24.6706402739575 60.3621029846563 24.6707707966298 60.3620953133389 24.6707795046482 60.3619425238518 24.6709695225027 60.3619363910184 24.670976833096 60.3619052684461 24.671012856571 60.361746262986 24.6711808293157 60.361733660465 24.6711941687032 60.3616551811081 24.6712819711408 60.3616097635061 24.6713403579226 60.3616040108431 24.6713483484741 60.3615449458129 24.671430684765 60.3615296188469 24.6714495135211 60.3615138714557 24.6714669033951 60.3615081425844 24.6714726617092 60.3614917759996 24.6714875206997 60.3614750451322 24.6715005559908 60.3614579874533 24.6715118555817 60.3614407256153 24.6715217552708 60.3614232986745 24.671530433614 60.3614057434677 24.6715379423869 60.3613915900459 24.6715432499674 60.3613738695132 24.6715490115217 60.3613382466344 24.6715578456171 60.3612845501176 24.6715656117704 60.3612790064556 24.6715660435602 60.3612431536642 24.6715689279448 60.3612252564846 24.6715717824967 60.3612074973047 24.6715768758061 60.3611899638418 24.6715846005572 60.3611731418165 24.6715949946275 60.3611565008735 24.6716085491991 60.3611404444994 24.6716247095983 60.3611248693468 24.6716427034385 60.3611096857955 24.6716620293632 60.3610948909916 24.6716825243702 60.361081048733 24.6717030420712 60.3610669059177 24.6717253764472 60.3610531656694 24.6717486431775 60.3610398756978 24.6717730020628 60.3610271356382 24.6717985003962 60.3610150002691 24.6718251886714 60.3610110296426 24.6718349196442 60.3609761538577 24.6719177403012 60.3609638048318 24.6719440266527 60.3609613343161 24.6719486275282 60.360947631815 24.6719720001964 60.3609331203672 24.6719932907641 60.3609179466854 24.6720126701048 60.3609022648683 24.6720302178968 60.3608542425117 24.6720793947758 60.3608360323772 24.6720987548771 60.3607893928415 24.6721530372872 60.3607595190345 24.6721931944088 60.3607450645475 24.6722146620255 60.3607369777756 24.6722273520997 60.3607094704958 24.6722739046761 60.3606570279188 24.6723728283806 60.3606181277641 24.6724494971222 60.3605936796401 24.6725025043246 60.3605900632579 24.6725109223388 60.3605785491059 24.6725387262272 60.3605567955941 24.6725963465272 60.3604977079666 24.6727780511451 60.3604573939587 24.6728991924985 60.3604463691484 24.6729277591141 60.3604345301364 24.6729549693521 60.3604219115414 24.6729807482096 60.3604087880904 24.6730043688931 60.3603947657963 24.6730269293695 60.3603802548075 24.6730482553275 60.360305039131 24.6731470776909 60.3602927566715 24.6731643459707 60.3602485617295 24.6732264303196 60.3602333196754 24.6732455052712 60.3602175906142 24.6732629285215 60.3602041520529 24.6732757276574 60.3601875397443 24.6732893877083 60.3601535440721 24.6733126827372 60.3601415993432 24.6733199897362 60.3601243469647 24.6733299236388 60.3600895350469 24.6733476373139 60.3600543355281 24.6733616793941 60.3600467075632 24.6733641453028 60.3599579494891 24.6733907637322 60.3598687255827 24.6734349137247 60.3598336366748 24.6734501445127 60.3598289037093 24.6734517330875 60.3598111323076 24.6734566446743 60.359686050357 24.6734797592175 60.3596682779022 24.6734851241671 60.3596651543968 24.6734862897391 60.3596475683515 24.6734935816294 60.3596301626965 24.6735024563599 60.3596129618112 24.6735127671264 60.3595959823708 24.6735244402058 60.3595792330296 24.6735374568466 60.3595627987492 24.6735515389957 60.3595142911162 24.6735986789752 60.3594993826416 24.6736188537797 60.3594854457304 24.6736416792574 60.3594776480266 24.6736565238239 60.3594656234119 24.6736834016775 60.3594549401856 24.6737125049183 60.3594456182916 24.673743433202 60.3594375338155 24.6737757783052 60.3594305362462 24.6738091520335 60.3594245673201 24.6738433046814 60.359419587881 24.6738785654347 60.3594155430388 24.6739138502334 60.3594123305213 24.6739494746286 60.3594099766089 24.6739854004843 60.3594064653692 24.6740938316411 60.3594053605735 24.6741662606657 60.3594050923402 24.6741853374636 60.3594034534741 24.67436643876 60.3594045759639 24.6744388541239 60.3594062842634 24.6744749075454 60.3594088868406 24.674510734056 60.359412347177 24.6745462999947 60.3594140000281 24.6745606885553 60.3594186273687 24.6745956999015 60.3594240455533 24.6746302197217 60.3594301655018 24.6746642906308 60.3594369231483 24.6746978446634 60.3594594174583 24.6747966078251 60.3594660078952 24.6748252235344 60.3595038743458 24.6749894215898 60.3595209504818 24.6750531574215 60.3595301798121 24.6750842326689 60.3595348327372 24.6750991329196 60.3595746484831 24.6752196735947 60.3595829349312 24.6752517952802 60.3595894972765 24.6752854904255 60.3595939815189 24.6753205485114 60.3595958639775 24.6753501344229 60.3595958229289 24.675386330821 60.3595932155312 24.6754221660127 60.3595882268108 24.6754569196249 60.3595809546129 24.6754900225588 60.359570923466 24.6755199673679 60.3595592697027 24.6755429014583 60.359544073113 24.6755620260624 60.3595271703217 24.6755739827099 60.3595094208915 24.6755791272514 60.3594915204431 24.675581798329 60.3594735806387 24.6755827314447 60.3594556359886 24.6755823593337 60.359447810205 24.6755822457536 60.3593222309505 24.6755872000091 60.359306112871 24.6755870060697 60.3591985189987 24.6755787299027 60.3591805753955 24.6755794456853 60.3591626801195 24.6755818987701 60.3591448638828 24.6755863045602 60.3591272211466 24.6755929283162 60.3591098444727 24.6756019266373 60.359092846898 24.6756135997262 60.3590901178944 24.6756157524092 60.3590737697157 24.675630661257 60.3590581069271 24.6756482955831 60.3590431981339 24.6756684691719 60.3590291286176 24.6756909220904 60.3590159118892 24.6757153995178 60.3590035345454 24.6757416485506 60.3589921305229 24.6757696233857 60.3589817780313 24.6757991733931 60.3589725478912 24.6758302391331 60.3589679125837 24.675848212279 60.3589605031813 24.6758811791973 60.3589542518075 24.6759151334669 60.3589491549805 24.6759498758798 60.358945191276 24.6759852085057 60.3589393619715 24.6760566853704 60.3589351040915 24.6761286486992 60.3589341735912 24.6761478811411 60.3589318689289 24.6761989979188 60.3589369365842 24.6763435531009 60.3589371649531 24.6763540537684 60.3589397118737 24.6766438132177 60.3589422941894 24.6767160511276 60.3589432654496 24.6767341146231 60.358959700894 24.6769489226004 60.3589615430821 24.6769849661003 60.358962623641 24.6770211182087 60.3589627580439 24.6770303562896 60.3589625553653 24.6770665815973 60.3589612819183 24.6771027017843 60.3589589450928 24.6771386256581 60.3589555417262 24.6771741721139 60.3589509529766 24.6772092226774 60.3589451741003 24.6772435056932 60.3589410342953 24.6772641451129 60.358933341999 24.6772968779407 60.3589245785355 24.6773284539621 60.3589244509224 24.6773288619611 60.3589148067052 24.6773588687061 60.3589041044053 24.6773879534341 60.3588926529619 24.6774158040373 60.3588806378125 24.6774427518389 60.3588681659819 24.6774687529574 60.3588404591156 24.6775209517549 60.3587426038447 24.6776799378116 60.3587291276755 24.6777024380819 60.3587022921967 24.6777505309072 60.3586766332613 24.6778011872851 60.3586523139326 24.6778544862757 60.3586407884045 24.6778822148372 60.3586297173297 24.677910763272 60.3586191439838 24.6779400378395 60.3586190160527 24.6779404277223 60.3586105182533 24.6779656198715 60.3586103906383 24.677966027864 60.3585917725052 24.6780274070072 60.3585747135078 24.6780911411726 60.3585358758109 24.6782544119981 60.3585298251268 24.6782798288405 60.3584495896552 24.6786038313965 60.3584422804609 24.6786369169292 60.3584374680455 24.6786596888977 60.3584180467238 24.6787610155424 60.3583703322815 24.6790724585025 60.3583660693661 24.679101501318 60.3583099378657 24.6794834959408 60.3583011301152 24.6795537499944 60.3582978060568 24.6795820369091 60.3582871162558 24.6796885804042 60.3582818084499 24.6797601993182 60.3582798233136 24.6797962422759 60.358278540149 24.6798323622552 60.3582779772147 24.6798685760928 60.3582782047024 24.6799047881405 60.3582792213484 24.6799409259617 60.3582797183226 24.679952422742 60.3582818189169 24.6799883928579 60.3582847417123 24.6800241232147 60.3582884505075 24.6800595982558 60.3582928886312 24.6800946588215 60.3582980304332 24.6801293792662 60.3583099031514 24.6801977462337 60.3583234156466 24.6802648543756 60.3583307121888 24.680297971158 60.3583347551022 24.6803155259807 60.3584451448226 24.6807303451917 60.3584522479542 24.6807575285335 60.3584988696815 24.6809534178307 60.3585560854698 24.6812242396035 60.3586092038257 24.6814934675846 60.3586321620791 24.6816356269037 60.3586457446441 24.6817408093994 60.3586561983589 24.6818473746773 60.3586613113944 24.6819191242491 60.3586645717255 24.6819912592734 60.3586658515425 24.6820636618878 60.358664949827 24.6821392294124 60.3586617612975 24.682211405365 60.3586349465907 24.6825695572621 60.3586339862626 24.6825866155257 60.358627482131 24.6827309217915 60.3586251165513 24.6827668287301 60.3586217299336 24.6828023911054 60.3586171666086 24.6828374386416 60.3586112411534 24.6828716399828 60.3586038345533 24.6829043508078 60.3585947859546 24.682935618797 60.3585842665841 24.6829649603495 60.358572508438 24.6829922864646 60.3585597857084 24.6830178677953 60.3585464930014 24.6830421840358 60.3585327129534 24.6830653381147 60.3585206196873 24.6830842563925 60.3584180563079 24.6832306478523 60.3584116749885 24.6832407471822 60.3583320227885 24.6833869620921 60.3583274928283 24.6833955700447 60.3583009082134 24.6834442561807 60.3582880634032 24.6834695375322 60.3582761107574 24.6834965325019 60.3582659574394 24.6835236898664 60.3582566242691 24.683554614903 60.3582488839777 24.6835872582283 60.3582425854512 24.6836211953976 60.3582375859166 24.6836559651096 60.3582337467016 24.6836913414906 60.3582309115065 24.6837271180497 60.3582212655382 24.6839072024021 60.3582152660363 24.6839877179604 60.3582081576656 24.6840587202451 60.3581994464916 24.6841289840077 60.3581836321474 24.6842328972916 60.3581586269869 24.6843687042086 60.35815243408 24.684398916541 60.3580728105983 24.6847635627099 60.358066699631 24.6847948751288 60.358043058206 24.6849316541652 60.3580129703374 24.6851403486455 60.3580115681905 24.6851506201719 60.3579759703282 24.6854313809113 60.3579683723118 24.6855021631948 60.3579676910893 24.6855089566159 60.357958397182 24.6856159781086 60.3579543321129 24.6856879603683 60.3579531646041 24.6857241077422 60.3579530223514 24.685760327477 60.3579542975777 24.6857964467109 60.3579571028154 24.6858322217539 60.3579615663346 24.6858672808762 60.3579652555495 24.6858888140148 60.3579725676945 24.6859218761235 60.3579814682247 24.6859533025459 60.3579916700548 24.6859831136379 60.3580029223005 24.6860113453199 60.3580149932803 24.686038104678 60.358027787145 24.6860635616961 60.3580411250964 24.686087765314 60.3581097686136 24.6862044022831 60.3581227410506 24.6862272176229 60.3581487426365 24.6862771416503 60.3581734429068 24.6863297146313 60.3581967409674 24.6863848167923 60.3582398076895 24.6865007474269 60.3582809760774 24.6866247729435 60.3582997543648 24.6866865058342 60.3583170713962 24.6867499561245 60.3583249140577 24.6867825459989 60.3583315978295 24.6868161608952 60.35833665777 24.6868509244217 60.3583398998083 24.6868865239471 60.3583409934572 24.6869106711019 60.3583409133691 24.6869468687089 60.3583388449104 24.6869828808415 60.3583349500355 24.6870182064463 60.3583294322538 24.6870526679064 60.3583226219352 24.6870861511452 60.3583150553246 24.6871190170693 60.3583068945388 24.6871512904536 60.3582891441086 24.6872142521241 60.3582815353849 24.6872390158759 60.3582516688958 24.6873294358386 60.3582515233089 24.687329845062 60.3582194993355 24.687416555566 60.3582193447769 24.6874169654242 60.3581848724612 24.6874997694845 60.3581727988959 24.687526571966 60.3581671888004 24.6875386827863 60.3580533783666 24.6877700242196 60.3580413319747 24.6877968426964 60.3580315776966 24.6878196185237 60.358009207729 24.6878762520551 60.3580090531689 24.6878766619086 60.3579780981692 24.6879649455031 60.3579123565489 24.6881810211805 60.3579077370301 24.6881963797808 60.3577944707668 24.688566079384 60.3577767382282 24.6886290742544 60.3577710233306 24.6886501493129 60.3576543695699 24.6891397919304 60.3576508594157 24.6891543827185 60.3575203387852 24.6896706233183 60.3575127439838 24.6897034535321 60.3575065898677 24.6897307966314 60.3574789834916 24.6898645501331 60.3574548188378 24.6900009790365 60.357434352297 24.6901398476546 60.3574181286059 24.6902809724298 60.3574115275689 24.6903539662951 60.3574019390297 24.6904975224544 60.3573964534264 24.6906420030605 60.3573948733112 24.6909679773921 60.3573958407841 24.6910428471795 60.3574065176507 24.6914798995283 60.3574202506992 24.6918410724609 60.3574244723613 24.6919130105794 60.3574250272452 24.691921692685 60.3574370439719 24.6921011989355 60.3574400747995 24.6921733663675 60.3574408195933 24.6922095589676 60.357440962659 24.6922457578484 60.3574408560175 24.6922587658136 60.3574400285778 24.6922949426501 60.3574383822089 24.6923310323279 60.3574358692255 24.6923668750303 60.3574324441418 24.6924024377069 60.3574279324151 24.6924374969822 60.3574222040462 24.6924718081994 60.3574151834931 24.6925051591155 60.3574133407848 24.6925128502923 60.3574047937051 24.6925446772525 60.3573950817891 24.6925751178739 60.3573843024674 24.6926040927405 60.3573725426283 24.692631432524 60.3573599012734 24.6926571483572 60.3573465222616 24.6926812482023 60.3573185578921 24.6927267045708 60.3572747499031 24.6927898530428 60.3572597901435 24.6928098217089 60.3572517091543 24.6928203652735 60.3571285545075 24.6929692268179 60.3570971124763 24.6930042489635 60.3569360642978 24.6931787051978 60.3569322945425 24.6931830149146 60.3568555683415 24.6932768820136 60.3568111541813 24.6933382403946 60.3567825880775 24.6933821605293 60.3567550354782 24.6934285836139 60.3567462105396 24.6934444012412 60.356707586414 24.6935200545225 60.3565643854986 24.6938447130976 60.3565642129769 24.6938451241726 60.3565603013616 24.6938536864834 60.3564715107286 24.6940330031244 60.3563792447051 24.694206163991 60.3562769931909 24.6944095646172 60.3562286090257 24.6945165645052 60.3562284365018 24.6945169755724 60.3561834018204 24.6946291053502 60.35617511943 24.694651356807 60.3561442169615 24.6947403321563 60.3561157970036 24.694832613164 60.3560983545076 24.694895925232 60.3560822939845 24.694960717034 60.3560676673781 24.6950268761228 60.3560623237237 24.6950533619611 60.3560439282558 24.6951555049552 60.3560285943935 24.6952596436347 60.3559993174009 24.6955062055634 60.3559962403755 24.6955339091935 60.3559629483816 24.6958157646936 60.355947633197 24.6959199739839 60.3559429683797 24.6959488411874 60.3559309466589 24.6960171001545 60.3559173681868 24.6960841635244 60.3559020469472 24.6961496636704 60.3558936370053 24.6961816779137 60.3558845573916 24.6962128872544 60.3558745970564 24.6962430346239 60.3558637240672 24.6962718321817 60.3558519452004 24.696299152533 60.3558392384365 24.696324761531 60.3558256810695 24.6963484542824 60.3558112978193 24.6963701021278 60.3557962046895 24.6963896606205 60.3557804728257 24.6964070884801 60.3557642111416 24.6964224505456 60.3557475468075 24.696435828499 60.3557305268773 24.6964473459373 60.3556959469106 24.6964666839668 60.3556609075821 24.6964823194498 60.3556255435902 24.6964947686818 60.355615588838 24.6964977556083 60.3555795431392 24.6965081860175 60.3555442458326 24.6965213738378 60.3555093035492 24.6965379451284 60.3554576438366 24.6965684599396 60.3554069510761 24.696605016413 60.3552903697596 24.6966995436038 60.3552859494224 24.6967031189805 60.3550859421198 24.6968642320072 60.3550206581881 24.6969244436571 60.3550101046745 24.6969348698037 60.3547902012669 24.6971800391047 60.3547745283303 24.6971972443109 60.3545493221239 24.6974220251268 60.3545371601328 24.6974350119652 60.3543959828102 24.6975932728343 60.3543507136919 24.6976520519999 60.3543071020242 24.6977157723559 60.3542975611067 24.6977307315959 60.3542835914885 24.6977534545458 60.3542563935914 24.6978007336141 60.3542302511499 24.6978503494447 60.3542052176769 24.6979022801332 60.3542050361708 24.6979026917897 60.3541921425284 24.6979310133679 60.3539216044233 24.6985115314629 60.3538826571143 24.6985941021754 60.3533893872676 24.6996523524192 60.3533834320136 24.6996658614629 60.3533834320136 24.6996658614629 60.3531716607442 24.7001581813536 60.353167644607 24.7001674745229 60.3530095388004 24.7005136396532 60.353009339656 24.7005140706511 60.3529969518986 24.7005394719527 60.352996752441 24.7005398848431 60.3529908605107 24.7005518662461 60.3529686611039 24.700608796277 60.3529640112133 24.7006219592187 60.3529541872431 24.7006522560349 60.3529449697892 24.7006833440562 60.3529391905593 24.7007034030723 60.3528681719836 24.700966635713 60.3528559897366 24.7032725522466 60.3528518261724 24.7035209052654 60.3527738331129 24.7039777498696 60.3527035795282 24.7043892150403 60.3523546878841 24.7057829237339 60.3520409376231 24.7070426472182 60.3513137496436 24.7099500672762 60.3509511563636 24.7113954272146 60.3496545135006 24.7167262228242 60.3495919471136 24.7169833995731 60.3488562351463 24.720007482484 60.3482417584346 24.722422335604 60.3476709788628 24.7248831362957 60.3474592189547 24.7257395679524 60.3473079418109 24.7263738141577 60.3470050661766 24.7276282271753 60.346788099729 24.7285200395954 60.3464262959523 24.7300505695719 60.3461867099496 24.7310274236718 60.3460924498678 24.73139178125 60.3459406556536 24.7320183241906 60.3458725352493 24.7322928277606 60.3454556265229 24.7339677428138 60.3448076353393 24.7365822915101 60.3439724082648 24.7401969585801 60.3433017870168 24.7429681047643 60.3429105917971 24.7446299500431 60.3428341031069 24.7449548715502 60.3425923688449 24.7459199438347 60.3421075250712 24.7479323806327 60.3417833636598 24.7492878326892 60.3417833636598 24.7492878326892 60.3410581146219 24.7491770807537 60.3409036473441 24.7491565004715 60.3408102503831 24.74914278462 60.3400228657261 24.7490190324689 60.3390376906785 24.748863504543 60.3380111151282 24.7486915038199 60.3378386918487 24.7486746292577 60.3359845798971 24.7483847818 60.3354200772923 24.7482957833899 60.3353662156796 24.7482881530089 60.334473051334 24.7481510381898 60.3342149872805 24.7481090697709 60.3335045815173 24.7479912913255 60.3324950644949 24.7478364660268 60.3312498894683 24.7476235234836 60.3307695468869 24.7475655970648 60.3302357279993 24.7475105974353 60.3289634002983 24.7473751660172 60.3277002499007 24.7471998565664 60.3268656886819 24.7470381268281 60.3264677779459 24.7469559114686 60.3255201256332 24.7468289971171 60.3234502103093 24.7464728277757 60.3222748648585 24.7462358484135 60.323033853958 24.7498887930752 60.3236295251686 24.7526152774051 60.323696703887 24.7530131743802 60.3243346479989 24.75599794475 60.3243696258426 24.7562304862395 60.3246549525174 24.7575697611496 60.3253768834938 24.7609271392851 60.3248412340846 24.7611165455902 60.3229315256251 24.7618921934187 60.3222182922089 24.7621892113103 60.3211103059379 24.7626571095741 60.320473824429 24.762929553206 60.3155851242674 24.7648783064186 60.3144003564064 24.7653482545041 60.3117193594954 24.7665021828539 60.3108080508784 24.7668923625483 60.3088861542941 24.7677008302074 60.3086071294099 24.7678260366965 60.3080993794552 24.7680352279781 60.3071272680425 24.7684357132022 60.3053212955249 24.7692060566999 60.3047146783112 24.7694571541914 60.304562001695 24.769520566981 60.3022898444896 24.7704618074569 60.3020419998996 24.7705642949361 60.3017177595192 24.7706988292889 60.3014216616774 24.770821651214 60.3012617432533 24.7708881868918 60.301077354592 24.7709647512545 60.3008804349363 24.7710460961012 60.3005407520957 24.7711826861805 60.3001542622841 24.7713460452557 60.2993914233624 24.7717161500317 60.2992318586816 24.7718016567317 60.2988866428376 24.7717139128012 60.2988313704462 24.7717008089591 60.2985751369122 24.7716400549773 60.2985388323515 24.7716321388721 60.298346431977 24.7715823860517 60.2983152872578 24.7715741729472 60.2980865873202 24.7715162692802 60.2980186047839 24.7714988736962 60.2977208264071 24.7714246457821 60.2973816994616 24.7713422137377 60.2968729570593 24.771217350675 60.2967204698007 24.7711796697003 60.2962763814958 24.7710724500493 60.2956609741177 24.7709572494207 60.2939106422806 24.7704963648255 60.2932877852275 24.770351053955 60.2921107483175 24.7700726875793 60.2886037817186 24.7692293628979 60.2881248547665 24.7691107632577 60.2870112703072 24.7688541186495 60.2867747120117 24.7687996101248 60.2852132409541 24.7684302137863 60.2832349872998 24.767957657736 60.2813786825985 24.7675042461821 60.2796559284064 24.767078821127 60.2787097394688 24.7668332822055 60.2743003335976 24.76568934622 60.2738850711412 24.7655815849401 60.2734526513377 24.7654881805285 60.272292651167 24.7652010578731 60.2712379493163 24.7649400253053 60.2712306065269 24.7649392423933 60.2705826620957 24.7652480985424 60.2704744663681 24.7653028754347 60.2700650768337 24.7654837658698 60.2701488638683 24.7656523875576 60.2697146179372 24.7667225891402 60.2696965834939 24.7667670360737 60.2696810969612 24.7668107667861 60.2692851977952 24.7677918181886 60.2692112624229 24.7679739003495 60.2691829920165 24.7680442500531 60.2686959581892 24.769255694832 60.2683887218832 24.7698601357113 60.2683287042073 24.7699827297595 60.2670490053154 24.768702376358 60.2669848456711 24.76862870791 60.2668959954702 24.7685006520386 60.2667964765226 24.7683080872727 60.2667432800941 24.7681748739904 60.2662949235685 24.767145432814 60.2656378408167 24.7674297957901 60.2656374484749 24.7674299671675 60.264373824232 24.7679767376204 60.2642823018101 24.7680162024975 60.2642772811933 24.7680183705385 60.2642677722412 24.7680212420705 60.2642629552787 24.7680221668234 60.2642532681873 24.7680219227155 60.2642484611664 24.7680207676361 60.2642390002868 24.7680174165079 60.2642287806483 24.7680116763222 60.2642237277958 24.7680081876441 60.2642141026939 24.7679988091269 60.2642095947673 24.7679930053046 60.264201012639 24.7679804822203 60.2641954994547 24.7679720530243 60.2641926467505 24.7679679986508 60.2641866929935 24.767960611927 60.2641804917989 24.7679540014032 60.2641740799662 24.7679482188111 60.2641675122389 24.7679433146598 60.2641608152298 24.7679392690564 60.26415741136 24.767937692976 60.2641506201839 24.7679349916765 60.2641439287492 24.7679328802086 60.2641405459977 24.7679320258728 60.2641337232932 24.7679311889164 60.2641268792758 24.76793122123 60.2641200321933 24.7679321396495 60.2641132355744 24.7679339224484 60.2641065432517 24.767936565959 60.2641032401146 24.7679383096519 60.2640967481855 24.7679421869968 60.2640868217117 24.7679485401634 60.2640817959049 24.7679514678943 60.2640715908837 24.7679562128741 60.2640612602819 24.7679598997148 60.2640508211328 24.7679624730186 60.2640403541853 24.7679639272859 60.2640298773837 24.7679642612955 60.264024642876 24.7679638585313 60.2640142547757 24.7679625231865 60.2639966821884 24.7679607371167 60.2639878579352 24.767960524648 60.26397023855 24.7679629000422 60.263961496947 24.7679654661776 60.2639442075912 24.7679719773559 60.263939023959 24.7679740660875 60.2639338187388 24.7679759393358 60.2639197928509 24.7679799501911 60.2639127422799 24.7679815875524 60.2638985800467 24.7679833658432 60.2638914773567 24.767983506162 60.2638773130561 24.7679830246664 60.2638661756888 24.767982535853 60.2638606166677 24.7679820647959 60.2638495007801 24.7679801824072 60.2638439711335 24.7679787873012 60.2638329580815 24.7679755419562 60.2638280472341 24.7679730199372 60.2638256051999 24.7679714868254 60.2638209355795 24.7679672850734 60.2638187361241 24.7679646868347 60.2638145267042 24.7679590073867 60.263691032768 24.7677717836064 60.2621968516193 24.769093594548 60.2621638361927 24.7691194707769 60.2621063744533 24.7691701515924 60.26204880074 24.769221653377 60.2620795322574 24.7695131364216 60.2619720117368 24.7698140110651 60.2617513258869 24.7699985678139 60.2615737066497 24.7699476527473 60.2612587320032 24.7699086708363 60.2610934294602 24.7700776131711 60.2610386790962 24.7701335836738 60.2607821988132 24.7703957171725 60.260772290858 24.7705406149356 60.2603739275317 24.7709564354706 60.2590956367235 24.7722906556583 60.2589675374842 24.7724243450993 60.2589323153787 24.7724611389833 60.2586578994279 24.7727354281608 60.2583620961135 24.7730311402795 60.2582898433618 24.7731034924216 60.2582411010656 24.7731557186645 60.2578287132796 24.7735975164447 60.2574159005433 24.7740397656006 60.2573856290093 24.7740584512387 60.2573609411016 24.7740737209023 60.2573320026972 24.7740931654982 60.2568761251006 24.7743992346226 60.2566957252177 24.7745182557099 60.2565197946099 24.7746343691736 60.2564016581986 24.7747152332502 60.256348216357 24.7747416724564 60.2563436905974 24.774743895689 60.2563197763487 24.7747608470229 60.2562314744043 24.7748237424477 60.2560789845635 24.7749225359881 60.2559739576206 24.7749913376419 60.2556012130009 24.7752461540009 60.2555678345837 24.775272946994 60.2555166850832 24.7753118270906 60.2555077362937 24.7753186521715 60.2553023112221 24.7754543091306 60.255163854449 24.7755457822426 60.2551169965529 24.7755706154678 60.2547530541307 24.7758152777995 60.2547321095734 24.7758261337677 60.2543933013062 24.7760601925616 60.2543773674055 24.7760677441431 60.254228449081 24.776170133537 60.2541914367327 24.7761955623708 60.253970110848 24.776348300274 60.2539454843562 24.7763688580284 60.2539021747325 24.7763980030211 60.2535608508292 24.7766277923174 60.2532212411767 24.7768564483575 60.2529200013451 24.7770592192717 60.2527717752592 24.777159004161 60.2526754565918 24.7772238393356 60.252483255462 24.7773532801392 60.2524063177305 24.7774050707542 60.2523363219012 24.7774406850616 60.252226770562 24.7775209824009 60.2519437081919 24.7777129119477 60.2515369974796 24.7779967504592 60.2515026487496 24.7780144402131 60.2512442836231 24.7781895245925 60.2510826297889 24.7782990644581 60.251050698508 24.7783205837814 60.2508554353167 24.7784544297809 60.2506677568331 24.7785777663826 60.2506641599688 24.7785802148915 60.2504635664143 24.7787143827124 60.2504115294265 24.7787502029207 60.2502487356418 24.7788582059638 60.2501814137354 24.7789081632585 60.249981734099 24.7790406025103 60.2498177043996 24.7791493730759 60.2498067075921 24.7791578164774 60.2496165662853 24.7792859199821 60.2496118110897 24.7792883925759 60.2494412979832 24.7794037259403 60.2494085845929 24.7794262899619 60.2490917803242 24.7796395902758 60.2490661741745 24.7796569197855 60.2490014588526 24.7797005528705 60.2489810021967 24.7797142807624 60.2485437217398 24.780008920075 60.2484605205828 24.78006489886 60.2483309735057 24.7801516634672 60.2481704680901 24.7802590637913 60.248121028041 24.7802981907617 60.2479458294846 24.7804169929409 60.2477408597468 24.7805559879103 60.2477153431867 24.7805733098965 60.2476982865518 24.7805846380901 60.2473863870918 24.7807916204834 60.2472670514747 24.7808708034244 60.2470720141387 24.7810118489664 60.2468520668721 24.7811586983897 60.246698734638 24.7812610858982 60.2464179816743 24.781448528767 60.2459949157873 24.7817237646604 60.245585986462 24.7819897975319 60.2455295620204 24.7820302584381 60.2451284296013 24.7823178365285 60.2449908903078 24.7824160913556 60.244403808261 24.7827952648543 60.2443348968738 24.7828426381452 60.2439771608958 24.7830885413126 60.2435971880488 24.783349728065 60.2435691413694 24.7833683187718 60.2431792028905 24.7836287450551 60.2431447349767 24.7836517080408 60.242777002087 24.7838966425443 60.2415054172866 24.7847540611185 60.2424104888307 24.7881295892769 60.2439591094983 24.793670316398 60.2447232937268 24.7966649349849 60.2449902473139 24.7976502141529 60.2451096340224 24.7981061321316 60.245157622349 24.7982893988287 60.2454622291139 24.7993560893115 60.245544077281 24.7996427194758 60.2457498810994 24.8004235389447 60.2459296947134 24.8010867449898 60.2461903631834 24.802045466066 60.246359939542 24.8026729834811 60.2464481742841 24.8030050981916 60.2464694842498 24.8030829235746 60.2466303336193 24.803670270817 60.2467256264728 24.804018162803 60.2468209010768 24.8043660941258 60.2469125990557 24.8047009494269 60.246980263052 24.8049480419329 60.2472973204802 24.8061110356393 60.2473447642503 24.8062881279826 60.2474067214818 24.8065162013687 60.247544463999 24.8070232329188 60.2476502296976 24.8074145890755 60.2477058195937 24.8076211008817 60.2477788917356 24.8078876124218 60.2478264825217 24.8080623327785 60.2478492385899 24.8081457781161 60.2478524225573 24.8081574555386 60.2479015487631 24.8083376035523 60.2479694697452 24.8085865366716 60.2480210158763 24.808770752692 60.2481132545232 24.8091129324744 60.2481622441658 24.8092946826127 60.2482408798144 24.8095833817498 60.2483055596547 24.8098249287066 60.2484868907886 24.8104991934991 60.2485673097324 24.8107948809612 60.2487013611396 24.8113002423544 60.2488481391488 24.8118535858234 60.2489465584538 24.8122246449277 60.2490136873899 24.8124777486067 60.2491157824121 24.8128626615335 60.2492125225684 24.8132273871885 60.2497554914156 24.8152676576456 60.2499289534457 24.8159195906152 60.2500038237387 24.8162008909025 60.2500601588732 24.8164126047584 60.2501676922882 24.8168061249106 60.2502794817561 24.8172383988682 60.2503952004455 24.8176841124714 60.250495893338 24.8180742827466 60.2510807583607 24.8202511867988 60.2513350304954 24.8211977073283 60.251719121667 24.8226274211907 60.2530195508338 24.8275452779368 60.2531189903966 24.8279216027445 60.2532364118153 24.828351211023 60.2532839730952 24.8285252678331 60.2533145365517 24.8286343392373 60.2535423327815 24.8294854143954 60.2536277524145 24.8298044827122 60.2540555450455 24.8314023691663 60.2540555450455 24.8314023691663 60.2532051928541 24.8316810846639 60.2526332294767 24.831867709424 60.2525747439052 24.8318867947551 60.2520142967345 24.8320696504963 60.2518576720494 24.8321200924409 60.2516035122601 24.8322036760955 60.2506497164469 24.8325080362466 60.2501633679407 24.8326626232563 60.2498961570158 24.8327478740071 60.2487575817017 24.8331118309228 60.247780863272 24.8334234514818 60.2473656281239 24.8335528748474 60.2473287899194 24.8335642895246 60.2469427778323 24.8336840627947 60.2464766931323 24.8338299207324 60.2448683075972 24.8343301495134 60.244783482123 24.8343594572835 60.2433801542238 24.8348143132092 60.2432264820273 24.8348640992621 60.2432227474177 24.8348653214727 60.2430574182187 24.8349036629721 60.2430235779965 24.8349144068444 60.2429330928949 24.8349436694253 60.2425799123023 24.8350553519986 60.2423916917793 24.8351148779114 60.242226415231 24.8351795734326 60.2421771383734 24.8351982553322 60.2419628620297 24.8352716404119 60.2417498410434 24.8353443454404 60.2416187915257 24.8353906278587 60.2415370366783 24.8354176675287 60.2413147738899 24.8354909805235 60.2412638027692 24.8355082194971 60.2410666114534 24.8355756130189 60.2408721016769 24.8356405523936 60.2407761428082 24.8356679499752 60.2405191062854 24.8357421448895 60.2402685102664 24.835821315352 60.2402507847264 24.8358282479793 60.2401599100714 24.8358639264215 60.2401319633078 24.8358670350052 60.2401090552779 24.8358695762645 60.239571363856 24.8360430561469 60.2390985590186 24.8361955754098 60.238974849339 24.8362342485446 60.2380360626608 24.8365313964409 60.2375474377723 24.8366865520775 60.2373580826578 24.8367464949396 60.2372915151484 24.8367673956581 60.2367606445452 24.8369383899848 60.236685413763 24.8359592969094 60.2365780918637 24.83598996834 60.2359699484185 24.8361637200789 60.2355624909528 24.8362805697474 60.2355259882179 24.836291087785 60.2353029745968 24.8363552900388 60.235081364619 24.8364190917404 60.234859683113 24.8364829153259 60.2346375549974 24.8365468939067 60.2343784497009 24.8366214923969 60.2340915493399 24.8367040998632 60.2338520770134 24.8367730662538 60.2334503749151 24.8368887079445 60.2333050987166 24.8369301298264 60.2330939335771 24.8369911035242 60.2330383799926 24.8370071565869 60.2328243494722 24.8370697811652 60.2327820471517 24.8370804810333 60.2324312889135 24.8371799690138 60.2321820622033 24.8372506187204 60.2321677302565 24.8372497392418 60.2320771814712 24.8372751240663 60.2318968603778 24.8373244874955 60.2317522578179 24.8373648133741 60.2316115674252 24.8374032374569 60.2315141898969 24.8374301370869 60.2314414024615 24.8374502322917 60.231431280241 24.8374530306543 60.2314282398681 24.8374538631826 60.2310737626422 24.8375516914451 60.2309992019952 24.8375726615073 60.2306785695924 24.837661122724 60.2306137851924 24.837679009818 60.2300412580569 24.8378370207249 60.2299947598623 24.8378498553075 60.2299504705355 24.8378620927958 60.229876815317 24.837882405728 60.2295833755424 24.8379633800246 60.2294124527836 24.8380101839591 60.2294118264689 24.8380103335851 60.2294059963569 24.8380119457938 60.2293733372238 24.8380213215944 60.2290257094565 24.8381172771694 60.2291359538803 24.8399714028468 60.2286848378369 24.8400776343218 60.2283342460667 24.8401653994686 60.2282640160442 24.8401859141185 60.2282317662741 24.8401939601834 60.2280064210413 24.8402502195224 60.2276375677783 24.8403423610463 60.2274896029257 24.8403831059161 60.2272640345484 24.8404460770587 60.2269407328785 24.8405108194816 60.2269048015498 24.8405183847921 60.226859305952 24.8405299202829 60.2265030130566 24.8406184115757 60.2264806965383 24.840623636138 60.226104139234 24.8407176119904 60.2259599875614 24.8407531362565 60.2257163615096 24.840813696205 60.225626606561 24.840836015949 60.2256137965904 24.8408392423685 60.2255952345769 24.8408439126303 60.2254920608181 24.8408701306748 60.2254791541077 24.8408718285189 60.2254531622456 24.8408758499066 60.2249661485182 24.841006104476 60.2244493234403 24.8411336391491 60.2244290329332 24.841138621391 60.2243518490211 24.8411573857642 60.2242894724501 24.8411725758334 60.2241439086732 24.8412079902114 60.2229898603077 24.8414856579294 60.2228410376832 24.8415228365419 60.2224119157358 24.8416305934389 60.2222350360292 24.8416745990766 60.2221523640942 24.8416955814504 60.2216925618174 24.8417952396964 60.2214837816316 24.8418350936005 60.2214458393594 24.8418449368994 60.2213167809351 24.8418784653119 60.2212988226289 24.8418843585112 60.2211992442266 24.8419101887225 60.2213323754491 24.8423544482928 60.2214562300706 24.8427216098953 60.2215877730239 24.8430645077848 60.2216560385982 24.843231929947 60.2217352328321 24.8434025167318 60.2218081341304 24.8435363229018 60.2222642354807 24.8443593408631 60.2224269040715 24.8445893452682 60.2224503308498 24.8446314304163 60.2225708030075 24.8448477588913 60.2226042775729 24.8449078908781 60.2227715848459 24.8452084124764 60.2228914291558 24.8454585878012 60.2230719927876 24.8458840980404 60.2231526131856 24.8460409540709 60.2233199158301 24.8463136975371 60.2234002907866 24.8464289152706 60.2235796897925 24.8466655862963 60.2237304976051 24.8468933736332 60.2238435015597 24.8470775977873 60.2239111104383 24.8472109730909 60.2241086174865 24.8477250476647 60.2241415451338 24.8478107899075 60.2243528770219 24.8483489021135 60.2246205906094 24.8489807988502 60.2246885166496 24.849148812299 60.2247714168939 24.849395008592 60.2248408545386 24.8497277704776 60.2248739131281 24.8499385916247 60.2249020378287 24.8501476056008 60.2249248889273 24.8503499229378 60.2249447841486 24.850562744929 60.2249597593115 24.8507862543322 60.2249694941238 24.8509973584967 60.2249734316944 24.8512182322083 60.2249724051108 24.8513755436876 60.224850478458 24.8512356359762 60.2248229779153 24.8512036511512 60.2248119720585 24.8511918399257 60.2247884485024 24.8511658245699 60.2243071139447 24.8506425710039 60.223936045765 24.8502641848093 60.2239022489694 24.8502300138781 60.2237273880686 24.850052358632 60.2236086922308 24.8499317686366 60.2233968527649 24.8497165256938 60.2232929324564 24.8496120153988 60.2232444464539 24.8495632434862 60.222895174309 24.8492119820606 60.222827300076 24.8491440962734 60.2224115910752 24.8487123163763 60.2220847364011 24.8483660671214 60.2216747301722 24.8479393854449 60.2215952347502 24.8478650083274 60.2212806060816 24.8478378081734 60.2211175708615 24.8478239785083 60.2210096156871 24.8478146624615 60.2205038433172 24.8476234356234 60.2204676730581 24.8476168520435 60.2198145225668 24.8478137205976 60.2193892015841 24.8480192606752 60.2187529318413 24.8480536045932 60.2185902996736 24.8480834388036 60.2179502604822 24.8476928649683 60.2173904697009 24.8473517274519 60.2165290177186 24.8468261882948 60.2153748220364 24.8460853270776 60.2133117669263 24.8459393172327 60.2129918169945 24.8459705594566 60.2096508444836 24.8462949660642 60.2093811143516 24.8463212646748 60.2089641921358 24.8463613305622 60.2069655897698 24.8465558593072 60.2066502067533 24.8465823851347 60.2059387391581 24.846655560645 60.2057913504065 24.8466644114625 60.2056047777805 24.8466879765852 60.2054963536233 24.8466984775616 60.205240091924 24.8467233805249 60.2051464745581 24.8467324774397 60.2050453332973 24.846737898789 60.2049531317944 24.8467512158839 60.2044457024297 24.8468005412478 60.2040537175093 24.8468385800388 60.2039999091794 24.8468438035182 60.2037354599459 24.8468689699533 60.2029659373778 24.8464763056763 60.2028795608772 24.8464318384681 60.2024759381175 24.8462256620048 60.2019226981855 24.8459431730133 60.1992174610221 24.844561817653 60.1980518456297 24.8439667021165 60.1963690727642 24.8431074857531 60.1957605956047 24.8427970087717 60.1951326039624 24.8428345381145 60.1810210345624 24.8436368996019 60.1807866898444 24.8436502496832 60.179428033985 24.8437228902849 60.1732764763859 24.8441400676054 60.1732534997994 24.8441406181995 60.1731348577628 24.844145853162 60.1725429311721 24.8441659035192 60.1723195567165 24.8441739287105 60.1705052954616 24.8442356576178 60.1660198208795 24.8443911408711 60.1659749547391 24.8443933596721 60.1657194356588 24.8444054336445 60.1655842685444 24.8444124696138 60.1654218918791 24.8443487025079 60.1652448180071 24.8442803834946 60.1590158686395 24.8417495001033 60.1576021330262 24.8411751868173 60.1570287259613 24.8409422458354 60.1551881241208 24.8409185127253 60.1510690515762 24.8408595003012 60.1502622080485 24.8394356257913 60.1499624121192 24.8393781560334 60.1486708186436 24.8391461012308 60.1485538238141 24.839110831294 60.1441619259211 24.8382747880496 60.1365175509419 24.8368309352396 60.1308454491473 24.8357564773446 60.1304135984758 24.8356746697375 60.1301005230654 24.8351282613389 60.0999603866204 24.7828055477805 60.0763404314548 24.8041254297189 60.0760672868684 24.8043717676947 60.0493496022733 24.8284687442864 60.0275582195356 24.8480912331233 59.9783411067752 24.8923055076145 59.9668586627137 24.9026000548605 59.9668087316352 24.9026447964544 59.9590547657434 24.9095917103644 59.9224932379687 24.9422998415632 59.9224932379687 24.9422998415632 59.9213443409669 24.9299726857705 59.9014047844099 24.8314125208895 + + + + + + + 60.2070772567041 24.7077895612439 60.2069436809984 24.7075539672611 60.2067973191993 24.7072958410136 60.2067120176964 24.7071346687424 60.206487500472 24.7071379804349 60.2064340446534 24.7071390052196 60.2060974895946 24.7071455724544 60.2060167182097 24.7071471505969 60.2060067028312 24.7067072641834 60.2060001090737 24.7063359556922 60.206000954174 24.7063193828323 60.2060336613292 24.7056762345781 60.2060371971684 24.7056371123154 60.2060651706076 24.7053278556094 60.2060970784153 24.7050217525295 60.2061721558822 24.7046943671934 60.2062092941931 24.704487070802 60.2062093102641 24.7044869613905 60.2062922950407 24.704023894857 60.2064158816456 24.7033908428729 60.2064505712352 24.7032403859017 60.2065653440781 24.7027427466272 60.2067439165497 24.7021413199957 60.2067708628529 24.702046900661 60.2069300320439 24.7014891299121 60.2071234664099 24.700865496111 60.2072872577095 24.7002005777463 60.2074154614823 24.6995017772548 60.2075001975554 24.6987839974668 60.207547770143 24.698032161596 60.2075944171059 24.6977026229237 60.2076003524956 24.69691323747 60.2075852112392 24.6965442438596 60.2074955987686 24.6954560501074 60.2074431789145 24.6950665901656 60.2071786094338 24.6933557204862 60.2070783480421 24.6928355090791 60.207045985233 24.6926301699011 60.2070891442738 24.6926062734172 60.2069470469741 24.691909549115 60.2069089839749 24.6916028728212 60.2067319233685 24.6902039323757 60.2067408642119 24.6901726573285 60.2068350877695 24.6898285057603 60.2068508553878 24.689770940947 60.2068733202019 24.6896894419003 60.2069115841134 24.6895506462217 60.2072857071455 24.688193502333 60.2073528073931 24.6879580613629 60.2075022086816 24.6873956993418 60.2077657118508 24.6864038145707 60.2077853469225 24.6863352889081 60.2079389824083 24.685799235773 60.2080516020171 24.6854062925899 60.2080759535674 24.6853115868324 60.2082609548632 24.6845920254875 60.2083012713165 24.6844450410369 60.2083256986786 24.684354714451 60.2086987071064 24.6829753096517 60.2088979716274 24.6822383972141 60.2091001442619 24.6815056924793 60.2094458257244 24.6803861038923 60.2096097781518 24.6798552581515 60.2097020799109 24.6795536892714 60.2097150002473 24.6795117844189 60.2100313643575 24.6784912460931 60.2100716909779 24.6783611221913 60.2104774460689 24.6770521078845 60.2106287119012 24.6765684798239 60.2106490193657 24.676506825895 60.2107233819329 24.6762809843755 60.211031377228 24.6752876177587 60.2119933441225 24.6758086710566 60.2135190583693 24.676638552507 60.2153145110857 24.6774347674579 60.2153197187573 24.6774382263208 60.2153969837709 24.6774713219208 60.2174060582923 24.6849152553257 60.2175842487965 24.6856152061987 60.2177744648416 24.6865562112753 60.2181792712637 24.6886648567605 60.2188479530036 24.6896455225658 60.2189639066846 24.6908563002104 60.2195419447424 24.6907925613589 60.2195766322606 24.6907887488583 60.2197395782878 24.6918393498289 60.2197964022357 24.6922058005711 60.2198951567396 24.6928056532731 60.2200796555445 24.6939333198997 60.2201638294978 24.6942193861576 60.2206538797037 24.6952954255003 60.2207813123768 24.6956560139729 60.2210206449416 24.6966653292797 60.2210916666888 24.6969050980582 60.2213577159295 24.6975844545741 60.2214851232253 24.6979097967838 60.2217465543085 24.6986499647203 60.2219459634437 24.6992145021878 60.2219585908857 24.6992578740542 60.2221381232314 24.6998744611311 60.2225288866148 24.7012169188784 60.2225452042826 24.7012726737183 60.2228089091699 24.7029909618079 60.22289971849 24.7045020088916 60.2230366494215 24.705671085133 60.2230413046258 24.7064320548955 60.2229523256718 24.7070602905268 60.2229980386284 24.707183461509 60.223002882054 24.7071986343301 60.2230607226508 24.7073800780586 60.2231772105962 24.7077455113044 60.2231849935552 24.7077696521172 60.2231893779043 24.7077832139512 60.2232242605005 24.707891505485 60.2236121570037 24.7074996874591 60.223674229608 24.7074369712241 60.2237004236034 24.7074105108323 60.2237978101938 24.7073121372622 60.2239181064743 24.7071906196718 60.2240970220856 24.7070108500979 60.2241973365319 24.7069166214941 60.2242827570763 24.7068363805758 60.2243005762785 24.7068196236661 60.2244124429685 24.7067145282946 60.2248732785494 24.706312527504 60.2250076804819 24.7062639471541 60.2250161864469 24.7063719556839 60.225019614832 24.7064154173338 60.2250498278449 24.7067985453556 60.2251082502282 24.707539499016 60.2251835025939 24.7084941753891 60.2252986451353 24.7091672662676 60.2254091412063 24.7098133633505 60.2254986837826 24.710337008313 60.2255628935679 24.7107123377417 60.2256139065336 24.7110402821043 60.2259132354406 24.7127608166102 60.2259109516093 24.7128716402541 60.225494839463 24.7128719818025 60.2252427012827 24.7130534346007 60.2251340145175 24.7130827510002 60.2249943587504 24.7132862487905 60.2248827244873 24.7135140130517 60.2248893476928 24.7141259972737 60.2248903421687 24.7142113254789 60.2248913452508 24.714296635029 60.2248992408283 24.7145734237973 60.2250749470896 24.7154435364471 60.22501999926 24.7155107282194 60.2250085705607 24.71552672889 60.2249361716471 24.7156180330239 60.2248419081294 24.7157343162667 60.2246725250273 24.7159555441527 60.2245445907983 24.7161190790953 60.2245312324947 24.7161357011663 60.2242821261418 24.7164460081536 60.2242534365009 24.7164830908922 60.2235475529008 24.7173954076419 60.2235157843003 24.717436278212 60.2230413240594 24.7180495805296 60.2223421367198 24.7189475860347 60.222289652185 24.7190160395047 60.2223770995457 24.7207252167685 60.2225087548422 24.7213440385856 60.2226646513417 24.7217448059032 60.2228758315352 24.7218739894856 60.2234559678095 24.721921461267 60.2234057234112 24.7220435497358 60.2228849887483 24.7232897704475 60.2227438851163 24.723638488688 60.2224861837791 24.7242785836662 60.2224035260992 24.7244853595402 60.2222520709871 24.7248701760867 60.222186609339 24.7250305972488 60.2219790527793 24.7255393186195 60.2223025346912 24.7253320548331 60.2223578148112 24.7253174798588 60.2227726158717 24.7254440037515 60.2229309233513 24.7259824559427 60.2230081197045 24.7262449668628 60.2231054612354 24.7264717206736 60.2236070987438 24.7276273907253 60.2236785686792 24.7279485606687 60.2238012230985 24.7284718104751 60.2238537866612 24.7288871084467 60.224130143485 24.7312500158027 60.2242079551631 24.7319651235065 60.2242458740853 24.7323136366035 60.2242187370997 24.7329882717908 60.224212208319 24.7331507550472 60.2241716550736 24.7343200856318 60.2240624511769 24.7344450355515 60.2240373058599 24.7344737675689 60.223663421026 24.7349015355735 60.2235500578742 24.7350312287729 60.2234685265285 24.735125029413 60.2234226467074 24.7351777989802 60.2233356812398 24.7352853001186 60.2233049732928 24.7353202110493 60.2230760162487 24.7355805210805 60.2229772482972 24.7356928067969 60.2225933470143 24.7361423098751 60.2225816966247 24.7361559879994 60.2225700542821 24.7361696113883 60.2225151248249 24.7362400478086 60.2224509267217 24.7361437369972 60.2224210744392 24.7360740746437 60.2222227434056 24.7357590517458 60.2220658763491 24.735509876977 60.222010310058 24.7354509281337 60.2217191989411 24.7352669942934 60.2214516798855 24.7350959348253 60.2214404723772 24.7350887273454 60.2214347303076 24.7350854401074 60.2214229487416 24.7350803848242 60.2214108799527 24.7350769202543 60.2213985694167 24.7350750793702 60.2213861442809 24.7350749436772 60.2213736500209 24.7350765461479 60.2213612041959 24.7350799328366 60.2213488952932 24.7350850254104 60.221336804676 24.7350918543655 60.2213250298035 24.7351003407504 60.2213136319391 24.7351103900554 60.2213027079258 24.7351218872597 60.221292309439 24.7351347024037 60.221282497742 24.7351487409788 60.2212778670366 24.7351563551861 60.2212690062415 24.7351718990174 60.2212487930529 24.7351775369498 60.2211617634723 24.735201850961 60.2210545206936 24.7352318027011 60.2209306657258 24.7352689130747 60.2208888866468 24.7352814556541 60.2208251275501 24.7353229416351 60.2207946715926 24.7353357862096 60.2207248399146 24.7353946092408 60.2206874601851 24.7353949312197 60.2206623089364 24.7354096486011 60.2206488942453 24.7353999573179 60.2206132618999 24.7353568971207 60.2205686150679 24.7353398453444 60.220569562616 24.7353564093051 60.2205698396932 24.7354941554814 60.2205055088948 24.7355074228932 60.2205055708027 24.7355762830754 60.2205056329827 24.735645161293 60.2205184246332 24.7360871673319 60.2205198430028 24.7361360546395 60.2205250557327 24.7363161980477 60.2205537085611 24.7373067631008 60.2201985916449 24.7376662448264 60.2201865653379 24.7376784306306 60.2200422916528 24.7378244941796 60.2197451428702 24.7381252988231 60.2196315481401 24.7382447435994 60.2194038101864 24.7384709756978 60.219116229807 24.7387567014811 60.218952639877 24.7389321069888 60.2189091951277 24.7389786837826 60.2188498630102 24.7390422790411 60.2190548883822 24.7392314192753 60.2193106759152 24.7394486261843 60.2196344634386 24.7397339885962 60.2196271467131 24.7397669014845 60.2195012791466 24.7403322257988 60.2193132124227 24.7411769305379 60.2192515398017 24.741453894848 60.2191415628081 24.7419479152913 60.2191145766437 24.7420690964632 60.2190786450649 24.7422304509445 60.2189627726875 24.7422553560758 60.2189764583506 24.7422852163071 60.2191524794553 24.742669379053 60.2191664321584 24.7427027961346 60.2191733299075 24.7427196364755 60.2191867413748 24.7427539755085 60.2191997951104 24.742788934981 60.2192124447194 24.7428244278082 60.2192247177312 24.7428604882061 60.2192365773365 24.7428970645404 60.2192423004369 24.7429156106721 60.2192535526224 24.7429529148994 60.2193330028724 24.7432231700443 60.2193393897595 24.7432490551498 60.2193426815863 24.7432619728874 60.2193496090066 24.7432874236361 60.2193568811132 24.7433125437635 60.2193645065714 24.7433373146191 60.21937246621 24.7433616653016 60.2193807516709 24.7433856324959 60.2193893706989 24.74340914345 60.2193983050434 24.7434321813637 60.219407536147 24.743454711403 60.2194170643168 24.743476751602 60.2194268700749 24.7434982130246 60.2194369540351 24.7435191317386 60.2194472973332 24.7435394548757 60.2194578820256 24.7435591836693 60.2194632997088 24.7435687596014 60.2194742273216 24.7435875259769 60.2197196089093 24.7438756831447 60.2199812337478 24.7441804225039 60.2202134870904 24.7446965563121 60.2203883824916 24.7450978858538 60.2205040627057 24.7453834153792 60.220754989013 24.7462660252476 60.2208033645636 24.7464328254196 60.2209251475873 24.7469979183583 60.2209327252342 24.7470363086189 60.2209368126247 24.7470553658993 60.2209460858354 24.7470925745106 60.2209564188284 24.7471287173295 60.2209677998755 24.7471636326607 60.2209801451661 24.7471971456995 60.2209934157498 24.7472290785617 60.2210004728561 24.7472442306202 60.2210149476526 24.7472735530457 60.2210334577965 24.7473458424737 60.221084484019 24.7475450366063 60.2211175359121 24.7489627072156 60.2205483157148 24.7493447831214 60.2200955109081 24.7496487195011 60.2199657458037 24.7497358133486 60.2182567866607 24.7508828017121 60.2182108613655 24.7509136436094 60.2181961066089 24.750872533738 60.2176904087511 24.7494629098685 60.2176567678262 24.7493691325048 60.217589325604 24.7491811379882 60.2175449078908 24.7490573361252 60.2165034759909 24.7461547473821 60.2152682372087 24.7427123977718 60.2152436772621 24.7427017383012 60.2149392789815 24.7425693283259 60.2145769915575 24.7424117827653 60.2142178529107 24.742255594595 60.2134086185876 24.7419036863212 60.2132166242007 24.7418202058992 60.2131400559781 24.741786895688 60.2128822285233 24.7416733398686 60.2128547067078 24.7416612429414 60.2128011934389 24.7416404097603 60.2127821636126 24.7416337940757 60.2127592413291 24.7416238358455 60.2127498296937 24.7416197356716 60.2123442849629 24.7414434342831 60.2121425173076 24.7413557395446 60.2117223871353 24.7411732636191 60.2115096432097 24.7410808578422 60.2112667277408 24.7409721534267 60.2109275152683 24.7408236501145 60.2106385662201 24.7406971422899 60.2104324968114 24.7406069004967 60.2103385394844 24.7405657672221 60.2098625515422 24.7403572820346 60.2098318462729 24.7403439262362 60.209326329315 24.7401241949479 60.2093162930353 24.7401198137031 60.2090316934486 24.7399961050355 60.2089448369624 24.7399584212242 60.2084055590714 24.7397242395257 60.2083719943117 24.7397096558177 60.2075407149322 24.7393486659999 60.2071098143033 24.7391621624018 60.2073051896794 24.7377264063876 60.207323179143 24.7376183384675 60.2070251480154 24.7375441156212 60.2066730281878 24.7373138044892 60.2063070480309 24.7367435466639 60.2061765835267 24.7366302812871 60.2061776789134 24.7366281483473 60.2068627192453 24.7359214022977 60.2066119596288 24.7345555396407 60.2064101708886 24.7341778181245 60.2063581340437 24.7341230952978 60.206161650296 24.7339165577922 60.2061186965589 24.7339549673825 60.206035615532 24.7341004614826 60.2059632032372 24.7342621114891 60.205818305678 24.7345317587458 60.2058018253473 24.7344099551104 60.2056458390799 24.7332572082388 60.2056153946592 24.7330321992829 60.2055341981317 24.7324746859927 60.2054700882021 24.7320345130552 60.205410697415 24.73162664558 60.2053165122444 24.7309125548062 60.2054395236625 24.7304646369958 60.2055705073639 24.7299877037969 60.2056327605891 24.7297739050221 60.2056781464861 24.7296116422583 60.2058693030831 24.7289087894735 60.2058889916617 24.7288363561434 60.2059078382537 24.7287388946222 60.206180496941 24.727748215012 60.2059973107978 24.7274664935106 60.2059773740454 24.7274358382285 60.2057476337522 24.7270825163117 60.2055987572708 24.726853580786 60.2054583515352 24.7266372536854 60.2054534978552 24.726629738991 60.2054488583219 24.7266184736476 60.2053880435967 24.7265229709823 60.2050717598654 24.7260354076829 60.2049202046312 24.7258017581063 60.2044880041785 24.7251313175261 60.2044290341076 24.7250444453122 60.2041331072366 24.7245835263917 60.2037563131178 24.7240014778671 60.2034927221403 24.7235956337879 60.2032372100412 24.7232026264622 60.2030093961255 24.7228575664569 60.2027364225644 24.7224438191977 60.2025626479914 24.7221762647761 60.2026182891941 24.7219526968233 60.2026750712054 24.7217244472408 60.2026939164755 24.7216486462643 60.2027331810417 24.7214856741421 60.2027940508665 24.7212413129328 60.2028743624258 24.7209187976766 60.2030053567359 24.7203927579131 60.2030527575607 24.7202010297864 60.2031156177572 24.7199409155353 60.2032095923328 24.7195559434474 60.203316120689 24.7191206864531 60.203477796906 24.718463883953 60.2035862817064 24.7180386439355 60.2037166174106 24.7175276953453 60.2037765014107 24.7172854449261 60.2039617778275 24.7165359734141 60.2040200736066 24.7163001821694 60.204122311416 24.7158865691179 60.2043952955821 24.7161615342005 60.2047873161094 24.7165606036452 60.2049952027135 24.7167735465574 60.2050112042575 24.7167899220127 60.205045228611 24.7168247703285 60.2052553003573 24.7170399649484 60.2054493604592 24.7172403030691 60.2055983612552 24.7173940719199 60.2058262305906 24.7176293331973 60.2060010903834 24.7178070267715 60.2061551450579 24.7179658639022 60.2062235758931 24.7180364051375 60.2063923718402 24.7182104453939 60.2064691520719 24.7182896120828 60.2069470150528 24.7187823049706 60.2070049104526 24.7188419762232 60.2071012056493 24.7189412860431 60.2074246107964 24.7192747236867 60.2077025289426 24.7195440224861 60.2078361623808 24.7192045574668 60.2079699427787 24.7188642852707 60.2081757877551 24.7183417261551 60.2082281227766 24.718208768488 60.2082906898962 24.7180497765131 60.208819848538 24.7167053816887 60.2089047212646 24.7164897459515 60.2090870644246 24.7160264413752 60.2090980806994 24.7159984925514 60.2091259804753 24.7159275666064 60.2091202549964 24.7159153662418 60.2090839009287 24.71583549866 60.20910141173 24.7157913949124 60.2092347550089 24.7154554394379 60.2094657802098 24.7148732904824 60.2096775891194 24.714339598987 60.2099181562038 24.7137333768683 60.2097374553713 24.7133037528221 60.2095787744742 24.7129264965693 60.2095760987624 24.7129203113331 60.2095193653697 24.712789123769 60.2092547970048 24.7121760836921 60.2088432480608 24.71122245085 60.2082757950083 24.7099076468795 60.2078618147447 24.7091735157798 60.2078394912092 24.7091339034439 60.207793231365 24.7090523187418 60.2075417518563 24.7086087886657 60.207490960859 24.7085192011229 60.2070772567041 24.7077895612439 + + + + + + Espoo + + municipality + + + + + + + + + 60.2070772567041 24.7077895612439 60.2069436809984 24.7075539672611 60.2067973191993 24.7072958410136 60.2067120176964 24.7071346687424 60.206487500472 24.7071379804349 60.2064340446534 24.7071390052196 60.2060974895946 24.7071455724544 60.2060167182097 24.7071471505969 60.2060067028312 24.7067072641834 60.2060001090737 24.7063359556922 60.206000954174 24.7063193828323 60.2060336613292 24.7056762345781 60.2060371971684 24.7056371123154 60.2060651706076 24.7053278556094 60.2060970784153 24.7050217525295 60.2061721558822 24.7046943671934 60.2062092941931 24.704487070802 60.2062093102641 24.7044869613905 60.2062922950407 24.704023894857 60.2064158816456 24.7033908428729 60.2064505712352 24.7032403859017 60.2065653440781 24.7027427466272 60.2067439165497 24.7021413199957 60.2067708628529 24.702046900661 60.2069300320439 24.7014891299121 60.2071234664099 24.700865496111 60.2072872577095 24.7002005777463 60.2074154614823 24.6995017772548 60.2075001975554 24.6987839974668 60.207547770143 24.698032161596 60.2075944171059 24.6977026229237 60.2076003524956 24.69691323747 60.2075852112392 24.6965442438596 60.2074955987686 24.6954560501074 60.2074431789145 24.6950665901656 60.2071786094338 24.6933557204862 60.2070783480421 24.6928355090791 60.207045985233 24.6926301699011 60.2070891442738 24.6926062734172 60.2069470469741 24.691909549115 60.2069089839749 24.6916028728212 60.2067319233685 24.6902039323757 60.2067408642119 24.6901726573285 60.2068350877695 24.6898285057603 60.2068508553878 24.689770940947 60.2068733202019 24.6896894419003 60.2069115841134 24.6895506462217 60.2072857071455 24.688193502333 60.2073528073931 24.6879580613629 60.2075022086816 24.6873956993418 60.2077657118508 24.6864038145707 60.2077853469225 24.6863352889081 60.2079389824083 24.685799235773 60.2080516020171 24.6854062925899 60.2080759535674 24.6853115868324 60.2082609548632 24.6845920254875 60.2083012713165 24.6844450410369 60.2083256986786 24.684354714451 60.2086987071064 24.6829753096517 60.2088979716274 24.6822383972141 60.2091001442619 24.6815056924793 60.2094458257244 24.6803861038923 60.2096097781518 24.6798552581515 60.2097020799109 24.6795536892714 60.2097150002473 24.6795117844189 60.2100313643575 24.6784912460931 60.2100716909779 24.6783611221913 60.2104774460689 24.6770521078845 60.2106287119012 24.6765684798239 60.2106490193657 24.676506825895 60.2107233819329 24.6762809843755 60.211031377228 24.6752876177587 60.2119933441225 24.6758086710566 60.2135190583693 24.676638552507 60.2153145110857 24.6774347674579 60.2153197187573 24.6774382263208 60.2153969837709 24.6774713219208 60.2174060582923 24.6849152553257 60.2175842487965 24.6856152061987 60.2177744648416 24.6865562112753 60.2181792712637 24.6886648567605 60.2188479530036 24.6896455225658 60.2189639066846 24.6908563002104 60.2195419447424 24.6907925613589 60.2195766322606 24.6907887488583 60.2197395782878 24.6918393498289 60.2197964022357 24.6922058005711 60.2198951567396 24.6928056532731 60.2200796555445 24.6939333198997 60.2201638294978 24.6942193861576 60.2206538797037 24.6952954255003 60.2207813123768 24.6956560139729 60.2210206449416 24.6966653292797 60.2210916666888 24.6969050980582 60.2213577159295 24.6975844545741 60.2214851232253 24.6979097967838 60.2217465543085 24.6986499647203 60.2219459634437 24.6992145021878 60.2219585908857 24.6992578740542 60.2221381232314 24.6998744611311 60.2225288866148 24.7012169188784 60.2225452042826 24.7012726737183 60.2228089091699 24.7029909618079 60.22289971849 24.7045020088916 60.2230366494215 24.705671085133 60.2230413046258 24.7064320548955 60.2229523256718 24.7070602905268 60.2229980386284 24.707183461509 60.223002882054 24.7071986343301 60.2230607226508 24.7073800780586 60.2231772105962 24.7077455113044 60.2231849935552 24.7077696521172 60.2231893779043 24.7077832139512 60.2232242605005 24.707891505485 60.2236121570037 24.7074996874591 60.223674229608 24.7074369712241 60.2237004236034 24.7074105108323 60.2237978101938 24.7073121372622 60.2239181064743 24.7071906196718 60.2240970220856 24.7070108500979 60.2241973365319 24.7069166214941 60.2242827570763 24.7068363805758 60.2243005762785 24.7068196236661 60.2244124429685 24.7067145282946 60.2248732785494 24.706312527504 60.2250076804819 24.7062639471541 60.2250161864469 24.7063719556839 60.225019614832 24.7064154173338 60.2250498278449 24.7067985453556 60.2251082502282 24.707539499016 60.2251835025939 24.7084941753891 60.2252986451353 24.7091672662676 60.2254091412063 24.7098133633505 60.2254986837826 24.710337008313 60.2255628935679 24.7107123377417 60.2256139065336 24.7110402821043 60.2259132354406 24.7127608166102 60.2259109516093 24.7128716402541 60.225494839463 24.7128719818025 60.2252427012827 24.7130534346007 60.2251340145175 24.7130827510002 60.2249943587504 24.7132862487905 60.2248827244873 24.7135140130517 60.2248893476928 24.7141259972737 60.2248903421687 24.7142113254789 60.2248913452508 24.714296635029 60.2248992408283 24.7145734237973 60.2250749470896 24.7154435364471 60.22501999926 24.7155107282194 60.2250085705607 24.71552672889 60.2249361716471 24.7156180330239 60.2248419081294 24.7157343162667 60.2246725250273 24.7159555441527 60.2245445907983 24.7161190790953 60.2245312324947 24.7161357011663 60.2242821261418 24.7164460081536 60.2242534365009 24.7164830908922 60.2235475529008 24.7173954076419 60.2235157843003 24.717436278212 60.2230413240594 24.7180495805296 60.2223421367198 24.7189475860347 60.222289652185 24.7190160395047 60.2223770995457 24.7207252167685 60.2225087548422 24.7213440385856 60.2226646513417 24.7217448059032 60.2228758315352 24.7218739894856 60.2234559678095 24.721921461267 60.2234057234112 24.7220435497358 60.2228849887483 24.7232897704475 60.2227438851163 24.723638488688 60.2224861837791 24.7242785836662 60.2224035260992 24.7244853595402 60.2222520709871 24.7248701760867 60.222186609339 24.7250305972488 60.2219790527793 24.7255393186195 60.2223025346912 24.7253320548331 60.2223578148112 24.7253174798588 60.2227726158717 24.7254440037515 60.2229309233513 24.7259824559427 60.2230081197045 24.7262449668628 60.2231054612354 24.7264717206736 60.2236070987438 24.7276273907253 60.2236785686792 24.7279485606687 60.2238012230985 24.7284718104751 60.2238537866612 24.7288871084467 60.224130143485 24.7312500158027 60.2242079551631 24.7319651235065 60.2242458740853 24.7323136366035 60.2242187370997 24.7329882717908 60.224212208319 24.7331507550472 60.2241716550736 24.7343200856318 60.2240624511769 24.7344450355515 60.2240373058599 24.7344737675689 60.223663421026 24.7349015355735 60.2235500578742 24.7350312287729 60.2234685265285 24.735125029413 60.2234226467074 24.7351777989802 60.2233356812398 24.7352853001186 60.2233049732928 24.7353202110493 60.2230760162487 24.7355805210805 60.2229772482972 24.7356928067969 60.2225933470143 24.7361423098751 60.2225816966247 24.7361559879994 60.2225700542821 24.7361696113883 60.2225151248249 24.7362400478086 60.2224509267217 24.7361437369972 60.2224210744392 24.7360740746437 60.2222227434056 24.7357590517458 60.2220658763491 24.735509876977 60.222010310058 24.7354509281337 60.2217191989411 24.7352669942934 60.2214516798855 24.7350959348253 60.2214404723772 24.7350887273454 60.2214347303076 24.7350854401074 60.2214229487416 24.7350803848242 60.2214108799527 24.7350769202543 60.2213985694167 24.7350750793702 60.2213861442809 24.7350749436772 60.2213736500209 24.7350765461479 60.2213612041959 24.7350799328366 60.2213488952932 24.7350850254104 60.221336804676 24.7350918543655 60.2213250298035 24.7351003407504 60.2213136319391 24.7351103900554 60.2213027079258 24.7351218872597 60.221292309439 24.7351347024037 60.221282497742 24.7351487409788 60.2212778670366 24.7351563551861 60.2212690062415 24.7351718990174 60.2212487930529 24.7351775369498 60.2211617634723 24.735201850961 60.2210545206936 24.7352318027011 60.2209306657258 24.7352689130747 60.2208888866468 24.7352814556541 60.2208251275501 24.7353229416351 60.2207946715926 24.7353357862096 60.2207248399146 24.7353946092408 60.2206874601851 24.7353949312197 60.2206623089364 24.7354096486011 60.2206488942453 24.7353999573179 60.2206132618999 24.7353568971207 60.2205686150679 24.7353398453444 60.220569562616 24.7353564093051 60.2205698396932 24.7354941554814 60.2205055088948 24.7355074228932 60.2205055708027 24.7355762830754 60.2205056329827 24.735645161293 60.2205184246332 24.7360871673319 60.2205198430028 24.7361360546395 60.2205250557327 24.7363161980477 60.2205537085611 24.7373067631008 60.2201985916449 24.7376662448264 60.2201865653379 24.7376784306306 60.2200422916528 24.7378244941796 60.2197451428702 24.7381252988231 60.2196315481401 24.7382447435994 60.2194038101864 24.7384709756978 60.219116229807 24.7387567014811 60.218952639877 24.7389321069888 60.2189091951277 24.7389786837826 60.2188498630102 24.7390422790411 60.2190548883822 24.7392314192753 60.2193106759152 24.7394486261843 60.2196344634386 24.7397339885962 60.2196271467131 24.7397669014845 60.2195012791466 24.7403322257988 60.2193132124227 24.7411769305379 60.2192515398017 24.741453894848 60.2191415628081 24.7419479152913 60.2191145766437 24.7420690964632 60.2190786450649 24.7422304509445 60.2189627726875 24.7422553560758 60.2189764583506 24.7422852163071 60.2191524794553 24.742669379053 60.2191664321584 24.7427027961346 60.2191733299075 24.7427196364755 60.2191867413748 24.7427539755085 60.2191997951104 24.742788934981 60.2192124447194 24.7428244278082 60.2192247177312 24.7428604882061 60.2192365773365 24.7428970645404 60.2192423004369 24.7429156106721 60.2192535526224 24.7429529148994 60.2193330028724 24.7432231700443 60.2193393897595 24.7432490551498 60.2193426815863 24.7432619728874 60.2193496090066 24.7432874236361 60.2193568811132 24.7433125437635 60.2193645065714 24.7433373146191 60.21937246621 24.7433616653016 60.2193807516709 24.7433856324959 60.2193893706989 24.74340914345 60.2193983050434 24.7434321813637 60.219407536147 24.743454711403 60.2194170643168 24.743476751602 60.2194268700749 24.7434982130246 60.2194369540351 24.7435191317386 60.2194472973332 24.7435394548757 60.2194578820256 24.7435591836693 60.2194632997088 24.7435687596014 60.2194742273216 24.7435875259769 60.2197196089093 24.7438756831447 60.2199812337478 24.7441804225039 60.2202134870904 24.7446965563121 60.2203883824916 24.7450978858538 60.2205040627057 24.7453834153792 60.220754989013 24.7462660252476 60.2208033645636 24.7464328254196 60.2209251475873 24.7469979183583 60.2209327252342 24.7470363086189 60.2209368126247 24.7470553658993 60.2209460858354 24.7470925745106 60.2209564188284 24.7471287173295 60.2209677998755 24.7471636326607 60.2209801451661 24.7471971456995 60.2209934157498 24.7472290785617 60.2210004728561 24.7472442306202 60.2210149476526 24.7472735530457 60.2210334577965 24.7473458424737 60.221084484019 24.7475450366063 60.2211175359121 24.7489627072156 60.2205483157148 24.7493447831214 60.2200955109081 24.7496487195011 60.2199657458037 24.7497358133486 60.2182567866607 24.7508828017121 60.2182108613655 24.7509136436094 60.2181961066089 24.750872533738 60.2176904087511 24.7494629098685 60.2176567678262 24.7493691325048 60.217589325604 24.7491811379882 60.2175449078908 24.7490573361252 60.2165034759909 24.7461547473821 60.2152682372087 24.7427123977718 60.2152436772621 24.7427017383012 60.2149392789815 24.7425693283259 60.2145769915575 24.7424117827653 60.2142178529107 24.742255594595 60.2134086185876 24.7419036863212 60.2132166242007 24.7418202058992 60.2131400559781 24.741786895688 60.2128822285233 24.7416733398686 60.2128547067078 24.7416612429414 60.2128011934389 24.7416404097603 60.2127821636126 24.7416337940757 60.2127592413291 24.7416238358455 60.2127498296937 24.7416197356716 60.2123442849629 24.7414434342831 60.2121425173076 24.7413557395446 60.2117223871353 24.7411732636191 60.2115096432097 24.7410808578422 60.2112667277408 24.7409721534267 60.2109275152683 24.7408236501145 60.2106385662201 24.7406971422899 60.2104324968114 24.7406069004967 60.2103385394844 24.7405657672221 60.2098625515422 24.7403572820346 60.2098318462729 24.7403439262362 60.209326329315 24.7401241949479 60.2093162930353 24.7401198137031 60.2090316934486 24.7399961050355 60.2089448369624 24.7399584212242 60.2084055590714 24.7397242395257 60.2083719943117 24.7397096558177 60.2075407149322 24.7393486659999 60.2071098143033 24.7391621624018 60.2073051896794 24.7377264063876 60.207323179143 24.7376183384675 60.2070251480154 24.7375441156212 60.2066730281878 24.7373138044892 60.2063070480309 24.7367435466639 60.2061765835267 24.7366302812871 60.2061776789134 24.7366281483473 60.2068627192453 24.7359214022977 60.2066119596288 24.7345555396407 60.2064101708886 24.7341778181245 60.2063581340437 24.7341230952978 60.206161650296 24.7339165577922 60.2061186965589 24.7339549673825 60.206035615532 24.7341004614826 60.2059632032372 24.7342621114891 60.205818305678 24.7345317587458 60.2058018253473 24.7344099551104 60.2056458390799 24.7332572082388 60.2056153946592 24.7330321992829 60.2055341981317 24.7324746859927 60.2054700882021 24.7320345130552 60.205410697415 24.73162664558 60.2053165122444 24.7309125548062 60.2054395236625 24.7304646369958 60.2055705073639 24.7299877037969 60.2056327605891 24.7297739050221 60.2056781464861 24.7296116422583 60.2058693030831 24.7289087894735 60.2058889916617 24.7288363561434 60.2059078382537 24.7287388946222 60.206180496941 24.727748215012 60.2059973107978 24.7274664935106 60.2059773740454 24.7274358382285 60.2057476337522 24.7270825163117 60.2055987572708 24.726853580786 60.2054583515352 24.7266372536854 60.2054534978552 24.726629738991 60.2054488583219 24.7266184736476 60.2053880435967 24.7265229709823 60.2050717598654 24.7260354076829 60.2049202046312 24.7258017581063 60.2044880041785 24.7251313175261 60.2044290341076 24.7250444453122 60.2041331072366 24.7245835263917 60.2037563131178 24.7240014778671 60.2034927221403 24.7235956337879 60.2032372100412 24.7232026264622 60.2030093961255 24.7228575664569 60.2027364225644 24.7224438191977 60.2025626479914 24.7221762647761 60.2026182891941 24.7219526968233 60.2026750712054 24.7217244472408 60.2026939164755 24.7216486462643 60.2027331810417 24.7214856741421 60.2027940508665 24.7212413129328 60.2028743624258 24.7209187976766 60.2030053567359 24.7203927579131 60.2030527575607 24.7202010297864 60.2031156177572 24.7199409155353 60.2032095923328 24.7195559434474 60.203316120689 24.7191206864531 60.203477796906 24.718463883953 60.2035862817064 24.7180386439355 60.2037166174106 24.7175276953453 60.2037765014107 24.7172854449261 60.2039617778275 24.7165359734141 60.2040200736066 24.7163001821694 60.204122311416 24.7158865691179 60.2043952955821 24.7161615342005 60.2047873161094 24.7165606036452 60.2049952027135 24.7167735465574 60.2050112042575 24.7167899220127 60.205045228611 24.7168247703285 60.2052553003573 24.7170399649484 60.2054493604592 24.7172403030691 60.2055983612552 24.7173940719199 60.2058262305906 24.7176293331973 60.2060010903834 24.7178070267715 60.2061551450579 24.7179658639022 60.2062235758931 24.7180364051375 60.2063923718402 24.7182104453939 60.2064691520719 24.7182896120828 60.2069470150528 24.7187823049706 60.2070049104526 24.7188419762232 60.2071012056493 24.7189412860431 60.2074246107964 24.7192747236867 60.2077025289426 24.7195440224861 60.2078361623808 24.7192045574668 60.2079699427787 24.7188642852707 60.2081757877551 24.7183417261551 60.2082281227766 24.718208768488 60.2082906898962 24.7180497765131 60.208819848538 24.7167053816887 60.2089047212646 24.7164897459515 60.2090870644246 24.7160264413752 60.2090980806994 24.7159984925514 60.2091259804753 24.7159275666064 60.2091202549964 24.7159153662418 60.2090839009287 24.71583549866 60.20910141173 24.7157913949124 60.2092347550089 24.7154554394379 60.2094657802098 24.7148732904824 60.2096775891194 24.714339598987 60.2099181562038 24.7137333768683 60.2097374553713 24.7133037528221 60.2095787744742 24.7129264965693 60.2095760987624 24.7129203113331 60.2095193653697 24.712789123769 60.2092547970048 24.7121760836921 60.2088432480608 24.71122245085 60.2082757950083 24.7099076468795 60.2078618147447 24.7091735157798 60.2078394912092 24.7091339034439 60.207793231365 24.7090523187418 60.2075417518563 24.7086087886657 60.207490960859 24.7085192011229 60.2070772567041 24.7077895612439 + + + + + + Kauniainen + + municipality + + + + + + + + + 60.1501172399896 24.0458056925212 60.1502830133691 24.04291849099 60.1502840059285 24.0429005778584 60.1503062854339 24.0424990056522 60.1503433539057 24.0418083426663 60.1504796573543 24.0392673432749 60.1508809121428 24.0316300589835 60.1510850287124 24.0278584846184 60.1510876572149 24.0278098741513 60.151243449817 24.024952500226 60.1513881085109 24.0222543807139 60.1514123178477 24.0218007684953 60.1515609427708 24.0190138728635 60.1559187925479 24.0167008142703 60.1572409549536 24.0160082151013 60.1601410714959 24.0171921878675 60.1613657601136 24.0176703812729 60.1621421604902 24.0179735550555 60.1628527766778 24.0182710237831 60.1641354837949 24.018788225438 60.1642853878512 24.0188494790045 60.1649721996984 24.0190902729289 60.1666627986723 24.0197825800587 60.1686708888913 24.0176186241449 60.1694446698342 24.0167850322942 60.1694743756709 24.0167567482963 60.1694976340604 24.0167346214271 60.1695344347526 24.016698606633 60.1713510008215 24.0170634078169 60.1721533375742 24.0172275986594 60.1721688017643 24.0172292253847 60.1722135871413 24.0172349547298 60.1722315012109 24.0172372428722 60.1728314375957 24.0173599474002 60.1737069734517 24.0175383955261 60.175904081124 24.0180188039324 60.1773208341822 24.0178283496387 60.1773415546092 24.0178259826726 60.1801475833633 24.0174714137184 60.1808762831698 24.0173793414058 60.1808924042833 24.0173750281182 60.1810368691905 24.0176001613537 60.1810620349968 24.0175821292621 60.1809655404309 24.0169036460632 60.1809458067049 24.0166162867763 60.1809316317796 24.0163356027247 60.1809482331863 24.015647017672 60.1809427071787 24.0152222989415 60.1809440512357 24.0151667062542 60.1809946929613 24.0151703506882 60.181237442782 24.0151877730886 60.1820476031902 24.0125703361453 60.1818581391908 24.0115942728966 60.1819720228008 24.0110349649006 60.182275643523 24.0095437100043 60.1825020552024 24.0082628766801 60.1851687877057 24.0129616270359 60.1865450940098 24.0153759962621 60.1865742890788 24.0154271464085 60.1878980935243 24.017746994048 60.1885314900306 24.0188667020002 60.1885510471693 24.0189012847926 60.1885519736712 24.0189372694259 60.1885543384833 24.0189613051439 60.1885618739105 24.0189939114372 60.1885729941731 24.0190221146714 60.1885824120661 24.0190405485232 60.1885964309822 24.0190630035927 60.1886114569879 24.019082696881 60.188614779048 24.0190865815304 60.1886306483101 24.0191034196434 60.1886395959919 24.0191117377677 60.1886563143442 24.0191247819192 60.1886737886355 24.01913268729 60.1886769729753 24.0191332464108 60.1886948541443 24.019131281194 60.1887064308318 24.0191266582143 60.1887239598043 24.019119023212 60.1887333800199 24.0191171941456 60.1887507744202 24.0191251428654 60.188763934416 24.0191365792695 60.1887794921556 24.0191543479203 60.1887840723577 24.0191646321462 60.1887883953626 24.019199027784 60.1887869848141 24.01921940057 60.1887800587825 24.0192526155188 60.1887762192641 24.0192684632333 60.1887700528631 24.0193022948936 60.1887679835131 24.0193117569926 60.188758915922 24.0193428385861 60.1887550797665 24.0193608331483 60.1887550019123 24.019396512173 60.18875906186 24.0194228121055 60.1887674601286 24.0194546367247 60.1887770576818 24.0194850534274 60.188780305958 24.0194948450522 60.1887898166691 24.0195253959607 60.1887968733061 24.0195503053802 60.1888047265367 24.0195826666862 60.1888094759396 24.0196216428504 60.1888073935463 24.0196572872515 60.1888059133867 24.0196677784987 60.1887993259019 24.0197012693936 60.1887980294427 24.0197067459218 60.1887892193113 24.0197380927701 60.1887822500795 24.0197558121626 60.1887695422705 24.0197812514593 60.188763584723 24.0197984099294 60.1887604801159 24.0198337500357 60.188760026591 24.0198503370461 60.1887584437934 24.019886224753 60.188758891546 24.0199221087034 60.1887611475529 24.0199361223273 60.1887726594374 24.0199633702969 60.1887873741954 24.0199840125425 60.1887953069595 24.0199951475691 60.18880894327 24.0200185761458 60.1888204894224 24.0200397584545 60.1888345770727 24.0200620815609 60.1888481844938 24.0200822288908 60.18887749451 24.0201237950892 60.1888798352163 24.0201267945324 60.1888954213474 24.0201446333044 60.1889085933516 24.0201570073362 60.1889252557222 24.0201703639346 60.188929808236 24.0201742273428 60.1889455513664 24.0201914564852 60.1889589366282 24.0202145110578 60.1889684692167 24.0202448438219 60.1889697417742 24.0202526856261 60.1889704470383 24.0202884381891 60.1889651997994 24.0203227999604 60.1889629453694 24.020332026223 60.1889529879668 24.0203619073138 60.188940674468 24.0203881046586 60.1889374757335 24.0203940965351 60.1889236232811 24.0204169871071 60.1889123378297 24.0204309658992 60.1888957331188 24.020444542965 60.1888778638472 24.0204570257853 60.1888612912984 24.0204708344721 60.1888555919045 24.0204751044131 60.1888382305585 24.0204842030857 60.1888250649508 24.0204924881891 60.1888091196731 24.0205090186464 60.1888002801405 24.0205170918351 60.1887826673725 24.0205230015299 60.1887769259201 24.0205222050466 60.1887596903986 24.0205125270474 60.1887496027956 24.0205042577666 60.1887327650542 24.0204918913209 60.1887251588992 24.0204884852629 60.1887072692583 24.0204868779079 60.1886946116368 24.0204885851815 60.1886767020953 24.0204892891912 60.1886708960234 24.020487217493 60.1886534728319 24.0204787835137 60.1886453883097 24.0204800760499 60.1886389378963 24.0205168741607 60.188643500978 24.0205515728129 60.1886472370848 24.0205694758805 60.1886530176797 24.0206035769632 60.188656240641 24.0206242330892 60.1886629049503 24.0206576766607 60.1886712678664 24.020689540778 60.1886735378021 24.0206969853426 60.1886830743289 24.0207274980561 60.1886861311411 24.0207387686509 60.1886920706669 24.0207727471282 60.1886962315773 24.0208007521351 60.1887088473144 24.0208699053819 60.1887117309533 24.0209054420902 60.1887131998518 24.0209384005717 60.1887151190998 24.020974205171 60.1887171720949 24.0209931811543 60.1887235265206 24.0210268333897 60.188726546857 24.0210392801563 60.188735181987 24.0210708671355 60.1887398644162 24.0210861042878 60.1887501256707 24.0211156853714 60.1887553399276 24.0211286008384 60.1887676893118 24.021154744792 60.1887765706403 24.0211725062561 60.1887893839838 24.0211977060012 60.1888028402831 24.0212215302948 60.1888107435557 24.021232956989 60.1888267593819 24.0212491333654 60.1888452531802 24.0212660233488 60.1888608558811 24.0212838070009 60.188872206414 24.0212954985712 60.1888891105554 24.0213076248884 60.1889020525116 24.0213177647922 60.188917403608 24.0213363471831 60.1889290149675 24.0213508479818 60.1889455051115 24.0213649425442 60.1889627841939 24.0213745629588 60.1889671176625 24.0213766781247 60.1889846040336 24.0213847280089 60.1889983935231 24.0213910019748 60.189015742375 24.0214001289146 60.1890329043215 24.0214161293836 60.1890457649444 24.0214410364302 60.1890512436836 24.0214593231274 60.1890561697111 24.0214937909444 60.1890563028741 24.0215105053154 60.1890517811682 24.021545180102 60.1890434044317 24.0215754408539 60.1890329948209 24.0216048032686 60.1890269075507 24.0216237956976 60.1890190823263 24.0216562077273 60.1890104215805 24.0216858265526 60.1890000067543 24.0217197544036 60.1890080626447 24.0217507627967 60.1890100926513 24.0217543318392 60.1890266284329 24.0217708583853 60.1890437295841 24.0217817582174 60.1890525121184 24.0217895327811 60.1890640148395 24.0218103950015 60.1890715226731 24.0218430049097 60.1890762708787 24.0218723645261 60.1890833396632 24.0219054292626 60.189092113045 24.0219299852874 60.1891061449635 24.0219522422438 60.1891190757573 24.0219630871776 60.1891326133699 24.0219665513848 60.1891326133699 24.0219665513848 60.189136824718 24.0219676311756 60.189154754354 24.0219662224303 60.1891657898034 24.021964698831 60.1891756275834 24.0219618583445 60.1891916259128 24.0219460814402 60.1892038629438 24.0219208657871 60.1892128398533 24.0218897205629 60.189214346003 24.0218835754747 60.1892261557546 24.02185654001 60.1892393830481 24.021832208888 60.1892499476497 24.0218129368018 60.1892770830465 24.0217657825539 60.1892813240859 24.0217593895191 60.1892958534939 24.0217382242366 60.1893099636636 24.0217159962713 60.1893223071601 24.0216899227286 60.1893326784782 24.0216552586809 60.1893466861965 24.0215889048381 60.1893501723968 24.0215745146256 60.1893671280682 24.0215109969768 60.1893746348188 24.0214820056731 60.1893825516902 24.0214496751558 60.1893912935245 24.0214144730362 60.1894008334849 24.0213839981902 60.1894039779552 24.021375990339 60.1894168673713 24.0213510218968 60.1894327857926 24.0213348909393 60.1894481638064 24.0213318907514 60.1894658506466 24.0213376670643 60.1894804499726 24.0213467907765 60.189496875265 24.0213611981909 60.1895125864271 24.0213786115196 60.1895222608976 24.0213908883627 60.189552505518 24.0214296832622 60.1895643383884 24.0214428470785 60.1895797905943 24.0214611320226 60.1895931327095 24.0214850756008 60.1895973672974 24.0214967811089 60.1896047435417 24.0215295297138 60.1896093446626 24.0215643343219 60.1896120848969 24.0215982971869 60.1896122644012 24.0216342605158 60.1896095795497 24.021661515687 60.1896029817883 24.0216949718195 60.1895950562963 24.0217273213181 60.1895895912811 24.0217496138098 60.1895829026142 24.021783024012 60.1895836124513 24.02181819943 60.1895934851612 24.0218396969426 60.1896087962106 24.021858500112 60.189617047767 24.0218682356163 60.1896476278545 24.0219059721408 60.1896502252608 24.0219092011225 60.1896653091715 24.0219286925721 60.1896792676758 24.0219512813555 60.1896813371257 24.0219554062692 60.1896925183248 24.0219835517622 60.1897008621875 24.022015382828 60.189702817774 24.0220256349789 60.1897074093942 24.0220604225693 60.1897098916413 24.0220961050889 60.1897103163147 24.0221066042804 60.1897108828764 24.0221426048028 60.1897100563251 24.0221785872495 60.189707805308 24.0222143559741 60.1897055990085 24.022240521243 60.1897038794486 24.0222763500502 60.1897042879451 24.0222885287974 60.1897088509771 24.0223232468372 60.1897193721294 24.0223520116625 60.1897265220657 24.0223611073648 60.1897438199494 24.0223699689635 60.1897512663762 24.0223702684176 60.1897686008278 24.0223619668568 60.1897802559977 24.0223464391592 60.1897951737169 24.022326555832 60.1898078664356 24.0223196132471 60.1898253564329 24.0223250290634 60.1898335195901 24.0223368297794 60.1898476537852 24.0223588435556 60.1898527364974 24.0223627134442 60.1898702895919 24.0223609420317 60.1898818813739 24.0223313997835 60.1898878745299 24.0222974208935 60.1898915037187 24.0222813935942 60.1899006824312 24.0222504280091 60.1899104626007 24.0222202379169 60.1899177494697 24.0221934495678 60.1899334083177 24.022128587128 60.1899355522479 24.0221204353403 60.1899448238288 24.0220896056007 60.1899560069332 24.0220614715836 60.1899715517295 24.0220347104922 60.1899872548105 24.0220173901539 60.1899987228795 24.0220095299027 60.1900164241074 24.0220039555908 60.1900343169714 24.0220057078748 60.1900479217715 24.0220121614264 60.1900645097371 24.0220258148523 60.1900689931727 24.0220306051588 60.1900847364751 24.0220478537864 60.1901015402341 24.0220603148107 60.1901139150457 24.0220636138915 60.190130648135 24.0220537426032 60.1901349779549 24.0220349089237 60.1901352831709 24.0219989191313 60.1901344007987 24.021970056194 60.1901338068814 24.0219340396432 60.1901344497429 24.0219150710267 60.1901402519948 24.0218813978051 60.1901487798149 24.0218654495354 60.1901657415746 24.0218553589177 60.1901781648402 24.0218616127904 60.1901934330774 24.0218805103988 60.1902059044245 24.0218972977733 60.1902355009546 24.0219380473182 60.1902443054649 24.0219511973984 60.1902587997375 24.0219724388255 60.1902736320391 24.0219927293695 60.1902888066664 24.0220106611847 60.1903031121584 24.022032298709 60.1903057923184 24.0220380103768 60.1903169131636 24.0220662701625 60.1903290100228 24.0220927814159 60.1903401885907 24.0221064201004 60.190357058818 24.0221186406458 60.1903702440683 24.022126016507 60.1903876108058 24.0221351425703 60.1903926598685 24.0221379148302 60.1904096736882 24.0221493284421 60.1904242732297 24.0221696582986 60.1904267884915 24.0221768284954 60.1904329901929 24.0222104965272 60.1904376090754 24.0222453004842 60.19044143677 24.0222676894523 60.1904437482549 24.0223029732374 60.1904412219767 24.0223113041513 60.1904279636547 24.0223354583487 60.1904199970872 24.0223483964819 60.1904056957429 24.0223701189761 60.1903956381832 24.0223811715162 60.1903794857515 24.0223968905917 60.1903746889904 24.0224017462277 60.1903590180219 24.0224192982549 60.1903527143805 24.0224270692917 60.1903381840579 24.0224481989523 60.19033424079 24.0224554492888 60.1903231114052 24.0224835786256 60.1903164425154 24.022517077847 60.1903159607192 24.022552813164 60.1903200809672 24.0225754281877 60.1903300182201 24.0226054013764 60.1903399807721 24.0226301033471 60.1903537553083 24.0226529080376 60.1903683506494 24.0226634584279 60.1903860970308 24.0226686888746 60.1904051777103 24.0226721202736 60.1904231187034 24.0226736159524 60.1904361270853 24.0226731226854 60.1904719762543 24.0226698556157 60.1904846190817 24.0226690887215 60.1905204819449 24.0226668308876 60.1905255894226 24.0226662055929 60.1905435146138 24.022664599061 60.1905614459587 24.0226652655697 60.1905653789235 24.0226663526769 60.1905829097145 24.022673984561 60.1906002686635 24.0226831658068 60.1906173600123 24.0226912345126 60.1906351325481 24.0226960295719 60.1906427277046 24.022696550201 60.1906786090537 24.0226959147116 60.1906899948544 24.0226979864672 60.1907076211705 24.0227046714222 60.1907249703412 24.0227138175141 60.1907433211993 24.0227263554297 60.1907584136218 24.022745432085 60.1907658920133 24.0227647476934 60.1907724127342 24.0227982248599 60.1907764184158 24.0228333374447 60.1907775200814 24.0228459770662 60.1907799128616 24.0228816869452 60.1907807751284 24.0229176618422 60.1907796897591 24.0229549320042 60.1907768683675 24.0229905189392 60.1907714834049 24.0230303801614 60.1907643269967 24.0230633825655 60.1907626382199 24.0230694000816 60.1907524128859 24.0230989814366 60.190740642398 24.023126176555 60.1907375290327 24.0231327742693 60.1907248014327 24.023158161417 60.1907115649356 24.0231824939427 60.190708341264 24.0231881813704 60.1906950668707 24.0232124270826 60.19068249857 24.0232381064871 60.1906803856413 24.0232432421428 60.1906701138146 24.0232727554012 60.1906609719486 24.0233037722128 60.1906587427943 24.0233117333332 60.1906505495917 24.0233437829219 60.1906451919456 24.0233780657044 60.1906442339137 24.0234062116863 60.1906471067081 24.0234416975144 60.1906542358591 24.0234746684444 60.1906604876337 24.0234921825746 60.1906718597181 24.0235200414375 60.1906782778789 24.0235369630857 60.1906894073768 24.0235652228924 60.190701367349 24.0235920541355 60.1907109856657 24.0236074407974 60.1907261782181 24.0236265809376 60.1907329635278 24.0236342486132 60.1907491850405 24.0236495964218 60.1907524909238 24.0236519674955 60.1907700331902 24.0236589132101 60.1907753570252 24.0236587195756 60.1907927885088 24.0236507344356 60.1908095442349 24.0236378662985 60.1908125533979 24.0236354283124 60.1908294007469 24.0236230390618 60.1908469120539 24.0236154075484 60.1908604739609 24.0236147562245 60.1908780851992 24.0236211723977 60.1908943438617 24.0236361740519 60.1909067446093 24.0236570288677 60.1909162931482 24.0236873087864 60.1909180496516 24.0236979042467 60.1909196698381 24.0237336301893 60.1909159850574 24.0237687901689 60.1908994893389 24.0238344332906 60.1908950566467 24.0238598988539 60.1908887419744 24.0238935828067 60.1908800414993 24.0239238559179 60.1908733209416 24.0239570713631 60.190878588418 24.0239955705243 60.1908873626917 24.0240269852845 60.190892431228 24.0240490277591 60.190897910118 24.024083339497 60.1909017911382 24.0241185177783 60.1909046106905 24.024152041894 60.1909068156246 24.0241878050902 60.1909080186843 24.0242237673128 60.1909079834947 24.0242598056134 60.1909063327754 24.0242951241103 60.1909015397291 24.0243297528302 60.1908912370973 24.0243639061908 60.19087750053 24.0243867859362 60.1908749881716 24.0243893412587 60.19085769505 24.0243982879006 60.190839781907 24.0243984308026 60.1908310245715 24.0243965714814 60.1908131842613 24.0243927560258 60.1908029385491 24.0243926374896 60.1907851501797 24.0243971358739 60.1907664149937 24.0244086852086 60.1907517573362 24.0244289596408 60.1907439860012 24.0244570010173 60.1907411625873 24.024492515765 60.1907403085052 24.0245285017371 60.1907399562945 24.0245636302466 60.1907393907513 24.0245996622587 60.1907381942805 24.0246356070568 60.1907357160089 24.02467128901 60.1907331189408 24.0246964798039 60.1907246737064 24.0247665356375 60.1907210546524 24.0248018336786 60.1907204594748 24.0248093399667 60.1907184963128 24.0248451556788 60.1907177049029 24.0248811359351 60.1907175166914 24.0249171698289 60.1907176275934 24.0249329126452 60.1907189193098 24.024968830558 60.1907243853555 24.0250029810169 60.1907273986171 24.0250119288836 60.1907393501422 24.0250387975204 60.1907520946733 24.025064168845 60.1907568369006 24.0250752878971 60.190766545713 24.0251055174686 60.1907729692318 24.0251390940896 60.1907746785696 24.0251551974311 60.1907744312264 24.0251910021569 60.1907686476217 24.0252183400745 60.1907590150917 24.0252487331939 60.1907533714334 24.0252706991899 60.1907504199107 24.0253057202181 60.1907608638559 24.0253386801849 60.1907748731688 24.0253611582541 60.1907793500617 24.0253676639334 60.1907936407227 24.0253894669475 60.1908061760468 24.0254151280571 60.1908099824532 24.0254261875562 60.1908192027862 24.0254570750204 60.1908295658373 24.0254864335121 60.19084481095 24.0255131304918 60.190857965185 24.0255375447049 60.1908613264303 24.0255467859491 60.1908683393012 24.0255798041355 60.1908709530937 24.025615385989 60.1908706504523 24.0256387270029 60.1908648733392 24.0256723618901 60.190848413873 24.0256932320137 60.1908311156606 24.025702755843 60.1908212367105 24.0257073674567 60.1908036519958 24.0257145353287 60.1907858477371 24.0257187276756 60.1907827452626 24.0257186115897 60.1907470348305 24.0257116496065 60.1907405997916 24.0257103736415 60.1907233135111 24.0257016172601 60.1907208532701 24.0256976897709 60.190711524913 24.0256671910492 60.1907038749375 24.0256346096207 60.1907000053029 24.0256239347931 60.1906883992302 24.0255964392361 60.19068467975 24.0255848485979 60.1906754500761 24.0255539440263 60.1906655580015 24.025532356266 60.1906520682071 24.0255086041353 60.1906457829733 24.025497191702 60.1906308512019 24.0254776482123 60.1906257713757 24.0254763037217 60.1906078510634 24.0254777278357 60.1905986988655 24.0254754889696 60.1905808990104 24.0254734737333 60.1905734517564 24.0254799403098 60.1905607942212 24.0255052659143 60.1905575114725 24.0255147297143 60.1905495092712 24.0255469056828 60.1905450260236 24.0255817403498 60.1905444248498 24.0255905824102 60.1905437767064 24.025626549474 60.1905450596711 24.0256624860494 60.190546444376 24.0256837433081 60.1905499332563 24.0257190831919 60.190555526262 24.0257532942721 60.1905566013356 24.0257583576418 60.1905651725924 24.0257899533223 60.1905771296941 24.0258166772414 60.1905901803901 24.025832078533 60.1906065252451 24.0258469289806 60.1906231478895 24.0258605453148 60.1906269788491 24.0258642945749 60.1906422632513 24.0258831386648 60.1906558626775 24.0259065742571 60.1906609529271 24.0259175897093 60.1906835664299 24.0259735374357 60.1906945247944 24.0259965986757 60.1907080320325 24.0260203314081 60.1907109759243 24.0260249910484 60.1907255531643 24.0260459563511 60.1907408216287 24.0260648922446 60.190756565634 24.0260821971876 60.1907598215675 24.0260855474304 60.1907760191381 24.0261010429685 60.1907926397365 24.02611456946 60.1908097638103 24.0261253076149 60.1908131712655 24.0261270020959 60.190848228763 24.0261425045992 60.1908534423841 24.0261454069668 60.1908703371342 24.0261575373049 60.1908862279812 24.0261741794596 60.1908999876242 24.0261971497218 60.1908999876242 24.0261971497218 60.1909063991301 24.0262129899147 60.1909153649003 24.0262441533471 60.1909287971108 24.0263109836747 60.1909338182643 24.0263337345357 60.1909475239585 24.0264003416883 60.1909513309814 24.0264270459814 60.1909545608392 24.0264624639462 60.1909560225147 24.0264983667689 60.1909558611701 24.0265344165009 60.1909550301786 24.0265554415333 60.1909523431313 24.02659105222 60.1909480063152 24.02662601826 60.1909419199585 24.0266598975631 60.190934479315 24.0266910844686 60.19092529916 24.0267220318188 60.1909150090228 24.0267515638662 60.1909045637438 24.0267781867106 60.1908809185583 24.0268324034387 60.1908780357211 24.0268388716876 60.190866301941 24.0268661343802 60.1908552954567 24.0268945763057 60.190846114849 24.0269255055173 60.1908397735891 24.0269556364098 60.1908358442273 24.0269907458464 60.1908371761814 24.0270264798483 60.1908418380547 24.0270496421983 60.1908497783407 24.0270819632195 60.1908551038063 24.0271110743747 60.1908605904698 24.0271453677883 60.1908641000971 24.0271664330044 60.1908678091219 24.0272015910396 60.190864023881 24.027235117553 60.1908552669844 24.0272665135784 60.1908480367179 24.0272862590079 60.1908254747148 24.0273423080136 60.1908171353151 24.0273666829531 60.1907978513204 24.0274274696573 60.1907655554776 24.0275162297704 60.1907615175216 24.0275288834553 60.1907429542824 24.0275905610995 60.1907350115674 24.027616199223 60.1907264306061 24.0276478317213 60.1907250341739 24.0276829102558 60.1907378914803 24.0277125308636 60.1907520109082 24.0277347292751 60.1907545733619 24.0277388100696 60.1907678486901 24.0277630336821 60.1907804292036 24.0277887276505 60.1907915306482 24.0278121735787 60.1908020138721 24.0278413053504 60.1908050777805 24.0278589283269 60.1908064922225 24.0278947450761 60.1908052952616 24.0279307078622 60.1908030535248 24.0279673606358 60.1907999679159 24.0280028446754 60.1907952301211 24.0280375759512 60.1907881185046 24.0280706272937 60.1907844231774 24.0280837371216 60.1907736111964 24.0281124496678 60.1907593985605 24.0281341618077 60.1907473923425 24.0281428807739 60.1907295500282 24.0281453790517 60.1907119667802 24.0281385970703 60.1907029289269 24.0281314390167 60.1906866075848 24.0281164228782 60.1906695529766 24.028105569182 60.1906554802408 24.0281046769441 60.1906375734593 24.0281035 60.1906225231615 24.0280954784252 60.1906048643812 24.0280913378098 60.1905973185198 24.0280970187558 60.1905840363463 24.0281209562944 60.1905749046439 24.0281504729999 60.1905664624997 24.0281822911259 60.1905608041323 24.028200017355 60.190549265238 24.0282275684024 60.190535591081 24.0282508556236 60.1905270530319 24.028263176384 60.1905144019041 24.0282884100455 60.1905120962478 24.02832422016 60.190518398345 24.028357627642 60.1905268218182 24.0283754513887 60.1905429629041 24.0283908447766 60.1905601116835 24.0284014915729 60.1905684583461 24.0284062761978 60.1906201299848 24.0284366444659 60.1906285496748 24.0284410796581 60.1906460058341 24.0284494070583 60.190681230141 24.0284631465493 60.1906984863664 24.0284685688539 60.1907340575623 24.0284781448192 60.1907451125595 24.0284810965912 60.190762853402 24.0284864931236 60.1907804226569 24.0284938539903 60.1907939723063 24.0285014701863 60.190810551065 24.0285151460259 60.190823199699 24.0285398777841 60.1908249610913 24.0285723429932 60.1908195393193 24.0286066308235 60.1908121072561 24.0286394223304 60.1908073094887 24.0286578647297 60.1907978151091 24.0286884428227 60.1907848351163 24.0287130386244 60.1907724076449 24.0287246104287 60.1907377794165 24.0287434591973 60.1907246055114 24.0287537992817 60.1907079628472 24.0287673221632 60.1907002496586 24.0287719534807 60.190665218167 24.0287876447602 60.1906625469869 24.0287891314213 60.1906282264413 24.0288100814697 60.1906166323522 24.0288143419912 60.1905987250785 24.0288155465685 60.1905811426697 24.0288088002681 60.1905635224829 24.0287955614087 60.1905459301247 24.0287915768167 60.190530602079 24.0288140389814 60.1905222376494 24.0288457235446 60.1905199488105 24.0288646606107 60.1905201072052 24.0289005726295 60.1905237195555 24.0289358474749 60.1905264223728 24.0289546037597 60.19053238712 24.0289886012525 60.1905395695082 24.0290216044625 60.1905430628062 24.0290355436015 60.1905517400834 24.0290670944002 60.1905701623348 24.029128926604 60.1905896669363 24.0291953525419 60.1906000389413 24.029224747239 60.1906113112143 24.0292506140587 60.1906246629348 24.0292746508093 60.1906395936712 24.0292945750148 60.190657704519 24.0293136703316 60.1906712385617 24.0293370230088 60.1906783516708 24.0293657381129 60.190678454195 24.0294011681509 60.1906722103904 24.0294188388928 60.1906562135755 24.029434720965 60.1906389484398 24.0294445284682 60.1906264520489 24.029450223688 60.190591167078 24.0294634289494 60.1905836544696 24.0294657863972 60.1905659638015 24.0294718430168 60.1905484150543 24.0294794205692 60.190537496184 24.0294861459992 60.1905204728123 24.0294975194812 60.1905031445835 24.0295069175932 60.1904859395926 24.0295117934646 60.1904682712968 24.0295180465044 60.1904510631852 24.0295279931028 60.1904364661982 24.0295486023595 60.1904255679426 24.0295770873212 60.1904191682554 24.0296126538971 60.1904191357186 24.0296484747946 60.1904254104121 24.029682678844 60.190432830698 24.0297154801357 60.1904340695729 24.0297238489514 60.1904376026166 24.0297592031296 60.1904404129623 24.0297947850552 60.1904428340995 24.0298226250728 60.190441880016 24.0298582225572 60.1904390159767 24.0298675397467 60.1904242968856 24.0298871133109 60.1904075341864 24.0298840636219 60.1903905058954 24.029872773662 60.1903866213907 24.0298702377759 60.1903689414094 24.0298663507722 60.1903647828304 24.0298684229143 60.1903499027375 24.0298880290334 60.1903454383727 24.0298981043837 60.1903384307452 24.02993060411 60.1903419867829 24.029951755289 60.1903558024943 24.0299744509873 60.1903715203123 24.0299918140767 60.1903745520624 24.0299947879565 60.1903904032571 24.0300116878998 60.1904031592177 24.0300364102029 60.1904079506038 24.0300669771428 60.1904067934441 24.0301027372915 60.1904013439097 24.0301297911534 60.1903913590014 24.0301597451245 60.1903828837939 24.0301820922644 60.1903712613568 24.0302095417257 60.1903596860018 24.0302322773559 60.1903457747988 24.0302550256405 60.190343478567 24.0302584090074 60.1903282040437 24.0302772566417 60.1903109286074 24.0302854044555 60.1902952018219 24.0302756567376 60.1902807377722 24.0302544991925 60.1902744628891 24.0302423272094 60.1902616679568 24.0302170671204 60.1902513127703 24.030201240151 60.1902357785278 24.0301832469265 60.1902249717586 24.0301729281955 60.1902084637765 24.0301587942613 60.1902035308955 24.0301547832853 60.1901861860726 24.0301466074228 60.1901771884848 24.0301496582953 60.1901617584825 24.0301675816423 60.1901518012189 24.0301903513065 60.1901441185754 24.0302228035289 60.1901398798307 24.0302577773459 60.1901383415421 24.0302897643297 60.1901374141443 24.0303257560216 60.1901356206633 24.0303615914263 60.1901342310488 24.0303753584156 60.1901290830575 24.0304098550212 60.1901151898999 24.030476304333 60.190111152816 24.0304966260617 60.1901055764855 24.0305308545891 60.1901030228645 24.0305664519021 60.1901037598431 24.0305937221432 60.1901069979546 24.0306291568366 60.1901099881697 24.0306539318167 60.1901163572918 24.0306875497749 60.1901201087913 24.0306997874601 60.1901319107733 24.0307268515644 60.1901602432316 24.0307710612317 60.1901662720511 24.0307806751958 60.1901936856997 24.0308271874302 60.1901957977833 24.0308308219041 60.1902091928445 24.0308548009311 60.1902213841839 24.0308811984251 60.1902247076664 24.0308899742804 60.1902307487626 24.030922990497 60.1902292308995 24.0309322399969 60.1902163959685 24.0309569115645 60.1902109130047 24.0309632353693 60.1901937598793 24.0309728333129 60.1901788408013 24.0309674511692 60.1901617713957 24.0309563268415 60.1901491306806 24.0309491689578 60.1901314205497 24.0309435338424 60.190113518671 24.0309441773761 60.1900963784599 24.0309543515445 60.1900937868821 24.0309569856303 60.1900794417727 24.0309784193189 60.1900678277297 24.0310058494288 60.1900579624172 24.0310359363587 60.1900498714318 24.0310654118165 60.1900421090797 24.0310979250555 60.1900281968326 24.0311643395151 60.1900220673379 24.0311927354508 60.1900143958342 24.0312252945525 60.1900056021098 24.0312566919652 60.1899963943778 24.0312840488143 60.189985182392 24.0313121822164 60.1899730915965 24.0313387890912 60.1899603819435 24.0313642429173 60.1899545979314 24.0313751769923 60.1899151482 24.0314487345377 60.1899068687997 24.0314657944589 60.1898949560103 24.0314927279626 60.1898840507817 24.0315213206727 60.189874592806 24.0315519478725 60.1898666734958 24.0315858824279 60.1898616886082 24.0316204540248 60.1898603777941 24.0316401501893 60.1898610302275 24.0316760889923 60.1898660440909 24.0317105871784 60.1898728142894 24.0317376549578 60.1898779374456 24.031771818498 60.1898725246255 24.031802531237 60.189862502253 24.0318324334422 60.1898603114557 24.0318397226644 60.1898530244708 24.031872607583 60.189851044775 24.0319081706872 60.1898573001223 24.0319459490008 60.1898672434342 24.0319758878427 60.1898698895395 24.0319825054973 60.1898824252152 24.032008240479 60.1898981612949 24.0320248267402 60.1899083992964 24.032026608408 60.1899257987718 24.0320183782407 60.1899423538202 24.0320045404841 60.1899482556775 24.0319988647379 60.1899804256546 24.0319669254901 60.1899975588923 24.0319520249792 60.1900146773083 24.0319412759273 60.1900325244602 24.031939392844 60.1900363053224 24.0319405128277 60.1900531421311 24.0319524886638 60.1900681825883 24.031972115105 60.1900821316565 24.0319947633103 60.1900868494732 24.0320032147814 60.1900997647661 24.03202824801 60.1901116280388 24.0320552528892 60.1901221026721 24.0320840432998 60.1901315583269 24.032114676065 60.1901404187434 24.0321460122102 60.1901428552213 24.0321549043874 60.1901518032812 24.0321861424153 60.1901616592916 24.032216197744 60.1901742373383 24.0322418209449 60.1901816340882 24.0322523401184 60.1901978203788 24.0322677672326 60.1902150064358 24.0322780877654 60.1902324697226 24.0322863442718 60.1902472954828 24.032293178985 60.1902644803278 24.0323034455226 60.1902799095098 24.032321575548 60.1902845160726 24.0323298747671 60.1902950500964 24.0323589126657 60.1903007885893 24.0323928767912 60.19030145412 24.0324069452978 60.1902991604408 24.0324425372103 60.1902926789379 24.0324760894815 60.1902839492991 24.0325075531976 60.1902780661724 24.0325252987946 60.1902671977993 24.0325539422891 60.1902433913194 24.0326078795108 60.1902358329439 24.0326242426298 60.1902111354526 24.0326765099421 60.1902017325358 24.0326955658178 60.1901887965238 24.0327205525359 60.1901752840817 24.0327442740753 60.1901609528879 24.0327659403369 60.1901534225019 24.0327759312679 60.190137905692 24.0327940055395 60.1901218598985 24.032810124674 60.1901055563615 24.0328251663809 60.1900916041826 24.0328400859207 60.1900819357915 24.0328613309467 60.1900759243985 24.032881776522 60.1900697985426 24.0329155670109 60.1900677223512 24.03295124725 60.1900715782459 24.03298621129 60.1900751568608 24.0329995655119 60.1900867769283 24.0330269535567 60.1900939834341 24.033040214717 60.1901073691347 24.0330641953932 60.1901152305762 24.0330810242882 60.1901239522292 24.0331121927555 60.1901246661583 24.0331195985455 60.1901261977616 24.0331554943334 60.190129426989 24.0331877542989 60.1901336789813 24.0332227548343 60.1901358434096 24.0332608309585 60.1901385896432 24.033296400546 60.1901431830462 24.0333217707965 60.1901515168552 24.0333536780955 60.1901558885768 24.0333687471368 60.1901663281734 24.0333979922549 60.1901735308212 24.0334118854194 60.1901880232935 24.0334331319112 60.1901960369621 24.0334439204381 60.1902104531621 24.0334653723312 60.190213206781 24.0334703745304 60.1902224389443 24.0335002700855 60.1902206604078 24.0335147397123 60.1902085354108 24.0335410422803 60.1902009195371 24.0335520331928 60.1901850092662 24.0335685908496 60.1901718158248 24.0335788764264 60.1901550399495 24.0335916868596 60.1901419732684 24.0336036210308 60.1901257697909 24.0336191224598 60.190119272317 24.033625086297 60.1901033530693 24.0336416446861 60.1900978259602 24.0336496140116 60.1900844644801 24.0336736642987 60.1900786235537 24.0336848737977 60.1900669792204 24.033712179342 60.1900622838095 24.0337308097785 60.1900594436908 24.0337660897739 60.1900603318187 24.0337776660592 60.1900688829365 24.0338088500474 60.1900775906726 24.0338213442798 60.1900949887668 24.0338274962955 60.1900995816497 24.0338247539201 60.1901155799134 24.0338085132828 60.190123227073 24.0338013269433 60.1901397815068 24.0337874539779 60.1901532493971 24.0337749784207 60.1901701233293 24.0337629351272 60.190183022653 24.0337603810326 60.1902006363601 24.0337665316105 60.1902034310501 24.0337685528385 60.1902189607866 24.0337863676774 60.1902301481663 24.0338141019273 60.1902336207723 24.0338488121271 60.1902329442892 24.0338848171981 60.190231652462 24.0339154104404 60.1902274918302 24.033950304586 60.1902244837455 24.0339624311908 60.1902132211106 24.0339903338403 60.1902108116427 24.0339946834902 60.1901954890159 24.0340130103389 60.1901839290987 24.0340167967196 60.1901659893093 24.0340173517808 60.190147219623 24.0340181622082 60.1901293269991 24.0340208241706 60.1901251226016 24.0340216548596 60.190089398923 24.0340285250065 60.190073544721 24.0340307322623 60.1900556043316 24.0340320632616 60.1900408400585 24.034032385749 60.1900229025891 24.0340334458211 60.1900104145303 24.0340359085317 60.1899926752685 24.0340414075834 60.18998303378 24.034045399654 60.18996739618 24.0340616977656 60.1899614148185 24.0340983438582 60.189962557441 24.0341321273757 60.1899670933048 24.0341669759055 60.1899701722011 24.034186510289 60.1899819836476 24.0342545706672 60.1899876266391 24.0342870998709 60.1899923312226 24.0343218610391 60.1899947672585 24.0343580359544 60.1899954743704 24.0343940421539 60.1899955391848 24.0344330655569 60.1899964345828 24.0344690547612 60.1899990710722 24.0345037500278 60.1900024512087 24.0345391540665 60.1900053547631 24.0345685202888 60.1900093039322 24.0346036564477 60.1900143985467 24.0346381839887 60.1900192679527 24.0346606423552 60.1900279165946 24.0346921786005 60.1900478048061 24.0347521843629 60.1900560472896 24.0347780193042 60.1900749047646 24.0348393451967 60.1900816080348 24.0348610426577 60.1900913333725 24.0348913089679 60.1901016959635 24.0349207418838 60.190104277845 24.0349277084478 60.1901141605434 24.034957780154 60.1901206570395 24.0349911167275 60.1901200217701 24.03501452313 60.1901127556565 24.0350471711012 60.1901042030498 24.0350644894215 60.1900891607637 24.0350841076182 60.1900759445201 24.0351002047982 60.1900605548357 24.0351187536254 60.1900452550215 24.0351365003855 60.1900297973242 24.0351548207429 60.1899982966462 24.0351930118797 60.1899877887342 24.0352028558913 60.1899708564304 24.0352147051509 60.1899616847117 24.0352192138415 60.1899438647994 24.0352227166362 60.1899302659343 24.0352193065693 60.1899133107213 24.0352076465524 60.1898977200146 24.0351899088927 60.1898872118654 24.0351736432682 60.1898744357945 24.035148379906 60.18986258987 24.0351213184426 60.1898600843673 24.0351153554832 60.1898478327045 24.0350890343748 60.1898323739678 24.0350715735977 60.1898128783475 24.0350724669676 60.1897970519071 24.0350887634943 60.1897950622381 24.0350930029431 60.1897867985531 24.0351248384037 60.1897811574438 24.0351590354911 60.1897791000473 24.0351714910259 60.1897716003477 24.035204141655 60.1897573940841 24.0352233773901 60.189754597396 24.0352228719337 60.1897369549321 24.0352178419715 60.1897241964532 24.0352463659314 60.1897222633771 24.0352587560877 60.1897210171543 24.0352946134777 60.1897211297652 24.035303661343 60.1897232404047 24.0353393601523 60.1897262106223 24.0353576592703 60.1897311795014 24.0353921979664 60.1897299147286 24.0354224092973 60.1897228729856 24.0354554515442 60.1897154808724 24.0354768510054 60.1897045849488 24.0355054954742 60.1896963020371 24.0355340665321 60.1896901848679 24.0355678733524 60.1896884480998 24.0355854243491 60.1896874459114 24.0356213498838 60.1896888961317 24.0356572526133 60.1896924417859 24.0356944458699 60.1896977758064 24.0357288433666 60.1897017871315 24.0357495025301 60.189707129299 24.0357838632218 60.1897068799727 24.0358209117346 60.1897017387153 24.0358553702542 60.1896942498267 24.0358881098833 60.189685109692 24.0359213413116 60.1896769407125 24.0359534024697 60.189671708139 24.0359877969981 60.189670836104 24.0360134798923 60.189672286218 24.0360493826242 60.1896743183708 24.0360851967603 60.1896752355354 24.0361157524688 60.1896769448587 24.0361515957357 60.1896826566878 24.036185616366 60.1896873775032 24.0362002390493 60.1897004755916 24.0362246435986 60.1897168096511 24.0362390666802 60.1897268812612 24.0362410450998 60.1897448198614 24.0362404372442 60.1897528569976 24.0362402354542 60.1897707770342 24.0362420110667 60.189788616649 24.0362458148537 60.1898060413483 24.0362511537211 60.1898233806696 24.0362603075648 60.1898384117975 24.0362743249837 60.1898522358137 24.0362970402294 60.1898578583426 24.0363126101621 60.1898637886671 24.0363463586784 60.1898641483229 24.0363580187127 60.1898606122097 24.0363931444833 60.1898598996469 24.0363966371134 60.1898598996469 24.0363966371134 60.189855859183 24.0364124291751 60.1898498587636 24.0364462434955 60.1898493960522 24.0364757690348 60.1898562811813 24.0365084209791 60.1898725139258 24.0365251449873 60.1898903135926 24.0365243513309 60.1898970684047 24.03651984451 60.1899117149621 24.0364993966879 60.1899240504223 24.0364732388992 60.1899363015877 24.0364437144688 60.1899472172597 24.0364151405137 60.1899573148285 24.0363853411725 60.1899636463565 24.0363647231141 60.1899732720962 24.0363343167219 60.1899847479181 24.0363066845846 60.189988863643 24.0362990776416 60.190003570517 24.036278515955 60.1900195283889 24.0362620636957 60.1900255644311 24.0362567555315 60.1900425053959 24.0362448879688 60.1900602643912 24.0362406694517 60.1900699670411 24.0362430240123 60.1900868805547 24.0362548327261 60.1901024466388 24.036272681468 60.1901159161272 24.0362936064227 60.1901280105804 24.0363201408453 60.1901363785789 24.0363479858402 60.1901434266528 24.0363810924904 60.1901458127219 24.0363945727152 60.1901499554609 24.0364295473994 60.1901502728934 24.0364497642509 60.1901495961054 24.0364857872057 60.1901496608285 24.0365151932588 60.1901524143521 24.0365507263345 60.190158140051 24.0365797480487 60.1901682042409 24.0366095152011 60.190170842974 24.0366154121753 60.190184524967 24.036638609745 60.1902006169592 24.0366542640272 60.1902110566757 24.0366590423238 60.190228956357 24.036660711753 60.1902356959092 24.0366599414277 60.1902536108545 24.03665787434 60.1902713414339 24.0366624280466 60.1902796432534 24.036669239706 60.1902948931065 24.0366882179631 60.1903244471981 24.0367292912501 60.1903302543445 24.0367386556611 60.1903433828634 24.0367632205424 60.1903545862474 24.036791297269 60.1903564526032 24.0367972098257 60.1903731801163 24.036860966978 60.1903756669675 24.036869313678 60.1903848153349 24.036900318545 60.1903892453961 24.0369348886945 60.1903880411516 24.0369509484132 60.1903806604055 24.0369837147997 60.1903714805592 24.0370135759187 60.1903623167074 24.0370445543195 60.1903593580054 24.0370568927505 60.1903541149748 24.0370912346143 60.1903535781892 24.0371017847588 60.1903556239703 24.0371374180133 60.1903581755838 24.0371518758767 60.1903678356223 24.0371820587541 60.190382501018 24.0372022267914 60.190389070224 24.0372058927725 60.1904061274507 24.0372164982059 60.1904131473304 24.0372310764038 60.1904198401312 24.0372643779461 60.1904222415622 24.0372869873469 60.1904223430667 24.037322868203 60.1904191244109 24.0373452807188 60.1904126428687 24.0373788862066 60.1904070737991 24.0374143220824 60.19040536646 24.0374500773332 60.1904084299112 24.0374826054999 60.1904171696812 24.0375138278484 60.1904306294999 24.0375351332983 60.1904474988735 24.0375469828635 60.1904508109932 24.0375480375069 60.1904686876391 24.0375474720158 60.1904728026094 24.0375458558858 60.1904895967053 24.0375334426982 60.1905048242281 24.0375144582909 60.1905125512932 24.0375019965984 60.1905261977873 24.0374786075737 60.1905407602732 24.0374576079958 60.1905478044311 24.0374503685349 60.1905647898287 24.0374388763216 60.1905822484008 24.0374304630948 60.1906015288524 24.0374235636838 60.1906192725409 24.0374262941828 60.1906360813846 24.0374478931736 60.1906477095138 24.0374752824716 60.1906522312294 24.0374886425615 60.1906607740194 24.0375202979255 60.1906666024791 24.0375543273136 60.1906680590843 24.0375680360014 60.1906696962871 24.0376038869057 60.1906684323082 24.0376397828938 60.1906640371514 24.0376746800774 60.1906619237388 24.0376854446565 60.1906538924661 24.0377176562929 60.1906452357272 24.0377492205817 60.1906375859973 24.0377856382065 60.1906368878047 24.0378211222458 60.1906452100723 24.0378481421143 60.1906603065172 24.0378670988586 60.1906637495895 24.0378691883064 60.1906814920255 24.0378690501053 60.1906955365759 24.0378538173774 60.1907086825164 24.0378293367072 60.1907159248424 24.0378144827257 60.1907276340035 24.0377872264285 60.1907316185249 24.0377753548058 60.1907500207116 24.0377134992624 60.1907630712702 24.0376815386546 60.1907751731225 24.0376549686354 60.1907843743604 24.0376353005162 60.1907980819261 24.0376122306443 60.1908145495152 24.0375984754272 60.1908323362626 24.0375942911194 60.1908488503373 24.0375982874552 60.1908652662733 24.0376123614696 60.1908740630782 24.0376272488714 60.1908847443693 24.0376560951898 60.1908914623842 24.0376832959719 60.1908951307466 24.037718368499 60.1908924429937 24.0377500624314 60.1908871573678 24.0377845168415 60.1908821425723 24.0378182250393 60.1908770297172 24.037852772115 60.1908721422714 24.0378813261281 60.1908672836964 24.0379159946106 60.190865759083 24.0379390305345 60.1908661412096 24.0379750128755 60.1908691988236 24.0380105013609 60.1908729574015 24.0380359480483 60.1908802513062 24.0380688170745 60.190890550434 24.038098257372 60.1908930726418 24.038103768117 60.1909069591225 24.0381264791983 60.1909233366105 24.0381408456762 60.1909276474651 24.0381427667062 60.190945516316 24.0381438623225 60.1909628906079 24.0381352945675 60.1909711597694 24.0381273853301 60.1909862033158 24.0381078039912 60.1910009178265 24.038087169627 60.1910062259332 24.0380806461071 60.1910225231267 24.0380656974146 60.1910402410439 24.0380628548358 60.191052782096 24.0380724064903 60.1910658937584 24.0380966310942 60.1910717791496 24.0381203523945 60.1910753254832 24.0381555985589 60.1910774997454 24.0381913654168 60.191081124499 24.0382244933051 60.191090496955 24.0382940764031 60.1910933757695 24.0383171485391 60.1910987710861 24.0383515062659 60.1911071697997 24.0383831572133 60.1911108930183 24.0383905446478 60.1911262777628 24.0384087360784 60.1911435900421 24.0384178938376 60.1911612465695 24.0384203440524 60.191179125148 24.0384230810103 60.1911904939301 24.0384284258486 60.1912077746565 24.0384381819536 60.1912116115748 24.0384398029156 60.1912294528546 24.0384432830819 60.1912472830353 24.0384398350905 60.1912604696013 24.0384336479066 60.1912782340836 24.0384304764997 60.1912864038804 24.038435406009 60.1913002830611 24.0384577933473 60.1913098481983 24.0384881664513 60.1913113811588 24.038495246144 60.1913157447113 24.0385300760771 60.1913122322279 24.0385646777092 60.1912979356935 24.0385843180047 60.1912807776312 24.0385949232173 60.1912638317349 24.0386061769462 60.191249328729 24.0386266297729 60.1912434452205 24.0386572586929 60.1912439514858 24.0386931761197 60.1912479615381 24.0387282724516 60.1912489905455 24.0387345133796 60.1912557387906 24.0387679012736 60.1912634385243 24.0387948155889 60.1912728139577 24.0388255487021 60.1912834452155 24.038854580698 60.191292272263 24.0388744462252 60.1913055884133 24.0388985807031 60.191320391683 24.0389189000295 60.1913321623333 24.038931372596 60.1913482437772 24.0389473723166 60.1913635679803 24.0389660748417 60.1913711404568 24.0389788536704 60.1913843366849 24.0390032516825 60.1913987585585 24.0390245979424 60.1914041120018 24.039029348393 60.1914202595361 24.0390450896109 60.1914347842912 24.0390658131157 60.1914398261557 24.0391040647527 60.191436824818 24.0391394323905 60.1914278206825 24.0391731576386 60.1914156052885 24.0391994852217 60.1914128298995 24.0392043548302 60.1913985827669 24.0392262099571 60.1913836860343 24.0392463371807 60.1913695648271 24.0392653839831 60.1913554036185 24.0392874658912 60.1913521229148 24.0392934456652 60.1913401694374 24.039320236743 60.1913316468245 24.0393517891632 60.1913281291938 24.0393922015778 60.1913289959531 24.0394281768315 60.1913323435194 24.0394645961673 60.1913393354157 24.0394976375212 60.1913475101347 24.0395192762869 60.1913584095629 24.0395478513224 60.1913647059193 24.0395787178509 60.1913669760233 24.0396143681889 60.1913666653421 24.0396330364115 60.1913637119163 24.0396685439538 60.1913595717314 24.0397036170907 60.1913559727202 24.0397375768116 60.1913551752578 24.0397734674842 60.1913563825153 24.0397860802382 60.191361600126 24.0398205446942 60.1913675886044 24.0398545246686 60.1913700175414 24.0398735595439 60.1913729323867 24.0399091157174 60.1913752757475 24.0399448316598 60.1913762130031 24.0399566206525 60.1913800005591 24.0399918275312 60.191385890759 24.0400258344533 60.1913939575304 24.040056722019 60.1914144182777 24.040115923888 60.1914213707996 24.0401367526885 60.1914302024416 24.0401680946964 60.191435790132 24.0402022372237 60.1914368926009 24.0402190097631 60.1914366998218 24.0402550264718 60.1914352105526 24.0402909254069 60.1914348645725 24.0403031909395 60.1914346864069 24.0403752597972 60.1914347486762 24.0403824720989 60.1914359738485 24.0404184151887 60.1914420939818 24.0404518601798 60.1914570529435 24.0404755406241 60.1914734615118 24.0404901041834 60.1914908754244 24.0405038193031 60.1915081589393 24.0405133056521 60.1915111340283 24.0405141564046 60.1915290613794 24.0405158615741 60.1915469978829 24.0405155629433 60.1915649043665 24.0405175406675 60.1915795179734 24.0405237488288 60.1915969358252 24.040532411091 60.1916147238248 24.0405367272899 60.1916324512899 24.0405335061841 60.1916502952392 24.0405346955801 60.1916599891009 24.0405430973388 60.191672947764 24.0405677341142 60.1916811437368 24.0405995848591 60.1916828811085 24.0406138101388 60.1916830897288 24.0406497007233 60.1916805896126 24.0406854022478 60.1916792522572 24.0407007526293 60.1916758376092 24.0407361395416 60.1916715243566 24.0407711201824 60.1916651047204 24.0408047206538 60.1916612758439 24.040819952609 60.1916529589967 24.0408518833816 60.1916469859634 24.0408857683952 60.1916457903798 24.0409203418347 60.1916494423728 24.0409555252185 60.1916585483011 24.0409862835523 60.1916671031469 24.04100081504 60.1916830566805 24.0410171342023 60.1916995717084 24.0410312374132 60.1917053991729 24.0410371004064 60.1917370482414 24.0410710612929 60.1917560567372 24.0410841640243 60.1917735579093 24.0410921334119 60.1917876009381 24.0410981406283 60.1918048639462 24.0411079179353 60.1918185822026 24.041129960318 60.1918199047604 24.041136878736 60.1918207327692 24.0411727497658 60.1918188014571 24.0412085806095 60.1918178793829 24.0412252289553 60.1918168226838 24.0412611975567 60.1918172822708 24.0413332819559 60.1918172388715 24.0413514571613 60.1918157309719 24.0413873400782 60.1918106066145 24.0414218163843 60.1918045843711 24.0414454563358 60.1917912754672 24.0414674969094 60.1917819185083 24.0414584870679 60.1917688601641 24.0414338047132 60.1917502812315 24.0414182089763 60.1917426416476 24.0414205210682 60.191727856845 24.0414400419282 60.1917217081418 24.0414761261609 60.19171985745 24.0415119496129 60.1917178645626 24.0415422099843 60.1917136688746 24.0415772340983 60.1917082909774 24.0416116248278 60.1916964113805 24.0416819871385 60.1916921520819 24.0417169808481 60.191689675362 24.0417525358176 60.1916890053072 24.0417885235694 60.1916901102316 24.0418605495656 60.191691369408 24.041887972707 60.1916998355335 24.0419947219284 60.1917014779599 24.0420256293296 60.1917021923723 24.0420616548259 60.1917041589433 24.0420974232163 60.191706301874 24.0421137233131 60.1917132082703 24.0421469898025 60.191718084123 24.0421814676963 60.1917180380087 24.0421882567385 60.1917117505069 24.0422217548371 60.1917065722475 24.0422413486899 60.1916981894723 24.0422731587478 60.1916955415509 24.0422793158888 60.1916788223197 24.0422906737519 60.1916724688352 24.0422910292593 60.1916546915837 24.0422863863312 60.1916434270903 24.0422816803216 60.1916257509772 24.0422755305719 60.1916079010735 24.0422764881056 60.1915907724183 24.0422872151422 60.1915862521728 24.0422904010352 60.1915688002344 24.0422987211111 60.1915556208366 24.042304833969 60.1915390488823 24.0423183619317 60.1915328520887 24.0423273467912 60.191521664242 24.0423554573943 60.1915160311129 24.0423723853428 60.1915052542876 24.042401198747 60.1914962707989 24.042427432672 60.1914888988719 24.0424602521992 60.1914823614281 24.0424938266432 60.1914810750325 24.0425006009835 60.1914730519565 24.0425328294877 60.1914631559059 24.042562862729 60.1914516698079 24.0425904947855 60.1914484853329 24.0425971693212 60.1914220804463 24.0426459756087 60.191409518504 24.0426717014849 60.1914070100164 24.042677665538 60.1913967712992 24.0427072423125 60.1913788006828 24.0427696166816 60.1913769153377 24.0427757231176 60.1913666399261 24.0428052670466 60.1913444811128 24.0428619552914 60.1913341582544 24.0428893741588 60.1913244104169 24.0429196103542 60.1913162857861 24.0429517214236 60.1913116750384 24.0429782290831 60.1913082500065 24.0430135801697 60.1913058384912 24.0430480460535 60.1913004110762 24.0431192877902 60.1912999541622 24.0431257889134 60.1912961647826 24.0431609201386 60.1912902969986 24.0431745848149 60.1912730740239 24.043184309258 60.1912686457368 24.0431892009603 60.1912655221354 24.0432288014295 60.1912643206112 24.0432647462736 60.1912622167467 24.0433005197037 60.1912616737274 24.0433253078069 60.1912653310065 24.043396994884 60.1912646675857 24.0434184014268 60.1912589782975 24.0434525487086 60.1912527597287 24.0434823046277 60.1912499585583 24.0434985082021 60.1912465883945 24.0435339083554 60.1912457540961 24.0435657781123 60.1912491025156 24.0436010788639 60.1912560607329 24.0436342683411 60.1912617040467 24.043654836636 60.1912715672578 24.0436849316967 60.1912827536738 24.0437131212753 60.1912951667946 24.043739107298 60.1912992067805 24.0437466112147 60.1913422473591 24.0438139603848 60.1913561181605 24.0438368198952 60.1913693820305 24.0438610693499 60.1913805880037 24.0438840965191 60.1914147359768 24.043967674482 60.1914187941939 24.0439780098367 60.1914539114648 24.0440599308764 60.1914577294109 24.0440683570847 60.1914768649007 24.0441101231423 60.1914768649007 24.0441101231423 60.1914907074672 24.0441369552588 60.1915046112704 24.0441596857209 60.1915193810971 24.0441801548583 60.1915234405675 24.0441853113014 60.1915701666179 24.0442390488897 60.1916172181746 24.0442956986502 60.1916327848135 24.0443136240781 60.1916487582953 24.0443300512831 60.1916650675294 24.044343001724 60.1916823519893 24.0443525441743 60.1916998909835 24.0443602051092 60.1917055266106 24.0443627115491 60.1917229135805 24.044371613226 60.1917400684969 24.0443821959228 60.1917569289918 24.0443944832981 60.191772423825 24.044407579265 60.1918048482716 24.0444384781918 60.1918213571948 24.0444527280609 60.1918383295639 24.0444643919068 60.1918556789229 24.0444736218646 60.191873186461 24.0444814842263 60.1918840144376 24.0444859596151 60.1919192543357 24.0444996791939 60.1919295310321 24.0445036087075 60.1920002460786 24.0445283019973 60.1920033743877 24.0445291754284 60.1920568064347 24.0445423771598 60.1920672184262 24.0445451215984 60.1921026346921 24.0445566780751 60.1921377261729 24.0445718006417 60.1921528693452 24.0445796051599 60.1921872490033 24.0446002775419 60.1922211389805 24.0446239714754 60.192235859258 24.0446349719902 60.192269421749 24.0446604999759 60.1922864418778 24.0446718891055 60.192303751208 24.0446813394348 60.192310268684 24.0446843079928 60.1923279307768 24.0446906408634 60.1923634681393 24.0447007791552 60.1923726564616 24.0447038502979 60.1923902097554 24.0447113478753 60.1924075431722 24.0447206697695 60.1924247054225 24.044731180016 60.1924370969056 24.0447392863623 60.1925045807765 24.0447883075773 60.1925103987006 24.0447929451422 60.1925604439493 24.0448327623045 60.1925775273655 24.0448437669726 60.1925883585541 24.0448495956835 60.1926059114383 24.0448570753756 60.1926236369553 24.0448626267331 60.1926414574846 24.0448667980981 60.1926586438933 24.044870737787 60.1926941702672 24.0448807871257 60.1927118180319 24.0448872838673 60.1927292805808 24.0448955476867 60.1927464832349 24.0449058559869 60.1927500055696 24.0449082820256 60.1927835610519 24.0449339015294 60.1927986394453 24.0449440400539 60.1928160729506 24.04495261331 60.1928515255833 24.044963788236 60.1928606508595 24.044966450118 60.1928959525361 24.0449793168881 60.1929134383659 24.0449874162953 60.1929312265434 24.0449969862937 60.192965614705 24.045017640764 60.1929830318783 24.0450262877515 60.1929992644393 24.0450317750591 60.1930529501527 24.0450394331752 60.1930704311593 24.0450473165366 60.1930770938551 24.0450523654626 60.1930928350496 24.0450696627646 60.193102425735 24.045081107153 60.1931185379111 24.0450969094105 60.1931354228345 24.045109087172 60.1931453122007 24.0451145857349 60.1931628871523 24.0451218471524 60.1932160452037 24.0451388825487 60.1932263213491 24.0451431914141 60.1932609117076 24.0451624385017 60.1932735886287 24.0451688412749 60.19329125806 24.0451751017319 60.1933267880262 24.0451853136606 60.1933388395159 24.0451898598614 60.1933561651386 24.0451992370991 60.1934075423046 24.0452315011711 60.193412921486 24.0452341933617 60.1934305537096 24.0452408000958 60.193466109499 24.0452505586649 60.1934810494517 24.0452552962286 60.193498570462 24.0452629596512 60.1935333291633 24.0452808925679 60.1935430031751 24.0452855985514 60.193595579986 24.045308804243 60.1936042622681 24.045313761864 60.1936210912305 24.0453262517232 60.1936376784889 24.045339990461 60.1936503684031 24.0453501998993 60.193667332935 24.0453619196688 60.1937019984763 24.0453805108114 60.1937158833985 24.0453870938257 60.1937684082661 24.0454107917076 60.1937839413869 24.0454175513219 60.1938716017981 24.0454559364779 60.1938824702983 24.0454610223605 60.1939347822261 24.045486454006 60.1939487177329 24.0454928881897 60.1940192178043 24.0455200405553 60.1940290022192 24.0455236539739 60.1940816914095 24.0455458577159 60.1941178363583 24.0455647132231 60.1941691186854 24.0455975645844 60.1941768752099 24.0456029124163 60.1942274820657 24.0456397226421 60.1942401613846 24.0456498611394 60.1943216867465 24.0457250001336 60.1943273005405 24.0457305587855 60.1943920492685 24.0457927338686 60.1944086042266 24.0458066384725 60.1944173009484 24.0458134538181 60.1944848983365 24.0458619464966 60.1945014606487 24.0458757783257 60.1945081221114 24.0458819827113 60.1945240615482 24.0458985053585 60.1945697917313 24.0459555700061 60.1946150775531 24.0460140643515 60.1946242726734 24.0460259060324 60.1946333995325 24.0460105036575 60.1963920638951 24.0430453709264 60.1969171343753 24.0426295620025 60.1969489184284 24.0426043748725 60.1975951246322 24.0425484771749 60.1978384425971 24.0428642494378 60.1988663470778 24.0418745919076 60.1988714926641 24.041869634251 60.2012947242966 24.0395362910786 60.2036393522868 24.0373415366226 60.2041933695154 24.0396245076872 60.2047409080552 24.0418770692364 60.2053511695088 24.0443879644057 60.2066627429332 24.0457920901456 60.2073562837696 24.0465195929146 60.2083600430155 24.0476059400789 60.2090047811309 24.0482836879773 60.2100732391883 24.049417082254 60.2111202050171 24.0531505053664 60.2122503286433 24.0571835300831 60.2132611372634 24.0607909345073 60.2142284184746 24.0642339566918 60.2142837501228 24.0643545586664 60.214986823054 24.0658870168287 60.2161016856345 24.0683169068547 60.2170226612233 24.0702158248622 60.2175603257845 24.0715991713077 60.2191013360634 24.074970690716 60.2199009190093 24.0767332960682 60.2213844101235 24.0799932797745 60.2222924914636 24.0819871608217 60.2223106847547 24.0820271201707 60.226159511171 24.078265615578 60.227177916582 24.0772633743677 60.2273306367636 24.0771127499991 60.227428399311 24.077016878813 60.2274395769246 24.0770058932587 60.2274894743235 24.076956773976 60.2275295412655 24.0770792024165 60.2275364008781 24.0771001780778 60.2275492853221 24.077139313512 60.2288416508424 24.0810749693777 60.2302989864964 24.0855058295236 60.2297966313557 24.0862685712255 60.2297325723319 24.0863786982807 60.2294175749121 24.08702371735 60.2293077085179 24.0872486855326 60.2287965539133 24.087546551598 60.2286833196053 24.0878738973419 60.2285146645266 24.0878787721973 60.2281887319386 24.0873719836009 60.2277549832147 24.088009891076 60.2252381314103 24.0889144890172 60.2269905764032 24.0947459007937 60.2282653454817 24.09928802328 60.2282992678424 24.099537150889 60.2290753404205 24.106102566127 60.2294855481498 24.1097203621415 60.2302363682858 24.1160549666769 60.2305935762683 24.1190716938498 60.2313453094812 24.1255000028484 60.2313922720068 24.1258742990035 60.2316924817738 24.1282724613219 60.2317387446692 24.1286670965073 60.231898850833 24.1303327781471 60.2319342118375 24.1306963946745 60.2315233671778 24.1315260343866 60.2313865321364 24.1318023254582 60.2312204522857 24.1321463712378 60.2280080315727 24.1387167373864 60.2247957057518 24.1451981597061 60.2237970251103 24.1471895036645 60.223760414632 24.1475057142331 60.2237590959499 24.1475162504784 60.22374489974 24.1476206349969 60.2237339706623 24.1476893706272 60.2237277715959 24.1477232152758 60.2237207682274 24.1477564254269 60.2237129305513 24.1477888591934 60.2237042663725 24.1478204617101 60.2236988317703 24.1478384720186 60.2236887836258 24.1478683886508 60.2236777137246 24.1478967504749 60.2236653936548 24.1479229632495 60.2236611006758 24.1479309765033 60.2236471699318 24.1479537349986 60.2236323992158 24.1479742004179 60.2236189938888 24.1479917295191 60.2236163609302 24.1479946315103 60.2236001777522 24.1480137566801 60.2235851957745 24.1480335901884 60.2235773172015 24.1480453287235 60.2235653825397 24.1480631453456 60.2237145118848 24.1482679699416 60.2237212762611 24.1482779480704 60.2237782486549 24.1483657249059 60.2238468568815 24.1484819494261 60.22385870415 24.1485035149942 60.2239101483598 24.1486041272712 60.2239181060675 24.1486215516368 60.2239465171743 24.1486838881785 60.2239693749331 24.1487395007775 60.2239909820056 24.1487971186306 60.2239962075727 24.148811998994 60.224056434759 24.1489914113515 60.224061859923 24.1490063828008 60.2241490172648 24.1492356908538 60.2241687581092 24.1492959459678 60.2241778716015 24.1493270153215 60.2241863447751 24.1493588086178 60.2241940879512 24.1493913336471 60.2242009502261 24.1494246757666 60.2242072708397 24.149461659284 60.2242123187191 24.1494962789089 60.2242336052715 24.1496714906664 60.2242378703913 24.1497014641847 60.2242432547237 24.1497358559643 60.2243114639832 24.1501082022858 60.22431650605 24.1501413054085 60.2243213229143 24.1501760536808 60.2243295169987 24.150246289409 60.2243327238292 24.1502817916618 60.2243352521935 24.150317497347 60.2243370654451 24.1503533735211 60.2243380048901 24.1503837083149 60.2243385462391 24.1504197672131 60.2243368450935 24.1506361892069 60.2243368720145 24.1506445495688 60.2243379183022 24.1507166524639 60.2243424274226 24.1508968085057 60.2243433663463 24.1509689387982 60.2243433450125 24.1509875986841 60.2243413830044 24.1510957436128 60.2243243546958 24.15145484935 60.224323972857 24.1514638412411 60.2243202001747 24.1515717820167 60.2243179021513 24.1517642692436 60.2243176151996 24.1517881359516 60.2243178099408 24.1518135141715 60.2243240688752 24.1522822749529 60.2243213587675 24.1523903581759 60.2243176886839 24.1524621117783 60.224312302665 24.1525334543675 60.2243049601911 24.1526040636295 60.2243004811211 24.1526389868081 60.22429758887 24.152659105961 60.2242821698817 24.1527628011282 60.2242778272233 24.15279780273 60.2242744276661 24.1528332101513 60.2242728182494 24.1528628630177 60.2242716776746 24.1528988691195 60.2242696804104 24.1530431044038 60.2242684339106 24.1530829668755 60.2242663010265 24.1531510106169 60.2242651030781 24.1531893697258 60.2242650453905 24.1532289484132 60.224266471371 24.1533024812223 60.2242669037489 24.1533322458862 60.2242698342832 24.1534402909384 60.2242735850259 24.1535120506769 60.2242762197493 24.1535477292064 60.2242794253109 24.1535832137211 60.2242824241854 24.15361158171 60.2242914341472 24.1536814041492 60.2243208235986 24.1538517976735 60.2243239825612 24.1538687908628 60.2243472719138 24.1540429830722 60.2243524691224 24.1540775002165 60.2243582512369 24.1541116415198 60.2243647235506 24.1541452894789 60.2243719991638 24.1541782717272 60.2243802516305 24.1542103022834 60.2243821661108 24.1542170359011 60.2243916984721 24.15424758275 60.2244021476905 24.1542768941231 60.224413441637 24.154304958216 60.2244254446335 24.1543317326117 60.2244507993015 24.1543828164222 60.2244639750986 24.1544073036496 60.2244774165146 24.1544311898734 60.2244812512708 24.1544378111592 60.2245780035586 24.1545988780961 60.2245804393481 24.1546031101195 60.2247130208906 24.1548461977489 60.2247405541763 24.1548924695422 60.2247547046392 24.1549146510116 60.2247580662908 24.1549197420245 60.2247725568965 24.1549410270353 60.22478731003 24.1549615668109 60.2248022995617 24.1549813997408 60.2248329769186 24.1550188556962 60.2248644478045 24.1550535155109 60.2248804575225 24.1550698101731 60.2249129475067 24.1551004622029 60.2249294098375 24.1551148211243 60.2249328872598 24.155117770796 60.2249495380569 24.1551312825268 60.2251354095543 24.1552648118848 60.2251521641556 24.1552777187099 60.2251617906776 24.1552854455826 60.2251783833247 24.1552991792796 60.2251948862197 24.155313336208 60.225324960621 24.1554354311009 60.2253411435357 24.1554510067146 60.2253526246623 24.1554618421924 60.2255315289377 24.1556295393639 60.2255476533095 24.1556453189316 60.225676735399 24.1557768769591 60.2256843917379 24.1557844858987 60.2257655952234 24.1558611847333 60.2258981813695 24.1559718129589 60.226050603924 24.1560790245754 60.2260674906318 24.1560897170333 60.2261528177947 24.1561454682641 60.2262031867178 24.156183658331 60.2262197386897 24.1561975951167 60.2262361029588 24.1562124152104 60.2262520372426 24.1562289705132 60.2262674970875 24.1562472829433 60.2262824353336 24.1562672482122 60.2262968243031 24.1562888325943 60.2263106160625 24.1563118957414 60.2263238090644 24.1563363655361 60.2263315107214 24.1563519546858 60.2263435924822 24.156378652273 60.2263550934944 24.1564063394968 60.226366151444 24.1564347334765 60.2263694192035 24.1564434095115 60.2263904917975 24.1565018233289 60.226400635162 24.1565315610572 60.2264388685627 24.156653677314 60.2264737639495 24.1567797680221 60.2264820512896 24.1568117801485 60.2266046327787 24.1573337493497 60.2266063368993 24.1573407366428 60.2266975804062 24.1576926317873 60.2266994061942 24.157699427944 60.2267839263176 24.1580176956252 60.2267896477623 24.1580398332585 60.2268303875593 24.158200571603 60.2268322837442 24.1582081384375 60.2269506216688 24.1586941782519 60.2269582927755 24.1587268046335 60.2269651905067 24.1587564633652 60.2270364434077 24.1590875721454 60.2270602913731 24.1591845847805 60.2270689875743 24.1592164181362 60.2270783909065 24.1592489670019 60.2271235847402 24.159184035108 60.2271905784274 24.1590878078232 60.2271916192495 24.1591238085452 60.2271919336608 24.1591598721743 60.2271899026015 24.1591988484369 60.2271854947141 24.1592338217235 60.2271804415978 24.1592684534767 60.2271795853796 24.1592741995543 60.2271754675354 24.1593092922107 60.2271725461926 24.1593448773451 60.2271704837445 24.1593807132428 60.2271691959429 24.1594111894601 60.2271663900224 24.1595192713718 60.2271656118701 24.1595550863649 60.2271648746005 24.1595911326411 60.2271647486843 24.159627198236 60.227165523135 24.159649511825 60.2271683258497 24.1596851432193 60.2271730154641 24.1597199429017 60.2271793007575 24.1597537373933 60.2271866717179 24.1597866250452 60.2271959658386 24.1598224711924 60.2272433954221 24.1599755896793 60.2272468966743 24.1599872084856 60.2272730371211 24.1600818020813 60.2272808349936 24.160110715088 60.2273001670522 24.1601802299553 60.2273421314277 24.1603311490918 60.2273453181237 24.1603440235202 60.227382005207 24.1605086404597 60.2273900186723 24.1605409128882 60.2273961727763 24.1605635558022 60.2274055032334 24.1605943956229 60.2274156020128 24.1606241935248 60.2274264332435 24.1606529526141 60.2274378904692 24.1606807362962 60.2274437357957 24.1606939948478 60.2274561271896 24.1607200900426 60.2274692928768 24.1607445828326 60.2274835613744 24.1607664512846 60.2274955291141 24.1607807334521 60.2275119077357 24.1607954106101 60.2275289897416 24.1608064322363 60.2275463944724 24.1608161614853 60.2276349345192 24.1611723198734 60.2278325970837 24.1615077842509 60.2278153830276 24.1615338224789 60.2278488856796 24.1616231936442 60.227883324078 24.1617424338917 60.2279360604027 24.1617951877633 60.2279407577249 24.1617997308556 60.2280008740274 24.1618581145833 60.2280158565094 24.1618806085139 60.2280225261464 24.1618895692271 60.2280379021127 24.161908199589 60.2280508276492 24.1619210628049 60.2280598711432 24.1619259163457 60.2280777240331 24.1619293032393 60.2280822374202 24.1619298701478 60.2281180355636 24.1619350824534 60.2281359338635 24.1619376525488 60.2281819940565 24.1619454633911 60.2281954023074 24.1619477174608 60.2281118019715 24.161703445459 60.228013549573 24.1613870849142 60.2280298979434 24.1608812167228 60.2281994335206 24.1601484982213 60.2284453694585 24.1595843785909 60.228469572995 24.1595272954238 60.2286187015863 24.1591755505356 60.2287017596434 24.1589874794231 60.228804020954 24.1587341574307 60.2288177315645 24.1587002010617 60.2289312104736 24.1583955598658 60.2289715486386 24.1582872734399 60.2289811226397 24.1582594376339 60.2290708055395 24.1579894073264 60.2290802466757 24.1579587286587 60.2290860934697 24.157939344637 60.2291494961679 24.1577213034547 60.2291586515065 24.1576902881044 60.22916548536 24.1576674945723 60.2292114077207 24.1575125132523 60.2292198628971 24.1574806913532 60.2292269339873 24.157452620368 60.2292984719217 24.1571614690337 60.2293044591438 24.1571369060665 60.2293084609811 24.1571186390832 60.2293523618959 24.1569209458824 60.2293538892073 24.1569142379537 60.2293917747937 24.1567507021088 60.2293917747937 24.1567507021088 60.229457731622 24.1564943184117 60.2294740438654 24.1564300389494 60.229490190402 24.1563655750739 60.2295061540689 24.1563009644033 60.2295140760525 24.1562685919731 60.2295167925498 24.1562574272674 60.2295324435215 24.1561924823018 60.2295479022684 24.1561273732896 60.2295631493077 24.1560620296616 60.2295782130895 24.1559965212113 60.2295930850325 24.1559308667485 60.2296086735576 24.1558609229168 60.229652381152 24.1556630983455 60.2296597525284 24.155630195276 60.2296671971866 24.1555973580961 60.2296701396597 24.1555845839734 60.2296777679186 24.1555519295646 60.229685487782 24.1555193575208 60.2296932902821 24.1554868686194 60.2297090788704 24.1554220735619 60.2297496221826 24.1552581229594 60.2297575158439 24.1552256982819 60.2297651716904 24.155193077434 60.2297708960501 24.1551667481023 60.2297774981399 24.1551331708514 60.2297835076382 24.1550991933587 60.229789069965 24.1550648933379 60.2297942498294 24.1550303555027 60.22979911078 24.1549956104721 60.229808587813 24.1549260151626 60.2298133945419 24.1548912567378 60.2298185492843 24.1548551313082 60.2298238472235 24.1548206554236 60.2298294094776 24.1547863553152 60.2298352364337 24.1547522490138 60.229841336286 24.1547182996779 60.2298477101953 24.1546845614009 60.2298543316451 24.1546510545474 60.2298612357332 24.1546177399421 60.229868395943 24.1545846379495 60.2298757767901 24.1545517697122 60.2298832944685 24.1545189979797 60.2298909041389 24.1544863266415 60.2298985960597 24.1544537204123 60.2299063616499 24.1544211981015 60.2299220850009 24.1543563174109 60.2299380199979 24.154291671205 60.2299460514203 24.1542593967271 60.2299524320456 24.1542339314567 60.2300192480164 24.153977192476 60.2300225813675 24.153964637057 60.2300311276805 24.1539329138829 60.2300399036005 24.1539014236807 60.2300491870645 24.1538705578308 60.2300591913002 24.1538406230027 60.2300700437934 24.1538116984588 60.2300814497659 24.1537838639716 60.2300932556705 24.1537566631713 60.230105333248 24.153729980731 60.2301175421755 24.15370355785 60.2301296754843 24.1536769608592 60.2301416598834 24.1536501238579 60.2301533538879 24.1536227339508 60.2301562289852 24.1536156196937 60.2301672993001 24.1535872180389 60.2301780355414 24.1535583214649 60.2301884837091 24.1535289801757 60.2301986449642 24.1534992482664 60.2302085193064 24.1534691257376 60.2302181071226 24.1534386306213 60.2302274360901 24.1534077966463 60.2302365533705 24.1533767281116 60.2302454952221 24.153345439936 60.2302543080324 24.1533140003549 60.2302977466719 24.1531561338592 60.2302999567025 24.153148173988 60.2303093132788 24.1531148625124 60.2303182090669 24.153083523994 60.2303271695581 24.1530522701685 60.2303362033332 24.1530210822258 60.2303725699108 24.1528966534265 60.2304444825017 24.1526468364831 60.2304494299828 24.1526287029706 60.2305752960499 24.1521099399321 60.2305772589119 24.1521013510245 60.2305788179749 24.1520944591938 60.2306008845449 24.1519957486998 60.2306153689215 24.1519297083931 60.2306224649007 24.1518965744546 60.2306293955775 24.1518632742004 60.2306361254676 24.1518298287776 60.2306426541836 24.151796220155 60.2306489910805 24.151762465586 60.230653514039 24.1517375399399 60.2306594672997 24.1517034934833 60.2306651928697 24.1516693041969 60.2306706903614 24.1516349540496 60.23067596913 24.1516004602951 60.2306810389178 24.1515658582189 60.2306858993373 24.1515311297898 60.2306905597438 24.1514962922614 60.2306941075079 24.1514686330192 60.2306984407946 24.1514336251609 60.2307026103267 24.1513985231215 60.2307066075237 24.1513633457122 60.2307105228386 24.1513281212086 60.2307219704637 24.1512223651608 60.2307231793392 24.151201683562 60.2307468247684 24.1508076443349 60.2307561844819 24.1506645291812 60.2307612886831 24.1505901435829 60.2307664021913 24.1505187018318 60.2307717421815 24.1504473487734 60.2307773078792 24.1503760483424 60.2307802084579 24.1503404420853 60.2307831994804 24.1503048640946 60.2307862813342 24.1502693324019 60.2307894442765 24.1502338117223 60.2307927066304 24.150198318529 60.2307960508478 24.1501628724121 60.2307974771141 24.150148133461 60.2308009663535 24.1501127469947 60.2308045643601 24.1500774052665 60.2308082711337 24.1500421082759 60.2308120773192 24.1500068387701 60.2308159922718 24.1499716140012 60.2308200253471 24.1499364512218 60.2308241675772 24.1499013512106 60.2308284189622 24.1498663139672 60.2308327783393 24.1498312853958 60.2308351212706 24.1498132149541 60.2308399449693 24.1497784711998 60.2308453413838 24.1497440389785 60.2308519526025 24.149710530918 60.2308602312278 24.1496785219141 60.230867575237 24.1496556991712 60.2308786918538 24.1496273998766 60.230891031311 24.1496012344293 60.2309000616219 24.149584551934 60.2309139840215 24.1495618078157 60.2309285916355 24.1495408468233 60.2309431225865 24.1495217532347 60.2309579991226 24.1495015998537 60.2309719020213 24.1494787850906 60.2309779825326 24.1494665681752 60.2309894526764 24.1494388341603 60.2310001045743 24.1494098163132 60.2310883625443 24.1486154741518 60.2313683657657 24.1490082191324 60.2322007349166 24.1501531926966 60.235051379725 24.1541204933777 60.2370768479254 24.1569523099224 60.2373236863023 24.1572929411825 60.2390091431617 24.1596230072611 60.2397784143844 24.1606845397214 60.2400830465366 24.1611090207254 60.2409541046164 24.16231651764 60.2435665200394 24.1659384031041 60.2436021661539 24.1660256658978 60.2434472236925 24.1663274049933 60.2434448683146 24.1663319640291 60.2431700508996 24.1668506080402 60.2431620935875 24.1668650486715 60.2430421330277 24.1670825585965 60.2429267649563 24.1673098266048 60.2429196667594 24.1673249518101 60.2428006028872 24.1675950066476 60.2427984196727 24.1676000566413 60.2426433105234 24.1679505349925 60.2425128510013 24.1681569444874 60.2425090357597 24.1681629847439 60.2424855003152 24.1682002035421 60.242482832258 24.1682044278746 60.2422475978311 24.1685948910048 60.2422444251819 24.1686007310899 60.2420629109685 24.1689500811896 60.2420549935265 24.1689647161471 60.2420416366948 24.1689888565875 60.2420003816542 24.1690583982604 60.2419859903192 24.1690799533547 60.2419711782114 24.1691003158957 60.2419559535295 24.1691194490333 60.2419440975452 24.1691330866791 60.2418971617834 24.1691860950751 60.2418821763012 24.1692059122636 60.2418773161491 24.1692130906441 60.2418633716896 24.1692357997215 60.2418502497845 24.1692604256231 60.2418380280649 24.1692868170739 60.2418263959588 24.1693143141726 60.2418070171173 24.1693636056327 60.2417929981096 24.1693992421234 60.241783522591 24.1694208604453 60.2417714231961 24.1694475122909 60.2417587039656 24.1694737477717 60.241745741784 24.1694987030634 60.2417055081247 24.1695706491182 60.2415779347198 24.1697351605046 60.241575112078 24.1697384582253 60.2415440513497 24.169774607623 60.2415292432509 24.169791373027 60.2414815169171 24.1698414481875 60.241465208157 24.1698565178681 60.2414486295491 24.1698703096958 60.2414317896769 24.16988280486 60.241416895011 24.1698925659842 60.2413996398422 24.1699024405006 60.2413821943841 24.1699109760899 60.24136461206 24.1699181500714 60.2413291527813 24.1699292164132 60.2412577706309 24.1699443593572 60.2412536967438 24.1699450182154 60.2411999956816 24.1699525630082 60.2410744464652 24.1699601472324 60.2409848017787 24.1699539522833 60.2409746015359 24.1699525557855 60.2408674320633 24.1699318084741 60.2408559173036 24.1699281762302 60.2406957462319 24.1698871204365 60.2406598971935 24.1698837093328 60.2406240127778 24.1698841142298 60.2405881830492 24.1698883454118 60.240575959732 24.169890665447 60.2405258465419 24.1699038276562 60.2403968357229 24.169949189226 60.2403255362299 24.1699656798015 60.2402897166189 24.1699699641848 60.2402717748527 24.1699699767987 60.2402538558378 24.1699681081057 60.2402360122272 24.1699642993524 60.2402182970591 24.1699585098229 60.2402007738789 24.1699507701766 60.2401834957242 24.1699410396975 60.2401665175572 24.1699293678561 60.2401498771736 24.1699158417455 60.240133630305 24.1699005469104 60.2401308109394 24.1698976821317 60.2401149938416 24.169880633518 60.2401070065871 24.1698684205885 60.2400925865715 24.1698469506265 60.2400776584938 24.1698269340372 60.2400611598996 24.1698082637527 60.2399800882895 24.1697309991124 60.2399643796722 24.1697135618107 60.239950891647 24.1696957702083 60.2399364712196 24.1696742823862 60.2399224764788 24.1696516916814 60.2398545194698 24.169533884119 60.239840320252 24.1695118171506 60.2398371781062 24.169507299749 60.2398015657865 24.1694627766914 60.2397985571592 24.169459042869 60.2397824738176 24.169442993415 60.2397012872291 24.1693662461977 60.2396871245729 24.1693543136818 60.2396704431424 24.1693409722971 60.2396536258075 24.1693284196805 60.2396196131375 24.1693053890576 60.2395850950332 24.1692856186194 60.2395500935519 24.1692697208398 60.2395146869829 24.1692579961417 60.2395055833637 24.1692557824273 60.2394162566437 24.1692388103877 60.2393984580818 24.1692341669989 60.2393807569701 24.1692281960824 60.239363210695 24.1692206397041 60.2393458938086 24.1692112023084 60.2393289323613 24.1691994754734 60.2393234195806 24.1691950182754 60.2392746775756 24.1691490819044 60.2392582409122 24.1691345812389 60.2392522119503 24.1691299337149 60.2392352020778 24.1691184641153 60.2392179000407 24.1691088809657 60.2392004147239 24.1691008134622 60.2391119830302 24.169070212218 60.2390948167524 24.1690632014129 60.2390599364046 24.1690462455765 60.2390255124048 24.1690258351572 60.2389916039491 24.1690022180329 60.2389582335915 24.168975609104 60.2389254851218 24.1689461457028 60.2389128435201 24.1689339196818 60.2388807773996 24.1689014881996 60.2388684306712 24.168884556661 60.2388538318002 24.1688635551072 60.2388395907158 24.1688416372576 60.2388260316454 24.1688179981151 60.2388142218429 24.1687908650358 60.2388047110476 24.1687603170404 60.2387991746725 24.1687349733185 60.2387942833824 24.1687002860216 60.2387915543592 24.1686646169553 60.2387898262739 24.1686286988359 60.2387887337496 24.1685926716294 60.238788513895 24.1685823727538 60.2387821833618 24.168149497037 60.2387819592843 24.1681432100264 60.238780445519 24.1681072372874 60.2387761308085 24.1680356017557 60.2387731875312 24.1680000054683 60.2387693793584 24.1679647187946 60.238764593943 24.1679299502088 60.2387587797885 24.1678958125802 60.2387535954209 24.1678701314399 60.2387460060349 24.1678374301201 60.2387376073791 24.1678055395762 60.238728532818 24.1677743940813 60.2387189161013 24.1677439459443 60.2386679816556 24.1675953669614 60.2386619909569 24.1675769473465 60.2386431154845 24.167515568658 60.2386170499267 24.1674208400726 60.2385934979067 24.1673234912215 60.2385653522192 24.1671906890828 60.2385612851073 24.1671697904908 60.2385363457105 24.1670344167416 60.2385083199432 24.1670342721904 60.2384472578 24.1670610325543 60.2373464067124 24.167175995737 60.2367525792715 24.1672670276092 60.2362745630643 24.1673366510121 60.2349947648788 24.1675398460961 60.2349170561415 24.1675574344629 60.2348412472259 24.1675697455158 60.2341933308501 24.1676484861428 60.2325444216583 24.1678920723904 60.2324129919234 24.1679129060813 60.2323951106074 24.1679157508824 60.2316525854416 24.1680247047079 60.2314357694079 24.1680565949767 60.2315029616776 24.1681704794172 60.2334570851605 24.1715100121245 60.2337004785792 24.1719259890124 60.2346098477767 24.1734787745744 60.2361633314826 24.1761301985235 60.2368530869089 24.1772946472729 60.2370889252274 24.1777217120937 60.2382465895293 24.1796979070877 60.2398079867227 24.182398668073 60.2402962929127 24.1831914560483 60.2417613076802 24.1857320502429 60.242607469028 24.1871645235492 60.2438294953538 24.1892511910108 60.2444061728868 24.1902322911758 60.2444189508012 24.190254021867 60.2444599603979 24.19032381013 60.2445162920516 24.1904196476074 60.2449972604886 24.1912213535345 60.2454295106058 24.1919734153018 60.2459043198639 24.192799568053 60.2472589589435 24.1951534795724 60.2486487353615 24.1975741301177 60.2493220189951 24.1987471356003 60.2494765514639 24.1990161224223 60.2514893553728 24.2024895091349 60.2537299404225 24.2063566987345 60.2537782753116 24.2064402916291 60.2549750543757 24.2085030681663 60.2564331209477 24.2110408732045 60.26072373962 24.2185521437942 60.2606727179356 24.2197761439363 60.2606261603018 24.2208925199088 60.2604717064879 24.2251265847854 60.2604814584438 24.2253626604123 60.260461110292 24.2261835215557 60.2604306769662 24.2274107078797 60.2604245788075 24.227610335032 60.2603433875315 24.2284429574103 60.2606456475643 24.235410501527 60.2609507299947 24.2425644260378 60.2611930528091 24.2482537916793 60.261476569352 24.2486699056769 60.2615783221888 24.2488171526655 60.2616013940659 24.2488505469158 60.2617547471339 24.2490833830367 60.2618081761468 24.2491614042045 60.2622796676617 24.2498498725509 60.262821038665 24.2506435034222 60.2629916904326 24.2508944879454 60.2630258733642 24.2509460116203 60.2630542131339 24.2509886951381 60.2632251475277 24.2512399126189 60.2633647242617 24.2514450307083 60.2635087300968 24.2516566684672 60.2635395561986 24.2517014230459 60.2635965678188 24.251784197125 60.2641850455852 24.2526506123377 60.2648457501626 24.2536216733765 60.2651722320664 24.2540983110214 60.2657005642235 24.2548696811184 60.2668264722054 24.2565136648249 60.2670189714425 24.2567916524009 60.2671574622832 24.2569916271774 60.2671782060458 24.2570215925811 60.2679332868038 24.2581120830635 60.2691292966348 24.2598394934232 60.2696945682525 24.2606242154125 60.2723492949436 24.2643100400948 60.2726648532808 24.2647482076741 60.2736575586989 24.2662021219865 60.2747864004422 24.2678554984183 60.274802426563 24.2678789972697 60.2753217509232 24.2686215674626 60.2758101069033 24.2693176124814 60.2760548046085 24.269661710027 60.2764088716743 24.2701686729701 60.27692049467 24.2709603292789 60.2769130288411 24.2710035898347 60.2769365872862 24.2710299190737 60.2788932119449 24.2741378626252 60.2793890278947 24.274936689428 60.279767760858 24.2755451900929 60.2803209565872 24.2764350451795 60.280539070204 24.276785794942 60.2827992932951 24.2804538837205 60.2847167668886 24.2835805237298 60.2848594905415 24.2838068545761 60.2850554489008 24.2841331206688 60.286356046746 24.2862554072293 60.2868883219284 24.2871329275806 60.2882234344221 24.2893342205652 60.2892994170017 24.2921146611 60.2893098777482 24.2921417006894 60.2893598378896 24.2922707951266 60.290190459706 24.2944185231832 60.2905616449225 24.2952702635582 60.2907954579579 24.2958545631285 60.2912982964898 24.2971420582564 60.2918854786159 24.2986184320585 60.2924956572714 24.3001984922029 60.2934435362329 24.3026123805051 60.2942456799714 24.304670068997 60.2946455482582 24.3056964429995 60.2946455482582 24.3056964429995 60.2927783253952 24.307411179887 60.2917036419808 24.3084019949151 60.2916546690687 24.3084471236405 60.2897451701903 24.3102074521926 60.2863762628878 24.3133261420176 60.2826937646045 24.3167059246432 60.2822040211405 24.3171568988326 60.2816987406778 24.3175695101285 60.2816866767667 24.3175793639256 60.2816077236875 24.3176686057727 60.2815793095263 24.3177007139048 60.2802987634038 24.3189513196751 60.2771203636547 24.322009916253 60.2758634572214 24.3232553674194 60.275404899051 24.3236294686194 60.2740315539734 24.3249113255956 60.2726810083553 24.3261718035571 60.2720569687983 24.3267542039636 60.2720291985465 24.3267840353294 60.2720173886726 24.3267967196839 60.2710576490056 24.3276050077777 60.2709598638712 24.3276953522418 60.2708280102408 24.3278208684436 60.2695006269524 24.3291023223675 60.2678250473063 24.3306407114647 60.2647487650635 24.3334251275641 60.2646830482834 24.3334845989052 60.2646666720827 24.3334994217024 60.2641220789561 24.3337756946642 60.2637617772791 24.3339427156605 60.2634717916266 24.33410256422 60.2632538230027 24.33420977155 60.2630807081309 24.334294938382 60.2624601348075 24.3345862979222 60.2619220896158 24.3348388925324 60.2604395464641 24.3355353526911 60.2591715234907 24.336137288085 60.2585165301313 24.3364497062251 60.2571910223781 24.3370971703028 60.254081738957 24.3386342374226 60.2534579902257 24.3389334061642 60.2528424105579 24.3392358767289 60.2527281769009 24.3393154128497 60.2480713587822 24.3416606212847 60.2461982126551 24.342485752886 60.2461982126551 24.342485752886 60.2459055787297 24.3422272560313 60.2446709152894 24.3410213753742 60.2443255338308 24.3407077441849 60.2418440267093 24.3383936188373 60.240364432962 24.3370481102586 60.2401492474021 24.336859053751 60.2392339965184 24.3360589641765 60.2373486808238 24.3344361975722 60.2368530597371 24.3340303591646 60.2353937246156 24.3328164766664 60.2349922146607 24.3325031918429 60.2335328847678 24.3312769774831 60.2338806673328 24.3344520064715 60.2336982524384 24.3352497452359 60.2333402598324 24.334845383232 60.2332055181553 24.3347031365052 60.2331310239908 24.333422624898 60.2330874354847 24.3326765627499 60.2329790636751 24.3308188995191 60.2324877048009 24.3303942496858 60.2317984884461 24.3298279584324 60.2316165605833 24.3296711358302 60.2315501922737 24.3296160403723 60.2311946793801 24.3292884449254 60.2310442171396 24.3291590709147 60.2250192064485 24.3239793817467 60.223404334793 24.3225563919281 60.2233584759915 24.3225201126256 60.2232908462986 24.3224676762339 60.2232864381084 24.3224642613813 60.2232793736584 24.3224587696486 60.2232510624057 24.3224368251627 60.2225252324158 24.3218108856855 60.2208665695297 24.3203574786563 60.2175853793441 24.3174659106215 60.2174369210287 24.3176196286307 60.2168068629798 24.319123426734 60.2168023380237 24.3194110577799 60.2144508784973 24.3227073592672 60.2144251145751 24.322743494695 60.2137450896398 24.323697311062 60.2130555006134 24.3246698849269 60.2126723320987 24.3252070996306 60.2126111911532 24.3240155218486 60.2126000968313 24.3238023757412 60.212532718563 24.3225023182315 60.2125420372395 24.3223592010524 60.2135699663559 24.3217763381198 60.2145973510462 24.320321085494 60.2145996203597 24.320317794722 60.215685362227 24.3185641830783 60.2167711071228 24.3168122404785 60.2163582456507 24.3164276447602 60.2161290037413 24.3162071430409 60.2150040635263 24.3152204998224 60.2127048706882 24.3131890883221 60.2122615327082 24.312789873062 60.2120690782057 24.3126219095534 60.2118664167244 24.3124344007636 60.2113166339443 24.3119403656366 60.2112445130363 24.311869597569 60.2107265192421 24.3113612428645 60.2101450903346 24.3109066261401 60.2088461869542 24.3097160499794 60.2079908465067 24.3089714947168 60.2071691963752 24.3082568342223 60.2006092159339 24.3025180490814 60.2001356684681 24.3020974346886 60.1982332300677 24.300256008411 60.1992383482735 24.301895094484 60.1996706857579 24.3029676613375 60.1999252649471 24.303890489485 60.2004111551338 24.3049868096925 60.2010670817465 24.3061704816124 60.2019627940999 24.3067030602735 60.202524123407 24.307160676228 60.2035988355164 24.3077214782267 60.2042627104551 24.3081073008634 60.204607676205 24.3089381257438 60.2054119081837 24.3100523125324 60.2053495703181 24.3105075576365 60.2053374898357 24.3105958202607 60.2053287602041 24.3106650360837 60.2052994673124 24.3108175592803 60.2052295112874 24.3107853467161 60.2052129075512 24.3107777535775 60.2051071215805 24.3107308405104 60.2050177983652 24.3106925431336 60.2049292073375 24.3106531390888 60.2048595720368 24.3106181392926 60.2048437608848 24.3106097594052 60.2047744518196 24.3105722421696 60.2047586269425 24.3105636287992 60.2046719232228 24.3105171757452 60.2046577892617 24.3105095430321 60.204571422931 24.3104606800386 60.2045573719044 24.3104522644349 60.2044201055809 24.3103641609285 60.2042837095217 24.310270247048 60.2042004731908 24.310202970862 60.2041866636642 24.3101909618434 60.2041051423982 24.3101156759291 60.2040915258157 24.3101025501496 60.203994780943 24.3100075561603 60.2039840003521 24.3099969416883 60.2038863800189 24.3099057382221 60.2038751961585 24.3098960593272 60.2037917161726 24.3098300683104 60.2037578300497 24.3098062393954 60.2037410085131 24.3097950008785 60.2036722978575 24.3097533403142 60.2036200713035 24.3097270973447 60.2036027148375 24.3097196028526 60.2035319947579 24.3096949111388 60.2034608191507 24.309676104809 60.2033361412594 24.3096452207944 60.2033184025505 24.3096401402144 60.2031945194414 24.3095983979665 60.2031912613118 24.3095972209592 60.2030675220931 24.3095537164745 60.2030645646975 24.3095527494756 60.2029048929017 24.3095041032194 60.2028894129172 24.309499649928 60.202729281914 24.3094575935269 60.2027139168564 24.3094543762347 60.2025887511167 24.3094330995134 60.2025826135441 24.3094321404012 60.2024573586187 24.3094131091842 60.2024514141517 24.3094123688914 60.2023618319911 24.3094020565846 60.2023516149639 24.3094006195166 60.2022621796759 24.30938603576 60.2022521385476 24.3093848550185 60.2022493392869 24.3093845970453 60.2022134535056 24.3093835303225 60.202193770041 24.3093844390614 60.2021579789629 24.3093898079146 60.2021461761747 24.3093921285343 60.2019764668701 24.3094248027713 60.2018633568928 24.3094309289998 60.1996093916659 24.3048209981219 60.1991884899261 24.3038854219139 60.1978853097358 24.3013021258241 60.1974671658609 24.3004617705134 60.1966419679235 24.2994247997083 60.1964377692645 24.2988406726944 60.1937874661714 24.2963721730397 60.1935021047537 24.2955421807507 60.1899560471516 24.2929395340157 60.1897905382785 24.2928069585974 60.1894324250476 24.2932129218327 60.1892299660549 24.29344544941 60.189109399409 24.2935813463514 60.1886684918292 24.2940839020705 60.1884471339572 24.2943360340031 60.1884093344689 24.294378981236 60.1876743863449 24.2952191784203 60.1872881699488 24.295655796731 60.1871594938577 24.2958060372294 60.1870191767407 24.2959709270509 60.1870047747561 24.2959885108019 60.186243463802 24.2968488070065 60.1854710407517 24.2977296753841 60.184815542503 24.2984771601905 60.1846104284268 24.2987103086066 60.184064214756 24.2993043377311 60.1839008404435 24.2994820044287 60.1835195613813 24.2999155353733 60.1834853871205 24.2999543836083 60.1833283319429 24.3001428347169 60.1825411609903 24.3010279662123 60.1817035503558 24.3019798207065 60.1812551837049 24.3024589851967 60.1810904953601 24.3026349606097 60.1795935941464 24.3043600958587 60.1778788973332 24.3063016310962 60.1771921663581 24.3071001442569 60.1763940215957 24.3080092625555 60.176260758772 24.3081612212454 60.1742277044919 24.3104579383336 60.1727985241982 24.312063671737 60.1702001586293 24.315009507764 60.1675151654786 24.3180890053205 60.1673028117216 24.3183233415337 60.1671497210383 24.3184922464285 60.1660123348194 24.3198325786685 60.1637451016388 24.3224414081349 60.1626101174867 24.3237472657585 60.1604941063843 24.3250464595068 60.1562791150484 24.3276427868857 60.1550530773753 24.3283652573506 60.1503382954137 24.3312347612294 60.1477628729368 24.3328110134668 60.1459527323772 24.3345063498873 60.1457725135313 24.3346745600602 60.1449091143506 24.3354804073299 60.1425528463651 24.3376810702454 60.1421788559672 24.3379202213503 60.1412663319922 24.3385084051974 60.1392516094676 24.3398068919191 60.1311133468646 24.3450776089554 60.1256392848729 24.3488505363027 60.125539361586 24.3489194027005 60.1230626086204 24.3506245884681 60.1216987776342 24.3515258760477 60.1206729373035 24.352271042154 60.1199717443123 24.3527148133425 60.1197645335404 24.3528447716025 60.1187819997199 24.3534628936525 60.1185526183585 24.3536046500748 60.1160565266682 24.3551791769846 60.1160245608192 24.3552011473654 60.1160185789497 24.3552052636157 60.1159636428276 24.3552430460519 60.115919837719 24.3552731847652 60.1159034872205 24.3552844333768 60.1157691964478 24.3552395331289 60.1157409241874 24.3552305513958 60.115020026911 24.3550017795468 60.1128308586047 24.3543416576082 60.1125696850744 24.3542575598847 60.1125618093643 24.3542550242047 60.1071868684472 24.3525312069062 60.1069153739641 24.352444132328 60.105784792748 24.3520816143981 60.1015017132405 24.3486635983428 60.1012151145118 24.3484304752235 60.1011636721558 24.3483946132735 60.1007222481211 24.3480456749872 60.0972110664332 24.3452465200285 60.0971758337912 24.345218447776 60.0964032283823 24.3446025957376 60.0963729985158 24.3445784937178 60.0951053199044 24.3435713237776 60.092980680582 24.3418808419335 60.0928785202946 24.3417993294905 60.0928401566351 24.3417688364723 60.0925065944757 24.3415035860534 60.0924382934963 24.3414492795281 60.0922324316663 24.3412855931127 60.0917623756526 24.3409118245607 60.0910326247837 24.3403315679554 60.090791455468 24.3401398036081 60.0891603202232 24.3435589950151 60.0877492765357 24.3464984528599 60.0859488098377 24.3502894124595 60.0828660145253 24.3567481694182 60.0823978928201 24.3577287630505 60.0818261450181 24.358443211562 60.0814641359938 24.3588978415765 60.0810750585851 24.3593849446845 60.0793576476138 24.3615349013908 60.0774700406961 24.3615484003899 60.0738887068609 24.3615753332315 60.0655321654537 24.3617682425217 60.0565576319878 24.3558463038422 60.0545776779527 24.3544130225228 60.0538032545677 24.3538654451316 60.0537984107628 24.3538258922173 60.0537899999247 24.3537571589751 60.0537776949836 24.3536523363493 60.0537745014456 24.3536238627722 60.0537631224129 24.3535186247003 60.0537597303436 24.3534865197332 60.0537484850277 24.3533812351044 60.0537445202466 24.3533470020253 60.0537311117331 24.3532427172599 60.0537280854856 24.3532208063003 60.0537128291604 24.353117568016 60.0537092916249 24.3530956980392 60.0536910824599 24.3529944033019 60.0536863034382 24.3529702072637 60.0536653430802 24.3528710555549 60.0536601898422 24.3528474644789 60.0536529467485 24.3528146261298 60.0536486974289 24.3527957957764 60.0536409075503 24.3527634684012 60.0536358118751 24.3527454425204 60.053625363848 24.3527163106719 60.0536169802898 24.3526991950562 60.0536023275664 24.3526785751209 60.0535915938111 24.3526679183148 60.0535746247007 24.3526563417311 60.0535572401999 24.3526473497521 60.053538630112 24.3526390668596 60.0535036864313 24.3526226780348 60.0534854533659 24.3526125862331 60.0534513024094 24.352590474365 60.0534435384812 24.3525850056787 60.0534097903595 24.3525605797924 60.053402060871 24.3525550364926 60.0533835303217 24.3525435492109 60.0533678928488 24.3525379029271 60.0533059706608 24.3525318509359 60.0532628293732 24.3525565085853 60.0532270712131 24.3525501388414 60.0532198908005 24.352548683939 60.0531842871902 24.3525397146121 60.0531677990274 24.3525337592232 60.0531503083507 24.3525257461255 60.0531330260708 24.3525160274639 60.0531159913003 24.3525047618076 60.053098852068 24.3524918695611 60.0530823202216 24.3524779045559 60.0530661015456 24.3524625310341 60.0530502828605 24.3524455983066 60.0530350101798 24.3524267712748 60.0530241226909 24.3524115814755 60.0530099969287 24.3523894645016 60.0529965474151 24.3523656763572 60.0529581902717 24.3522887804317 60.052909070697 24.3521841083461 60.0528974953212 24.3521570080413 60.0528858528395 24.3521296975335 60.0528736411176 24.3521067087148 60.0528576265276 24.3520907621475 60.0528400508348 24.3520838880618 60.0528221402121 24.3520818199336 60.0528051029573 24.3520820893356 60.0527871651974 24.3520835987296 60.0527692647863 24.3520860753221 60.052751401724 24.3520895191115 60.0527336065135 24.3520941073171 60.0527298823654 24.352095214261 60.052712196636 24.3521012310078 60.052694614996 24.3521084072291 60.0526771561032 24.3521167773611 60.0526583834162 24.3521272829818 60.05262434989 24.3521500429674 60.0526074895863 24.3521622817773 60.052599326006 24.3521682540501 60.0525824061321 24.3521802101516 60.0525652910343 24.3521909422009 60.0525477316407 24.3521983321546 60.0525437369659 24.352199388893 60.0525258164398 24.3522013100539 60.0525079244599 24.352198827156 60.0524902257455 24.3521929870237 60.0524727354082 24.3521849921993 60.0524661149804 24.3521814443626 60.0524489201995 24.3521711621022 60.0524319488907 24.352159478534 60.05241522079 24.3521464819102 60.0523987714159 24.3521321514198 60.0523929208698 24.3521266734057 60.0523768521056 24.3521107134296 60.0523609914049 24.3520939283104 60.052345347737 24.35207631733 60.052329998593 24.3520577125825 60.0523173795714 24.3520426440183 60.0523006041121 24.3520299746851 60.0522660739221 24.3520104637434 60.0522496510832 24.3519961132898 60.0522352439285 24.3519729595416 60.0522242030603 24.3519447390433 60.0522077035264 24.3519328381952 60.0521900095187 24.3519379932109 60.0521729256619 24.3519489383448 60.052155913937 24.3519603448079 60.0521422042941 24.35196706694 60.0521243106298 24.3519676385804 60.0521067015681 24.3519608931395 60.0520895953715 24.3519501009475 60.0520725361621 24.3519389636436 60.052068829477 24.351936907136 60.0520511963806 24.3519303073774 60.0520332850523 24.3519286526482 60.0520155041903 24.3519330600193 60.0520027102168 24.3519410921415 60.0519869142617 24.3519580245107 60.0519730771287 24.3519808005649 60.0519608981452 24.3520092108371 60.0519516950047 24.3520399697274 60.051945195399 24.3520733865217 60.0519414240458 24.3521084531444 60.0519398850677 24.3521441852734 60.0519401995685 24.3521800563294 60.0519408150599 24.3521950805617 60.0519431003432 24.352230667932 60.0519448043899 24.3522663917125 60.0519425668028 24.3523017845612 60.0519380387607 24.3523174724722 60.0519222359117 24.3523336146695 60.0519047515141 24.352341609231 60.051888980202 24.3523463224549 60.0518360180843 24.3523655319486 60.0518183477771 24.352371870527 60.0518005895247 24.3523769585239 60.0517860505639 24.3523795068784 60.0517681091875 24.3523803875289 60.0517501915158 24.3523820028845 60.0517325373497 24.3523882503131 60.0517248006885 24.3523935593487 60.05170921602 24.3524111750955 60.0516945366658 24.3524318263974 60.0516882083661 24.3524410649109 60.0507262474901 24.3517932882895 60.0458846056692 24.3455058763133 60.0391343441456 24.3370311782625 60.0362902481919 24.3336236713645 60.0359962221439 24.3332714413497 60.0291067945955 24.3244501782805 60.0247865159186 24.3190330902956 60.023292575815 24.3171603743075 60.0231516004156 24.3169836841248 60.0224955653456 24.3162836406827 60.0224955653456 24.3162836406827 60.0228340102057 24.3157988219825 60.0228373535942 24.315794906735 60.0228762465819 24.3157494055123 60.0248348684765 24.3134576858422 60.0291451564317 24.3084133555414 60.0291720763183 24.3083817738851 60.029672574407 24.3077958386058 60.0371934295714 24.2990158640656 60.0372640976707 24.2989331744183 60.0374736967475 24.2986900768314 60.0387185916607 24.2972597796452 60.0400570283255 24.2957212341278 60.0402863676045 24.2955157946113 60.0411320746553 24.2947581895023 60.0411566444638 24.2947361526114 60.0418034482876 24.2941558821691 60.0418771573746 24.2940897686791 60.0464345473509 24.2899434096883 60.0507254785047 24.2860391816207 60.0516363881334 24.2851625744847 60.0529158926792 24.2840076749864 60.0556283722332 24.2815590676774 60.0578100179587 24.2795886252506 60.0580995955235 24.2793270522933 60.0606392138685 24.2722287995535 60.0628179677044 24.2661374908655 60.0631387475254 24.265240494835 60.0636140473355 24.2649245482693 60.0691577098116 24.2612121503217 60.0696376716675 24.2608731560093 60.0697661974596 24.2607823542215 60.0698813387077 24.2597380538681 60.0715232008123 24.2596216428009 60.0735561015216 24.2582797347572 60.0735801996563 24.2582746410253 60.0753484167741 24.2579009463202 60.0795468001748 24.2570134700177 60.0802932413834 24.2568556752549 60.0808334523271 24.2561603983715 60.0816815938881 24.2550788938055 60.0831068307328 24.2532501536328 60.0836511912386 24.2525500404267 60.0843368053629 24.2516694989747 60.0844060870015 24.251580190413 60.0851933635455 24.2505692350916 60.0882887467211 24.2465937256265 60.0895221049365 24.2445559065369 60.0905010806243 24.2429387968888 60.0910516640719 24.24203503062 60.0915987827857 24.2411364342048 60.0919234478733 24.2406031866844 60.0920519179851 24.2403811437834 60.0923863702063 24.2398081521274 60.0925709747908 24.2395164467936 60.0929180629048 24.2389679060647 60.0930694870098 24.2396410747989 60.0933742833548 24.2390700180659 60.093404000667 24.239010917608 60.093522040146 24.2387601744873 60.0938030365236 24.2382284229653 60.0939795405215 24.2379026177849 60.094054256691 24.2377590441967 60.094146187845 24.2375824018819 60.0945858444414 24.2367376226762 60.0958037150769 24.2343973268894 60.0959065503271 24.2342005547175 60.0958849927308 24.2340830827381 60.0959260014152 24.2340184024788 60.0959374830346 24.2339986210458 60.0959822543929 24.2339265545567 60.0964428014107 24.2331688016254 60.0965352036933 24.2330106606569 60.0966165049524 24.2328771807459 60.096776545001 24.2326135824247 60.0975515888375 24.2313229781422 60.0986327654083 24.2295644339382 60.0988590518515 24.2291816857258 60.1001360949644 24.2270214380315 60.1019824688291 24.2290511024426 60.1036845682391 24.2309217735348 60.1039076155344 24.2311660063417 60.1048428813975 24.2317853757342 60.1054178584673 24.2323883242476 60.105405711456 24.2326249312377 60.105399484341 24.2327459919601 60.1057610501053 24.2330740220258 60.1064291075486 24.2323360224284 60.1066865805412 24.2320422409546 60.1069015556834 24.231814094859 60.1085838606733 24.229975607447 60.1105554067079 24.2289747919422 60.1109676336742 24.228438912945 60.1111111748423 24.2282299491114 60.1114834901795 24.2277467989277 60.1157813655626 24.2222175735962 60.1159228014282 24.2220379996212 60.1162453667079 24.2216074523832 60.1173797504795 24.2201600885476 60.1177647545823 24.2194697268771 60.1190817761629 24.2172711141414 60.1203611890411 24.2151612199415 60.1207161460109 24.214561497849 60.1209049002417 24.2142358769685 60.1215797593572 24.2130707452353 60.1217006603279 24.2128620292364 60.1219836228492 24.212373553958 60.1228536002511 24.2109616231953 60.1237643695908 24.2094222415228 60.1238381566089 24.2092981574967 60.1260969454748 24.2054991135772 60.1263129240404 24.2056216837394 60.1265798816723 24.2054643560167 60.1265529290444 24.2046480757582 60.1267597177877 24.2042989996637 60.1268130886011 24.2041979287896 60.1271577356946 24.2036329310708 60.1282812649527 24.2017101506547 60.128433486071 24.2005443391626 60.1278412229901 24.2001767319602 60.127839804993 24.1980878497982 60.1269303293422 24.1955887304571 60.1275205872763 24.194093095239 60.1277589771708 24.1943445559187 60.1290628665844 24.195723165439 60.1292283692573 24.1944344744038 60.1298048349654 24.1899445373359 60.130322849843 24.1859087813139 60.1305162998255 24.1844013661899 60.1307084382383 24.1829040402609 60.1311847094103 24.1791917467536 60.1309262776538 24.1771464389521 60.1309123441612 24.1770508988611 60.1308709927212 24.1767251218001 60.130785915541 24.1760571499442 60.1306722804877 24.1750830948195 60.1305578230377 24.1741020024823 60.1258269565535 24.1656220203891 60.1245203364816 24.1632823098989 60.1225655994284 24.1609756403401 60.1221034970292 24.1604215222158 60.1214569456065 24.1596463860314 60.1204992435907 24.157710900718 60.1194964465741 24.1557299601321 60.119169123863 24.1550833807281 60.1169889588276 24.1507359866001 60.1167720930479 24.1501731522852 60.1167126858904 24.1500050477172 60.1160112484087 24.1481283124006 60.113668871329 24.1416908480765 60.1136086355429 24.141783900779 60.1135977937556 24.1418006642129 60.1133863793431 24.1412645087325 60.1133529864544 24.1411798475979 60.1127705338247 24.1397213590931 60.1121000650767 24.1380102398546 60.1114028365243 24.1362319790698 60.1134576527515 24.1357896526585 60.1135228746494 24.1357756136279 60.1135282117515 24.1357664911459 60.1135560525331 24.1357211203089 60.1135707834268 24.1357005965842 60.1135798582676 24.1356894030878 60.1135956530398 24.1356723691373 60.1136119198941 24.1356572202854 60.1136217151326 24.1356490063807 60.1136553309628 24.1356238709654 60.1136686810426 24.1356142679847 60.1137703829492 24.1355434674747 60.1137827351739 24.1355354992836 60.1138862709897 24.1354763658625 60.1138969570113 24.1354711166619 60.1139671174099 24.135440752148 60.1140379921378 24.1354180660953 60.1140456858606 24.1354161192207 60.1140635129588 24.1354120314078 60.1141171746026 24.135403532609 60.1141249306529 24.1354028044199 60.1141428663966 24.1354016594162 60.1141966886651 24.1354018234261 60.1142123230872 24.1354026966295 60.1143555702897 24.1354210999853 60.1143728223733 24.1354232367252 60.1144086241208 24.1354280994904 60.114499028126 24.135445911834 60.1145042496894 24.135447222138 60.1145220342619 24.1354519588868 60.11464593088 24.1354933048889 60.1146500256023 24.135494857169 60.114791601826 24.1355423175861 60.1147990965222 24.1355440423993 60.1148348420439 24.1355504584071 60.1148706894827 24.1355536972077 60.1149065827169 24.135553241609 60.1149228485089 24.135551737745 60.1149407445496 24.1355491740682 60.1149764287456 24.1355415537897 60.1149925504112 24.1355371280983 60.1150456436221 24.1355193895218 60.1150586472267 24.1355145327581 60.1152691404535 24.1354235786375 60.1152784321102 24.1354194945266 60.1155956093172 24.1352973740167 60.1156011675133 24.1352955586497 60.1159382628419 24.135192893136 60.1159486040831 24.1351895637481 60.1160544910853 24.1351506357996 60.1161067517501 24.1351247411082 60.116116967938 24.1351189561774 60.1161512100587 24.1350974363495 60.1161849158046 24.1350727226092 60.1162179167481 24.1350445055411 60.1162233592802 24.1350394236412 60.1162394771297 24.1350236200774 60.116271045416 24.1349894065122 60.1162762158322 24.1349833761009 60.1163218310741 24.1349261036853 60.1163367165777 24.1349065005445 60.1164550782468 24.134743706598 60.1164977681829 24.134793229336 60.1166564451614 24.1349773035441 60.1173432341636 24.1348164637182 60.1191917258737 24.1343785255275 60.1196567622417 24.1342683292934 60.120320202406 24.1341163490793 60.1208265507879 24.1339870846017 60.1212518528819 24.1332297566312 60.1216264597577 24.1338014871982 60.1225646185235 24.1335732407424 60.1228294569207 24.1335095387038 60.1241177501184 24.1331999526196 60.1244322095246 24.1331237324197 60.13011263023 24.1317416087555 60.1307324713245 24.131591159169 60.1308544613207 24.1310922965737 60.1322499716487 24.1253716501592 60.1334347851698 24.1205277420573 60.1342478996822 24.1172098339687 60.1361225060684 24.113201353993 60.1380229917155 24.1090744609247 60.1385624815436 24.1079103241335 60.1416597096521 24.10132925366 60.1427448086432 24.0989917709597 60.1428461451017 24.0978639977333 60.1429367078557 24.0968914709535 60.1429915387723 24.0963026618276 60.1431015459933 24.0950203592409 60.1434338315507 24.0913203127181 60.1438556832024 24.0867982836893 60.1440195515516 24.0847940805262 60.1441786981977 24.0830209830267 60.144336308363 24.0819030335153 60.1443418036514 24.0818645630932 60.1443692117532 24.0816723790063 60.1443738445049 24.0816392103823 60.1443791834568 24.0816009879716 60.1443819519542 24.081580255314 60.1460027784421 24.070090025985 60.1461346886055 24.0691545395962 60.1465928745326 24.0663458173969 60.1470853551339 24.063397107352 60.1473673211077 24.061708536023 60.1475149609969 24.0608172146095 60.1476363534565 24.0601392688334 60.1476952382633 24.0597980861127 60.1485999989942 24.0546234483653 60.1487513808672 24.0537198837361 60.1492851561584 24.050586712502 60.1499692771655 24.046641445269 60.1499703063266 24.0466356219116 60.1501172399896 24.0458056925212 + + + + + + Siuntio + + municipality + + + + + + + + + 60.2812912654032 24.5155677495439 60.2811431395941 24.515340555867 60.2780744453567 24.5106012615667 60.2762940864329 24.5078553580436 60.2762549933927 24.5077946817186 60.2755486504447 24.5067008542523 60.2752680850907 24.5062645679677 60.2751800435053 24.5061279480534 60.2746929361773 24.5053704944791 60.2740880032284 24.5044435426542 60.2700741364915 24.5044314956854 60.2695612004471 24.5044299045574 60.2691338302361 24.5044278704093 60.2686407369238 24.5044214398447 60.2680450300516 24.5044160637247 60.2659732014848 24.5044122390772 60.2654268202726 24.5044115852982 60.263927029426 24.5044084642977 60.2630454294938 24.5044068371393 60.2630316488958 24.5044068200477 60.2620778034425 24.5044050721786 60.2620510771677 24.504405010544 60.2619371559098 24.5044028395088 60.2610674927103 24.5043863084958 60.2607565546215 24.5043919655129 60.260169975945 24.5043799986068 60.2597214934337 24.5043726463346 60.2592730195265 24.5043652753751 60.2588206708032 24.5043692092805 60.257534060811 24.5043627922161 60.257034689628 24.5043531327296 60.2565807215125 24.5043473912768 60.2559576766573 24.5043410036221 60.2559196918383 24.5043417631105 60.2555136623707 24.5043371975796 60.2554753377357 24.5043356510561 60.2554298929334 24.5043338152085 60.2548443731905 24.505691181645 60.254625305602 24.5062034442135 60.252697082385 24.5106998687415 60.2523773873403 24.5114321540858 60.2515926851175 24.5132760248599 60.2511164742034 24.5143949850346 60.2510940796405 24.514448248352 60.2506791159515 24.5154357622719 60.2506559733088 24.5154908339937 60.2501136564953 24.5167759520173 60.2496960370662 24.5177602090524 60.2496650657745 24.5178323891059 60.2492872586915 24.518712739989 60.2486126138187 24.5202846679647 60.248560205702 24.5204067545318 60.2484200954541 24.5207332050874 60.2478616401324 24.5220317444564 60.2477327727528 24.5223317229719 60.247266662422 24.5234191823563 60.2467612463689 24.5245853520615 60.2466807901509 24.52478647264 60.2465800909498 24.5250187033434 60.2463400844079 24.5250262494733 60.2455048535961 24.5250092983554 60.2447246623147 24.525065046486 60.2446973004568 24.5250670214747 60.2414516155534 24.5251475246252 60.2383835894891 24.5252236676129 60.2381083461436 24.5252304892373 60.2335385205228 24.5253438382082 60.2335133959748 24.5253443968416 60.2331607727371 24.5253532232526 60.2324011283235 24.5253720705086 60.2310214090186 24.5254062778777 60.2305829542845 24.524647393485 60.2300050232825 24.5235666907611 60.2288833079696 24.5215155049705 60.2280123237294 24.5199421858609 60.2264850751555 24.5170627678005 60.2258564295267 24.5164458155999 60.2245044881499 24.5151216633696 60.2216712693421 24.5121560948948 60.2211129836057 24.5115717832605 60.2209060096656 24.5115909433199 60.2199027631006 24.5106017971585 60.2198753357904 24.5102629460836 60.2180128577977 24.5083534211498 60.2173892809121 24.5077141416688 60.2173159131559 24.5076385530347 60.2165622421107 24.5068619596362 60.2164013804876 24.5066924540496 60.2163596699886 24.5065280543054 60.2153625749109 24.50259842191 60.2141154101136 24.5029444087323 60.2128622321022 24.5032010475443 60.2085154169614 24.5156676878441 60.2082679211572 24.5163773830529 60.2075089685001 24.5185532957141 60.2069928020054 24.5200329913021 60.2065953571379 24.521172362861 60.2061153309242 24.5225483348447 60.2053480212358 24.5247476339477 60.2062255820884 24.5276996090637 60.2061856137977 24.5281316294406 60.206289987633 24.5281676508192 60.2063479637965 24.5281791342011 60.2062867384891 24.5298088606794 60.2062580098425 24.5305731139715 60.2061934530144 24.5322903842304 60.2061095126777 24.5330288004078 60.2060049560002 24.5339485294752 60.2057863802002 24.53388399341 60.2056658853692 24.5338422884384 60.2056434538018 24.5338345333903 60.2055828449472 24.5338031857191 60.2056060236917 24.5345799094466 60.2055826279739 24.5347009685285 60.2053162554033 24.5348307547221 60.2049349496192 24.5352483752274 60.2045663422702 24.5364183851071 60.2045162622098 24.5364194164983 60.203526959133 24.5364395719755 60.2027797991624 24.5364544849864 60.2026231116263 24.5364577193038 60.2017609126405 24.5364755204348 60.2008477640112 24.536478986802 60.2005714095769 24.536480674681 60.2003527562694 24.5364984268699 60.2003242597466 24.5365007445152 60.2001770319714 24.536512706592 60.2001341029515 24.5365161787866 60.1989741659421 24.5364533198693 60.1984563921413 24.5364093057085 60.1979552274226 24.5363666996924 60.1975700663992 24.5363339627793 60.1964684024163 24.5362121242726 60.1964003924013 24.5348299656528 60.1963680146413 24.5341194502329 60.1963366821713 24.5334373125303 60.1963026877252 24.5327108078437 60.1962464154693 24.5315831883207 60.1961338660167 24.5291721346889 60.1960720126944 24.5279935030171 60.1960524625999 24.5275940987207 60.1958534172573 24.5234139197511 60.1958367292539 24.5230636173556 60.1957096229122 24.5203956015323 60.1957006323338 24.5202069858569 60.1955185807335 24.5163881460951 60.1954616685308 24.5210367933626 60.1954518883217 24.5218343614809 60.1954210784287 24.5243447243936 60.19541509697 24.524831081242 60.1954112127184 24.5251474383127 60.1953921537345 24.5266967709335 60.1960334563888 24.5280854855007 60.1956077775278 24.5287536692162 60.1953820684189 24.5286777241096 60.1946759878485 24.5302093394843 60.1941406099469 24.5313725894305 60.1935770398076 24.5325970062413 60.1921158473784 24.5358454875599 60.1910975348967 24.5380798970616 60.1898694941426 24.5408638518756 60.1877784422562 24.5455399147981 60.1876595416965 24.545810611356 60.1872360946375 24.5467577483467 60.1865737388679 24.5482421171095 60.1863152624561 24.548822691711 60.1861374402437 24.5492131651028 60.185695636647 24.5501948786701 60.1851047650266 24.5515449034327 60.1849864309748 24.5518143227156 60.1847972176251 24.5522261382598 60.1844799973404 24.5529203093913 60.1840534852824 24.5538407930926 60.1832545396337 24.5533793933474 60.1828765558086 24.5547615418067 60.1828385030025 24.55622773834 60.1828300042172 24.5565341013572 60.1827677869558 24.5568078975653 60.1825353559203 24.5563216437695 60.182291002185 24.5570278775955 60.1820749607056 24.5575977030037 60.1820786139819 24.5586714424177 60.1820831082941 24.5588154306922 60.1818010846537 24.5599724000387 60.1816836071277 24.5604487809859 60.181046886905 24.563053940697 60.1810220366199 24.5631539120396 60.1809354111553 24.5634992126405 60.1809193322071 24.5635632566028 60.1808815691342 24.5637123738058 60.1794733175957 24.5685160310804 60.1793342770837 24.5689409741266 60.1793183592704 24.5689919074404 60.1793004392827 24.5690492646352 60.1792920474557 24.5690761067997 60.1791396798613 24.5690249031144 60.1789576280454 24.5689960027295 60.1787508330608 24.5688900341467 60.1786040974661 24.5687389413517 60.1784213110581 24.5684903569787 60.1781524734074 24.5681506507743 60.1778928531306 24.5678912921691 60.1775860191047 24.5677034878728 60.1773556405606 24.567602810808 60.1771999766815 24.5676001169169 60.1770029819352 24.5676889501071 60.1767352095866 24.5677890588695 60.1766559737083 24.5678161988088 60.1763721348193 24.5679013727212 60.1762852629962 24.56792898672 60.1761542481184 24.5679502363654 60.1759389279086 24.5679549106491 60.1757619617371 24.5679990154805 60.1754526677426 24.568204754908 60.1753475373573 24.5682918166625 60.1752225445551 24.5684723275098 60.1740842862205 24.5701160403686 60.1726188168719 24.5722930332656 60.1703108347069 24.5698781240564 60.1679250949502 24.5673822415781 60.1637699142958 24.5770114024754 60.1653017711657 24.587783891223 60.1639110841193 24.5890069312111 60.1598761921647 24.592554791398 60.1598763335248 24.5926480698737 60.1598782865138 24.5940033541195 60.1598845216703 24.5983888016432 60.1598854058894 24.5994157410727 60.1573344436923 24.6079653457397 60.1570393748665 24.608954090721 60.1569356348288 24.6093016786224 60.1568689037746 24.6095258313372 60.1567706086019 24.6098581342896 60.156753269676 24.6099167741871 60.1567486890656 24.6099322449567 60.1566616437218 24.6102264420397 60.1566556240233 24.610246792917 60.1566443555351 24.6102849156617 60.156563837872 24.6105570832472 60.156550452143 24.6106023337903 60.1564443559697 24.6109609670238 60.1560121209253 24.6124219782006 60.1558857406828 24.612849127088 60.1557968945379 24.6131494219417 60.1557180350928 24.6133170236455 60.1555324560598 24.6137113708737 60.1550896327705 24.614652420602 60.1531331254057 24.6188096507074 60.1526525568521 24.6198306648856 60.1494036853424 24.6267319571232 60.1492867670474 24.6268118614526 60.1492577925701 24.6268316614017 60.14219612731 24.6316569861838 60.1376954772947 24.6347311783972 60.1374869484122 24.6355745800157 60.1367037812209 24.6387419518925 60.1362877238985 24.6404244798168 60.1345923175348 24.641050141813 60.1342353307161 24.6405049321752 60.1334658800493 24.6393298674072 60.1327242610129 24.6381973592196 60.1313076429789 24.6399369348416 60.131244272349 24.6400147469344 60.131209040292 24.6400580216347 60.1304819210222 24.6409507294419 60.1300387079421 24.6411571329795 60.1277513337403 24.6421887486153 60.1277491414903 24.6421897337555 60.1277396954622 24.6421939928485 60.1276871631626 24.6422176843289 60.1277015405396 24.6424393462577 60.1263372681024 24.6431697039727 60.1179276724347 24.6476703029944 60.1173780512753 24.647964351354 60.1075660370655 24.6539028657569 60.1061691093981 24.6547482319093 60.1007756549742 24.6530877657168 60.0984451855796 24.650808088884 60.0923746654701 24.6448716079878 60.092350338639 24.644847840214 60.092337521282 24.6448353015632 60.092267121591 24.644766674053 60.0921365483067 24.644652827042 60.0913264935392 24.6454036179717 60.0912501434492 24.6454780768197 60.0912365344592 24.6454907025506 60.0912312849755 24.6454955555364 60.091145525889 24.6455713148396 60.0910445974667 24.6456649005242 60.0909616524089 24.6457418070561 60.0865531913394 24.6498300575056 60.0865124591637 24.6498677730762 60.0855446112726 24.6507637744106 60.0853922333056 24.6509048486537 60.0851319109542 24.6511442522142 60.0850714405973 24.6511985281271 60.0850533551848 24.6512150640413 60.0849926841176 24.651266638687 60.0849540492306 24.6513005690135 60.0823697556591 24.6537001959332 60.0817611693254 24.6542505177859 60.0814248713983 24.6545546725143 60.0813914243938 24.6545853677266 60.0813877472964 24.6545887395537 60.0811535423707 24.6547952849055 60.0800372386367 24.6558260586325 60.0797435904212 24.6560958688119 60.0797235704359 24.6561142806131 60.0786995193898 24.6570552293853 60.0768255872339 24.6587737844988 60.0767882510264 24.6588086119672 60.076593687914 24.6589901384277 60.0758187838365 24.6597020349933 60.0756374706679 24.659868913141 60.0756322292725 24.6598737429116 60.0756076925176 24.6598963352101 60.073773769958 24.6615842794906 60.0621660211627 24.6722631188721 60.051737963188 24.6818517637624 60.0340362277903 24.7076217340983 60.0294336769579 24.7143027645329 60.0080220376038 24.7454155800464 59.9014047844099 24.8314125208895 59.9014047844099 24.8314125208895 59.8920561552314 24.785367731142 59.8738974079353 24.7168702485685 59.8723442252055 24.7109325354958 59.8705502208089 24.7040234547284 59.8694005643996 24.6995970163757 59.8278565831287 24.5316939052895 59.8170622630867 24.4883099332204 59.7995385877138 24.3531068899762 59.7968074351099 24.3321212874041 59.7915698748376 24.2815931629552 59.7915698748376 24.2815931629552 59.8021113375729 24.2809817043681 59.8530705470722 24.2780190322576 59.8731387950712 24.2768492636467 59.8872505739342 24.2760263289034 59.8945817469425 24.2755984821174 59.9170239843323 24.2742877624577 59.9394661208573 24.2729753739228 59.9550095063752 24.2720653814099 59.9605707405408 24.2739051129584 59.9619026296996 24.2743458446538 59.9843262815294 24.2817710583852 59.9885659648931 24.2831760954623 59.9979084026367 24.2862735405924 60.0067494261888 24.2892063617252 60.008952240835 24.2899373421295 60.0196570215707 24.3106203226498 60.0207892785953 24.3128025498777 60.0224955653456 24.3162836406827 60.0224955653456 24.3162836406827 60.0231516004156 24.3169836841248 60.023292575815 24.3171603743075 60.0247865159186 24.3190330902956 60.0291067945955 24.3244501782805 60.0359962221439 24.3332714413497 60.0362902481919 24.3336236713645 60.0391343441456 24.3370311782625 60.0458846056692 24.3455058763133 60.0507262474901 24.3517932882895 60.0516882083661 24.3524410649109 60.0516945366658 24.3524318263974 60.05170921602 24.3524111750955 60.0517248006885 24.3523935593487 60.0517325373497 24.3523882503131 60.0517501915158 24.3523820028845 60.0517681091875 24.3523803875289 60.0517860505639 24.3523795068784 60.0518005895247 24.3523769585239 60.0518183477771 24.352371870527 60.0518360180843 24.3523655319486 60.051888980202 24.3523463224549 60.0519047515141 24.352341609231 60.0519222359117 24.3523336146695 60.0519380387607 24.3523174724722 60.0519425668028 24.3523017845612 60.0519448043899 24.3522663917125 60.0519431003432 24.352230667932 60.0519408150599 24.3521950805617 60.0519401995685 24.3521800563294 60.0519398850677 24.3521441852734 60.0519414240458 24.3521084531444 60.051945195399 24.3520733865217 60.0519516950047 24.3520399697274 60.0519608981452 24.3520092108371 60.0519730771287 24.3519808005649 60.0519869142617 24.3519580245107 60.0520027102168 24.3519410921415 60.0520155041903 24.3519330600193 60.0520332850523 24.3519286526482 60.0520511963806 24.3519303073774 60.052068829477 24.351936907136 60.0520725361621 24.3519389636436 60.0520895953715 24.3519501009475 60.0521067015681 24.3519608931395 60.0521243106298 24.3519676385804 60.0521422042941 24.35196706694 60.052155913937 24.3519603448079 60.0521729256619 24.3519489383448 60.0521900095187 24.3519379932109 60.0522077035264 24.3519328381952 60.0522242030603 24.3519447390433 60.0522352439285 24.3519729595416 60.0522496510832 24.3519961132898 60.0522660739221 24.3520104637434 60.0523006041121 24.3520299746851 60.0523173795714 24.3520426440183 60.052329998593 24.3520577125825 60.052345347737 24.35207631733 60.0523609914049 24.3520939283104 60.0523768521056 24.3521107134296 60.0523929208698 24.3521266734057 60.0523987714159 24.3521321514198 60.05241522079 24.3521464819102 60.0524319488907 24.352159478534 60.0524489201995 24.3521711621022 60.0524661149804 24.3521814443626 60.0524727354082 24.3521849921993 60.0524902257455 24.3521929870237 60.0525079244599 24.352198827156 60.0525258164398 24.3522013100539 60.0525437369659 24.352199388893 60.0525477316407 24.3521983321546 60.0525652910343 24.3521909422009 60.0525824061321 24.3521802101516 60.052599326006 24.3521682540501 60.0526074895863 24.3521622817773 60.05262434989 24.3521500429674 60.0526583834162 24.3521272829818 60.0526771561032 24.3521167773611 60.052694614996 24.3521084072291 60.052712196636 24.3521012310078 60.0527298823654 24.352095214261 60.0527336065135 24.3520941073171 60.052751401724 24.3520895191115 60.0527692647863 24.3520860753221 60.0527871651974 24.3520835987296 60.0528051029573 24.3520820893356 60.0528221402121 24.3520818199336 60.0528400508348 24.3520838880618 60.0528576265276 24.3520907621475 60.0528736411176 24.3521067087148 60.0528858528395 24.3521296975335 60.0528974953212 24.3521570080413 60.052909070697 24.3521841083461 60.0529581902717 24.3522887804317 60.0529965474151 24.3523656763572 60.0530099969287 24.3523894645016 60.0530241226909 24.3524115814755 60.0530350101798 24.3524267712748 60.0530502828605 24.3524455983066 60.0530661015456 24.3524625310341 60.0530823202216 24.3524779045559 60.053098852068 24.3524918695611 60.0531159913003 24.3525047618076 60.0531330260708 24.3525160274639 60.0531503083507 24.3525257461255 60.0531677990274 24.3525337592232 60.0531842871902 24.3525397146121 60.0532198908005 24.352548683939 60.0532270712131 24.3525501388414 60.0532628293732 24.3525565085853 60.0533059706608 24.3525318509359 60.0533678928488 24.3525379029271 60.0533835303217 24.3525435492109 60.053402060871 24.3525550364926 60.0534097903595 24.3525605797924 60.0534435384812 24.3525850056787 60.0534513024094 24.352590474365 60.0534854533659 24.3526125862331 60.0535036864313 24.3526226780348 60.053538630112 24.3526390668596 60.0535572401999 24.3526473497521 60.0535746247007 24.3526563417311 60.0535915938111 24.3526679183148 60.0536023275664 24.3526785751209 60.0536169802898 24.3526991950562 60.053625363848 24.3527163106719 60.0536358118751 24.3527454425204 60.0536409075503 24.3527634684012 60.0536486974289 24.3527957957764 60.0536529467485 24.3528146261298 60.0536601898422 24.3528474644789 60.0536653430802 24.3528710555549 60.0536863034382 24.3529702072637 60.0536910824599 24.3529944033019 60.0537092916249 24.3530956980392 60.0537128291604 24.353117568016 60.0537280854856 24.3532208063003 60.0537311117331 24.3532427172599 60.0537445202466 24.3533470020253 60.0537484850277 24.3533812351044 60.0537597303436 24.3534865197332 60.0537631224129 24.3535186247003 60.0537745014456 24.3536238627722 60.0537776949836 24.3536523363493 60.0537899999247 24.3537571589751 60.0537984107628 24.3538258922173 60.0538032545677 24.3538654451316 60.0545776779527 24.3544130225228 60.0565576319878 24.3558463038422 60.0655321654537 24.3617682425217 60.0738887068609 24.3615753332315 60.0774700406961 24.3615484003899 60.0793576476138 24.3615349013908 60.0810750585851 24.3593849446845 60.0814641359938 24.3588978415765 60.0818261450181 24.358443211562 60.0823978928201 24.3577287630505 60.0828660145253 24.3567481694182 60.0859488098377 24.3502894124595 60.0877492765357 24.3464984528599 60.0891603202232 24.3435589950151 60.090791455468 24.3401398036081 60.0910326247837 24.3403315679554 60.0917623756526 24.3409118245607 60.0922324316663 24.3412855931127 60.0924382934963 24.3414492795281 60.0925065944757 24.3415035860534 60.0928401566351 24.3417688364723 60.0928785202946 24.3417993294905 60.092980680582 24.3418808419335 60.0951053199044 24.3435713237776 60.0963729985158 24.3445784937178 60.0964032283823 24.3446025957376 60.0971758337912 24.345218447776 60.0972110664332 24.3452465200285 60.1007222481211 24.3480456749872 60.1011636721558 24.3483946132735 60.1012151145118 24.3484304752235 60.1015017132405 24.3486635983428 60.105784792748 24.3520816143981 60.1069153739641 24.352444132328 60.1071868684472 24.3525312069062 60.1125618093643 24.3542550242047 60.1125696850744 24.3542575598847 60.1128308586047 24.3543416576082 60.115020026911 24.3550017795468 60.1157409241874 24.3552305513958 60.1157691964478 24.3552395331289 60.1159034872205 24.3552844333768 60.115919837719 24.3552731847652 60.1159636428276 24.3552430460519 60.1160185789497 24.3552052636157 60.1160245608192 24.3552011473654 60.1160565266682 24.3551791769846 60.1185526183585 24.3536046500748 60.1187819997199 24.3534628936525 60.1197645335404 24.3528447716025 60.1199717443123 24.3527148133425 60.1206729373035 24.352271042154 60.1216987776342 24.3515258760477 60.1230626086204 24.3506245884681 60.125539361586 24.3489194027005 60.1256392848729 24.3488505363027 60.1311133468646 24.3450776089554 60.1392516094676 24.3398068919191 60.1412663319922 24.3385084051974 60.1421788559672 24.3379202213503 60.1425528463651 24.3376810702454 60.1449091143506 24.3354804073299 60.1457725135313 24.3346745600602 60.1459527323772 24.3345063498873 60.1477628729368 24.3328110134668 60.1503382954137 24.3312347612294 60.1550530773753 24.3283652573506 60.1562791150484 24.3276427868857 60.1604941063843 24.3250464595068 60.1626101174867 24.3237472657585 60.1637451016388 24.3224414081349 60.1660123348194 24.3198325786685 60.1671497210383 24.3184922464285 60.1673028117216 24.3183233415337 60.1675151654786 24.3180890053205 60.1702001586293 24.315009507764 60.1727985241982 24.312063671737 60.1742277044919 24.3104579383336 60.176260758772 24.3081612212454 60.1763940215957 24.3080092625555 60.1771921663581 24.3071001442569 60.1778788973332 24.3063016310962 60.1795935941464 24.3043600958587 60.1810904953601 24.3026349606097 60.1812551837049 24.3024589851967 60.1817035503558 24.3019798207065 60.1825411609903 24.3010279662123 60.1833283319429 24.3001428347169 60.1834853871205 24.2999543836083 60.1835195613813 24.2999155353733 60.1839008404435 24.2994820044287 60.184064214756 24.2993043377311 60.1846104284268 24.2987103086066 60.184815542503 24.2984771601905 60.1854710407517 24.2977296753841 60.186243463802 24.2968488070065 60.1870047747561 24.2959885108019 60.1870191767407 24.2959709270509 60.1871594938577 24.2958060372294 60.1872881699488 24.295655796731 60.1876743863449 24.2952191784203 60.1884093344689 24.294378981236 60.1884471339572 24.2943360340031 60.1886684918292 24.2940839020705 60.189109399409 24.2935813463514 60.1892299660549 24.29344544941 60.1894324250476 24.2932129218327 60.1897905382785 24.2928069585974 60.1899560471516 24.2929395340157 60.1935021047537 24.2955421807507 60.1937874661714 24.2963721730397 60.1964377692645 24.2988406726944 60.1966419679235 24.2994247997083 60.1974671658609 24.3004617705134 60.1978853097358 24.3013021258241 60.1991884899261 24.3038854219139 60.1996093916659 24.3048209981219 60.2018633568928 24.3094309289998 60.2019764668701 24.3094248027713 60.2021461761747 24.3093921285343 60.2021579789629 24.3093898079146 60.202193770041 24.3093844390614 60.2022134535056 24.3093835303225 60.2022493392869 24.3093845970453 60.2022521385476 24.3093848550185 60.2022621796759 24.30938603576 60.2023516149639 24.3094006195166 60.2023618319911 24.3094020565846 60.2024514141517 24.3094123688914 60.2024573586187 24.3094131091842 60.2025826135441 24.3094321404012 60.2025887511167 24.3094330995134 60.2027139168564 24.3094543762347 60.202729281914 24.3094575935269 60.2028894129172 24.309499649928 60.2029048929017 24.3095041032194 60.2030645646975 24.3095527494756 60.2030675220931 24.3095537164745 60.2031912613118 24.3095972209592 60.2031945194414 24.3095983979665 60.2033184025505 24.3096401402144 60.2033361412594 24.3096452207944 60.2034608191507 24.309676104809 60.2035319947579 24.3096949111388 60.2036027148375 24.3097196028526 60.2036200713035 24.3097270973447 60.2036722978575 24.3097533403142 60.2037410085131 24.3097950008785 60.2037578300497 24.3098062393954 60.2037917161726 24.3098300683104 60.2038751961585 24.3098960593272 60.2038863800189 24.3099057382221 60.2039840003521 24.3099969416883 60.203994780943 24.3100075561603 60.2040915258157 24.3101025501496 60.2041051423982 24.3101156759291 60.2041866636642 24.3101909618434 60.2042004731908 24.310202970862 60.2042837095217 24.310270247048 60.2044201055809 24.3103641609285 60.2045573719044 24.3104522644349 60.204571422931 24.3104606800386 60.2046577892617 24.3105095430321 60.2046719232228 24.3105171757452 60.2047586269425 24.3105636287992 60.2047744518196 24.3105722421696 60.2048437608848 24.3106097594052 60.2048595720368 24.3106181392926 60.2049292073375 24.3106531390888 60.2050177983652 24.3106925431336 60.2051071215805 24.3107308405104 60.2052129075512 24.3107777535775 60.2052295112874 24.3107853467161 60.2052994673124 24.3108175592803 60.2053287602041 24.3106650360837 60.2053374898357 24.3105958202607 60.2053495703181 24.3105075576365 60.2054119081837 24.3100523125324 60.204607676205 24.3089381257438 60.2042627104551 24.3081073008634 60.2035988355164 24.3077214782267 60.202524123407 24.307160676228 60.2019627940999 24.3067030602735 60.2010670817465 24.3061704816124 60.2004111551338 24.3049868096925 60.1999252649471 24.303890489485 60.1996706857579 24.3029676613375 60.1992383482735 24.301895094484 60.1982332300677 24.300256008411 60.2001356684681 24.3020974346886 60.2006092159339 24.3025180490814 60.2071691963752 24.3082568342223 60.2079908465067 24.3089714947168 60.2088461869542 24.3097160499794 60.2101450903346 24.3109066261401 60.2107265192421 24.3113612428645 60.2112445130363 24.311869597569 60.2113166339443 24.3119403656366 60.2118664167244 24.3124344007636 60.2120690782057 24.3126219095534 60.2122615327082 24.312789873062 60.2127048706882 24.3131890883221 60.2150040635263 24.3152204998224 60.2161290037413 24.3162071430409 60.2163582456507 24.3164276447602 60.2167711071228 24.3168122404785 60.215685362227 24.3185641830783 60.2145996203597 24.320317794722 60.2145973510462 24.320321085494 60.2135699663559 24.3217763381198 60.2125420372395 24.3223592010524 60.212532718563 24.3225023182315 60.2126000968313 24.3238023757412 60.2126111911532 24.3240155218486 60.2126723320987 24.3252070996306 60.2130555006134 24.3246698849269 60.2137450896398 24.323697311062 60.2144251145751 24.322743494695 60.2144508784973 24.3227073592672 60.2168023380237 24.3194110577799 60.2168068629798 24.319123426734 60.2174369210287 24.3176196286307 60.2175853793441 24.3174659106215 60.2208665695297 24.3203574786563 60.2225252324158 24.3218108856855 60.2232510624057 24.3224368251627 60.2232793736584 24.3224587696486 60.2232864381084 24.3224642613813 60.2232908462986 24.3224676762339 60.2233584759915 24.3225201126256 60.223404334793 24.3225563919281 60.2250192064485 24.3239793817467 60.2310442171396 24.3291590709147 60.2311946793801 24.3292884449254 60.2315501922737 24.3296160403723 60.2316165605833 24.3296711358302 60.2317984884461 24.3298279584324 60.2324877048009 24.3303942496858 60.2329790636751 24.3308188995191 60.2330874354847 24.3326765627499 60.2331310239908 24.333422624898 60.2332055181553 24.3347031365052 60.2333402598324 24.334845383232 60.2336982524384 24.3352497452359 60.2338806673328 24.3344520064715 60.2335328847678 24.3312769774831 60.2349922146607 24.3325031918429 60.2353937246156 24.3328164766664 60.2368530597371 24.3340303591646 60.2373486808238 24.3344361975722 60.2392339965184 24.3360589641765 60.2401492474021 24.336859053751 60.240364432962 24.3370481102586 60.2418440267093 24.3383936188373 60.2443255338308 24.3407077441849 60.2446709152894 24.3410213753742 60.2459055787297 24.3422272560313 60.2461982126551 24.342485752886 60.2461982126551 24.342485752886 60.2467191443022 24.3438869832046 60.2479840205055 24.3472442911253 60.2481737522883 24.3478443255008 60.2505658902023 24.354216533049 60.2508896519204 24.3551458824199 60.2512414597754 24.3560412472573 60.2518436914533 24.3576731157664 60.2518480003813 24.3576846801838 60.2519626504682 24.3580762461847 60.2526149709597 24.3597850411934 60.2528092945 24.3603063550055 60.2533974231098 24.3619152892306 60.2552424381469 24.3669420156627 60.2556656361347 24.3680773621474 60.2565929992136 24.370583817829 60.2575376093517 24.3714054605122 60.2583153918641 24.3721053514027 60.2594907051199 24.3731286660601 60.2611963595599 24.3745732434961 60.2618941630471 24.3751643172511 60.2643777535188 24.3773217054608 60.2648284715084 24.377711682797 60.2652371186698 24.3780676064888 60.2654432254534 24.3782464957713 60.2657837142238 24.3785420462809 60.2659492506196 24.3786859419428 60.2661131592176 24.3788288481189 60.2662364917091 24.37893507433 60.2663711106255 24.3790519174084 60.2691485270939 24.3817219575051 60.2696802725342 24.382218099605 60.2702122640593 24.3827145271955 60.2707297104618 24.3832014621133 60.2712855625186 24.3837518827873 60.2744796246795 24.3867806746169 60.2748707424512 24.387162991309 60.2749944860714 24.3875114251775 60.2757582824769 24.3893562769127 60.2783819219818 24.39569168409 60.2804816235117 24.4007669440148 60.2812827781593 24.4027353177329 60.28140339267 24.4030430744096 60.2815802375721 24.4034736298399 60.2822667107986 24.4051450331124 60.2823530462704 24.4053828666626 60.2824569719468 24.405630397851 60.2827878911609 24.4064185782531 60.2830189527347 24.4069859230055 60.2835033750647 24.4081754100184 60.2837573113849 24.4084565311864 60.2842172303607 24.40890012821 60.2870537934571 24.411403933143 60.2874503474598 24.4117741480085 60.2878769606218 24.4121794697794 60.2881886187817 24.412451534725 60.2887409233432 24.4129424282875 60.2887820264575 24.41297949607 60.2888310296943 24.4130236662857 60.2902362463606 24.4142845054164 60.2902671246637 24.4143159782644 60.2912656976056 24.4152029461699 60.2918380773609 24.4157150570726 60.2925111895574 24.4163145698889 60.2941406021201 24.4177774725236 60.2943575448491 24.4192882901508 60.2944644261632 24.4200542110725 60.2947071581914 24.4217939291878 60.2949046761478 24.423090787352 60.2969470027228 24.4373833359682 60.2977067973678 24.4426800091046 60.2974628517953 24.4440893491677 60.2974370092563 24.4442356079204 60.2974362696032 24.4442447881614 60.2974318440987 24.444270636938 60.2974084490621 24.4444073102634 60.2974074235969 24.444413309099 60.2974071597259 24.4444159361255 60.2970787528518 24.4463027664976 60.2968143131346 24.4478190982238 60.296636301124 24.4488675782089 60.2965594765379 24.4492834520483 60.2964834507581 24.4497152616014 60.29607557762 24.4520882550492 60.2958109007279 24.4536410504637 60.2955448734565 24.4551936894814 60.2951852626394 24.4572922322937 60.2943576333237 24.4621211790022 60.2937695662333 24.465551486027 60.2937057063272 24.4659240006289 60.2936936856837 24.4659941016895 60.2932441564968 24.4686158250977 60.2923898383759 24.4736171820089 60.2921742115177 24.4748792459988 60.292064271885 24.4755194025575 60.291805068885 24.4755964936227 60.2907466830368 24.4759107616728 60.2900538831503 24.476113593415 60.2891913136472 24.4763682673907 60.2887562052104 24.4764967263103 60.2881751819189 24.4766649487304 60.2874365773781 24.4768863326141 60.2864409461628 24.4771802605175 60.2864036501898 24.4771912773165 60.286367238486 24.4772020269033 60.2853045176545 24.4775157240875 60.2847158121327 24.4776938549968 60.2828807069988 24.4979162144422 60.28285490977 24.4981203967555 60.2824937596569 24.502140419946 60.2815721873107 24.5124323264249 60.281446458036 24.5138356662875 60.2814234405789 24.5140926930637 60.2813212210807 24.5152334576579 60.2812912654032 24.5155677495439 + + + + + + Kirkkonummi + + municipality + + + + + + + + + 60.4060978865056 25.3634407966525 60.4047504270118 25.3638907066886 60.4046828378927 25.3639169200426 60.4039741226758 25.3641388686935 60.4031806484212 25.3643937256915 60.40220908753 25.3646916335525 60.3989528513577 25.3657134042493 60.3989082715373 25.3657250961456 60.3988044043785 25.3657523573659 60.396749544564 25.3657170573274 60.3943254011254 25.3656502188779 60.3928223433726 25.3656039230703 60.3916834117942 25.3655758523182 60.3915655291899 25.3655741217983 60.3907522939086 25.3645206187461 60.3907423550918 25.3645062190228 60.3906519981263 25.364389006998 60.3906153360303 25.3643419596964 60.3894674323439 25.3628520529371 60.389443650496 25.362831508368 60.3894151882113 25.3628824027055 60.3893509607341 25.3629972052995 60.3878659481029 25.3656402692754 60.3878066917079 25.3657527250659 60.3875587411248 25.3657545002754 60.3874346662776 25.3657465473443 60.387594244719 25.3654314688797 60.3861707264484 25.3654005240674 60.3834234386809 25.3653300297794 60.381521335993 25.3652934145182 60.3810487772167 25.3652532771086 60.3810434705849 25.3659612986522 60.3808658098325 25.3662073191923 60.3805714027262 25.3659859989646 60.3805407177373 25.3652452876393 60.3757063662836 25.3651746447818 60.3756749633037 25.3651740961926 60.3755770539527 25.3651724181946 60.3755380607832 25.3651717420775 60.3744471851278 25.3663908775917 60.3736623658801 25.3673178124167 60.372078116967 25.3691945298603 60.3714588297675 25.3699280759491 60.3691557818291 25.372662959016 60.3682217486501 25.3737710381996 60.3670254931869 25.3730288477754 60.3661148490083 25.3741697674678 60.3665437860352 25.3757320425866 60.3662531117765 25.3761036881273 60.3652057872601 25.3773059759251 60.3644318639552 25.3782236063699 60.3631186233125 25.3798078533579 60.3609473422612 25.3823337176132 60.3607713052573 25.3825487206745 60.3594365286386 25.3841451171703 60.3591700239459 25.3844559828043 60.3589879473328 25.3846804887866 60.3588785922079 25.3848137607703 60.3578337253053 25.3860745576924 60.357617174427 25.3863372225642 60.3574503360944 25.3865396176195 60.3561653069507 25.3880252455774 60.3539444674433 25.3906730105824 60.3521119144332 25.3928404109518 60.3516486599138 25.3933660035501 60.351188014047 25.3938809587709 60.3507405733729 25.394434325644 60.3502811094709 25.3949716484813 60.3488887688101 25.396628430267 60.3457784040689 25.4003267037272 60.3424257984845 25.4043244150331 60.3416787451272 25.4052629210414 60.3416726110035 25.4052703774713 60.3411268494775 25.4059690033031 60.3409731434239 25.4061597723533 60.3408781978668 25.4062771740641 60.3401081081535 25.4072586745494 60.3400810920145 25.4072907017446 60.3391049018914 25.4085214728294 60.3389966180321 25.4086598745159 60.3380034124409 25.4098828759509 60.3367643348105 25.411465154853 60.3361761423307 25.4121936569397 60.3361526143413 25.4121516298818 60.3359614448589 25.4118101964435 60.334813207727 25.4125758057492 60.334811105104 25.4125772121757 60.3346351930185 25.4126945017661 60.3346213784615 25.4128966848304 60.3343908938928 25.4135530598869 60.3338172836414 25.4151515689005 60.3333247092318 25.4158245826377 60.3324149974307 25.4169421387926 60.3309152792485 25.4188296431237 60.3305917323974 25.4192257904451 60.329707233979 25.41851862484 60.3288469126287 25.4195236894521 60.3280409586449 25.4207598736119 60.3279546012082 25.4225610527058 60.3274946263793 25.4231356545422 60.3265429560466 25.4243239898992 60.3259946419066 25.4250093221475 60.3258076198083 25.4247119991848 60.3255067752997 25.4252156636291 60.3254932788899 25.4252461046236 60.3251176825672 25.425866924889 60.3251475610673 25.4260945023788 60.3250033944799 25.4262809640456 60.3248352173048 25.4264996013947 60.3247328905628 25.4266276348167 60.3246180411161 25.4267834342266 60.3243123877527 25.427174272049 60.3240425825514 25.4275300937753 60.3238917301348 25.4277262265686 60.3237408863939 25.4279223571142 60.3235900333781 25.4281184862754 60.3234391890381 25.4283146131891 60.3232883174721 25.428510739581 60.3231374902699 25.4287068439016 60.3229866362696 25.4289029838972 60.3228460856686 25.4290856975822 60.3225423323347 25.4294714392741 60.3224513413375 25.4295869764231 60.3219415437303 25.4302546564051 60.3214945846952 25.4308390646104 60.3210855249008 25.4313690001339 60.3209075802481 25.4316015430255 60.3196853858772 25.4331827741624 60.3194674363824 25.4334882637357 60.3189573723683 25.4341966811599 60.3168775765509 25.4368961017537 60.3168774880727 25.4368962146133 60.3160539909665 25.4379649501229 60.3159894566637 25.4380344763428 60.3141949899785 25.4403154554199 60.3134793067931 25.4412250907921 60.312593997409 25.4423603414482 60.3121148733612 25.4429746912564 60.3120404736009 25.443070084397 60.3119908825554 25.4431336670933 60.3117640640543 25.4434244864892 60.3110067498177 25.4443951756796 60.3107038096704 25.4447834537977 60.3104010275797 25.4451715180142 60.3102494812443 25.4453657448431 60.3100979698823 25.4455599138863 60.3099835135557 25.4457066148666 60.3098701756473 25.4458491345978 60.3097206887949 25.4460398542234 60.3092966659703 25.4465807946556 60.3091452657614 25.446775399532 60.3091007533815 25.4468326116776 60.3087981394327 25.4472209553152 60.3086466639126 25.4474153405643 60.3085853037809 25.4474940755369 60.3084347655756 25.4476964684398 60.3083882759763 25.4477589666856 60.3082952522314 25.4478840009524 60.3081440220609 25.4480787123419 60.3079459618032 25.4483337264051 60.3076436502748 25.4487229508991 60.3076017923188 25.4487768281629 60.3075457393572 25.4488656052465 60.3074960550464 25.4489306588377 60.3073457196712 25.4491275262861 60.3071949417598 25.4493249739707 60.3070446147557 25.4495218373579 60.3068939071985 25.4497192056355 60.3067434380912 25.4499162530864 60.30659291525 25.4501133374487 60.3064423217786 25.4503105500177 60.3062919312785 25.4505074796502 60.3061421507222 25.4507036003073 60.3061417882071 25.4507040880506 60.3059866647604 25.4509072107944 60.3044619546377 25.4528592728927 60.3038563688171 25.4536521966961 60.3037440103239 25.4537977824418 60.3030281005597 25.4547241375998 60.3020619866322 25.4559726749721 60.3002103386312 25.4583880994697 60.2984269815112 25.4607051105544 60.2984222658082 25.4607112312517 60.2944192124387 25.4659110673646 60.2938726677922 25.4671092592673 60.2932943737695 25.4683665009813 60.2931588507682 25.4686611357908 60.2927667243257 25.4695135763019 60.2916679371846 25.4719652095187 60.291531868349 25.4722645978294 60.2905917617558 25.4743236145673 60.2894446651387 25.4768357598785 60.2894404596229 25.4768449280589 60.2889248491366 25.4779743817506 60.2876763364979 25.4807484323777 60.2871503821855 25.4818329301443 60.2860638325303 25.4813385517704 60.285661993613 25.4811627269949 60.2844262548565 25.4805998370085 60.2836462491128 25.4824824109612 60.2835089857607 25.4828136770423 60.2829872322767 25.4840528243555 60.2824194402338 25.4854012378434 60.2817168094138 25.4871113764754 60.2813595146595 25.4879641439466 60.2802864864767 25.4905249721658 60.2802749892045 25.4905524300949 60.2802633430358 25.49058022039 60.2800301446909 25.4911419664835 60.2796768923485 25.4919796658861 60.2801808990949 25.493289802799 60.2802138869982 25.4933755436185 60.2802345594998 25.4934261700866 60.280865105362 25.4950684894193 60.2793036736807 25.4982700461102 60.2783943526608 25.5001571471591 60.2778398640238 25.5013043679809 60.2776670603471 25.5016663607963 60.27609920596 25.5012481851705 60.276006604167 25.5012414277057 60.2758606995237 25.502385508311 60.2757894768172 25.5036875319108 60.2758302508398 25.5050187583421 60.2758309801376 25.5052902104925 60.275831373996 25.5054425165658 60.2758082698603 25.5054890291124 60.2752545304661 25.5066038472198 60.274860513708 25.5074051036054 60.274446596097 25.5082467364009 60.2743493828469 25.5084706158445 60.2739475181899 25.5092737391919 60.2737011297652 25.5097737507102 60.2736946146712 25.5097869749347 60.2736886526851 25.509799071058 60.273401738924 25.5103948288511 60.2733027709277 25.5106042917232 60.2732423019449 25.5107457014951 60.2723071424545 25.5126376474633 60.2722940572216 25.5126640418749 60.2722932667988 25.5126656326504 60.2722765805864 25.5126992598438 60.2681684494467 25.5209603065413 60.2652581519862 25.5269179793453 60.2455438260377 25.4968674830753 60.2454571690059 25.4967354757629 60.2402967461948 25.4888786797027 60.233570551039 25.4916879928167 60.2228365133895 25.474105921209 60.2201970921586 25.4698547460182 60.2195912390798 25.4688790559871 60.2193742579431 25.4685296302706 60.2015149379071 25.4397899952479 60.1972308188654 25.4329111718637 60.196986627599 25.432513275156 60.1969209424404 25.4324076508042 60.1966272039923 25.4319354061498 60.1965104990803 25.4317477789145 60.1843017459274 25.4121296009281 60.1842444233883 25.4120375199877 60.1838067751266 25.4113346200468 60.1836176185477 25.4110308349421 60.1836175178723 25.4110306775208 60.1826643984843 25.4095000055926 60.1825489902753 25.4093146909816 60.1824638553578 25.4091779676422 60.1824078956188 25.4090881209013 60.1824058717935 25.4090848650192 60.1824052948708 25.4090839372796 60.1791464010173 25.4038513053904 60.1723986711475 25.3930213011887 60.1693446836448 25.3881216190048 60.1569325454051 25.3821536952585 60.1557595766272 25.3815899481507 60.1346034764267 25.3712901077015 60.103001331132 25.3559302899233 60.0450890082546 25.3465985330295 60.0355798676368 25.3450695396135 59.9554659855109 25.3322243407704 59.9371035439557 25.3292893163145 59.9370983061496 25.3292884701276 59.9370983061496 25.3292884701276 59.9434346230412 25.1693502008328 59.9424508464296 25.158557480569 59.9424508464296 25.158557480569 59.9570889765811 25.1603229860858 60.0270359473 25.168750073336 60.0467557323195 25.1715112076773 60.0934959671883 25.1767870798954 60.1363481528645 25.1908325440215 60.1466575735929 25.194217267466 60.1545041876759 25.1980550051939 60.1784435207377 25.2098785023654 60.1997366682124 25.2204044921354 60.20506944302 25.2149260692673 60.2050695492591 25.2149259552273 60.2056903977006 25.2142880043839 60.2067057946581 25.2132446387531 60.2073231442806 25.2126102064784 60.2079502972201 25.2119656880412 60.2089072799738 25.2109821514347 60.2090863431071 25.2107981209007 60.2182045967509 25.2014235740014 60.2228092911023 25.202657794069 60.2245599860679 25.2031271550101 60.2265548554633 25.2036877827873 60.2278353372247 25.2039868052111 60.229894538472 25.2043892047833 60.2315713365684 25.2083257047285 60.2393646941219 25.2266305618024 60.24283664318 25.2231010193163 60.2438300717013 25.2248190572992 60.2444508606539 25.2258927488171 60.2451300753616 25.2270675656297 60.2453207887092 25.2292902327016 60.2456443420131 25.2330619226099 60.2459895009427 25.2370869397886 60.2461107573617 25.2384927356944 60.2462915233695 25.2406014809324 60.2463176360034 25.2409148627913 60.247267252939 25.2408629328276 60.249229793289 25.2407556300029 60.2505498616407 25.240823688983 60.2531527310612 25.2392897062676 60.2543387800803 25.2385904180588 60.2562686880993 25.2374524866191 60.2565501704443 25.2335306941164 60.2565660021942 25.2335103043718 60.2576103905707 25.2321667874875 60.2582248373549 25.2313763269325 60.2590105314757 25.2303655770385 60.2598501784791 25.2292869576993 60.2599975918267 25.2290982654939 60.2599232556463 25.2288565931424 60.2605627375305 25.2280544474733 60.2608430599786 25.2277029144001 60.2611179054697 25.2273582870089 60.2612281339775 25.2276363798331 60.2613846103598 25.228197457647 60.2613919651168 25.2285736259059 60.2614119687488 25.2297844860778 60.2614135890857 25.2299410404507 60.2614311771352 25.2302343229945 60.2614186507751 25.2306111495701 60.2616908475055 25.2306554899732 60.2621558117435 25.230699655792 60.2625150274748 25.2315766193329 60.2625493761476 25.2325603456001 60.2653053122237 25.2318868097672 60.2656952348592 25.232077715798 60.2672333437415 25.2318782149045 60.2713983853121 25.234473582038 60.2719628565291 25.234846031385 60.2719219301625 25.2376095643309 60.271889752605 25.2396504378009 60.2718793045893 25.2403061345443 60.2718695350135 25.2405997550662 60.2718355503307 25.2416134012312 60.2718362601912 25.2432772622434 60.2722973886993 25.2429858353796 60.2727174985134 25.245672093885 60.2735184860472 25.2509034792665 60.2741983084773 25.251334141919 60.274869202199 25.251744340722 60.2748938272115 25.2517613263028 60.2754671568725 25.2521133847765 60.2757499309179 25.2522920221752 60.2777178742768 25.2466943651505 60.2776033606218 25.2461239490985 60.2783403175698 25.2441284797275 60.2789609898511 25.2447843371194 60.2785113611511 25.24708458662 60.2810859030071 25.2471171603198 60.2813357428687 25.2471203369891 60.28182571495 25.2471138258585 60.282984231213 25.2473269574239 60.2837262804214 25.2459718502456 60.2848826341452 25.2438657098116 60.2853196235942 25.2447768921693 60.2858129830686 25.2458290474962 60.2896307523085 25.2538903658503 60.2896434617016 25.2512925904757 60.2901153439167 25.2515684584962 60.2902736939855 25.251287818128 60.2921679047717 25.247933754769 60.2933092538819 25.2459136649492 60.2935113801358 25.2455558984127 60.2944964604085 25.2507027560614 60.2948991218347 25.2528068100051 60.2952254483971 25.2544966690155 60.2974583879769 25.2528935895171 60.2972267191608 25.2511511637246 60.2970042419735 25.2494721455072 60.2966423923631 25.2467296144043 60.2963683278425 25.2447074317845 60.2961878047764 25.2434506006062 60.2956887215723 25.2404195530625 60.2953316484495 25.238178700649 60.2955137020749 25.2375238774103 60.2963280496445 25.2346160133687 60.2968220850811 25.2327952651483 60.2969627765246 25.2328367241688 60.2972856023718 25.2316158683355 60.2978394088975 25.2295212941884 60.2966162744336 25.2270470804144 60.2960488363154 25.2290728011543 60.2957728341543 25.228484936796 60.2941820120029 25.2252044739434 60.2939009540446 25.2255026218619 60.2937010914509 25.2247283338334 60.2920371539754 25.2225528798326 60.2914304925677 25.2206496244031 60.2908116267804 25.2172314121351 60.2902327103104 25.2140450503086 60.2900350818733 25.2128770904698 60.2890343202498 25.2072683754969 60.2886934179601 25.2053948889653 60.2880029435538 25.2015435100998 60.2877716483653 25.2020036027205 60.2863895536598 25.2048516412383 60.2852788387508 25.2020698685483 60.2842058550932 25.1993774436881 60.2831523109747 25.1967324884212 60.2828780752826 25.196676505948 60.2825654093353 25.196484272884 60.2821717989145 25.1963134131559 60.281961369489 25.19627958672 60.2821809456345 25.1959281789597 60.282438808015 25.1955153306939 60.2844811281826 25.192203042713 60.2856668879311 25.1902736812958 60.285681338778 25.190249963766 60.285681338778 25.190249963766 60.2866976697361 25.1907152029411 60.2875919254286 25.1910945933393 60.288184604849 25.1913389746364 60.2922467506372 25.1930682902581 60.2931396944126 25.1920222643474 60.2946008034675 25.1902673040785 60.29544856681 25.1892369235106 60.2958291628699 25.1887587596845 60.2960445705813 25.1884883188263 60.2964610330062 25.1879955394307 60.2970131415457 25.1873214838335 60.2975831889092 25.1866452893079 60.2986556424279 25.1853919466952 60.3004700284914 25.1831749691399 60.3008460450961 25.1827154637622 60.3011737307254 25.1823116224229 60.3022462846492 25.1809897243148 60.3034636167903 25.1794892641226 60.3057549630395 25.1766662069069 60.3074455756947 25.1745904284697 60.3085364370686 25.1732401497779 60.3098977190894 25.1715877415882 60.3104065683311 25.170933356977 60.3104495833611 25.1708801550885 60.3110409571507 25.1701468362161 60.3114811740387 25.1696130499594 60.3118745815263 25.1682784295876 60.3123521460313 25.166448896342 60.3125890723262 25.1655574770868 60.3128418830177 25.1646259214977 60.3132631209474 25.163021765252 60.3137558455981 25.1611525684906 60.313983245787 25.1602898323993 60.3146452952244 25.1578396157387 60.3147444817515 25.157378191797 60.315558947105 25.1543564220279 60.3172144616991 25.1481088275591 60.3176906660423 25.1462090360155 60.319368572819 25.1398806159088 60.3200809940501 25.1370841045383 60.3202080977218 25.1366427131735 60.3204802949588 25.1356469288486 60.321484071166 25.1333767533664 60.3215046057075 25.1333303080934 60.3215325274542 25.1332669254155 60.3215379413465 25.1332546461357 60.3215805643311 25.1331579359965 60.3215836278996 25.1331509701161 60.3216143958884 25.1330811407014 60.3228177179126 25.130216275664 60.3231949201363 25.1293403394234 60.3237450631472 25.1280627897628 60.3251617761271 25.1247313512709 60.3254208446637 25.1241141593723 60.3256812220594 25.123491267831 60.3258460542767 25.1230948508402 60.3260211432027 25.1226896180275 60.3261982858487 25.1222798073277 60.3265932404071 25.12136080895 60.3267453124739 25.1210069242428 60.3269978020387 25.120428701912 60.3273100297368 25.1197016819562 60.3279788950028 25.1181283601803 60.3280360075509 25.1179938986093 60.3282307298335 25.1175421792289 60.3284213461286 25.1170872856582 60.3284763907639 25.1169559100775 60.3286546260999 25.1165318815244 60.3286839755046 25.1164620482996 60.3287438872249 25.1163224202459 60.3294523780025 25.1146847056635 60.3298705471253 25.1137495272794 60.3299006668132 25.1136802784099 60.329930274208 25.1136122726127 60.3302015785525 25.1130045364702 60.330468914968 25.1124002798185 60.3306797520934 25.1119291573173 60.3308877849196 25.1114605274604 60.3309435584849 25.1113359554646 60.3310990652587 25.1109885881295 60.3312053422073 25.1107529144516 60.3313099733328 25.1105209029706 60.3315185954716 25.110042891619 60.3317118885849 25.1096125154559 60.3319167779362 25.1091501241405 60.3321386430529 25.1086576152788 60.3323725820181 25.1081269381976 60.3323799747277 25.1081106049735 60.3324029183367 25.1080598580987 60.3324337471557 25.1079926768987 60.3326761630823 25.1074444162947 60.3327717461106 25.1072295557096 60.3329160382564 25.1069052075064 60.3331582562234 25.1063660541983 60.3333656469006 25.1058927699753 60.3335532718002 25.1054726909542 60.3336192274446 25.1053249897037 60.3336454961984 25.1052650061899 60.3336571777124 25.1052383142351 60.3338039053593 25.1049030640772 60.333851027026 25.1047969786769 60.3338634970007 25.1047689000572 60.3338669003746 25.1047625612909 60.3341344867171 25.1042640427533 60.3345446677671 25.1034998050999 60.3351615931732 25.1023503177399 60.3352483712207 25.102188639043 60.335276123106 25.1033310044333 60.3352913957786 25.1039616571123 60.33530722605 25.1046158843256 60.335324859681 25.1053445769335 60.3353411693318 25.1060184343539 60.3353586476636 25.1067411766853 60.3353748067756 25.1074093733244 60.3353864877296 25.1078924929529 60.3354022254043 25.1085434675177 60.3354086424971 25.1088089630392 60.3354292761471 25.1096624749352 60.3354472076451 25.110404597504 60.3354635916075 25.1110829658118 60.3354811035491 25.1118081201057 60.3354935136747 25.1124405206697 60.335495296975 25.1125300788263 60.3355001830815 25.1127262395429 60.3355088637146 25.1131094206994 60.335520555991 25.1135694798981 60.3355253714931 25.1137955924008 60.3355340971233 25.1141327722538 60.3355636530769 25.115275973677 60.3356102895298 25.1174540536688 60.3360973642418 25.1173876008286 60.3363875084601 25.1173479288562 60.3366519335477 25.1173116585279 60.3375358850667 25.1188324717998 60.3379000825855 25.1194596497191 60.3379406755983 25.1195363274263 60.3379581746419 25.1195689660655 60.3379851254185 25.1196202662409 60.3380139340971 25.1196689411209 60.3380348759555 25.1197049692125 60.3380876853945 25.1197957653834 60.3381670604505 25.1199322317605 60.3382879142823 25.1201400908263 60.3387520358439 25.1201506566886 60.3391416153647 25.1201613987215 60.3394361756285 25.1201704148765 60.3398180536585 25.1201814735165 60.3402064732306 25.1201387574711 60.3406503293605 25.1200899873651 60.340973152988 25.1200633834711 60.3409958697006 25.1200610615055 60.3413426436337 25.1200285486498 60.3413709406276 25.1200251625676 60.3413961397978 25.120022462119 60.3416903611438 25.1199935344744 60.3417743314899 25.1199900429467 60.3417844047752 25.1203055386884 60.3417995300962 25.120695128526 60.3418241113451 25.1214095463615 60.341826213885 25.1215113350982 60.3418503449852 25.1221267694165 60.3418551076954 25.1222331710427 60.3418651152319 25.1224744139869 60.3418752363611 25.1228497060818 60.3419020298404 25.1235734223447 60.3419054298302 25.1236915359518 60.341905685244 25.123700726508 60.3419088348808 25.1238138351301 60.3417567595994 25.1239083513429 60.3414465864145 25.1241040327698 60.3412884700417 25.1242051627034 60.3411253921412 25.1243085697202 60.3408970608578 25.1244447683123 60.340665816972 25.124559134691 60.3405116575327 25.1246198975408 60.3403563048309 25.1246667399215 60.3401560868415 25.1246935620807 60.3399554813896 25.1246992788649 60.3399609405813 25.1248545752479 60.3399621057793 25.1248907110102 60.3399643655689 25.1249598881695 60.3399690956032 25.12510553257 60.3399894776427 25.1257269472408 60.3399907915029 25.1257717356255 60.3399932548425 25.1258572993156 60.3400157766699 25.1266945941557 60.34001889356 25.1268100175956 60.3400236901023 25.1269445876236 60.3399377856077 25.1269561444255 60.3398405409259 25.1269666480896 60.339597382762 25.1269934350734 60.3391950154328 25.1270343496434 60.3391257994877 25.1270415428015 60.3389819554576 25.1270568190816 60.338479415718 25.1271025139672 60.3377035874789 25.1271776784738 60.337655595338 25.1271862271789 60.3376120356813 25.1271900103785 60.3373805214939 25.1272100928571 60.3373450032593 25.1271254704136 60.3373075333654 25.1270361950042 60.3372292996415 25.1268482492508 60.3370899827648 25.1265135915516 60.3369535200802 25.1261858751422 60.3368009730271 25.1258194243942 60.3367008274525 25.1255788957629 60.3366491346464 25.1254536248281 60.3364379093052 25.1249412054017 60.3364305794092 25.1249239252521 60.3364068774997 25.1248926920824 60.336179678915 25.1243132568229 60.3360868086192 25.1240990606855 60.3359205292653 25.1236993029339 60.3356390485374 25.1230375803661 60.3356311903186 25.1230452423412 60.3347853938892 25.1238779463937 60.3347877325897 25.1239475790494 60.334798055393 25.1242769255445 60.3347972523963 25.1243256871167 60.3348164558061 25.1249816553245 60.3348198173312 25.12510666617 60.3348274659007 25.1254077054933 60.3348459811069 25.125969344854 60.3348630859709 25.1264763172438 60.3348833612283 25.1272958554196 60.3349000660948 25.1279233997707 60.3349169126645 25.1285561178873 60.3349301828437 25.1290395610093 60.3349435137093 25.1294948839697 60.3349580057449 25.1299377308925 60.3349716039299 25.1304090905387 60.3349835512399 25.1308180787442 60.3350015853694 25.1313266686817 60.3350348446683 25.1323693557802 60.3350361092506 25.1323909691551 60.3350405217208 25.1326322302898 60.335040976184 25.1326569154557 60.3350415501722 25.1326683686232 60.3350726495827 25.1336948581853 60.335091630293 25.1343401776247 60.3351108379359 25.1349980577276 60.3351306568379 25.1356510845605 60.3351540320863 25.1363722454677 60.3351764544975 25.1372186300012 60.3352038778238 25.1380883728677 60.3352195949602 25.1386130801219 60.3352214337396 25.1386744998199 60.3352233209699 25.138734250024 60.3352315370181 25.1390575101028 60.3352457379208 25.1395697676571 60.3352559870668 25.1399499076526 60.3352988755138 25.1414209032274 60.3353463276203 25.1432204804187 60.335346836997 25.143236376127 60.3357293950465 25.1432501290966 60.3357616910195 25.1432520260444 60.3357778298422 25.1432532830296 60.3358100980079 25.1432570476176 60.3358423474669 25.1432620452354 60.3358745423226 25.1432682779264 60.3359066646266 25.143275746714 60.3359387048992 25.1432844159062 60.3359546709378 25.1432893786231 60.3359865575118 25.143299904522 60.3360241331495 25.1433139298982 60.3360428998596 25.1433213604924 60.3360802598626 25.1433379526925 60.3361174549162 25.1433562392028 60.3361544306694 25.1433761868825 60.3361911784004 25.1433978143497 60.336227652985 25.1434211060561 60.3362457535779 25.1434335749732 60.3362817858946 25.1434592833696 60.336305231872 25.1434770106313 60.3363285438666 25.143495433989 60.3363448019123 25.1435997900916 60.3363707360267 25.1436426317123 60.3363836126419 25.1436643294464 60.3364089931181 25.1437086882448 60.3364339746715 25.1437540662297 60.3364585475688 25.1438004096027 60.3364827025821 25.1438477007708 60.3365064215097 25.1438959226509 60.3365297040978 25.1439450571401 60.3365525134383 25.1439950338649 60.3365748590096 25.1440458885215 60.3365967221046 25.1440975678196 60.3366180932428 25.1441500360621 60.3366389542226 25.1442032761644 60.3366593130064 25.1442572152032 60.3366791344548 25.1443119095256 60.336688780622 25.1443396069102 60.3367078162273 25.1443952699526 60.336834457687 25.1447445779674 60.3370100018826 25.1452845369793 60.3371939797943 25.1457783119045 60.3375128345831 25.1468609379563 60.337620658269 25.1471983221724 60.3376207315754 25.1471984267236 60.3376271188734 25.1472191720241 60.3377181431761 25.1475485606849 60.3378825325814 25.1481435174713 60.3379056949152 25.1482273419844 60.3379291138677 25.1483121848074 60.3380324459998 25.1486865400142 60.3380331452723 25.1486883846896 60.3380474117054 25.1487435254911 60.3380626157616 25.1487976348295 60.3380733374771 25.1488323398539 60.3380787956605 25.1488495872098 60.338090109303 25.1488835883555 60.338101801767 25.1489170607503 60.3381138730529 25.1489500043948 60.338126304709 25.1489823840985 60.3381390964834 25.1490141817575 60.3381456629528 25.1490297538622 60.3381589718405 25.149060634466 60.3381814123497 25.1491107105275 60.3381928646154 25.149135318719 60.338216670284 25.1491828172187 60.3382290139575 25.149205653723 60.3382540738247 25.1492503454079 60.3382893843664 25.1493146222844 60.3383291983673 25.1493869243271 60.3385784041874 25.1498125821766 60.3386141284054 25.1498743364955 60.3387558891797 25.1501242821735 60.3388630403994 25.1503132087217 60.3390125990829 25.1505052620978 60.3392834953065 25.1508531027382 60.3394444748739 25.1510598433389 60.3395262181009 25.151189425158 60.3395912669376 25.1512945855324 60.3396068474926 25.1513196504544 60.3396485278442 25.151384803842 60.3397067313193 25.1514775782916 60.3397472971802 25.1515342791158 60.3397768169937 25.1515755333026 60.3398121441679 25.1516249387977 60.3399644701904 25.1517971876168 60.3400944308402 25.1519001463103 60.3401153031613 25.1519182446239 60.3401257906496 25.1519271096918 60.3401469335323 25.1519439968542 60.3401682445726 25.1519600591524 60.340189705571 25.1519752794953 60.3402113075536 25.151989658389 60.3402330410433 25.1520031601291 60.3402439602067 25.1520094822335 60.3402658645384 25.1520217059736 60.3403022392696 25.1520359922165 60.3403205085761 25.1520425690102 60.3403572572839 25.1520533914374 60.3403941886614 25.1520618480157 60.3404312393867 25.1520679060801 60.3404683561185 25.1520716048788 60.3405054932318 25.1520728926257 60.3405240497953 25.1520723503439 60.3405610837493 25.1520700924804 60.3409194507873 25.152019035948 60.3412845202047 25.151994652282 60.3415968545769 25.151907112443 60.3416405934271 25.1518832380802 60.3418778010341 25.1517537576881 60.3420591408124 25.1517163354331 60.3424427939578 25.1518297183167 60.3427226559438 25.1520313165924 60.3427966226779 25.1520815673608 60.3432240873127 25.152364429837 60.3432574932243 25.1523861159398 60.3432742476336 25.1523967839466 60.3433078807476 25.1524173699951 60.343341656356 25.1524372231791 60.3433755742078 25.1524563253896 60.3434096073808 25.1524746781471 60.3434437733205 25.1524922442204 60.3434780456079 25.1525090613439 60.34351244194 25.1525251103933 60.3435469264205 25.1525403933964 60.3435815257206 25.1525548907214 60.3436161947182 25.1525685867963 60.3436509700649 25.15258153391 60.3436858061354 25.1525936802765 60.3437207208784 25.1526050248781 60.3437556965972 25.1526155868347 60.3437907332921 25.1526253661437 60.3438258122603 25.152634309496 60.3438609434823 25.1526424888105 60.343896117481 25.1526498683778 60.3439313073341 25.1526564497177 60.3439665394611 25.1526621950907 60.3440017787202 25.152667160846 60.344037033834 25.1526713283662 60.3440722868544 25.1526746986639 60.3441075377814 25.1526772717364 60.3441427863634 25.1526790294738 60.3441780151554 25.1526800091032 60.3442132236542 25.1526801744074 60.3442484031374 25.1526795439986 60.3442835448822 25.1526781364892 60.3443011054822 25.152677016515 60.3443361765294 25.1526743988425 60.3443788294534 25.1526712617667 60.3444001684108 25.1526699462232 60.3444428516886 25.1526683477685 60.3444855670001 25.1526677623178 60.3445282607521 25.1526682110281 60.3445709598671 25.1526696923807 60.3446136371711 25.1526721897945 60.3446349647919 25.1526739374793 60.3446776006567 25.152677977608 60.3452289277132 25.1527316268483 60.3452331568697 25.1527322031702 60.3452524563363 25.152734065621 60.3452621370613 25.1527346417108 60.3452814978467 25.1527344528829 60.3453008756642 25.152732903922 60.345320216166 25.1527299616551 60.3453394839584 25.1527256643257 60.3453586613447 25.1527200310547 60.3453681777866 25.1527165389168 60.3453871205963 25.1527088892037 60.345387325995 25.1527088050981 60.3458300698652 25.1524947287504 60.3458302750122 25.1524946265339 60.346129829995 25.1524071308403 60.3461286530893 25.1523398715211 60.3461209620696 25.1519272537001 60.346106136597 25.1511332849106 60.3460654995457 25.1489576360909 60.3460603362938 25.1486854177031 60.3460446484321 25.1477490194005 60.3460398515771 25.1474794264149 60.3460253038168 25.1466273797454 60.3460095076348 25.1457312757594 60.3459982956757 25.1451140375965 60.3459815450566 25.1442088369683 60.3459796803147 25.1439825363109 60.3459628183958 25.1430474041545 60.3459491399173 25.1422641227133 60.3459460004137 25.1420946731003 60.3471997804775 25.1419439357415 60.3472034736406 25.1403941592307 60.3472022542006 25.1394721655823 60.3472004591458 25.1384235221078 60.3471985827512 25.1382067102743 60.3471963834429 25.1376794995182 60.3471941580187 25.1371467263621 60.3471875795209 25.1364508554623 60.3471904743302 25.1352477319932 60.347192416546 25.1349468633216 60.3473328203923 25.1348931020141 60.3473958562015 25.1348691677085 60.347420263284 25.1348599264107 60.3475236783341 25.1348186796654 60.3475238657728 25.1348185964667 60.3478841533052 25.1346749420583 60.3482867389379 25.134514405407 60.3484933759985 25.1344354523907 60.3488008555937 25.1349310049964 60.3492296717541 25.135622126431 60.3500092362961 25.1368786488205 60.3500912088739 25.1370133715154 60.3503417370741 25.1374229538102 60.3540681019575 25.1434109402288 60.3543880861282 25.1439188736791 60.3546768962933 25.1443825084831 60.3548137260745 25.1446008736644 60.3549584825203 25.1448318784322 60.3553173157737 25.1454063189381 60.3557036421155 25.1460229537161 60.3557954844092 25.1461692895528 60.3563151289088 25.1470022785874 60.3564390334579 25.1472060441005 60.3561500420906 25.1479364455211 60.3567873577562 25.1489574100343 60.356796900055 25.1489267391881 60.3570058430453 25.1482560021698 60.3567674552652 25.1478688981918 60.3568015985442 25.1477848202533 60.3568021954138 25.1477838255719 60.3568190420553 25.1478107698455 60.3572699874865 25.1485327506964 60.3575147265629 25.1489278627184 60.3577691109388 25.1493327130684 60.3579639745346 25.1496457823187 60.3581540562471 25.1499508773633 60.3583477587131 25.1502516009722 60.3585729422443 25.1506093753024 60.3588261220557 25.1510125974294 60.3592788742125 25.1517334212463 60.3592788742125 25.1517334212463 60.3592817419856 25.1519236785034 60.3592825145839 25.1525483046217 60.3592877314954 25.1532079783736 60.3593286153551 25.1562084341014 60.3610733184039 25.1547463628252 60.3613516541371 25.1545114047395 60.3636381319066 25.1526440571435 60.3641096995508 25.1522549659938 60.3650320972976 25.1514834727571 60.3724359268282 25.1453882815795 60.3743629688873 25.1459348217269 60.3748927449991 25.1461053464091 60.3760059529272 25.1464124538198 60.377269047291 25.1467970316846 60.3809127988364 25.1478255313261 60.3813178214125 25.1479810691782 60.3835665881084 25.1486044544906 60.383781807898 25.1486648474065 60.3847930114683 25.1489431274443 60.3851042147461 25.1490327505505 60.385116640489 25.1490363273448 60.385889689591 25.1492590137086 60.38689378694 25.1495482564938 60.3870181803352 25.1495841295081 60.3874707012049 25.1497293278362 60.3884586747306 25.1499990984753 60.3889909531264 25.1501524680061 60.3893103790235 25.1502974662663 60.3895765196358 25.1503797620345 60.3920254106544 25.1510268453253 60.3934742144552 25.1514443701703 60.3934906168214 25.1514491025734 60.3936608071786 25.1514981280332 60.3939228298794 25.1514217077676 60.3943138559451 25.1513076789012 60.3945490616929 25.1512390743 60.3949047277365 25.151135304644 60.3968761119504 25.1505599995759 60.3978666998321 25.1502708714604 60.3980856516984 25.1502069675601 60.3994018116868 25.1498233683589 60.3994351951569 25.1498137221596 60.399697653507 25.1497370494979 60.4006534061484 25.1494346536174 60.4012758983044 25.1492629372237 60.4018859988154 25.149098507653 60.4039379774105 25.1484945856872 60.4050974293525 25.1481612900962 60.4051819597595 25.1481348263672 60.4057499160409 25.1479707891949 60.4058004990859 25.147956040061 60.405993322397 25.1478997804461 60.4060189101444 25.1478914266623 60.4060747795841 25.1478731994624 60.4064393824759 25.1477690092727 60.4065328369874 25.147742326542 60.4066998050227 25.1476932716482 60.4067067017796 25.1476912817947 60.4073787454677 25.1474940934787 60.4075111176247 25.1484956354365 60.407650627881 25.1495512324924 60.4078156819646 25.1507666409016 60.4078515466257 25.1510307513272 60.4079139904846 25.1514905763807 60.4081198118705 25.1530259823742 60.408135628305 25.1531458311089 60.4084043203257 25.1532122169439 60.4086490402166 25.1532726633579 60.4089090780878 25.1533367273124 60.4090960095588 25.1533826383157 60.4092320240892 25.1534160198537 60.4093006310176 25.1534328855491 60.4099362459733 25.1535874097836 60.4101653443938 25.1536430997636 60.4101981181451 25.1536516470004 60.4102778167708 25.1536724064626 60.4106450666514 25.1537633945474 60.4109977802113 25.1538507958165 60.4110936861514 25.153874541899 60.4116719167194 25.1540178071102 60.4117077394331 25.1540266726097 60.4129192816991 25.1543268770133 60.4143520050788 25.154681893292 60.4145446641915 25.1547296375743 60.4146448981268 25.1556403175379 60.4146559621178 25.1557407923278 60.415057497177 25.1575336698809 60.415801870899 25.1608271459462 60.4159064795929 25.1612894238871 60.4160793666716 25.162053437834 60.4163526036478 25.1632550361048 60.4164280016416 25.1635893012203 60.4177901951931 25.1605733194835 60.4181398646346 25.1602456384969 60.4186042978632 25.1598103706189 60.4190725953718 25.1593714752046 60.4199173311467 25.1585790153304 60.4205317215669 25.1580038547124 60.4210264805351 25.158055881602 60.4221231848262 25.1582799234549 60.4225035338871 25.1584079640618 60.4230795500964 25.1585734615535 60.4231814366938 25.1580522333591 60.4237644550983 25.157632317365 60.424060436161 25.1573252754715 60.4243804249624 25.1562110144942 60.4243293612417 25.1555786699811 60.42436627615 25.1555302185263 60.4243886603234 25.1554999752669 60.4244591010451 25.1554047898645 60.4248321367323 25.1555084227139 60.4255358435779 25.1565565697295 60.4258134452744 25.1566751237494 60.4261465545544 25.1568173882679 60.4262665179564 25.1567605092113 60.4268235442434 25.1564050426774 60.4272582238837 25.1556430297413 60.4278261076519 25.1546833345334 60.428351260651 25.1542757704952 60.428398191681 25.1541957481003 60.4290660596898 25.1530591156056 60.4291146682634 25.1529764144829 60.4296197203428 25.1531773610189 60.4300031790311 25.1528297004889 60.4298010161232 25.1542968591504 60.4326503086266 25.1554003210466 60.4353006350158 25.1563384977777 60.4359028353501 25.1565516025796 60.4359290636268 25.1558444349191 60.4359410860945 25.155526276558 60.4361171512505 25.1505652601666 60.4361256847508 25.1504243173939 60.4361383180237 25.1502157747988 60.436393906272 25.1504904514215 60.4367366357138 25.150717782396 60.4367898479884 25.1509720727953 60.4372401031492 25.1506153868074 60.4377886807179 25.1497359309983 60.4381788455415 25.149594960673 60.4384731620408 25.149967368845 60.4385741451362 25.1502468351802 60.4386216355025 25.1503767710189 60.4392131958984 25.1520445733481 60.4397166887858 25.1520255563184 60.4405529680765 25.1519244600457 60.4406190670592 25.1519159255447 60.4405532209175 25.1521058896612 60.4405450109664 25.1521381808689 60.4405359069498 25.152169468669 60.4405259527311 25.1521996778675 60.4405228302217 25.1522083067015 60.4404895487026 25.1522939665433 60.4404792466445 25.1523237046802 60.4404702520343 25.1523551133771 60.4404632427046 25.1523884994752 60.4404593843643 25.1524172536993 60.4404566215908 25.1524531249262 60.4404546522959 25.15248922372 60.4404536830944 25.1525216670262 60.4404516058412 25.1525577537665 60.4404469623397 25.1525927139433 60.4404367571658 25.1526223192165 60.4404321543336 25.1526304140762 60.4404184965398 25.1526539085507 60.4404148713846 25.15266385629 60.4404063057723 25.1526957675518 60.4404015642179 25.1527139393341 60.4403927250938 25.152745557119 60.4403838675106 25.152777139584 60.4403756937946 25.1528094647404 60.4403690027195 25.1528431415495 60.4403681780738 25.1528484409945 60.4403641689685 25.1528838194024 60.4403624154357 25.1529199421649 60.4403627299395 25.1529562383295 60.4403645956761 25.1529923555611 60.4403674009034 25.1530282195392 60.4403709751159 25.1530638399455 60.4403752093673 25.1530991320905 60.4403785685491 25.1531244230336 60.4403836138807 25.1531592693021 60.4403890869347 25.1531938732012 60.4404013580604 25.1532621334184 60.4404081376813 25.1532957544356 60.4404153435154 25.1533290241226 60.4404215451529 25.1533559349661 60.4404294600834 25.1533885283028 60.4404377561062 25.1534207546976 60.4404463968224 25.1534525798666 60.4404741311656 25.1535459715308 60.4404816028665 25.153569266215 60.4405125388277 25.153658441489 60.4405346702869 25.1537156373071 60.4405462277315 25.1537434258061 60.4405581271047 25.1537706133134 60.440567313638 25.1537906301281 60.4405798430265 25.1538166187027 60.4405927743947 25.1538418029503 60.4406061416265 25.1538660355458 60.4406200222173 25.1538890758127 60.4406344572638 25.1539106487889 60.4406494190901 25.1539307015178 60.440664211835 25.1539482738356 60.4406801511536 25.1539649814004 60.4406965062952 25.1539799387294 60.4407132149454 25.1539931857066 60.440730207074 25.1540048535309 60.4407474467852 25.1540149442366 60.4407648892095 25.1540234603671 60.4407696686582 25.1540255156556 60.4407873100219 25.1540321847936 60.4408050668751 25.1540374660539 60.4408229040767 25.1540414159544 60.4408408036787 25.1540440355113 60.4408587402687 25.1540454352168 60.4408946350901 25.1540459069433 60.4409305136444 25.1540439077255 60.4409484336326 25.1540421640133 60.4409533476107 25.1540416125854 60.4410427952517 25.1540270864518 60.441060642695 25.1540233475266 60.4414874029633 25.1539052564509 60.4415052056995 25.1539008837861 60.4415221878597 25.1538969211931 60.4415757353729 25.1538854310779 60.4415935948035 25.1538819094383 60.4418622194326 25.1538470006606 60.4424185517373 25.1538431871799 60.4424306672201 25.1538431903914 60.4424844964395 25.153841662678 60.4425024141557 25.1538397552966 60.4425381424858 25.1538327475591 60.442544825932 25.1538309141933 60.4425625369927 25.1538251106007 60.4425801299647 25.1538179141185 60.4425975594745 25.1538092909662 60.4426147983482 25.1537992245074 60.4426318281342 25.1537876794341 60.4426485383765 25.1537744620712 60.442664825328 25.1537592147746 60.4426805708163 25.153741835189 60.4426956741135 25.1537221836167 60.442709963958 25.1537002152451 60.4427243311175 25.1536728076928 60.4427360105171 25.1536452254731 60.4427465512161 25.1536158356765 60.4427561579392 25.1535851538044 60.442764942903 25.1535535006669 60.442773043485 25.1535210684106 60.4427805437222 25.1534880885622 60.4427875435866 25.1534546463317 60.4427940889544 25.1534208118225 60.442806045834 25.1533523346463 60.4428114845192 25.1533177086155 60.4428309934829 25.1531778777318 60.4428358619785 25.1531429386568 60.4428519789045 25.1530389625671 60.4428579345634 25.1530047069671 60.4428709071396 25.1529369534233 60.442878025037 25.1529036133338 60.4428856612406 25.1528707345702 60.4428938987823 25.1528384760065 60.4429028386425 25.1528069954972 60.4429126369041 25.1527765386514 60.4429234529231 25.1527475871882 60.4429355375584 25.1527207448675 60.4429454956739 25.1527018210467 60.4429592551983 25.152678537091 60.4429735072089 25.1526564429859 60.4429878069454 25.1526352004539 60.4429878069454 25.1526352004539 60.4429962681038 25.1526287944123 60.4430184766746 25.1526144279553 60.443064510621 25.152583767325 60.4430818277358 25.1525741682155 60.4430992668897 25.1525655982382 60.4431168602923 25.152558437277 60.4431345815255 25.1525527231877 60.4431379995177 25.152551802024 60.443155835166 25.1525478627512 60.4431737358272 25.1525453739225 60.4431916838055 25.1525443547221 60.4432096334754 25.152544753213 60.443227548941 25.1525465714358 60.4432454291952 25.152549736743 60.44326323809 25.1525542330126 60.443280965896 25.1525600062689 60.44329857571 25.1525669859021 60.4433160583059 25.1525751542612 60.4433506113959 25.1525948044175 60.4433676709013 25.1526061414269 60.4433845465741 25.1526184704381 60.4434012468845 25.1526317546177 60.4434177954812 25.1526457563244 60.4436280929033 25.1528502847587 60.4436327804667 25.1528547809853 60.443746632738 25.1529623051088 60.4437628096045 25.1529780005243 60.4438107806341 25.1530274816559 60.4438264126094 25.1530453347916 60.4438418215793 25.153063945867 60.4438570072915 25.1530832967198 60.4438719605202 25.1531033696974 60.4439010733288 25.1531458692617 60.4439151705935 25.1531683357414 60.4439289730585 25.1531915642397 60.4439424361055 25.1532155754672 60.4439555076517 25.1532404996207 60.4439604506947 25.1532504709571 60.4440227407757 25.1533812101413 60.4440360816765 25.153405482929 60.4440502227613 25.1534278744154 60.4440651410496 25.1534480223592 60.4440808412382 25.1534656174788 60.4440972377803 25.1534803192593 60.4441142466394 25.1534918961625 60.4441330873585 25.1535008606372 60.4441508514377 25.1535060144664 60.444168761943 25.1535081243797 60.4441866944969 25.1535072883181 60.4442045621277 25.1535037111639 60.4442222309802 25.153497455042 60.4442395396879 25.1534878929002 60.4442560964941 25.1534739745057 60.444271210731 25.15345446664 60.4442836849939 25.1534285102187 60.4442927727473 25.1533927848009 60.4442954649684 25.1533569861414 60.4442953429385 25.1533371615471 60.4442937459933 25.153300988326 60.444292944467 25.153285274038 60.4442910877654 25.153249151922 60.4442887232084 25.1532256373846 60.4442810480061 25.1531928448535 60.4442768173957 25.1531772525314 60.4442688667567 25.1531446756109 60.4442630887927 25.1531211185737 60.4442538822089 25.1530899399298 60.4442436910087 25.1530609439531 60.4442210149489 25.1530046455264 60.444213064275 25.1529850291443 60.4442020073582 25.1529564277571 60.444193592696 25.1529344383347 60.4441709340279 25.1528781027381 60.4441685346546 25.1528721677487 60.4441571434996 25.1528440762028 60.4441443737797 25.152815663051 60.4441309455502 25.1527915771527 60.4441247646391 25.1527804218879 60.4441117673 25.1527537303776 60.4441117673 25.1527537303776 60.4441070133438 25.1527340780209 60.4441001257166 25.1527101661036 60.4440936502052 25.1526848856766 60.4440902482543 25.1526701189615 60.4440830245472 25.1526368648627 60.4440815740499 25.152630058047 60.4440745811387 25.1525966090868 60.4440692547605 25.1525693548328 60.4440569830014 25.1525010690505 60.4440537078834 25.1524824961225 60.444042387987 25.1524135564962 60.4440379394223 25.1523783635212 60.4440352402719 25.1523501603217 60.4440329353744 25.1523141185225 60.4440318132706 25.1522778823088 60.4440317588096 25.1522415672803 60.4440327378581 25.1522053026129 60.4440339747757 25.1521805113116 60.4440365387697 25.1521445565126 60.4440399059721 25.1521088832743 60.4440439238253 25.1520735002599 60.444044893664 25.1520657198405 60.4440496893131 25.1520307288868 60.4440552091685 25.1519961512149 60.4440616364883 25.1519622490715 60.4440680564881 25.1519330007087 60.4440842209413 25.151868134817 60.4440931388078 25.1518344364961 60.4441031941562 25.1518043998769 60.4441056546988 25.1517985524239 60.4441187647193 25.1517737772478 60.4441335500048 25.1517532330715 60.4441490206163 25.1517348312172 60.4441611706007 25.1517217803606 60.4441774677915 25.1517066397862 60.4441945784976 25.1516957610043 60.4442125931534 25.1516904840061 60.4442305196779 25.1516911560032 60.44424815888 25.1516976610809 60.4442622772272 25.1517073836453 60.4442783608148 25.1517234657109 60.4442936239583 25.1517425573188 60.4443082507334 25.1517636846119 60.4443362291796 25.151809192742 60.4443772804169 25.151879697525 60.4443906739216 25.1519038579161 60.4443935396393 25.1519090938182 60.4445251593872 25.1521560291334 60.4445527556899 25.1522024866557 60.4445670006334 25.1522245812387 60.4445815832189 25.1522457659634 60.444596510406 25.1522658950136 60.4446118342763 25.1522848381874 60.4446275515567 25.1523023593612 60.4446436948697 25.1523182203724 60.4446602783867 25.1523321477503 60.4446725521452 25.1523409757057 60.4446896933519 25.1523517267071 60.4447070639211 25.1523608832404 60.4447246105127 25.1523684846879 60.444742298742 25.152374642066 60.4447600849984 25.1523794487374 60.4447779433672 25.1523829788825 60.4447958569079 25.1523853061719 60.4448138033916 25.1523861228457 60.4448317466017 25.1523867033962 60.4448854896498 25.1523932125293 60.4449034088905 25.1523953031968 60.4449105563038 25.1523958425016 60.4449284954846 25.1523961324432 60.4449464416938 25.1523949859437 60.4449643420949 25.1523924787126 60.4449821882172 25.1523886475842 60.4449956617419 25.1523849011952 60.4450839322253 25.1523522029864 60.4450878666769 25.1523509615642 60.4451960689923 25.1523268926038 60.4452138316442 25.152321575563 60.4453196328288 25.1522810826659 60.4453343807232 25.1522759731715 60.4453699337911 25.1522660463444 60.4453877691714 25.1522620884588 60.4454414292449 25.152252896379 60.4454471834916 25.1522520605496 60.44550090691 25.1522448462451 60.4455188103283 25.1522425568482 60.4455367314426 25.1522402482654 60.4455546325941 25.1522377953891 60.4455575994572 25.1522373723741 60.4456473398382 25.1522219498014 60.4457188732869 25.1522095972972 60.445736793485 25.1522078704341 60.4457531730204 25.1522070854583 60.4457711201657 25.1522073021295 60.4458607775598 25.1522150431794 60.4458679818388 25.1522157973656 60.4459038688503 25.1522176490366 60.4459208163572 25.1522176679993 60.4459566950996 25.1522156845197 60.4459746240193 25.1522139389712 60.4459925396835 25.1522118851419 60.4459987618357 25.1522111136024 60.4460166712038 25.1522086056687 60.4460345548165 25.152205535666 60.4460523891855 25.1522015050034 60.4460701001595 25.1521956998645 60.4460816627879 25.1521908074997 60.4460989911027 25.1521813702289 60.4461157892368 25.1521686727736 60.4461313746368 25.1521507724551 60.446137229161 25.1521416233555 60.446149572735 25.1521153269522 60.4461592254727 25.1520847478514 60.4461666981603 25.1520517475967 60.4461679433526 25.1520450417312 60.4461729743231 25.1520101805433 60.4461754577458 25.1519742461171 60.4461755516589 25.1519615885892 60.446173489196 25.1519255488497 60.446168408127 25.1518907349609 60.4461604004929 25.1518540695482 60.4461513528733 25.1518227168052 60.4461405334675 25.1517937734052 60.4461274541874 25.1517689576743 60.4461244008604 25.1517644411255 60.446108753035 25.151746751864 60.446092153778 25.1517329886756 60.4460752934561 25.1517204764643 60.4460582661216 25.1517062831664 60.4460425662081 25.1516887241762 60.4460272425056 25.151669798628 60.4460115934083 25.1516520186441 60.4460082154408 25.1516487021607 60.4459914739451 25.1516356924574 60.4459740961189 25.1516266636213 60.4459564623633 25.1516199034482 60.4459533315131 25.1516188633998 60.4459355668649 25.1516136740068 60.4459150662555 25.1516093672124 60.4458971457471 25.1516071861034 60.4458433177883 25.1516049184541 60.4458276943057 25.1516038793084 60.4457918545479 25.1515996079281 60.4457739085675 25.1515988280014 60.4457651133105 25.151599273226 60.4457095062832 25.1516092497078 60.4456915649326 25.1516094511349 60.4456736593485 25.1516070510526 60.4456558054023 25.1516031937867 60.4456423664979 25.1515997218921 60.445588959857 25.1515857417995 60.4455763486692 25.1515830227232 60.4455405685136 25.1515772210479 60.4455227165816 25.1515735091229 60.4455049979651 25.1515677536833 60.4455008875953 25.1515660240111 60.4454835172264 25.1515568858513 60.4454665251451 25.1515452358139 60.4454497998235 25.1515320982096 60.4454421667001 25.1515256788273 60.4454093627071 25.1514961675962 60.4453931769476 25.151480490815 60.4453788943661 25.1514660510733 60.445331519452 25.1514142637585 60.4453250567791 25.1514067599481 60.445309664773 25.1513880933153 60.4452946853744 25.1513680944403 60.4452805447022 25.1513457574998 60.4452682690261 25.1513193154475 60.4452644702252 25.1513089699506 60.4452550426469 25.1512780760768 60.4452515709957 25.1512667122109 60.4452408043082 25.1512376940785 60.4452336473503 25.151221577093 60.4452228820503 25.1511952492428 60.4452168065206 25.1511560939411 60.4452116183233 25.1511213418083 60.4452054749826 25.1510889525661 60.4451990412468 25.1510550528975 60.445197604794 25.1510460274151 60.4451938520545 25.1510105211483 60.4451925428702 25.1509957805769 60.4451891026945 25.1509601474876 60.4451866720544 25.1509325461838 60.4451848234335 25.1508964045488 60.4451836184537 25.1508619895863 60.4451815401228 25.1507840518725 60.4451816288326 25.1507477274085 60.4451821329499 25.1507154511762 60.4451828598016 25.1506791631449 60.4451839284107 25.1506429102164 60.4451847726435 25.1506228483642 60.4451884578823 25.1505505816889 60.4451892464433 25.1505284507161 60.4451901701664 25.1504985864525 60.4451905960286 25.150484619795 60.4451935641954 25.150457111485 60.4451956055672 25.1504314191198 60.4451992434904 25.1503971650747 60.4452019066746 25.1503690378628 60.4452048449751 25.1503452031664 60.4452091964066 25.1503099451021 60.4452100519512 25.1503036432561 60.4452124772733 25.1502881450198 60.4452154260559 25.1502708901151 60.4452181937423 25.1502528820324 60.4452216721291 25.1502317251114 60.445228093963 25.1502039294741 60.4452329353157 25.1501774416187 60.4452370120863 25.1501618676307 60.4452414343099 25.1501491824627 60.4452507489507 25.1501130422212 60.4452598886036 25.1500817654186 60.4452651442212 25.1500631250073 60.4452818270797 25.1499987897877 60.4452897912637 25.1499669435431 60.4452982921134 25.1499349395158 60.4453061946491 25.1499090045826 60.4453255709003 25.1498478425837 60.4453441805797 25.1497819251224 60.4453504360919 25.1497622097742 60.4453609484883 25.149732781562 60.4453832942625 25.1496759222351 60.4453930902128 25.1496511701094 60.4454147749459 25.1495932757666 60.4454229704456 25.1495696871336 60.445433483051 25.1495402769576 60.4454451802785 25.1495127444256 60.4454568474942 25.1494908124199 60.4454710246435 25.1494685376588 60.4454807305973 25.1494547700713 60.4455097193232 25.1494119294686 60.4455135013481 25.1494055337687 60.4455272128849 25.1493820674869 60.445541979842 25.1493615223503 60.4455582626952 25.1493473078265 60.445575107695 25.1493347700502 60.4456093108376 25.1493059023906 60.4456289651513 25.1492945317496 60.4456466015722 25.149287893149 60.4456651631362 25.1492832015057 60.445683070425 25.1492805466796 60.4456960547494 25.149279735255 60.445731944388 25.1492791840093 60.4457378984177 25.1492791542978 60.4457558383522 25.1492794970114 60.4457737538484 25.149281313552 60.4457914422111 25.149287469437 60.4458033008793 25.1492948477282 60.44583697861 25.1493199809732 60.4458515859007 25.1493293297705 60.4458686115437 25.1493407950997 60.4458853286064 25.1493539685771 60.4459004449037 25.1493708687955 60.4459158287188 25.1493895716409 60.445930842793 25.1494094589502 60.4459454773952 25.149430476743 60.4459596971334 25.14945266339 60.4459734740762 25.1494759477674 60.4459867723273 25.1495003319179 60.4459995908771 25.1495257431855 60.4460119202467 25.1495521457529 60.4460237853399 25.1495793927765 60.4460351943734 25.1496074292535 60.4460461204249 25.149636256715 60.4460565360675 25.1496658403637 60.4460664407964 25.149696143871 60.4460757982109 25.1497271329497 60.4460846080582 25.1497587894348 60.4460928513813 25.1497910416899 60.4460964947935 25.1498063588183 60.4461037989683 25.1498395370757 60.4461105084349 25.1498732218106 60.4461167203938 25.1499072984228 60.4461278815804 25.1499763597069 60.446142164883 25.1500814185557 60.4461463463552 25.150116737771 60.4461829764307 25.1504723702444 60.4462085640228 25.1506840397135 60.4462127642031 25.1507123047641 60.4462182376618 25.150746896258 60.4462303056959 25.1508153247659 60.4462441326487 25.150882362666 60.4462518002059 25.1509152116145 60.4462600699209 25.1509474446382 60.4462691003017 25.1509788345867 60.4462793656113 25.1510086091854 60.4462911252419 25.1510360447307 60.4463045443105 25.1510600956633 60.4463196951708 25.1510795035522 60.4463363517676 25.1510928633171 60.4463394193976 25.15109452499 60.446357150184 25.1510998615136 60.4463750612351 25.1510987707674 60.4463927094936 25.1510923322802 60.4464098690413 25.1510817404917 60.4464264627373 25.1510679087095 60.4464426248826 25.1510521017972 60.4464584640183 25.1510350225482 60.446473991638 25.151016852094 60.4465042450198 25.1509777390251 60.4465335329911 25.1509357176411 60.4465437535915 25.1509201938154 60.4465719405264 25.150875199079 60.4465857084314 25.1508518930585 60.4466125203153 25.1508035951359 60.4466255099457 25.1507785699657 60.4466382118003 25.1507528703443 60.4466625919096 25.1506995477533 60.4466742247895 25.150671891006 60.4466854073523 25.1506434963339 60.4466960478413 25.1506142235241 60.4467060290902 25.1505840428813 60.4467153152023 25.1505529564473 60.4467238072114 25.1505209516716 60.4467314430553 25.1504880866207 60.4467381604194 25.1504544011973 60.44674390672 25.1504199892874 60.4467486021991 25.1503849281439 60.4467522309251 25.150349364106 60.4467546506229 25.1503121054684 60.4467558719337 25.1502758602665 60.4467563289343 25.1502395494519 60.4467562198083 25.1502032162932 60.4467556619738 25.1501669086515 60.4467547185008 25.1501306411203 60.4467469229113 25.1499132482781 60.4467461047527 25.1498769554551 60.446745661944 25.1498043019279 60.4467462626518 25.1497680011177 60.4467469056429 25.1497483314742 60.4467485770119 25.1497121697264 60.4467508880449 25.1496761533763 60.4467538753944 25.1496403348732 60.4467575580172 25.1496047858516 60.446761954366 25.1495695416172 60.4467670572325 25.1495347298293 60.4467729212175 25.1495004019162 60.446779511182 25.149466614411 60.4467870009109 25.1494335937494 60.4467956113289 25.1494017272941 60.4468054461952 25.1493713727156 60.4468166005474 25.14934290636 60.4468291278327 25.1493169432646 60.4468430166629 25.1492939567265 60.4468581579455 25.1492744983185 60.4468641941934 25.1492681013306 60.4468807210936 25.149253999536 60.446897940639 25.1492438576659 60.446915608263 25.1492375260314 60.4469335040506 25.1492346899309 60.4469514429731 25.1492349599624 60.4469693294891 25.1492379234524 60.4469870777876 25.1492432217094 60.4470046877614 25.1492502003025 60.4470221402011 25.1492587694326 60.4470393797491 25.1492688231781 60.4470563887094 25.1492803807269 60.4470731478725 25.1492933522794 60.4470896559767 25.1493076470144 60.4471058589256 25.1493232498323 60.4471217731532 25.1493400507258 60.4471317294714 25.1493514278639 60.4471470360551 25.1493703902974 60.4471620414111 25.1493902970153 60.4471768145562 25.1494109441227 60.4471913629506 25.1494322221216 60.4472904741864 25.1495884863559 60.4473048665699 25.1496101733213 60.447334308633 25.149651728367 60.4473494604525 25.1496711906961 60.4473650667056 25.1496891001474 60.4473766635702 25.1497009113493 60.4473929768309 25.1497160537433 60.4474095850126 25.1497297977617 60.4474264619507 25.1497421994287 60.4474435540537 25.1497532799699 60.4474608344 25.1497630409148 60.4474782857987 25.149771537777 60.4474958731105 25.1497788270908 60.4475135606919 25.149784929061 60.447549177377 25.1497938288444 60.4475670626197 25.1497967018659 60.4475849968104 25.1497985722481 60.4476029353315 25.1497994607066 60.4476208809569 25.1497995670536 60.4476388354519 25.1497990184425 60.4478360289501 25.1497800028162 60.4478464038668 25.1497794853854 60.4481156429081 25.1497675517115 60.448312564293 25.1497399338895 60.4483249385762 25.1497372302222 60.4486094759263 25.1496589238386 60.4486272882209 25.1496546018098 60.4487166316469 25.1496377750381 60.4487883700839 25.1496324395132 60.448806314445 25.1496324549322 60.4488421924913 25.1496343043711 60.4488958860281 25.1496424122946 60.4489137012027 25.1496467073628 60.4489314574477 25.1496519329674 60.4489395876309 25.1496546883109 60.4489572212245 25.1496614298416 60.4489747669485 25.1496689581188 60.4492017657547 25.149777833213 60.4492052855242 25.1497790692206 60.4492408136813 25.1497893561546 60.449258679564 25.1497927758122 60.4492765980725 25.149794810786 60.4492945477285 25.1497952077726 60.4493124523487 25.1497930075524 60.4493301429835 25.149787038018 60.4493473420915 25.1497767150042 60.4493636298079 25.1497615533427 60.4493757430102 25.1497458655704 60.4493893815349 25.1497223098695 60.4494012353712 25.1496950560038 60.4494112625264 25.1496649608345 60.4494196084528 25.1496327978408 60.4494264347859 25.1495992123198 60.4494322354506 25.1495648488447 60.449437410345 25.1495300482722 60.4494420512264 25.1494949508258 60.4494499314031 25.1494240720759 60.449453270925 25.1493883941542 60.4494589564979 25.1493166403094 60.4494603481827 25.1492965628055 60.449464942559 25.1492244892334 60.4494781853402 25.1489351052505 60.4495496031641 25.1489357857773 60.4498010685369 25.1489574715648 60.4505222924496 25.1489529677394 60.4507845595999 25.1489479678013 60.4508832952643 25.1489478207833 60.451236529871 25.1489582244187 60.4518315355472 25.1489603037813 60.4525675509119 25.1489719571889 60.4532999012367 25.1489667461188 60.4540005646829 25.148954301313 60.4542285222276 25.1489614539603 60.4547070487921 25.1489587438681 60.4550093107978 25.1489565028287 60.4556698928803 25.1489596668379 60.4558295665671 25.1489602874387 60.4570434758838 25.1489670473291 60.4571056028153 25.1489680566642 60.4583158412382 25.1489730612084 60.4589084507981 25.1489694922955 60.4595507397977 25.1489792436899 60.4601547047488 25.1489882128572 60.4607747504846 25.148975533825 60.46146334455 25.1489658075193 60.4621285855435 25.1489779074435 60.4621285855435 25.1489779074435 60.4630110130219 25.1489413558501 60.4636609251542 25.1492608726139 60.4639450191339 25.1493945699163 60.4642362316186 25.1495312655217 60.4642426138909 25.1495342670748 60.4648217431205 25.1498070710527 60.4650691080714 25.1499235878548 60.4652107578718 25.14999031898 60.4655096601345 25.1501310983057 60.4666752920071 25.1506802123008 60.4677067483201 25.1511661271035 60.469539747305 25.1520231246877 60.4695460569732 25.1520260767527 60.4695523761193 25.1520290646629 60.4700819158256 25.1522766688599 60.4705509077859 25.1524959597606 60.4705597575102 25.1525000956215 60.4705670975024 25.1525035168629 60.4711995337419 25.1527992457953 60.4730448342672 25.1536622014773 60.4733153700641 25.1537887393454 60.4734120390016 25.1538339525479 60.4742689329369 25.1542347151047 60.4743494841502 25.1542723861755 60.4747265482036 25.1544395333677 60.4761179485201 25.1550995844035 60.4793539830181 25.1566134410943 60.4802816115868 25.157047475062 60.4814798247115 25.1576081306077 60.4817258332854 25.1577232940434 60.4828575716526 25.1582531714119 60.4838246655991 25.1587236789285 60.4842545848113 25.1589103502213 60.4859962501846 25.1597134792302 60.4861073851056 25.1597632582761 60.4865335794944 25.159954134701 60.4870042551149 25.1601716179906 60.4875415029613 25.1604168613779 60.4880216748093 25.160637260095 60.488472143918 25.1608438210442 60.4889255761984 25.1610575371251 60.488949968662 25.1610712273087 60.4889743790723 25.1610849164962 60.4894297894031 25.1613007842239 60.4898925876207 25.1615216458373 60.4903497261551 25.1617398123023 60.4906158128468 25.1618667884309 60.4906176209249 25.1618676508503 60.4911858385567 25.1621388466431 60.4920593760125 25.1625543877075 60.4920626394187 25.1625559324141 60.4935253969333 25.1632518266761 60.4945046683556 25.1637075601357 60.4949651618059 25.1639257611619 60.4949750245195 25.1639304466103 60.4963579861828 25.1645858583765 60.496393747779 25.1646027894219 60.4968580637731 25.1648228383581 60.496860947493 25.1648242047016 60.4972847826315 25.1650250820408 60.4975852952246 25.1651674983928 60.4977193532283 25.1652281798449 60.4978334755012 25.1652798653045 60.4986897151208 25.1656681639328 60.4992806754624 25.1659539921997 60.5010542480345 25.1668118086293 60.5025027591043 25.1674931684912 60.5028394218952 25.1676536196909 60.5038846637217 25.1681523244313 60.5062338474294 25.169300451398 60.5062338474294 25.169300451398 60.506197423537 25.1701721639794 60.5061598484218 25.1711640834087 60.5061556662392 25.1713084665554 60.5061211436797 25.1721376698589 60.5060419119286 25.1743168472464 60.506039043265 25.1743894371702 60.5060143731597 25.175111048507 60.5059878058786 25.1756869432443 60.5059539138471 25.1766812638592 60.5059153845249 25.1777061469043 60.5058767109749 25.1787559125412 60.5058739293853 25.1788284785121 60.5058725393207 25.1788648160865 60.5058421916833 25.1796558877616 60.5058407919227 25.1796921893769 60.5058048962338 25.180628025498 60.5057596987267 25.1818057396149 60.5057527827968 25.1820054172034 60.5057239094273 25.1828401622992 60.505678359958 25.1841221325311 60.5056724956211 25.184287803745 60.5055735350435 25.1870831469646 60.5055730776224 25.1871340919369 60.5053498436167 25.189726898219 60.5053464128074 25.189762638221 60.504801497522 25.1950451778192 60.5047626452837 25.1953784333966 60.5046673304603 25.1961960157759 60.5045730618937 25.1967650653594 60.5044003155346 25.1983967008868 60.5043874756438 25.1985179691753 60.5039775655214 25.2023885778474 60.5038197701671 25.2038783381389 60.5037745232858 25.2043052908933 60.5034546593629 25.2073234170488 60.5031691954703 25.209925724223 60.5029847684893 25.2116291667219 60.5028768616631 25.2125901481462 60.5027468177011 25.2139441434709 60.5027345630489 25.2140538216738 60.5025974264242 25.2152801621716 60.5025888027899 25.2153572263952 60.5025789280702 25.2154455037016 60.5023841135163 25.217123503107 60.5023456809837 25.2174868919029 60.5023192941065 25.2177362275724 60.5022462845421 25.2184063583783 60.5022193712629 25.2186533905493 60.5021038864123 25.2197434620187 60.5020651525284 25.2201090277445 60.5018920168828 25.2216996891343 60.5016310838745 25.2241875862421 60.5016310838745 25.2241875862421 60.5002629063293 25.2262625721633 60.4970968841296 25.2310636510019 60.4963621168688 25.2321772488629 60.4944296334212 25.2351063487613 60.494404498811 25.2351445620333 60.4915827223437 25.2394355731043 60.4894604311914 25.2425637939608 60.4854449980817 25.2486732146999 60.4844112779178 25.2501629702858 60.4842474669087 25.2504092773562 60.4804033913127 25.2563002073354 60.4795023149058 25.2579047048958 60.4785452595116 25.2595717213967 60.4772385637029 25.2618477500941 60.4752643278827 25.2652859829206 60.4728623256337 25.2694990723359 60.4727338454537 25.2697176227418 60.4722221196789 25.2703853336025 60.4713289568787 25.2715625513839 60.4687042610755 25.2750051904536 60.4685943913656 25.2751530884192 60.4681149195383 25.2757807708966 60.4678189088002 25.2761511773818 60.4676708821503 25.2763486573253 60.4644824377717 25.2804846269703 60.4640531434948 25.2813512117888 60.4638581992369 25.2816912244228 60.4638431707113 25.2817174087852 60.4615619490916 25.2860482158126 60.4606544679461 25.2877381841543 60.4606398993057 25.2877653027021 60.4606206297272 25.2878011979485 60.4605686402834 25.2878976836906 60.4605534037748 25.2879259465964 60.4605514302277 25.2879296149374 60.4605362903326 25.2879577090533 60.4600237749967 25.2889121569751 60.4573445880523 25.2940692670766 60.4572884714054 25.2941783325954 60.455717009033 25.2972322044146 60.4507799260567 25.3048607564048 60.4494286011002 25.306946249264 60.4490522808171 25.3075180319089 60.4455379806868 25.3129200375397 60.4439267304168 25.315334218424 60.443600815516 25.3158225118069 60.4407543231334 25.3202202618818 60.4397514097664 25.3217819669511 60.4393765591604 25.3223326826018 60.4382606492578 25.3240246336477 60.4365634346479 25.3265384630401 60.4362841008872 25.3269682756596 60.4346244291359 25.3293906844831 60.4333799172707 25.331282449193 60.4331554995062 25.331630195491 60.4318558457916 25.3335947082662 60.4314429360117 25.3342225013574 60.4310655110978 25.3347838902052 60.430866468961 25.3350867745215 60.4294244714456 25.337257329523 60.4287081458326 25.3383482091242 60.4279905202702 25.3394269888273 60.4266452391629 25.3414540173532 60.4260618133488 25.3423321200312 60.4254977099647 25.3431829215165 60.4254061615753 25.343279681118 60.4205238286684 25.3483241011318 60.4192196445548 25.3496200750211 60.4173696955737 25.3516138585899 60.4173195645899 25.3516761647009 60.4171968986026 25.3518285708246 60.4170362956107 25.3520010746846 60.4154672113633 25.3535395700433 60.4154167785756 25.3535906072009 60.4153059345191 25.3537027739607 60.4147533117267 25.3543130556412 60.4144768973671 25.3546183027805 60.4139607620945 25.3551626804615 60.4114110883222 25.3578515850654 60.4100167238463 25.3593218621224 60.4092028888107 25.3601804077858 60.4082801062091 25.3611528921242 60.4082146046996 25.3612224569584 60.4060978865056 25.3634407966525 + + + + + + Sipoo + + municipality + + + + + + + + + 60.4429878069454 25.1526352004539 60.4429735072089 25.1526564429859 60.4429592551983 25.152678537091 60.4429454956739 25.1527018210467 60.4429355375584 25.1527207448675 60.4429234529231 25.1527475871882 60.4429126369041 25.1527765386514 60.4429028386425 25.1528069954972 60.4428938987823 25.1528384760065 60.4428856612406 25.1528707345702 60.442878025037 25.1529036133338 60.4428709071396 25.1529369534233 60.4428579345634 25.1530047069671 60.4428519789045 25.1530389625671 60.4428358619785 25.1531429386568 60.4428309934829 25.1531778777318 60.4428114845192 25.1533177086155 60.442806045834 25.1533523346463 60.4427940889544 25.1534208118225 60.4427875435866 25.1534546463317 60.4427805437222 25.1534880885622 60.442773043485 25.1535210684106 60.442764942903 25.1535535006669 60.4427561579392 25.1535851538044 60.4427465512161 25.1536158356765 60.4427360105171 25.1536452254731 60.4427243311175 25.1536728076928 60.442709963958 25.1537002152451 60.4426956741135 25.1537221836167 60.4426805708163 25.153741835189 60.442664825328 25.1537592147746 60.4426485383765 25.1537744620712 60.4426318281342 25.1537876794341 60.4426147983482 25.1537992245074 60.4425975594745 25.1538092909662 60.4425801299647 25.1538179141185 60.4425625369927 25.1538251106007 60.442544825932 25.1538309141933 60.4425381424858 25.1538327475591 60.4425024141557 25.1538397552966 60.4424844964395 25.153841662678 60.4424306672201 25.1538431903914 60.4424185517373 25.1538431871799 60.4418622194326 25.1538470006606 60.4415935948035 25.1538819094383 60.4415757353729 25.1538854310779 60.4415221878597 25.1538969211931 60.4415052056995 25.1539008837861 60.4414874029633 25.1539052564509 60.441060642695 25.1540233475266 60.4410427952517 25.1540270864518 60.4409533476107 25.1540416125854 60.4409484336326 25.1540421640133 60.4409305136444 25.1540439077255 60.4408946350901 25.1540459069433 60.4408587402687 25.1540454352168 60.4408408036787 25.1540440355113 60.4408229040767 25.1540414159544 60.4408050668751 25.1540374660539 60.4407873100219 25.1540321847936 60.4407696686582 25.1540255156556 60.4407648892095 25.1540234603671 60.4407474467852 25.1540149442366 60.440730207074 25.1540048535309 60.4407132149454 25.1539931857066 60.4406965062952 25.1539799387294 60.4406801511536 25.1539649814004 60.440664211835 25.1539482738356 60.4406494190901 25.1539307015178 60.4406344572638 25.1539106487889 60.4406200222173 25.1538890758127 60.4406061416265 25.1538660355458 60.4405927743947 25.1538418029503 60.4405798430265 25.1538166187027 60.440567313638 25.1537906301281 60.4405581271047 25.1537706133134 60.4405462277315 25.1537434258061 60.4405346702869 25.1537156373071 60.4405125388277 25.153658441489 60.4404816028665 25.153569266215 60.4404741311656 25.1535459715308 60.4404463968224 25.1534525798666 60.4404377561062 25.1534207546976 60.4404294600834 25.1533885283028 60.4404215451529 25.1533559349661 60.4404153435154 25.1533290241226 60.4404081376813 25.1532957544356 60.4404013580604 25.1532621334184 60.4403890869347 25.1531938732012 60.4403836138807 25.1531592693021 60.4403785685491 25.1531244230336 60.4403752093673 25.1530991320905 60.4403709751159 25.1530638399455 60.4403674009034 25.1530282195392 60.4403645956761 25.1529923555611 60.4403627299395 25.1529562383295 60.4403624154357 25.1529199421649 60.4403641689685 25.1528838194024 60.4403681780738 25.1528484409945 60.4403690027195 25.1528431415495 60.4403756937946 25.1528094647404 60.4403838675106 25.152777139584 60.4403927250938 25.152745557119 60.4404015642179 25.1527139393341 60.4404063057723 25.1526957675518 60.4404148713846 25.15266385629 60.4404184965398 25.1526539085507 60.4404321543336 25.1526304140762 60.4404367571658 25.1526223192165 60.4404469623397 25.1525927139433 60.4404516058412 25.1525577537665 60.4404536830944 25.1525216670262 60.4404546522959 25.15248922372 60.4404566215908 25.1524531249262 60.4404593843643 25.1524172536993 60.4404632427046 25.1523884994752 60.4404702520343 25.1523551133771 60.4404792466445 25.1523237046802 60.4404895487026 25.1522939665433 60.4405228302217 25.1522083067015 60.4405259527311 25.1521996778675 60.4405359069498 25.152169468669 60.4405450109664 25.1521381808689 60.4405532209175 25.1521058896612 60.4406190670592 25.1519159255447 60.4405529680765 25.1519244600457 60.4397166887858 25.1520255563184 60.4392131958984 25.1520445733481 60.4386216355025 25.1503767710189 60.4385741451362 25.1502468351802 60.4384731620408 25.149967368845 60.4381788455415 25.149594960673 60.4377886807179 25.1497359309983 60.4372401031492 25.1506153868074 60.4367898479884 25.1509720727953 60.4367366357138 25.150717782396 60.436393906272 25.1504904514215 60.4361383180237 25.1502157747988 60.4361256847508 25.1504243173939 60.4361171512505 25.1505652601666 60.4359410860945 25.155526276558 60.4359290636268 25.1558444349191 60.4359028353501 25.1565516025796 60.4353006350158 25.1563384977777 60.4326503086266 25.1554003210466 60.4298010161232 25.1542968591504 60.4300031790311 25.1528297004889 60.4296197203428 25.1531773610189 60.4291146682634 25.1529764144829 60.4290660596898 25.1530591156056 60.428398191681 25.1541957481003 60.428351260651 25.1542757704952 60.4278261076519 25.1546833345334 60.4272582238837 25.1556430297413 60.4268235442434 25.1564050426774 60.4262665179564 25.1567605092113 60.4261465545544 25.1568173882679 60.4258134452744 25.1566751237494 60.4255358435779 25.1565565697295 60.4248321367323 25.1555084227139 60.4244591010451 25.1554047898645 60.4243886603234 25.1554999752669 60.42436627615 25.1555302185263 60.4243293612417 25.1555786699811 60.4243804249624 25.1562110144942 60.424060436161 25.1573252754715 60.4237644550983 25.157632317365 60.4231814366938 25.1580522333591 60.4230795500964 25.1585734615535 60.4225035338871 25.1584079640618 60.4221231848262 25.1582799234549 60.4210264805351 25.158055881602 60.4205317215669 25.1580038547124 60.4199173311467 25.1585790153304 60.4190725953718 25.1593714752046 60.4186042978632 25.1598103706189 60.4181398646346 25.1602456384969 60.4177901951931 25.1605733194835 60.4164280016416 25.1635893012203 60.4163526036478 25.1632550361048 60.4160793666716 25.162053437834 60.4159064795929 25.1612894238871 60.415801870899 25.1608271459462 60.415057497177 25.1575336698809 60.4146559621178 25.1557407923278 60.4146448981268 25.1556403175379 60.4145446641915 25.1547296375743 60.4143520050788 25.154681893292 60.4129192816991 25.1543268770133 60.4117077394331 25.1540266726097 60.4116719167194 25.1540178071102 60.4110936861514 25.153874541899 60.4109977802113 25.1538507958165 60.4106450666514 25.1537633945474 60.4102778167708 25.1536724064626 60.4101981181451 25.1536516470004 60.4101653443938 25.1536430997636 60.4099362459733 25.1535874097836 60.4093006310176 25.1534328855491 60.4092320240892 25.1534160198537 60.4090960095588 25.1533826383157 60.4089090780878 25.1533367273124 60.4086490402166 25.1532726633579 60.4084043203257 25.1532122169439 60.408135628305 25.1531458311089 60.4081198118705 25.1530259823742 60.4079139904846 25.1514905763807 60.4078515466257 25.1510307513272 60.4078156819646 25.1507666409016 60.407650627881 25.1495512324924 60.4075111176247 25.1484956354365 60.4073787454677 25.1474940934787 60.4067067017796 25.1476912817947 60.4066998050227 25.1476932716482 60.4065328369874 25.147742326542 60.4064393824759 25.1477690092727 60.4060747795841 25.1478731994624 60.4060189101444 25.1478914266623 60.405993322397 25.1478997804461 60.4058004990859 25.147956040061 60.4057499160409 25.1479707891949 60.4051819597595 25.1481348263672 60.4050974293525 25.1481612900962 60.4039379774105 25.1484945856872 60.4018859988154 25.149098507653 60.4012758983044 25.1492629372237 60.4006534061484 25.1494346536174 60.399697653507 25.1497370494979 60.3994351951569 25.1498137221596 60.3994018116868 25.1498233683589 60.3980856516984 25.1502069675601 60.3978666998321 25.1502708714604 60.3968761119504 25.1505599995759 60.3949047277365 25.151135304644 60.3945490616929 25.1512390743 60.3943138559451 25.1513076789012 60.3939228298794 25.1514217077676 60.3936608071786 25.1514981280332 60.3934906168214 25.1514491025734 60.3934742144552 25.1514443701703 60.3920254106544 25.1510268453253 60.3895765196358 25.1503797620345 60.3893103790235 25.1502974662663 60.3889909531264 25.1501524680061 60.3884586747306 25.1499990984753 60.3874707012049 25.1497293278362 60.3870181803352 25.1495841295081 60.38689378694 25.1495482564938 60.385889689591 25.1492590137086 60.385116640489 25.1490363273448 60.3851042147461 25.1490327505505 60.3847930114683 25.1489431274443 60.383781807898 25.1486648474065 60.3835665881084 25.1486044544906 60.3813178214125 25.1479810691782 60.3809127988364 25.1478255313261 60.377269047291 25.1467970316846 60.3760059529272 25.1464124538198 60.3748927449991 25.1461053464091 60.3743629688873 25.1459348217269 60.3724359268282 25.1453882815795 60.3650320972976 25.1514834727571 60.3641096995508 25.1522549659938 60.3636381319066 25.1526440571435 60.3613516541371 25.1545114047395 60.3610733184039 25.1547463628252 60.3593286153551 25.1562084341014 60.3592877314954 25.1532079783736 60.3592825145839 25.1525483046217 60.3592817419856 25.1519236785034 60.3592788742125 25.1517334212463 60.3592788742125 25.1517334212463 60.3592586280116 25.1500197219992 60.3592570263444 25.14988517925 60.3592557435237 25.1497348271909 60.3592566022594 25.1495854234179 60.3592567283709 25.1495086175039 60.3592516872149 25.1493237776501 60.3592466283582 25.1491389751071 60.3592430210658 25.1486538391013 60.3592411752904 25.1481740784756 60.3592305715877 25.1476491996538 60.359229711107 25.1475583808428 60.3592274685311 25.1474102408379 60.3592270715048 25.1473791522634 60.3592169843107 25.1465866454953 60.3592068762243 25.1456447851792 60.3592036343593 25.1453735811828 60.3591957346499 25.1445584696004 60.359195085776 25.1444919874657 60.3591864380862 25.1436371776497 60.3591653056574 25.1420334025717 60.359162815776 25.1418763571148 60.3591602279687 25.1413355956175 60.3591535715998 25.1404036751856 60.3591497421427 25.1398663929204 60.3591484384645 25.1396845325426 60.3591472898329 25.1395946912731 60.3591357686004 25.1386933799863 60.3591276028197 25.1377909711899 60.3591262327547 25.1376988763761 60.3591245679276 25.1376107507257 60.3590962398621 25.1339620901291 60.3590923174797 25.133384837193 60.3590877731403 25.132792245621 60.3590865449152 25.1325550302468 60.3590742471446 25.1316152575766 60.3591929578564 25.1316073754909 60.3594347590142 25.131584996743 60.3596768196408 25.1315625483874 60.3599038738155 25.1315421008231 60.3601413998859 25.1315184427359 60.3601325994989 25.1310658627048 60.3601211263807 25.1304883891683 60.3601158566524 25.1302418791367 60.360106369545 25.1297714259506 60.3600968015519 25.1293093902041 60.3600948915602 25.1292112499797 60.3600893349445 25.1289464266771 60.3600834093111 25.1287473479829 60.3600711256735 25.1282534135604 60.3600598047327 25.1276691157999 60.3600580805128 25.1275734127084 60.3599989307724 25.1243092984928 60.3599921618332 25.1240706541045 60.3599702956073 25.124082335759 60.3602695406532 25.1217259674587 60.3603082336815 25.1211441553157 60.3603091517385 25.1211303049705 60.3603128092992 25.1208862901587 60.360320623092 25.1203643633364 60.3603161448404 25.1201866315026 60.3602958644715 25.1193821049347 60.3602857406683 25.1189798591413 60.3602777102989 25.1186615833121 60.360267207524 25.1182453990525 60.3602634134134 25.1180946430582 60.3602413664134 25.1172201270577 60.3602389354802 25.1171238842738 60.3601946593248 25.1153690096482 60.3605659648597 25.1153615874881 60.360860273368 25.1155252897265 60.3611008427214 25.115684264354 60.3615006111112 25.115879851893 60.3615980728126 25.1160210732146 60.3617008038374 25.1159845377345 60.3620253880479 25.1160880469927 60.3621948995825 25.1162294464884 60.3638181665436 25.115487857338 60.3643827928976 25.1156446371413 60.364599782645 25.1157513708207 60.364579717879 25.1155737725653 60.3645325764966 25.1151566761665 60.3645314784471 25.1151470020881 60.3652309845514 25.1148289069061 60.3656897023296 25.1146242271702 60.3656976966564 25.1142605456451 60.3657177088744 25.1134029118856 60.3657457316629 25.1124557221123 60.3658735410291 25.106988809076 60.3659205521814 25.105276667075 60.3660108308244 25.1014882526937 60.3660628782126 25.099620553801 60.366063730145 25.0995814796806 60.3660832895403 25.0988753783498 60.3660856002141 25.0987888167045 60.3660949755933 25.0985398697744 60.3660954819125 25.0985212528318 60.3661213464243 25.0974807702957 60.3661263542958 25.0972971243326 60.3661419455946 25.0967263323388 60.3661613069861 25.0960168656075 60.3662322755353 25.0932667558973 60.3662624496343 25.0919634822129 60.3662766950342 25.0913480440889 60.3662970096141 25.0904698114527 60.3662991093382 25.090378944822 60.3663839001569 25.0898607827052 60.3664131215175 25.0896903688246 60.3665127863491 25.0890649014521 60.3665265375244 25.0889786651724 60.3665689052565 25.088717515021 60.3665706379963 25.088706841181 60.3671062627765 25.0854053102957 60.368164995829 25.0869579422636 60.3682789923714 25.0871251230114 60.3686799898039 25.087713656175 60.3689726685454 25.0881433328341 60.3691978621433 25.0884737408332 60.3692157759251 25.0885109762765 60.3692488197116 25.0885579712433 60.3694383527087 25.0873380314401 60.3696965977039 25.0856784343597 60.3697378889895 25.0853847266471 60.36976372059 25.0852312839916 60.370201655725 25.0851742815562 60.370245408458 25.0847440378725 60.3702837950044 25.0843666131818 60.3703509698948 25.0837225585928 60.3703860007618 25.0833867160981 60.3704366072519 25.0828958512065 60.3706864615876 25.0831354297986 60.3708838857688 25.0833247332292 60.3710813004511 25.0835140213382 60.3712787061564 25.0837033303688 60.3714761295451 25.0838926406183 60.3716735524086 25.0840819350191 60.3718709752688 25.0842712498148 60.3720683801782 25.0844605860597 60.3722122073957 25.0845984938981 60.3722934220764 25.0843992364598 60.3724851389074 25.0839252688077 60.3726331480547 25.0835602230892 60.3727926482517 25.0831668386055 60.3729394325461 25.0828048143618 60.3729854009962 25.0826896393356 60.3734567039763 25.0815268126352 60.3744002798846 25.0792038293642 60.37440997658 25.0791799682099 60.374419352755 25.0791569240212 60.3744750479612 25.0790195623543 60.3743315268556 25.0789710756435 60.3741559981974 25.0788965949698 60.3739818724678 25.078801717252 60.3738109881055 25.0786763039515 60.3736213223769 25.0784948258974 60.3732668590615 25.0781492566887 60.3732851104031 25.0781051940341 60.3733024012147 25.0780661396443 60.3735986620644 25.0773519738473 60.3735585977913 25.077279350958 60.3732592782709 25.0768009114474 60.3730043758352 25.07634153664 60.3729029660161 25.0762308523188 60.3729029660161 25.0762308523188 60.3740153186336 25.0747364449788 60.3736459476349 25.0729647335495 60.3749824586807 25.0729006243512 60.3766330837785 25.0736745990924 60.3764741871317 25.0740873249751 60.3766402044443 25.0743422053811 60.3768184199654 25.0746158509107 60.3769922807242 25.0748827905227 60.3770012490307 25.0748943063968 60.3770759378194 25.074803042718 60.3771124501721 25.0747585663878 60.3771994607877 25.0746523708798 60.3779262909405 25.0758289120535 60.3780383594548 25.0755363287861 60.3782203459189 25.0750611107485 60.3782665393338 25.0751066034505 60.3784865633778 25.0753232675285 60.3788321280962 25.0756635258708 60.378874949939 25.0757056816034 60.3789847653159 25.0758138020983 60.3798323556288 25.0766484867063 60.379413866205 25.0777260668485 60.379157506466 25.0783861223007 60.3789968479767 25.0787997588241 60.3788445187071 25.079191947537 60.3786921710987 25.0795841880295 60.3785187703255 25.0800305997788 60.3785745938812 25.0801218110444 60.3787580772281 25.0804215528982 60.37878400655 25.0804639106173 60.3788407098511 25.0805563596065 60.3789174674991 25.0806817526577 60.378968271248 25.0807649527517 60.3791502079503 25.0810621803655 60.3793921151919 25.0814574220068 60.3794637951846 25.0815745550467 60.3802874834146 25.0829203614743 60.3801373854095 25.0830237034916 60.3802149958228 25.0839918446907 60.3803247610837 25.0853613461372 60.380399225165 25.0862561524127 60.3804817920535 25.0862287933621 60.380496817988 25.0862238115686 60.380767354851 25.0861377628299 60.3808540768065 25.0861101774721 60.3809473612297 25.0860805196212 60.3812741006556 25.0859736988481 60.3813583891217 25.0859461465561 60.381633084523 25.0858570006107 60.3816842010277 25.0858404115848 60.3816843976676 25.0858403456153 60.3818312324099 25.0857959680282 60.3820478627723 25.0857304933896 60.3822149190743 25.08567832374 60.3823457993286 25.085637439354 60.3823834505386 25.0856256859401 60.3825497463666 25.0855737231124 60.3826591681258 25.085539558686 60.3827160424286 25.0855217778671 60.3828756862641 25.0854719099397 60.3830776752539 25.0854088145334 60.3831220232435 25.0853949619191 60.383173524393 25.0853788930919 60.3833755059158 25.0853159057968 60.3835956201267 25.085247262657 60.3837695888722 25.0851930127787 60.3838205892868 25.0851770997022 60.3840477399008 25.0851062451862 60.3843622074699 25.0850036082154 60.3844736386823 25.0849674166896 60.3848769982165 25.0848438432344 60.3854158893464 25.0846787200547 60.3860853197594 25.084469650659 60.3863053888446 25.0844022685602 60.386393538091 25.0843752792805 60.3865254576235 25.0843348673943 60.3867455266181 25.0842674834214 60.3868921643881 25.0842225586024 60.3869656042802 25.0842000798539 60.3871856998445 25.0841326742945 60.3872761242664 25.0841046425279 60.3875577893445 25.0840180847305 60.3876513523849 25.0839884706197 60.3877927478168 25.0839437423973 60.3880188728346 25.0838721863654 60.3880886268026 25.083850085929 60.3880964139321 25.083847614049 60.3883058650366 25.0837813554417 60.3885319809664 25.0837097976193 60.3886915881112 25.0836592965139 60.388750047036 25.0836411798672 60.3888024080773 25.0836249640406 60.3891528744463 25.08351254099 60.3894953125882 25.0834026924549 60.389500005539 25.0833992771186 60.3896983527825 25.0832405152626 60.389771505248 25.0831862368454 60.3901282833292 25.0829215213435 60.3904415710921 25.0826890654136 60.3913837772779 25.0819898991882 60.3915349241873 25.0818777428143 60.3921687874543 25.0813977833245 60.3925769961954 25.0810886939134 60.3925838638485 25.081083498349 60.3926377214946 25.0810807818428 60.3929546395568 25.0810785517685 60.3933253588335 25.0810503771703 60.393573303946 25.0810434043272 60.3938636502008 25.0810134080571 60.3948482324833 25.080957823064 60.394900955059 25.0809523777812 60.3950060776785 25.0809415424468 60.3952852292409 25.0809212417 60.3953552439379 25.0809178819302 60.3956114586518 25.0808976787434 60.3961699548312 25.0808536514102 60.3962827482733 25.0808447413821 60.3967021920345 25.0808116586286 60.3967927911097 25.0808045088986 60.3968503946532 25.0807999735665 60.3969339245556 25.080793385224 60.3972492766991 25.0807685177589 60.3972736587992 25.0807665011959 60.3976160842449 25.0807381511414 60.3976774193541 25.0807345393731 60.3980094983974 25.0807105552767 60.3982577169057 25.0806926526569 60.3983089881311 25.0806849682668 60.3986564657761 25.0806575712258 60.3987056812602 25.0806536926624 60.3987611036534 25.0806492488777 60.398821935344 25.080644359448 60.3988361602774 25.0806430134531 60.399094782446 25.0806222279745 60.3994639711867 25.0805925705284 60.3995343614037 25.0805872268302 60.3995357204345 25.080586801887 60.3998422343776 25.0805625231004 60.4000451002568 25.0805460729751 60.4002485512465 25.0805297152307 60.4003093739441 25.0805248258306 60.4003657973904 25.0805244070771 60.4005741409549 25.0805228462787 60.4007905396528 25.0805212103645 60.40082777223 25.0805209416364 60.4012329464439 25.0805178988419 60.4016799329184 25.0805145352074 60.4017671677801 25.0805138809039 60.4020875674377 25.0805114560543 60.402163940965 25.0796429779419 60.4037299367434 25.0796777923851 60.4037927538766 25.0796791738271 60.4037928668773 25.079724373543 60.4037949349445 25.0805498580071 60.4041924730963 25.0805360988395 60.4045875244699 25.0805224131138 60.4045741801553 25.0797227549469 60.4057856336865 25.0797341673701 60.4067601817325 25.0797433103531 60.4075064991195 25.0797613114017 60.4075240007432 25.0797617324453 60.4076070167974 25.079763739282 60.4075374556642 25.0803772329971 60.4075258812694 25.0804870581812 60.4081611866755 25.080493640951 60.409178199426 25.0805041534344 60.4097504198825 25.0805100952932 60.4098256939753 25.0805108533342 60.4099345846505 25.0805122091319 60.4100431839825 25.08051329156 60.4101057206039 25.0805139103509 60.4104480463402 25.0805173096187 60.4108941132281 25.0805218415142 60.4109157611978 25.080522054973 60.4109789359875 25.080522708798 60.410983939286 25.0805227590061 60.411256084984 25.0805255177336 60.4114367521593 25.0805273655449 60.4115473510256 25.0805282211962 60.4117670426653 25.0805307476272 60.4119981558553 25.0805330913446 60.4120488716155 25.0805336076718 60.4125682825883 25.0805470744347 60.4126645392758 25.080539894965 60.4127132515514 25.0805403659135 60.4127409545293 25.0804391249827 60.4128667021642 25.0799831205842 60.4130014359007 25.0794945479952 60.4131810775379 25.0788430753365 60.4133515609013 25.0782249880558 60.4134928695894 25.0777113868365 60.4130371506222 25.0776037860285 60.4132226239695 25.0771459655522 60.4133882497406 25.0767374553186 60.413101066935 25.0763005118112 60.4131262484584 25.0762394403617 60.4132925140243 25.0758262942262 60.413485139015 25.075347933401 60.4132066856907 25.0750268568777 60.4131593106154 25.0749728872068 60.4132176872431 25.0748230275781 60.4133623864051 25.0743460423111 60.413508991434 25.073866815229 60.4138400377295 25.0742031176805 60.4141519052893 25.0745640790985 60.4143914845542 25.0748413838299 60.414628032217 25.0751022360572 60.4149032208538 25.0754062484287 60.4150462410046 25.0750080520553 60.4152770941019 25.0743667609402 60.4154583918282 25.073863151343 60.4166711392415 25.0731052517377 60.4168674027125 25.0733172380205 60.4183496842911 25.0749184759571 60.4167946669352 25.080541544766 60.4169290986958 25.080540922941 60.4188249558 25.0805421544032 60.4189566312217 25.0805422215922 60.4191664433104 25.0805422603913 60.4194852347744 25.0805423418194 60.4195310967314 25.0805656492826 60.419729888577 25.0806666396354 60.4198436160242 25.0807244371743 60.4201274749847 25.0808663351031 60.4203052191221 25.0809551823282 60.4205198492212 25.081064598708 60.420736026275 25.0811747972422 60.420945029168 25.0812788988085 60.4211734895951 25.0813926451202 60.4213279386287 25.0814748234237 60.4214827219896 25.0815571462781 60.4216374960647 25.0816394522811 60.4217922798471 25.0817218129742 60.4219470179263 25.0818041226309 60.4220399318418 25.0818535809005 60.4222594191822 25.0819529678074 60.423030934075 25.0823027173743 60.4237177862962 25.0826128706933 60.4240682764742 25.0827767283944 60.4253675617923 25.0833841544292 60.425405561795 25.0834010292272 60.4258697514761 25.0836165643077 60.4260387910436 25.0836948353778 60.42636694718 25.0852137446591 60.426550287221 25.086042223996 60.4269621584429 25.0879034531103 60.427411447871 25.0899207782976 60.4274742319485 25.0902011561587 60.428886883551 25.0965104726194 60.4291090371201 25.0975028380942 60.4291623942646 25.0977411885675 60.4292123381345 25.0979663303401 60.4293041826027 25.0983804746456 60.4293960260521 25.0987946394614 60.4294878948857 25.0992087869072 60.4296807887789 25.1000785984258 60.4297969872291 25.1006026035768 60.430254899328 25.102639410357 60.4302602161414 25.1026627393585 60.4307518895169 25.1048508651026 60.4308024332812 25.1050918921736 60.4310049957508 25.1060064895703 60.4312269583532 25.1069664676076 60.4312486331011 25.1070602378717 60.4312673824277 25.1071402780675 60.4313134604812 25.1073498465332 60.4314732489985 25.1081209581028 60.4316310612987 25.1088094795699 60.431696109524 25.109117452578 60.4317354779215 25.1092930192835 60.4317753426546 25.1094713013378 60.4318162043111 25.1096540322374 60.4320012457102 25.1104791393209 60.4320089729687 25.1105135785521 60.4331585840329 25.1156446314968 60.4342223810173 25.1203354179638 60.4353054345689 25.1252858792773 60.4355930211016 25.126579016117 60.4356402705338 25.1267885167113 60.4357981979474 25.1274871102647 60.4358877175955 25.1278830697475 60.4365249734327 25.1307021765527 60.4366615734562 25.1313019155389 60.4379418150986 25.1370186094198 60.4383334150371 25.1387670947526 60.4390616356381 25.1421127716267 60.4391858715188 25.1426642738113 60.4395159424486 25.1441737848597 60.4398094162594 25.1454858327395 60.4404075791116 25.1482677203584 60.4407209086583 25.149561279982 60.440728805914 25.1495944735234 60.4427542270029 25.149421984148 60.4429817191391 25.1525491343466 60.4429878069454 25.1526352004539 + + + + + + Kerava + + municipality + + + + + + + + + 60.5167309518886 25.150766095009 60.5166912655932 25.1507402108554 60.5161401371493 25.1516762650805 60.5162657496387 25.1510087516327 60.5164162618483 25.1505595561323 60.5161644769873 25.1503940491872 60.5143238268981 25.149198806125 60.5133763781864 25.1485836374301 60.5123755968913 25.1479205633892 60.5120321696011 25.1476964113795 60.5121207377804 25.1474044436394 60.5120748966932 25.1473932905569 60.5120398605015 25.1473847810368 60.5116249357213 25.147304320984 60.5112247793186 25.1472267171172 60.5111884992618 25.1472224137965 60.5111522199628 25.1472181650861 60.5107949109235 25.1471417956554 60.5105713449272 25.1470963497193 60.5098596673641 25.1469516642744 60.5097104353605 25.1462420071017 60.5091245702706 25.145905905043 60.5091243349272 25.1459057727816 60.5091021368121 25.1458930531354 60.5090880754648 25.1458505990965 60.5090460237729 25.145650684507 60.5089851421063 25.1455440806601 60.5089828354394 25.1455435385923 60.508882355383 25.1455195751265 60.5087765919267 25.1455419576083 60.5086711469839 25.1455278037061 60.5085819524078 25.1454202150882 60.5085488002463 25.1453824958205 60.508533716731 25.1453401739972 60.508490134892 25.1453177674497 60.5084204467631 25.145336175833 60.508405549484 25.1452730074994 60.5084322298322 25.1451642968465 60.5084407174864 25.1450758229389 60.5084106649715 25.1449755280855 60.5083858677894 25.1448650066838 60.5083894273797 25.1447502413474 60.5084040885316 25.1445418985277 60.5084021459628 25.1444687191547 60.5083741329109 25.1444311624929 60.5083315405623 25.1442939204905 60.5082957297154 25.1442665359275 60.5082859275364 25.1442087776483 60.5082303788945 25.1440814750683 60.5081654965074 25.1439791853741 60.5081389134962 25.1439372674985 60.5080899177344 25.143945989453 60.5080694556222 25.1439296024517 60.5080178810727 25.143938235139 60.5079578109308 25.1437377028989 60.5079272281157 25.1437000758251 60.5078942957418 25.1436362289517 60.5078682524214 25.1436718501567 60.5078131185536 25.1437054565134 60.5077813142511 25.1436852564961 60.5077571490714 25.1437190216444 60.5077230731809 25.1437143597648 60.5076971258688 25.1437549473566 60.5076703335702 25.1436986358071 60.5076093586426 25.1436480682331 60.5075824508702 25.1436021812944 60.5075018274078 25.1434575032742 60.5074402844539 25.143472626052 60.5074083945478 25.1434127093066 60.5073910723787 25.1434432051202 60.5073712171149 25.1435705009539 60.5073435243809 25.1436179632151 60.5073059538206 25.1436235548484 60.507284268325 25.1435657134436 60.5072529299853 25.1435680345387 60.5072211162842 25.1435704010377 60.5071926973922 25.1435036930268 60.5071730311684 25.1434096024692 60.5071394010142 25.1433530641212 60.5070923097928 25.1432753317268 60.5070643598518 25.143153267547 60.5070517805706 25.1430282841322 60.5070698629741 25.1429078657531 60.507058995491 25.1428884720831 60.5070362744806 25.1428478835334 60.5069885263853 25.1428462270975 60.5069596845183 25.1428278804549 60.5068522314235 25.1428275649729 60.506826157812 25.1426848327994 60.5067952846831 25.1426444381129 60.5067772370657 25.1426208661488 60.5067569224997 25.1426028330611 60.5067490518684 25.1425264636058 60.5067122416278 25.1424421529028 60.5067279122958 25.1424046488948 60.5067280577608 25.1423873569943 60.5066539086965 25.1422827100698 60.5065747062274 25.1421692467801 60.5065234304374 25.142181270422 60.5064687821294 25.1421897353834 60.5064411459106 25.1422302554066 60.5063312166492 25.1423197968568 60.5062846079403 25.1423838582984 60.5062728627867 25.1423627125063 60.5062301379652 25.1423715872396 60.506195616656 25.1424188023301 60.5061461699613 25.1424170616606 60.5061155646862 25.1424055916934 60.5060593457939 25.1423967171516 60.5060085572046 25.1423534206993 60.5059930790729 25.1423666909217 60.5059761022592 25.1423574640641 60.5059593567142 25.1423222719127 60.5059457079523 25.1423217966407 60.5059301827631 25.142342008302 60.5059068553103 25.1423146416919 60.5058845870595 25.1422885257424 60.5058112751558 25.1422859478758 60.5057262798202 25.1422518221175 60.5056705625033 25.1421841496998 60.5056448592228 25.1421970764542 60.5055628419122 25.1422149390593 60.5055180954867 25.1422618099045 60.5054175508041 25.1422513210634 60.5053882314069 25.1422883483646 60.5053470447831 25.1423180418284 60.5052020682182 25.1423163793884 60.5051451782908 25.1423870369097 60.5051128749255 25.1423755188198 60.5050903187128 25.1424196798575 60.5050576175284 25.1424531304289 60.5049688274722 25.1424638219704 60.5048817539532 25.1424745973078 60.5048224622196 25.1424275639723 60.5047246442205 25.1423245693154 60.5046927916772 25.1423293064918 60.5046959160928 25.1422544068143 60.5047609131212 25.141410307096 60.5059764406657 25.1417548100839 60.5061325112277 25.1395504063439 60.5061341850967 25.1395268167827 60.5062181569391 25.1383406355809 60.5062455679835 25.1379268308015 60.5063019766048 25.1370973431172 60.5064672756 25.134671318712 60.5064925714889 25.1342984608369 60.5065335986328 25.1336936012611 60.5065950882462 25.1327868763507 60.506711450249 25.1312236715407 60.5069705611456 25.1273094104341 60.5071068342475 25.125250157753 60.5076066492927 25.1179985098684 60.5062267823674 25.1175708004513 60.5057358802955 25.1174532540895 60.5057068261008 25.1171865134508 60.5056681254154 25.1168312948431 60.5056570240516 25.1167294240652 60.5055838988707 25.1160581156144 60.5054508174424 25.1148950394824 60.5055032734189 25.1149196560349 60.5055132941855 25.114924592113 60.5055654361715 25.1149517766644 60.5055714007477 25.1149550361367 60.5056058688342 25.1149752888424 60.505624307528 25.1149886780173 60.5056734693167 25.1150331369072 60.5056831948342 25.1150413319254 60.5057001404969 25.1150532963012 60.5057175121771 25.1150623584494 60.5057221273057 25.1150641847474 60.5057412515248 25.1150688835001 60.5057591851393 25.1150687705986 60.5057770275924 25.1150647474081 60.5057831040118 25.1150625732425 60.5058006009543 25.1150544359842 60.5058178657951 25.1150444909951 60.5058237962745 25.1150408865487 60.5058751640486 25.1150081805752 60.5058918006552 25.114996359763 60.5059253958194 25.1149707142802 60.5059361247771 25.1149628426088 60.5059702969415 25.1149405327798 60.5059757366915 25.1149371571375 60.5059757366915 25.1149371571375 60.5060097528605 25.1149120698565 60.5060266630155 25.1148999052343 60.5060443088526 25.1148902293523 60.5060620882019 25.1148855540526 60.506098663556 25.1148845948365 60.5061345193982 25.1148816558603 60.506152417277 25.1148790134259 60.5061646125026 25.1148770300993 60.5062174738483 25.1148680401741 60.5061954132029 25.1148106054677 60.5049205417886 25.1114909272037 60.5044669643086 25.1103099862842 60.5040284129064 25.1111754718537 60.503929230119 25.111366122675 60.5038656113914 25.1114938963945 60.5034531168255 25.1123023275605 60.5032713751553 25.1126584637071 60.5028586990363 25.1134672396034 60.5023257066748 25.1145117223133 60.5022462796167 25.1133605817296 60.5022186755916 25.1129607462526 60.5021865900797 25.1126536971267 60.5021699572518 25.1125425999955 60.5021499943605 25.1124094258248 60.5020086565688 25.1116780684145 60.5019104882844 25.1111701161595 60.5018102436363 25.1106513982988 60.5017298838116 25.11023559452 60.5016655431649 25.1099027156457 60.5016245862308 25.1096907542753 60.5014645993493 25.1091920965895 60.5012447479736 25.1088458860024 60.5010700914715 25.1087032495214 60.5009749585851 25.108650304666 60.5009228887792 25.1086213451749 60.5009004928912 25.1086088840413 60.5003984042938 25.1083294995273 60.5003874694108 25.1083234541233 60.5001653176449 25.1081768369343 60.5000930808488 25.1081292067103 60.4999160820274 25.1079151915002 60.4997568946715 25.1076557474209 60.4996186328272 25.1073994739753 60.5001185417671 25.1057884088078 60.5000269340369 25.1055410527079 60.5003222578265 25.1051272958527 60.4998755395597 25.1039187482564 60.5000163987401 25.1033822445671 60.5001805395709 25.1028605994591 60.5003835479613 25.1023963658074 60.500616871418 25.1019830144184 60.5008717548206 25.1016389206875 60.5011350800231 25.1013150500212 60.5015122214029 25.1009040458373 60.5016805806552 25.1007651780133 60.5019688928533 25.1005418599086 60.5022891298174 25.1003221321358 60.5031486542689 25.0998601136362 60.503444949122 25.0997130863337 60.5037307423387 25.0996257840237 60.5040478939555 25.0995029166965 60.5044914096719 25.0993932795073 60.5046198082161 25.0993437820746 60.5053474560509 25.0990491836877 60.5059576892535 25.0986641797709 60.5061873379824 25.0984443232851 60.5064828956036 25.0981265696579 60.5066601984035 25.0979172048938 60.5067374672921 25.0978248905326 60.5067437538105 25.0978437727838 60.5067533814974 25.0978727493345 60.5068800986911 25.0982541447104 60.5069892855806 25.0985827332347 60.5070646928839 25.0984864307307 60.5072219206174 25.0982856897963 60.5072904478352 25.0981981853183 60.5076485902133 25.0977427917892 60.5077833285226 25.0981336896155 60.5079187213401 25.0985264828875 60.5085556638477 25.0979732898244 60.5085051348163 25.0977804005874 60.5083825461536 25.097312595715 60.5082157705276 25.0966761611109 60.5082583662495 25.0965960728709 60.5083232982282 25.0968509871988 60.5086047391404 25.0979306160389 60.5086321118015 25.0980350880491 60.5088426569776 25.0988387254734 60.5089426473252 25.0992204032762 60.5095300654254 25.0977927477556 60.5095829286079 25.0978721589764 60.5097310863059 25.0982058659115 60.5098073127797 25.0983775489377 60.5098459209393 25.0984612579794 60.5108085972254 25.1006331939238 60.5107895649992 25.1009517940299 60.5114575502477 25.1012293291049 60.5116241248557 25.0988367527877 60.5116306625022 25.098742778981 60.5116419128931 25.0985805672728 60.5116794795775 25.0980397172243 60.5117172678665 25.0974956651356 60.5117380737104 25.0971905382564 60.5117505831137 25.0970103093079 60.5117549644621 25.0969472271399 60.5117593457805 25.0968841449554 60.5117826356949 25.0965542987904 60.511814553501 25.0960946156852 60.5118159901773 25.0960738203344 60.5118452184946 25.0956529838816 60.5118960247212 25.0949211604962 60.5122660419716 25.0946547026892 60.512340029955 25.0946013384312 60.5123910025193 25.0945645542039 60.5125258393707 25.0944672853774 60.5126622020533 25.0943693249702 60.5135601319449 25.093703792017 60.5131109323929 25.0917494075761 60.5120676614828 25.0924702549742 60.5122695164679 25.08958679355 60.5124066367796 25.0877159623768 60.5124292849873 25.0874068332305 60.5124754477153 25.0867251128022 60.512483003139 25.0866106354322 60.512502805536 25.0863111630693 60.5126441321181 25.0842641602683 60.512777851815 25.0823155908198 60.5129126055505 25.0801505525543 60.5130172860723 25.0787149078875 60.5135526666257 25.0716089819883 60.5099774045824 25.0707288147876 60.510875796087 25.0563279624011 60.5110771920936 25.053720194692 60.5110799634848 25.0536842170877 60.511246310612 25.051529898518 60.5118847244875 25.0502982191261 60.5120185925671 25.0479404702786 60.5121851294131 25.0450063816331 60.5125484276618 25.039697411963 60.5121766640993 25.0399956855966 60.511962691179 25.0404816803778 60.5118083989168 25.0406796612002 60.5119807431732 25.0385338913742 60.5114142357048 25.0392895905255 60.5111350558821 25.0396425384018 60.5106430660073 25.0402867192794 60.5101445412409 25.0407698364819 60.5100160067358 25.0408943919105 60.5092173843749 25.0416660533243 60.508205086136 25.0426453825302 60.507410035408 25.0434144280078 60.5067653757677 25.0440372995307 60.5067082267203 25.0439796218903 60.5066886838676 25.0438926494355 60.5064856061396 25.0429890424768 60.5041411058206 25.0448782616033 60.5037999912048 25.0451506203537 60.5034601899188 25.045421928995 60.502982269785 25.0458088293779 60.5029409347042 25.045842331427 60.5029073116523 25.0458695051426 60.5028338787866 25.0459288504519 60.502162759955 25.0464690062209 60.5008812155635 25.047508469032 60.4995761237269 25.0485669632334 60.4991543279562 25.0489090257804 60.4991213537012 25.0489357716646 60.4987331437544 25.0492505873269 60.4986173208388 25.0493445295749 60.4985194097086 25.0494251769869 60.4985176260083 25.0494266497993 60.498075175329 25.0497911066177 60.497675732923 25.0501081057746 60.4972999286793 25.0504128255527 60.4968652398605 25.0507652998828 60.4967907960374 25.0508256666104 60.4967018398327 25.050897191556 60.4959575142246 25.0515013066273 60.4958586386696 25.0515768824888 60.4955296263684 25.0518405803591 60.4940213923395 25.0530412753382 60.493487428448 25.0534787693237 60.4921876459534 25.0545225116876 60.4916095071737 25.0549944598642 60.4913401855246 25.0552143172285 60.4908654188862 25.0556018641433 60.4908284964101 25.055632018308 60.4905196183668 25.0558850160083 60.4903062291466 25.0560591680952 60.4900785860541 25.0562450022434 60.4898362440754 25.0564427994387 60.4896511819771 25.0565898914993 60.4892474409222 25.0556280318424 60.4892087664646 25.0555410799153 60.4889348818757 25.0549250028138 60.4888362688085 25.0549996073363 60.4885974255398 25.0551803773079 60.4882716407065 25.0554268745408 60.4880299088141 25.0556097587405 60.487974797329 25.0556514838521 60.4879039787533 25.0553008518001 60.4878834772631 25.0551994003514 60.4877979725369 25.0547760581818 60.4877743435977 25.0546591043913 60.4876611811114 25.0540989035613 60.4876404064967 25.0539960319853 60.4875354217394 25.0534763548359 60.4873999394589 25.052805666913 60.4873787097115 25.0527006035919 60.4872919973023 25.0522713764171 60.48723896792 25.0521468702723 60.4869661043055 25.0515058968765 60.4867351089596 25.050963313079 60.4865161097667 25.0504489571977 60.4860894004322 25.0494746832985 60.4860013567377 25.049268326812 60.4857361608146 25.04865948418 60.4855415731926 25.0476561044531 60.484953800658 25.0481340251729 60.4849043897479 25.0481741969691 60.48475988505 25.0482917028852 60.4830966053965 25.0496399301158 60.4830407838073 25.0496851777016 60.4827134845119 25.0499465924832 60.4827066390006 25.0499507707645 60.4825593202321 25.0497217500363 60.4822330804518 25.0482106064603 60.4820244625881 25.0472742978498 60.4818458900658 25.0462987949129 60.4817650112241 25.045783097538 60.4816316484273 25.0444400561361 60.4816195163808 25.0441768121327 60.481629473195 25.043938972195 60.4816722486331 25.0436528574847 60.4820650008112 25.0423222502972 60.4821663808556 25.0418676393541 60.4822603278933 25.0414463961319 60.4822601703117 25.0412032820794 60.4822720219205 25.0411455491188 60.4822947696725 25.041034745106 60.4807210366157 25.0400174803199 60.4799466087091 25.0395606709691 60.4794359295436 25.0396693042633 60.4786615539297 25.0398949134766 60.4781453627044 25.0401595623458 60.4778604850486 25.0403716725131 60.4774221794692 25.0405422281411 60.4766858622501 25.0407700735872 60.4763725633419 25.0407600359578 60.4761145939683 25.0407289208497 60.4758942278854 25.0406964846178 60.475765461366 25.0407263396033 60.4757209400455 25.0407366666467 60.4754541049777 25.0408754135051 60.4751538744968 25.0411197390165 60.47489071645 25.0414470873095 60.4746604124837 25.042029563222 60.4745891177851 25.0421720137709 60.4741947741697 25.0425885452304 60.4741019041619 25.0427633140544 60.4740571795711 25.042888912945 60.4740478376048 25.0429151300796 60.4737537112793 25.0438554508973 60.4736412996998 25.0440696346254 60.472218377753 25.046167479599 60.4720757716411 25.0463776566045 60.4717084288485 25.0469779612593 60.4716156899317 25.0471111607466 60.4711862420556 25.0476577443445 60.4709578726024 25.0480778208151 60.4706536344219 25.0486020525142 60.4705376051463 25.0487247980241 60.4705285753016 25.0487349823267 60.4703372504809 25.0489506634046 60.4701457367938 25.0491872199306 60.4700444754176 25.0493433310786 60.4699713779507 25.0494950583346 60.4698267087306 25.049870314863 60.4697832608409 25.0499639013345 60.4697252765043 25.0500485724114 60.4696588135473 25.0501184887179 60.4695403496152 25.0502431174394 60.4694481563425 25.0503045164579 60.4692788034077 25.0503750375872 60.4689869634294 25.0506494859941 60.4688828785278 25.0507643155657 60.4687178602084 25.0509605680056 60.4685095472892 25.0513771120601 60.4683731634829 25.0515963098439 60.4682925540733 25.0516637572536 60.46789397159 25.0519101115961 60.4678211382959 25.0519596276593 60.4677199994845 25.0519977061745 60.467390424521 25.0520323041377 60.4668899276145 25.0524223114972 60.4660860522098 25.0536587686791 60.4660571789354 25.0537031716759 60.465838367476 25.0540384734422 60.4656350356322 25.0542621587723 60.465002430316 25.0548973896147 60.4630099353298 25.057896510241 60.4629665715032 25.0579573946727 60.4620414791529 25.0593806762774 60.4620191573953 25.0594150015063 60.461980714755 25.0594740422712 60.4618441825031 25.0596832939105 60.461495792998 25.0590289318577 60.4614513347008 25.0588586233931 60.4613941675676 25.0586395862715 60.4613659732592 25.058384754404 60.4613646160443 25.0583563175654 60.4613572202736 25.0582031118631 60.4613543021244 25.0581427402099 60.4613223403283 25.0579826177493 60.4612405993634 25.057814775432 60.4611447712726 25.0577076664786 60.4610258711788 25.0576517879651 60.460896049262 25.0576414847639 60.4608480126558 25.0576097265512 60.4607743303133 25.0575610408575 60.4606831123866 25.0574448925145 60.4606133315285 25.0573126413605 60.4604539381655 25.0567554251126 60.4598585706652 25.0548164196226 60.4595675641535 25.0542420077613 60.4593202465772 25.053771998796 60.4591968660755 25.0534948973107 60.4590110555459 25.0530351282032 60.4588922807434 25.0525065699996 60.4589363273782 25.0513728461643 60.4589782944086 25.0499256962099 60.4586416925642 25.0467677059715 60.458427300223 25.0458038417622 60.4582108701656 25.04544193338 60.4579973220246 25.0450745098895 60.4577536517184 25.0442897088715 60.4575447808749 25.0436225033091 60.4575178587626 25.0435364879864 60.4574339359617 25.0435547587303 60.4573941842737 25.0435743176642 60.4568400365602 25.0438650158075 60.4560244413418 25.0442927939782 60.4559648716873 25.0444240320987 60.4559317395991 25.0444981080364 60.4558562582569 25.0446650890934 60.455848351156 25.0446826034018 60.4545587067006 25.0475354034645 60.4526417674557 25.0485011524464 60.4510023207943 25.0493222884752 60.4492982991317 25.0501793911347 60.4486443472252 25.0505020448286 60.4484166130787 25.0517842024974 60.4479398440153 25.0544681062031 60.4474054656727 25.0574382450748 60.4464879764987 25.0626390703897 60.4450806517892 25.0763324289853 60.4450589456835 25.0765434710461 60.4450550466622 25.0765813486753 60.4450506594235 25.0766239814968 60.444974970934 25.0771477705997 60.4449679384064 25.0771931954254 60.4449030441855 25.0776124559371 60.4448816753615 25.0777505090355 60.4446057856566 25.0795330723523 60.4444455195155 25.0805688009357 60.4444352231286 25.0811123443635 60.4443870878335 25.083039668699 60.4443622187785 25.0840919922255 60.4443083741548 25.086368963757 60.4442438587357 25.0890950877858 60.4442392036749 25.0892915712239 60.4442300985224 25.0896819809847 60.4441466882684 25.0932563832807 60.4440842765514 25.095828441889 60.4440658299253 25.0966111928906 60.4440376836887 25.0978170468517 60.4443366679405 25.0987535481873 60.4445292247567 25.099356722179 60.4445280916852 25.0994762710396 60.4445258154174 25.0995987951183 60.4445162085417 25.1001167688933 60.4445140505648 25.1002331418598 60.4445064871379 25.1006407112806 60.4444960406307 25.1012034142467 60.4442283834384 25.1013345375057 60.4437895620921 25.1015198367303 60.443350276391 25.1017053396989 60.4431576665452 25.1017785257966 60.4431044843818 25.1017977518455 60.4429528815936 25.1018563657505 60.4429087175144 25.1018731386414 60.4429985705325 25.1026157858707 60.4430156205566 25.1027567169851 60.443025870309 25.1028414054448 60.4430326404842 25.102898068066 60.4431314832692 25.1037256649288 60.4431999988595 25.1042993373041 60.4432711252777 25.1048938362405 60.4434677195101 25.1048405220579 60.4436312502657 25.104795786248 60.4438104435259 25.1054400957632 60.4438177467575 25.1054667365466 60.4450107781024 25.1051192231778 60.4451493025157 25.1050793424602 60.4452827850129 25.1050329019188 60.4452950099249 25.1051479667075 60.4452954943814 25.1051517195528 60.4453315006389 25.1054613058777 60.4454092699687 25.1061299173874 60.4454997621451 25.1069078974648 60.446150989588 25.1123475703765 60.4469312241257 25.1188687298603 60.4469536974335 25.1190566195533 60.4472709297762 25.1217089295786 60.4473611502507 25.1224633037957 60.4474121333335 25.1228896465856 60.4474269547634 25.123013537557 60.4474351500492 25.1230820914332 60.4474826772408 25.1230558794808 60.4480699900217 25.1227320233095 60.4480771730354 25.1227280637097 60.4483090890704 25.1225996550543 60.4483777407976 25.1225633142322 60.4486035559513 25.12243663702 60.4486555194653 25.122407858196 60.4492833072918 25.1220603157149 60.4493136360998 25.1220437112295 60.4493313391095 25.1220335988946 60.4493396156266 25.1220294849408 60.4499891387001 25.1216699638588 60.4511299121281 25.1210423293426 60.4516186390078 25.1207933133817 60.4521330809109 25.1205266399217 60.4524988543166 25.1232902761142 60.4525629553714 25.1237772225213 60.4526549321857 25.1244716037687 60.4527312457696 25.1250513072674 60.4527521809471 25.125210304122 60.4530383340064 25.1273842059445 60.4531257059748 25.1280487798986 60.4531372506465 25.1281385912518 60.4531720011703 25.1284086735431 60.4531587753451 25.1284153076549 60.4532419730261 25.1289569039202 60.4532530948819 25.1290287940749 60.4533914075293 25.1301068280254 60.4534011945461 25.1301719589748 60.4534188902744 25.1303066200739 60.4534441211054 25.130520687981 60.4534649072513 25.1306765727349 60.4536072455961 25.1317441884092 60.4538145407047 25.1332994919665 60.4548362066077 25.1327944954812 60.4549289321862 25.1327486765482 60.4549832429664 25.1327219011799 60.4553634633774 25.1325344866452 60.4556071392825 25.1324146805069 60.4557402291172 25.1323492299196 60.4561762300093 25.1321348537576 60.4562350359162 25.1321064906235 60.4561920560807 25.131753641446 60.456004215652 25.1302111893238 60.4559936474235 25.1301242954199 60.4558121863832 25.1286339367243 60.4557897806365 25.1284504955896 60.455699646085 25.1277105440425 60.4554843690147 25.1259447117538 60.4554176026194 25.125397283148 60.4552655076686 25.1241505057671 60.4549321102662 25.1214229590934 60.4550898538859 25.1209756034032 60.4551962176057 25.1205297037886 60.4552966092109 25.1201087671981 60.4556621286504 25.1199378725864 60.4558611879756 25.1198412073606 60.4560342999754 25.1197686805752 60.4571738526091 25.1192199598804 60.4570895839027 25.1185549821504 60.4576371782917 25.118685869264 60.4582881525098 25.1188414578577 60.4590503277385 25.1247965252961 60.4590988640321 25.1251695901169 60.4591264950157 25.1253864448344 60.4591791627581 25.1257998821725 60.4592161948786 25.1260818288328 60.4592317670562 25.1262012308482 60.4594254027903 25.1276997252159 60.459511268644 25.1283646987758 60.4595329332188 25.1285356551114 60.460026090392 25.1323489402441 60.460134194398 25.1332349884167 60.4602403315414 25.1341150445014 60.4602793041895 25.1344130654989 60.4607455153481 25.1379785245958 60.4607783881684 25.1382288182528 60.4608008603037 25.138401923478 60.4608705668495 25.1389206911383 60.4608873590891 25.139062059212 60.4610333913807 25.1402919671703 60.4610895743379 25.1407502260606 60.4611398965828 25.1411605718222 60.4612321041535 25.1418543317075 60.4613126731233 25.1425148962626 60.4613358170607 25.1427056827958 60.4613436467805 25.142766798363 60.4618353103454 25.1466088254199 60.4620150711144 25.1480613465674 60.4620314983427 25.1481933055255 60.4620456831969 25.1483080234352 60.4621285855435 25.1489779074435 60.4621285855435 25.1489779074435 60.46146334455 25.1489658075193 60.4607747504846 25.148975533825 60.4601547047488 25.1489882128572 60.4595507397977 25.1489792436899 60.4589084507981 25.1489694922955 60.4583158412382 25.1489730612084 60.4571056028153 25.1489680566642 60.4570434758838 25.1489670473291 60.4558295665671 25.1489602874387 60.4556698928803 25.1489596668379 60.4550093107978 25.1489565028287 60.4547070487921 25.1489587438681 60.4542285222276 25.1489614539603 60.4540005646829 25.148954301313 60.4532999012367 25.1489667461188 60.4525675509119 25.1489719571889 60.4518315355472 25.1489603037813 60.451236529871 25.1489582244187 60.4508832952643 25.1489478207833 60.4507845595999 25.1489479678013 60.4505222924496 25.1489529677394 60.4498010685369 25.1489574715648 60.4495496031641 25.1489357857773 60.4494781853402 25.1489351052505 60.449464942559 25.1492244892334 60.4494603481827 25.1492965628055 60.4494589564979 25.1493166403094 60.449453270925 25.1493883941542 60.4494499314031 25.1494240720759 60.4494420512264 25.1494949508258 60.449437410345 25.1495300482722 60.4494322354506 25.1495648488447 60.4494264347859 25.1495992123198 60.4494196084528 25.1496327978408 60.4494112625264 25.1496649608345 60.4494012353712 25.1496950560038 60.4493893815349 25.1497223098695 60.4493757430102 25.1497458655704 60.4493636298079 25.1497615533427 60.4493473420915 25.1497767150042 60.4493301429835 25.149787038018 60.4493124523487 25.1497930075524 60.4492945477285 25.1497952077726 60.4492765980725 25.149794810786 60.449258679564 25.1497927758122 60.4492408136813 25.1497893561546 60.4492052855242 25.1497790692206 60.4492017657547 25.149777833213 60.4489747669485 25.1496689581188 60.4489572212245 25.1496614298416 60.4489395876309 25.1496546883109 60.4489314574477 25.1496519329674 60.4489137012027 25.1496467073628 60.4488958860281 25.1496424122946 60.4488421924913 25.1496343043711 60.448806314445 25.1496324549322 60.4487883700839 25.1496324395132 60.4487166316469 25.1496377750381 60.4486272882209 25.1496546018098 60.4486094759263 25.1496589238386 60.4483249385762 25.1497372302222 60.448312564293 25.1497399338895 60.4481156429081 25.1497675517115 60.4478464038668 25.1497794853854 60.4478360289501 25.1497800028162 60.4476388354519 25.1497990184425 60.4476208809569 25.1497995670536 60.4476029353315 25.1497994607066 60.4475849968104 25.1497985722481 60.4475670626197 25.1497967018659 60.447549177377 25.1497938288444 60.4475135606919 25.149784929061 60.4474958731105 25.1497788270908 60.4474782857987 25.149771537777 60.4474608344 25.1497630409148 60.4474435540537 25.1497532799699 60.4474264619507 25.1497421994287 60.4474095850126 25.1497297977617 60.4473929768309 25.1497160537433 60.4473766635702 25.1497009113493 60.4473650667056 25.1496891001474 60.4473494604525 25.1496711906961 60.447334308633 25.149651728367 60.4473048665699 25.1496101733213 60.4472904741864 25.1495884863559 60.4471913629506 25.1494322221216 60.4471768145562 25.1494109441227 60.4471620414111 25.1493902970153 60.4471470360551 25.1493703902974 60.4471317294714 25.1493514278639 60.4471217731532 25.1493400507258 60.4471058589256 25.1493232498323 60.4470896559767 25.1493076470144 60.4470731478725 25.1492933522794 60.4470563887094 25.1492803807269 60.4470393797491 25.1492688231781 60.4470221402011 25.1492587694326 60.4470046877614 25.1492502003025 60.4469870777876 25.1492432217094 60.4469693294891 25.1492379234524 60.4469514429731 25.1492349599624 60.4469335040506 25.1492346899309 60.446915608263 25.1492375260314 60.446897940639 25.1492438576659 60.4468807210936 25.149253999536 60.4468641941934 25.1492681013306 60.4468581579455 25.1492744983185 60.4468430166629 25.1492939567265 60.4468291278327 25.1493169432646 60.4468166005474 25.14934290636 60.4468054461952 25.1493713727156 60.4467956113289 25.1494017272941 60.4467870009109 25.1494335937494 60.446779511182 25.149466614411 60.4467729212175 25.1495004019162 60.4467670572325 25.1495347298293 60.446761954366 25.1495695416172 60.4467575580172 25.1496047858516 60.4467538753944 25.1496403348732 60.4467508880449 25.1496761533763 60.4467485770119 25.1497121697264 60.4467469056429 25.1497483314742 60.4467462626518 25.1497680011177 60.446745661944 25.1498043019279 60.4467461047527 25.1498769554551 60.4467469229113 25.1499132482781 60.4467547185008 25.1501306411203 60.4467556619738 25.1501669086515 60.4467562198083 25.1502032162932 60.4467563289343 25.1502395494519 60.4467558719337 25.1502758602665 60.4467546506229 25.1503121054684 60.4467522309251 25.150349364106 60.4467486021991 25.1503849281439 60.44674390672 25.1504199892874 60.4467381604194 25.1504544011973 60.4467314430553 25.1504880866207 60.4467238072114 25.1505209516716 60.4467153152023 25.1505529564473 60.4467060290902 25.1505840428813 60.4466960478413 25.1506142235241 60.4466854073523 25.1506434963339 60.4466742247895 25.150671891006 60.4466625919096 25.1506995477533 60.4466382118003 25.1507528703443 60.4466255099457 25.1507785699657 60.4466125203153 25.1508035951359 60.4465857084314 25.1508518930585 60.4465719405264 25.150875199079 60.4465437535915 25.1509201938154 60.4465335329911 25.1509357176411 60.4465042450198 25.1509777390251 60.446473991638 25.151016852094 60.4464584640183 25.1510350225482 60.4464426248826 25.1510521017972 60.4464264627373 25.1510679087095 60.4464098690413 25.1510817404917 60.4463927094936 25.1510923322802 60.4463750612351 25.1510987707674 60.446357150184 25.1510998615136 60.4463394193976 25.15109452499 60.4463363517676 25.1510928633171 60.4463196951708 25.1510795035522 60.4463045443105 25.1510600956633 60.4462911252419 25.1510360447307 60.4462793656113 25.1510086091854 60.4462691003017 25.1509788345867 60.4462600699209 25.1509474446382 60.4462518002059 25.1509152116145 60.4462441326487 25.150882362666 60.4462303056959 25.1508153247659 60.4462182376618 25.150746896258 60.4462127642031 25.1507123047641 60.4462085640228 25.1506840397135 60.4461829764307 25.1504723702444 60.4461463463552 25.150116737771 60.446142164883 25.1500814185557 60.4461278815804 25.1499763597069 60.4461167203938 25.1499072984228 60.4461105084349 25.1498732218106 60.4461037989683 25.1498395370757 60.4460964947935 25.1498063588183 60.4460928513813 25.1497910416899 60.4460846080582 25.1497587894348 60.4460757982109 25.1497271329497 60.4460664407964 25.149696143871 60.4460565360675 25.1496658403637 60.4460461204249 25.149636256715 60.4460351943734 25.1496074292535 60.4460237853399 25.1495793927765 60.4460119202467 25.1495521457529 60.4459995908771 25.1495257431855 60.4459867723273 25.1495003319179 60.4459734740762 25.1494759477674 60.4459596971334 25.14945266339 60.4459454773952 25.149430476743 60.445930842793 25.1494094589502 60.4459158287188 25.1493895716409 60.4459004449037 25.1493708687955 60.4458853286064 25.1493539685771 60.4458686115437 25.1493407950997 60.4458515859007 25.1493293297705 60.44583697861 25.1493199809732 60.4458033008793 25.1492948477282 60.4457914422111 25.149287469437 60.4457737538484 25.149281313552 60.4457558383522 25.1492794970114 60.4457378984177 25.1492791542978 60.445731944388 25.1492791840093 60.4456960547494 25.149279735255 60.445683070425 25.1492805466796 60.4456651631362 25.1492832015057 60.4456466015722 25.149287893149 60.4456289651513 25.1492945317496 60.4456093108376 25.1493059023906 60.445575107695 25.1493347700502 60.4455582626952 25.1493473078265 60.445541979842 25.1493615223503 60.4455272128849 25.1493820674869 60.4455135013481 25.1494055337687 60.4455097193232 25.1494119294686 60.4454807305973 25.1494547700713 60.4454710246435 25.1494685376588 60.4454568474942 25.1494908124199 60.4454451802785 25.1495127444256 60.445433483051 25.1495402769576 60.4454229704456 25.1495696871336 60.4454147749459 25.1495932757666 60.4453930902128 25.1496511701094 60.4453832942625 25.1496759222351 60.4453609484883 25.149732781562 60.4453504360919 25.1497622097742 60.4453441805797 25.1497819251224 60.4453255709003 25.1498478425837 60.4453061946491 25.1499090045826 60.4452982921134 25.1499349395158 60.4452897912637 25.1499669435431 60.4452818270797 25.1499987897877 60.4452651442212 25.1500631250073 60.4452598886036 25.1500817654186 60.4452507489507 25.1501130422212 60.4452414343099 25.1501491824627 60.4452370120863 25.1501618676307 60.4452329353157 25.1501774416187 60.445228093963 25.1502039294741 60.4452216721291 25.1502317251114 60.4452181937423 25.1502528820324 60.4452154260559 25.1502708901151 60.4452124772733 25.1502881450198 60.4452100519512 25.1503036432561 60.4452091964066 25.1503099451021 60.4452048449751 25.1503452031664 60.4452019066746 25.1503690378628 60.4451992434904 25.1503971650747 60.4451956055672 25.1504314191198 60.4451935641954 25.150457111485 60.4451905960286 25.150484619795 60.4451901701664 25.1504985864525 60.4451892464433 25.1505284507161 60.4451884578823 25.1505505816889 60.4451847726435 25.1506228483642 60.4451839284107 25.1506429102164 60.4451828598016 25.1506791631449 60.4451821329499 25.1507154511762 60.4451816288326 25.1507477274085 60.4451815401228 25.1507840518725 60.4451836184537 25.1508619895863 60.4451848234335 25.1508964045488 60.4451866720544 25.1509325461838 60.4451891026945 25.1509601474876 60.4451925428702 25.1509957805769 60.4451938520545 25.1510105211483 60.445197604794 25.1510460274151 60.4451990412468 25.1510550528975 60.4452054749826 25.1510889525661 60.4452116183233 25.1511213418083 60.4452168065206 25.1511560939411 60.4452228820503 25.1511952492428 60.4452336473503 25.151221577093 60.4452408043082 25.1512376940785 60.4452515709957 25.1512667122109 60.4452550426469 25.1512780760768 60.4452644702252 25.1513089699506 60.4452682690261 25.1513193154475 60.4452805447022 25.1513457574998 60.4452946853744 25.1513680944403 60.445309664773 25.1513880933153 60.4453250567791 25.1514067599481 60.445331519452 25.1514142637585 60.4453788943661 25.1514660510733 60.4453931769476 25.151480490815 60.4454093627071 25.1514961675962 60.4454421667001 25.1515256788273 60.4454497998235 25.1515320982096 60.4454665251451 25.1515452358139 60.4454835172264 25.1515568858513 60.4455008875953 25.1515660240111 60.4455049979651 25.1515677536833 60.4455227165816 25.1515735091229 60.4455405685136 25.1515772210479 60.4455763486692 25.1515830227232 60.445588959857 25.1515857417995 60.4456423664979 25.1515997218921 60.4456558054023 25.1516031937867 60.4456736593485 25.1516070510526 60.4456915649326 25.1516094511349 60.4457095062832 25.1516092497078 60.4457651133105 25.151599273226 60.4457739085675 25.1515988280014 60.4457918545479 25.1515996079281 60.4458276943057 25.1516038793084 60.4458433177883 25.1516049184541 60.4458971457471 25.1516071861034 60.4459150662555 25.1516093672124 60.4459355668649 25.1516136740068 60.4459533315131 25.1516188633998 60.4459564623633 25.1516199034482 60.4459740961189 25.1516266636213 60.4459914739451 25.1516356924574 60.4460082154408 25.1516487021607 60.4460115934083 25.1516520186441 60.4460272425056 25.151669798628 60.4460425662081 25.1516887241762 60.4460582661216 25.1517062831664 60.4460752934561 25.1517204764643 60.446092153778 25.1517329886756 60.446108753035 25.151746751864 60.4461244008604 25.1517644411255 60.4461274541874 25.1517689576743 60.4461405334675 25.1517937734052 60.4461513528733 25.1518227168052 60.4461604004929 25.1518540695482 60.446168408127 25.1518907349609 60.446173489196 25.1519255488497 60.4461755516589 25.1519615885892 60.4461754577458 25.1519742461171 60.4461729743231 25.1520101805433 60.4461679433526 25.1520450417312 60.4461666981603 25.1520517475967 60.4461592254727 25.1520847478514 60.446149572735 25.1521153269522 60.446137229161 25.1521416233555 60.4461313746368 25.1521507724551 60.4461157892368 25.1521686727736 60.4460989911027 25.1521813702289 60.4460816627879 25.1521908074997 60.4460701001595 25.1521956998645 60.4460523891855 25.1522015050034 60.4460345548165 25.152205535666 60.4460166712038 25.1522086056687 60.4459987618357 25.1522111136024 60.4459925396835 25.1522118851419 60.4459746240193 25.1522139389712 60.4459566950996 25.1522156845197 60.4459208163572 25.1522176679993 60.4459038688503 25.1522176490366 60.4458679818388 25.1522157973656 60.4458607775598 25.1522150431794 60.4457711201657 25.1522073021295 60.4457531730204 25.1522070854583 60.445736793485 25.1522078704341 60.4457188732869 25.1522095972972 60.4456473398382 25.1522219498014 60.4455575994572 25.1522373723741 60.4455546325941 25.1522377953891 60.4455367314426 25.1522402482654 60.4455188103283 25.1522425568482 60.44550090691 25.1522448462451 60.4454471834916 25.1522520605496 60.4454414292449 25.152252896379 60.4453877691714 25.1522620884588 60.4453699337911 25.1522660463444 60.4453343807232 25.1522759731715 60.4453196328288 25.1522810826659 60.4452138316442 25.152321575563 60.4451960689923 25.1523268926038 60.4450878666769 25.1523509615642 60.4450839322253 25.1523522029864 60.4449956617419 25.1523849011952 60.4449821882172 25.1523886475842 60.4449643420949 25.1523924787126 60.4449464416938 25.1523949859437 60.4449284954846 25.1523961324432 60.4449105563038 25.1523958425016 60.4449034088905 25.1523953031968 60.4448854896498 25.1523932125293 60.4448317466017 25.1523867033962 60.4448138033916 25.1523861228457 60.4447958569079 25.1523853061719 60.4447779433672 25.1523829788825 60.4447600849984 25.1523794487374 60.444742298742 25.152374642066 60.4447246105127 25.1523684846879 60.4447070639211 25.1523608832404 60.4446896933519 25.1523517267071 60.4446725521452 25.1523409757057 60.4446602783867 25.1523321477503 60.4446436948697 25.1523182203724 60.4446275515567 25.1523023593612 60.4446118342763 25.1522848381874 60.444596510406 25.1522658950136 60.4445815832189 25.1522457659634 60.4445670006334 25.1522245812387 60.4445527556899 25.1522024866557 60.4445251593872 25.1521560291334 60.4443935396393 25.1519090938182 60.4443906739216 25.1519038579161 60.4443772804169 25.151879697525 60.4443362291796 25.151809192742 60.4443082507334 25.1517636846119 60.4442936239583 25.1517425573188 60.4442783608148 25.1517234657109 60.4442622772272 25.1517073836453 60.44424815888 25.1516976610809 60.4442305196779 25.1516911560032 60.4442125931534 25.1516904840061 60.4441945784976 25.1516957610043 60.4441774677915 25.1517066397862 60.4441611706007 25.1517217803606 60.4441490206163 25.1517348312172 60.4441335500048 25.1517532330715 60.4441187647193 25.1517737772478 60.4441056546988 25.1517985524239 60.4441031941562 25.1518043998769 60.4440931388078 25.1518344364961 60.4440842209413 25.151868134817 60.4440680564881 25.1519330007087 60.4440616364883 25.1519622490715 60.4440552091685 25.1519961512149 60.4440496893131 25.1520307288868 60.444044893664 25.1520657198405 60.4440439238253 25.1520735002599 60.4440399059721 25.1521088832743 60.4440365387697 25.1521445565126 60.4440339747757 25.1521805113116 60.4440327378581 25.1522053026129 60.4440317588096 25.1522415672803 60.4440318132706 25.1522778823088 60.4440329353744 25.1523141185225 60.4440352402719 25.1523501603217 60.4440379394223 25.1523783635212 60.444042387987 25.1524135564962 60.4440537078834 25.1524824961225 60.4440569830014 25.1525010690505 60.4440692547605 25.1525693548328 60.4440745811387 25.1525966090868 60.4440815740499 25.152630058047 60.4440830245472 25.1526368648627 60.4440902482543 25.1526701189615 60.4440936502052 25.1526848856766 60.4441001257166 25.1527101661036 60.4441070133438 25.1527340780209 60.4441117673 25.1527537303776 60.4441117673 25.1527537303776 60.4441247646391 25.1527804218879 60.4441309455502 25.1527915771527 60.4441443737797 25.152815663051 60.4441571434996 25.1528440762028 60.4441685346546 25.1528721677487 60.4441709340279 25.1528781027381 60.444193592696 25.1529344383347 60.4442020073582 25.1529564277571 60.444213064275 25.1529850291443 60.4442210149489 25.1530046455264 60.4442436910087 25.1530609439531 60.4442538822089 25.1530899399298 60.4442630887927 25.1531211185737 60.4442688667567 25.1531446756109 60.4442768173957 25.1531772525314 60.4442810480061 25.1531928448535 60.4442887232084 25.1532256373846 60.4442910877654 25.153249151922 60.444292944467 25.153285274038 60.4442937459933 25.153300988326 60.4442953429385 25.1533371615471 60.4442954649684 25.1533569861414 60.4442927727473 25.1533927848009 60.4442836849939 25.1534285102187 60.444271210731 25.15345446664 60.4442560964941 25.1534739745057 60.4442395396879 25.1534878929002 60.4442222309802 25.153497455042 60.4442045621277 25.1535037111639 60.4441866944969 25.1535072883181 60.444168761943 25.1535081243797 60.4441508514377 25.1535060144664 60.4441330873585 25.1535008606372 60.4441142466394 25.1534918961625 60.4440972377803 25.1534803192593 60.4440808412382 25.1534656174788 60.4440651410496 25.1534480223592 60.4440502227613 25.1534278744154 60.4440360816765 25.153405482929 60.4440227407757 25.1533812101413 60.4439604506947 25.1532504709571 60.4439555076517 25.1532404996207 60.4439424361055 25.1532155754672 60.4439289730585 25.1531915642397 60.4439151705935 25.1531683357414 60.4439010733288 25.1531458692617 60.4438719605202 25.1531033696974 60.4438570072915 25.1530832967198 60.4438418215793 25.153063945867 60.4438264126094 25.1530453347916 60.4438107806341 25.1530274816559 60.4437628096045 25.1529780005243 60.443746632738 25.1529623051088 60.4436327804667 25.1528547809853 60.4436280929033 25.1528502847587 60.4434177954812 25.1526457563244 60.4434012468845 25.1526317546177 60.4433845465741 25.1526184704381 60.4433676709013 25.1526061414269 60.4433506113959 25.1525948044175 60.4433160583059 25.1525751542612 60.44329857571 25.1525669859021 60.443280965896 25.1525600062689 60.44326323809 25.1525542330126 60.4432454291952 25.152549736743 60.443227548941 25.1525465714358 60.4432096334754 25.152544753213 60.4431916838055 25.1525443547221 60.4431737358272 25.1525453739225 60.443155835166 25.1525478627512 60.4431379995177 25.152551802024 60.4431345815255 25.1525527231877 60.4431168602923 25.152558437277 60.4430992668897 25.1525655982382 60.4430818277358 25.1525741682155 60.443064510621 25.152583767325 60.4430184766746 25.1526144279553 60.4429962681038 25.1526287944123 60.4429878069454 25.1526352004539 60.4429878069454 25.1526352004539 60.4429817191391 25.1525491343466 60.4427542270029 25.149421984148 60.440728805914 25.1495944735234 60.4407209086583 25.149561279982 60.4404075791116 25.1482677203584 60.4398094162594 25.1454858327395 60.4395159424486 25.1441737848597 60.4391858715188 25.1426642738113 60.4390616356381 25.1421127716267 60.4383334150371 25.1387670947526 60.4379418150986 25.1370186094198 60.4366615734562 25.1313019155389 60.4365249734327 25.1307021765527 60.4358877175955 25.1278830697475 60.4357981979474 25.1274871102647 60.4356402705338 25.1267885167113 60.4355930211016 25.126579016117 60.4353054345689 25.1252858792773 60.4342223810173 25.1203354179638 60.4331585840329 25.1156446314968 60.4320089729687 25.1105135785521 60.4320012457102 25.1104791393209 60.4318162043111 25.1096540322374 60.4317753426546 25.1094713013378 60.4317354779215 25.1092930192835 60.431696109524 25.109117452578 60.4316310612987 25.1088094795699 60.4314732489985 25.1081209581028 60.4313134604812 25.1073498465332 60.4312673824277 25.1071402780675 60.4312486331011 25.1070602378717 60.4312269583532 25.1069664676076 60.4310049957508 25.1060064895703 60.4308024332812 25.1050918921736 60.4307518895169 25.1048508651026 60.4302602161414 25.1026627393585 60.430254899328 25.102639410357 60.4297969872291 25.1006026035768 60.4296807887789 25.1000785984258 60.4294878948857 25.0992087869072 60.4293960260521 25.0987946394614 60.4293041826027 25.0983804746456 60.4292123381345 25.0979663303401 60.4291623942646 25.0977411885675 60.4291090371201 25.0975028380942 60.428886883551 25.0965104726194 60.4274742319485 25.0902011561587 60.427411447871 25.0899207782976 60.4269621584429 25.0879034531103 60.426550287221 25.086042223996 60.42636694718 25.0852137446591 60.4260387910436 25.0836948353778 60.4258697514761 25.0836165643077 60.425405561795 25.0834010292272 60.4253675617923 25.0833841544292 60.4240682764742 25.0827767283944 60.4237177862962 25.0826128706933 60.423030934075 25.0823027173743 60.4222594191822 25.0819529678074 60.4220399318418 25.0818535809005 60.4219470179263 25.0818041226309 60.4217922798471 25.0817218129742 60.4216374960647 25.0816394522811 60.4214827219896 25.0815571462781 60.4213279386287 25.0814748234237 60.4211734895951 25.0813926451202 60.420945029168 25.0812788988085 60.420736026275 25.0811747972422 60.4205198492212 25.081064598708 60.4203052191221 25.0809551823282 60.4201274749847 25.0808663351031 60.4198436160242 25.0807244371743 60.419729888577 25.0806666396354 60.4195310967314 25.0805656492826 60.4194852347744 25.0805423418194 60.4191664433104 25.0805422603913 60.4189566312217 25.0805422215922 60.4188249558 25.0805421544032 60.4169290986958 25.080540922941 60.4167946669352 25.080541544766 60.4183496842911 25.0749184759571 60.4168674027125 25.0733172380205 60.4166711392415 25.0731052517377 60.4154583918282 25.073863151343 60.4152770941019 25.0743667609402 60.4150462410046 25.0750080520553 60.4149032208538 25.0754062484287 60.414628032217 25.0751022360572 60.4143914845542 25.0748413838299 60.4141519052893 25.0745640790985 60.4138400377295 25.0742031176805 60.413508991434 25.073866815229 60.4133623864051 25.0743460423111 60.4132176872431 25.0748230275781 60.4131593106154 25.0749728872068 60.4132066856907 25.0750268568777 60.413485139015 25.075347933401 60.4132925140243 25.0758262942262 60.4131262484584 25.0762394403617 60.413101066935 25.0763005118112 60.4133882497406 25.0767374553186 60.4132226239695 25.0771459655522 60.4130371506222 25.0776037860285 60.4134928695894 25.0777113868365 60.4133515609013 25.0782249880558 60.4131810775379 25.0788430753365 60.4130014359007 25.0794945479952 60.4128667021642 25.0799831205842 60.4127409545293 25.0804391249827 60.4127132515514 25.0805403659135 60.4126645392758 25.080539894965 60.4125682825883 25.0805470744347 60.4120488716155 25.0805336076718 60.4119981558553 25.0805330913446 60.4117670426653 25.0805307476272 60.4115473510256 25.0805282211962 60.4114367521593 25.0805273655449 60.411256084984 25.0805255177336 60.410983939286 25.0805227590061 60.4109789359875 25.080522708798 60.4109157611978 25.080522054973 60.4108941132281 25.0805218415142 60.4104480463402 25.0805173096187 60.4101057206039 25.0805139103509 60.4100431839825 25.08051329156 60.4099345846505 25.0805122091319 60.4098256939753 25.0805108533342 60.4097504198825 25.0805100952932 60.409178199426 25.0805041534344 60.4081611866755 25.080493640951 60.4075258812694 25.0804870581812 60.4075374556642 25.0803772329971 60.4076070167974 25.079763739282 60.4075240007432 25.0797617324453 60.4075064991195 25.0797613114017 60.4067601817325 25.0797433103531 60.4057856336865 25.0797341673701 60.4045741801553 25.0797227549469 60.4045875244699 25.0805224131138 60.4041924730963 25.0805360988395 60.4037949349445 25.0805498580071 60.4037928668773 25.079724373543 60.4037927538766 25.0796791738271 60.4037299367434 25.0796777923851 60.402163940965 25.0796429779419 60.4020875674377 25.0805114560543 60.4017671677801 25.0805138809039 60.4016799329184 25.0805145352074 60.4012329464439 25.0805178988419 60.40082777223 25.0805209416364 60.4007905396528 25.0805212103645 60.4005741409549 25.0805228462787 60.4003657973904 25.0805244070771 60.4003093739441 25.0805248258306 60.4002485512465 25.0805297152307 60.4000451002568 25.0805460729751 60.3998422343776 25.0805625231004 60.3995357204345 25.080586801887 60.3995343614037 25.0805872268302 60.3994639711867 25.0805925705284 60.399094782446 25.0806222279745 60.3988361602774 25.0806430134531 60.398821935344 25.080644359448 60.3987611036534 25.0806492488777 60.3987056812602 25.0806536926624 60.3986564657761 25.0806575712258 60.3983089881311 25.0806849682668 60.3982577169057 25.0806926526569 60.3980094983974 25.0807105552767 60.3976774193541 25.0807345393731 60.3976160842449 25.0807381511414 60.3972736587992 25.0807665011959 60.3972492766991 25.0807685177589 60.3969339245556 25.080793385224 60.3968503946532 25.0807999735665 60.3967927911097 25.0808045088986 60.3967021920345 25.0808116586286 60.3962827482733 25.0808447413821 60.3961699548312 25.0808536514102 60.3956114586518 25.0808976787434 60.3953552439379 25.0809178819302 60.3952852292409 25.0809212417 60.3950060776785 25.0809415424468 60.394900955059 25.0809523777812 60.3948482324833 25.080957823064 60.3938636502008 25.0810134080571 60.393573303946 25.0810434043272 60.3933253588335 25.0810503771703 60.3929546395568 25.0810785517685 60.3926377214946 25.0810807818428 60.3925838638485 25.081083498349 60.3925769961954 25.0810886939134 60.3921687874543 25.0813977833245 60.3915349241873 25.0818777428143 60.3913837772779 25.0819898991882 60.3904415710921 25.0826890654136 60.3901282833292 25.0829215213435 60.389771505248 25.0831862368454 60.3896983527825 25.0832405152626 60.389500005539 25.0833992771186 60.3894953125882 25.0834026924549 60.3891528744463 25.08351254099 60.3888024080773 25.0836249640406 60.388750047036 25.0836411798672 60.3886915881112 25.0836592965139 60.3885319809664 25.0837097976193 60.3883058650366 25.0837813554417 60.3880964139321 25.083847614049 60.3880886268026 25.083850085929 60.3880188728346 25.0838721863654 60.3877927478168 25.0839437423973 60.3876513523849 25.0839884706197 60.3875577893445 25.0840180847305 60.3872761242664 25.0841046425279 60.3871856998445 25.0841326742945 60.3869656042802 25.0842000798539 60.3868921643881 25.0842225586024 60.3867455266181 25.0842674834214 60.3865254576235 25.0843348673943 60.386393538091 25.0843752792805 60.3863053888446 25.0844022685602 60.3860853197594 25.084469650659 60.3854158893464 25.0846787200547 60.3848769982165 25.0848438432344 60.3844736386823 25.0849674166896 60.3843622074699 25.0850036082154 60.3840477399008 25.0851062451862 60.3838205892868 25.0851770997022 60.3837695888722 25.0851930127787 60.3835956201267 25.085247262657 60.3833755059158 25.0853159057968 60.383173524393 25.0853788930919 60.3831220232435 25.0853949619191 60.3830776752539 25.0854088145334 60.3828756862641 25.0854719099397 60.3827160424286 25.0855217778671 60.3826591681258 25.085539558686 60.3825497463666 25.0855737231124 60.3823834505386 25.0856256859401 60.3823457993286 25.085637439354 60.3822149190743 25.08567832374 60.3820478627723 25.0857304933896 60.3818312324099 25.0857959680282 60.3816843976676 25.0858403456153 60.3816842010277 25.0858404115848 60.381633084523 25.0858570006107 60.3813583891217 25.0859461465561 60.3812741006556 25.0859736988481 60.3809473612297 25.0860805196212 60.3808540768065 25.0861101774721 60.380767354851 25.0861377628299 60.380496817988 25.0862238115686 60.3804817920535 25.0862287933621 60.380399225165 25.0862561524127 60.3803247610837 25.0853613461372 60.3802149958228 25.0839918446907 60.3801373854095 25.0830237034916 60.3802874834146 25.0829203614743 60.3794637951846 25.0815745550467 60.3793921151919 25.0814574220068 60.3791502079503 25.0810621803655 60.378968271248 25.0807649527517 60.3789174674991 25.0806817526577 60.3788407098511 25.0805563596065 60.37878400655 25.0804639106173 60.3787580772281 25.0804215528982 60.3785745938812 25.0801218110444 60.3785187703255 25.0800305997788 60.3786921710987 25.0795841880295 60.3788445187071 25.079191947537 60.3789968479767 25.0787997588241 60.379157506466 25.0783861223007 60.379413866205 25.0777260668485 60.3798323556288 25.0766484867063 60.3789847653159 25.0758138020983 60.378874949939 25.0757056816034 60.3788321280962 25.0756635258708 60.3784865633778 25.0753232675285 60.3782665393338 25.0751066034505 60.3782203459189 25.0750611107485 60.3780383594548 25.0755363287861 60.3779262909405 25.0758289120535 60.3771994607877 25.0746523708798 60.3771124501721 25.0747585663878 60.3770759378194 25.074803042718 60.3770012490307 25.0748943063968 60.3769922807242 25.0748827905227 60.3768184199654 25.0746158509107 60.3766402044443 25.0743422053811 60.3764741871317 25.0740873249751 60.3766330837785 25.0736745990924 60.3749824586807 25.0729006243512 60.3736459476349 25.0729647335495 60.3740153186336 25.0747364449788 60.3729029660161 25.0762308523188 60.3729029660161 25.0762308523188 60.3726878410312 25.0758094432101 60.3725068895356 25.0754588831565 60.3720605589476 25.0745746520685 60.3718488664841 25.0741562177508 60.3718470854598 25.0741535478521 60.3716302228739 25.073726119725 60.3715348580144 25.0735368470325 60.3712207072008 25.0729128171054 60.3711592163206 25.0727903420344 60.3710907054653 25.0722322684191 60.3710271412187 25.0717219314209 60.3710135120821 25.0716125547948 60.370947668187 25.0710801915451 60.3709229526059 25.0708962751949 60.3707494544292 25.0713413633498 60.3707025351184 25.0714602847748 60.3706696157724 25.0715437553158 60.3706988506949 25.0709242156019 60.3707031564324 25.0708327873393 60.3707031564324 25.0708327873393 60.3707032034838 25.0708316963493 60.3707032600343 25.0708306410713 60.3707033723472 25.0708284761514 60.3707035885245 25.0708241830848 60.3707045160481 25.0708070071037 60.370705002506 25.0707984359076 60.3707055066479 25.0707898455288 60.3707058982145 25.0707834019487 60.3707070826339 25.0707647416944 60.3707095437489 25.0707288303961 60.3707120727652 25.0706957444189 60.3707134690048 25.0706786858083 60.3707141900835 25.0706701914186 60.370714929109 25.0706616959672 60.37071549222 25.0706553147872 60.3707170798314 25.0706378277103 60.3707205161115 25.0706022758731 60.3707240583713 25.0705684588953 60.3707260157309 25.0705510769023 60.3707281087052 25.0705343760866 60.3707298913843 25.0705204322774 60.3707344112659 25.0704859045423 60.3707391673833 25.0704509456801 60.3707436781185 25.070418885074 60.3707454047253 25.0704066494291 60.3708733468189 25.0697244630037 60.3708860837863 25.069590838495 60.3708936866797 25.0694518770672 60.3708958459058 25.0692732457807 60.3708892366473 25.0682863357257 60.370889582722 25.0682736738045 60.3708770016771 25.0680430641976 60.3708768956549 25.0680413293316 60.3708768078431 25.0680396115243 60.3708766229827 25.0680361583198 60.3708751073298 25.0680103304161 60.3708732357024 25.0679828731339 60.3708722014395 25.0679691684603 60.3708711051491 25.0679555218711 60.3708690245856 25.0679316136643 60.3708670755658 25.0679111980943 60.3708642566583 25.0678840689713 60.370862748887 25.0678705374389 60.3708611790882 25.0678570639914 60.3708582684311 25.0678335132807 60.370855401769 25.0678117555221 60.3708516463975 25.0677850808848 60.3708496666969 25.0677718312256 60.3708493690667 25.0677698900659 60.3708476241795 25.0677585852879 60.370843903482 25.0677355359884 60.3708405553065 25.067715874369 60.3708358748145 25.0676898167849 60.3708334321592 25.0676768484711 60.3708309451606 25.0676639190591 60.370826442661 25.0676414601889 60.3708224282905 25.0676223096027 60.3708168514427 25.0675969943335 60.3708139738069 25.0675843782593 60.3708110436438 25.0675718559827 60.3708057516855 25.0675500786854 60.3708010903846 25.0675315286805 60.3707946636298 25.0675070618025 60.3707913525934 25.0674949066986 60.3707879977404 25.0674828267398 60.370781971746 25.0674618365589 60.3707766743318 25.0674440134567 60.3707694169351 25.0674204845183 60.3707677886918 25.0674153575444 60.3707656999464 25.0674088250351 60.3707638194124 25.0674030238052 60.3707586749703 25.0673876945468 60.3707549233757 25.0673767444579 60.3707500860914 25.0673627754146 60.3707396174115 25.0673333427458 60.3707317885047 25.0673118971726 60.3707278431687 25.0673012124928 60.3707258710268 25.0672959063963 60.3707238719638 25.0672906018951 60.3707218639269 25.0672852979261 60.370709729913 25.0672537512598 60.3706994186434 25.0672277371957 60.3706910541727 25.0672071395548 60.3706868369629 25.0671969062888 60.3706847151605 25.0671918085754 60.3706825843842 25.0671867113943 60.3706804631079 25.0671816499246 60.3706675126842 25.0671514031373 60.3706565444291 25.0671265344015 60.3706476633969 25.0671068561162 60.3706431835513 25.0670970918545 60.3706409300361 25.0670922014615 60.3706386680736 25.0670873478431 60.3706318652908 25.06707286054 60.3706226952282 25.0670536890991 60.3706111069379 25.0670300360511 60.370601718583 25.0670112947118 60.3705969940499 25.0670019983915 60.3705946096122 25.0669973696826 60.3705922346746 25.066992776685 60.3705850742294 25.0669790179441 60.3705754066087 25.0669608372812 60.3705632259965 25.0669384526898 60.3705533675319 25.0669207367756 60.3705483991021 25.0669119627601 60.3705459109267 25.0669076122614 60.3705434137775 25.0669032622951 60.3705409166282 25.0668989123294 60.3705257861796 25.0668731658886 60.3705130314585 25.0668520668106 60.3705027213601 25.0668354114996 60.3704975362189 25.0668271763144 60.370494926359 25.0668231050889 60.3704923344462 25.0668190328008 60.370484478471 25.0668068569673 60.3704739437409 25.0667908135049 60.3704606613614 25.0667711060065 60.3704499363157 25.0667555635335 60.3704445439642 25.0667479028882 60.3704418477883 25.0667440725665 60.3704391341915 25.066740279551 60.370436420858 25.0667365046571 60.3704200453041 25.0667140786086 60.3704062540058 25.0666958159866 60.3703951504359 25.0666814204642 60.3703895688224 25.066674333294 60.3703867691735 25.066670799302 60.3703839610776 25.0666673020843 60.370375528342 25.0666568472089 60.3703642194061 25.0666431530736 60.370349991244 25.0666263491912 60.3703385102049 25.0666131731 60.3703327488306 25.0666066951132 60.3703298816039 25.0666034553231 60.3703269879827 25.0666002533708 60.3703240853878 25.0665970519508 60.3703066304784 25.066578226642 60.3702919752181 25.0665629353253 60.3702801890274 25.0665510106492 60.3702698192925 25.0665407612971 60.370263499969 25.0665342075787 60.3702603445306 25.0665309123335 60.3702587668114 25.0665292647112 60.3702571980658 25.0665276165573 60.3702524730916 25.0665226187971 60.3702461960022 25.0665158812172 60.3702337107149 25.0665022024806 60.3702220697182 25.0664891447768 60.3702097296069 25.066474949634 60.3702035805364 25.0664677510721 60.3702005100929 25.0664641243449 60.3701989838448 25.0664623104497 60.3701974573333 25.0664604784338 60.3701959221114 25.0664586650708 60.3701867886459 25.0664475807801 60.3701746620746 25.0664326294161 60.3701633716103 25.0664183539772 60.3701514081614 25.0664028851454 60.3701454652377 25.0663950396153 60.3701424979992 25.0663910984646 60.3701410142482 25.066389118829 60.3701395394708 25.0663871386618 60.3701351056381 25.0663811624513 60.3701292052113 25.0663731511821 60.3701175091431 25.066356922941 60.3701065969201 25.0663414825383 60.3700950549999 25.0663247373628 60.3700893100381 25.066316299761 60.3700864549777 25.0663120436558 60.3700850229606 25.0663099158694 60.3700835999171 25.0663077875514 60.3700821676365 25.0663056416445 60.3700736539254 25.0662927070582 60.3700623714642 25.0662752754906 60.3700518915858 25.0662586850576 60.3700407907193 25.066240771203 60.3700352793498 25.0662317212829 60.3700325369936 25.0662271864658 60.3700311656837 25.0662249099971 60.3700297943738 25.0662226335287 60.3700256886275 25.06621574923 60.3700202464117 25.0662065138553 60.3700094232135 25.0661879306673 60.3700000584264 25.0661714374291 60.3699894350329 25.0661523890114 60.3699841670181 25.0661427806043 60.3699815460759 25.0661379484229 60.3699802264994 25.0661355238039 60.3699796168563 25.0661343629318 60.3698981135064 25.0659627627044 60.3698977062865 25.0659619344315 60.369896519731 25.0659593931229 60.3698949349292 25.0659560230098 60.3698898168544 25.0659449911367 60.3698856433276 25.065935916418 60.3698615818442 25.0658821355381 60.3698495062613 25.0658540145133 60.3698376154313 25.0658256286487 60.3698285165409 25.0658033343438 60.3698172570161 25.0657751287289 60.3698055375101 25.0657449372676 60.3697943656358 25.0657153481356 60.3697840702235 25.0656873574711 60.3697746156429 25.0656609855192 60.3697643258013 25.0656315255172 60.3697588863617 25.065615688532 60.369748786817 25.0655857275963 60.3697361009769 25.0655471420407 60.3697334676955 25.065538991733 60.3697308602807 25.0655307673479 60.3697263308231 25.0655163636217 60.3697161759131 25.0654832140425 60.3697062590678 25.0654497601888 60.3697014063497 25.0654328909804 60.3696990111341 25.0654244363953 60.3696966156545 25.0654159636908 60.3696924836748 25.0654011011585 60.3696832116089 25.0653669018097 60.3696742135013 25.0653323960565 60.3696698031267 25.065315065384 60.3696676285557 25.0653063438253 60.3696654629579 25.0652976217358 60.369661728982 25.0652823366358 60.3696533769694 25.0652471759858 60.3696452997048 25.0652117632911 60.3696413583297 25.065193951434 60.369639414694 25.065185052971 60.3696375159258 25.0651761518487 60.369636066864 25.0651685298706 60.3696315167655 25.0651434452155 60.3696256210929 25.0651092090138 60.3696214072662 25.0650825447182 60.3696174520884 25.065055756274 60.369616351147 25.0650479867086 60.3696117104552 25.0650129688049 60.3696084322527 25.0649857956425 60.3696054126991 25.0649584983295 60.3696045973271 25.0649506030177 60.3696011788822 25.0649150229774 60.369598855568 25.0648874304791 60.3695968006665 25.0648597676575 60.3695962624172 25.0648517833702 60.3695941044846 25.0648158021393 60.3695927384296 25.064787953382 60.3695916500244 25.0647600518874 60.3695910839937 25.0647421306039 60.3695901353636 25.0647059325712 60.3695893632242 25.0646732243618 60.3695891960699 25.0646642024406 60.3695891122289 25.0646596733595 60.3695890795456 25.0646574264073 60.369589037625 25.0646551618667 60.3695890052051 25.0646529330351 60.3695888080495 25.0646393788397 60.3695886167865 25.064621290241 60.3695884831004 25.064600985609 60.3695884708761 25.0645637164112 60.36958857626 25.0645456464895 60.3695886513851 25.0645366101979 60.3695886936978 25.0645321099066 60.3695887235642 25.064529841108 60.3695887534305 25.0645275723095 60.3695888345827 25.0645208026873 60.3695889458642 25.0645117823871 60.3695892578983 25.0644937183431 60.3695897098736 25.0644723089338 60.3695906934009 25.0644361957932 60.3695912933717 25.0644181690756 60.3695916205407 25.0644091722402 60.3695917884799 25.064404664496 60.3695918814231 25.0644024100916 60.3695919653927 25.0644001562195 60.3695920493622 25.0643979023473 60.3695926072838 25.064384394041 60.3695934054584 25.0643664099722 60.3695945151458 25.0643439096405 60.369596433984 25.0643091193572 60.3695975295964 25.0642912083202 60.3695981088093 25.0642822509381 60.3695984029024 25.0642777719808 60.3695985499489 25.0642755325021 60.3695986373229 25.0642747474612 60.3696874207162 25.0640619471355 60.3700948646249 25.0630852983417 60.3705076249613 25.0620961392589 60.3705586072262 25.0619743154542 60.3706064549521 25.0618568126445 60.3715471313533 25.0595781508431 60.3716286744759 25.0594101011531 60.3725009335068 25.0573115788141 60.373734183985 25.0543454401685 60.3733813515284 25.0536945820489 60.3734498718575 25.0528800150931 60.3728656929858 25.0520797286517 60.3728506762349 25.0519447708772 60.3728375992386 25.0518269829931 60.3721981013543 25.050778663545 60.3711054231778 25.0502803120254 60.3709372814282 25.0502189720967 60.3705639596812 25.0492863398364 60.3698244531939 25.0475360771199 60.3692667933147 25.046184316277 60.3685123381932 25.0443621451976 60.3684149157423 25.0441268519214 60.3679404773309 25.0429783726882 60.3692919873088 25.0407753826548 60.3693144581863 25.0407387403905 60.3693298950703 25.0407135835207 60.3704186277021 25.0389396653075 60.3705239210533 25.0387680918001 60.3708094748885 25.038302471149 60.3700885359097 25.0362355440035 60.3695546970319 25.034700890545 60.3716014395059 25.0312527097579 60.3711000224593 25.0298935073773 60.3710744245294 25.0297921604966 60.3705289409179 25.0283683038907 60.3694128110626 25.0253569773337 60.369374448888 25.0252618161958 60.3679189754356 25.0213193684822 60.3678686325997 25.0211779537195 60.3648260844939 25.0258043280912 60.3628266590326 25.0287229021467 60.3627633759441 25.0288350666634 60.3624565585461 25.0292854205147 60.3621516010961 25.0297086364143 60.3621299801049 25.0297460610385 60.3621045751059 25.0297832969845 60.3620985395134 25.0297917845561 60.3616708265998 25.0304191494532 60.3613853277025 25.0308611153939 60.3612344847781 25.0310608164548 60.361212899578 25.0310903677675 60.3611890448819 25.0311292124605 60.3607349178184 25.0317837181134 60.360374334107 25.0323316480974 60.3603496151049 25.0323558022445 60.3603224831064 25.0323959485141 60.35995396463 25.0329255408873 60.3595870907209 25.0334765977433 60.3595610897081 25.033514897164 60.359536890758 25.0335505496526 60.3589897813745 25.0343421598978 60.3587488993587 25.0346941793406 60.3584505557801 25.0351394148399 60.3584432943144 25.0351500591993 60.3584215096443 25.0351819741349 60.3581062978969 25.0356442787831 60.3578889720942 25.0359629167933 60.3577784579501 25.0361249199847 60.3575975984624 25.0363901961059 60.3573037641799 25.0368206251593 60.3570134976636 25.0372458100169 60.3569175576354 25.0373085041504 60.3566305411185 25.0378067622399 60.3564160129278 25.0381211601473 60.3561129053924 25.0384846572018 60.3560387581551 25.0385939329596 60.3557046881971 25.0390961885917 60.3556459406941 25.0392503476666 60.3554232507933 25.0395767098784 60.3553735515007 25.0396495068106 60.3549206669258 25.0402843747782 60.354807371514 25.0404755745231 60.3547518829311 25.0405565837156 60.3544066339931 25.0410607385765 60.3541735127093 25.0413993213624 60.3537913941318 25.0419542692344 60.3536456775797 25.0421658905023 60.3534557460912 25.0424447123696 60.3531652573162 25.0428742683125 60.3529281581354 25.0432248096476 60.3527113472233 25.0435454352361 60.3524583979868 25.043919447838 60.352205541392 25.0442937209142 60.3519490368757 25.0446691853881 60.3516937275794 25.0450355997635 60.3514367347614 25.0454134198718 60.3511163846823 25.045879801151 60.350895413236 25.0461988634126 60.3506585577312 25.0465531111431 60.3504207162173 25.0469069413672 60.3500489457819 25.0474445194238 60.3499526020201 25.0475883049236 60.349899958839 25.0476639719272 60.3494914704852 25.0482622169183 60.3488382156079 25.0492215799284 60.3487292451065 25.0489283970855 60.3486269974109 25.0486306820422 60.3485248810642 25.0483333959713 60.3484239560637 25.0480396110562 60.3480599371843 25.0485805762696 60.3480805850288 25.0488994729928 60.3474696323279 25.0492473064628 60.3471629264298 25.0485593034951 60.3462347327745 25.0464581755422 60.3451577795621 25.0439643086984 60.3448152274446 25.0432421417149 60.3430660217219 25.0393346385629 60.3424867895496 25.0380516784018 60.3423963070972 25.0378384255241 60.3423120866 25.0376502760563 60.3422055514435 25.0372506714303 60.3412191490969 25.0335775427539 60.3410533592655 25.0329581236167 60.3402306941782 25.0299056428859 60.3384947857705 25.0234369262824 60.3374201779401 25.0194102698228 60.3373775771144 25.0192504011019 60.3371020374628 25.0182333041284 60.3369969077614 25.0178524548643 60.3369962194403 25.0178508659687 60.3368905631946 25.0174661012734 60.3367662133181 25.0170023183762 60.3366828541517 25.0166939145 60.3365799869949 25.0163139158842 60.3365247151275 25.016105072125 60.3364836951346 25.0159641399236 60.3362962485994 25.0152665648722 60.3362355487928 25.0150534161715 60.3359873996641 25.0141158736139 60.3359455752993 25.01396994015 60.3357484266202 25.013251906573 60.3355371586548 25.0124722345912 60.3354898176357 25.0122932500637 60.3354283444822 25.0120749592401 60.335326323909 25.0116972204274 60.3352759619558 25.0114970796078 60.3350622467892 25.0107094259484 60.3350300266187 25.0105747466625 60.3348152503197 25.0097843792906 60.3347228404991 25.0094401110769 60.3347220289509 25.0094374972926 60.3345132186539 25.0086597346376 60.3344282178082 25.0083377941307 60.3342678287827 25.0077182064688 60.333524142843 25.0050185337921 60.333503335669 25.0049331528224 60.3332976654754 25.0041090943463 60.3332680037748 25.0039939285345 60.3332474479029 25.0038918302078 60.3332323058463 25.0036215169053 60.3331114315078 25.0017544253631 60.3330602833401 25.0010507462009 60.3330475592497 25.0008675537212 60.3329928256077 25.0000840589376 60.3329926845304 24.9997057276724 60.3329908510079 24.9986815284865 60.332987491682 24.997436096152 60.3329848074787 24.9955135083032 60.3329846176399 24.9954121593786 60.3330065821122 24.9942887250566 60.3329645320095 24.9909541238633 60.3328814318268 24.9729638085852 60.332504021348 24.9569179106994 60.3324491467803 24.9545916336432 60.3349164987761 24.9497482568022 60.335266395085 24.9490613416784 60.3384421027553 24.9431033230892 60.3388453506969 24.9423378659742 60.3389281173296 24.9421794131237 60.3390149147838 24.9420295480615 60.3391325257041 24.9418203187004 60.339782092922 24.9407904938281 60.3403236007966 24.9399576912835 60.3406729742193 24.9394244695573 60.3407041591633 24.939371745868 60.3407275227157 24.9393521693148 60.3408291021374 24.9392029503585 60.3408866142791 24.9391184663284 60.3412811930485 24.9385136215902 60.3413826695863 24.9383566661346 60.341417580107 24.9383026903169 60.3414452201656 24.9382611876894 60.3414604177651 24.9382368882315 60.3417011107083 24.9378679113925 60.3420071934224 24.9373833523311 60.3420980039142 24.9372499147478 60.3425911095647 24.9364624921333 60.3442179931291 24.9339860681333 60.3442789778044 24.9339027235602 60.3443418721772 24.9338064449522 60.3454387491934 24.9320652290764 60.3463204965134 24.9307578243626 60.3480529229368 24.9284336295127 60.3492348126237 24.926901820253 60.349455376729 24.9266159487317 60.3499578168382 24.9259615238508 60.3515278386877 24.9239165384358 60.3517675998914 24.9236042086129 60.3554362554812 24.9188032558747 60.3571878514375 24.9165118886384 60.357772015656 24.915743437989 60.3583033649101 24.9150524878426 60.3587611043202 24.9144520141886 60.3615967972628 24.9107316205116 60.3619623319945 24.9102519808065 60.36337576211 24.9083984154992 60.3634150995533 24.9083302505263 60.3642474957965 24.9072455391514 60.364277517125 24.9072064027067 60.364805226072 24.9064962551695 60.3650347722811 24.9060663744906 60.3663325324935 24.9037869141881 60.3665237381245 24.903428988385 60.3671943255185 24.9022492048363 60.3680046025202 24.9008181222075 60.3690638642763 24.8989209259051 60.3709552423502 24.8955718423558 60.3716121878377 24.8944179335652 60.3716121878377 24.8944179335652 60.3732866417117 24.8917709088023 60.3745781331594 24.8897152096043 60.3754329429386 24.8883454873739 60.3761107521563 24.8872507085547 60.3791923672888 24.8822719684639 60.3806025516975 24.880030352034 60.3814394760966 24.8786658689042 60.382474847373 24.8770218732675 60.38246582948 24.8768597227305 60.3824577995809 24.8767155979632 60.3824630148467 24.8765887371107 60.3824959395948 24.8765598482737 60.3825091789025 24.8765480269222 60.3826065624197 24.876455263259 60.382622585579 24.8764389058499 60.382638532617 24.8764222812132 60.3827171586932 24.8763349478855 60.3827326287424 24.8763165760399 60.3827935407752 24.8762398310639 60.3828007886737 24.8762302322795 60.3828743180584 24.8761263372808 60.382958899195 24.8759917468682 60.3829726001908 24.8759683368391 60.3829861981446 24.8759446613305 60.3829961207719 24.875927067811 60.3831562495446 24.8756361182421 60.3831698671187 24.8756125500482 60.3831836331685 24.8755892806242 60.3831976518902 24.8755666479346 60.3832012889877 24.8755609856686 60.3832302922596 24.8755182701606 60.3832452597346 24.8754982428955 60.3832602752522 24.8754784120757 60.383275384833 24.8754588472827 60.3832912631475 24.8754418634005 60.3833084928191 24.8754318861259 60.3833199406641 24.8754282552267 60.3833556821669 24.8754216625119 60.3833587418134 24.8754209006738 60.3833765054792 24.8754156788474 60.3833878563579 24.8754132881106 60.3834057803494 24.8754147331845 60.3834169071881 24.8754168751452 60.3834347787852 24.875420101846 60.3834526744081 24.8754225830393 60.3834653037201 24.8754237561538 60.3834832175792 24.875425691812 60.3834901852029 24.8754272338043 60.3835076509909 24.8754354224086 60.3835252976826 24.8754420024705 60.3835329735539 24.8754451495241 60.3835500462739 24.8754562851133 60.3835687881647 24.8754712675911 60.3836023665785 24.8754968418915 60.3836073434427 24.8755002736787 60.383624424552 24.8755113724843 60.3836390521062 24.875520689624 60.3836560840083 24.8755320819786 60.3836748580193 24.8755468265676 60.3836911257869 24.8755621155015 60.3837065029618 24.8755756298111 60.3837235108351 24.875587205234 60.383735444013 24.8755959721624 60.3837515010605 24.8756121276997 60.3837656782131 24.8756275528993 60.3837983402155 24.8756576146405 60.3838110609258 24.8756707033049 60.3838262609231 24.8756899994358 60.3838289043367 24.8756935469988 60.383848301718 24.8757192108662 60.3838667205482 24.8757375896878 60.3838790438571 24.8757499784884 60.3838952108752 24.8757657096655 60.3839091917882 24.8757784078465 60.3839254430314 24.875793788805 60.3839406682073 24.8758107245322 60.3839715199814 24.8758477997473 60.3839755072433 24.8758522577902 60.3840234012888 24.8759019408146 60.3840350160353 24.8759149565409 60.3841270499524 24.8760278500488 60.384131631997 24.876032995208 60.3842279519425 24.8761302410246 60.3842323270404 24.8761348008931 60.3842481562286 24.8761518790475 60.3842791439499 24.8761884742882 60.3842941895994 24.8762082346193 60.3843053163007 24.8762238771503 60.384363174031 24.8763097658192 60.3843675572109 24.8763159583002 60.3843975199557 24.8763558686304 60.3844437494876 24.8764115768706 60.3844592758816 24.8764293826629 60.3845215232472 24.8765016129193 60.3845992557764 24.876597513119 60.3846022774604 24.8766011269326 60.3846335539322 24.8766366880249 60.3846655253672 24.876669645389 60.3846799895437 24.8766833652278 60.3846964085679 24.876698010235 60.3847297467914 24.8767248724887 60.3847636711631 24.8767485029797 60.3847808615844 24.8767591420539 60.3849024829485 24.87682260821 60.3849086239 24.8768258193661 60.3850470668599 24.8769027074306 60.3850637950654 24.8769113988673 60.3851859194585 24.8769709319812 60.3851944824057 24.8769750742542 60.3852813598661 24.8770204079701 60.385292913527 24.8770273496408 60.3853446778081 24.8770572954941 60.3853636957356 24.877066509412 60.3854517689991 24.8771012228484 60.3854564155992 24.8771030978575 60.3855443892692 24.8771388885937 60.3855542326956 24.8771422217406 60.3856428374452 24.8771708401323 60.385656417183 24.8771764160789 60.3857441329043 24.8772146193223 60.3857644588298 24.87722137112 60.3858000696243 24.8772302308418 60.3858716461698 24.8772414852785 60.3858865058583 24.8772434031301 60.3859760231615 24.8772560301135 60.385979328528 24.8772565952185 60.3860687992125 24.8772702415053 60.3860778881196 24.8772707567224 60.3861496393199 24.877274378429 60.3861861332281 24.8772806040046 60.3862040438696 24.8772829039518 60.3862399146889 24.8772849782572 60.3862937535497 24.8772839411036 60.3863653880342 24.8772746137628 60.3864544159042 24.8772520501615 60.3864721356506 24.8772463235566 60.3865602621043 24.8772122953105 60.3865677985315 24.8772089556041 60.3868122152754 24.8770913654426 60.3868479367026 24.8770773167011 60.3868656130312 24.8770711209347 60.3869188865449 24.877055475622 60.3870082057497 24.8770382272484 60.3870261242762 24.8770359535554 60.3871516887032 24.8770290479453 60.3871696355592 24.8770291133633 60.3872055214467 24.8770298798566 60.3872122167096 24.8770301153465 60.3872301568979 24.8770308889357 60.3872660375549 24.877033016806 60.3875167344369 24.8770658901058 60.3876953541178 24.8771011704501 60.38771135156 24.8771045930667 60.3879971764986 24.8771599876975 60.3881226957876 24.877169962489 60.3881406371387 24.8771702461049 60.3881495390742 24.8771703016506 60.3881674827473 24.87717016772 60.3882750893212 24.8771625079147 60.3882929971391 24.877160125998 60.3884358441972 24.8771313522604 60.3885424215936 24.8771002759592 60.3885591022431 24.8770947254284 60.3885767759642 24.8770883661655 60.3887891418601 24.8770161738795 60.3888604765374 24.8769998776561 60.3888783574406 24.8769969347642 60.3888827843941 24.8769963016727 60.3889006945202 24.876994064647 60.3889724423408 24.8769895921041 60.3889903871679 24.8769895305781 60.3891518882073 24.8769950203314 60.389165637054 24.8769954316777 60.3891835786916 24.8769957333239 60.3892732918672 24.8769924863922 60.3893270297683 24.8769856839755 60.3893448817358 24.8769820532778 60.3893626940615 24.8769776266325 60.3893804574836 24.8769723864931 60.3893981453734 24.8769663527408 60.3894157753869 24.8769595060762 60.3894256684144 24.8769552503086 60.3894605501926 24.8769381152454 60.3894950140634 24.8769178676923 60.3895458944437 24.8768822682015 60.3896290778871 24.8768142750889 60.3896621490653 24.8767861145265 60.3896713903204 24.8767781625366 60.389687888136 24.8767639667205 60.3899525299388 24.8765387294965 60.3899574758876 24.8765345961256 60.3899740605026 24.8765207755249 60.3901074056473 24.8764132519568 60.3901235913899 24.8764008909604 60.3901403806123 24.8763880732193 60.390145561289 24.8763840152541 60.3901621557275 24.8763702483006 60.3901785545141 24.876355477748 60.3901947417285 24.8763398316733 60.3902107272107 24.8763233638809 60.3902264924366 24.8763060392791 60.3902420475357 24.8762879298022 60.3902724755415 24.876249486637 60.3902873675498 24.8762292242983 60.3903020152755 24.8762082881998 60.3903446617807 24.8761418982001 60.3904929824865 24.8758786583434 60.3904987478448 24.8758684641135 60.3905123089798 24.8758447309808 60.3907998767598 24.8753525557518 60.3908911136286 24.8751780582018 60.390903725862 24.8751522810347 60.3909528661977 24.875046535085 60.3909646086455 24.8750197255619 60.3909763131709 24.8749922288214 60.3909878425807 24.8749644530887 60.391043284021 24.8748218884221 60.3910540023883 24.8747928223994 60.3912836993784 24.87414394442 60.391293475793 24.8741183333153 60.3913271676264 24.8740334655998 60.3916218196196 24.8733498297094 60.3916320569542 24.8733244058169 60.3917541229682 24.8730108748278 60.391765781628 24.8729833433688 60.3917898370149 24.8729295027074 60.3918150319303 24.8728778381679 60.3918414254274 24.872828672591 60.3918550797882 24.8728051851923 60.3918690791677 24.872782491996 60.3918834250152 24.8727606836565 60.3918993832976 24.8727380440844 60.3919144362705 24.8727183312279 60.3919454699078 24.872681875928 60.3919774399293 24.8726489349541 60.3920266856493 24.8726049748268 60.3920433563851 24.8725915086843 60.3921952050168 24.8724802858496 60.3922076109659 24.8724708549512 60.3922904417843 24.8724011617016 60.3923067642727 24.8723861390254 60.3923712888625 24.872322558875 60.3923872060921 24.8723057838725 60.3924654285598 24.8722169519112 60.3924808030383 24.8721982520293 60.3925562735421 24.8721002155895 60.3926004112344 24.8720378926509 60.3926037992677 24.8720329524427 60.3926892474367 24.8719005771234 60.3927709536799 24.871758880242 60.3927841965285 24.8717343840133 60.3928486826674 24.8716083127487 60.3928552829137 24.8715947409892 60.3928677827052 24.871568714073 60.3929402350339 24.8714077815476 60.3929519014547 24.8713801935316 60.3930194114503 24.8712107074005 60.39310324543 24.8709752122084 60.3931132459706 24.8709451190427 60.3931426680705 24.8708539879151 60.3931513589581 24.8708262490259 60.3932646915836 24.8704561808916 60.3932747012676 24.8704261049645 60.3933059601552 24.8703375210187 60.3933168153008 24.8703086421633 60.3933392998623 24.8702521224933 60.3933509478039 24.8702245167689 60.3933587816153 24.8702066529815 60.3933709381221 24.8701799578235 60.3933833916081 24.8701538603597 60.3934222737208 24.8700786084695 60.3934356566434 24.8700544649082 60.3934769050518 24.8699845214838 60.3934909699344 24.8699620212869 60.3935630551135 24.869854033361 60.3935777020942 24.8698331104163 60.3937391796114 24.8696036229175 60.3937431712748 24.8695976808332 60.3938137370116 24.8694856884706 60.3938274275248 24.8694622502953 60.3938542950248 24.8694141550435 60.3938802686397 24.8693640852456 60.3938927595927 24.869338093507 60.3939049251832 24.8693114151327 60.3939281378759 24.8692560803892 60.3939391493774 24.8692274444987 60.3939493076385 24.8691993725915 60.393959408499 24.8691693985743 60.3939690048344 24.8691387677866 60.3939782066368 24.8691076182456 60.3939870790353 24.8690760909015 60.3940121693281 24.8689798297998 60.3940201009809 24.868947329289 60.3940976140617 24.8686202267972 60.3941145629114 24.8685562797806 60.3941212318186 24.8685329915846 60.3941305715492 24.8685020505122 60.3941403046395 24.8684715556241 60.3941503596002 24.8684415297458 60.3941607451137 24.868411954158 60.3941824913072 24.8683542456857 60.3942054636312 24.8682985080135 60.3942420535402 24.8682187188857 60.3942808042706 24.8681431808091 60.3942941492008 24.8681189293721 60.3943214177041 24.8680717862254 60.3943637410244 24.8680045269826 60.3943781992527 24.8679830523331 60.3943846772045 24.8679736437908 60.3944292372898 24.8679125727309 60.394444411684 24.8678931929883 60.3944752071489 24.8678559652316 60.3944908285105 24.8678381353508 60.3945225283368 24.8678040973962 60.39457114357 24.86775731786 60.3945876389253 24.8677430246517 60.3946042715121 24.867729448502 60.3946210500128 24.8677165706924 60.3946379663264 24.8677044462076 60.3946721672403 24.8676824420195 60.3946894344769 24.8676725997567 60.3947068134811 24.8676635669811 60.3947212539559 24.8676566867824 60.3947387997562 24.8676490951844 60.3947564208536 24.8676422791602 60.3947741169577 24.8676362205785 60.3948096797705 24.8676263430049 60.3948275198524 24.8676225439087 60.394863304038 24.8676169537048 60.3948673292064 24.8676164725493 60.3948852562366 24.8676147370144 60.3949211448948 24.8676139863916 60.3949592124171 24.8676180485681 60.3949770821247 24.8676211450712 60.3950127683814 24.8676290659567 60.3950305583036 24.8676339102347 60.3952074784684 24.8676946878294 60.395223799802 24.867699809763 60.3952415662894 24.8677048734609 60.3954197216467 24.8677485628386 60.395425832048 24.8677504139075 60.3954435545736 24.867756097697 60.3954612397883 24.8677622558788 60.3955666918377 24.86780627298 60.3955752240682 24.8678101620027 60.3957678874768 24.8678971757958 60.3957855104891 24.867903937194 60.3958563647042 24.8679272380133 60.3958945870884 24.8679370446976 60.3959124328051 24.8679408872543 60.3960019218318 24.8679539295176 60.3961274934977 24.8679620701844 60.3961302628374 24.8679622520683 60.3962738014273 24.8679677834433 60.3963096665269 24.8679650016375 60.3963275700647 24.8679623601262 60.3963454336155 24.8679589043769 60.3963591159796 24.8679557221424 60.3963946321716 24.8679451758171 60.3964650276831 24.8679168456838 60.3964766326576 24.8679118207161 60.3964837570226 24.8679096846399 60.3965016559426 24.8679073156689 60.3965375377493 24.8679083809757 60.3965555253254 24.8679076217592 60.3965734364125 24.8679054516611 60.3966269841658 24.8678940886453 60.396644188655 24.867890421805 60.3966798664691 24.8678821156365 60.3968394784525 24.8678324280823 60.3968571415417 24.8678259901496 60.397068752498 24.8677450720546 60.3970716722735 24.867743991549 60.3970893371001 24.8677376623219 60.3972304795747 24.8676844439337 60.3973002642739 24.867650506922 60.3973175601579 24.8676407708609 60.3973518919145 24.8676196456619 60.3973874888861 24.8675950793624 60.397404306156 24.867582379344 60.3974375602633 24.8675550981103 60.3974539976813 24.8675405531612 60.3975026130685 24.8674937870682 60.3975186066612 24.8674773287399 60.397526167726 24.8674693731457 60.3975279693565 24.8674674581198 60.3975436858943 24.8674499650259 60.3975590883259 24.8674313669878 60.3975741775225 24.8674117184064 60.3975889274376 24.8673910754438 60.3976174395348 24.8673470040845 60.3976718916569 24.8672524943783 60.3976851151125 24.8672279575175 60.3976949140249 24.8672094355544 60.397707932814 24.8671844582273 60.3977839661646 24.8670303913546 60.3978557742077 24.8668682498941 60.3978661581784 24.8668430817027 60.3979899420032 24.8665322754743 60.3980017561654 24.8665049984387 60.3980106350561 24.8664851203544 60.3980228929668 24.866458631126 60.398035447583 24.8664327215079 60.3980483084588 24.866407427181 60.3980615039652 24.8663828370538 60.3980750161578 24.8663589523012 60.3980889119135 24.8663360226901 60.398103275473 24.8663142605441 60.3981181476681 24.8662939717956 60.3981335403787 24.8662753372002 60.3981494188781 24.8662584316461 60.3981632522052 24.8662456173915 60.3981799332604 24.8662322717607 60.3981969690069 24.8662208816001 60.3982142870839 24.8662114153436 60.3982318513112 24.8662038572096 60.3982495710922 24.866198158673 60.3982674093745 24.8661942495495 60.3982853172265 24.8661918788994 60.3983032529446 24.8661906863888 60.3983212011617 24.8661902736523 60.3983570852889 24.8661914821603 60.3983750107731 24.8661930133229 60.3984108343577 24.8661977294046 60.3984199123463 24.8661992408087 60.3984377846918 24.8662025000313 60.3984912800449 24.8662147727082 60.3985090462884 24.8662198179311 60.3985267691608 24.8662255195236 60.398561980358 24.866239661106 60.3985794084911 24.8662482684212 60.3985967012406 24.8662579556661 60.3986111351766 24.8662669224247 60.3986281276249 24.8662786080841 60.3986449218815 24.8662913777899 60.3986615086829 24.8663052139967 60.3986940471677 24.8663358507568 60.3987256828475 24.8663701229391 60.3987411903365 24.8663883504351 60.398771661004 24.866426710935 60.3988180237685 24.8664916064215 60.3988323931199 24.8665133577263 60.3990139127235 24.866809561001 60.3990282551065 24.8668313143379 60.3990356236916 24.8668421780925 60.3990502595108 24.8668631861003 60.399155528735 24.8670017255988 60.3991606562272 24.8670083792047 60.399205377922 24.8670689722973 60.3992214697482 24.8670928442931 60.3992493626541 24.8671385091789 60.3992628504107 24.867162424596 60.3992890893975 24.8672119375417 60.3993018655109 24.8672374063648 60.3994259275272 24.8674994904011 60.3994323584029 24.8675123764249 60.3994363368753 24.8675201945931 60.3994534019853 24.86755380643 60.3996462354569 24.8679391252439 60.3998728368029 24.8684044781585 60.3998765637033 24.8684122948394 60.3999527585124 24.8685660877921 60.3999792395056 24.8686150424253 60.3999930213238 24.8686382680303 60.4000072861452 24.8686602457277 60.4000220333897 24.8686809392463 60.4000372167437 24.8687002608428 60.4000528092904 24.8687182122767 60.4000607130598 24.8687266091089 60.4000769054882 24.8687421975825 60.4000934764188 24.8687561818907 60.4001103037209 24.8687687878711 60.4001273364631 24.8687802003963 60.4001445318156 24.868790549346 60.4001792943178 24.868808663196 60.400196793462 24.8688166685482 60.4003195727272 24.8688703275149 60.4003255772375 24.86887342048 60.4003428779032 24.8688830546281 60.4003771239245 24.8689048152 60.4003940819993 24.8689166140135 60.400595687309 24.8690696528831 60.4006013274521 24.8690735503849 60.4006183850542 24.8690848345268 60.4006528335847 24.8691052206472 60.4006876825504 24.8691225669528 60.4007229235346 24.8691363474994 60.4007406974832 24.8691413215075 60.4007585631101 24.8691447282226 60.4007764824935 24.8691464430391 60.4007944281354 24.8691464314428 60.4008123629846 24.8691446232349 60.40082058552 24.8691431959661 60.4008383981064 24.8691387996229 60.4008561029441 24.8691327219295 60.4008736285428 24.8691249857129 60.4008909662201 24.8691156096931 60.4009081620257 24.8691052262734 60.4009760167417 24.8690578710435 60.4009892362982 24.8690482196185 60.4010572400944 24.8690017621409 60.4010745372272 24.8689920981739 60.401091988397 24.8689836404994 60.4010954311717 24.8689821263539 60.4011130508668 24.8689752189674 60.4011485572702 24.8689646182826 60.4011663834666 24.868960511382 60.4012020914628 24.8689529656629 60.4012172982955 24.8689496291654 60.4012548544909 24.8689391485307 60.4012548544909 24.8689391485307 60.4012748544468 24.8690523258306 60.4012967515329 24.86918358866 60.4013609266521 24.8693058963159 60.4016820833671 24.8697290994516 60.4043964336096 24.8733380449815 60.4062483246731 24.8757590397093 60.4074472720043 24.8774510845603 60.4080423076648 24.8782482682977 60.4080627294161 24.8782356798013 60.4087791905222 24.8792519571493 60.4094843239231 24.880201516856 60.4100671521411 24.8809907131681 60.4104825565122 24.8815497321761 60.4113288678731 24.88268857903 60.4114346622997 24.8828364117658 60.4115821623038 24.8830268092537 60.4126596877477 24.8844601427784 60.412693506016 24.884504911176 60.4127045979849 24.884519573319 60.4144013175145 24.8867657805791 60.4153113106356 24.8879722542748 60.4159782019581 24.8888565006608 60.4176463025728 24.8910717662979 60.4193054499832 24.8933015674415 60.4201356028678 24.8943898568685 60.4224025664853 24.8953851083582 60.4225916968711 24.8954681485777 60.4236431773496 24.8959297904953 60.4249880401914 24.8965531664871 60.425346595997 24.8967103365143 60.4270149994894 24.8974875731837 60.42706758657 24.897511394015 60.4286684282331 24.8982371457449 60.4281242893204 24.8993978621505 60.428265038015 24.900023615285 60.4287305643265 24.9021094165399 60.4300505508699 24.9009878533482 60.4303515671936 24.900727456531 60.431708728841 24.8996355988762 60.4326337491027 24.9000262449001 60.4334403823681 24.9003720676642 60.4334906690292 24.9003992807899 60.433578704884 24.9004406684773 60.4336952816214 24.9004955347814 60.4343942098743 24.9008029670691 60.4351755812064 24.9011560354944 60.4358278713858 24.9014478927298 60.4358910961942 24.9015843191863 60.4385190610541 24.9072550171938 60.4386077310921 24.9074467370527 60.4398083622232 24.9100411689492 60.4401169699761 24.9107080853796 60.4386494986841 24.9130284993839 60.438899387149 24.9133765301097 60.4389356192327 24.9134269887525 60.4391004907425 24.9136566086961 60.4395428351444 24.9133224671111 60.4408758661525 24.9123368335938 60.4416580530772 24.9140157501483 60.4423384522699 24.9154763015655 60.4440313095383 24.9191105852859 60.4446404668493 24.9204304696698 60.445681942153 24.922688018348 60.4456973463231 24.9227203211493 60.4463071380049 24.9240060655486 60.4464495005776 24.9243372153243 60.4469849674462 24.9255437121851 60.4471153321853 24.9258221360648 60.4482431146128 24.9282309716107 60.4488366272802 24.9294760818523 60.4488756942704 24.9295822454888 60.4492194801458 24.9303006508865 60.4495887798283 24.9310960652395 60.4500519103531 24.932094930608 60.4500874977823 24.9320105585145 60.4516829290389 24.9325850085919 60.4537744410179 24.933318221159 60.4538924637215 24.9333595983689 60.4539561124597 24.9333819198518 60.4551511777203 24.9338027496758 60.4551739787998 24.9338106476733 60.4556857032921 24.9340009856724 60.4561443219897 24.9341776095646 60.4564780892907 24.9342883377148 60.4569909984735 24.9344943275936 60.4573508598427 24.9346220445423 60.4578785622355 24.934796225063 60.4583476897243 24.9349660023195 60.4588892641113 24.935172394039 60.4593825597157 24.9353519772823 60.4598224856154 24.9355187684019 60.4599208885901 24.9355361809376 60.460347472184 24.9356765976199 60.4605438967832 24.9357488605098 60.4610589654347 24.9359796599876 60.4611180835973 24.9360081536026 60.4611776268518 24.9360368385846 60.4613116264836 24.9362162681441 60.4623760291194 24.937198049097 60.4626354140489 24.9374282106581 60.464389792527 24.9389850506382 60.4658495459271 24.9402983621349 60.466512486919 24.9408797529886 60.4691497519709 24.9432739432615 60.4695487451594 24.9435618224699 60.4698796821253 24.9438536510407 60.4718160080847 24.9455580652917 60.4721111041504 24.9459292153399 60.4726403000739 24.9463869908388 60.47271405121 24.9464536879898 60.4740652267101 24.947676083228 60.4745147851245 24.9480801539172 60.4748624642933 24.9483896649302 60.4753591368448 24.9488427297266 60.4759219016021 24.9493488450924 60.4764049270132 24.9497831843142 60.4772301475327 24.9505253999441 60.4778760543112 24.9510921663366 60.4780495461366 24.9512601949817 60.4786307948754 24.9517716511163 60.4786980326678 24.9518308306644 60.4792935729027 24.9523683027481 60.4797842909275 24.9528159308543 60.4801186313357 24.9531214863054 60.4806116345127 24.9535713040777 60.4816793353985 24.9545221075059 60.4830593122857 24.9557690691218 60.4847366313508 24.9572660417609 60.4847855454378 24.9573083040628 60.485083179246 24.9575654054174 60.4853843350613 24.9578320095086 60.4854435447576 24.9578844377449 60.4856387912987 24.9580572884904 60.486212010725 24.9585495374033 60.4862377764146 24.9585675757476 60.4862968609123 24.9586089113291 60.4863680745789 24.9586587312184 60.4864172385847 24.9587038578846 60.4882951361448 24.9604272106959 60.4884776954777 24.9606287391344 60.4887661561486 24.9608837629707 60.4888485331347 24.9609230242275 60.4888862713127 24.9609563694255 60.4892970629224 24.9613532245468 60.4902251001567 24.9621581048605 60.4902604640676 24.9621900909314 60.4903883794075 24.9623394564676 60.4908357464641 24.9626991538803 60.4909600164365 24.9628186423851 60.4912933433379 24.9631177305443 60.4913449339057 24.9631454238294 60.4915754496998 24.963413993689 60.4917995290669 24.9635792751847 60.4918560457871 24.9636319656596 60.4923620246546 24.9641924850426 60.4925680682112 24.9644207505573 60.4926017630052 24.964578827824 60.4926352634468 24.9647359527034 60.4926352634468 24.9647359527034 60.492640763662 24.9647509005052 60.4926623615584 24.9648090057062 60.4926734412484 24.9648376220096 60.4926848280474 24.9648657639429 60.4926965993821 24.9648932081865 60.4927089215763 24.9649196712319 60.4927217402381 24.9649451200778 60.492730880844 24.9649620244259 60.4927444896737 24.9649856942484 60.4927867725355 24.965053262722 60.4928154051068 24.9651003318006 60.4928422684191 24.9651485859851 60.4928549737193 24.9651742605954 60.4928670863347 24.9652011193265 60.4928750766082 24.9652203352093 60.4928861651842 24.9652489512785 60.4929073766584 24.9653076458307 60.4929179471878 24.9653370408557 60.4929274814021 24.965362677661 60.4929944147995 24.9655336579191 60.4930001213039 24.9655485930891 60.4930109815074 24.9655775513903 60.4930729895498 24.9657559777837 60.4930765412642 24.9657668425223 60.4931262108787 24.9659183335189 60.4931365439983 24.9659480715121 60.4931471671164 24.9659773908277 60.4931581150158 24.9660062164638 60.4931628985787 24.9660183513068 60.4932335789379 24.9661830186342 60.4932455163313 24.9662101803136 60.4932571909095 24.966237777211 60.4932685645619 24.9662656660667 60.4932914158202 24.9663217832349 60.4933035102619 24.9663486438807 60.4933165724103 24.9663735869301 60.4933306660086 24.96639608042 60.493345809381 24.9664155588194 60.4933608483704 24.966430546922 60.4933776910402 24.9664430734967 60.4933950645437 24.9664521259177 60.4934126610065 24.9664593073791 60.4934303585894 24.9664654629823 60.4934480986414 24.9664708694887 60.4934520585548 24.9664719868897 60.4934698362619 24.9664769176898 60.4934876429287 24.9664813915322 60.4935055151016 24.966484859948 60.4935234284574 24.9664869057218 60.4935413853146 24.9664870917624 60.4935556293416 24.9664858718298 60.4935734979019 24.966482622466 60.4935912775877 24.9664776673002 60.493608957662 24.9664714803588 60.4936265599524 24.966464315157 60.4937322817701 24.9664107392692 60.4937382273414 24.9664077815651 60.4937557039289 24.9663994407761 60.4937908911087 24.9663851477203 60.4938086472982 24.9663798298145 60.4938173280274 24.9663777749224 60.4938351974159 24.9663745800363 60.4938531246021 24.9663728198126 60.4938710627802 24.9663723697424 60.4939069433522 24.9663746918316 60.4939247500429 24.9663773996705 60.4939426005671 24.9663812153451 60.4939603715218 24.9663862922374 60.4939780140606 24.9663929611213 60.4939954768413 24.9664013890718 60.4940129499588 24.966411673421 60.4940299164099 24.9664234824328 60.4940466016266 24.9664368748127 60.4940629691622 24.9664518164333 60.4940790072704 24.9664681259694 60.4940947400969 24.9664856198471 60.4941408224441 24.9665420676457 60.4941562317573 24.9665607288544 60.4941719050885 24.96657844502 60.494187875557 24.9665950320036 60.4941952204858 24.9666025645285 60.4942113427601 24.9666185048044 60.4942276426512 24.9666337239223 60.4942441114635 24.9666482406325 60.4942774815742 24.9666750076211 60.4942944072966 24.9666870925101 60.4943065380197 24.9666951264084 60.494323718058 24.9667056296373 60.4943410606421 24.9667150121039 60.4943585629998 24.9667230919159 60.4943741898641 24.9667289223657 60.4943919613602 24.9667340358895 60.494409817243 24.9667376147898 60.4944456766102 24.966740903581 60.4944630678934 24.9667411069741 60.4944810114409 24.9667404200712 60.4944989366904 24.9667385326832 60.4945167924004 24.9667350292671 60.4945335868351 24.9667296624251 60.4945510860996 24.9667216296882 60.4945683602343 24.9667117903872 60.4946364955524 24.9666659389078 60.4946404992699 24.96666344872 60.4946577728453 24.9666535729816 60.4946927296491 24.9666371276265 60.4947103420269 24.9666300344584 60.4947279686451 24.9666232863168 60.4947369706629 24.9666199186296 60.4947723154672 24.9666071266408 60.4947900293941 24.9666013925786 60.4948078076943 24.966596346332 60.4948256346401 24.966592134541 60.4948322248549 24.9665908114042 60.4948501095961 24.9665880343172 60.4948680403872 24.9665865106067 60.4948859843866 24.9665864426061 60.4949039185571 24.9665880866551 60.4949114998286 24.9665893232076 60.4949293149077 24.9665937603537 60.4949469178385 24.966600777948 60.494964064487 24.9666114472801 60.4949729617322 24.9666188827511 60.4949887360771 24.9666361560919 60.4950031317646 24.9666578490235 60.4950155307693 24.9666840730871 60.4950172620155 24.966688643799 60.495026591186 24.9667197029034 60.4950350643915 24.9667517623926 60.4950413335053 24.9667765133564 60.4950507596944 24.9668074571906 60.4950614875334 24.9668365898687 60.4950730837263 24.9668643572875 60.495097709954 24.9669173262512 60.4951000762281 24.9669223123868 60.4951125116277 24.9669485707612 60.4951250421207 24.9669745865105 60.4951379215465 24.9669999249796 60.4951413429905 24.9670063744234 60.4951547960513 24.9670304571316 60.4951686993455 24.9670534374568 60.4951830093949 24.9670754091559 60.4951976723625 24.9670963755998 60.4952012681993 24.9671013029705 60.4952163180362 24.9671211345884 60.4952316240303 24.9671400944576 60.4952652151991 24.967178428517 60.4952971815212 24.9672115115555 60.4953134398076 24.9672269525554 60.495329881915 24.9672414899176 60.4953418692827 24.967251317532 60.4954098765191 24.9672978383423 60.4954269888846 24.9673086195764 60.4954611694761 24.9673308220891 60.4954781195644 24.9673427423564 60.4954949135782 24.9673556191768 60.4955114401353 24.9673698054604 60.4955155386542 24.9673735361783 60.4955316947901 24.9673893478984 60.4955631436445 24.9674244301781 60.4955785696746 24.9674430187293 60.4955883739703 24.967455168037 60.4956495062485 24.9675314882241 60.4956548955116 24.9675379966869 60.4956705095082 24.9675559545305 60.4956864540476 24.9675726171929 60.4957030134254 24.9675866013338 60.4957086047714 24.9675904571207 60.4957259776433 24.9675994744024 60.4957437690967 24.9676041321696 60.4957617057869 24.9676041744208 60.4957668395198 24.9676033431969 60.4957845313861 24.9675973377661 60.495801577589 24.9675860926524 60.4958170533976 24.9675678632281 60.4958209667488 24.9675612092548 60.4958324984561 24.9675334676613 60.4958403176871 24.96750080584 60.4958461615141 24.9674664105491 60.4958512612368 24.9674315156193 60.4958520369984 24.9674258409968 60.4958712402774 24.9672856077346 60.4958748894621 24.9672569030232 60.4958828166244 24.9671859443918 60.4958894778363 24.9671144277488 60.4958926055665 24.9670786183955 60.4958957150641 24.9670427919695 60.4958962267131 24.9670368789676 60.4959032315884 24.9669655228106 60.4959075705225 24.9669302202012 60.4959133598094 24.966895791731 60.4959213151405 24.9668632303872 60.4959258341134 24.966848581775 60.4959368204652 24.9668198361719 60.4959493572354 24.966793815575 60.4959624873977 24.9667690140964 60.4959647156107 24.9667649417441 60.4959782556489 24.9667405151301 60.4959921773343 24.9667175575932 60.4960071783129 24.9666976458909 60.4960178380037 24.9666881294027 60.4960260044544 24.9666829749862 60.4960439310848 24.9666811784096 60.4960618709226 24.9666808375953 60.4960797034888 24.9666846547886 60.496083697527 24.9666862435549 60.4960907549137 24.9666896432525 60.4961080158081 24.9666995593344 60.4961250734496 24.966710871923 60.4961420078634 24.966722938747 60.4961519518855 24.9667301086621 60.4961688862976 24.966742175506 60.4961859110935 24.9667536904768 60.4962030908485 24.9667641761347 60.4962211905809 24.9667731475805 60.4962388395758 24.9667796528416 60.496256675466 24.9667836883899 60.4962746102872 24.9667847863356 60.4962812682021 24.9667843693084 60.4962991255714 24.9667809748465 60.4963167597788 24.9667741349262 60.4963339543643 24.9667637902703 60.4963440714984 24.9667558007099 60.4963602018089 24.9667398601464 60.4963754382023 24.9667206617822 60.4963896970475 24.9666986114194 60.4964029014683 24.9666739687782 60.4964093457932 24.9666601279021 60.4964207001681 24.9666319595993 60.4964311440356 24.9666023917043 60.4964410549893 24.9665720378308 60.496450682507 24.9665413557494 60.4964603187131 24.9665106548975 60.4964702851469 24.9664804067379 60.4964798956629 24.9664539134213 60.4964914893901 24.9664261305559 60.4965039240499 24.9663998972598 60.4965169613555 24.9663749007235 60.4965600030891 24.966301412719 60.4966141509943 24.9662058710232 60.4966399654098 24.9661553112556 60.4966503747732 24.9661335016567 60.4967104296883 24.9659983151215 60.496722855289 24.9659720820469 60.4967320162452 24.9659538100387 60.4967453046097 24.9659293800589 60.4967592446502 24.9659064568843 60.4967738775291 24.965885383884 60.4967893794606 24.9658671150306 60.4968058383165 24.9658527008736 60.4968173954024 24.9658454946463 60.4968350129986 24.9658387461809 60.4968529191708 24.965836786495 60.4968708198517 24.9658391788285 60.496888469166 24.9658457018946 60.4968912120936 24.9658471140885 60.4969083099539 24.9658581144424 60.496924785325 24.965872467652 60.4969407556029 24.9658890374754 60.4969573291718 24.9659080639923 60.4969726953736 24.9659268384451 60.4969878564848 24.9659462994603 60.4970028203687 24.965966373714 60.4970175699111 24.9659871169029 60.4970463797191 24.9660305219469 60.4970541405338 24.9660429450844 60.4971098856365 24.9661346433898 60.4971244284003 24.9661559641257 60.4971394780999 24.9661757782689 60.4971516675277 24.9661900179137 60.4971677230591 24.9662062913352 60.497200918134 24.9662339451762 60.497216446457 24.9662521635207 60.4972316420268 24.9662715316305 60.4972375339142 24.9662791922309 60.4972532417886 24.9662968167092 60.4972602480804 24.9663039340879 60.4972765067469 24.9663193937359 60.4972829998377 24.9663252505039 60.4972995186377 24.966339510349 60.4973057611395 24.9663448365822 60.4973223961302 24.9663584700917 60.4973285325411 24.9663627287004 60.4973471198865 24.9663718699613 60.4973649286104 24.9663741227167 60.4973821015097 24.9663641248154 60.4973870844967 24.9663592970014 60.4974024253549 24.966340473665 60.4974067737791 24.966334083284 60.4974206398845 24.9663110187801 60.4974248120972 24.9663036743991 60.4974344947709 24.9662730788845 60.4974421880048 24.9662457215994 60.4974509550692 24.9662139816798 60.4974596396432 24.9661791879364 60.497466773914 24.9661458023041 60.4974725360697 24.9661113737256 60.4974737618404 24.9661022292387 60.4974774133245 24.9660666219123 60.4974798005463 24.9660305657619 60.4974802835002 24.966021595274 60.4974820757232 24.9659853943196 60.4974839402746 24.9659492252446 60.4974852021119 24.9659288986528 60.4974908064182 24.9658570256308 60.4974917626637 24.96584139769 60.4974927986158 24.9658050802321 60.4974930266032 24.9657846909623 60.4974931453599 24.9657483035249 60.4974924655164 24.9657119661371 60.4974919388737 24.9657004005163 60.4974862179368 24.9656285635413 60.4974857085501 24.9656228416752 60.497481194755 24.9655506559423 60.4974796579451 24.9655229119287 60.4974750975751 24.9654488536959 60.4974734045423 24.9654126344641 60.4974721960153 24.9653816834505 60.4974711302365 24.9653453702814 60.497471895397 24.9653060290307 60.4974756462026 24.9652704700063 60.4974791187159 24.9652443420585 60.4974837106456 24.9652091672869 60.4974863033203 24.9651895401861 60.4974914840247 24.9651546926524 60.4974943038745 24.9651381831126 60.4975017852363 24.9651051942339 60.4975039259846 24.9650989238591 60.4975185389459 24.9650718425337 60.4975356284122 24.9650534369169 60.4975534946145 24.9650470910662 60.4975738849788 24.9650425352433 60.4975923463404 24.9650439998284 60.4976107503416 24.9650499472469 60.4976281551059 24.96505868856 60.4976358691229 24.9650645050135 60.4976524627062 24.965078359103 60.497686663996 24.9651048384145 60.4976982891764 24.9651150528149 60.4977150985698 24.9651277463016 60.4977242143996 24.9651312534883 60.4977420073162 24.9651360011204 60.497746211172 24.9651372124534 60.4977639450686 24.9651428013764 60.4977775625292 24.9651458442784 60.4977954659932 24.9651484181984 60.4978114489791 24.965149328095 60.4978293456898 24.9651520481097 60.4978472010489 24.965155590098 60.4978588900741 24.9651576249853 60.4978768048244 24.9651597612076 60.4978902390354 24.9651619780264 60.49790802603 24.9651669263619 60.4979232580604 24.9651698316515 60.4979411354509 24.9651671631926 60.4979563914599 24.9651622191315 60.497991747287 24.9651495691856 60.4979955211894 24.9651479123332 60.4980301397703 24.9651287353024 60.4980398038001 24.9651234316492 60.4980573141435 24.9651155421093 60.4980721217815 24.9651106443231 60.4980899620787 24.9651067217535 60.4981035469885 24.9651046865228 60.4981214716452 24.9651027615989 60.4981394168351 24.9651021828197 60.498146823007 24.9651025378908 60.498164717498 24.9651051123746 60.4981840833566 24.9651105262009 60.4982016633228 24.9651178000221 60.4982189644754 24.9651274038248 60.4982288671391 24.965134212121 60.49826235484 24.9651604271378 60.4982659752678 24.965162840421 60.4982833735485 24.9651717462481 60.4982989553296 24.9651775612381 60.4983166810832 24.9651832054087 60.4983344664115 24.9651880446684 60.4983387303023 24.9651890701782 60.4983565951875 24.9651926480569 60.4983744955973 24.9651950219378 60.4983924450385 24.9651958996329 60.498395516829 24.965195907356 60.4984134611864 24.9651952740464 60.4984243522742 24.9651950464937 60.4984422836754 24.9651965080002 60.4984531675395 24.9651993399699 60.4984705880197 24.9652079349252 60.4984835766153 24.9652174450323 60.4985000610263 24.9652317980334 60.4985166293384 24.9652457634046 60.4985248876433 24.9652513456394 60.4985425569647 24.965257412227 60.4985562085598 24.9652591602782 60.4985741513413 24.9652596014175 60.4985935443175 24.9652585495659 60.4986293807761 24.9652544456987 60.4986472953511 24.9652524486171 60.4986555033527 24.9652517883896 60.4986734429931 24.9652508458478 60.4986913525737 24.9652485213142 60.4986945478597 24.9652477929446 60.4987122071357 24.9652414235161 60.4987277289195 24.9652332943549 60.4987465061335 24.9652183694743 60.4987598455969 24.965194353256 60.4987654560257 24.9651776681249 60.4987723822724 24.9651442029095 60.4987761519962 24.9651057642396 60.4987774215915 24.9650694670808 60.4987771273918 24.9650331040833 60.4987760989768 24.9649957127927 60.4987729366875 24.9649232392282 60.4987701064431 24.9648854874895 60.4987663390269 24.9648498885462 60.4987616094641 24.9648148051637 60.498756446048 24.9647818976482 60.4987503998544 24.9647476434111 60.4987437319311 24.9647138469779 60.4987363197106 24.9646807163341 60.4987326818679 24.964665976732 60.4987062597907 24.9645671751411 60.4986987589152 24.9645341229626 60.4986919933464 24.9645004055837 60.4986882253169 24.9644806667424 60.4986759190829 24.9644122811946 60.4986727432528 24.9643925052323 60.4986676661251 24.9643576076904 60.4986631764817 24.9643223637623 60.498662279808 24.9643148086925 60.498658458958 24.9642792496961 60.4986557367704 24.9642432940392 60.4986552419141 24.9642320537885 60.4986549403529 24.964156378444 60.4986549509841 24.964119996461 60.4986553783157 24.9640962070848 60.4986580361283 24.964060259945 60.4986608746747 24.9640379216974 60.4986667534805 24.9640035205508 60.4986723756953 24.9639729047249 60.4986787454071 24.9639388915632 60.498686419905 24.963907983092 60.498698952666 24.9638823235489 60.498701886972 24.963879207842 60.4987194611699 24.963873152553 60.4987222868041 24.9638729206676 60.4987401590144 24.9638746218833 60.4987434645798 24.9638770001839 60.4987567878647 24.963900782851 60.498761035092 24.9639118969956 60.4987718695785 24.9639409161056 60.498778502256 24.9639588546441 60.4987888091853 24.9639886170268 60.4987967565766 24.9640144304242 60.4988052127742 24.9640465122151 60.4988126161788 24.9640796433438 60.4988148675182 24.9640906277986 60.4988212955513 24.964124584903 60.4988270045428 24.9641590969726 60.4988319339027 24.9641943134772 60.4988397357645 24.9642653307489 60.4988414766754 24.9642823015727 60.4988502602565 24.9643582101544 60.4988555418189 24.9643929676078 60.4988600312184 24.9644152469745 60.4988688311576 24.9644469067726 60.4988749454632 24.9644638400619 60.4988871008786 24.9644905551145 60.4988991964227 24.9645109918359 60.4989144761431 24.9645299724628 60.4989219201621 24.9645357513211 60.4989395372502 24.9645425128088 60.498946456022 24.9645450651976 60.498963837506 24.964554044764 60.4989701195694 24.9645560726059 60.4989877461574 24.9645505059906 60.4989930912313 24.9645464561425 60.4990089343089 24.9645293657747 60.4990127608301 24.9645246827907 60.4990270576833 24.96450279113 60.4990325074496 24.9644908865912 60.4990417601966 24.964459806101 60.4990447011461 24.9644465293279 60.4990511525658 24.9644125653754 60.4990566784692 24.9643779857189 60.4990616781054 24.964343056666 60.4990653889093 24.9643178410491 60.4990714711011 24.9642814601868 60.4990787307596 24.9642427839468 60.4990853973618 24.96420409026 60.4990937890893 24.9641701501828 60.4991027109817 24.9641421130054 60.4991115796246 24.9641211807105 60.4991269955455 24.964102587296 60.499137933585 24.9640960196414 60.499155572328 24.9641006673145 60.4991709468824 24.9641123218687 60.4991861234862 24.964125718721 60.4992014122336 24.9641446987677 60.499215428231 24.9641673822919 60.4992289136227 24.9641906089744 60.4992428608828 24.9642134971497 60.4992568858416 24.9642361801696 60.4992683072481 24.9642554028756 60.4992946758066 24.9643047712356 60.4993076861726 24.9643298305377 60.499311818369 24.9643375288028 60.4993391675277 24.9643846506824 60.4993520371667 24.9644057856764 60.49936789736 24.9644227817181 60.4993844744499 24.9644367282845 60.4993924842308 24.964443090836 60.4993924842308 24.964443090836 60.499409195448 24.9644564098953 60.4994257214726 24.9644705417916 60.4994418866412 24.9644863351709 60.4994447350415 24.964489361371 60.4994604338986 24.9645069685263 60.4994765230252 24.9645230762675 60.4994919282485 24.9645320342276 60.4995098242249 24.9645341167435 60.4995266837799 24.9645347893018 60.4995445667154 24.9645377831071 60.4995512585665 24.964537235969 60.4995692009336 24.9645205781319 60.4995814720197 24.9644942425798 60.4995838616617 24.9644866268642 60.4995909329615 24.9644532608055 60.499596264872 24.9644130296246 60.4996058741481 24.9643429216738 60.499609665248 24.9643188477889 60.4996156172921 24.9642845321404 60.4996222598741 24.9642507376579 60.4996237857919 24.9642436131155 60.4996314205686 24.9642106850611 60.4996351541528 24.9641957922944 60.4996438385694 24.9641639637802 60.4996499385691 24.964144643351 60.4996614967341 24.9641169137619 60.4996654617101 24.964110710565 60.4996842396135 24.9640940728561 60.499701382721 24.964083310073 60.499706385431 24.964080956802 60.4997241699982 24.9640763267758 60.4997445951207 24.9640752276296 60.4997625351238 24.9640754861966 60.499780436658 24.9640779323166 60.4997869696916 24.964079926162 60.4998043983794 24.9640884657147 60.4998213246039 24.9641005694421 60.4998291821384 24.9641069597544 60.4998621026291 24.9641360148283 60.499869639358 24.9641425709564 60.4998863247959 24.9641559645083 60.4999033411106 24.9641674981528 60.4999067661842 24.964169468459 60.4999242363996 24.9641777869699 60.4999419321282 24.9641838151455 60.4999507528856 24.9641862300194 60.4999685807001 24.964190319701 60.4999864574446 24.964193495837 60.4999922545992 24.9641943522507 60.5000101747217 24.9641962509962 60.500028114169 24.9641964732448 60.5000439941808 24.9641941660647 60.5000616962309 24.9641882483392 60.5000792880086 24.9641809900088 60.5000856762467 24.9641782038313 60.5001032276903 24.9641706566649 60.5001207376896 24.964162747896 60.5001282224669 24.9641588367662 60.5001452963825 24.9641476593827 60.5001619382889 24.9641340689846 60.5001691649628 24.9641273697371 60.500185142207 24.9641108346166 60.500200548593 24.9640922047503 60.5002067969293 24.9640837823015 60.5002214017466 24.9640626533276 60.5002359404187 24.9640413099667 60.5002509776946 24.9640214467185 60.5002539179215 24.9640181301936 60.5002703275285 24.9640034434583 60.5002872523996 24.9639913283832 60.500304236382 24.963979555573 60.5003144730366 24.9639717569446 60.5003470975094 24.9639413940327 60.5003588696272 24.9639318055411 60.5003760833029 24.963921547889 60.5003934591464 24.9639125001117 60.5004023074191 24.9639073015001 60.5004190767753 24.9638944130562 60.5004352451083 24.9638786305162 60.5004441422808 24.9638689856117 60.5004920503498 24.9638119512319 60.5005076458681 24.9637939465235 60.500523517425 24.9637769624441 60.5005339417378 24.9637667482135 60.5005503706494 24.9637521510589 60.5005629577089 24.9637418193285 60.5005795312073 24.9637278686343 60.5005894304545 24.9637167950256 60.5006034182859 24.963694083656 60.5006160003893 24.9636681280422 60.5006186650169 24.9636626435423 60.5006315534942 24.9636373424496 60.5006384491884 24.963623671125 60.5006505137997 24.963596764586 60.5006574366344 24.9635778106433 60.5006675030196 24.9635476788142 60.5006712903309 24.9635386639494 60.5006863894194 24.9635193244061 60.5006892706241 24.963516849154 60.5007064170119 24.9635063040343 60.5007139506253 24.9635038282066 60.5007318732168 24.9635023575936 60.5007498017631 24.9635042190437 60.500758896421 24.9635051597979 60.5007947965887 24.9635058207105 60.5008021438378 24.9635064340725 60.5008200230943 24.9635097736379 60.5008351817026 24.9635125737306 60.500853118839 24.9635132327851 60.5008657241933 24.9635117498285 60.5008836175394 24.9635089517076 60.5008928799919 24.963509117112 60.5009102829055 24.9635177310965 60.5009156895436 24.9635218351098 60.5009318200415 24.9635377037475 60.5009375686224 24.9635465573701 60.5009486284365 24.96357503606 60.5009533652801 24.9635917471256 60.5009616536005 24.9636240053566 60.5009689819319 24.9636592738853 60.5009737028349 24.9636943600357 60.5009761148274 24.9637299916865 60.5009764452857 24.9637663548764 60.500975610981 24.9637987849065 60.5009741163108 24.9638350258707 60.5009726106465 24.9638623081177 60.5009699355102 24.9638982953511 60.5009660496651 24.9639338122286 60.5009652650845 24.963939488391 60.5009595492095 24.9639739728246 60.5009532521186 24.9640080384535 60.500951998545 24.9640147638023 60.5009463098469 24.9640492647128 60.5009414645043 24.9640842954307 60.5009385984059 24.9641089496653 60.5009352457927 24.9641446879733 60.5009329886084 24.964180994914 60.5009319713414 24.9642173333333 60.5009271617398 24.9642894376145 60.5009262967273 24.9643092680852 60.5009254681341 24.9643456128674 60.5009255292371 24.9643819928942 60.5009256946753 24.9643928357609 60.5009268684065 24.9644291460025 60.5009296480865 24.9644629882033 60.5009350981734 24.9644976098524 60.5009436007162 24.9645356820995 60.5009521100793 24.9645677263775 60.5009609948066 24.9645949396489 60.500972896925 24.9646221275907 60.5009840781325 24.964638562132 60.5010009252168 24.9646507807961 60.5010062637341 24.9646527768988 60.5010241483263 24.9646541136573 60.501035263075 24.9646491189979 60.5010510203025 24.9646269887412 60.5010550158586 24.964592175179 60.5010536731039 24.9645683311748 60.501049486641 24.9645329381487 60.5010463472392 24.9645025965288 60.5010457124572 24.9644662887693 60.5010468400732 24.9644348236476 60.501048920366 24.9643986915869 60.5010517706816 24.9643694675233 60.5010575690802 24.9643350871505 60.5010644423225 24.9643111102208 60.5010767576677 24.964284734166 60.5010881767622 24.9642643690554 60.5011014364829 24.9642398458002 60.5011129956354 24.964222185199 60.5011298084067 24.9642097855829 60.5011420935026 24.9642049722834 60.5011598864876 24.9642003051559 60.5011755599407 24.9641991763011 60.5011934198471 24.964202426444 60.501211016414 24.9642096083238 60.5012282280767 24.9642180526567 60.5012438704546 24.9642366657429 60.5012584303577 24.9642579144033 60.5012723778868 24.9642808222142 60.5012857974884 24.96430327148 60.5012998659116 24.9643258621701 60.5013139688349 24.9643483596639 60.5013226949125 24.9643628176654 60.5013361832371 24.9643868287801 60.5013498527715 24.9644103550788 60.5013604001626 24.9644258643404 60.5013759708193 24.9644438993659 60.5013898600098 24.9644576875862 60.5014059238892 24.9644739070876 60.5014117487187 24.9644806984421 60.5014262558565 24.9645020234699 60.5014352027381 24.9645209474773 60.5014449110504 24.9645515148352 60.501455087716 24.9645868786026 60.5014662457357 24.9646153337187 60.5014787250757 24.9646415025223 60.5014843001444 24.9646531171447 60.5014962987339 24.9646801538081 60.5015059795262 24.9647036209144 60.5015171383539 24.9647321306946 60.5015267851919 24.9647592602657 60.5015362825408 24.9647901323758 60.5015416897994 24.9648095880748 60.5015581691844 24.9648754235679 60.5015659448172 24.9649082429655 60.5015729966896 24.9649377752417 60.5015810550004 24.9649702855749 60.5015896349353 24.9650022533213 60.5015986120786 24.9650314099692 60.5016091824164 24.9650607945239 60.5016209015608 24.9650883588543 60.5016244370631 24.9650958038024 60.5016374646774 24.965120827693 60.5016509786765 24.9651447648953 60.5016579191562 24.9651569860525 60.5016843311482 24.9652062831617 60.501691400385 24.9652198802743 60.5017168811084 24.9652711297718 60.5017189814049 24.9652757510511 60.5017427606658 24.9653302759515 60.5017490192758 24.9653437236203 60.5017621077125 24.9653686164161 60.5017774913573 24.9653944215531 60.5017919136162 24.9654160803326 60.501808591877 24.9654349025247 60.501825655817 24.9654460338783 60.5018432118938 24.9654535104714 60.5018466109571 24.9654549545479 60.5018640968197 24.9654631275574 60.5018817531748 24.9654695234521 60.5018965470092 24.9654701985481 60.5019143072945 24.9654651516249 60.5019271287667 24.9654625267588 60.5019450356407 24.9654647367079 60.5019517122277 24.9654649555174 60.5019691423764 24.9654571066175 60.5019729953786 24.9654535689252 60.5019873144778 24.9654319474228 60.5019901698347 24.9654248301244 60.5019977894412 24.9653920647953 60.5019989479942 24.9653838155405 60.5020021747579 24.9653480476695 60.5020026783855 24.9653374902875 60.5020028962524 24.9653011279933 60.5019997966233 24.9652669040361 60.501992278794 24.965233904059 60.5019857846816 24.9652097267463 60.5019781249365 24.9651768449585 60.5019723101834 24.9651424452766 60.5019694966171 24.9651163800421 60.5019678037482 24.9650801740121 60.5019683271792 24.9650438290135 60.5019693095921 24.9650252106863 60.5019722920486 24.9649893306528 60.501975789559 24.964953655054 60.5019766753826 24.9649446034076 60.5019798204397 24.964908786004 60.5019828390339 24.9648729218913 60.5019868026408 24.9648348314318 60.5019919380832 24.9647999636172 60.5019974183726 24.964765329115 60.5020010668945 24.9647389678908 60.502004582006 24.9647032729159 60.5020075019405 24.9646703650827 60.5020116142416 24.9646349604319 60.5020164230187 24.9646087085189 60.502025373008 24.9645772071185 60.5020303338816 24.9645626915852 60.5020412552255 24.9645338345499 60.5020467406009 24.964521908456 60.5020603731591 24.9644982717294 60.5020707848292 24.9644813382535 60.5020847256992 24.9644584834284 60.5020879408554 24.9644543482335 60.5021048424507 24.9644424708977 60.5021075440327 24.9644411723754 60.5021250954846 24.9644336248587 60.5021313599574 24.9644315565323 60.5021492284364 24.9644283050852 60.5021610676876 24.9644290011356 60.5021787620141 24.9644349388721 60.5021940486437 24.9644420110206 60.5022289351079 24.9644592355987 60.5022405309074 24.9644657562015 60.5022745640358 24.9644888618389 60.5022869649939 24.9644963517702 60.5023233144039 24.9645129201565 60.5023405108819 24.9645233144491 60.5023568514302 24.9645382423294 60.5023595778171 24.9645415131956 60.5023739129823 24.9645633413464 60.5023880602811 24.9645905171102 60.5024009662556 24.9646158039673 60.5024145754394 24.9646394988074 60.5024207266198 24.9646482549273 60.5024363988164 24.9646658836272 60.5024530673665 24.9646793523818 60.5024653961619 24.9646874114922 60.5024827380416 24.9646967405629 60.5025009004298 24.9647039239166 60.5025187220275 24.9647081966751 60.5025373260223 24.9647101804109 60.5025732098983 24.9647091864677 60.5025873770146 24.9647082251123 60.5026411804372 24.9647037945007 60.5026544398072 24.9647016152936 60.5026722781341 24.9646975645391 60.5026900593844 24.96469271607 60.5027020240625 24.9646892704304 60.5027375351277 24.9646785568691 60.5027521795578 24.964673559102 60.5027698253772 24.9646668979835 60.5027875279953 24.9646610163761 60.5027955412646 24.9646593664913 60.5028134724703 24.9646584604063 60.50282946174 24.9646603713743 60.5028473128463 24.9646642234398 60.5028591030713 24.9646664159812 60.5028770065324 24.9646689899832 60.5028878998385 24.9646724407233 60.5029045173259 24.9646860949789 60.5029123496738 24.9646937806024 60.5029281332392 24.9647110565876 60.5029308516676 24.9647149836295 60.5029422158553 24.9647428261704 60.5029466008632 24.9647653334599 60.5029481847599 24.964801456346 60.5029479655342 24.9648118140974 60.502946497796 24.9648480737304 60.5029459051287 24.9648616236614 60.5029452292132 24.964897979323 60.5029462822848 24.9649269784714 60.5029501826293 24.9649624643955 60.5029535011194 24.9649839459223 60.5029595119339 24.9650182432633 60.5029649321059 24.9650462037058 60.5029724855994 24.9650791841784 60.5029756429422 24.9650895123174 60.5029873606967 24.9651169868394 60.5029973695373 24.9651348801262 60.5030258801008 24.9651804418039 60.5030394459868 24.9652042493105 60.5030459657515 24.9652171529845 60.5030581308323 24.9652439257433 60.5030618291328 24.9652520346464 60.5030740634928 24.9652786391851 60.5030793524799 24.965292111763 60.5030892663341 24.9653285138388 60.5030980932688 24.9653601944975 60.5031000053976 24.9653683789891 60.5031044406711 24.9654036130546 60.5031063887319 24.9654253445476 60.5031104406521 24.9654607665635 60.5031143950004 24.9654892015421 60.5031192758362 24.9655242073798 60.5031233728723 24.965559644804 60.5031240222179 24.9655668886422 60.5031267709906 24.9656028476723 60.503127910488 24.9656151417563 60.5031333515911 24.9656497846989 60.5031376916022 24.9656687620508 60.5031472322247 24.9656995421717 60.5031509824791 24.9657087041508 60.5031641221921 24.9657334310382 60.5031693984907 24.9657419510225 60.5031837943318 24.9657636489495 60.5031912292066 24.9657735451793 60.5032065438127 24.9657924720418 60.5032155938837 24.965805217287 60.5032279664311 24.9658314674754 60.5032339520905 24.9658470454833 60.5032441969141 24.9658768892446 60.5032480496073 24.9658921821033 60.5032531159958 24.965926994396 60.5032552590601 24.9659491508678 60.5032590615422 24.96598471622 60.503263283303 24.966013025358 60.5032706859618 24.9660461432814 60.5032764977678 24.9660632802179 60.503289488482 24.9660882534283 60.5032991165772 24.9661018002863 60.5033146278074 24.9661200776388 60.5033302368234 24.9661371104993 60.5033461400021 24.9661539974592 60.5033624065493 24.9661693865306 60.5033664611662 24.9661725925988 60.5033835752774 24.9661834849615 60.5033951725775 24.9661889318271 60.5034137975158 24.9661946485045 60.503431737968 24.9661955273952 60.5034400801878 24.9661954234305 60.5034570645517 24.9661925013942 60.5034681942345 24.9661790557746 60.5034684043952 24.9661498312664 60.5034617553067 24.9661160649081 60.5034602180467 24.9661083120773 60.5034560594534 24.9660729509274 60.5034538725859 24.9660479196321 60.5034503292248 24.9660122649726 60.5034483621199 24.9659892778155 60.5034469740045 24.9659530145763 60.5034462298699 24.9659324821726 60.5034433737866 24.9658965477028 60.5034398938698 24.9658703590948 60.5034331300048 24.9658367274957 60.5034275328685 24.965820123406 60.5034135019706 24.9657976193213 60.5033964602231 24.9657779264516 60.5033806417336 24.9657607065323 60.5033678354315 24.9657478324701 60.5033513763299 24.9657333662507 60.503345083584 24.9657265125498 60.5033319724527 24.9657018930059 60.5033300359977 24.9656968241257 60.5033209384811 24.9656638853126 60.5033166737604 24.9656286402881 60.5033154376618 24.9656035313106 60.5033148113077 24.9655671658412 60.5033153525324 24.9655308000198 60.5033160957924 24.965512396256 60.5033204459126 24.9654401517723 60.5033209562104 24.9654282641066 60.5033216591871 24.9653919063443 60.5033222872074 24.9653612352612 60.5033246472859 24.9653251742487 60.5033286659279 24.9652995172635 60.5033382591604 24.9652689578675 60.5033408023925 24.9652637538212 60.5033557498307 24.9652438766387 60.5033596280795 24.9652402279143 60.5033764858031 24.9652278251289 60.5033809395176 24.9652253969114 60.503398623659 24.9652194802277 60.5034064345327 24.9652192818484 60.5034241086585 24.9652250758029 60.5034377072253 24.9652339481008 60.5034542595324 24.9652480440315 60.5034701193443 24.9652650244007 60.5034764461524 24.965272932174 60.5034911523306 24.965293772908 60.5035054197544 24.9653158795581 60.5035116842989 24.9653255942006 60.5035262185021 24.9653469374761 60.5035393880868 24.9653659623987 60.5035540603012 24.9653869328248 60.5035654229191 24.9654011357239 60.5035819398722 24.9654152704331 60.503594950105 24.9654226681733 60.5036126002608 24.9654292468732 60.5036228734015 24.9654320812039 60.5036407230989 24.9654358428084 60.5036550761474 24.9654364726986 60.5036728856347 24.9654322965394 60.5036771746938 24.9654302610957 60.5036940520447 24.9654179663246 60.5037104418111 24.9654037352477 60.5037269759749 24.9653895497378 60.503738622202 24.9653787666724 60.5037541708352 24.9653606181386 60.5037625719173 24.9653502388521 60.5037778077927 24.9653310171967 60.5037865591926 24.9653182848269 60.5037992909902 24.9652927003454 60.5038037725688 24.9652826760572 60.503814943542 24.9652542755346 60.5038167535892 24.9652469319719 60.5038205867628 24.9652114700771 60.5038213287605 24.9652006421887 60.5038233032378 24.9651628564574 60.503815932277 24.9651265309077 60.503802909377 24.9651018146566 60.5038000212135 24.9650985355336 60.5037828667766 24.9650885385081 60.5037687109471 24.9650872954162 60.5037508159072 24.9650899837823 60.5037330534252 24.9650931191257 60.5037151179643 24.9650925683371 60.5036974090519 24.965086849434 60.5036940947194 24.9650850721938 60.5036773944804 24.9650718778927 60.5036704979272 24.9650637144507 60.5036554227191 24.9650357578736 60.5036471456438 24.9650036234087 60.50364555587 24.9649941984039 60.5036416019707 24.9649587332877 60.5036408707257 24.9649372893858 60.5036425465263 24.9649011252029 60.503645578619 24.964873799672 60.5036508323748 24.964839031926 60.5036566297692 24.964804576095 60.5036597761883 24.9647865131132 60.5036659187027 24.9647523087927 60.5036729862505 24.9647181010768 60.503681314441 24.9646858721984 60.5036825986669 24.964680564898 60.5036896052375 24.9646470712285 60.5036948781109 24.9646241580087 60.50370501983 24.9645942374895 60.5037138756751 24.9645765812357 60.5037287818421 24.9645563600664 60.5037387073264 24.9645446465632 60.5037541796199 24.9645262110255 60.5037720501753 24.964507788943 60.5037890350227 24.9644960696845 60.5038066091364 24.9644888299663 60.5038146059345 24.9644866892976 60.5038697803402 24.9644814618522 60.503905553924 24.9644755937379 60.5039190433422 24.9644725985916 60.5039546721453 24.9644637163739 60.5039546721453 24.9644637163739 60.5039666365367 24.9644602523119 60.5040021170466 24.9644493032159 60.5040021170466 24.9644493032159 60.5040199094764 24.9644445993905 60.5040278270925 24.9644431557141 60.5040457452465 24.9644413943211 60.5040636931017 24.9644415797362 60.504077868269 24.9644429124019 60.5040957658116 24.9644456870662 60.5041136678858 24.9644481700582 60.504131610654 24.9644486107629 60.5041372075277 24.9644481139841 60.504155048895 24.9644442630289 60.50417277333 24.9644386346321 60.5041771444267 24.9644372677203 60.5042136837432 24.9644280186676 60.5042315382464 24.9644244400473 60.5042501942182 24.9644239436121 60.5042679388606 24.964429059008 60.5042831754467 24.9644369724814 60.5043000921098 24.9644490421883 60.5043059468163 24.9644548488096 60.5043206688465 24.9644755430126 60.5043269153252 24.9644864244407 60.5043392799918 24.9645127301583 60.5043435562458 24.9645316392181 60.5043433175974 24.9645660385514 60.504340623512 24.9646019760156 60.504337006452 24.9646174463815 60.504322998684 24.9646394509734 60.5043190066719 24.9646427063515 60.5043014837996 24.9646503617687 60.5042951904642 24.9646523045258 60.5042776174532 24.9646596170483 60.5042602950406 24.9646692267699 60.5042560319889 24.9646717888698 60.504238968683 24.9646830760424 60.504221911489 24.964698296609 60.5042068539649 24.964718017582 60.5041928861425 24.9647408754976 60.5041901904842 24.9647455065008 60.5041766330071 24.964769358526 60.5041644097117 24.9647911781748 60.5041378343146 24.9648401049126 60.504133457299 24.9648487387025 60.5041211617472 24.9648752432891 60.5041118698947 24.9649014137847 60.5041042795609 24.9649343252389 60.5041031104006 24.9649406998852 60.5040978025059 24.964975453283 60.5040950054465 24.9650058240478 60.5040940148912 24.9650421643001 60.5040936561336 24.9650745857927 60.504092476296 24.9651108832744 60.5040914995059 24.9651398832556 60.5040911829924 24.9651762540796 60.5040918384153 24.9652103967398 60.5040934328354 24.9652466295281 60.5040963813185 24.9652844893362 60.5041010036627 24.9653196216812 60.5041036667298 24.9653328768865 60.5041132851368 24.9653634526143 60.5041169675215 24.9653711074917 60.5041319862613 24.9653906542423 60.5041396908294 24.9653958532951 60.5041574974213 24.9653991441259 60.5041736023238 24.9653968595239 60.5041914535262 24.9653930631062 60.5042084436121 24.9653875723259 60.5042258287945 24.9653785418539 60.5042427840255 24.9653666426227 60.504253609175 24.9653579688123 60.5042866968193 24.9653296870934 60.5042928723233 24.9653247286609 60.504309758357 24.9653124148381 60.5043218602474 24.9653032420592 60.5043551643432 24.9652732529293 60.5043718450149 24.9652598409961 60.504390964832 24.9652485344013 60.5044088220474 24.9652421878043 60.5044266393886 24.9652379380918 60.5044334534356 24.9652377475753 60.5044512652087 24.9652419668389 60.5044622403654 24.9652454856434 60.5044799265135 24.9652514793685 60.5044825356846 24.9652529548533 60.5044984030817 24.9652698442165 60.5045044147281 24.9652776991506 60.504519154856 24.9652984109237 60.5045245480141 24.9653075248634 60.5045357401164 24.9653358714814 60.5045386936556 24.9653457940382 60.5045467162644 24.9653783278761 60.5045493945922 24.9653908173994 60.5045563461725 24.9654243836565 60.5045592414159 24.9654375516493 60.5045679881288 24.965469275218 60.5045716603235 24.9654792073748 60.5045845122982 24.9655044996481 60.5045934344619 24.9655176904596 60.5046089109896 24.9655360432773 60.504618682176 24.9655442453693 60.5046360077144 24.965553685789 60.5046389581304 24.9655551581225 60.5046561141022 24.9655658476163 60.5046634465175 24.9655713797319 60.5046798635458 24.9655860312016 60.5046929156348 24.9656014764403 60.5047067664585 24.9656245389749 60.5047130011754 24.9656381897488 60.5047232370769 24.9656680353566 60.5047270897965 24.9656833288834 60.5047332869289 24.9657174890482 60.5047376759082 24.9657455704062 60.5047435087415 24.9657799901905 60.5047466219561 24.965797442722 60.5047534489241 24.9658310899259 60.5047597885472 24.9658545688148 60.504771059072 24.9658827652062 60.5047773218156 24.9658929539629 60.5047933479687 24.9659090689179 60.504809134663 24.9659200812397 60.5048266758157 24.9659277600139 60.5048405808153 24.9659349382333 60.5048568622819 24.9659501266186 60.5048692790137 24.9659651383904 60.5048820279382 24.9659907471513 60.5048958216407 24.9660112456199 60.5049111712744 24.9660301167385 60.504927823891 24.96605256689 60.5049431471549 24.9660714761239 60.5049566569345 24.96608277699 60.5049743620339 24.9660858925083 60.5049790139993 24.9660835064961 60.5049944452439 24.9660653103189 60.5049978225291 24.9660594345667 60.5050089406566 24.9660310912147 60.5050109450151 24.9660223511015 60.5050149508151 24.9659870046651 60.5050151725015 24.9659809260313 60.5050143048045 24.9659446284202 60.5050129388178 24.9659286689001 60.5050108883462 24.9658925547105 60.5050140121968 24.9658541492188 60.5050159884882 24.9658353211676 60.5050210523915 24.9658004547419 60.5050230304561 24.9657929364918 60.5050327126892 24.9657623154235 60.5050384283573 24.9657436900293 60.5050492038775 24.9657146759362 60.5050516305633 24.965710662764 60.5050664606758 24.9656901546455 60.5050787298122 24.9656683864916 60.5050914883116 24.9656427812345 60.5051047625883 24.9656215510401 60.5051202456638 24.9656032238318 60.505135030212 24.9655903312993 60.5051517691893 24.9655772069444 60.5051664023924 24.9655655805393 60.505183259307 24.9655531226276 60.505187487316 24.9655506174032 60.5052223380794 24.9655331156066 60.5052271134356 24.965530576059 60.5052445801178 24.9655221776989 60.5052623202289 24.9655169858105 60.5052681968365 24.9655171637338 60.5052860197922 24.9655215282491 60.5052958851695 24.965524716137 60.5053134645494 24.9655319553092 60.5053278997956 24.9655409214783 60.5053446353256 24.965554078035 60.5053574775457 24.965565183914 60.5053738785708 24.9655799641785 60.5053921184782 24.9655963593674 60.5054087785177 24.9656098667511 60.5054446714172 24.9656359735366 60.5054628290792 24.9656528656903 60.5054795713519 24.9656658762333 60.5054967179098 24.9656706475165 60.5055146559578 24.9656707795803 60.5055224276097 24.9656703651928 60.5055403139622 24.965667695738 60.5055505505908 24.9656640124324 60.5055679366198 24.9656550363062 60.5055839299048 24.9656460199994 60.5056012848523 24.9656367726112 60.5056374996023 24.9656186023498 60.5056567343499 24.9656042285573 60.5056737495365 24.9655927258274 60.505688203994 24.9655870478192 60.5057060946007 24.9655840684182 60.5057213801856 24.9655834196685 60.5057393208249 24.9655831326248 60.5057573547047 24.9655836593126 60.5057636200085 24.9655851788421 60.5057810078938 24.9655939964582 60.5057979984488 24.9656079750237 60.505801743743 24.9656115102691 60.5058177906496 24.9656278064127 60.5058328387693 24.9656475163632 60.5058430489494 24.9656786212991 60.5058454563711 24.9656963190019 60.5058464590111 24.9657326272916 60.505845268665 24.9657653029971 60.5058442686088 24.9657798267295 60.5058401734169 24.9658151979165 60.505835807817 24.9658375456184 60.5058283734071 24.9658706855935 60.5058247608228 24.9658870486751 60.5058175722752 24.965920409982 60.5058109767053 24.9659490716066 60.5058028946503 24.9659815600385 60.5057964034407 24.9660064632453 60.5057882305329 24.9660388844911 60.5057844582597 24.966055967844 60.505770535541 24.9661230442699 60.5057651290978 24.9661484076015 60.5057587221395 24.966182375459 60.5057551103824 24.9662152938886 60.5057534709609 24.966251512704 60.5057533431183 24.9662613920753 60.5057540853896 24.9662977165917 60.5057550047454 24.9663114825156 60.5057603814829 24.9663460413335 60.5057715906991 24.9663714013918 60.5057914894224 24.9663758366837 60.50580762752 24.9663763187114 60.5058128740997 24.9663746421385 60.5058295691206 24.9663615753038 60.5058369621423 24.9663534079046 60.5058525476237 24.9663353109785 60.5058592506419 24.9663284252904 60.5058754859364 24.9663128920578 60.5058896159046 24.9662994759704 60.5059060638531 24.9662849310908 60.5059115696521 24.9662808159315 60.5059287333582 24.9662702148039 60.5059461082366 24.9662610938909 60.5059503774196 24.9662589321638 60.5059677828212 24.9662500460938 60.5059851781398 24.9662410877941 60.5059999357796 24.966233496866 60.5060175517002 24.9662266374277 60.5060347490908 24.9662241389079 60.506052689455 24.9662238340165 60.5060566677844 24.9662238032164 60.5060925585787 24.9662250323168 60.5061059980308 24.9662275957873 60.5061238355814 24.966231741324 60.5061354823918 24.966234544651 60.506153201059 24.9662403186089 60.5061634361357 24.9662459605998 60.5061806170301 24.9662565218887 60.5061853017881 24.9662592334161 60.5062023428995 24.9662706412824 60.5062066740912 24.9662749048741 60.5062211447827 24.9662962178714 60.5062250788138 24.9663044768181 60.5062360614619 24.966333239061 60.5062481700207 24.9663663383308 60.5062574117742 24.9663993258884 60.5062581021395 24.9664074967383 60.5062561461207 24.9664435720276 60.5062520940349 24.9664800154457 60.5062504394137 24.9664881329141 60.5062404158713 24.9665181752727 60.5062364288442 24.9665264753335 60.5062221597209 24.9665484421323 60.506218215934 24.9665530968553 60.5062020851379 24.9665690060601 60.5061839356324 24.96658387612 60.5061747643381 24.9665885123803 60.5061572651247 24.9665965481917 60.5061381717959 24.9666113680832 60.5061219115674 24.966628214195 60.5061093745106 24.9666548077182 60.5061006157337 24.9666853352402 60.5060961644413 24.9667061949004 60.5060907201172 24.9667408676155 60.5060868926789 24.9667814492992 60.5060854244227 24.966817712364 60.506085641453 24.9668567110576 60.5060877278384 24.9668928424549 60.5060907103229 24.9669211771742 60.5060948515903 24.9669565970128 60.5060971747079 24.9669776149934 60.5061020464723 24.9670126430291 60.5061061411814 24.9670302716753 60.506116893982 24.9670592852228 60.5061198159204 24.967064784623 60.5061347521735 24.9670848302552 60.5061536296614 24.9670988736541 60.5061716323036 24.9671032461009 60.5061751721713 24.9671027329127 60.5061925837294 24.9670942475358 60.5061965098391 24.9670913788728 60.5062126516124 24.967075596737 60.5062162780389 24.9670707434055 60.5062299401676 24.9670472485479 60.5062338927219 24.9670390417794 60.5062453855952 24.9670111113185 60.5062524190937 24.9669905451443 60.5062619084516 24.9669596257391 60.5062813621053 24.9668947701609 60.5062908349306 24.9668604094521 60.5062989348662 24.9668279014236 60.5063046431648 24.9668040669943 60.506313565899 24.966772509102 60.5063197319673 24.9667574975592 60.5063328438418 24.9667326709852 60.5063403831935 24.9667199592947 60.5063549233733 24.9666986858196 60.5063593246066 24.966693401394 60.5063759434373 24.9666800478623 60.5063789270819 24.9666789866582 60.506396832665 24.9666787570436 60.5064129485113 24.9666830836057 60.5064318415129 24.9666951953166 60.5064497374972 24.9667149644349 60.5064628961788 24.9667326991384 60.5064712567498 24.9667579651781 60.5064757790547 24.9667889175047 60.5064736294357 24.9668234934413 60.5064638714039 24.9668597664034 60.5064613636016 24.9668672999017 60.506450321523 24.9668959308851 60.5064463645419 24.9669038465924 60.5064330023269 24.9669281606861 60.5064300043627 24.9669341767608 60.5064175875993 24.96696041683 60.5064031451691 24.9669869295045 60.5063906170147 24.967013522561 60.5063872697795 24.9670237313237 60.5063808057142 24.9670575028858 60.5063799113269 24.9670730765567 60.5063794773738 24.9671094390501 60.5063793009048 24.9671308688119 60.5063800163013 24.9671672139356 60.5063817540159 24.9671828230468 60.5063872395924 24.9672174669123 60.5063895720384 24.9672314360098 60.5063954311385 24.9672658379327 60.5064001149598 24.9672897134146 60.5064083135132 24.967322038203 60.5064118292242 24.9673329097991 60.5064232234013 24.9673609910895 60.5064272187918 24.9673691553037 60.5064410348106 24.9673923130441 60.5064570482101 24.9674081935688 60.5064741453306 24.9674067764999 60.5064913204203 24.967395737951 60.5065066442673 24.9673769654464 60.506514183466 24.9673607022634 60.5065259441045 24.9673332466598 60.5065292260683 24.9673275952921 60.506543232713 24.9673048983298 60.5065495807941 24.9672900393005 60.5065615735025 24.9672630790739 60.5065673324711 24.9672561250759 60.506583568427 24.9672406283511 60.5066007970052 24.9672219003079 60.5066041344062 24.9672198881045 60.5066217484374 24.9672129016947 60.5066388832997 24.9672057085236 60.5066420728442 24.9672057818991 60.5066597190312 24.9672121074115 60.5066638885352 24.9672140135814 60.5066815608089 24.9672202828278 60.5066843736659 24.9672209808448 60.5067022883691 24.96722311869 60.5067201735564 24.9672256772942 60.5067374527275 24.9672350310336 60.5067440402931 24.9672423772318 60.5067572728896 24.9672667373504 60.5067667946574 24.9672974860926 60.5067717353525 24.9673323284415 60.5067710647803 24.9673696715011 60.5067656559018 24.9674043243872 60.5067580293492 24.9674372584166 60.5067529076025 24.9674559747849 60.5067440127358 24.96748760402 60.5067355465181 24.9675196617213 60.5067286028837 24.9675532085957 60.5067267804161 24.967565052169 60.5067231100854 24.9676006342364 60.5067217675081 24.9676369083076 60.5067222943373 24.9676732656311 60.5067244612614 24.9677093927352 60.5067277571736 24.9677418064559 60.5067328331781 24.9677766949911 60.50673946447 24.9678105026044 60.5067477254325 24.9678428057333 60.50675759147 24.9678731688006 60.5067627831624 24.9678867586818 60.5067748683502 24.9679136315285 60.5067883728897 24.9679375742124 60.5068032669207 24.9679578054262 60.5068194900624 24.9679733089968 60.50682569959 24.9679776556071 60.506843152455 24.9679860335839 60.5068609990327 24.9679895967754 60.5068789538131 24.9679902390405 60.5068968792202 24.9679889525179 60.5069018900965 24.9679883108626 60.5069197860247 24.967985678386 60.5069376959137 24.967983372875 60.5069556391609 24.9679826680603 60.5069735505281 24.9679845879873 60.5069826471593 24.967986841391 60.5070002814613 24.9679935688312 60.5070176391197 24.9680027724313 60.5070687300031 24.9680372566675 60.507086608048 24.9680481944374 60.5071040535981 24.9680566822561 60.507121845016 24.9680613417822 60.5071397653298 24.9680603105959 60.5071457662105 24.9680586234124 60.507163043723 24.9680489992232 60.5071782675724 24.9680301418302 60.5071870445058 24.9680078633033 60.5071931995717 24.9679738372456 60.5071962823255 24.9679380000889 60.5071981109054 24.9679017861326 60.5071985498043 24.9678905026146 60.5072000719063 24.9678542167794 60.507202288239 24.9678181060228 60.5072060671315 24.9677825712972 60.5072128114765 24.9677489089653 60.5072230586467 24.967716429669 60.5072351983306 24.9676896783968 60.5072490831199 24.9676666426663 60.50726435798 24.9676475997088 60.5072800178413 24.9676331953213 60.5072971124679 24.967622179864 60.5073146859154 24.9676148864257 60.5073324642156 24.9676098386484 60.5073503311019 24.9676064791931 60.5073533426773 24.9676060719854 60.507425050413 24.9675995585234 60.50744296982 24.9675972885886 60.5074608367056 24.9675939291137 60.5074796191401 24.96758876376 60.5074972561233 24.9675821037639 60.5075146935183 24.9675735438116 60.5075318357751 24.9675627073952 60.5075484494235 24.9675490080794 60.5075644077332 24.9675323809439 60.5075795828648 24.9675126882826 60.5075936918411 24.9674902210274 60.5076066830406 24.9674651281215 60.5076173077761 24.9674409302115 60.5076210982143 24.9674315129635 60.5076634518606 24.9673139846034 60.5076740242066 24.9672845807037 60.5076850473073 24.9672558771009 60.5076942698798 24.9672339707944 60.5077066589398 24.9672076768835 60.5077200119491 24.9671833443046 60.5077347122211 24.9671625518691 60.5077508534413 24.9671467326118 60.5077623273183 24.9671393656258 60.5077800101486 24.9671333581537 60.5077979365499 24.9671327267523 60.5078158056294 24.9671359967358 60.5078334925239 24.9671420466657 60.5078509555198 24.9671504966657 60.5078694047497 24.9671617809121 60.5078862557639 24.9671742763616 60.5079027321036 24.9671887077728 60.5079187619847 24.9672050796455 60.5079342559547 24.9672234158006 60.5079491677621 24.9672436280673 60.5079584336767 24.9672575823676 60.5079722937499 24.967280683739 60.5079854774937 24.9673053756993 60.507997955771 24.9673315143616 60.5080097184992 24.9673590275011 60.5080207009266 24.9673877916753 60.5080272085454 24.9674063995171 60.508037022234 24.9674368579956 60.5080462811547 24.9674680433823 60.5080803509221 24.9675961947955 60.5080876012568 24.9676228796945 60.5081050246547 24.9676865213731 60.5081134006372 24.9677187093349 60.5081213433131 24.9677513433796 60.5081286841367 24.9677845615623 60.5081330701381 24.9678065809807 60.5081397196512 24.9678404071261 60.508147033534 24.9678736270342 60.5081563888387 24.9679046608962 60.5081678788319 24.9679325557371 60.5081773237797 24.9679500144496 60.5081921232647 24.9679705256567 60.5082083789712 24.9679858092733 60.5082258493311 24.9679935672174 60.5082434603118 24.9679881474767 60.508254655294 24.9679742592324 60.5082660956238 24.9679464035045 60.5082742975639 24.9679140877369 60.5082801688962 24.967879714002 60.5082821838123 24.9678628124778 60.5082854470968 24.9678270356536 60.5082884482171 24.967791147743 60.5082923532711 24.9677556403476 60.5082985066029 24.9677215038987 60.5083014460536 24.9677104640775 60.5083119828692 24.9676810801681 60.5083248165725 24.9676556687873 60.5083393288657 24.9676343233081 60.5083548610207 24.9676174310681 60.5083716010199 24.9676043610101 60.5083888550047 24.9675943733882 60.5084063539953 24.96758631934 60.5084063539953 24.96758631934 60.5085150917229 24.9675496907568 60.5085238663689 24.9675461357039 60.5085589875392 24.9675310397659 60.5085765716129 24.9675238546012 60.5085942617687 24.9675177374341 60.5086120554087 24.9675131073611 60.5086299591855 24.9675104011146 60.5086409905056 24.9675099468395 60.5086589151083 24.9675115561115 60.5086767003399 24.9675163980778 60.5086940409139 24.9675256575951 60.5087104400632 24.9675403311581 60.5087178615065 24.9675493559954 60.5087320491978 24.9675715632041 60.5087446059641 24.9675975519295 60.5087562017573 24.9676253130368 60.5087671754341 24.9676540967182 60.5087776219198 24.9676830591585 60.5088195509489 24.9678012316028 60.5088303490096 24.9678302814016 60.5088329855148 24.967837092437 60.508889590623 24.9679782982614 60.508900327498 24.9680074612994 60.5089104061897 24.968037048085 60.5089394513455 24.9681289978336 60.5089496524774 24.9681589595303 60.5089605746968 24.9681879107119 60.5089702919996 24.968210871897 60.508982316257 24.9682378779919 60.508994951712 24.968263734738 60.5090089667547 24.9682864086194 60.5090245703005 24.9683042836618 60.5090323493746 24.9683108455967 60.5090496329031 24.9683204917146 60.5090674594763 24.9683245119273 60.5090853748003 24.9683231532507 60.5091029712147 24.9683161861985 60.5091116506536 24.9683105061268 60.5091279738517 24.9682954221689 60.5091430509416 24.9682757714744 60.5091569916001 24.9682528586321 60.5091698343815 24.9682274462449 60.5091748286715 24.9682162774886 60.5091866718909 24.9681889240479 60.5091990331052 24.9681625581732 60.509212974575 24.9681396998349 60.5092286373343 24.9681219431019 60.5092426463932 24.9681082425296 60.5092591035011 24.9680936964639 60.5092681544622 24.9680864629925 60.5092849821884 24.9680738426769 60.509294413402 24.9680679879197 60.5093119748469 24.9680604946415 60.5093276230797 24.9680547605157 60.5093451209874 24.9680466336821 60.5093563833352 24.9680401177744 60.5093909293396 24.968017917762 60.5094083740668 24.9680092477763 60.5094177773164 24.9680045058367 60.5094352043739 24.9679958551578 60.5094433347097 24.967993633733 60.5094612122911 24.9679962844978 60.5094662333131 24.9679968989784 60.5094840680474 24.9679961462396 60.509501456435 24.9680044196326 60.5095043620257 24.968007079178 60.5095207552792 24.9680308065367 60.50953171879 24.9680595188016 60.5095332446215 24.9680647602179 60.5095412700456 24.9680998860315 60.5095470220925 24.9681343527822 60.5095497642272 24.9681569497453 60.5095526197332 24.968192891178 60.5095545537894 24.9682290724727 60.5095549271592 24.9682358979157 60.5095588580491 24.968308256587 60.5095593829075 24.9683238521575 60.5095593774076 24.9683966394959 60.509559434393 24.9684039219127 60.5095605173497 24.9684402475952 60.509562353191 24.9684764714905 60.5095637993213 24.9685047962823 60.5095652498635 24.9685410807401 60.5095659406087 24.9685616750448 60.5095685658902 24.968637958879 60.5095703209216 24.9686741878519 60.5095725593975 24.9687026451976 60.5095769318436 24.9687379452725 60.5095816169968 24.9687713678509 60.5095868085629 24.9688061977163 60.5095938391834 24.9688414771192 60.5096038281321 24.9688716714972 60.5096056828831 24.9688766920048 60.5096167006051 24.9689054376586 60.5096213145986 24.9689158956465 60.5096346450462 24.968940216016 60.5096395512593 24.9689474498796 60.5096550528599 24.968965714475 60.5096648344746 24.9689740274734 60.5096821266522 24.9689836553673 60.5096940274746 24.9689878101873 60.509711855967 24.9689919582237 60.5097258251553 24.9689939252644 60.5097437591013 24.9689949701455 60.5097614871086 24.9689936963904 60.5097793029006 24.9689893387891 60.5097940444644 24.968983042473 60.5098112391731 24.9689726945444 60.5098282123792 24.9689607757569 60.5098369118391 24.9689546390966 60.5098540354254 24.9689437491375 60.5098713995666 24.9689345016841 60.509878473548 24.9689313265482 60.5099138302242 24.9689187121894 60.5099250851433 24.9689146559804 60.5099426264739 24.9689070185479 60.5099583183827 24.9688988411453 60.5099754621256 24.9688880955741 60.5099877621505 24.9688777625323 60.5100033123449 24.9688596849018 60.5100151180575 24.968841659536 60.5100441032373 24.9687987148343 60.5100754606275 24.9687540732324 60.5100894946945 24.9687313908823 60.5101173052255 24.9686779546695 60.5101268991415 24.968659776217 60.5101363265084 24.9686430471896 60.5101503045022 24.9686202225362 60.5101647410033 24.9685986077935 60.5101944494306 24.968557748575 60.510198271372 24.9685527550569 60.510243620488 24.968493866788 60.5102583383456 24.9684730357823 60.5102725968561 24.9684509402312 60.5102862766001 24.9684274054585 60.5102940382542 24.9684127660653 60.5103066215064 24.9683868226337 60.510317819472 24.968358379348 60.5103306132466 24.9683326959227 60.5103319230591 24.9683308287874 60.5103465845593 24.9683098372398 60.5103610022313 24.9682881687572 60.510390180111 24.9682407846711 60.5104061663469 24.9682159576977 60.5104208000784 24.9681949131415 60.5104354121114 24.9681759829179 60.5104513329327 24.9681592476405 60.5104614593654 24.9681512725854 60.5104788581247 24.9681425323909 60.5104854615739 24.9681408983744 60.5105033890839 24.9681403402396 60.5105220735473 24.9681482049053 60.5105341651467 24.9681719656791 60.5105404149937 24.9682043257479 60.5105423105603 24.9682409295112 60.5105420543208 24.968276010427 60.5105406722158 24.9682914162319 60.5105344910012 24.9683255020345 60.5105263282979 24.9683574531899 60.5105248859141 24.9683635910659 60.5105173956796 24.9683966476664 60.5105152042346 24.9684049090143 60.5105070030197 24.9684372814979 60.5105036477024 24.9684558163998 60.5104994077062 24.9684911649482 60.5104977749507 24.968507806856 60.5104947013127 24.9685436652507 60.5104933641801 24.9685643871264 60.5104935660896 24.9686006597329 60.5104959540816 24.9686182885211 60.5105025672309 24.9686521013399 60.5105067561852 24.9686729872364 60.5105136977176 24.9687065427143 60.5105201475866 24.9687331706691 60.5105284173137 24.9687654772204 60.5105333414165 24.9687850966798 60.5105411865249 24.9688178305835 60.5105487043362 24.9688508946582 60.5105640511737 24.9689215390337 60.510568616118 24.9689423468167 60.5105762842226 24.9689752558133 60.5105850660119 24.969006983956 60.5105960099915 24.9690385585395 60.5106077017017 24.9690661517758 60.5106178305008 24.9690860648312 60.5106326536883 24.9691063762149 60.5106416409118 24.9691132455532 60.5106592265793 24.9691203234624 60.5106723661575 24.9691232533212 60.5106902266522 24.9691212426719 60.5106948150269 24.9691188059942 60.5107112554029 24.9691043336895 60.510724344942 24.9690886321061 60.5107367844807 24.969062679376 60.5107387804959 24.9690516068307 60.5107428048146 24.9690292229115 60.5107441026585 24.96901948738 60.510748179896 24.9689840577508 60.510749299192 24.9689620014136 60.5107493290134 24.9689256047212 60.5107490292673 24.9689106320254 60.5107475345087 24.9688743854318 60.51074592857 24.9688538476725 60.510741449582 24.9688186258474 60.5107381331305 24.9687984137791 60.5107346369942 24.9687628571966 60.5107385236727 24.9687249439336 60.5107387966542 24.9687180959824 60.5107424335844 24.9686826574562 60.5107470451074 24.9686687616322 60.510759313909 24.9686422182941 60.5107621108315 24.9686365602551 60.5107768033446 24.9686164227588 60.510780546546 24.9686156965487 60.5107962980565 24.9686126154366 60.5107999837111 24.9686122389265 60.5108179308315 24.9686117891094 60.5108252546748 24.968611458021 60.5108431807407 24.9686096251293 60.5108555668193 24.9686114361746 60.5108734299347 24.9686149079913 60.5108829393535 24.968615369049 60.5109008363923 24.9686128093446 60.5109084093076 24.9686105500083 60.5109261319675 24.9686047952497 60.5109464359038 24.9686010465238 60.5109643842398 24.9686000865797 60.5109774553542 24.9686002881765 60.5109953616107 24.9686024639778 60.5110066353852 24.9686055469189 60.5110241275313 24.9686135594907 60.5110281261444 24.9686160414751 60.5110449270654 24.9686287970157 60.5110563091578 24.9686389955665 60.5110728692538 24.9686530413161 60.5110762375455 24.968655417051 60.5110933522853 24.9686663678294 60.5111101694853 24.9686790131065 60.5111177685894 24.9686867344089 60.511133789595 24.9687031273763 60.5111458290775 24.9687110806998 60.5111632282242 24.9687200646249 60.511173784837 24.9687255970209 60.5111912390368 24.9687340674695 60.511197966524 24.9687364514782 60.5112156923921 24.968742117897 60.5112224414261 24.9687447373666 60.5112397740505 24.9687540715974 60.5112582182312 24.9687691653324 60.5112739844438 24.968786521591 60.5112769697273 24.9687902875296 60.5112915547372 24.9688114702484 60.511304624329 24.9688363546249 60.5113112281212 24.9688524447975 60.5113215166122 24.9688822576935 60.511329435784 24.9689056976375 60.5113418229208 24.9689317724131 60.5113503547647 24.9689447180609 60.5113655064808 24.9689641895456 60.5113828697706 24.9689714089587 60.5114019041911 24.9689580125443 60.5114074799042 24.9689508142451 60.511421077036 24.968927156514 60.511429140766 24.9689093464425 60.5114409288932 24.9688819037124 60.5114490693864 24.9688644167006 60.5114734489748 24.9688109745685 60.5114851821358 24.9687834623414 60.5114963067343 24.968754913452 60.51150584112 24.9687251525584 60.5115155147416 24.9686945085577 60.5115268060969 24.9686662952734 60.5115411153152 24.9686445782956 60.5115554741619 24.9686349718857 60.5115733515911 24.9686323040628 60.5115912929532 24.9686326561065 60.5116024805334 24.9686454172619 60.5116150270176 24.9686713364508 60.511626220092 24.9686997995819 60.5116278486966 24.9687041241223 60.5116604714396 24.9687909943878 60.5116703114675 24.968821436796 60.5116791816413 24.9688530693481 60.5116822160797 24.9688653756369 60.5116891572917 24.9688989141689 60.5116942952734 24.9689337678806 60.5116968011913 24.9689697700648 60.5116958987737 24.9690060767214 60.5116909788599 24.9690433817577 60.5116827214431 24.9690756130421 60.5116709495612 24.9691029455926 60.5116580983626 24.9691201446547 60.5116419199224 24.9691358943306 60.5116252971521 24.9691495951692 60.5116115929602 24.9691609091347 60.5115951942897 24.9691757617488 60.5115790825303 24.9691917622165 60.5115475947864 24.969226668048 60.5115336166936 24.9692435914317 60.5115184085882 24.9692629052374 60.5114589162032 24.9693444118089 60.5114512578066 24.9693552196785 60.5114221499966 24.9693977909038 60.5114080975994 24.9694204568358 60.5113946410652 24.9694445062981 60.5113924410872 24.9694486697342 60.5113800056303 24.969474895827 60.5113692755728 24.9695040025762 60.5113623752225 24.9695374782443 60.5113537978164 24.9695693465621 60.511352835538 24.9695763470723 60.5113537296866 24.9696174045393 60.5113591608174 24.9696520574906 60.5113628587722 24.9696707888723 60.5113700039435 24.9697041687466 60.5113767245275 24.9697291229946 60.5113875132061 24.9697581762775 60.5114012925189 24.96978780749 60.5114140056693 24.969813479714 60.5114259288194 24.9698368151003 60.511439137913 24.9698614362297 60.5114494306137 24.9698785527262 60.5114643159399 24.9698988246594 60.5114682992889 24.9699032569039 60.5114836776608 24.969915792623 60.5115014714883 24.9699235685394 60.5115166747589 24.9699281366066 60.5115263342223 24.9699284247205 60.5115417291258 24.9699237452549 60.5115496114877 24.9699164391774 60.5115657900225 24.9699006899346 60.5115818721813 24.9698845095208 60.5115973171597 24.9698660008729 60.5116070305744 24.9698527145941 60.5116213733878 24.969830832046 60.5116625428208 24.9697604733513 60.5116710416697 24.9697464615159 60.5116852163073 24.969724152214 60.5116996997843 24.9697026615066 60.5117145021815 24.969682061628 60.5117295876079 24.969662354825 60.5117449470907 24.9696435416601 60.5117764820235 24.9696087787977 60.511785487704 24.9695997446066 60.5118017813509 24.9695844797203 60.5118183646746 24.9695705446882 60.5118301659164 24.9695616633913 60.5118472408044 24.9695505210848 60.5118646559381 24.969541670934 60.5118698684357 24.9695395230524 60.511887590581 24.9695337322215 60.5119053938126 24.9695291385829 60.511941035778 24.9695205137728 60.5119461199385 24.9695193758118 60.5119536843379 24.9695177364973 60.511971584551 24.9695147944538 60.5119895174931 24.9695151839451 60.5119948586521 24.9695161794216 60.5120125454384 24.9695222313848 60.5120300627879 24.9695301338105 60.5120359324602 24.9695328085465 60.5120535116238 24.9695400513255 60.5120712821581 24.9695451143862 60.5120913358625 24.9695479396618 60.5121091767422 24.9695517231821 60.5121247734421 24.9695591265045 60.5121415571597 24.9695719386755 60.5121461868469 24.9695763487328 60.5121617228715 24.9695945217757 60.5121705938501 24.9696079203186 60.5121844972848 24.9696309500608 60.5121971267847 24.9696528937043 60.5122099005578 24.9696784169743 60.5122195148521 24.9697064332792 60.5122270669581 24.9697394060249 60.5122329312641 24.9697712456973 60.5122415165742 24.9698030608213 60.5122485079867 24.9698151197657 60.5122629548079 24.9698366765418 60.5122670945003 24.9698460721993 60.5122775760252 24.9698756009458 60.5122873414475 24.9699005657544 60.5122988759021 24.9699284620254 60.5123090869011 24.969956149673 60.5123187766189 24.9699867663829 60.5123225465066 24.9700001928481 60.5123292818903 24.9700337997998 60.5123307414294 24.9700636199756 60.5123288032322 24.9700997552985 60.5123201293843 24.9701737105745 60.512316933461 24.970200379129 60.5123135882526 24.9702361288356 60.5123126406291 24.9702724389616 60.5123145379679 24.9703086075128 60.5123175046438 24.9703495365347 60.5123181301407 24.9703640888165 60.5123197590972 24.9704003288191 60.5123250102943 24.9704349759628 60.5123266441475 24.9704408305385 60.5123383165215 24.9704683540713 60.5123415298857 24.9704741280477 60.512355735324 24.9704963560702 60.5123669717189 24.9705123394277 60.5123825918121 24.9705301434448 60.5123852663878 24.9705323807012 60.512402565213 24.970541864051 60.5124204235751 24.970545027693 60.5124278816245 24.9705452533348 60.5124481645874 24.9705513438949 60.5124846605164 24.9705634335457 60.5124996287361 24.9705696744569 60.5125170828221 24.9705781462318 60.5125281663881 24.9705828996035 60.5125454345766 24.9705927310529 60.5125537809766 24.9706011714814 60.5125696406763 24.9706181955529 60.5125877216844 24.9706283223 60.5126055360536 24.9706327274906 60.5126226239931 24.9706436996988 60.5126419086986 24.9706485229866 60.5126598104816 24.9706462736341 60.5126771808231 24.9706374266463 60.5126930189779 24.9706205508492 60.5126990685967 24.9706108454279 60.5127108775062 24.9705835648975 60.5127195639298 24.9705517615639 60.5127268449886 24.970518497715 60.5127334069367 24.9704846048222 60.512738868663 24.9704545516155 60.5127448676301 24.9704202567183 60.5127505666066 24.9703857255432 60.5127557126895 24.9703508646143 60.5127597902694 24.9703154329434 60.5127627471694 24.9702795430991 60.5127666297565 24.9702047207731 60.512769713078 24.9701688776494 60.5127750500269 24.9701341686704 60.5127764075812 24.9701277625055 60.5127852769526 24.9700961843504 60.5127967707098 24.9700682674726 60.5128105078882 24.9700449465481 60.5128180141238 24.9700353502141 60.512834242238 24.9700199069852 60.512851438125 24.9700096314005 60.5128865391182 24.9699943733438 60.5128966735569 24.9699904601038 60.5129847337247 24.96995541973 60.5130023500986 24.9699485789556 60.513013146871 24.9699445149351 60.5130308150302 24.9699381263302 60.5130485061184 24.9699320641876 60.5130662405731 24.9699264911811 60.5130840208861 24.9699215711081 60.5131018674951 24.9699174666429 60.5131197467234 24.9699143256301 60.5131376596784 24.96991222087 60.5131478072268 24.9699115311554 60.5131657503596 24.9699114101538 60.5131836803032 24.9699127837703 60.5132015639345 24.9699158362506 60.5132193347304 24.9699209178837 60.5132369382994 24.9699279956429 60.5132435164343 24.9699311909359 60.5132607119409 24.9699415550921 60.5132750734436 24.9699634093993 60.5132865075045 24.9699841170836 60.5132979362072 24.9700121483731 60.5133053785631 24.9700367310826 60.5133127180102 24.9700699004791 60.5133177028778 24.9701047474672 60.5133203164403 24.9701407630091 60.5133219364897 24.9701770046793 60.5133222553055 24.9701855649675 60.5133250296083 24.9702581321162 60.5133254756119 24.9702715119702 60.513326887367 24.9703442554716 60.5133272695587 24.9703782428237 60.5133256659155 24.970396815268 60.5133233437842 24.9704272008889 60.5133202606732 24.9704630628019 60.5133160566059 24.9704984483288 60.5133103116318 24.9705329100966 60.5133030120735 24.9705661392665 60.5132998722678 24.9705781950032 60.513290390251 24.9706090649549 60.5132794312043 24.9706378958988 60.5132672452637 24.9706645993164 60.5132539563911 24.97068905815 60.5132475295112 24.9706993520533 60.5132185812975 24.9707424063198 60.513204509626 24.9707650012685 60.5131914528065 24.9707899555717 60.513186092398 24.9708024598441 60.5131757029135 24.9708321294137 60.5131673090938 24.9708642791551 60.5131609825615 24.9708983034322 60.5131569317476 24.9709337337882 60.5131550837647 24.9709746371732 60.5131557804819 24.9710110093124 60.5131581164686 24.9710470967501 60.5131610960064 24.9710829799877 60.5131643795075 24.971118771352 60.513167764587 24.9711541555965 60.5131711821097 24.9711899021583 60.5131857259191 24.9713324694957 60.5131996608987 24.9714379488019 60.5132021463592 24.9714543343992 60.5132077197597 24.9714889260588 60.5132136933371 24.9715232558846 60.5132199953079 24.9715573283663 60.5132199953079 24.9715573283663 60.5132475639038 24.971691758411 60.513251714927 24.9717107724593 60.5132591075207 24.9717439206221 60.5132667396094 24.9717768716548 60.5132746726209 24.9718095306321 60.5132918290306 24.9718734745451 60.5133016089061 24.9719053258531 60.5133122044171 24.971934703318 60.5133246809781 24.9719607934303 60.5133396507453 24.971980734274 60.5133450889029 24.9719857501004 60.5133623685755 24.9719951628205 60.5133802596911 24.971995756687 60.5133973833966 24.971985450056 60.5134014467812 24.9719809696474 60.5134150561841 24.971957493142 60.5134248880597 24.9719271663352 60.5134301993743 24.9718925132157 60.5134298104552 24.9718509660714 60.5134250032876 24.9718159618665 60.5134110594908 24.9717488838928 60.5134058902305 24.9717196043166 60.51340105528 24.9716845472414 60.5133976384417 24.9716488367716 60.5133956963189 24.9716126515342 60.5133952512832 24.9715762815989 60.5133954318913 24.9715639373289 60.5133970275714 24.9715276948199 60.5134002643384 24.9714918779776 60.5134052388381 24.9714569361807 60.5134123748925 24.9714235716036 60.5134217197375 24.9713925281886 60.5134242972371 24.9713854262755 60.5134362153605 24.971358229674 60.5134499149352 24.971334783672 60.5134650759807 24.9713153086709 60.5134814392709 24.9713004767032 60.5134987564895 24.9712910866422 60.513512859374 24.9712876724425 60.5135307950786 24.9712882449141 60.5135485500928 24.9712934740694 60.5135660429113 24.9713015432938 60.5135832714398 24.9713117240343 60.5135969474785 24.9713209974931 60.5136138396554 24.9713332760523 60.513618717604 24.9713368876874 60.5136526178918 24.9713607999967 60.5136698700147 24.9713707607122 60.5136874827595 24.9713778569918 60.5136931751131 24.9713795048963 60.5137110565005 24.9713824126283 60.5137290044601 24.9713820188709 60.5137468591391 24.9713784429194 60.5137645066558 24.9713718740638 60.5137818118622 24.9713622843169 60.5137986404406 24.9713497002916 60.5138081093888 24.9713410013878 60.513824000913 24.971324085566 60.5138394172278 24.971305450582 60.5138545404385 24.9712858501742 60.5138848627845 24.9712469178149 60.5139004489013 24.9712288186597 60.513911736898 24.9712168907469 60.5139280889886 24.9712019134815 60.5139448573493 24.97118891408 60.5139619113792 24.9711775727999 60.5139965231052 24.9711572998375 60.514013746827 24.9711470773901 60.5140310111435 24.9711371620895 60.5140460194587 24.971129501112 60.5140635598 24.9711217910591 60.5140812618514 24.9711158561967 60.5140991132011 24.9711120616539 60.5141170430542 24.9711110676925 60.5141348974084 24.9711145599614 60.5141523733975 24.971122703152 60.5141660832848 24.9711324300107 60.5141822634144 24.9711480870292 60.5141972344088 24.9711681008156 60.5142102943217 24.9711929707167 60.5142187797694 24.971224739725 60.5142196568967 24.9712328098985 60.5142185161542 24.9712688427165 60.5142111609197 24.9713019668245 60.5142020633499 24.9713333234777 60.5141928293241 24.9713627940221 60.5141828896304 24.9713931102536 60.5141720128345 24.9714220458862 60.514166868909 24.9714328426638 60.5141522999798 24.9714540481075 60.5141367029237 24.9714720204577 60.5141244666128 24.971486558121 60.5141099170039 24.9715078533914 60.5140964138563 24.9715318158254 60.5140860501379 24.9715513736765 60.5140735405592 24.9715774782574 60.5140626159355 24.9716056333676 60.5140539115981 24.9716374570702 60.5140469215504 24.971670977088 60.5140430295098 24.9716902759268 60.5140220593011 24.9717908358701 60.5140205480888 24.9717995472154 60.5140157366752 24.9718345887284 60.5140123733688 24.971870359473 60.514010302367 24.9719036993601 60.5140089948285 24.9719399973867 60.5140085419217 24.9719763877166 60.5140085199824 24.9720127693183 60.514008663692 24.9720440943321 60.5140093780683 24.9720804663348 60.5140104241567 24.9721167993835 60.5140117840115 24.9721530946013 60.5140126340364 24.9721723883851 60.5140144327203 24.9722086015216 60.5140264690493 24.972388966961 60.5140271499601 24.9723977234261 60.5140302811266 24.9724335618194 60.5140341798085 24.9724690789829 60.5140393258441 24.9725039352298 60.5140473638681 24.9725364246307 60.5140585895345 24.972564725184 60.5140687199812 24.9725824187723 60.5140841781659 24.9726008177714 60.5141010183259 24.9726132279451 60.5141187011056 24.9726190271665 60.5141365383019 24.9726160723381 60.5141399963003 24.9726143077176 60.5141564109592 24.9725998918882 60.5141704565743 24.9725773351409 60.5141820158693 24.9725495596061 60.5141923137909 24.9725197496585 60.5142017497231 24.9724887729957 60.5142105271533 24.9724570176858 60.5142280410931 24.9723919975134 60.5142374041057 24.9723609524658 60.5142482813828 24.9723320352854 60.5142610789493 24.9723065504724 60.5142769654947 24.9722898902456 60.5142876855198 24.9722831354328 60.5143052054952 24.9722752632612 60.5143189508113 24.9722695945496 60.514336387664 24.9722609806365 60.5143537634882 24.9722518968705 60.5143658701978 24.9722459662232 60.5143834741222 24.9722388903402 60.5144011988723 24.9722332643088 60.5144189792721 24.9722283452812 60.5144250884296 24.9722266881315 60.5144428584734 24.9722216786555 60.5144605921954 24.9722160520428 60.5144782383703 24.9722093924877 60.5144830123424 24.9722073451406 60.5145005211271 24.9721993278362 60.5145180094764 24.972191147841 60.514535561342 24.9721836014866 60.5145419501657 24.9721814349593 60.5145598545854 24.972178767128 60.5145776969937 24.9721749736692 60.514596593969 24.9721672885459 60.5146136788725 24.9721562006678 60.514624991319 24.9721470586068 60.5146415947859 24.9721332499192 60.5146471929762 24.9721292928059 60.5146648065729 24.9721228538134 60.5146734870279 24.9721237321126 60.5146904297743 24.9721352067372 60.5147048742927 24.9721566387511 60.5147139848585 24.9721775480086 60.5147232508437 24.9722086859882 60.5147320824318 24.9722413814407 60.5147425628847 24.9722708767985 60.5147510882562 24.972291695169 60.5147620169156 24.9723205431337 60.5147754059742 24.9723446281922 60.5147793047686 24.9723494126031 60.5147960023662 24.9723624876615 60.5148133760129 24.972371585408 60.5148290716913 24.9723796038921 60.514846493091 24.9723882978776 60.5148641119904 24.9723952123881 60.5148736806688 24.9723978023796 60.5148915744496 24.9724003456313 60.5149095181399 24.9724002623817 60.5149194086529 24.9723992068879 60.5149372630817 24.9723956131507 60.5149550415506 24.97239056672 60.514965918877 24.9723864800043 60.5149824367864 24.9723729499099 60.5149912352123 24.9723544005298 60.5149991648487 24.9723218229393 60.515002796034 24.9722953984608 60.5150050681925 24.972259330524 60.5150050873607 24.9722310367724 60.5150000805452 24.9721964805332 60.51499554215 24.9721850683085 60.51498030436 24.9721664001665 60.5149655492597 24.9721617661435 60.5149476126074 24.97216172156 60.5149305758606 24.972161201703 60.5149131396967 24.9721533103301 60.5149066574585 24.9721463737569 60.5148915146165 24.972126861722 60.5148740545109 24.9721061646709 60.5148609380392 24.972081698236 60.5148558889988 24.9720544137601 60.5148523023195 24.9720187487113 60.514848662655 24.971984325801 60.514845540337 24.9719484859898 60.5148455891403 24.9719109176044 60.5148478968108 24.9718748293729 60.5148500930463 24.9718526848085 60.5148573981725 24.9718198001418 60.5148658271059 24.9718059011372 60.514881261983 24.9717873010517 60.5148838448587 24.9717840971507 60.5148983477073 24.9717626768892 60.5149125038932 24.9717403127341 60.5149178852349 24.9717327254875 60.5149332455517 24.9717139478191 60.5149491749468 24.9716971567416 60.5149549178832 24.9716914961908 60.514971183458 24.971676141507 60.514987611806 24.9716614506944 60.5149934889373 24.9716563464966 60.5150099270858 24.9716417097047 60.5150260483784 24.9716257263612 60.5150424277207 24.9716066298002 60.5150572315054 24.9715861014342 60.5150712282046 24.9715632916126 60.5150989243051 24.9715152492824 60.5151133871875 24.9714929750053 60.5151283226614 24.9714728391028 60.5151438715283 24.9714546505906 60.5151600118499 24.9714387387681 60.515176664254 24.9714251996923 60.5151897007138 24.9714166234586 60.5152071391659 24.9714081180524 60.5152249416264 24.9714034703321 60.5152428658636 24.9714038796327 60.5152594089716 24.9714091484671 60.5152765709637 24.9714196800841 60.5152929963359 24.9714343386506 60.5153085579256 24.9714524398341 60.5153183657806 24.9714660366217 60.5153324417221 24.9714886213298 60.5153456160129 24.9715133393201 60.5153586772475 24.9715383012372 60.5153709112233 24.9715649727659 60.5153770180561 24.9715826633256 60.5153863991697 24.9716136852649 60.5153947296484 24.9716459024533 60.5154100561397 24.9717117684762 60.5154117732197 24.9717189666123 60.5154274266948 24.9717844843277 60.5154351297356 24.971817378471 60.5154390041777 24.9718341520435 60.5154535865313 24.9719007024089 60.5154601102497 24.971934599475 60.5154642345439 24.9719565860919 60.5154715390157 24.9719898513789 60.5154812793519 24.9720202862956 60.5154879239436 24.9720325872037 60.5154930884268 24.9720402803429 60.5155087765091 24.9720578456845 60.5155253196898 24.972071987196 60.5155287918789 24.9720747032518 60.5155455265004 24.9720878490226 60.5155621190904 24.9721016959828 60.5155651701042 24.9721044748139 60.5155813680681 24.9721201318588 60.5155916237036 24.9721295107468 60.5156076271793 24.9721459633646 60.5156125918855 24.9721529220877 60.5156267967754 24.9721751348627 60.5156317254652 24.9721826788332 60.515646525146 24.9722032512327 60.5156617114595 24.9722226699404 60.5156728701556 24.9722365105827 60.5157036440339 24.9722739748318 60.5157101964195 24.9722819820974 60.5157254854192 24.9723010665282 60.5157403108947 24.9723215645533 60.5157553571826 24.9723453645455 60.5157690525483 24.972368921079 60.5157760734187 24.9723811622058 60.5157897424125 24.9724047568546 60.5158038782431 24.9724271563593 60.5158128945707 24.9724400926022 60.5158422710627 24.9724819441113 60.515857182908 24.9725075380652 60.5158700963968 24.9725328379326 60.5158737688556 24.972540460538 60.5158978509993 24.9725944487386 60.5159004792493 24.9726007338031 60.5159238446663 24.9726560239682 60.515926587626 24.9726621743431 60.515938611007 24.9726891878455 60.5159498377522 24.9727175628942 60.5159538555474 24.9727295910567 60.5159635008859 24.9727602876352 60.5159739907545 24.9727898201163 60.5159834543358 24.9728103257053 60.5159956785353 24.9728369623861 60.516002189159 24.9728564136983 60.516019751486 24.972919919097 60.5160280242535 24.9729465841763 60.5160372729481 24.9729777793585 60.5160455413968 24.9730100742774 60.5160520827828 24.973043971067 60.516059711522 24.9730767250215 60.516068906476 24.9731073406332 60.5160785166661 24.9731380942808 60.516080818166 24.9731459302042 60.5160897052818 24.9731775671146 60.5160921716094 24.9731856113666 60.5161030388012 24.9732151569564 60.5161119166737 24.9732402722199 60.5161259471787 24.9732628428517 60.5161423013985 24.9732775618203 60.5161562542965 24.9732831940029 60.5161739409153 24.9732892487544 60.5161932521432 24.9733005582827 60.5162053377984 24.9733038840774 60.5162232099402 24.973301455571 60.5162273431281 24.9732997944652 60.5162442922737 24.9732880410043 60.5162587255111 24.9732667523954 60.516262055431 24.9732583276838 60.5162702956134 24.9732260757905 60.516276894675 24.973192213875 60.5162835066801 24.97316452728 60.5162914261523 24.973131858133 60.516294625737 24.9731154435259 60.5163061523176 24.9730464758585 60.5163117959174 24.9730194873836 60.5163189320702 24.9729861019387 60.5163213873564 24.9729727216911 60.5163272414492 24.9729383050083 60.5163336312951 24.9729042738597 60.5163414927428 24.9728725191596 60.5163499596427 24.9728404168837 60.516351203741 24.9728354018446 60.5163663405392 24.9727693783654 60.5163723252307 24.972744153909 60.5163806642663 24.9727119138095 60.5163898992314 24.9726807108188 60.5164013637233 24.9726478745091 60.5164132540644 24.972620604725 60.5164400610812 24.9725713597811 60.5164518546942 24.9725465919589 60.5164650889494 24.9725220620014 60.5164685209249 24.9725174020733 60.5164847994339 24.9725023013308 60.5165023123774 24.9724945566922 60.5165198443872 24.9724933878577 60.5165375271679 24.9724991874197 60.5165460747948 24.9725049203811 60.5165620423336 24.9725213759034 60.5165710132351 24.9725342788722 60.5165846990432 24.9725578002293 60.5165936069354 24.9725742416203 60.5166055327392 24.9726013346165 60.5166108850334 24.9726196197662 60.516619268836 24.9726518168608 60.5166282150826 24.972680243939 60.5166389509596 24.9727094154598 60.5166449907436 24.9727422145893 60.516652790321 24.9727749766129 60.5166620833694 24.9728061331352 60.5166727047828 24.9728354576323 60.5166845707648 24.9728627549351 60.5166976053863 24.9728877565059 60.5167117414146 24.9729101750435 60.5167233387833 24.9729257015258 60.5167541727953 24.9729629998852 60.5167692644452 24.9729826987977 60.5167761194279 24.9729928920498 60.5168046677987 24.9730370015318 60.5168181714587 24.9730544494977 60.5168340134595 24.9730715144963 60.516866578947 24.9731021824947 60.5169018236154 24.9731330292854 60.516918682501 24.9731454942691 60.5169360162051 24.9731549234448 60.5169492152312 24.9731600015872 60.5169848989973 24.9731677192501 60.5169972285606 24.9731699549006 60.517015111289 24.9731729548893 60.5170230304183 24.9731739721928 60.5170409677698 24.9731746549418 60.5170448611958 24.9731743569755 60.5170627189581 24.9731709818282 60.5170803450168 24.9731641777355 60.5170977508539 24.9731552921929 60.517132187404 24.9731347023278 60.5171483074715 24.9731251319012 60.5172513597487 24.9730617929854 60.517260062151 24.9730558379969 60.5172941609834 24.9730331191503 60.5173115679165 24.9730243062847 60.5173292686642 24.9730182808191 60.5173468893143 24.9730247223611 60.5173642307667 24.9730346612492 60.5173771416835 24.9730391015166 60.5173949719813 24.9730433800947 60.517412770534 24.9730479339514 60.5174199998763 24.9730502514798 60.5174375178485 24.9730582116802 60.5174546813715 24.973068854069 60.5174724487408 24.9730814082044 60.5175394123664 24.9731339038314 60.5175506053912 24.9731429152788 60.5175838414284 24.9731704265816 60.5176001737149 24.9731854754718 60.5176069593218 24.9731922845404 60.5176389497278 24.9732253031856 60.5176508131017 24.9732346918479 60.5176682015934 24.973243589487 60.5176798946502 24.9732470856907 60.5176977754406 24.973249958362 60.5177179440326 24.9732514855799 60.5177358779376 24.9732525329846 60.5177538271305 24.9732516299443 60.517756844653 24.9732510223248 60.5177744609113 24.9732441640763 60.5177852908853 24.9732387319856 60.5178204361368 24.973224000612 60.5178398100459 24.9732128237693 60.5178465375784 24.9732069374677 60.5178536532857 24.973200589635 60.5178699481547 24.9731853782395 60.5179018185812 24.9731501721557 60.5179158905388 24.9731370309147 60.5179327876106 24.973124806282 60.5179353777261 24.9731232597173 60.5179528266363 24.973114844928 60.5179704717404 24.9731081122965 60.5179876238628 24.973100262628 60.518005416299 24.9730955431575 60.5180233145206 24.9730930580923 60.5180300121202 24.9730958461767 60.518047536574 24.9731036421622 60.5180829367393 24.9731157504581 60.5180904515554 24.9731179408869 60.5181082064949 24.9731231717303 60.5181258177627 24.9731301788738 60.5181318296976 24.973133356001 60.5181659851607 24.9731557634388 60.5181831312826 24.9731664436372 60.5182360739246 24.9731910841464 60.5182515851615 24.9732011559841 60.5182682281586 24.9732147828485 60.5182844428352 24.9732303677965 60.5183015748764 24.9732489928047 60.5183170172386 24.9732675412261 60.5183294567904 24.9732835261178 60.5183595976199 24.9733230927725 60.5183661092257 24.973331376739 60.5183815257636 24.9733499997288 60.5183973845681 24.9733669917479 60.5184014312961 24.9733708747863 60.5184178564583 24.9733855357257 60.518434457889 24.9733993839885 60.5184371043931 24.9734015507614 60.518453763934 24.9734150856703 60.5184707547515 24.973426777898 60.5184773018871 24.9734303042876 60.5184950149902 24.9734357383935 60.518504784733 24.9734356016215 60.5185226244042 24.9734316263216 60.5185294393949 24.973429724648 60.518547022937 24.9734224857497 60.5185591122367 24.973413039373 60.5185747857429 24.9733953522159 60.5185913652837 24.9733722699611 60.5186050268087 24.9733486594511 60.5186193418648 24.9733266843229 60.5186311511474 24.9733141762021 60.5186463696146 24.9732949140298 60.5186920875089 24.9732282321055 60.5187074001153 24.9732092554935 60.5187106933938 24.9732055149839 60.5187266240678 24.9731887954538 60.5187430052165 24.9731739426436 60.5187598325668 24.9731612665645 60.5187770763093 24.9731511699247 60.518779795363 24.9731498339036 60.5187833088614 24.9731481749296 60.5188005635108 24.9731382051345 60.5188177072938 24.9731274405715 60.5188330143068 24.9731199246575 60.5188508444409 24.9731159132954 60.5188651863599 24.9731146343205 60.5188829339839 24.9731199750568 60.5188998553499 24.9731223611085 60.518917767183 24.9731243208559 60.5189328004074 24.9731289384615 60.5189501082975 24.9731384426865 60.5189619147986 24.9731476348192 60.5189774918962 24.9731655920965 60.5189839051303 24.9731762691852 60.5189964086582 24.9732023808191 60.519008693939 24.9732289069577 60.5190108999859 24.9732334152519 60.5190358812015 24.9732857131216 60.5190414344486 24.9732989037316 60.5190527320277 24.973327222592 60.5190640374682 24.9733554680995 60.5190705035013 24.9733708063447 60.5190943143524 24.9734252911028 60.5190984290923 24.973434836491 60.5190984290923 24.973434836491 60.5191214438332 24.9734907193913 60.5191273185948 24.9735055662478 60.5191500615021 24.9735618852995 60.519162129022 24.9735888625904 60.5191692389981 24.9736034318773 60.5191825085708 24.9736279472262 60.5191967045265 24.9736501818294 60.5192036816179 24.9736595484277 60.5192190470372 24.9736783574421 60.5192345917657 24.9736965539985 60.5192474391776 24.9737116029955 60.5192630094387 24.9737297068861 60.519267752617 24.9737350952889 60.5192835948096 24.9737521800898 60.5192998939036 24.9737674143196 60.5193039687741 24.9737707855836 60.5193208607287 24.9737830675242 60.5193379090743 24.9737944104646 60.5193509185876 24.9738029811657 60.5193851230798 24.9738250773096 60.519402367152 24.9738351144123 60.5194156924873 24.9738420073518 60.5194332646558 24.9738494002251 60.5194510696652 24.9738537903989 60.5194566837015 24.9738544235548 60.5194746232399 24.9738540679989 60.5194924905395 24.9738507287918 60.5195002971101 24.9738484736656 60.5195180314408 24.9738428834149 60.5195270710262 24.9738402050584 60.5195448732876 24.9738355398017 60.5195626998505 24.973831292094 60.5195983076882 24.9738221799941 60.519618013983 24.9738157376813 60.5196300674829 24.9738110307221 60.5196475668235 24.9738029771077 60.5196648822664 24.9737934591049 60.5196678002424 24.9737916187147 60.5197022074675 24.9737708656888 60.5197068900721 24.9737687146122 60.519724357793 24.9737603531796 60.5197416416156 24.9737505273551 60.5197506536581 24.9737430768618 60.5197666129728 24.9737264645865 60.5197822851336 24.9737086858929 60.5197862972188 24.9737043719957 60.5198020940393 24.973687113891 60.5198176053637 24.9736687985872 60.5198282607044 24.9736530460571 60.5198422487624 24.9736302342846 60.5198562653935 24.9736075300311 60.5198645879479 24.9735948932071 60.5198791843872 24.9735737014536 60.5198938278987 24.9735526525052 60.5199388947285 24.9734850797748 60.5199502521469 24.9734694290166 60.519965574584 24.9734505058195 60.5199817254808 24.9734346830288 60.5199884711135 24.9734293965309 60.5200056759399 24.9734191016419 60.5200233011723 24.9734122424238 60.5200383041567 24.9734089543631 60.5200562307206 24.9734089273335 60.5200730208431 24.9734139091708 60.5200900832948 24.9734249962001 60.5200997151574 24.9734347072867 60.5201142725312 24.9734558994736 60.5201248817013 24.9734791058299 60.5201340585025 24.9735103095692 60.520135623927 24.9735181742685 60.5201413656523 24.9735526537894 60.5201483587338 24.9735861440839 60.5201555771613 24.9736060821934 60.5201681936637 24.9736319509931 60.5201742841307 24.9736438513072 60.5201872493179 24.973669024175 60.5202006577492 24.9736932218795 60.5202080727598 24.9737054038723 60.520236336407 24.9737503016486 60.5202461566516 24.973767690338 60.520273017234 24.9738160103184 60.5202847639048 24.9738342808359 60.5202996576201 24.973854559477 60.5203150662197 24.9738732571843 60.5203241208888 24.9738834053926 60.5203401162859 24.9738999346097 60.5203564232309 24.9739150960243 60.5203730408954 24.9739288350235 60.5203860125893 24.973938465225 60.5204028629796 24.9739509688998 60.5204194893371 24.9739646891723 60.5204291400665 24.9739738709254 60.520444990926 24.9739909376796 60.5204605695708 24.9740090053939 60.520472273502 24.9740226870472 60.5204879034934 24.974040587594 60.520503736675 24.9740576737363 60.5205158385665 24.9740697635496 60.5205479977198 24.9741020830115 60.520595348356 24.9741595097142 60.5205985491184 24.9741632819662 60.5206448160555 24.9742191366389 60.5206900002275 24.9742829488781 60.5206988563813 24.9742954055849 60.520713604395 24.9743161493214 60.5207279298607 24.9743380491858 60.520741442533 24.9743620223949 60.5207665677369 24.9744167383087 60.5207790620553 24.9744428524077 60.5207813362544 24.9744471198934 60.5207952986485 24.9744699536001 60.5208105780947 24.9744890243693 60.5208251951446 24.9745023239492 60.5208422431536 24.9745136495751 60.5208552031825 24.974520146814 60.5208729485406 24.9745253429943 60.5208871135096 24.9745254239735 60.520904839169 24.9745198526027 60.5209121288892 24.9745154979231 60.5209272938268 24.9744968395921 60.5209312404308 24.9744846581196 60.5209361259422 24.9744497142342 60.5209385998359 24.9744192029874 60.5209408630096 24.9743830927308 60.5209422581295 24.9743590263235 60.5209444938155 24.9743228813324 60.5209503280715 24.9742498502282 60.5209511355317 24.9742403246959 60.5209549068081 24.9742047579455 60.5209578326129 24.9741868640336 60.5209648325028 24.9741533550166 60.5209672379541 24.974142599924 60.520975760905 24.9741106174359 60.5209785186819 24.9741029561754 60.520990872588 24.9740766198244 60.5210001745717 24.9740604594269 60.521014499812 24.9740385552223 60.5210281155333 24.9740196107461 60.5210434464646 24.9740006501995 60.5210612613846 24.9739820264186 60.5210776524148 24.9739672269664 60.5210925331274 24.9739552915158 60.5211096761401 24.973944471986 60.5211194821316 24.9739402150335 60.5211373287194 24.9739366947659 60.5211470023905 24.9739373294207 60.5211649020658 24.9739396731385 60.5211736114875 24.9739400947182 60.5212095007648 24.9739388727858 60.5212213799742 24.9739386590039 60.5212393232469 24.9739391414108 60.5212572587979 24.9739402984961 60.5212723121018 24.9739415081129 60.5213081946637 24.9739439855667 60.5213233151836 24.9739442981315 60.5213412589929 24.9739436325508 60.5213591670248 24.9739412017132 60.5213670803103 24.9739394682277 60.5213848970691 24.9739351662661 60.521402754287 24.9739317546293 60.5214093836292 24.9739312310983 60.5214273277145 24.9739305837119 60.5214452443123 24.9739287171943 60.5214625657548 24.9739237355199 60.5214803489619 24.9739189983132 60.521483665356 24.9739185542217 60.5215015818554 24.9739196396054 60.5215128682157 24.9739235627244 60.5215301454072 24.9739334162291 60.5215379976352 24.9739389023242 60.5215544042374 24.9739535296512 60.5215705899241 24.9739754959102 60.5215848722393 24.9739975082238 60.5216142803151 24.9740414802123 60.5216273994388 24.9740625995053 60.521640486027 24.9740874927433 60.5216513979894 24.9741129045172 60.5216634561555 24.9741398664336 60.5216670701233 24.9741466013552 60.5216949178472 24.9741925114628 60.5216977576395 24.9741979463519 60.5217220924538 24.9742514740368 60.5217359639677 24.9742795618621 60.5217482313729 24.9743061099586 60.5217591077407 24.9743374644126 60.5217679413102 24.9743691469354 60.5217719973789 24.9743848922943 60.5217802038043 24.9744172700018 60.5217885871944 24.9744494726751 60.521792425538 24.9744633001429 60.5218011006039 24.9744951930716 60.521809245021 24.9745276293734 60.5218120423522 24.9745409205631 60.5218180681931 24.9745752020663 60.5218235165852 24.9746099023076 60.5218258632041 24.9746248616248 60.5218366974194 24.9746942842806 60.5218411946134 24.9747243062942 60.5218518955642 24.9747938284458 60.5218549139108 24.9748116248862 60.5218722454826 24.9749150447292 60.5218739727786 24.974927072606 60.5218794653921 24.9749617337568 60.5218865108615 24.9749951499692 60.5218941302516 24.9750166679285 60.5219074150326 24.9750410209362 60.5219136170355 24.9750490339191 60.5219306347598 24.975058959006 60.5219498383178 24.975046608015 60.5219554085632 24.9750425793484 60.5219722559611 24.9750300292582 60.5219798027138 24.9750213034599 60.5219937175562 24.9749983859958 60.5219970143183 24.9749919117797 60.5220093487926 24.9749654668218 60.5220204237424 24.9749400662634 60.5220320286286 24.9749123001847 60.522039178989 24.9748946156829 60.5220505809367 24.9748664978067 60.5220622872717 24.9748389075587 60.5220743707489 24.9748124963853 60.5220865664495 24.9747857866316 60.5220929579771 24.9747707734281 60.5221043966186 24.9747427078343 60.522115752564 24.9747145198315 60.5221258131132 24.9746897473407 60.522148718103 24.9746336689524 60.5221591404399 24.9746072884984 60.5221817045556 24.9745506481796 60.52218791494 24.9745355368669 60.5222114009058 24.9744804606238 60.5222143169111 24.9744737549857 60.5222261616252 24.9744464109165 60.5222378675955 24.9744188021632 60.5222447941301 24.9744023522961 60.5222578067168 24.9743773951974 60.5222743838514 24.9743606522232 60.5222908732994 24.9743547021814 60.5223057213506 24.9743583666013 60.5223247472724 24.9743686397684 60.5223277040901 24.9743711337083 60.522343724137 24.9743875168483 60.5223494844148 24.9743936440858 60.5223653094085 24.9744107865391 60.5223784270475 24.9744270776904 60.5223926315728 24.9744492960439 60.5223984809378 24.9744607021573 60.5224110100379 24.9744867425134 60.5224245653412 24.9745105685735 60.5224325401717 24.9745205846138 60.5224482464347 24.9745381901421 60.5224568212229 24.9745498633829 60.5224713624126 24.9745711861486 60.5224741526186 24.9745751300773 60.5224886943569 24.9745964892754 60.5224960720249 24.9746097679846 60.5225091155828 24.9746347923422 60.5225185130163 24.9746515529093 60.5225316435334 24.9746763896468 60.5225345747028 24.9746831127863 60.5225456347026 24.9747117779821 60.5225571850269 24.9747396107943 60.5225598061323 24.9747448408654 60.5225870560678 24.9747922113977 60.5226001813523 24.9748226245791 60.5226219770218 24.9748804856768 60.5226308257096 24.9748995584261 60.5226436863062 24.9749249588728 60.5226564944415 24.974950453727 60.522660585741 24.9749590542489 60.5226961832508 24.9750410181785 60.5227100021516 24.9750703860175 60.5227233836933 24.9750946060541 60.5227326905008 24.9751089489516 60.5227476443525 24.9751290619222 60.5227628044382 24.9751485606953 60.5227712264932 24.975159642407 60.5228006363937 24.9752013937785 60.5228040199051 24.9752065580947 60.5228181558332 24.975229000024 60.5228321186504 24.9752518718969 60.5228372129672 24.9752602823144 60.5228512369328 24.9752830410612 60.5228657002887 24.975304569713 60.5228719725431 24.9753130705971 60.5229019752958 24.9753530540862 60.5229318810102 24.9754002597916 60.5229454118443 24.9754189311816 60.522961346454 24.9754356120336 60.5229709098345 24.9754425954613 60.5229883071518 24.9754514951297 60.5229922298506 24.9754531271219 60.523010016859 24.9754575197405 60.523028082841 24.9754548428422 60.5230329209114 24.9754534656398 60.5230504446399 24.9754458296284 60.5230541958768 24.9754432629301 60.5230702240008 24.9754270281515 60.5230836572669 24.9754037392578 60.5230874146953 24.9753938831561 60.5230961748213 24.9753621209904 60.5231020546478 24.9753376454438 60.5231093368422 24.9753043719498 60.5231122177958 24.9752894318019 60.5231181904766 24.9752550920365 60.5231195950545 24.975246439735 60.5231238104035 24.9752111163371 60.5231241305028 24.9752043904521 60.52312359694 24.9751680333491 60.5231225750389 24.975148034142 60.5231202936706 24.9751119137457 60.5231174312182 24.9750676841662 60.5231156005756 24.9750370023946 60.5231136769901 24.9750007867785 60.5231122977411 24.9749702590484 60.5231109834689 24.9749339507178 60.5231103162772 24.9749089181731 60.5231098359193 24.9748725213191 60.5231099297749 24.9748497008388 60.5231107969991 24.9748133291545 60.523112129477 24.9747839440869 60.5231139242108 24.9747477331366 60.5231143903036 24.9747364242713 60.523115707525 24.9747001155832 60.5231171957748 24.9746638326541 60.5231176905896 24.9746544171368 60.5231220364661 24.9745821301789 60.5231234593398 24.9745557461632 60.5231262098393 24.9745197852652 60.5231303844861 24.9744924457779 60.5231383230185 24.9744598235128 60.5231415647751 24.9744497261568 60.5231542693791 24.974424004049 60.5231695293673 24.9744015481297 60.523186391473 24.9743893789765 60.5232036889043 24.9743839978656 60.5232216108982 24.974383078715 60.5232253593878 24.9743838832327 60.5232447355396 24.974395337509 60.5232605341672 24.97441251852 60.5232654860508 24.9744186417641 60.5232977835327 24.9744600851592 60.5233126948267 24.9744803466197 60.5233257139106 24.9744984302445 60.523355073239 24.9745427542855 60.5233706852173 24.9745606577689 60.5233811372711 24.9745711571627 60.5234159115852 24.9746047743782 60.5234481983004 24.974636633662 60.5234516595414 24.9746404082392 60.5234829019683 24.9746762507125 60.5234854305654 24.9746789355195 60.5235016624682 24.9746944861264 60.5235047675429 24.9746972807106 60.5235215089488 24.9747103029918 60.5235241166349 24.9747116890477 60.5235440254217 24.9747162221396 60.5235615563237 24.9747137968728 60.5235742885622 24.9747023230381 60.5235847027609 24.9746759966141 60.5235893207961 24.9746435449011 60.523592480634 24.9746091068637 60.5235887963851 24.9745823490184 60.5235812927231 24.9745436022611 60.5235722204335 24.9745186752789 60.5235588227183 24.9744886610105 60.5235472802074 24.9744607540535 60.5235396889397 24.9744446455412 60.5235255357634 24.974422259201 60.5235209299326 24.9744134902107 60.5235109071233 24.9743833380877 60.5235095148876 24.9743785960297 60.5234995436601 24.9743447414849 60.523494310266 24.9743100078425 60.5234930972378 24.9742951774093 60.5234911484646 24.9742590905403 60.5234902420277 24.9742200775811 60.5234904873557 24.974186532382 60.5234857965698 24.9741626985242 60.5234820166989 24.9741468075482 60.5234822614559 24.9741132259465 60.5234855538022 24.974077467648 60.523487472624 24.9740660132044 60.5234981800096 24.9740371171363 60.5235033106321 24.9740289789981 60.5235199844529 24.9740097326264 60.5235344315698 24.9739881652915 60.5235396624192 24.9739807133395 60.5235556032475 24.9739640639126 60.5235582861227 24.973961527311 60.5235744838637 24.9739458276203 60.5235847362213 24.9739366587247 60.5236018411199 24.9739256949256 60.5236130853757 24.9739197441448 60.5236304819911 24.9739108395019 60.5236472572791 24.9739030123761 60.5236649149705 24.9738965150404 60.5236814081146 24.9738902180267 60.5237175446462 24.9738715593592 60.5237349717692 24.9738628896517 60.5237497753491 24.9738547483338 60.5237666618327 24.9738424131406 60.5237801012146 24.9738319698498 60.5238162825147 24.9738073858043 60.5238333359041 24.9737959877238 60.5238504007526 24.9737847529215 60.5238534345447 24.9737828503789 60.5238905562588 24.9737622347323 60.5239252361151 24.9737434663741 60.5239325635011 24.9737398194428 60.523950083531 24.973731945611 60.5239696704675 24.9737211909262 60.5239863903026 24.9737079366164 60.5239951200261 24.9737002294093 60.5240114916833 24.9736853385393 60.524019614415 24.9736772865694 60.5240349937395 24.9736585579561 60.5240451685224 24.9736425053627 60.5240577902731 24.9736166598243 60.5240698780457 24.9735899547065 60.5240826290002 24.9735643379525 60.5240974986471 24.9735374771526 60.5241111974453 24.9735139514423 60.5241191769231 24.973500605431 60.52413326778 24.9734780574565 60.5241460285103 24.9734601848259 60.5241499530433 24.9734548370596 60.5241569491482 24.9734453428925 60.5241644350424 24.9734361643478 60.524172782465 24.9734263488104 60.5241802707178 24.9734179172585 60.5241885998101 24.9734098522799 60.5241966978169 24.973401947526 60.5242030803775 24.973396409662 60.5242096397811 24.9733912798752 60.5242159502814 24.9733857282877 60.5242283910359 24.9733769507157 60.5242437960248 24.9733676051714 60.5242615602132 24.9733586588522 60.5242680406878 24.9733554291943 60.5242724256432 24.973352603864 60.5242911684758 24.9733460018215 60.5243081380256 24.9733344081096 60.5243228118211 24.9733194954707 60.5243375211199 24.9732986398234 60.5243534821422 24.9732815510196 60.5243689378913 24.9732631270382 60.5243726862523 24.97325682439 60.5243849844744 24.973230379067 60.5243969211363 24.9732031909475 60.52440993436 24.9731806553399 60.5244248033639 24.9731602633939 60.5244393434541 24.9731424614747 60.5244550157894 24.9731246980995 60.5244731145332 24.973106436781 60.5244899838262 24.9730941566569 60.5245044578927 24.9730885684318 60.5245223826353 24.9730878305748 60.524527481494 24.9730888421288 60.5245450922012 24.9730958141589 60.524564173205 24.97310852576 60.5245723018881 24.9731168377191 60.524586720726 24.9731383693296 60.5245958852715 24.9731593000227 60.5246055123174 24.9731899877758 60.5246095895162 24.9732059335006 60.5246171326659 24.9732389747979 60.5246214269352 24.9732585698683 60.5246275327668 24.9732927762139 60.5246302795862 24.9733222539914 60.52463184527 24.9733585300376 60.5246328844968 24.9733903013655 60.5246337421299 24.9734266763432 60.5246338676487 24.9734680720707 60.5246331805347 24.9735044524825 60.5246326955579 24.9735192437503 60.5246313245525 24.9735555393385 60.5246301427979 24.9735918777654 60.524629731671 24.9736239584215 60.5246300329188 24.9736603681713 60.5246310606877 24.9736967142937 60.5246327067498 24.9737329671079 60.524636951263 24.9738084565376 60.5246384453078 24.9738447553093 60.5246407267499 24.9738808590923 60.524645355628 24.9739159961384 60.5246470245795 24.9739247666474 60.524655247967 24.9739570731464 60.524665487217 24.9739890532395 60.5246764073959 24.9740179657157 60.5246870884914 24.9740376356477 60.5247014395443 24.9740594453238 60.5247104701755 24.974069195518 60.5247271956289 24.9740823465101 60.5247448796125 24.9740911915565 60.5247490734339 24.9740917495672 60.5247667471579 24.9740863080615 60.5247732056748 24.9740810388399 60.5247874069354 24.9740592491491 60.524791506567 24.9740459085199 60.5247986611489 24.9740125316133 60.5248141702868 24.9739437710791 60.5248198589256 24.9739191418964 60.5248267036978 24.9738854744915 60.5248344587433 24.973852606693 60.5248449679704 24.9738230839029 60.5248477046095 24.973815805711 60.5248588944071 24.9737873337769 60.5248708496793 24.9737601807503 60.5248775347193 24.9737461682144 60.5248903630105 24.9737209105162 60.5248903630105 24.9737209105162 60.5249036243558 24.9736963728991 60.5249065110776 24.9736912903535 60.5249215317933 24.9736660960492 60.5249359931804 24.9736431052832 60.5249519162897 24.9736264742884 60.5249622410151 24.9736208904163 60.5249773327638 24.9736181248417 60.5249931888698 24.9736154208346 60.5250111294981 24.9736151378499 60.525022127161 24.9736160177382 60.5250381784924 24.9736320900868 60.5250433224553 24.9736396229822 60.5250556660519 24.9736658589616 60.5250587792757 24.9736762887755 60.5250642639701 24.9737482756402 60.5250659815276 24.9737845062488 60.525066400735 24.973809756246 60.5250668906424 24.9738461729197 60.5250676329515 24.9738583910445 60.5250724673858 24.9738934610328 60.525077650346 24.9739662868787 60.5250835599761 24.9740005972079 60.5250917132215 24.974033017883 60.5250938567563 24.9740411028115 60.525111056499 24.9741050318912 60.5251142508672 24.9741160762982 60.5251239663203 24.9741466863951 60.5251347296798 24.9741782880082 60.5251449903884 24.9742081351268 60.5251531618681 24.9742340671398 60.5251620221163 24.9742657330433 60.5251684708729 24.9742876359374 60.5251794866521 24.974316342523 60.5251880446722 24.9743328287819 60.5252024736717 24.9743544518122 60.5252066773576 24.9743609866275 60.5252221996943 24.9743848193413 60.5252395770525 24.974392991336 60.5252451699658 24.9743940086962 60.5252630841115 24.9743955319434 60.52526714843 24.9743946584152 60.5252840255773 24.974382888432 60.5252892680498 24.9743762008088 60.5253020345704 24.9743468647747 60.5253036734624 24.9743110437825 60.5253024105926 24.9742958876089 60.5252984585455 24.9742639148983 60.5252951494608 24.9742281479256 60.525293207699 24.9741919310514 60.5252922293761 24.9741694858237 60.5252890334085 24.9741293380941 60.5252870058442 24.9740892449305 60.5252868314139 24.9740830779729 60.5252498036352 24.9739755571401 60.5252385195048 24.9739427852566 60.525226850619 24.9739089257912 60.5244261291306 24.9713231084958 60.5215103457852 24.9619321420872 60.5214545309045 24.9617560207203 60.5208388849638 24.9597742977795 60.5206460284436 24.9591535346918 60.5206364500931 24.9591227240794 60.5208504379727 24.9588486911605 60.5231478788412 24.9569697090563 60.5237520335936 24.9564654971581 60.5233408242388 24.9527776276535 60.5232880616931 24.9524376784488 60.520584159738 24.9489600387021 60.5183603052031 24.9517623719003 60.5167282927936 24.9465308483442 60.5160804359463 24.9444543901985 60.5154647696072 24.9424820753925 60.5165639627425 24.9395599510352 60.5172438780502 24.9377522566388 60.5188017448509 24.9336078202106 60.5198573993603 24.936965143387 60.5202262569136 24.9381289485137 60.5202577635724 24.938228327736 60.5202616919459 24.9382407598958 60.5208511860595 24.940081148973 60.5208532724257 24.9400877219424 60.5208719274255 24.9401459389552 60.5209950311312 24.9405494525126 60.5237491084204 24.9383138751966 60.5242094636627 24.9370830446344 60.5243533226333 24.9367007844947 60.5247251228343 24.9357161532764 60.5257768287448 24.9329281239769 60.5264622878538 24.9310917864392 60.526815067426 24.9301544936861 60.5269813154684 24.9301005769216 60.5272210748132 24.9300244698057 60.5273811839321 24.9299748985079 60.5277904858836 24.9298459353506 60.5288008146355 24.9295193990593 60.5297671188143 24.9292110555658 60.5300300020198 24.9291283723592 60.5311681912882 24.928764820336 60.5325826498678 24.9283177442864 60.5328079226826 24.9291025453509 60.5352632021648 24.9284193290796 60.53529429669 24.9284106694301 60.5353041161772 24.9284079453439 60.5353813744268 24.928386454298 60.5354165469191 24.9283766588816 60.5357005563062 24.9282975797685 60.5358813884362 24.9282505260527 60.5356640970054 24.9274617372866 60.5362760014875 24.927292185189 60.5369627840946 24.925867599591 60.5371992473946 24.9253939249606 60.5376452487467 24.9244712502601 60.5378554883437 24.9240338560605 60.5379177720468 24.9239048183957 60.5383457200974 24.9230780261206 60.5386019807455 24.9224792487886 60.5389955177754 24.9216966874909 60.5398165142244 24.9199432328662 60.5400444985571 24.9194719854496 60.540501647462 24.9185156289282 60.540923579173 24.9200242246555 60.5415849117642 24.9192742826027 60.5411593517345 24.9177426152533 60.5417007034018 24.9166068587396 60.541730029597 24.9165453499137 60.5421606168131 24.9156418644289 60.542206109329 24.9155464020556 60.542394201424 24.915151720482 60.5422953624656 24.9147953215596 60.5424519429601 24.914468942689 60.5431323076109 24.9130472816664 60.5434072599979 24.9124771977285 60.5437057428775 24.9118514673603 60.5440605369023 24.9118665817568 60.5445709193199 24.9118845781486 60.5450773641681 24.9118960269881 60.5462323649401 24.911937009321 60.5467835540922 24.9119512098065 60.5492500793469 24.9120310255094 60.5498148833427 24.9120939938253 60.551387917238 24.9121001757693 60.552350262589 24.9121130610573 60.5527892418902 24.9121305594934 60.5541916153419 24.912141870468 60.5556249551934 24.9121645553441 60.5556249551934 24.9121645553441 60.5580581616015 24.9208198313585 60.5587864985023 24.9234321672572 60.5604531776285 24.9293412460213 60.5621576617918 24.9354566633218 60.5623286563779 24.9360602811496 60.5626191120106 24.9370855777074 60.5626631497848 24.9372491113057 60.5628322402788 24.9378311572294 60.5628899245603 24.9380362983335 60.5629471781813 24.9382426535181 60.5629889169383 24.9383882556959 60.5630686810941 24.9386763222371 60.5631347764087 24.9389150129311 60.5631885031356 24.9391059229759 60.563274174967 24.9394102566973 60.5633090970999 24.9395344194615 60.563424923445 24.9399462177239 60.5634296448401 24.9399629220131 60.5635503846846 24.9403911600283 60.5635579574515 24.9404180464775 60.5636927290217 24.9408960814722 60.5637369482363 24.9410553809265 60.5637496254908 24.9411011191543 60.5638984013894 24.9416371662841 60.5639078602422 24.9416681481288 60.5639172344018 24.9416988799366 60.5641366049828 24.9424934218879 60.5641637161855 24.9425934739517 60.5641722775588 24.942625097227 60.5643867103236 24.9433816303991 60.5645973069793 24.9441448031447 60.564638879152 24.9442700862178 60.5646495913697 24.9443072665721 60.5648839189556 24.9451199612116 60.5650961455313 24.9459267165669 60.5651140930218 24.9459923045789 60.5651210018255 24.9460175570483 60.5656410610754 24.9479184998559 60.5669837470138 24.9525783677511 60.5671379728637 24.9531185536541 60.5673286574142 24.9537939531122 60.567407384877 24.9540734377801 60.5676199030036 24.9548277585013 60.5676850085344 24.9550553544862 60.5678011274039 24.9554665861997 60.5679299896373 24.9559230188802 60.5680416525117 24.9563184981117 60.5682811177643 24.9571631353403 60.5684002315951 24.9575832986917 60.5689217590492 24.9592450634881 60.5697336689147 24.9619256498154 60.5706061386137 24.96482259139 60.5676236636832 24.9666477671557 60.5676270700334 24.9667736261644 60.5676397617317 24.9677866684707 60.5672892275151 24.9679946008849 60.5672912594779 24.968551677466 60.5673149292055 24.9695971033433 60.5673367358668 24.9705754053131 60.5677349342747 24.971734566156 60.5678901764487 24.972186524388 60.5678994227279 24.972213444473 60.5679177268399 24.9722672964945 60.5680827594199 24.9727525692928 60.5680884157151 24.9728264291086 60.5688992005489 24.9730879837617 60.5695695722534 24.9732964260627 60.5693914743867 24.9743911079829 60.5691076019425 24.9761372388622 60.5690811215761 24.976300083013 60.5690663098158 24.9764126529093 60.5690511836356 24.9765275963994 60.5687324846669 24.9760251300158 60.5686955146995 24.9759668579598 60.5681984550003 24.9751842495173 60.568177828391 24.9754748970327 60.5681507554475 24.9758540663887 60.5680946962226 24.9764720506829 60.5680414053573 24.9771342566364 60.5676426244578 24.9817035218878 60.5674859553075 24.9835451555745 60.5670201220696 24.9890191025784 60.56549037475 24.9896314601067 60.565722968768 24.9918640080342 60.5661233869591 24.9959566307448 60.5664674339691 24.9992841857652 60.5667924375646 25.0024357138059 60.5669734278361 25.0041573768441 60.5671430695424 25.0057279593234 60.5674082672814 25.0083595569084 60.5676454338667 25.0106803399528 60.5679700634808 25.0138521444332 60.5679758679608 25.0139018595842 60.5681870823804 25.0159705582672 60.5686064356119 25.0200627104512 60.5687144850876 25.0211118175698 60.5687531000324 25.0214881201788 60.5689113890728 25.0230197656367 60.5690701632799 25.0245775270411 60.5690991964563 25.0245809557004 60.5699548765597 25.0246940049095 60.5711602827499 25.0248627266388 60.5718114692682 25.0249533580955 60.5719606991184 25.0249616971791 60.5722740938489 25.0249904762349 60.573448628486 25.0251365746348 60.5747493027181 25.0252746744724 60.5754618358683 25.0253741909683 60.5757286640754 25.0254121881752 60.5758672037372 25.0254319145652 60.5779787641196 25.0257097243641 60.578497383118 25.0286389106732 60.5785080140294 25.028698992055 60.5785186536182 25.0287590546929 60.5788224753993 25.0304753284909 60.5788460260611 25.0306022176614 60.5788242322837 25.0306451260239 60.5788066993737 25.0306925574044 60.57880183507 25.0307665432178 60.5788116924044 25.0308802471915 60.5788322346608 25.0309986492339 60.5788593576647 25.0310998210995 60.5788951910525 25.031183833997 60.5789354487425 25.0312505471824 60.578986261862 25.0313393805579 60.5790025282274 25.0313906875609 60.5790155832055 25.0314318949344 60.5790299681413 25.0315152239904 60.5790205406992 25.0316239508011 60.579000557502 25.0317105391419 60.5789678802907 25.0317749365207 60.578922490345 25.0318170893074 60.5788879314625 25.031823244046 60.5788601806434 25.0318281996915 60.5788043899176 25.0318264097442 60.5787251254191 25.0318108061415 60.5786373307921 25.0317861932336 60.578588155782 25.0317628268755 60.5785389459903 25.0317438070193 60.5784702906548 25.0317161681777 60.5783714117993 25.0316615827071 60.5783218706085 25.0316286012536 60.5783145180621 25.0317025911486 60.5784380465871 25.0320764800551 60.5786631714598 25.0327579706571 60.5806395788082 25.038741626619 60.5796333864545 25.0405102882079 60.5794797208014 25.0408026589517 60.578602277157 25.0422962081671 60.5776331876959 25.0439913614982 60.5768632534305 25.0453432654957 60.5768632534305 25.0453432654957 60.5767373280092 25.0455526342968 60.5764999702783 25.0459718788315 60.5751621999995 25.0483221777601 60.5750267040432 25.0485708302046 60.5735159904885 25.0512435941539 60.5730332772283 25.0520755817095 60.5728360277374 25.0524338236836 60.5721380659462 25.0536555255208 60.5715886013885 25.0545962232323 60.5703250405665 25.0568785861805 60.5695997089388 25.0580915543131 60.5682883890914 25.0603984685836 60.5681713602337 25.0606072798634 60.5674859325817 25.0618089151033 60.5673730134368 25.06200152205 60.5660008172964 25.0644131855403 60.5654686253931 25.0653453871485 60.5650255051913 25.0661220571891 60.5643511340471 25.0672984745448 60.5637493694499 25.0683490721494 60.56347510658 25.0688325932975 60.5631048705134 25.0694908104594 60.5626944508418 25.0702156275983 60.5622739446487 25.070963047661 60.562229503491 25.0710418644271 60.5618252547697 25.0717585935768 60.5617405244578 25.0719065249366 60.5615544793668 25.0722313038087 60.5609060181322 25.0733633061331 60.5594797208339 25.0758529321493 60.5587715681957 25.0771021991762 60.558392917278 25.0777750245765 60.5583784331938 25.0778007844846 60.5583501355092 25.0778508415698 60.5572663620446 25.0797532279317 60.5572134714591 25.0798456365137 60.555655387218 25.0825686863657 60.553218669864 25.0868928789476 60.5523490953799 25.0884166805811 60.5515441358442 25.0898295870512 60.551270712997 25.0902979350447 60.5492029463386 25.0938395620812 60.540984565471 25.108345015792 60.5405423918187 25.1091388893092 60.538428006279 25.1127349127905 60.5384152105557 25.1127566775928 60.5383607637509 25.1128523673445 60.5382269908991 25.1130874887252 60.5379411834474 25.1135766541033 60.5373271460619 25.1146160535516 60.5372995773417 25.1146627030672 60.5366468900407 25.115767272152 60.5358137261812 25.1172429226336 60.5353761872462 25.1180175000166 60.5330483697934 25.1221011670511 60.5322239246369 25.1235354634023 60.5318635908161 25.1241127630944 60.5256877081875 25.1349694443357 60.521817424512 25.1417965818335 60.521076401046 25.1431013372883 60.5201149998695 25.1448002757394 60.519978202281 25.1450420072826 60.5195762919424 25.1457521835203 60.5195634410245 25.1457748728624 60.5195632571259 25.1457752113291 60.5192958552384 25.146247697967 60.5190116999462 25.1467497747411 60.5189160544144 25.1469187393618 60.5188134666454 25.14710001492 60.5187247583962 25.1472563561305 60.5184820728232 25.147669069295 60.518237651734 25.1481134303233 60.5179066168724 25.1486892390285 60.5178443424303 25.1488083542406 60.5175860417831 25.1492617608675 60.5168743600691 25.1504990585775 60.5167309518886 25.150766095009 + + + + + + Tuusula + + municipality + + + + + + + From a506001cb8d3ebbd940fefeda55ff4c6e4043cd6 Mon Sep 17 00:00:00 2001 From: Jesse Jaara Date: Mon, 12 May 2025 13:53:07 +0300 Subject: [PATCH 06/18] Python importer: Fix white space --- stop-registry-importer/importer.py | 40 +++++++++++++++--------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 0a559956..31a92d24 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -38,7 +38,7 @@ def get_jore3_stops(): INNER JOIN jr_varustelutiedot_uusi vt ON (p.soltunnus = vt.tunnus) LEFT JOIN jr_esteettomyys e ON (p.soltunnus = e.tunnus) ORDER BY p.pysviimpvm ASC;""") - + stopPlaces = cursor.fetchall() print(f"Found {len(stopPlaces)} stop places") @@ -52,7 +52,7 @@ def get_jore3_stops(): def get_jore3_stop_areas(): with pymssql.connect(jore3DatabaseUrl, jore3Username, jore3Password, jore3DatabaseName) as conn: - + with conn.cursor(as_dict=True) as cursor: cursor.execute("""SELECT pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain FROM jr_pysakki p @@ -65,7 +65,7 @@ def get_jore3_stop_areas(): GROUP BY jp.pysalueid HAVING COUNT(*) > 1); """) - + for row in cursor: yield row @@ -86,10 +86,10 @@ def get_stop_points(): json_data = response.json() if not json_data['data']: return {} - + stop_points = json.loads(response.content)['data']['service_pattern_scheduled_stop_point'] result_dict = {} - + for x in stop_points: result_dict.setdefault(x['label'], []).append({ 'label': x['label'], @@ -150,8 +150,8 @@ def mapStopType(jore3type): case '07': return 'wooden' case _: - return 'virtual' - + return 'virtual' + def mapStopElectricity(jore3elec): match jore3elec: case '01': @@ -186,7 +186,7 @@ def toFloat(value): def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat): return { "publicCode": label, - "privateCode": { + "privateCode": { "value": jore3row['soltunnus'], "type": 'HSL' }, @@ -194,7 +194,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) "lang": "fin", "value": jore3row['pyspaikannimi'] }, - "geometry": { + "geometry": { "type": "Point", "coordinates": [lon, lat] }, @@ -208,39 +208,39 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) } ], "keyValues": [ - { + { "key": "stopState", "values": "InOperation" }, - { + { "key": "mainLine", "values": "false" }, - { + { "key": "virtual", "values": "false" }, - { + { "key": "postalCode", "values": [jore3row['postinro']] }, - { + { "key": "functionalArea", "values": [str(jore3row['pyssade'])] }, - { + { "key": "streetAddress", "values": [jore3row['pysosoite']] }, - { + { "key": "priority", "values": ['10'] }, - { + { "key": "validityStart", "values": [validityStart] }, - { + { "key": "validityEnd", "values": [validityEnd] } @@ -256,7 +256,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) "stopElevationFromSidewalk": toFloat(jore3row['korotus_kaytavaan']), "stopType": mapStopModel(jore3row['pysakin_malli']) }, - "limitations": { + "limitations": { "audibleSignalsAvailable": "FALSE", "escalatorFreeAccess": "FALSE", "liftFreeAccess": "FALSE", @@ -407,7 +407,7 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastStop, quayInput) if (netexIds): - added += 1 + added += 1 for netexAssociation in netexIds: update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) From 24e61e2d06795b044227c33ad054d51d8af9cf76 Mon Sep 17 00:00:00 2001 From: Jesse Jaara Date: Mon, 12 May 2025 13:56:43 +0300 Subject: [PATCH 07/18] Python importer: Store StopArea PrivateCode with type HSL/JORE-3 --- stop-registry-importer/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 31a92d24..9a0802c4 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -188,7 +188,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) "publicCode": label, "privateCode": { "value": jore3row['soltunnus'], - "type": 'HSL' + "type": 'HSL/JORE-3' }, "description": { "lang": "fin", From 4f1d5c4a9fc10eddfd14ce0ed52f5b4ec716a016 Mon Sep 17 00:00:00 2001 From: Jesse Jaara Date: Wed, 14 May 2025 12:34:51 +0300 Subject: [PATCH 08/18] Set HSL/JORE-3 PrivateCode type on StopPlace not Quay --- stop-registry-importer/importer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 9a0802c4..04a076f6 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -188,7 +188,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) "publicCode": label, "privateCode": { "value": jore3row['soltunnus'], - "type": 'HSL/JORE-3' + "type": 'HSL' }, "description": { "lang": "fin", @@ -312,7 +312,7 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp { name: {lang: "swe", value: $stopNameSwe}, nameType: translation } ], name: {lang: "fin", value: $stopName}, - privateCode: {value: $privateCode, type: "HSL"}, + privateCode: {value: $privateCode, type: "HSL/JORE-3"}, keyValues: [ { key: "validityStart", values: [$validityStart] }, { key: "validityEnd", values: [$validityEnd] } From 5af7574279881ba5bed2922d1142159072609665 Mon Sep 17 00:00:00 2001 From: Jesse Jaara Date: Fri, 23 May 2025 14:07:14 +0300 Subject: [PATCH 09/18] Python importer: Savce Quay PrivateCode with type HSL/JORE-3 --- stop-registry-importer/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 04a076f6..16bb223b 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -188,7 +188,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) "publicCode": label, "privateCode": { "value": jore3row['soltunnus'], - "type": 'HSL' + "type": 'HSL/JORE-3' }, "description": { "lang": "fin", From 672a10332e85917fe50a6f70728d7ce80247d786 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Mon, 13 Apr 2026 14:05:58 +0300 Subject: [PATCH 10/18] stop-registry-importer Add doc string to importer.py --- stop-registry-importer/importer.py | 139 +++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 16bb223b..8e7d0e86 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -1,5 +1,144 @@ #!/usr/bin/env python3 +""" +Stop Registry Importer — Jore3 → Jore4 + +Imports stop place data from a Jore3 MSSQL database into the Jore4 stop registry via a Hasura GraphQL API. + +Configuration: + Reads environment variables (or .env file) for the GraphQL endpoint, Hasura admin secret, and Jore3 DB credentials. + +Data Retrieval: + - get_jore3_stops() — Queries the Jore3 MSSQL database, joining stop, node, stop area, equipment, and + accessibility tables. Returns stops grouped by stop area ID. + - get_jore3_stop_areas() — Queries Jore3 for stop areas that belong to network 1 and have more than one stop (i.e. + multi-quay areas). Yields rows as a generator. + - get_stop_points() — Fetches existing scheduled stop points from Jore4 via GraphQL. Returns them as a dict + keyed by label. + +Data Mapping: + - quayInputForJore3Stop() — Transforms a single Jore3 stop row into the GraphQL QuayInput format, mapping fields + like shelter type, electricity, condition, accessibility properties, and equipment using helper functions + (mapStopModel, mapStopType, mapStopElectricity, mapStopCondition, mapBoolean, toFloat). + +Import Loop (main logic): + For each Jore3 stop area: + 1. Iterates over all stops in that area. + 2. Matches each stop to an existing Jore4 stop point by label (letter + number). + 3. Builds a list of quay inputs and collects coordinates / validity periods. + 4. update_stop_place() — Sends a GraphQL mutation to create/update the stop place with averaged coordinates, + merged validity periods, and all quays attached. + 5. update_stop_point() — For each quay returned by the mutation, links the Jore4 scheduled stop point back to the + new NeTEx ID via another GraphQL mutation. + +Summary: + Jore3 MSSQL → Python mapping → Jore4 Hasura GraphQL: migrates stop places (with quays, accessibility, equipment, + and shelter data) from the legacy system into the new one, and cross-references the created stop places back to the + existing scheduled stop points. + +Jore3 Source Tables (MSSQL): + The main query (get_jore3_stops) joins five tables: + + jr_pysakki (p) — Stop properties (name, shelter, postal code, etc.) + jr_solmu (s) — Node coordinates and label parts (solkirjain, sollistunnus) + jr_lij_pysakkialue (pa) — Stop area grouping (pysalueid) + jr_varustelutiedot_uusi (vt) — Equipment details (shelter type, electricity, signs) + jr_esteettomyys (e) — Accessibility properties (slopes, curb distances) [LEFT JOIN] + + The stop area query (get_jore3_stop_areas) selects areas from network 1 with > 1 stop. + +Jore4 Target (Hasura GraphQL — stop_registry.mutateStopPlace): + + Stop Place level mapping: + Jore3 column → GraphQL field Notes + ───────────────────────────────────────────────────────────────────── + pysalueid → privateCode.value Stop area ID (type: HSL/JORE-3) + pysnimi → name (lang: fin) Stop name Finnish + pysnimipitka → alternativeNames[fin, alias] Long name Finnish + pysnimipitkar → alternativeNames[swe, alias] Long name Swedish + pysnimir → alternativeNames[swe, transl.] Stop name Swedish + avg(quay coords) → geometry.coordinates Centroid of all quays + min(validity_start) → keyValues["validityStart"] Earliest stop point start + max(validity_end) → keyValues["validityEnd"] Latest stop point end + (hardcoded) → transportMode Always "bus" + + Quay level mapping (one quay per stop in the area): + Jore3 column → GraphQL field Notes + ───────────────────────────────────────────────────────────────────── + solkirjain + + sollistunnus → publicCode Stop label (e.g. "H1234") + soltunnus → privateCode.value Node ID (type: HSL/JORE-3) + pyspaikannimi → description (lang: fin) Place description Finnish + pyspaikannimir → alternativeNames[swe] Place description Swedish + postinro → keyValues["postalCode"] Postal code + pyssade → keyValues["functionalArea"] Functional area radius + pysosoite → keyValues["streetAddress"] Street address + (from Jore4 SP) → geometry.coordinates Coordinates from stop point + (from Jore4 SP) → keyValues["validityStart"] From existing scheduled stop point + (from Jore4 SP) → keyValues["validityEnd"] From existing scheduled stop point + (hardcoded) → keyValues["stopState"] Always "InOperation" + (hardcoded) → keyValues["mainLine"] Always "false" + (hardcoded) → keyValues["virtual"] Always "false" + (hardcoded) → keyValues["priority"] Always "10" + + Accessibility assessment (per quay, from jr_esteettomyys): + Jore3 column → GraphQL field Conversion + ───────────────────────────────────────────────────────────────────── + korotus_ajorataan → curbBackOfRailDistance toFloat + alapiena_korkeus → lowerCleatHeight toFloat + varoitusalue → platformEdgeWarningArea mapBoolean (1→True, else→False) + pituuskaltevuus → stopAreaLengthwiseSlope toFloat + sivukaltevuus → stopAreaSideSlope toFloat + esteeton_kulku → stopAreaSurroundingsAccessible mapBoolean + korotus_kaytavaan → stopElevationFromSidewalk toFloat + pysakin_malli → stopType mapStopModel (see below) + + Limitations (all hardcoded to FALSE): + audibleSignalsAvailable, escalatorFreeAccess, liftFreeAccess, + stepFreeAccess, wheelchairAccess + + Shelter equipment (per quay, from jr_varustelutiedot_uusi): + Jore3 column → GraphQL field Conversion + ───────────────────────────────────────────────────────────────────── + pysakkityyppi → shelterType mapStopType (see below) + pysakkityyppi → enclosed True if "01" or "02" + sahko → shelterElectricity mapStopElectricity (see below) + katos_kunto → shelterCondition mapStopCondition (see below) + kpl_pysakkityyppi → (shelter list multiplier) Number of shelter copies + lisavarusteet + + kpl_lisavarusteet → timetableCabinets Count if lisavarusteet == "01", else 0 + roska_astia → trashCan mapBoolean + nayttolaitteet → shelterHasDisplay mapBoolean + lisavarusteet → bicycleParking True if "03" or "04" + kpl_kilvet → generalSign.numberOfFrames toFloat + (hardcoded) → shelterLighting Always True + (hardcoded) → leaningRail Always False + (hardcoded) → outsideBench Always False + (hardcoded) → shelterFasciaBoardTaping Always False + +Value Mappings: + + mapStopModel (pysakin_malli → stopType): + "1" → "pullOut" "2" → "busBulb" "4" → "inLane" else → "other" + + mapStopType (pysakkityyppi → shelterType): + "01" → "glass" "02" → "steel" "04" → "post" "05" → "urban" + "06" → "concrete" "07" → "wooden" else → "virtual" + + mapStopElectricity (sahko → shelterElectricity): + "01" → "none" "02" → "continuous" else → "light" + + mapStopCondition (katos_kunto → shelterCondition): + "01" → "good" "02" → "mediocre" else → "bad" + +Post-import Linking: + After creating each stop place, the returned quay NeTEx IDs are written back to the Jore4 scheduled stop points via: + + UPDATE service_pattern_scheduled_stop_point + SET stop_place_ref = + WHERE label = +""" + import datetime import pymssql import requests From 5a59ad2c836204c82333080640ce2d2ed34fb314 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Mon, 4 May 2026 16:13:08 +0300 Subject: [PATCH 11/18] make jore3/jore4 variables more explicit in importer.py --- stop-registry-importer/importer.py | 50 +++++++++++++++--------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 8e7d0e86..41778978 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -9,12 +9,12 @@ Reads environment variables (or .env file) for the GraphQL endpoint, Hasura admin secret, and Jore3 DB credentials. Data Retrieval: - - get_jore3_stops() — Queries the Jore3 MSSQL database, joining stop, node, stop area, equipment, and - accessibility tables. Returns stops grouped by stop area ID. - - get_jore3_stop_areas() — Queries Jore3 for stop areas that belong to network 1 and have more than one stop (i.e. - multi-quay areas). Yields rows as a generator. - - get_stop_points() — Fetches existing scheduled stop points from Jore4 via GraphQL. Returns them as a dict - keyed by label. + - get_jore3_stops() — Queries the Jore3 MSSQL database, joining stop, node, stop area, equipment, and + accessibility tables. Returns stops grouped by stop area ID. + - get_jore3_stop_areas() — Queries Jore3 for stop areas that belong to network 1 and have more than one stop (i.e. + multi-quay areas). Yields rows as a generator. + - get_jore4_stop_points() — Fetches existing scheduled stop points from Jore4 via GraphQL. Returns them as a dict + keyed by label. Data Mapping: - quayInputForJore3Stop() — Transforms a single Jore3 stop row into the GraphQL QuayInput format, mapping fields @@ -208,7 +208,7 @@ def get_jore3_stop_areas(): for row in cursor: yield row -def get_stop_points(): +def get_jore4_stop_points(): query = """query { service_pattern_scheduled_stop_point { label @@ -499,14 +499,14 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp startTime = datetime.datetime.now() -stopPoints = get_stop_points() -print(f"Found {len(stopPoints)} stop points") +j4stopPoints = get_jore4_stop_points() +print(f"Found {len(j4stopPoints)} stop points") added = 0 -stopPlaces = get_jore3_stops() +j3stopPlaces = get_jore3_stops() index = 0 -for stopArea in get_jore3_stop_areas(): +for j3StopArea in get_jore3_stop_areas(): index += 1 print(f"Handling stop area {index}") quayInput = [] @@ -514,26 +514,26 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp lonCoords = [] validityStarts = [] validityEnds = [] - lastStop = None + lastJ3Stop = None try: - for stop in stopPlaces[stopArea['pysalueid']]: + for j3stop in j3stopPlaces[j3StopArea['pysalueid']]: try: - stopLabel = stop['solkirjain'] + stop['sollistunnus'] - if not stopLabel in stopPoints: + stopLabel = j3stop['solkirjain'] + j3stop['sollistunnus'] + if not stopLabel in j4stopPoints: continue - stopPoint = stopPoints[stopLabel][0] - lat = stopPoint['lat'] - lon = stopPoint['lon'] - validityStart = stopPoint['validity_start'] - validityEnd = stopPoint['validity_end'] - quayInput.append(quayInputForJore3Stop(stop, stopPoint['label'], validityStart, validityEnd , lon, lat)) + j4stopPoint = j4stopPoints[stopLabel][0] + lat = j4stopPoint['lat'] + lon = j4stopPoint['lon'] + validityStart = j4stopPoint['validity_start'] + validityEnd = j4stopPoint['validity_end'] + quayInput.append(quayInputForJore3Stop(j3stop, j4stopPoint['label'], validityStart, validityEnd, lon, lat)) latCoords.append(lat) lonCoords.append(lon) validityStarts.append(validityStart) validityEnds.append(validityEnd) - lastStop = stop + lastJ3Stop = j3stop except: - print(f"Failed to handle stop {stop['soltunnus']}: {stop['pysnimi']}") + print(f"Failed to handle stop {j3stop['soltunnus']}: {j3stop['pysnimi']}") if (len(lonCoords) > 0 and len(latCoords) > 0 and len(validityStarts) > 0 and len(validityEnds) > 0): # Average coordinates of quays for the stop place @@ -544,14 +544,14 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp stopPlaceValidityStart = min(validityStarts) stopPlaceValidityEnd = max(validityEnds) - netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastStop, quayInput) + netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastJ3Stop, quayInput) if (netexIds): added += 1 for netexAssociation in netexIds: update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) except Exception as e: - print(f"Failed to handle stop area {stopArea['pysalueid']}") + print(f"Failed to handle stop area {j3StopArea['pysalueid']}") print(e) endTime = datetime.datetime.now() From a0878f68b956c8727cff52b9b1edbe4b53dba944 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Wed, 13 May 2026 15:48:13 +0300 Subject: [PATCH 12/18] upgrade stop registry importer python and libs --- stop-registry-importer/Dockerfile | 2 +- .../check-requirements-versions.sh | 174 ++++++++++++++++++ stop-registry-importer/requirements.txt | 18 +- 3 files changed, 184 insertions(+), 10 deletions(-) create mode 100755 stop-registry-importer/check-requirements-versions.sh diff --git a/stop-registry-importer/Dockerfile b/stop-registry-importer/Dockerfile index 1598c2a8..d3451ff7 100644 --- a/stop-registry-importer/Dockerfile +++ b/stop-registry-importer/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 +FROM python:3.14 WORKDIR /app COPY requirements.txt . diff --git a/stop-registry-importer/check-requirements-versions.sh b/stop-registry-importer/check-requirements-versions.sh new file mode 100755 index 00000000..ad58ee29 --- /dev/null +++ b/stop-registry-importer/check-requirements-versions.sh @@ -0,0 +1,174 @@ +#!/usr/bin/env bash +set -euo pipefail + +# +# A convenience script for checking if the pinned versions of the dependencies in the requirements.txt file are outdated +# compared to the latest versions available on PyPI. +# + +REQ_FILE="${1:-requirements.txt}" + +if [[ ! -f "$REQ_FILE" ]]; then + echo "ERROR: requirements file not found: $REQ_FILE" >&2 + exit 1 +fi + +have_cmd() { + command -v "$1" >/dev/null 2>&1 +} + +python_version_of() { + local cmd="$1" + "$cmd" -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}")' 2>/dev/null +} + +python_mm_of() { + local cmd="$1" + "$cmd" -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")' 2>/dev/null +} + +version_ge() { + # returns 0 if $1 >= $2 + [[ "$(printf '%s\n%s\n' "$2" "$1" | sort -V | tail -n1)" == "$1" ]] +} + +pip_python_mm_of() { + local cmd="$1" + "$cmd" --version 2>/dev/null | sed -E 's/.*\(python ([0-9]+\.[0-9]+)\).*/\1/' +} + +choose_python() { + local chosen="" + local py_ver="" + + if have_cmd python; then + py_ver="$(python_mm_of python || true)" + if [[ -n "$py_ver" ]] && version_ge "$py_ver" "3.14"; then + chosen="python" + echo "$chosen" + return 0 + fi + fi + + if have_cmd python3; then + py_ver="$(python_mm_of python3 || true)" + if [[ -n "$py_ver" ]] && version_ge "$py_ver" "3.14"; then + chosen="python3" + echo "$chosen" + return 0 + fi + fi + + return 1 +} + +choose_pip() { + local chosen="" + local pip_py_ver="" + + if have_cmd pip; then + pip_py_ver="$(pip_python_mm_of pip || true)" + if [[ -n "$pip_py_ver" ]] && version_ge "$pip_py_ver" "3.14"; then + chosen="pip" + echo "$chosen" + return 0 + fi + fi + + if have_cmd pip3; then + pip_py_ver="$(pip_python_mm_of pip3 || true)" + if [[ -n "$pip_py_ver" ]] && version_ge "$pip_py_ver" "3.14"; then + chosen="pip3" + echo "$chosen" + return 0 + fi + fi + + return 1 +} + +PY_CMD="" +PIP_CMD="" +PIP_INVOKE=() + +if PY_CMD="$(choose_python)"; then + : +else + echo "ERROR: could not find a usable 'python' or 'python3' command with Python >= 3.14" >&2 + exit 1 +fi + +if PIP_CMD="$(choose_pip)"; then + PIP_INVOKE=("$PIP_CMD") +else + # fallback to python -m pip using the selected Python + if "$PY_CMD" -m pip --version >/dev/null 2>&1; then + PIP_INVOKE=("$PY_CMD" "-m" "pip") + else + echo "ERROR: could not find a usable pip command ('pip', 'pip3', or '$PY_CMD -m pip')" >&2 + exit 1 + fi +fi + +PY_FULL_VER="$("$PY_CMD" -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}")')" +PIP_VER_STR="$("${PIP_INVOKE[@]}" --version 2>/dev/null || true)" + +echo "Using Python command: $PY_CMD ($PY_FULL_VER)" +if [[ ${#PIP_INVOKE[@]} -eq 1 ]]; then + echo "Using pip command: ${PIP_INVOKE[0]}" +else + echo "Using pip command: ${PIP_INVOKE[*]}" +fi +echo "pip reports: $PIP_VER_STR" +echo + +latest_version_for() { + local package="$1" + local output latest + + if ! output="$("${PIP_INVOKE[@]}" index versions "$package" 2>/dev/null)"; then + return 1 + fi + + latest="$(printf '%s\n' "$output" | sed -nE 's/^'"$package"' \(([^)]+)\)$/\1/p' | head -n1)" + + if [[ -z "$latest" ]]; then + latest="$(printf '%s\n' "$output" | sed -nE 's/^Available versions: ([^, ]+).*/\1/p' | head -n1)" + fi + + if [[ -z "$latest" ]]; then + return 1 + fi + + printf '%s\n' "$latest" +} + +printf '%-24s %-15s %-15s %-10s\n' "PACKAGE" "PINNED" "LATEST" "STATUS" +printf '%-24s %-15s %-15s %-10s\n' "------------------------" "---------------" "---------------" "----------" + +while IFS= read -r raw_line || [[ -n "$raw_line" ]]; do + line="${raw_line#"${raw_line%%[![:space:]]*}"}" + line="${line%"${line##*[![:space:]]}"}" + + [[ -z "$line" ]] && continue + [[ "$line" == \#* ]] && continue + + if [[ "$line" =~ ^([A-Za-z0-9._-]+)==([^[:space:]]+)$ ]]; then + pkg="${BASH_REMATCH[1]}" + pinned="${BASH_REMATCH[2]}" + else + printf '%-24s %-15s %-15s %-10s\n' "$line" "-" "-" "SKIPPED" + continue + fi + + if latest="$(latest_version_for "$pkg")"; then + if version_ge "$pinned" "$latest"; then + status="OK" + else + status="OUTDATED" + fi + printf '%-24s %-15s %-15s %-10s\n' "$pkg" "$pinned" "$latest" "$status" + else + printf '%-24s %-15s %-15s %-10s\n' "$pkg" "$pinned" "?" "ERROR" + fi +done < "$REQ_FILE" diff --git a/stop-registry-importer/requirements.txt b/stop-registry-importer/requirements.txt index 8195cd39..d844740b 100644 --- a/stop-registry-importer/requirements.txt +++ b/stop-registry-importer/requirements.txt @@ -1,9 +1,9 @@ -certifi==2024.8.30 -charset-normalizer==3.4.0 -django-environ==0.12.0 -idna==3.10 -pymssql==2.3.2 -requests==2.32.3 -simplejson==3.19.3 -typing_extensions==4.12.2 -urllib3==2.2.3 +certifi==2026.5.20 +charset-normalizer==3.4.7 +django-environ==0.13.0 +idna==3.17 +pymssql==2.3.13 +requests==2.34.2 +simplejson==4.1.1 +typing_extensions==4.15.0 +urllib3==2.7.0 From aad51cb7b42536045c582164be0f6b943af2dc03 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Wed, 13 May 2026 16:07:02 +0300 Subject: [PATCH 13/18] stop importer: include tram stops --- development.sh | 4 +- docker/docker-compose.custom.yml | 7 +++- stop-registry-importer/importer.py | 59 +++++++++++++++++++++--------- 3 files changed, 48 insertions(+), 22 deletions(-) diff --git a/development.sh b/development.sh index 5e52fe01..790ceab3 100755 --- a/development.sh +++ b/development.sh @@ -202,7 +202,7 @@ seed_tram_infra_links() { } start_all() { - $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-jore3importer jore4-mapmatchingdb jore4-mapmatching jore4-tiamat + $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-jore3importer jore4-mapmatchingdb jore4-mapmatching jore4-tiamat jore4-auth jore4-idp } start_deps() { @@ -212,7 +212,7 @@ start_deps() { # jore4-mssqltestdb - The Jore 3 MSSQL database which contains the source data which is read by the importer # jore4-hasura - Hasura. We have to start Hasura because it ensures that db migrations are run to the Jore 4 database. # jore4-testdb - Jore 4 database. This is the destination database of the import process. - $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-mapmatchingdb jore4-mapmatching jore4-tiamat + $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-mapmatchingdb jore4-mapmatching jore4-tiamat jore4-auth jore4-idp } stop() { diff --git a/docker/docker-compose.custom.yml b/docker/docker-compose.custom.yml index db3fa58e..63745bb3 100644 --- a/docker/docker-compose.custom.yml +++ b/docker/docker-compose.custom.yml @@ -38,11 +38,14 @@ services: jore4-tiamat: # Pin tiamat to a compatible version. - image: "hsldevcom/jore4-tiamat:main--20250317-1136ff34a5b6030b0e9c85b0373f5ddc02946267" + #image: "hsldevcom/jore4-tiamat:main--20250317-1136ff34a5b6030b0e9c85b0373f5ddc02946267" + depends_on: + jore4-testdb: + condition: service_healthy jore4-hasura: # pin compatible version of jore4 data model - image: "hsldevcom/jore4-hasura:hsl-main--20250317-60eaf1217447890591ca3bbe262c96f2cc68ba57" + #image: "hsldevcom/jore4-hasura:hsl-main--20250317-60eaf1217447890591ca3bbe262c96f2cc68ba57" depends_on: jore4-testdb: condition: service_healthy diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 41778978..bd5a07c0 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -3,7 +3,8 @@ """ Stop Registry Importer — Jore3 → Jore4 -Imports stop place data from a Jore3 MSSQL database into the Jore4 stop registry via a Hasura GraphQL API. +Imports stop place data from a Jore3 MSSQL database into the Jore4 stop registry via Tiamat GraphQL API through Hasura +GraphQL API. Configuration: Reads environment variables (or .env file) for the GraphQL endpoint, Hasura admin secret, and Jore3 DB credentials. @@ -11,8 +12,8 @@ Data Retrieval: - get_jore3_stops() — Queries the Jore3 MSSQL database, joining stop, node, stop area, equipment, and accessibility tables. Returns stops grouped by stop area ID. - - get_jore3_stop_areas() — Queries Jore3 for stop areas that belong to network 1 and have more than one stop (i.e. - multi-quay areas). Yields rows as a generator. + - get_jore3_stop_areas() — Queries Jore3 for stop areas that belong to networks 1 and 3 and have more than one stop + (i.e. multi-quay areas). Yields rows as a generator. - get_jore4_stop_points() — Fetches existing scheduled stop points from Jore4 via GraphQL. Returns them as a dict keyed by label. @@ -26,7 +27,7 @@ 1. Iterates over all stops in that area. 2. Matches each stop to an existing Jore4 stop point by label (letter + number). 3. Builds a list of quay inputs and collects coordinates / validity periods. - 4. update_stop_place() — Sends a GraphQL mutation to create/update the stop place with averaged coordinates, + 4. update_stop_place() — Sends a GraphQL mutation to create/update the stop place with averaged quay coordinates, merged validity periods, and all quays attached. 5. update_stop_point() — For each quay returned by the mutation, links the Jore4 scheduled stop point back to the new NeTEx ID via another GraphQL mutation. @@ -45,7 +46,7 @@ jr_varustelutiedot_uusi (vt) — Equipment details (shelter type, electricity, signs) jr_esteettomyys (e) — Accessibility properties (slopes, curb distances) [LEFT JOIN] - The stop area query (get_jore3_stop_areas) selects areas from network 1 with > 1 stop. + The stop area query (get_jore3_stop_areas) selects areas from networks 1 & 3 with > 1 stop. Jore4 Target (Hasura GraphQL — stop_registry.mutateStopPlace): @@ -60,7 +61,7 @@ avg(quay coords) → geometry.coordinates Centroid of all quays min(validity_start) → keyValues["validityStart"] Earliest stop point start max(validity_end) → keyValues["validityEnd"] Latest stop point end - (hardcoded) → transportMode Always "bus" + verkko (via pa) → transportMode mapTransportMode: 1→bus, 3→tram Quay level mapping (one quay per stop in the area): Jore3 column → GraphQL field Notes @@ -118,6 +119,9 @@ Value Mappings: + mapTransportMode (verkko → transportMode): + 1 → "bus" 2 → "metro" 3 → "tram" 4 → "rail" 5 → "water" else → "unknown" + mapStopModel (pysakin_malli → stopType): "1" → "pullOut" "2" → "busBulb" "4" → "inLane" else → "other" @@ -194,13 +198,13 @@ def get_jore3_stop_areas(): with conn.cursor(as_dict=True) as cursor: - cursor.execute("""SELECT pa.nimi, pa.pysalueid, s.sollistunnus, s.solkirjain FROM jr_pysakki p + cursor.execute("""SELECT pa.nimi, pa.pysalueid, pa.verkko, s.sollistunnus, s.solkirjain FROM jr_pysakki p INNER JOIN jr_solmu s ON (s.soltunnus = p.soltunnus) INNER JOIN jr_lij_pysakkialue pa ON (p.pysalueid = pa.pysalueid) WHERE p.pysalueid IN ( SELECT jp.pysalueid FROM jr_pysakki jp INNER JOIN jr_lij_pysakkialue jlp ON (jp.pysalueid = jlp.pysalueid) - WHERE jlp.verkko = 1 + WHERE jlp.verkko IN (1, 3) GROUP BY jp.pysalueid HAVING COUNT(*) > 1); """) @@ -263,16 +267,31 @@ def update_stop_point(label, netexid): else: print(f"Scheduled stop point {label} reference update failed") +def mapTransportMode(verkko): + match verkko: + case 1: + return 'bus' + case 2: + return 'metro' + case 3: + return 'tram' + case 4: + return 'rail' + case 5: + return 'water' + case _: + return 'bus' + def mapStopModel(jore3model): match jore3model: case '1': - return 'pullOut' + return 'pullOut' # syvennys case '2': - return 'busBulb' + return 'busBulb' # uloke case '4': - return 'inLane' + return 'inLane' # ajorata case _: - return 'other' + return 'other' # '3' muu def mapStopType(jore3type): match jore3type: @@ -426,7 +445,7 @@ def quayInputForJore3Stop(jore3row, label, validityStart, validityEnd, lon, lat) } } -def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInput): +def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInput, transportMode): stopMutation2 = """ mutation AddStopPlace( $privateCode: String!, @@ -439,7 +458,8 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp $validityStart: String, $validityEnd: String, $coordinates: stop_registry_Coordinates, - $quays: [stop_registry_QuayInput] + $quays: [stop_registry_QuayInput], + $transportMode: stop_registry_TransportModeType ) { stop_registry { mutateStopPlace( @@ -457,7 +477,7 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp { key: "validityEnd", values: [$validityEnd] } ], quays: $quays, - transportMode: bus + transportMode: $transportMode }) { id quays { @@ -478,7 +498,8 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp "coordinates": [lon, lat], "validityStart": validityStart, "validityEnd": validityEnd, - "quays": quayInput + "quays": quayInput, + "transportMode": transportMode } headers = {'content-type': 'application/json; charset=UTF-8', @@ -526,7 +547,8 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp lon = j4stopPoint['lon'] validityStart = j4stopPoint['validity_start'] validityEnd = j4stopPoint['validity_end'] - quayInput.append(quayInputForJore3Stop(j3stop, j4stopPoint['label'], validityStart, validityEnd, lon, lat)) + quayInput.append(quayInputForJore3Stop(j3stop, j4stopPoint['label'], validityStart, validityEnd, + lon, lat)) latCoords.append(lat) lonCoords.append(lon) validityStarts.append(validityStart) @@ -544,7 +566,8 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp stopPlaceValidityStart = min(validityStarts) stopPlaceValidityEnd = max(validityEnds) - netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, lastJ3Stop, quayInput) + netexIds = update_stop_place(stopPlaceLat, stopPlaceLon, stopPlaceValidityStart, stopPlaceValidityEnd, + lastJ3Stop, quayInput, mapTransportMode(j3StopArea['verkko'])) if (netexIds): added += 1 for netexAssociation in netexIds: From 7d0d31270eb4a768ff545d3ee145484a32134d74 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Thu, 28 May 2026 08:58:09 +0300 Subject: [PATCH 14/18] stop-registry-importer logging --- stop-registry-importer/importer.py | 108 +++++++++++++++++++++++------ 1 file changed, 86 insertions(+), 22 deletions(-) diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index bd5a07c0..9a26ad7c 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -144,10 +144,19 @@ """ import datetime +import time import pymssql import requests import simplejson as json import environ +import logging + +logging.basicConfig( + format="%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + level=logging.INFO +) +logger = logging.getLogger(__name__) env = environ.Env( GRAPHQL_URL=(str,'http://localhost:3201/v1/graphql'), @@ -168,6 +177,8 @@ jore3DatabaseUrl = env('JORE3_DATABASE_URL') jore3DatabaseName = env('JORE3_DATABASE_NAME') +logging.info(f"Jore3 db: {jore3DatabaseUrl}/{jore3DatabaseName} as {jore3Username}; hasura at {graphql}") + def get_jore3_stops(): stopPlaces = [] @@ -184,7 +195,7 @@ def get_jore3_stops(): stopPlaces = cursor.fetchall() - print(f"Found {len(stopPlaces)} stop places") + logging.info(f"Found {len(stopPlaces)} jore3 stop places") stopPlacesByArea = {} @@ -262,10 +273,13 @@ def update_stop_point(label, netexid): 'x-hasura-admin-secret': secret} response = requests.post(graphql, headers=headers, json={"query": mutation, "variables": variables}) formatted = response.json() - if formatted['data']: - print(f"Scheduled stop point {label} reference updated") + + data = formatted.get("data") if isinstance(formatted, dict) else None + if data: + logging.info(f"Scheduled stop point {label} reference updated") else: - print(f"Scheduled stop point {label} reference update failed") + logging.info(f"Scheduled stop point {label} reference update failed") + def mapTransportMode(verkko): match verkko: @@ -504,32 +518,67 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp headers = {'content-type': 'application/json; charset=UTF-8', 'x-hasura-admin-secret': secret} - response = requests.post(graphql, headers=headers, json={"query": stopMutation2, "variables": variables2}) - formatted = response.json() + max_retries = 5 + for attempt in range(max_retries): + try: + response = requests.post(graphql, headers=headers, json={"query": stopMutation2, "variables": variables2}, timeout=120) + formatted = response.json() + except requests.exceptions.Timeout: + if attempt < max_retries - 1: + wait = 2 ** (attempt + 1) + logging.warning(f"Request timeout for stop place {jore3result['pysalueid']}, retrying in {wait}s (attempt {attempt + 1}/{max_retries})") + time.sleep(wait) + continue + else: + logging.error(f"Stop place {jore3result['pysalueid']} failed after {max_retries} attempts (timeout)") + return {} + + logging.info(f"Stop place {jore3result['pysalueid']} update response: {formatted}") + + # Check for retryable errors (timeouts, remote schema errors) + errors = formatted.get("errors") if isinstance(formatted, dict) else None + if errors and any("timeout" in (e.get("message", "") or "").lower() or + "remote-schema-error" in str(e.get("extensions", {}).get("code", "")).lower() + for e in errors): + if attempt < max_retries - 1: + wait = 2 ** (attempt + 1) + logging.warning(f"Retryable error for stop place {jore3result['pysalueid']}, retrying in {wait}s (attempt {attempt + 1}/{max_retries})") + time.sleep(wait) + continue + else: + logging.error(f"Stop place {jore3result['pysalueid']} failed after {max_retries} attempts") + return {} + + data = formatted.get("data") if isinstance(formatted, dict) else None + if data: + return data["stop_registry"]["mutateStopPlace"][0]["quays"] - if formatted['data']: - return formatted['data']['stop_registry']['mutateStopPlace'][0]['quays'] - if formatted['errors']: - if formatted['errors'][0]['message']: - print(formatted['errors'][0]['message']) - else: - print(f"Stop place {jore3result['pysalueid']} update failed!") + if errors: + logging.info(errors[0].get("message", f"Stop place {jore3result['pysalueid']} update failed!")) + + return {} return {} + startTime = datetime.datetime.now() +logging.info(f"Loading Jore4 stop points...") j4stopPoints = get_jore4_stop_points() -print(f"Found {len(j4stopPoints)} stop points") +logging.info(f"Found {len(j4stopPoints)} stop points") added = 0 +logging.info(f"Loading Jore3 stops...") j3stopPlaces = get_jore3_stops() +numJ3StopAreas = len(j3stopPlaces) +logging.info(f"Found {numJ3StopAreas} stop places grouped by area") index = 0 for j3StopArea in get_jore3_stop_areas(): index += 1 - print(f"Handling stop area {index}") + if index % 100 == 1: + logging.info(f"Handling stop area {index} / {numJ3StopAreas}") quayInput = [] latCoords = [] lonCoords = [] @@ -539,9 +588,25 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp try: for j3stop in j3stopPlaces[j3StopArea['pysalueid']]: try: - stopLabel = j3stop['solkirjain'] + j3stop['sollistunnus'] + solkirjain = j3stop.get('solkirjain') + sollistunnus = j3stop.get('sollistunnus') + if not solkirjain or not sollistunnus: + logging.warning(f"Skipping stop {index} {j3StopArea['pysalueid']} / {j3stop['soltunnus']}: solkirjain={solkirjain}, sollistunnus={sollistunnus}") + continue + stopLabel = solkirjain + sollistunnus if not stopLabel in j4stopPoints: + logging.info(f"Stop {index} {j3StopArea['pysalueid']} / {j3stop['soltunnus']}: stop label {stopLabel} not found in jore4stopPoints") continue + if len(j4stopPoints[stopLabel]) > 1: + candidate_lines = [] + for candidate in j4stopPoints[stopLabel]: + candidate_lines.append( + f" prio={candidate.get('priority')} validity={candidate.get('validity_start')}..{candidate.get('validity_end')} loc=({candidate.get('lat')},{candidate.get('lon')})" + ) + logging.warning( + f"Stop {index} {j3StopArea['pysalueid']} / {j3stop['soltunnus']}: label {stopLabel} has {len(j4stopPoints[stopLabel])} jore4 matches\n" + + "\n".join(candidate_lines) + ) j4stopPoint = j4stopPoints[stopLabel][0] lat = j4stopPoint['lat'] lon = j4stopPoint['lon'] @@ -554,8 +619,8 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp validityStarts.append(validityStart) validityEnds.append(validityEnd) lastJ3Stop = j3stop - except: - print(f"Failed to handle stop {j3stop['soltunnus']}: {j3stop['pysnimi']}") + except Exception as e: + logging.exception(f"Failed to handle stop {index} {j3StopArea['pysalueid']} / {j3stop['soltunnus']}: {j3stop['pysnimi']}") if (len(lonCoords) > 0 and len(latCoords) > 0 and len(validityStarts) > 0 and len(validityEnds) > 0): # Average coordinates of quays for the stop place @@ -574,11 +639,10 @@ def update_stop_place(lat, lon, validityStart, validityEnd, jore3result, quayInp update_stop_point(netexAssociation['publicCode'], netexAssociation['id']) except Exception as e: - print(f"Failed to handle stop area {j3StopArea['pysalueid']}") - print(e) + logging.exception(f"Failed to handle stop area {j3StopArea['pysalueid']}: {j3StopArea['nimi']}") endTime = datetime.datetime.now() duration = endTime - startTime -print(f"Added {added} stop places") +logging.info(f"Added {added} stop places") minutes = duration.seconds // 60 -print(f"Import took {minutes} minutes {duration.seconds - (minutes * 60)} seconds") +logging.info(f"Import took {minutes} minutes {duration.seconds - (minutes * 60)} seconds") From c3042a521523f5ed217d1fa5f078282b46453eb5 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Thu, 28 May 2026 16:05:59 +0300 Subject: [PATCH 15/18] Run stop-registry-importer as last batch job step --- Dockerfile | 12 +++ README.md | 21 +++-- development.sh | 26 ++++++- profiles/ci/config.properties | 6 ++ profiles/dev/config.properties | 6 ++ profiles/prod/config.properties | 6 ++ .../jore/importer/config/jobs/JobConfig.java | 30 +++++++- .../RunStopRegistryImporterTasklet.java | 77 +++++++++++++++++++ src/main/resources/application.properties | 7 ++ src/test/resources/application.properties | 7 ++ stop-registry-importer/importer.py | 32 ++++---- 11 files changed, 207 insertions(+), 23 deletions(-) create mode 100644 src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java diff --git a/Dockerfile b/Dockerfile index ecb5d325..54aadd33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,18 @@ ARG APPINSIGHTS_VERSION=3.7.7 # expose server port EXPOSE 8080 +# install Python 3 + pip for the stop-registry importer script that is run as the +# final step of the Spring Batch import job +RUN apt-get update \ + && apt-get install -y --no-install-recommends python3 python3-pip \ + && rm -rf /var/lib/apt/lists/* + +# install stop-registry importer Python dependencies and copy the script +COPY ./stop-registry-importer/requirements.txt /opt/stop-registry-importer/requirements.txt +RUN pip3 install --no-cache-dir --break-system-packages \ + -r /opt/stop-registry-importer/requirements.txt +COPY --chmod=444 ./stop-registry-importer/importer.py /opt/stop-registry-importer/importer.py + # download script for reading Docker secrets ADD --chmod=555 https://raw.githubusercontent.com/HSLdevcom/jore4-tools/main/docker/read-secrets.sh /tmp/read-secrets.sh diff --git a/README.md b/README.md index b1fd2cb7..98eaf3cb 100644 --- a/README.md +++ b/README.md @@ -536,11 +536,15 @@ creates the source MSSQL database (_docker/mssql_init/populate.sql_) was changed ### Requirements -You need to have Docker installed on your system to run the script +You need to have Docker installed on your system to run the script. + +Also the python virtual environment must be set up to run the tests (´./developer.sh setup:python`). ### How to use -To run the stop registry importer script you need to have a Jore 3 database, a populated Jore 4 routes database and the `jore4-hasura` and `jore4-tiamat` microservices running. +The script is automatically run as part of the import process. + +To manually run the stop registry importer script you need to have a Jore 3 database, a populated Jore 4 routes database and the `jore4-hasura` and `jore4-tiamat` microservices running. By default the script runs from the local Jore 3 `mssqltestdb` database and uses the base local `jore4-hasura` service as the target. You can change the source database and target Hasura instance by creating a `.env` file in the same directory as the script. @@ -548,12 +552,13 @@ You can change the source database and target Hasura instance by creating a `.en Set the values for variables you want to set: ``` -GRAPHQL_URL= -GRAPHQL_SECRET= -JORE3_USERNAME= -JORE3_PASSWORD= -JORE3_DATABASE_URL= -JORE3_DATABASE_NAME= +HASURA_API_URL= +HASURA_ADMIN_SECRET= +SOURCE_DB_USERNAME= +SOURCE_DB_PASSWORD= +SOURCE_DB_HOSTNAME= +SOURCE_DB_PORT= +SOURCE_DB_DATABASE= ``` You should have run the base Jore 3 importer first which ensures the Jore 4 database has the required scheduled stop points. Then run the stop registry import script which will match scheduled stop points in the Jore 4 routes database with stops in the Jore 3 database and generate GraphQL mutations to Hasura/Tiamat according to the data. The script will also link the generated stop registry stops with the scheduled stop points by their NeTEx ID using Hasura for the mutation. diff --git a/development.sh b/development.sh index 790ceab3..fb938af9 100755 --- a/development.sh +++ b/development.sh @@ -12,6 +12,10 @@ cd "$(dirname "$0")" # Setting the working directory as the script directory # variable. DOCKER_COMPOSE_BUNDLE_REF=${BUNDLE_REF:-main} +STOP_REGISTRY_IMPORTER_DIR="./stop-registry-importer" +STOP_REGISTRY_VENV_DIR="${STOP_REGISTRY_IMPORTER_DIR}/.venv-stop-registry" +STOP_REGISTRY_REQUIREMENTS_FILE="${STOP_REGISTRY_IMPORTER_DIR}/requirements.txt" + # Define a Docker Compose project name to distinguish # the docker environment of this project from others export COMPOSE_PROJECT_NAME=jore3-importer @@ -55,6 +59,9 @@ print_usage() { generate:jooq Generate JOOQ classes. + python:setup + Creates/updates Python virtualenv for stop-registry importer and installs dependencies. + stop Stop the dependencies and the dockerized application. @@ -202,7 +209,8 @@ seed_tram_infra_links() { } start_all() { - $DOCKER_COMPOSE_CMD up --build -d importer-jooq-database importer-test-database jore4-mssqltestdb jore4-hasura jore4-testdb jore4-jore3importer jore4-mapmatchingdb jore4-mapmatching jore4-tiamat jore4-auth jore4-idp + start_deps + $DOCKER_COMPOSE_CMD up --build -d jore4-jore3importer } start_deps() { @@ -251,6 +259,15 @@ upload_zones() { curl --silent --output /dev/null --show-error --fail -X POST -H"Content-Type: application/xml" -d @netex/hsl-zones-netex.xml localhost:3010/services/stop_places/netex } +setup_python() { + if [ ! -d "$STOP_REGISTRY_VENV_DIR" ]; then + python3 -m venv "$STOP_REGISTRY_VENV_DIR" + fi + + "$STOP_REGISTRY_VENV_DIR/bin/pip" install --upgrade pip + "$STOP_REGISTRY_VENV_DIR/bin/pip" install -r "$STOP_REGISTRY_REQUIREMENTS_FILE" +} + ### Control flow COMMAND=${1:-} @@ -263,12 +280,14 @@ fi case $COMMAND in start) download_docker_compose_bundle + setup_python start_all upload_zones ;; start:deps) download_docker_compose_bundle + setup_python start_deps upload_zones ;; @@ -278,6 +297,10 @@ case $COMMAND in generate_jooq ;; + python:setup) + setup_python + ;; + stop) stop ;; @@ -288,6 +311,7 @@ case $COMMAND in recreate) remove + setup_python start_deps upload_zones ;; diff --git a/profiles/ci/config.properties b/profiles/ci/config.properties index ad2dbf9f..44591ece 100644 --- a/profiles/ci/config.properties +++ b/profiles/ci/config.properties @@ -73,3 +73,9 @@ digiroad.stop.csv.file.url= # The map matching API URL map.matching.api.baseUrl=http://localhost:3005 + +# Stop-registry importer execution (container paths) +stop.registry.importer.python.command=python3 +stop.registry.importer.script.path=/opt/stop-registry-importer/importer.py +stop.registry.importer.working.directory=/opt/stop-registry-importer +stop.registry.importer.timeout.hours=2 diff --git a/profiles/dev/config.properties b/profiles/dev/config.properties index 58ec3183..83e1d293 100644 --- a/profiles/dev/config.properties +++ b/profiles/dev/config.properties @@ -58,6 +58,12 @@ digiroad.stop.csv.file.url=https://stjore4dev001.blob.core.windows.net/jore4-dig # The base URL of the Map Matching API map.matching.api.baseUrl=http://localhost:3005 +# Stop-registry importer execution (local workspace paths) +stop.registry.importer.python.command=.venv-stop-registry/bin/python +stop.registry.importer.script.path=importer.py +stop.registry.importer.working.directory=stop-registry-importer +stop.registry.importer.timeout.hours=2 + # # TEST SETTINGS # diff --git a/profiles/prod/config.properties b/profiles/prod/config.properties index b73f3c37..01e9ad3c 100644 --- a/profiles/prod/config.properties +++ b/profiles/prod/config.properties @@ -41,3 +41,9 @@ digiroad.stop.csv.file.url=https://stjore4dev001.blob.core.windows.net/jore4-dig # The base URL of the map matching API map.matching.api.baseUrl= + +# Stop-registry importer execution (container paths) +stop.registry.importer.python.command=python3 +stop.registry.importer.script.path=/opt/stop-registry-importer/importer.py +stop.registry.importer.working.directory=/opt/stop-registry-importer +stop.registry.importer.timeout.hours=2 diff --git a/src/main/java/fi/hsl/jore/importer/config/jobs/JobConfig.java b/src/main/java/fi/hsl/jore/importer/config/jobs/JobConfig.java index d146b90e..96f2137e 100644 --- a/src/main/java/fi/hsl/jore/importer/config/jobs/JobConfig.java +++ b/src/main/java/fi/hsl/jore/importer/config/jobs/JobConfig.java @@ -67,6 +67,7 @@ import fi.hsl.jore.importer.feature.batch.stop_place.StopPlaceImportProcessor; import fi.hsl.jore.importer.feature.batch.stop_place.StopPlaceImportReader; import fi.hsl.jore.importer.feature.batch.stop_place.support.IStopPlaceImportRepository; +import fi.hsl.jore.importer.feature.batch.stop_registry.RunStopRegistryImporterTasklet; import fi.hsl.jore.importer.feature.infrastructure.link.dto.Jore3Link; import fi.hsl.jore.importer.feature.infrastructure.link_shape.dto.Jore3LinkShape; import fi.hsl.jore.importer.feature.infrastructure.node.dto.Jore3Node; @@ -110,16 +111,19 @@ import org.springframework.batch.core.step.Step; import org.springframework.batch.core.step.builder.StepBuilder; import org.springframework.batch.core.step.skip.AlwaysSkipItemSkipPolicy; +import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.batch.autoconfigure.BatchTransactionManager; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.PropertySource; import org.springframework.transaction.PlatformTransactionManager; @Configuration @EnableAutoConfiguration @ComponentScan(basePackages = "fi.hsl.jore.importer.feature") +@PropertySource("classpath:application.properties") public class JobConfig { public static final String JOB_NAME = "importJoreJob"; @@ -148,7 +152,9 @@ public Job importJob( final Flow importScheduledStopPointsFlow, final Flow importStopPlacesFlow, // Export data from the importer staging DB to Jore 4 DB. - final Flow jore4ExportFlow) { + final Flow jore4ExportFlow, + // Final step: run the external Python stop-registry importer. + final Flow stopRegistryImportFlow) { return new JobBuilder(JOB_NAME, jobRepository) .start(importNodesFlow) .next(importLinksFlow) @@ -162,10 +168,32 @@ public Job importJob( .next(importScheduledStopPointsFlow) .next(importStopPlacesFlow) .next(jore4ExportFlow) + .next(stopRegistryImportFlow) .end() .build(); } + @Bean + public Step runStopRegistryImporterStep( + @Value("${stop.registry.importer.python.command:python3}") final String pythonCommand, + @Value("${stop.registry.importer.script.path:importer.py}") final String scriptPath, + @Value("${stop.registry.importer.working.directory:stop-registry-importer}") final String workingDir, + @Value("${stop.registry.importer.timeout.hours:2}") final long timeoutHours) { + return new StepBuilder("runStopRegistryImporterStep", jobRepository) + .allowStartIfComplete(true) + .tasklet( + new RunStopRegistryImporterTasklet(pythonCommand, scriptPath, workingDir, timeoutHours), + transactionManager) + .build(); + } + + @Bean + public Flow stopRegistryImportFlow(final Step runStopRegistryImporterStep) { + return new FlowBuilder("stopRegistryImportFlow") + .start(runStopRegistryImporterStep) + .build(); + } + @Bean public Flow importNodesFlow(final Step prepareNodesStep, final Step importNodesStep, final Step commitNodesStep) { diff --git a/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java b/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java new file mode 100644 index 00000000..7b8f4e9b --- /dev/null +++ b/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java @@ -0,0 +1,77 @@ +package fi.hsl.jore.importer.feature.batch.stop_registry; + +import java.io.BufferedReader; +import java.io.File; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.util.List; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.StepContribution; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.infrastructure.repeat.RepeatStatus; + +/** + * Runs the external Python "stop-registry importer" script as a Spring Batch tasklet, streaming the script's + * stdout/stderr line-by-line through SLF4J so that its output is intermixed with the Java application's normal logs. + */ +public class RunStopRegistryImporterTasklet implements Tasklet { + + private static final Logger LOG = LoggerFactory.getLogger("stop-registry-importer"); + + private final String pythonCommand; + private final String scriptPath; + private final String workingDir; + private final long timeoutHours; + + public RunStopRegistryImporterTasklet( + final String pythonCommand, final String scriptPath, final String workingDir, final long timeoutHours) { + this.pythonCommand = pythonCommand; + this.scriptPath = scriptPath; + this.workingDir = workingDir; + this.timeoutHours = timeoutHours; + } + + @Override + public RepeatStatus execute(final StepContribution contribution, final ChunkContext chunkContext) throws Exception { + + LOG.info( + "Starting stop-registry importer script: {} (cwd={}, command={})", + scriptPath, + workingDir, + pythonCommand); + + final ProcessBuilder pb = new ProcessBuilder(List.of(pythonCommand, "-u", scriptPath)) + .directory(new File(workingDir)) + .redirectErrorStream(true); + // Force unbuffered output from Python so logs appear in near real time. + final Map environment = pb.environment(); + environment.put("PYTHONUNBUFFERED", "1"); + environment.put("STOP_REGISTRY_IMPORTER_USE_DOTENV", "0"); + + final Process process = pb.start(); + + try (BufferedReader reader = + new BufferedReader(new InputStreamReader(process.getInputStream(), StandardCharsets.UTF_8))) { + String line; + while ((line = reader.readLine()) != null) { + LOG.info(line); + } + } + + final boolean finished = process.waitFor(timeoutHours, TimeUnit.HOURS); + if (!finished) { + process.destroyForcibly(); + throw new IllegalStateException("Stop-registry importer timed out after " + timeoutHours + " hour(s)"); + } + final int exitCode = process.exitValue(); + LOG.info("Stop-registry importer exited with code {}", exitCode); + if (exitCode != 0) { + throw new IllegalStateException("Stop-registry importer failed, exit code " + exitCode); + } + return RepeatStatus.FINISHED; + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 0f9cbeea..8000255a 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -25,3 +25,10 @@ digiroad.stop.csv.file.url=@digiroad.stop.csv.file.url@ # The base url of the map matching API map.matching.api.baseUrl=@map.matching.api.baseUrl@ + +# External stop-registry importer script settings +stop.registry.importer.python.command=@stop.registry.importer.python.command@ +stop.registry.importer.script.path=@stop.registry.importer.script.path@ +stop.registry.importer.working.directory=@stop.registry.importer.working.directory@ +stop.registry.importer.timeout.hours=@stop.registry.importer.timeout.hours@ + diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties index bd900fbb..2fa63b68 100644 --- a/src/test/resources/application.properties +++ b/src/test/resources/application.properties @@ -1,2 +1,9 @@ # Don't try to run all the jobs immediately spring.batch.job.enabled=false + +# Keep test context in sync with profile-specific stop-registry importer settings. +stop.registry.importer.python.command=@stop.registry.importer.python.command@ +stop.registry.importer.script.path=@stop.registry.importer.script.path@ +stop.registry.importer.working.directory=@stop.registry.importer.working.directory@ +stop.registry.importer.timeout.hours=@stop.registry.importer.timeout.hours@ + diff --git a/stop-registry-importer/importer.py b/stop-registry-importer/importer.py index 9a26ad7c..96ffc7df 100644 --- a/stop-registry-importer/importer.py +++ b/stop-registry-importer/importer.py @@ -145,6 +145,7 @@ import datetime import time +import os import pymssql import requests import simplejson as json @@ -159,23 +160,28 @@ logger = logging.getLogger(__name__) env = environ.Env( - GRAPHQL_URL=(str,'http://localhost:3201/v1/graphql'), - GRAPHQL_SECRET=(str,'hasura'), - JORE3_USERNAME=(str,'sa'), - JORE3_PASSWORD=(str,'P@ssw0rd'), - JORE3_DATABASE_URL=(str,'localhost:1433'), - JORE3_DATABASE_NAME=(str,'jore3testdb') + HASURA_API_URL=(str,'http://localhost:3201/v1/graphql'), + HASURA_ADMIN_SECRET=(str,'hasura'), + SOURCE_DB_USERNAME=(str,'sa'), + SOURCE_DB_PASSWORD=(str,'P@ssw0rd'), + SOURCE_DB_HOSTNAME=(str,'localhost'), + SOURCE_DB_PORT=(str,'1433'), + SOURCE_DB_DATABASE=(str,'jore3testdb') ) -environ.Env.read_env('.env') +useDotenv = os.getenv("STOP_REGISTRY_IMPORTER_USE_DOTENV", "1").lower() not in ("0", "false", "no") +if useDotenv: + environ.Env.read_env('.env') -graphql = env('GRAPHQL_URL') -secret = env('GRAPHQL_SECRET') +graphql = env('HASURA_API_URL') +secret = env('HASURA_ADMIN_SECRET') -jore3Username = env('JORE3_USERNAME') -jore3Password = env('JORE3_PASSWORD') -jore3DatabaseUrl = env('JORE3_DATABASE_URL') -jore3DatabaseName = env('JORE3_DATABASE_NAME') +jore3Username = env('SOURCE_DB_USERNAME') +jore3Password = env('SOURCE_DB_PASSWORD') +jore3DatabaseHost = env('SOURCE_DB_HOSTNAME') +jore3DatabasePort = env('SOURCE_DB_PORT') +jore3DatabaseUrl = f"{jore3DatabaseHost}:{jore3DatabasePort}" +jore3DatabaseName = env('SOURCE_DB_DATABASE') logging.info(f"Jore3 db: {jore3DatabaseUrl}/{jore3DatabaseName} as {jore3Username}; hasura at {graphql}") From 8bd7e1024aefb5016d1036c44eef586fecee75e4 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Mon, 8 Jun 2026 09:38:01 +0300 Subject: [PATCH 16/18] stop-registry-importer remove redundant cmd switch from python call --- .../batch/stop_registry/RunStopRegistryImporterTasklet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java b/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java index 7b8f4e9b..71dd8071 100644 --- a/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java +++ b/src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java @@ -44,7 +44,7 @@ public RepeatStatus execute(final StepContribution contribution, final ChunkCont workingDir, pythonCommand); - final ProcessBuilder pb = new ProcessBuilder(List.of(pythonCommand, "-u", scriptPath)) + final ProcessBuilder pb = new ProcessBuilder(List.of(pythonCommand, scriptPath)) .directory(new File(workingDir)) .redirectErrorStream(true); // Force unbuffered output from Python so logs appear in near real time. From 576c20205ac895912697df2e48a4c21ec7628380 Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Mon, 8 Jun 2026 09:56:37 +0300 Subject: [PATCH 17/18] stop-registry-importer dependency handling --- development.sh | 56 ++++++++++++++++++++++++- stop-registry-importer/requirements.in | 15 +++++++ stop-registry-importer/requirements.txt | 15 ++++++- 3 files changed, 83 insertions(+), 3 deletions(-) create mode 100644 stop-registry-importer/requirements.in diff --git a/development.sh b/development.sh index fb938af9..655dfbd0 100755 --- a/development.sh +++ b/development.sh @@ -15,6 +15,12 @@ DOCKER_COMPOSE_BUNDLE_REF=${BUNDLE_REF:-main} STOP_REGISTRY_IMPORTER_DIR="./stop-registry-importer" STOP_REGISTRY_VENV_DIR="${STOP_REGISTRY_IMPORTER_DIR}/.venv-stop-registry" STOP_REGISTRY_REQUIREMENTS_FILE="${STOP_REGISTRY_IMPORTER_DIR}/requirements.txt" +STOP_REGISTRY_REQUIREMENTS_IN_FILE="${STOP_REGISTRY_IMPORTER_DIR}/requirements.in" + +# Python/pip executables inside the stop-registry virtualenv. These are +# populated by `ensure_python_venv` so that every Python-related command uses +# the correct interpreter and isolated environment. +STOP_REGISTRY_VENV_PYTHON="${STOP_REGISTRY_VENV_DIR}/bin/python" # Define a Docker Compose project name to distinguish # the docker environment of this project from others @@ -62,6 +68,11 @@ print_usage() { python:setup Creates/updates Python virtualenv for stop-registry importer and installs dependencies. + python:update-reqs + Recompiles stop-registry-importer/requirements.txt from requirements.in using + pip-tools (pip-compile). Run this after changing requirements.in. You must run python:setup + to install the updated dependencies after review. + stop Stop the dependencies and the dockerized application. @@ -260,12 +271,49 @@ upload_zones() { } setup_python() { + ensure_python_venv + + echo "Installing dependencies from ${STOP_REGISTRY_REQUIREMENTS_FILE}..." + "$STOP_REGISTRY_VENV_PYTHON" -m pip install -r "$STOP_REGISTRY_REQUIREMENTS_FILE" +} + +# Ensures the stop-registry virtualenv exists and that pip is up to date. +# +# This is the common entry point for all Python commands: it guarantees that +# subsequent calls to "$STOP_REGISTRY_VENV_PYTHON" use the correct interpreter +# and isolated environment regardless of the host Python setup. +ensure_python_venv() { if [ ! -d "$STOP_REGISTRY_VENV_DIR" ]; then + echo "Creating Python virtualenv in ${STOP_REGISTRY_VENV_DIR}..." python3 -m venv "$STOP_REGISTRY_VENV_DIR" fi - "$STOP_REGISTRY_VENV_DIR/bin/pip" install --upgrade pip - "$STOP_REGISTRY_VENV_DIR/bin/pip" install -r "$STOP_REGISTRY_REQUIREMENTS_FILE" + if [ ! -x "$STOP_REGISTRY_VENV_PYTHON" ]; then + echo "ERROR: Python executable not found in virtualenv: ${STOP_REGISTRY_VENV_PYTHON}" >&2 + echo "Try removing ${STOP_REGISTRY_VENV_DIR} and running 'python:setup' again." >&2 + exit 1 + fi + + "$STOP_REGISTRY_VENV_PYTHON" -m pip install --upgrade pip +} + +# Recompiles requirements.txt from requirements.in using pip-tools and installs +# the resolved dependency set into the virtualenv. +update_python_requirements() { + ensure_python_venv + + if [ ! -f "$STOP_REGISTRY_REQUIREMENTS_IN_FILE" ]; then + echo "ERROR: requirements input file not found: ${STOP_REGISTRY_REQUIREMENTS_IN_FILE}" >&2 + exit 1 + fi + + "$STOP_REGISTRY_VENV_PYTHON" -m pip install --upgrade pip-tools + + echo "Compiling ${STOP_REGISTRY_REQUIREMENTS_FILE} from ${STOP_REGISTRY_REQUIREMENTS_IN_FILE}..." + "$STOP_REGISTRY_VENV_PYTHON" -m piptools compile \ + --strip-extras \ + --output-file "$STOP_REGISTRY_REQUIREMENTS_FILE" \ + "$STOP_REGISTRY_REQUIREMENTS_IN_FILE" } ### Control flow @@ -301,6 +349,10 @@ case $COMMAND in setup_python ;; + python:update-reqs) + update_python_requirements + ;; + stop) stop ;; diff --git a/stop-registry-importer/requirements.in b/stop-registry-importer/requirements.in new file mode 100644 index 00000000..1c198a4c --- /dev/null +++ b/stop-registry-importer/requirements.in @@ -0,0 +1,15 @@ +# Top-level (direct) dependencies for the stop-registry importer. +# +# This file lists only the packages the importer directly imports/uses. +# The fully pinned requirements.txt (including all transitive dependencies) +# is generated from this file with pip-tools: +# +# ./development.sh python:update-reqs +# +# (equivalent to: pip-compile requirements.in) + +django-environ +pymssql +requests +simplejson + diff --git a/stop-registry-importer/requirements.txt b/stop-registry-importer/requirements.txt index d844740b..8650aa55 100644 --- a/stop-registry-importer/requirements.txt +++ b/stop-registry-importer/requirements.txt @@ -1,9 +1,22 @@ +# +# This file is autogenerated by pip-compile with Python 3.14 +# by the following command: +# +# pip-compile --output-file=./stop-registry-importer/requirements.txt --strip-extras ./stop-registry-importer/requirements.in +# certifi==2026.5.20 + # via requests charset-normalizer==3.4.7 + # via requests django-environ==0.13.0 + # via -r stop-registry-importer/requirements.in idna==3.17 + # via requests pymssql==2.3.13 + # via -r stop-registry-importer/requirements.in requests==2.34.2 + # via -r stop-registry-importer/requirements.in simplejson==4.1.1 -typing_extensions==4.15.0 + # via -r stop-registry-importer/requirements.in urllib3==2.7.0 + # via requests From 927087a27c7a82fb4b4719b96f56de38a73c4dce Mon Sep 17 00:00:00 2001 From: Janne Bergman Date: Mon, 8 Jun 2026 15:26:28 +0300 Subject: [PATCH 18/18] stop-registry-importer python to java-tests.yml --- .github/workflows/java-tests.yml | 14 ++++++++++++++ profiles/ci/config.properties | 10 ++++++---- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/java-tests.yml b/.github/workflows/java-tests.yml index 4c6af6fc..e926c024 100644 --- a/.github/workflows/java-tests.yml +++ b/.github/workflows/java-tests.yml @@ -31,6 +31,20 @@ jobs: distribution: temurin cache: maven + - name: Set up Python 3.14 + uses: actions/setup-python@v5 + with: + python-version: "3.14" + + - name: Create stop-registry importer virtualenv + # The Spring Batch job runs the external stop-registry importer Python script as + # its final step. Create the virtualenv and install its dependencies so the step + # can run during the Java integration tests (see the `ci` profile config). + run: | + python -m venv stop-registry-importer/.venv-stop-registry + stop-registry-importer/.venv-stop-registry/bin/python -m pip install --upgrade pip + stop-registry-importer/.venv-stop-registry/bin/pip install -r stop-registry-importer/requirements.txt + - name: Verify whether test postgresql db is up uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 with: diff --git a/profiles/ci/config.properties b/profiles/ci/config.properties index 44591ece..e5bece88 100644 --- a/profiles/ci/config.properties +++ b/profiles/ci/config.properties @@ -74,8 +74,10 @@ digiroad.stop.csv.file.url= # The map matching API URL map.matching.api.baseUrl=http://localhost:3005 -# Stop-registry importer execution (container paths) -stop.registry.importer.python.command=python3 -stop.registry.importer.script.path=/opt/stop-registry-importer/importer.py -stop.registry.importer.working.directory=/opt/stop-registry-importer +# Stop-registry importer execution (paths relative to the repository root, where +# Maven runs in CI). The Python virtualenv is created by the CI workflow before the +# tests are run; see .github/workflows/java-tests.yml. +stop.registry.importer.python.command=.venv-stop-registry/bin/python +stop.registry.importer.script.path=importer.py +stop.registry.importer.working.directory=stop-registry-importer stop.registry.importer.timeout.hours=2